Skip to content

Commit

Permalink
Add jordan: Update recovery_ui.c
Browse files Browse the repository at this point in the history
  • Loading branch information
TaichiN committed Jan 7, 2013
1 parent 218ae78 commit 7f97958
Showing 1 changed file with 137 additions and 30 deletions.
167 changes: 137 additions & 30 deletions recovery_ui.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,64 +20,101 @@
#include "common.h"
#include "extendedcommands.h"

char* MENU_HEADERS[] = { NULL };

char* MENU_ITEMS[] = { "Reboot system now",
"Apply update.zip from sdcard",
"Wipe data/factory reset",
"Wipe cache partition",
"Install zip from sdcard",
"Backup and restore",
"Mounts and storage",
"Advanced",
"Power off",
/*
to enable on-screen debug code printing set this to 1
to disable on-screen debug code printing set this to 0
*/
int TOUCH_CONTROL_DEBUG = 0;

//In this case MENU_SELECT icon has maximum possible height.
#define MENU_MAX_HEIGHT 20 //gr_get_height(gMenuIcon[MENU_SELECT]) //Maximum allowed height for navigation icons

//Device specific boundaries for touch recognition
/*
WARNING
these might not be the same as resX, resY (from below)
these have to be found by setting them to zero and then in debug mode
check the values returned by on screen touch output by click on the
touch panel extremeties
*/
int maxX=0; //Set to 0 for debugging
int maxY=0; //Set to 0 for debugging

/*
the values of following two variables are dependent on specifc device resolution
and can be obtained using the outputs of the gr_fb functions
*/
int resX=480; //Value obtained from function 'gr_fb_width()'
int resY=800; //Value obtained from function 'gr_fb_height()'

char* MENU_HEADERS[] = { "Use vol keys to highlight and home to select.",
"",
NULL };

char* MENU_ITEMS[] = { "reboot system now",
"apply update from sdcard",
"wipe data/factory reset",
"wipe cache partition",
"install zip from sdcard",
"backup and restore",
"mounts and storage",
"advanced",
"power off",
NULL };

int device_recovery_start() {
return 0;
}

int device_toggle_display(volatile char* key_pressed, int key_code) {

int alt = key_pressed[KEY_VOLUMEUP];
if (alt && (key_code == KEY_END))
int alt = key_pressed[KEY_LEFTALT] || key_pressed[KEY_RIGHTALT];
if (alt && key_code == KEY_L)
return 1;
return get_allow_toggle_display() && (key_pressed[KEY_VOLUMEUP] && (key_code == KEY_END));

// allow toggling of the display if the correct key is pressed, and the display toggle is allowed or the display is currently off
if (ui_get_showing_back_button()) {
return 0;
}
return get_allow_toggle_display() && (key_code == KEY_MENU || key_code == KEY_POWER || key_code == KEY_END);
}

int device_reboot_now(volatile char* key_pressed, int key_code) {
return key_pressed[KEY_VOLUMEDOWN] && (key_code == KEY_END);
return 0;
}

// check for constants in bionic/libc/kernel/common/linux/input.h

int device_handle_key(int key_code, int visible) {
if (visible) {
switch (key_code) {
case KEY_CAPSLOCK:
case 53:
case KEY_VOLUMEDOWN:
return HIGHLIGHT_DOWN;

case KEY_LEFTSHIFT:
case 51:
case KEY_DOWN:
case KEY_VOLUMEUP:
return HIGHLIGHT_UP;

case 139:
case KEY_END:
return SELECT_ITEM;
case KEY_LEFTSHIFT:
case KEY_UP:
case KEY_VOLUMEDOWN:
return HIGHLIGHT_DOWN;

case 62:
return SELECT_ITEM;

case KEY_POWER:
if (ui_get_showing_back_button()) {
return SELECT_ITEM;
}
if (!get_allow_toggle_display())
return GO_BACK;
break;
case KEY_LEFTBRACE:
case 31:
case KEY_ENTER:
case BTN_MOUSE:
case KEY_CENTER:
case KEY_CAMERA:
case KEY_F21:
case KEY_SEND:
case KEY_MEDIA:
case KEY_HOME:
return SELECT_ITEM;

case KEY_END:
case KEY_BACKSPACE:
case KEY_BACK:
if (!get_allow_toggle_display())
Expand All @@ -95,3 +132,73 @@ int device_perform_action(int which) {
int device_wipe_data() {
return 0;
}

int get_menu_icon_info(int indx1, int indx2) {

//ToDo: Following switch case should be replaced by array or structure
int caseN = indx1*4 + indx2;

/*
int MENU_ICON1[] = {
{ 1*resX/8, (resY - MENU_MAX_HEIGHT/2), 0*resX/4, 1*resX/4 },
{ 3*resX/8, (resY - MENU_MAX_HEIGHT/2), 1*resX/4, 2*resX/4 },
{ 5*resX/8, (resY - MENU_MAX_HEIGHT/2), 2*resX/4, 3*resX/4 },
{ 7*resX/8, (resY - MENU_MAX_HEIGHT/2), 3*resX/4, 4*resX/4 },
};
*/

switch (caseN) {
case 0:
return 1*resX/8;
case 1:
return (resY - MENU_MAX_HEIGHT/2);
case 2:
return 0*resX/4;
case 3:
return 1*resX/4;
case 4:
return 3*resX/8;
case 5:
return (resY - MENU_MAX_HEIGHT/2);
case 6:
return 1*resX/4;
case 7:
return 2*resX/4;
case 8:
return 5*resX/8;
case 9:
return (resY - MENU_MAX_HEIGHT/2);
case 10:
return 2*resX/4;
case 11:
return 3*resX/4;
case 12:
return 7*resX/8;
case 13:
return (resY - MENU_MAX_HEIGHT/2);
case 14:
return 3*resX/4;
case 15:
return 4*resX/4;

}

return 0;
}

//For those devices which has skewed X axis and Y axis detection limit (Not similar to XY resolution of device), So need normalization
int MT_X(int x)
{
int out;
out = maxX ? (x*gr_fb_width()/maxX) : x;

return out;
}

int MT_Y(int y)
{
int out;
out = maxY ? (y*gr_fb_height()/maxY) : y;

return out;
}

0 comments on commit 7f97958

Please sign in to comment.