summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHristo Kovachev <bger@rockbox.org>2006-08-15 08:33:38 +0000
committerHristo Kovachev <bger@rockbox.org>2006-08-15 08:33:38 +0000
commit1792170633842d274d623dcdd7265f2e55ff2fc9 (patch)
tree760fcb1db7352fe6d19a0603a0a751934f0ead31
parent079ad11896d68f16f23880f4de869bbb47617c19 (diff)
downloadrockbox-1792170633842d274d623dcdd7265f2e55ff2fc9.tar.gz
rockbox-1792170633842d274d623dcdd7265f2e55ff2fc9.zip
Add remote_type() to the uisim for h100/h300 builds. Use the "t" key to switch between remote types (only changes the remote_type()'s return value for now)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10577 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--uisimulator/sdl/button.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/uisimulator/sdl/button.c b/uisimulator/sdl/button.c
index 7e78c9d030..d42cdee859 100644
--- a/uisimulator/sdl/button.c
+++ b/uisimulator/sdl/button.c
@@ -19,12 +19,14 @@
19 19
20#include "uisdl.h" 20#include "uisdl.h"
21#include "lcd-charcell.h" 21#include "lcd-charcell.h"
22#include "lcd-remote.h"
22#include "config.h" 23#include "config.h"
23#include "button.h" 24#include "button.h"
24#include "kernel.h" 25#include "kernel.h"
25#include "backlight.h" 26#include "backlight.h"
26#include "misc.h" 27#include "misc.h"
27 28
29#include "debug.h"
28/* how long until repeat kicks in */ 30/* how long until repeat kicks in */
29#define REPEAT_START 6 31#define REPEAT_START 6
30 32
@@ -34,6 +36,15 @@
34/* speed repeat finishes at */ 36/* speed repeat finishes at */
35#define REPEAT_INTERVAL_FINISH 2 37#define REPEAT_INTERVAL_FINISH 2
36 38
39#if defined(IRIVER_H100_SERIES) || defined (IRIVER_H300_SERIES)
40int _remote_type=REMOTETYPE_H100_LCD;
41
42int remote_type(void)
43{
44 return _remote_type;
45}
46#endif
47
37struct event_queue button_queue; 48struct event_queue button_queue;
38 49
39static int btn = 0; /* Hopefully keeps track of currently pressed keys... */ 50static int btn = 0; /* Hopefully keeps track of currently pressed keys... */
@@ -74,6 +85,31 @@ void button_event(int key, bool pressed)
74 85
75 switch (key) 86 switch (key)
76 { 87 {
88#if defined(IRIVER_H100_SERIES) || defined(IRIVER_H300_SERIES)
89 case SDLK_t:
90 if(pressed)
91 switch(_remote_type)
92 {
93 case REMOTETYPE_UNPLUGGED:
94 _remote_type=REMOTETYPE_H100_LCD;
95 DEBUGF("Changed remote type to H100\n");
96 break;
97 case REMOTETYPE_H100_LCD:
98 _remote_type=REMOTETYPE_H300_LCD;
99 DEBUGF("Changed remote type to H300\n");
100 break;
101 case REMOTETYPE_H300_LCD:
102 _remote_type=REMOTETYPE_H300_NONLCD;
103 DEBUGF("Changed remote type to H300 NON-LCD\n");
104 break;
105 case REMOTETYPE_H300_NONLCD:
106 _remote_type=REMOTETYPE_UNPLUGGED;
107 DEBUGF("Changed remote type to none\n");
108 break;
109 }
110 break;
111#endif
112
77 case SDLK_KP4: 113 case SDLK_KP4:
78 case SDLK_LEFT: 114 case SDLK_LEFT:
79 new_btn = BUTTON_LEFT; 115 new_btn = BUTTON_LEFT;