OSDN Git Service

f53efd4958d9e02cc410145e9a1958dde65002b3
[openi2cradio/OpenI2CRadio.git] / helps.c
1 /*
2  * OpenI2CRADIO
3  * Menu:HELP.
4  * Copyright (C) 2013-06-21 K.Ohta <whatisthis.sowhat ai gmail.com>
5  * License: GPL2+LE
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2,
10  *  or (at your option) any later version.
11  *  This library / program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14  *  See the GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this library; see the file COPYING. If not, write to the
18  *  Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
19  *  MA 02110-1301, USA.
20  *
21  *  As a special exception, if you link this(includeed from sdcc) library
22  *  with other files, some of which are compiled with SDCC,
23  *  to produce an executable, this library does not by itself cause
24  *  the resulting executable to be covered by the GNU General Public License.
25  *  This exception does not however invalidate any other reasons why
26  *  the executable file might be covered by the GNU General Public License.
27  */
28
29 #include "menu.h"
30 #include "power.h"
31 #include "commondef.h"
32
33 const char *updown_helpstr[20] = {
34         "Help", "F=exit any=continue",
35         "5: Menu", " ",
36         "1: Slow Down", "3: Slow Up",
37         "4: Down", "6: Up",
38         "7: Fast Down", "9: Fast Up",
39         "2: Band Down", "8: Band Up",
40         "0: Mode3K", " ",
41         "a: AM/FM", "b: Volume",
42         "c: Scan", "d: Stereo mode",
43         "e: Backlight", "f: (Exit) Help",
44     };
45
46 const char *setup_helpstr[14] = {
47         "Help", "F=exit any=continue",
48         "0: Power OFF", "C: Save status",
49         "d: Reset default", "E: BL time",
50         "A: Load", "",
51         "1: FM CNR", "2: AM CNR"
52         "3: FM STEREO", "4: Reserve"
53         "5: Cancel", "f: (Exit) Help",
54     };
55
56 const char *mainmenu_helpstr[14] = {
57         "Help", "F=exit any=continue",
58         "0: Setup", "1: Band",
59          "3: Freq", "5: Scan"
60         "7: Power Off", "9: Width",
61         "a: AM/FM", "b: Cancel",
62         "c: Set user", "d: Input user",
63         "e: Reserve", "f: (Exit) Help"
64 };
65
66 const char *numeric_helpstr[10] = {
67      "On numeric input", " ",
68     "0-9: Numeric", "f: enter",
69     "a: Delete", "b: Reset value",
70     "d: Left", "e: Right",
71     "Press any key", " to continue."
72 };
73
74
75 void setup_help(void)
76 {
77     unsigned char c;
78     char l;
79     l = 0;
80     do {
81         c = printhelp_2lines(setup_helpstr[l], setup_helpstr[l + 1]);
82         if(c == charcode_f) return;
83         l += 2;
84         if(l >= 16) {
85             c = numeric_help();
86             if(c == charcode_f) return;
87             l = 0;
88         }
89     } while(1);
90
91 }
92
93 unsigned char printhelp_2lines(const char *l1, const char *l2)
94 {
95     _CLS();
96     _LOCATE(0,0);
97     printstr(l1);
98     _LOCATE(0,1);
99     printstr(l2);
100     _HOME();
101     return pollkey_single();
102 }
103
104 unsigned char numeric_help(void)
105 {
106     unsigned char c;
107     char l;
108     l = 0;
109     do {
110         c = printhelp_2lines(numeric_helpstr[l], numeric_helpstr[l + 1]);
111         if(c == charcode_f) return charcode_f;
112         l += 2;
113     } while(l < 10);
114     return c;
115 }
116
117 void mainmenu_help(void)
118 {
119     unsigned char c;
120
121     char l;
122     l = 0;
123     do {
124         c = printhelp_2lines(mainmenu_helpstr[l], mainmenu_helpstr[l + 1]);
125         if(c == charcode_f) return;
126         l += 2;
127         if(l >= 18) {
128             c = numeric_help();
129             if(c == charcode_f) return;
130             l = 0;
131         }
132     } while(1);
133 }
134
135 void updown_help(void)
136 {
137     unsigned char c;
138     char l;
139
140     l = 0;
141     do {
142         c = printhelp_2lines(updown_helpstr[l], updown_helpstr[l + 1]);
143         if(c == charcode_f) return;
144         l += 2;
145         if(l >= 20) {
146             c = numeric_help();
147             if(c == charcode_f) return;
148             l = 0;
149         }
150     } while(1);
151 }