1 // SPDX-License-Identifier: GPL-2.0+
3 * help module for speakup
5 *written by David Borowski.
7 * Copyright (C) 2003 David Borowski.
10 #include <linux/keyboard.h>
16 static const int num_key_names = MSG_KEYNAMES_END - MSG_KEYNAMES_START + 1;
17 static u_short key_offsets[MAXFUNCS], key_data[MAXKEYS];
18 static u_short masks[] = { 32, 16, 8, 4, 2, 1 };
20 static short letter_offsets[26] = {
21 -1, -1, -1, -1, -1, -1, -1, -1,
22 -1, -1, -1, -1, -1, -1, -1, -1,
23 -1, -1, -1, -1, -1, -1, -1, -1,
26 static u_char funcvals[] = {
27 ATTRIB_BLEEP_DEC, ATTRIB_BLEEP_INC, BLEEPS_DEC, BLEEPS_INC,
28 SAY_FIRST_CHAR, SAY_LAST_CHAR, SAY_CHAR, SAY_CHAR_NUM,
29 SAY_NEXT_CHAR, SAY_PHONETIC_CHAR, SAY_PREV_CHAR, SPEAKUP_PARKED,
30 SPEAKUP_CUT, EDIT_DELIM, EDIT_EXNUM, EDIT_MOST,
31 EDIT_REPEAT, EDIT_SOME, SPEAKUP_GOTO, BOTTOM_EDGE,
32 LEFT_EDGE, RIGHT_EDGE, TOP_EDGE, SPEAKUP_HELP,
33 SAY_LINE, SAY_NEXT_LINE, SAY_PREV_LINE, SAY_LINE_INDENT,
34 SPEAKUP_PASTE, PITCH_DEC, PITCH_INC, PUNCT_DEC,
35 PUNCT_INC, PUNC_LEVEL_DEC, PUNC_LEVEL_INC, SPEAKUP_QUIET,
36 RATE_DEC, RATE_INC, READING_PUNC_DEC, READING_PUNC_INC,
37 SAY_ATTRIBUTES, SAY_FROM_LEFT, SAY_FROM_TOP, SAY_POSITION,
38 SAY_SCREEN, SAY_TO_BOTTOM, SAY_TO_RIGHT, SPK_KEY,
39 SPK_LOCK, SPEAKUP_OFF, SPEECH_KILL, SPELL_DELAY_DEC,
40 SPELL_DELAY_INC, SPELL_WORD, SPELL_PHONETIC, TONE_DEC,
41 TONE_INC, VOICE_DEC, VOICE_INC, VOL_DEC,
42 VOL_INC, CLEAR_WIN, SAY_WIN, SET_WIN,
43 ENABLE_WIN, SAY_WORD, SAY_NEXT_WORD, SAY_PREV_WORD, 0
46 static u_char *state_tbl;
47 static int cur_item, nstates;
49 static void build_key_data(void)
51 u_char *kp, counters[MAXFUNCS], ch, ch1;
55 nstates = (int)(state_tbl[-1]);
56 memset(counters, 0, sizeof(counters));
57 memset(key_offsets, 0, sizeof(key_offsets));
58 kp = state_tbl + nstates + 1;
60 /* count occurrences of each function */
61 for (i = 0; i < nstates; i++, kp++) {
64 if ((state_tbl[i] & 16) != 0 && *kp == SPK_KEY)
69 for (i = 0; i < MAXFUNCS; i++) {
72 key_offsets[i] = offset;
73 offset += (counters[i] + 1);
74 if (offset >= MAXKEYS)
77 /* leave counters set so high keycodes come first.
78 * this is done so num pad and other extended keys maps are spoken before
79 * the alpha with speakup type mapping.
81 kp = state_tbl + nstates + 1;
82 while ((ch = *kp++)) {
83 for (i = 0; i < nstates; i++) {
87 if ((state_tbl[i] & 16) != 0 && ch1 == SPK_KEY)
89 key = (state_tbl[i] << 8) + ch;
91 offset = key_offsets[ch1];
94 p_key = key_data + offset + counters[ch1];
100 static void say_key(int key)
102 int i, state = key >> 8;
105 for (i = 0; i < 6; i++) {
106 if (state & masks[i])
107 synth_printf(" %s", spk_msg_get(MSG_STATES_START + i));
109 if ((key > 0) && (key <= num_key_names))
110 synth_printf(" %s\n",
111 spk_msg_get(MSG_KEYNAMES_START + (key - 1)));
114 static int help_init(void)
118 int num_funcs = MSG_FUNCNAMES_END - MSG_FUNCNAMES_START + 1;
120 state_tbl = spk_our_keys[0] + SHIFT_TBL_SIZE + 2;
121 for (i = 0; i < num_funcs; i++) {
122 char *cur_funcname = spk_msg_get(MSG_FUNCNAMES_START + i);
124 if (start == *cur_funcname)
126 start = *cur_funcname;
127 letter_offsets[(start & 31) - 1] = i;
132 int spk_handle_help(struct vc_data *vc, u_char type, u_char ch, u_short key)
137 u_short *p_keys, val;
139 if (letter_offsets[0] == -1)
141 if (type == KT_LATIN) {
143 spk_special_handler = NULL;
144 synth_printf("%s\n", spk_msg_get(MSG_LEAVING_HELP));
147 ch |= 32; /* lower case */
148 if (ch < 'a' || ch > 'z')
150 if (letter_offsets[ch - 'a'] == -1) {
151 synth_printf(spk_msg_get(MSG_NO_COMMAND), ch);
155 cur_item = letter_offsets[ch - 'a'];
156 } else if (type == KT_CUR) {
158 (MSG_FUNCNAMES_START + cur_item + 1) <= MSG_FUNCNAMES_END)
160 else if (ch == 3 && cur_item > 0)
164 } else if (type == KT_SPKUP && ch == SPEAKUP_HELP &&
165 !spk_special_handler) {
166 spk_special_handler = spk_handle_help;
167 synth_printf("%s\n", spk_msg_get(MSG_HELP_INFO));
168 build_key_data(); /* rebuild each time in case new mapping */
172 if ((type != KT_SPKUP) && (key > 0) && (key <= num_key_names)) {
174 spk_msg_get(MSG_KEYNAMES_START + key - 1));
177 for (i = 0; funcvals[i] != 0 && !name; i++) {
178 if (ch == funcvals[i])
179 name = spk_msg_get(MSG_FUNCNAMES_START + i);
183 kp = spk_our_keys[key] + 1;
184 for (i = 0; i < nstates; i++) {
188 key += (state_tbl[i] << 8);
190 synth_printf(spk_msg_get(MSG_KEYDESC), name);
194 name = spk_msg_get(MSG_FUNCNAMES_START + cur_item);
195 func = funcvals[cur_item];
196 synth_printf("%s", name);
197 if (key_offsets[func] == 0) {
198 synth_printf(" %s\n", spk_msg_get(MSG_IS_UNASSIGNED));
201 p_keys = key_data + key_offsets[func];
202 for (n = 0; p_keys[n]; n++) {
205 synth_printf("%s ", spk_msg_get(MSG_DISJUNCTION));