1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2003 Pierre Delore
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
20 #include "configfile.h"
22 #ifdef HAVE_LCD_CHARCELLS
24 /* Euro converter for the player */
32 ON+PLAY : Swap Euro<>Home
33 MENU : Display the Menu
34 Currency -> Allows to choose the currency
35 Exit-> Exit the plugin
39 I use signed long long (64 bits).
40 A value have 5 digits after the . (123.45 = 12345000)
43 - The Irish currency needs 6 digits after the . to have sufficient precision on big number
48 /* Name and path of the config file*/
49 static const char cfg_filename
[] = "euroconverter.cfg";
50 #define CFGFILE_VERSION 0 /* Current config file version */
51 #define CFGFILE_MINVERSION 0 /* Minimum config file version to accept */
53 /* typedef for simplifying usage of long long type */
54 typedef long long int longlong_t
;
56 /*Pattern for the converter*/
57 static unsigned char pattern_euro
[]={0x07, 0x08, 0x1E, 0x10, 0x1E, 0x08, 0x07}; /* € */
58 static unsigned char pattern_home
[]={0x04, 0x0A, 0x11, 0x1F, 0x11, 0x11, 0x1F}; /* Home icon*/
60 /* 1 euro = ... (remenber 5 digits after the .)*/
61 static int currency
[12]={
62 655957, /*FRF France*/
63 195583, /*DEM Germany*/
64 1376030, /*ATS Austria*/
65 4033990, /*BEF Belgium*/
66 16638600, /*ESP Spain*/
67 594573, /*FIM Finland*/
68 78756, /*IEP Ireland*/
69 193627000, /*ITL Italy*/
70 4033990, /*LUF Luxemburg*/
71 220371, /*NLG Netherlands*/
72 20048200, /*PTE Portugal*/
73 34075100, /*GRD Greece*/
76 /* Number of digit of the currency (for the display) */
77 static int nb_digit
[12]={
87 2, /*NLG Netherlands*/
92 /* max euro to have home currency */
93 static longlong_t max_euro
[12]={
94 99999999000LL, /*FRF France 999 999.99 */
95 99999999000LL, /*DEM Germany 999 999.99 */
96 99999999000LL, /*ATS Austria 999 999.99 */
97 99999999000LL, /*BEF Belgium 999 999.99 */
98 99999999000LL, /*ESP Spain 99 999 999 */
99 99999999000LL, /*FIM Finland 999 999.99 */
100 99999999000LL, /*IEP Ireland 999 999.99 */
101 51645690000LL, /*ITL Italy 999 999 999 */
102 99999999000LL, /*LUF Luxemburg 999 999.99 */
103 99999999000LL, /*NLG Netherlands 999 999.99 */
104 99999999000LL, /*PTE Portugal 99 999 999 */
105 29347028000LL /*GRD Greece 99 999 999 */
108 /* max home to have euro currency */
109 /* 92233720300000 Limitation due to the max capacity of long long (2^63)*/
110 static longlong_t max_curr
[12]={
111 99999999000LL, /*FRF France 152449.02 */
112 99999999000LL, /*DEM Germany 511291.88 */
113 99999999000LL, /*ATS Austria 72672.83 */
114 99999999000LL, /*BEF Belgium 24789.35 */
115 92233720300000LL,/*ESP Spain 5543358.23 */
116 99999999000LL, /*FIM Finland 168187.92 */
117 9999999900LL, /*IEP Ireland 1269744.51 exact value=1269738.07 */
118 92233720300000LL,/*ITL Italy 476347.41 */
119 99999999000LL, /*LUF Luxemburg 24789.35 */
120 99999999000LL, /*NLG Netherlands 453780.21 */
121 92233720300000LL,/*PTE Portugal 4600598.57 */
122 92233720300000LL /*GRD Greece 2706777.69 */
125 static unsigned char *abbrev_str
[12] = {
126 "...FRF...", /*France*/
127 "...DEM...", /*Germany*/
128 "...ATS...", /*Austria*/
129 "...BEF...", /*Belgium*/
130 "...ESP...", /*Spain*/
131 "...FIM...", /*Finland*/
132 "...IEP...", /*Ireland*/
133 "...ITL...", /*Italy*/
134 "...LUF...", /*Luxemburg*/
135 "...NLG...", /*Netherlands*/
136 "...PTE...", /*Portugal*/
137 "...GRD..." /*Greece*/
141 static unsigned long heuro
,hhome
; /*Handles for the new patterns*/
143 static struct plugin_api
* rb
;
145 static char *currency_str
[12] = {
161 static int country
; /*Country selected*/
162 static int cur_pos
; /*Cursor position*/
163 static longlong_t inc
;
165 /* Persistent settings */
166 static struct configdata config
[] = {
167 { TYPE_ENUM
, 0, 12, &country
, "country", currency_str
, NULL
}
171 /* 64bits*64 bits with 5 digits after the . */
172 static longlong_t
mymul(longlong_t a
, longlong_t b
)
174 return((a
*b
)/100000LL);
178 /* 64bits/64 bits with 5 digits after the . */
179 static longlong_t
mydiv(longlong_t a
, longlong_t b
)
181 return((a
*100000LL)/b
);
185 /* 123.45=12345000 split => i=123 f=45000*/
186 static void split(longlong_t v
, longlong_t
* i
, longlong_t
* f
)
192 (*f
)=(v
-(t
*100000LL));
197 static longlong_t
pow10(int n
)
209 /* round the i.f at n digit after the . */
210 static void round(longlong_t
* i
, longlong_t
* f
, int n
)
221 (*f
)=((*f
)/(int)pow10(5-n
))+add
;
236 /* Display the imput and the result
237 pos: false : first line
240 static void display(longlong_t euro
, longlong_t home
, bool pos
)
243 unsigned char str
[20];
244 unsigned char s1
[20];
245 unsigned char s2
[20];
248 { /*Edit the second line*/
249 rb
->strcpy(s1
," %6d.%02d");
250 if (nb_digit
[country
]==2)
251 rb
->strcpy(s2
,"\xee\x84\x90%06d.%02d");
253 rb
->strcpy(s2
,"\xee\x84\x90%09d");
257 rb
->strcpy(s1
,"\xee\x84\x90%06d.%02d");
258 if (nb_digit
[country
]==2)
259 rb
->strcpy(s2
," %6d.%02d");
261 rb
->strcpy(s2
," %9d");
264 rb
->lcd_remove_cursor();
266 rb
->lcd_putc(0,0,heuro
);
270 rb
->snprintf(str
,sizeof(str
),s1
,(int)i
,(int)f
);
274 rb
->lcd_puts(1,0,str
);
275 rb
->lcd_put_cursor(10-cur_pos
,0,0x5F);
278 rb
->lcd_puts_scroll(1,0,str
);
281 rb
->lcd_putc(0,1,hhome
);
284 round(&i
,&f
,nb_digit
[country
]);
285 rb
->snprintf(str
,sizeof(str
),s2
,(int)i
,(int)f
);
288 rb
->lcd_puts(1,1,str
);
289 rb
->lcd_put_cursor(10-cur_pos
,1,0x5F);
292 rb
->lcd_puts_scroll(1,1,str
);
298 /* Show country Abbreviation */
299 static void show_abbrev(void)
301 rb
->splash(HZ
*3/4,abbrev_str
[country
]);
305 /* Save the config to disk */
306 static void save_config(void)
308 configfile_save(cfg_filename
, config
, 1, CFGFILE_VERSION
);
312 /* Load the config from disk */
313 static void load_config(void)
315 configfile_load(cfg_filename
, config
, 1, CFGFILE_MINVERSION
);
320 static void currency_menu(void)
324 rb
->lcd_clear_display();
327 rb
->lcd_puts(0,0,"Currency:");
328 rb
->lcd_puts(0,1,currency_str
[c
]);
330 switch (rb
->button_get(true))
332 case BUTTON_RIGHT
|BUTTON_REL
:
337 case BUTTON_LEFT
|BUTTON_REL
:
342 case BUTTON_PLAY
|BUTTON_REL
:
347 case BUTTON_STOP
|BUTTON_REL
:
354 /* Display the choice menu. */
355 static int euro_menu(void)
362 rb
->lcd_clear_display();
363 rb
->lcd_puts(0,0," Currency");
364 rb
->lcd_puts(0,1," Exit");
365 rb
->lcd_putc(0,c
,0xe110);
368 switch (rb
->button_get(true))
370 case BUTTON_RIGHT
|BUTTON_REL
:
373 case BUTTON_LEFT
|BUTTON_REL
:
376 case BUTTON_PLAY
|BUTTON_REL
:
382 case BUTTON_STOP
|BUTTON_REL
:
389 /* Call when the program end */
390 static void euro_exit(void *parameter
)
394 //Restore the old pattern (i don't find another way to do this. An idea?)
395 rb
->lcd_unlock_pattern(heuro
);
396 rb
->lcd_unlock_pattern(hhome
);
399 rb
->lcd_clear_display();
404 /* this is the plugin entry point */
405 enum plugin_status
plugin_start(struct plugin_api
* api
, void* parameter
)
408 longlong_t e
,h
,old_e
,old_h
;
411 /* if you don't use the parameter, you can do like
412 this to avoid the compiler warning about it */
415 /* if you are using a global api pointer, don't forget to copy it!
416 otherwise you will get lovely "I04: IllInstr" errors... :-) */
419 /*Get the pattern handle*/
420 heuro
=rb
->lcd_get_locked_pattern();
421 hhome
=rb
->lcd_get_locked_pattern();
422 rb
->lcd_define_pattern(heuro
, pattern_euro
);
423 rb
->lcd_define_pattern(hhome
, pattern_home
);
437 /*Empty the event queue*/
438 rb
->button_clear_queue();
447 button
= rb
->button_get(true);
450 case BUTTON_MENU
|BUTTON_REL
:
459 if (e
>max_euro
[country
])
465 if (h
>max_curr
[country
])
467 if (nb_digit
[country
]==2)
476 case BUTTON_ON
| BUTTON_PLAY
:
479 case BUTTON_ON
| BUTTON_REL
:
490 if (nb_digit
[country
]==2)
498 case BUTTON_STOP
|BUTTON_REL
:
507 inc
=pow10(3+cur_pos
-1);
509 inc
=pow10(3+cur_pos
);
515 if (nb_digit
[country
]==2)
520 inc
=pow10(3+cur_pos
-1);
522 inc
=pow10(3+cur_pos
);
525 inc
=pow10(5+cur_pos
);
530 case BUTTON_PLAY
|BUTTON_REL
:
539 inc
=pow10(3+cur_pos
-1);
541 inc
=pow10(3+cur_pos
);
547 if (nb_digit
[country
]==2)
552 inc
=pow10(3+cur_pos
-1);
554 inc
=pow10(3+cur_pos
);
557 inc
=pow10(5+cur_pos
);
561 case BUTTON_LEFT
|BUTTON_REL
:
562 case BUTTON_LEFT
|BUTTON_REPEAT
:
577 case BUTTON_RIGHT
|BUTTON_REL
:
578 case BUTTON_RIGHT
|BUTTON_REPEAT
:
584 if (e
>max_euro
[country
])
590 if (h
>max_curr
[country
])
596 if (rb
->default_event_handler_ex(button
, euro_exit
, NULL
)
597 == SYS_USB_CONNECTED
)
598 return PLUGIN_USB_CONNECTED
;
602 if (!pos
) /*Euro>home*/
603 h
=mymul(e
,currency
[country
]);
605 e
=mydiv(h
,currency
[country
]);