1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2004 Pengxuan Liu (Isaac)
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
23 00 01 21 22 23 43 44 45 65 66 67 87 88 89 109110111
24 00 |-----------|-----------|-----------|-----------|-----------|
26 |***********|***********|***********|***********|***********|
27 |***********|***********|***********|***********|***********|
29 12 |-----------|-----------|-----------|-----------|-----------|
30 13 |-----------|-----------|-----------|-----------|-----------| y1
34 23 |-----------|-----------|-----------|-----------|-----------| y2
38 33 |-----------|-----------|-----------|-----------|-----------| y3
42 43 |-----------|-----------|-----------|-----------|-----------| y4
46 53 |-----------|-----------|-----------|-----------|-----------| y5
50 63 |-----------|-----------|-----------|-----------|-----------| y6
54 /*---------------------------------------------------------------------------
56 - Scientific number format core code. Support range 10^-999 ~ 10^999
57 - Number of significant figures up to 10
60 - Right now, only accept "num, operator (+,-,*,/), num, =" input sequence.
61 Input "3, +, 5, -, 2, =", the calculator will only do 5-2 and result = 3
62 You have to input "3, +, 5, =, -, 2, =" to get 3+5-2 = 6
64 - "*,/" have no priority. Actually you can't input 3+5*2 yet.
67 use arrow button to move cursor, "play" button to select, "off" button to exit
68 F1: if typing numbers, it's equal to "Del"; otherwise, equal to "C"
69 F2: circle input "+, -, *, /"
72 "MR" : load temp memory
73 "M+" : add currently display to temp memory
74 "C" : reset calculator
75 ---------------------------------------------------------------------------*/
78 #ifdef HAVE_LCD_BITMAP
86 #define REC_HEIGHT (int)(LCD_HEIGHT / (BUTTON_ROWS + 1))
87 #define REC_WIDTH (int)(LCD_WIDTH / BUTTON_COLS)
89 #define Y_6_POS (LCD_HEIGHT) /* Leave room for the border */
90 #define Y_5_POS (Y_6_POS - REC_HEIGHT) /* y5 = 53 */
91 #define Y_4_POS (Y_5_POS - REC_HEIGHT) /* y4 = 43 */
92 #define Y_3_POS (Y_4_POS - REC_HEIGHT) /* y3 = 33 */
93 #define Y_2_POS (Y_3_POS - REC_HEIGHT) /* y2 = 23 */
94 #define Y_1_POS (Y_2_POS - REC_HEIGHT) /* y1 = 13 */
95 #define Y_0_POS 0 /* y0 = 0 */
97 #define X_0_POS 0 /* x0 = 0 */
98 #define X_1_POS (X_0_POS + REC_WIDTH) /* x1 = 22 */
99 #define X_2_POS (X_1_POS + REC_WIDTH) /* x2 = 44 */
100 #define X_3_POS (X_2_POS + REC_WIDTH) /* x3 = 66 */
101 #define X_4_POS (X_3_POS + REC_WIDTH) /* x4 = 88 */
102 #define X_5_POS (X_4_POS + REC_WIDTH) /* x5 = 110, column 111 left blank */
104 #define TEXT_1_POS (Y_1_POS-10) /* y1 = 2 */ /* blank height = 12 */
105 #define TEXT_2_POS (Y_2_POS-8) /* y2 = 15 */ /* blank height = 9 */
106 #define TEXT_3_POS (Y_3_POS-8) /* y3 = 25 */
107 #define TEXT_4_POS (Y_4_POS-8) /* y4 = 35 */
108 #define TEXT_5_POS (Y_5_POS-8) /* y5 = 45 */
109 #define TEXT_6_POS (Y_6_POS-8) /* y6 = 55 */
111 #define SIGN(x) ((x)<0?-1:1)
112 #define ABS(x) ((x)<0?-(x):(x))
114 /* variable button definitions */
115 #if CONFIG_KEYPAD == RECORDER_PAD
116 #define CALCULATOR_LEFT BUTTON_LEFT
117 #define CALCULATOR_RIGHT BUTTON_RIGHT
118 #define CALCULATOR_UP BUTTON_UP
119 #define CALCULATOR_DOWN BUTTON_DOWN
120 #define CALCULATOR_QUIT BUTTON_OFF
121 #define CALCULATOR_INPUT BUTTON_PLAY
122 #define CALCULATOR_CALC BUTTON_F3
123 #define CALCULATOR_OPERATORS BUTTON_F2
124 #define CALCULATOR_CLEAR BUTTON_F1
126 #elif CONFIG_KEYPAD == ARCHOS_AV300_PAD
127 #define CALCULATOR_LEFT BUTTON_LEFT
128 #define CALCULATOR_RIGHT BUTTON_RIGHT
129 #define CALCULATOR_UP BUTTON_UP
130 #define CALCULATOR_DOWN BUTTON_DOWN
131 #define CALCULATOR_QUIT BUTTON_OFF
132 #define CALCULATOR_INPUT BUTTON_SELECT
133 #define CALCULATOR_CALC BUTTON_F3
134 #define CALCULATOR_OPERATORS BUTTON_F2
135 #define CALCULATOR_CLEAR BUTTON_F1
137 #elif CONFIG_KEYPAD == ONDIO_PAD
138 #define CALCULATOR_LEFT BUTTON_LEFT
139 #define CALCULATOR_RIGHT BUTTON_RIGHT
140 #define CALCULATOR_UP BUTTON_UP
141 #define CALCULATOR_DOWN BUTTON_DOWN
142 #define CALCULATOR_QUIT BUTTON_OFF
143 #define CALCULATOR_INPUT_CALC_PRE BUTTON_MENU
144 #define CALCULATOR_INPUT (BUTTON_MENU | BUTTON_REL)
145 #define CALCULATOR_CALC (BUTTON_MENU | BUTTON_REPEAT)
147 #elif (CONFIG_KEYPAD == IRIVER_H100_PAD) || \
148 (CONFIG_KEYPAD == IRIVER_H300_PAD)
149 #define CALCULATOR_LEFT BUTTON_LEFT
150 #define CALCULATOR_RIGHT BUTTON_RIGHT
151 #define CALCULATOR_UP BUTTON_UP
152 #define CALCULATOR_DOWN BUTTON_DOWN
153 #define CALCULATOR_QUIT BUTTON_OFF
154 #define CALCULATOR_INPUT BUTTON_SELECT
155 #define CALCULATOR_CALC BUTTON_ON
156 #define CALCULATOR_OPERATORS BUTTON_MODE
157 #define CALCULATOR_CLEAR BUTTON_REC
159 #define CALCULATOR_RC_QUIT BUTTON_RC_STOP
161 #elif (CONFIG_KEYPAD == IPOD_4G_PAD) || \
162 (CONFIG_KEYPAD == IPOD_3G_PAD) || \
163 (CONFIG_KEYPAD == IPOD_1G2G_PAD)
165 #define CALCULATOR_LEFT BUTTON_LEFT
166 #define CALCULATOR_RIGHT BUTTON_RIGHT
167 #define CALCULATOR_UP_W_SHIFT BUTTON_SCROLL_BACK
168 #define CALCULATOR_DOWN_W_SHIFT BUTTON_SCROLL_FWD
169 #define CALCULATOR_QUIT BUTTON_MENU
170 #define CALCULATOR_INPUT BUTTON_SELECT
171 #define CALCULATOR_CALC BUTTON_PLAY
173 #elif (CONFIG_KEYPAD == IAUDIO_X5M5_PAD)
175 #define CALCULATOR_LEFT BUTTON_LEFT
176 #define CALCULATOR_RIGHT BUTTON_RIGHT
177 #define CALCULATOR_UP BUTTON_UP
178 #define CALCULATOR_DOWN BUTTON_DOWN
179 #define CALCULATOR_QUIT BUTTON_POWER
180 #define CALCULATOR_INPUT BUTTON_SELECT
181 #define CALCULATOR_CALC BUTTON_PLAY
182 #define CALCULATOR_CLEAR BUTTON_REC
184 #elif (CONFIG_KEYPAD == GIGABEAT_PAD)
186 #define CALCULATOR_LEFT BUTTON_LEFT
187 #define CALCULATOR_RIGHT BUTTON_RIGHT
188 #define CALCULATOR_UP BUTTON_UP
189 #define CALCULATOR_DOWN BUTTON_DOWN
190 #define CALCULATOR_QUIT BUTTON_POWER
191 #define CALCULATOR_INPUT BUTTON_SELECT
192 #define CALCULATOR_CALC BUTTON_MENU
193 #define CALCULATOR_CLEAR BUTTON_A
195 #elif (CONFIG_KEYPAD == SANSA_E200_PAD) || \
196 (CONFIG_KEYPAD == SANSA_C200_PAD) || \
197 (CONFIG_KEYPAD == SANSA_FUZE_PAD)
198 #define CALCULATOR_LEFT BUTTON_LEFT
199 #define CALCULATOR_RIGHT BUTTON_RIGHT
200 #define CALCULATOR_UP BUTTON_UP
201 #define CALCULATOR_DOWN BUTTON_DOWN
202 #if defined(HAVE_SCROLLWHEEL)
203 /* c200 does not have a scroll wheel */
204 #define CALCULATOR_UP_W_SHIFT BUTTON_SCROLL_BACK
205 #define CALCULATOR_DOWN_W_SHIFT BUTTON_SCROLL_FWD
207 #define CALCULATOR_QUIT BUTTON_POWER
208 #define CALCULATOR_INPUT_CALC_PRE BUTTON_SELECT
209 #define CALCULATOR_INPUT (BUTTON_SELECT|BUTTON_REL)
210 #define CALCULATOR_CALC (BUTTON_SELECT|BUTTON_REPEAT)
211 #if (CONFIG_KEYPAD == SANSA_E200_PAD)
212 #define CALCULATOR_CLEAR BUTTON_REC
213 #elif (CONFIG_KEYPAD == SANSA_FUZE_PAD)
214 #define CALCULATOR_CLEAR BUTTON_HOME
218 #elif (CONFIG_KEYPAD == SANSA_CLIP_PAD)
219 #define CALCULATOR_LEFT BUTTON_LEFT
220 #define CALCULATOR_RIGHT BUTTON_RIGHT
221 #define CALCULATOR_UP BUTTON_UP
222 #define CALCULATOR_DOWN BUTTON_DOWN
223 #define CALCULATOR_QUIT BUTTON_POWER
224 #define CALCULATOR_INPUT_CALC_PRE BUTTON_SELECT
225 #define CALCULATOR_INPUT (BUTTON_SELECT|BUTTON_REL)
226 #define CALCULATOR_CALC (BUTTON_SELECT|BUTTON_REPEAT)
227 #define CALCULATOR_CLEAR BUTTON_HOME
229 #elif (CONFIG_KEYPAD == SANSA_M200_PAD)
230 #define CALCULATOR_LEFT BUTTON_LEFT
231 #define CALCULATOR_RIGHT BUTTON_RIGHT
232 #define CALCULATOR_UP BUTTON_UP
233 #define CALCULATOR_DOWN BUTTON_DOWN
234 #define CALCULATOR_QUIT BUTTON_POWER
235 #define CALCULATOR_INPUT_CALC_PRE BUTTON_SELECT
236 #define CALCULATOR_INPUT (BUTTON_SELECT|BUTTON_REL)
237 #define CALCULATOR_CALC (BUTTON_SELECT|BUTTON_REPEAT)
238 #define CALCULATOR_CLEAR (BUTTON_SELECT|BUTTON_UP)
240 #elif (CONFIG_KEYPAD == IRIVER_H10_PAD)
242 #define CALCULATOR_LEFT BUTTON_LEFT
243 #define CALCULATOR_RIGHT BUTTON_RIGHT
244 #define CALCULATOR_UP BUTTON_SCROLL_UP
245 #define CALCULATOR_DOWN BUTTON_SCROLL_DOWN
246 #define CALCULATOR_QUIT BUTTON_POWER
247 #define CALCULATOR_INPUT_CALC_PRE BUTTON_PLAY
248 #define CALCULATOR_INPUT (BUTTON_PLAY | BUTTON_REL)
249 #define CALCULATOR_CALC (BUTTON_PLAY | BUTTON_REPEAT)
250 #define CALCULATOR_CLEAR BUTTON_REW
252 #elif (CONFIG_KEYPAD == GIGABEAT_S_PAD)
254 #define CALCULATOR_LEFT BUTTON_LEFT
255 #define CALCULATOR_RIGHT BUTTON_RIGHT
256 #define CALCULATOR_UP BUTTON_UP
257 #define CALCULATOR_DOWN BUTTON_DOWN
258 #define CALCULATOR_QUIT BUTTON_BACK
259 #define CALCULATOR_INPUT BUTTON_SELECT
260 #define CALCULATOR_CALC BUTTON_MENU
261 #define CALCULATOR_CLEAR BUTTON_PLAY
263 #elif (CONFIG_KEYPAD == MROBE100_PAD)
265 #define CALCULATOR_LEFT BUTTON_LEFT
266 #define CALCULATOR_RIGHT BUTTON_RIGHT
267 #define CALCULATOR_UP BUTTON_UP
268 #define CALCULATOR_DOWN BUTTON_DOWN
269 #define CALCULATOR_QUIT BUTTON_POWER
270 #define CALCULATOR_INPUT BUTTON_SELECT
271 #define CALCULATOR_CALC BUTTON_MENU
272 #define CALCULATOR_CLEAR BUTTON_DISPLAY
274 #elif CONFIG_KEYPAD == IAUDIO_M3_PAD
276 #define CALCULATOR_LEFT BUTTON_RC_REW
277 #define CALCULATOR_RIGHT BUTTON_RC_FF
278 #define CALCULATOR_UP BUTTON_RC_VOL_UP
279 #define CALCULATOR_DOWN BUTTON_RC_VOL_DOWN
280 #define CALCULATOR_QUIT BUTTON_RC_REC
281 #define CALCULATOR_INPUT BUTTON_RC_PLAY
282 #define CALCULATOR_CALC BUTTON_RC_MODE
283 #define CALCULATOR_CLEAR BUTTON_RC_MENU
285 #define CALCULATOR_RC_QUIT BUTTON_REC
287 #elif (CONFIG_KEYPAD == COWOND2_PAD)
289 #define CALCULATOR_QUIT BUTTON_POWER
290 #define CALCULATOR_CLEAR BUTTON_MENU
292 #elif CONFIG_KEYPAD == IAUDIO67_PAD
294 #define CALCULATOR_LEFT BUTTON_LEFT
295 #define CALCULATOR_RIGHT BUTTON_RIGHT
296 #define CALCULATOR_UP BUTTON_VOLUP
297 #define CALCULATOR_DOWN BUTTON_VOLDOWN
298 #define CALCULATOR_QUIT BUTTON_POWER
299 #define CALCULATOR_INPUT BUTTON_PLAY
300 #define CALCULATOR_CALC BUTTON_MENU
301 #define CALCULATOR_CLEAR BUTTON_STOP
303 #define CALCULATOR_RC_QUIT (BUTTON_MENU|BUTTON_PLAY)
305 #elif (CONFIG_KEYPAD == CREATIVEZVM_PAD)
307 #define CALCULATOR_LEFT BUTTON_LEFT
308 #define CALCULATOR_RIGHT BUTTON_RIGHT
309 #define CALCULATOR_UP BUTTON_UP
310 #define CALCULATOR_DOWN BUTTON_DOWN
311 #define CALCULATOR_QUIT BUTTON_BACK
312 #define CALCULATOR_INPUT BUTTON_SELECT
313 #define CALCULATOR_CALC BUTTON_MENU
314 #define CALCULATOR_CLEAR BUTTON_PLAY
316 #elif CONFIG_KEYPAD == PHILIPS_HDD1630_PAD
318 #define CALCULATOR_LEFT BUTTON_LEFT
319 #define CALCULATOR_RIGHT BUTTON_RIGHT
320 #define CALCULATOR_UP BUTTON_UP
321 #define CALCULATOR_DOWN BUTTON_DOWN
322 #define CALCULATOR_QUIT BUTTON_POWER
323 #define CALCULATOR_INPUT BUTTON_SELECT
324 #define CALCULATOR_CALC BUTTON_MENU
325 #define CALCULATOR_CLEAR BUTTON_VIEW
328 #error No keymap defined!
331 #ifdef HAVE_TOUCHSCREEN
332 #ifndef CALCULATOR_LEFT
333 #define CALCULATOR_LEFT BUTTON_MIDLEFT
335 #ifndef CALCULATOR_RIGHT
336 #define CALCULATOR_RIGHT BUTTON_MIDRIGHT
338 #ifndef CALCULATOR_UP
339 #define CALCULATOR_UP BUTTON_TOPMIDDLE
341 #ifndef CALCULATOR_DOWN
342 #define CALCULATOR_DOWN BUTTON_BOTTOMMIDDLE
344 #ifndef CALCULATOR_CALC
345 #define CALCULATOR_CALC BUTTON_BOTTOMRIGHT
347 #ifndef CALCULATOR_INPUT
348 #define CALCULATOR_INPUT BUTTON_CENTER
350 #ifndef CALCULATOR_CLEAR
351 #define CALCULATOR_CLEAR BUTTON_TOPRIGHT
354 #include "lib/touchscreen.h"
355 static struct ts_raster calc_raster
= { X_0_POS
, Y_1_POS
, BUTTON_COLS
*REC_WIDTH
, BUTTON_ROWS
*REC_HEIGHT
, REC_WIDTH
, REC_HEIGHT
};
363 unsigned char* buttonChar
[2][5][5] = {
364 { { "MR" , "M+" , "2nd" , "CE" , "C" },
365 { "7" , "8" , "9" , "/" , "sqr" },
366 { "4" , "5" , "6" , "*" , "x^2" },
367 { "1" , "2" , "3" , "-" , "1/x" },
368 { "0" , "+/-", "." , "+" , "=" } },
370 { { "n!" , "PI" , "1st" , "sin" , "asi" },
371 { "7" , "8" , "9" , "cos" , "aco" },
372 { "4" , "5" , "6" , "tan" , "ata" },
373 { "1" , "2" , "3" , "ln" , "e^x" },
374 { "0" , "+/-", "." , "log" , "x^y" } }
377 enum { btn_MR
, btn_M
, btn_bas
, btn_CE
, btn_C
,
378 btn_7
, btn_8
, btn_9
, btn_div
, btn_sqr
,
379 btn_4
, btn_5
, btn_6
, btn_time
, btn_square
,
380 btn_1
, btn_2
, btn_3
, btn_minus
, btn_rec
,
381 btn_0
, btn_sign
, btn_dot
, btn_add
, btn_equal
384 enum { sci_fac
, sci_pi
, sci_sci
, sci_sin
, sci_asin
,
385 sci_7
, sci_8
, sci_9
, sci_cos
, sci_acos
,
386 sci_4
, sci_5
, sci_6
, sci_tan
, sci_atan
,
387 sci_1
, sci_2
, sci_3
, sci_ln
, sci_exp
,
388 sci_0
, sci_sign
, sci_dot
, sci_log
, sci_xy
391 #define MINIMUM 0.000000000001 /* e-12 */
393 /* 123456789abcdef */
395 #define DIGITLEN 10 /* must <= 10 */
396 #define SCIENTIFIC_FORMAT ( power < -(DIGITLEN-3) || power > (DIGITLEN))
397 /* 0.000 00000 0001 */
399 /* DIGITLEN 12345 6789a bcdef */
400 /* power 12 34567 89abc def */
401 /* 10^- 123 45678 9abcd ef */
403 unsigned char buf
[19];/* 18 bytes of output line,
405 buf[1] = 'M' if memTemp is not 0
409 buf[2]-buf[12] or buf[3]-buf[13] = result;
411 buf[13] or buf[14] -buf[17] = power;
415 buf[7]-buf[17] = result;
419 unsigned char typingbuf
[DIGITLEN
+2];/* byte 0 is sign or ' ',
420 byte 1~DIGITLEN are num and '.'
421 byte (DIGITLEN+1) is '\0' */
422 unsigned char* typingbufPointer
= typingbuf
;
424 double result
= 0; /* main operand, format 0.xxxxx */
425 int power
= 0; /* 10^power */
426 double modifier
= 0.1; /* position of next input */
427 double operand
= 0; /* second operand, format 0.xxxxx */
428 int operandPower
= 0; /* 10^power of second operand */
429 char oper
= ' '; /* operators: + - * / */
430 bool operInputted
= false; /* false: do calculation first and
432 true: just replace current oper */
434 double memTemp
= 0; /* temp memory */
435 int memTempPower
= 0; /* 10^^power of memTemp */
437 int btn_row
, btn_col
; /* current position index for button */
438 int prev_btn_row
, prev_btn_col
; /* previous cursor position */
439 #define CAL_BUTTON (btn_row*5+btn_col)
441 int btn
= BUTTON_NONE
;
442 int lastbtn
= BUTTON_NONE
;
444 /* Status of calculator */
445 enum {cal_normal
, /* 0, normal status, display result */
446 cal_typing
, /* 1, currently typing, dot hasn't been typed */
447 cal_dotted
, /* 2, currently typing, dot already has been typed. */
453 /* constant table for CORDIC algorithm */
454 double cordicTable
[51][2]= {
455 /* pow(2,0) - pow(2,-50) atan(pow(2,0) - atan(pow(2,-50) */
456 {1e+00, 7.853981633974483e-01},
457 {5e-01, 4.636476090008061e-01},
458 {2.5e-01, 2.449786631268641e-01},
459 {1.25e-01, 1.243549945467614e-01},
460 {6.25e-02, 6.241880999595735e-02},
461 {3.125e-02, 3.123983343026828e-02},
462 {1.5625e-02, 1.562372862047683e-02},
463 {7.8125e-03, 7.812341060101111e-03},
464 {3.90625e-03, 3.906230131966972e-03},
465 {1.953125e-03, 1.953122516478819e-03},
466 {9.765625e-04, 9.765621895593195e-04},
467 {4.8828125e-04, 4.882812111948983e-04},
468 {2.44140625e-04, 2.441406201493618e-04},
469 {1.220703125e-04, 1.220703118936702e-04},
470 {6.103515625e-05, 6.103515617420877e-05},
471 {3.0517578125e-05, 3.051757811552610e-05},
472 {1.52587890625e-05, 1.525878906131576e-05},
473 {7.62939453125e-06, 7.629394531101970e-06},
474 {3.814697265625e-06, 3.814697265606496e-06},
475 {1.9073486328125e-06, 1.907348632810187e-06},
476 {9.5367431640625e-07, 9.536743164059608e-07},
477 {4.76837158203125e-07, 4.768371582030888e-07},
478 {2.384185791015625e-07, 2.384185791015580e-07},
479 {1.1920928955078125e-07, 1.192092895507807e-07},
480 {5.9604644775390625e-08, 5.960464477539055e-08},
481 {2.98023223876953125e-08, 2.980232238769530e-08},
482 {1.490116119384765625e-08, 1.490116119384765e-08},
483 {7.450580596923828125e-09, 7.450580596923828e-09},
484 {3.7252902984619140625e-09, 3.725290298461914e-09},
485 {1.86264514923095703125e-09, 1.862645149230957e-09},
486 {9.31322574615478515625e-10, 9.313225746154785e-10},
487 {4.656612873077392578125e-10, 4.656612873077393e-10},
488 {2.3283064365386962890625e-10, 2.328306436538696e-10},
489 {1.16415321826934814453125e-10, 1.164153218269348e-10},
490 {5.82076609134674072265625e-11, 5.820766091346741e-11},
491 {2.910383045673370361328125e-11, 2.910383045673370e-11},
492 {1.4551915228366851806640625e-11, 1.455191522836685e-11},
493 {7.2759576141834259033203125e-12, 7.275957614183426e-12},
494 {3.63797880709171295166015625e-12, 3.637978807091713e-12},
495 {1.818989403545856475830078125e-12, 1.818989403545856e-12},
496 {9.094947017729282379150390625e-13, 9.094947017729282e-13},
497 {4.5474735088646411895751953125e-13, 4.547473508864641e-13},
498 {2.27373675443232059478759765625e-13, 2.273736754432321e-13},
499 {1.136868377216160297393798828125e-13, 1.136868377216160e-13},
500 {5.684341886080801486968994140625e-14, 5.684341886080801e-14},
501 {2.8421709430404007434844970703125e-14, 2.842170943040401e-14},
502 {1.42108547152020037174224853515625e-14, 1.421085471520200e-14},
503 {7.10542735760100185871124267578125e-15, 7.105427357601002e-15},
504 {3.552713678800500929355621337890625e-15, 3.552713678800501e-15},
505 {1.7763568394002504646778106689453125e-15, 1.776356839400250e-15},
506 {8.8817841970012523233890533447265625e-16, 8.881784197001252e-16}
509 void doMultiple(double* operandOne
, int* powerOne
,
510 double operandTwo
, int powerTwo
);
511 void doAdd (double* operandOne
, int* powerOne
,
512 double operandTwo
, int powerTwo
);
513 void printResult(void);
514 void formatResult(void);
515 void oneOperand(void);
517 void drawLines(void);
518 void drawButtons(int group
);
520 /* -----------------------------------------------------------------------
522 ----------------------------------------------------------------------- */
523 void cleartypingbuf(void)
526 for( k
=1; k
<=(DIGITLEN
+1); k
++)
529 typingbufPointer
= typingbuf
+1;
538 void clearResult(void)
545 void clearInput(void)
547 calStatus
= cal_normal
;
550 rb
->lcd_clear_display();
551 drawButtons(buttonGroup
);
555 void clearOperand(void)
561 void clearMemTemp(void)
570 operInputted
= false;
582 void switchOperands(void)
584 double tempr
= operand
;
585 int tempp
= operandPower
;
587 operandPower
= power
;
595 rb
->lcd_hline(0, LCD_WIDTH
, Y_1_POS
-1);
596 for (i
= 0; i
< 5 ; i
++)
597 rb
->lcd_hline(0, LCD_WIDTH
, Y_1_POS
+i
*REC_HEIGHT
);
598 for (i
= 0; i
< 4 ; i
++)
599 rb
->lcd_vline(X_1_POS
+i
*REC_WIDTH
, Y_1_POS
, LCD_HEIGHT
);
602 void drawButtons(int group
)
605 for (i
= 0; i
<= 4; i
++){
606 for (j
= 0; j
<= 4; j
++){
607 rb
->lcd_getstringsize( buttonChar
[group
][i
][j
],&w
,&h
);
608 if (i
== btn_row
&& j
== btn_col
) /* selected item */
609 rb
->lcd_set_drawmode(DRMODE_SOLID
);
611 rb
->lcd_set_drawmode(DRMODE_SOLID
|DRMODE_INVERSEVID
);
612 rb
->lcd_fillrect( X_0_POS
+ j
*REC_WIDTH
,
613 Y_1_POS
+ i
*REC_HEIGHT
,
614 REC_WIDTH
, REC_HEIGHT
+1);
615 if (i
== btn_row
&& j
== btn_col
) /* selected item */
616 rb
->lcd_set_drawmode(DRMODE_SOLID
|DRMODE_INVERSEVID
);
618 rb
->lcd_set_drawmode(DRMODE_SOLID
);
619 rb
->lcd_putsxy( X_0_POS
+ j
*REC_WIDTH
+ (REC_WIDTH
- w
)/2,
620 Y_1_POS
+ i
*REC_HEIGHT
+ (REC_HEIGHT
- h
)/2 + 1,
621 buttonChar
[group
][i
][j
] );
624 rb
->lcd_set_drawmode(DRMODE_SOLID
);
627 /* -----------------------------------------------------------------------
629 ----------------------------------------------------------------------- */
630 void cal_initial (void)
634 rb
->lcd_getstringsize("A",&w
,&h
);
636 rb
->lcd_setfont(FONT_SYSFIXED
);
638 rb
->lcd_clear_display();
640 #ifdef CALCULATOR_OPERATORS
641 /* basic operators are available through separate button */
642 buttonGroup
= sciButtons
;
644 buttonGroup
= basicButtons
;
647 /* initially, invert button "5" */
650 prev_btn_row
= btn_row
;
651 prev_btn_col
= btn_col
;
652 drawButtons(buttonGroup
);
656 /* initial mem and output display*/
660 /* clear button queue */
661 rb
->button_clear_queue();
664 /* -----------------------------------------------------------------------
665 mySqrt uses Heron's algorithm, which is the Newtone-Raphson algorhitm
666 in it's private case for sqrt.
667 Thanks BlueChip for his intro text and Dave Straayer for the actual name.
668 ----------------------------------------------------------------------- */
669 double mySqrt(double square
)
673 double root
= ABS(square
+1)/2;
675 while( ABS(root
- temp
) > MINIMUM
){
677 root
= (square
/temp
+ temp
)/2;
679 if (k
>10000) return 0;
684 /* -----------------------------------------------------------------------
685 transcendFunc uses CORDIC (COordinate Rotation DIgital Computer) method
686 transcendFunc can do sin,cos,log,exp
687 input parameter is angle
688 ----------------------------------------------------------------------- */
689 void transcendFunc(char* func
, double* tt
, int* ttPower
)
691 double t
= (*tt
)*M_PI
/180; int tPower
= *ttPower
;
693 int n
= 50; /* n <=50, tables are all <= 50 */
695 double x
,y
,z
,xt
,yt
,zt
;
698 calStatus
= cal_normal
;
702 calStatus
= cal_error
;
706 calStatus
= cal_normal
;
708 if( func
[0] =='s' || func
[0] =='S'|| func
[0] =='t' || func
[0] =='T')
711 /* if( func[0] =='c' || func[0] =='C') */
725 while (t
> j
*M_TWOPI
) {j
++;}
727 if (M_PI_2
< t
&& t
< 3*M_PI_2
){
729 if (func
[0] =='c' || func
[0] =='C')
731 else if (func
[0] =='t' || func
[0] =='T')
734 else if ( 3*M_PI_2
<= t
&& t
<= M_TWOPI
)
737 x
= 0.60725293500888; y
= 0; z
= t
;
739 xt
= x
- SIGN(z
) * y
*cordicTable
[j
-1][0];
740 yt
= y
+ SIGN(z
) * x
*cordicTable
[j
-1][0];
741 zt
= z
- SIGN(z
) * cordicTable
[j
-1][1];
746 if( func
[0] =='s' || func
[0] =='S') {
750 else if( func
[0] =='c' || func
[0] =='C') {
754 else /*if( func[0] =='t' || func[0] =='T')*/ {
755 if(t
==M_PI_2
||t
==-M_PI_2
){
756 calStatus
= cal_error
;
766 /* -----------------------------------------------------------------------
767 add in scientific number format
768 ----------------------------------------------------------------------- */
769 void doAdd (double* operandOne
, int* powerOne
,
770 double operandTwo
, int powerTwo
)
772 if ( *powerOne
>= powerTwo
){
773 if (*powerOne
- powerTwo
<= DIGITLEN
+1){
774 while (powerTwo
< *powerOne
){
778 *operandOne
+= operandTwo
;
780 /*do nothing if operandTwo is too small*/
783 if (powerTwo
- *powerOne
<= DIGITLEN
+1){
784 while(powerTwo
> *powerOne
){
788 (*operandOne
) += operandTwo
;
790 else{/* simply copy operandTwo if operandOne is too small */
791 *operandOne
= operandTwo
;
792 *powerOne
= powerTwo
;
796 /* -----------------------------------------------------------------------
797 multiple in scientific number format
798 ----------------------------------------------------------------------- */
799 void doMultiple(double* operandOne
, int* powerOne
,
800 double operandTwo
, int powerTwo
)
802 (*operandOne
) *= operandTwo
;
803 (*powerOne
) += powerTwo
;
806 /* -----------------------------------------------------------------------
807 Handles all one operand calculations
808 ----------------------------------------------------------------------- */
809 void oneOperand(void)
812 if (buttonGroup
== basicButtons
){
816 calStatus
= cal_error
;
819 result
= (mySqrt(result
*10))/10;
820 power
= (power
+1) / 2;
823 result
= mySqrt(result
);
826 calStatus
= cal_normal
;
832 calStatus
= cal_normal
;
837 calStatus
= cal_error
;
841 calStatus
= cal_normal
;
845 calStatus
= cal_toDo
;
846 break; /* just for the safety */
849 else{ /* sciButtons */
852 transcendFunc("sin", &result
, &power
);
855 transcendFunc("cos", &result
, &power
);
858 transcendFunc("tan", &result
, &power
);
861 if (power
<0 || power
>8 || result
<0 )
862 calStatus
= cal_error
;
863 else if(result
== 0) {
872 if ( ( result
- (int)result
) > MINIMUM
)
873 calStatus
= cal_error
;
875 k
= result
; result
= 1;
877 doMultiple(&result
, &power
, k
, 0);
881 calStatus
= cal_normal
;
886 calStatus
= cal_toDo
;
887 break; /* just for the safety */
893 /* -----------------------------------------------------------------------
894 Handles all two operands calculations
895 ----------------------------------------------------------------------- */
896 void twoOperands(void)
900 doAdd(&operand
, &operandPower
, -result
, power
);
903 doAdd(&operand
, &operandPower
, result
, power
);
906 doMultiple(&operand
, &operandPower
, result
, power
);
909 if ( ABS(result
) > MINIMUM
){
910 doMultiple(&operand
, &operandPower
, 1/result
, -power
);
913 calStatus
= cal_error
;
916 switchOperands(); /* counter switchOperands() below */
923 /* First, increases *dimen1 by dimen1_delta modulo dimen1_modulo.
924 If dimen1 wraps, increases *dimen2 by dimen2_delta modulo dimen2_modulo.
926 static void move_with_wrap_and_shift(
927 int *dimen1
, int dimen1_delta
, int dimen1_modulo
,
928 int *dimen2
, int dimen2_delta
, int dimen2_modulo
)
930 bool wrapped
= false;
932 *dimen1
+= dimen1_delta
;
935 *dimen1
= dimen1_modulo
- 1;
938 else if (*dimen1
>= dimen1_modulo
)
946 /* Make the dividend always positive to be sure about the result.
947 Adding dimen2_modulo does not change it since we do it modulo. */
948 *dimen2
= (*dimen2
+ dimen2_modulo
+ dimen2_delta
) % dimen2_modulo
;
952 /* -----------------------------------------------------------------------
953 Print buttons when switching 1st and 2nd
954 int group = {basicButtons, sciButtons}
955 ----------------------------------------------------------------------- */
956 void printButtonGroups(int group
)
962 /* -----------------------------------------------------------------------
963 flash the currently marked button
964 ----------------------------------------------------------------------- */
965 void flashButton(void)
970 rb
->lcd_getstringsize( buttonChar
[buttonGroup
][btn_row
][btn_col
],&w
,&h
);
971 rb
->lcd_set_drawmode(DRMODE_SOLID
|(k
==1) ? 0 : DRMODE_INVERSEVID
);
972 rb
->lcd_fillrect( X_0_POS
+ btn_col
*REC_WIDTH
+ 1,
973 Y_1_POS
+ btn_row
*REC_HEIGHT
+ 1,
974 REC_WIDTH
- 1, REC_HEIGHT
- 1);
975 rb
->lcd_putsxy( X_0_POS
+ btn_col
*REC_WIDTH
+ (REC_WIDTH
- w
)/2,
976 Y_1_POS
+ btn_row
*REC_HEIGHT
+ (REC_HEIGHT
- h
)/2 +1,
977 buttonChar
[buttonGroup
][btn_row
][btn_col
] );
978 rb
->lcd_update_rect( X_0_POS
+ btn_col
*REC_WIDTH
+ 1,
979 Y_1_POS
+ btn_row
*REC_HEIGHT
+ 1,
980 REC_WIDTH
- 1, REC_HEIGHT
- 1);
988 /* -----------------------------------------------------------------------
989 pos is the position that needs animation. pos = [1~18]
990 ----------------------------------------------------------------------- */
991 void deleteAnimation(int pos
)
994 if (pos
<1 || pos
>18)
997 rb
->lcd_fillrect(1+pos
*6, TEXT_1_POS
, 6, 8);
998 rb
->lcd_update_rect(1+pos
*6, TEXT_1_POS
, 6, 8);
1002 rb
->lcd_set_drawmode(DRMODE_SOLID
|DRMODE_INVERSEVID
);
1003 rb
->lcd_fillrect(1+pos
*6, TEXT_1_POS
, 6, 8);
1004 rb
->lcd_set_drawmode(DRMODE_SOLID
);
1005 rb
->lcd_fillrect(1+pos
*6+1+k
, TEXT_1_POS
+k
,
1006 (5-2*k
)>0?(5-2*k
):1, (7-2*k
)>0?(7-2*k
):1 );
1007 rb
->lcd_update_rect(1+pos
*6, TEXT_1_POS
, 6, 8);
1012 /* -----------------------------------------------------------------------
1013 result may be one of these formats:
1019 formatResult() change result to standard format: 0.xxxx
1020 if result is close to 0, let it be 0;
1021 if result is close to 1, let it be 0.1 and power++;
1022 ----------------------------------------------------------------------- */
1023 void formatResult(void)
1025 int resultsign
= SIGN(result
);
1026 result
= ABS(result
);
1027 if(result
> MINIMUM
){ /* doesn't check power, might have problem
1029 + - * / of two formatted number wouldn't.
1030 only a calculation that makes a formatted
1031 number (0.xxxx) less than MINIMUM in only
1035 while( (int)(result
*10) == 0 ){
1041 else{ /* result >= 1 */
1042 while( (int)result
!= 0 ){
1049 if (result
> (1-MINIMUM
)){
1054 result
*= resultsign
;
1063 /* -----------------------------------------------------------------------
1064 result2typingbuf() outputs standard format result to typingbuf.
1065 case SCIENTIFIC_FORMAT, let temppower = 1;
1066 case temppower > 0: print '.' in the middle
1067 case temppower <= 0: print '.' in the begining
1068 ----------------------------------------------------------------------- */
1069 void result2typingbuf(void)
1071 bool haveDot
= false;
1074 double tempresult
= ABS(result
); /* positive num makes things simple */
1077 double tempmodifier
= 1;
1080 if(SCIENTIFIC_FORMAT
)
1081 temppower
= 1; /* output x.xxxx format */
1087 if(tempresult
< MINIMUM
){ /* if 0,faster display and avoid complication*/
1091 else{ /* tempresult > 0 */
1092 typingbuf
[0] = (SIGN(result
)<0)?'-':' ';
1094 typingbufPointer
= typingbuf
;
1096 for (k
= 0; k
<DIGITLEN
+1 ; k
++){
1098 if(temppower
|| *(typingbufPointer
-1) == '.'){
1100 tempmodifier
= tempmodifier
/10;
1101 while( (tempresult
-tempmodifier
*count
) >
1102 (tempmodifier
-MINIMUM
)){
1105 tempresult
-= tempmodifier
*count
;
1106 tempresult
= ABS(tempresult
);
1108 *typingbufPointer
= count
+ '0';
1110 else{ /* temppower == 0 */
1111 *typingbufPointer
= '.';
1118 typingbufPointer
++; *typingbufPointer
= '0';
1119 typingbufPointer
++; *typingbufPointer
= '.';
1120 for (k
= 2; k
<DIGITLEN
+1 ; k
++){
1123 if ( (-temppower
) < (k
-1)){
1124 tempmodifier
= tempmodifier
/10;
1125 while((tempresult
-tempmodifier
*count
)>(tempmodifier
-MINIMUM
)){
1129 tempresult
-= tempmodifier
*count
;
1130 tempresult
= ABS(tempresult
);
1133 *typingbufPointer
= count
+ '0';
1136 /* now, typingbufPointer = typingbuf + 16 */
1137 /* backward strip off 0 and '.' */
1139 while( (*typingbufPointer
== '0') || (*typingbufPointer
== '.')){
1140 tempchar
= *typingbufPointer
;
1141 *typingbufPointer
= 0;
1143 if (tempchar
== '.') break;
1146 typingbuf
[DIGITLEN
+1] = 0;
1147 } /* else tempresult > 0 */
1150 /* -----------------------------------------------------------------------
1151 printResult() generates LCD display.
1152 ----------------------------------------------------------------------- */
1153 void printResult(void)
1157 char operbuf
[3] = {0, 0, 0};
1162 rb
->lcd_clear_display();
1163 rb
->splash(HZ
/3, "Bye now!");
1167 rb
->snprintf(buf
, 19, "%18s","Error");
1171 rb
->snprintf(buf
, 19, "%18s","Coming soon ^_* ");
1177 if( power
> 1000 ){ /* power -1 > 999 */
1178 calStatus
= cal_error
;
1181 if (power
< -998 ) /* power -1 < -999 */
1182 clearResult(); /* too small, let it be 0 */
1188 operbuf
[1] = ( ABS(memTemp
) > MINIMUM
)?'M':' ';
1191 if(SCIENTIFIC_FORMAT
){
1192 /* output format: X.XXXX eXXX */
1193 if(power
> -98){ /* power-1 >= -99, eXXX or e-XX */
1194 rb
->snprintf(buf
, 12, "%11s",typingbuf
);
1195 for(k
=11;k
<=14;k
++) buf
[k
] = ' ';
1197 rb
->snprintf(typingbuf
, 5, "e%d",power
-1);
1198 rb
->snprintf(buf
+11, 5, "%4s",typingbuf
);
1200 else{ /* power-1 <= -100, e-XXX */
1201 rb
->snprintf(buf
, 12, "%11s",typingbuf
);
1202 rb
->snprintf(buf
+11, 6, "e%d",power
-1);
1206 rb
->snprintf(buf
, 12, "%11s",typingbuf
);
1207 } /* if SCIENTIFIC_FORMAT */
1213 operbuf
[1] = ( ABS(memTemp
) > MINIMUM
)?'M':' ';
1214 rb
->snprintf(buf
, 12, "%11s",typingbuf
);
1219 rb
->lcd_getstringsize(buf
, &w
, &h
);
1220 rb
->screen_clear_area(rb
->screens
[0], 0, 0, LCD_WIDTH
, REC_HEIGHT
-1);
1221 rb
->lcd_putsxy(4, Y_1_POS
- h
-1, operbuf
);
1222 rb
->lcd_putsxy(LCD_WIDTH
- w
- 4, Y_1_POS
- h
-1, buf
);
1223 rb
->lcd_update_rect(0, 1, LCD_WIDTH
, Y_1_POS
);
1226 /* -----------------------------------------------------------------------
1227 Process typing buttons: 1-9, '.', sign
1228 main operand "result" and typingbuf are processed seperately here.
1229 ----------------------------------------------------------------------- */
1230 void typingProcess(void){
1231 switch( CAL_BUTTON
){
1233 if (calStatus
== cal_typing
||
1234 calStatus
== cal_dotted
)
1235 typingbuf
[0] = (typingbuf
[0]=='-')?' ':'-';
1239 operInputted
= false;
1243 *typingbufPointer
= '0';
1246 calStatus
= cal_dotted
;
1247 *typingbufPointer
= '.';
1248 if (typingbufPointer
!= typingbuf
+DIGITLEN
+1)
1251 default: /* cal_dotted */
1256 operInputted
= false;
1257 /* normal,0; normal,1-9; typing,0; typing,1-9 */
1260 if(CAL_BUTTON
== btn_0
)
1261 break; /* first input is 0, ignore */
1263 /*no operator means start a new calculation*/
1266 calStatus
= cal_typing
;
1267 /* go on typing, no break */
1272 *typingbufPointer
= '0';
1275 *typingbufPointer
=(7+btn_col
-3*(btn_row
-1))+ '0';
1278 if (typingbufPointer
!=typingbuf
+DIGITLEN
+1){
1281 {/* result processing */
1282 if (calStatus
== cal_typing
) power
++;
1283 if (CAL_BUTTON
!= btn_0
)
1286 (7+btn_col
-3*(btn_row
-1))*modifier
;
1290 else /* last byte always '\0' */
1291 *typingbufPointer
= 0;
1293 default: /* cal_error, cal_exit */
1296 break; /* default, 0-9 */
1297 } /* switch( CAL_BUTTON ) */
1300 /* -----------------------------------------------------------------------
1301 Handle delete operation
1302 main operand "result" and typingbuf are processed seperately here.
1303 ----------------------------------------------------------------------- */
1304 void doDelete(void){
1305 deleteAnimation(18);
1308 if (*(typingbufPointer
-1) == '.'){
1309 /* if dotted and deleting '.',
1310 change status and delete '.' below */
1311 calStatus
= cal_typing
;
1313 else{ /* if dotted and not deleting '.',
1315 power
++; /* counter "power--;" below */
1320 {/* result processing */ /* 0-9, '.' */
1321 /* if deleting '.', do nothing */
1322 if ( *typingbufPointer
!= '.'){
1325 result
= result
- SIGN(result
)*
1326 ((*typingbufPointer
)- '0')*modifier
;
1330 *typingbufPointer
= 0;
1332 /* if (only one digit left and it's 0)
1333 or no digit left, change status*/
1334 if ( typingbufPointer
== typingbuf
+1 ||
1335 ( typingbufPointer
== typingbuf
+2 &&
1336 *(typingbufPointer
-1) == '0' ))
1337 calStatus
= cal_normal
;
1339 default: /* normal, error, exit */
1343 /* -----------------------------------------------------------------------
1344 Handle buttons on basic screen
1345 ----------------------------------------------------------------------- */
1346 void basicButtonsProcess(void){
1348 case CALCULATOR_INPUT
:
1349 if (calStatus
== cal_error
&& (CAL_BUTTON
!= btn_C
) ) break;
1351 switch( CAL_BUTTON
){
1353 operInputted
= false;
1354 result
= memTemp
; power
= memTempPower
;
1355 calStatus
= cal_normal
;
1359 if (memTemp
> MINIMUM
)
1360 doAdd(&memTemp
, &memTempPower
, result
, power
);
1362 /* if result is too small and memTemp = 0,
1363 doAdd will not add */
1365 memTempPower
= power
;
1367 calStatus
= cal_normal
;
1370 case btn_C
: clearMem(); break;
1371 case btn_CE
: clearInput(); break;
1374 buttonGroup
= sciButtons
;
1375 printButtonGroups(buttonGroup
);
1378 /* one operand calculation, may be changed to
1379 like sin, cos, log, etc */
1383 formatResult(); /* not necessary, just for safty */
1387 case_btn_equal
: /* F3 shortkey entrance */
1390 calStatus
= cal_normal
;
1391 operInputted
= false;
1392 if (oper
!= ' ') twoOperands();
1399 if(!operInputted
) {twoOperands(); operInputted
= true;}
1400 oper
= buttonChar
[basicButtons
][btn_row
][btn_col
][0];
1401 #ifdef CALCULATOR_OPERATORS
1402 case_cycle_operators
: /* F2 shortkey entrance */
1404 calStatus
= cal_normal
;
1407 operandPower
= power
;
1416 } /* switch (CAL_BUTTON) */
1419 #ifdef CALCULATOR_OPERATORS
1420 case CALCULATOR_OPERATORS
:
1421 if (calStatus
== cal_error
) break;
1422 if (!operInputted
) {twoOperands(); operInputted
= true;}
1425 case '/': oper
= '+'; flashButton(); break;
1426 case '+': oper
= '-'; flashButton(); break;
1427 case '-': oper
= '*'; flashButton(); break;
1428 case '*': oper
= '/'; flashButton(); break;
1430 goto case_cycle_operators
;
1434 case CALCULATOR_CALC
:
1435 if (calStatus
== cal_error
) break;
1437 goto case_btn_equal
;
1444 /* -----------------------------------------------------------------------
1445 Handle buttons on scientific screen
1446 ----------------------------------------------------------------------- */
1447 void sciButtonsProcess(void){
1449 case CALCULATOR_INPUT
:
1450 if (calStatus
== cal_error
&& (CAL_BUTTON
!= sci_sci
) ) break;
1452 switch( CAL_BUTTON
){
1455 result
= M_PI
; power
= 0;
1456 calStatus
= cal_normal
;
1462 buttonGroup
= basicButtons
;
1463 printButtonGroups(basicButtons
);
1476 formatResult(); /* not necessary, just for safty */
1485 } /* switch (CAL_BUTTON) */
1488 #ifdef CALCULATOR_OPERATORS
1489 case CALCULATOR_OPERATORS
:
1490 if (calStatus
== cal_error
) break;
1491 if (!operInputted
) {twoOperands(); operInputted
= true;}
1493 case ' ': oper
= '+'; break;
1494 case '/': oper
= '+'; deleteAnimation(1); break;
1495 case '+': oper
= '-'; deleteAnimation(1); break;
1496 case '-': oper
= '*'; deleteAnimation(1); break;
1497 case '*': oper
= '/'; deleteAnimation(1); break;
1499 calStatus
= cal_normal
;
1502 operandPower
= power
;
1506 case CALCULATOR_CALC
:
1507 if (calStatus
== cal_error
) break;
1509 calStatus
= cal_normal
;
1510 operInputted
= false;
1511 if (oper
!= ' ') twoOperands();
1518 /* -----------------------------------------------------------------------
1520 Invert display new button, invert back previous button
1521 ----------------------------------------------------------------------- */
1522 int handleButton(int button
){
1525 case CALCULATOR_INPUT
:
1526 case CALCULATOR_CALC
:
1527 #ifdef CALCULATOR_INPUT_CALC_PRE
1528 if (lastbtn
!= CALCULATOR_INPUT_CALC_PRE
)
1530 /* no unconditional break; here! */
1532 #ifdef CALCULATOR_OPERATORS
1533 case CALCULATOR_OPERATORS
:
1535 switch(buttonGroup
){
1537 basicButtonsProcess();
1540 sciButtonsProcess();
1545 #ifdef CALCULATOR_CLEAR
1546 case CALCULATOR_CLEAR
:
1552 default: /* cal_normal, cal_error, cal_exit */
1559 case CALCULATOR_LEFT
:
1560 case CALCULATOR_LEFT
| BUTTON_REPEAT
:
1561 move_with_wrap_and_shift(
1562 &btn_col
, -1, BUTTON_COLS
,
1563 &btn_row
, 0, BUTTON_ROWS
);
1566 case CALCULATOR_RIGHT
:
1567 case CALCULATOR_RIGHT
| BUTTON_REPEAT
:
1568 move_with_wrap_and_shift(
1569 &btn_col
, 1, BUTTON_COLS
,
1570 &btn_row
, 0, BUTTON_ROWS
);
1573 #ifdef CALCULATOR_UP
1575 case CALCULATOR_UP
| BUTTON_REPEAT
:
1576 move_with_wrap_and_shift(
1577 &btn_row
, -1, BUTTON_ROWS
,
1578 &btn_col
, 0, BUTTON_COLS
);
1581 #ifdef CALCULATOR_DOWN
1582 case CALCULATOR_DOWN
:
1583 case CALCULATOR_DOWN
| BUTTON_REPEAT
:
1584 move_with_wrap_and_shift(
1585 &btn_row
, 1, BUTTON_ROWS
,
1586 &btn_col
, 0, BUTTON_COLS
);
1590 #ifdef CALCULATOR_UP_W_SHIFT
1591 case CALCULATOR_UP_W_SHIFT
:
1592 case CALCULATOR_UP_W_SHIFT
| BUTTON_REPEAT
:
1593 move_with_wrap_and_shift(
1594 &btn_row
, -1, BUTTON_ROWS
,
1595 &btn_col
, -1, BUTTON_COLS
);
1598 #ifdef CALCULATOR_DOWN_W_SHIFT
1599 case CALCULATOR_DOWN_W_SHIFT
:
1600 case CALCULATOR_DOWN_W_SHIFT
| BUTTON_REPEAT
:
1601 move_with_wrap_and_shift(
1602 &btn_row
, 1, BUTTON_ROWS
,
1603 &btn_col
, 1, BUTTON_COLS
);
1606 #ifdef CALCULATOR_LEFT_W_SHIFT
1607 case CALCULATOR_LEFT_W_SHIFT
:
1608 case CALCULATOR_LEFT_W_SHIFT
| BUTTON_REPEAT
:
1609 move_with_wrap_and_shift(
1610 &btn_col
, -1, BUTTON_COLS
,
1611 &btn_row
, -1, BUTTON_ROWS
);
1614 #ifdef CALCULATOR_RIGHT_W_SHIFT
1615 case CALCULATOR_RIGHT_W_SHIFT
:
1616 case CALCULATOR_RIGHT_W_SHIFT
| BUTTON_REPEAT
:
1617 move_with_wrap_and_shift(
1618 &btn_col
, 1, BUTTON_COLS
,
1619 &btn_row
, 1, BUTTON_ROWS
);
1622 #ifdef CALCULATOR_RC_QUIT
1623 case CALCULATOR_RC_QUIT
:
1625 case CALCULATOR_QUIT
:
1631 prev_btn_row
= btn_row
;
1632 prev_btn_col
= btn_col
;
1635 /* -----------------------------------------------------------------------
1637 ----------------------------------------------------------------------- */
1638 enum plugin_status
plugin_start(const void* parameter
)
1642 /* now go ahead and have fun! */
1646 while (calStatus
!= cal_exit
) {
1647 btn
= rb
->button_get_w_tmo(HZ
/2);
1648 #ifdef HAVE_TOUCHSCREEN
1649 if(btn
& BUTTON_TOUCHSCREEN
)
1651 struct ts_raster_result res
;
1652 if(touchscreen_map_raster(&calc_raster
, rb
->button_get_data() >> 16,
1653 rb
->button_get_data() & 0xffff, &res
) == 1)
1657 drawButtons(buttonGroup
);
1662 prev_btn_row
= btn_row
;
1663 prev_btn_col
= btn_col
;
1664 if(btn
& BUTTON_REL
)
1666 btn
= CALCULATOR_INPUT
;
1667 switch(buttonGroup
){
1669 basicButtonsProcess();
1672 sciButtonsProcess();
1675 btn
= BUTTON_TOUCHSCREEN
;
1680 if (handleButton(btn
) == -1)
1682 calStatus
= cal_exit
;
1687 drawButtons(buttonGroup
);
1693 if(rb
->default_event_handler(btn
) == SYS_USB_CONNECTED
)
1694 return PLUGIN_USB_CONNECTED
;
1696 if (btn
!= BUTTON_NONE
)
1698 } /* while (calStatus != cal_exit ) */
1700 rb
->button_clear_queue();
1704 #endif /* #ifdef HAVE_LCD_BITMAP */