main.cpp
13.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
#include "blc_core.h"
#include "blc_channel.h"
#include "blc_program.h"
#include <unistd.h>
#include <termios.h>
#include <libgen.h> //basename
enum{NORMAL_KEY=0, QUIT_KEY, NEUTRAL_KEY, INDEX_KEY, ARROW_CHANGE_INDEX, WRONG_KEY, DECREMENT_KEY, INCREMENT_KEY, FAST_DECREMENT_KEY, FAST_INCREMENT_KEY};
enum { LEFT_ARROW='D', RIGHT_ARROW='C', UP_ARROW='A', DOWN_ARROW='B'};
blc_channel channel;
blc_mem table;
char *key_list;
char const *display;
int keys_nb;
uchar min, max;
uchar quitting_key, neutral_key;
float neutral_value, max_value, min_value, float_step_size=0.004;
uchar uchar_step_size=1;
//quitting key return -1, neutral return -2;
static int update_index(int *index){
uchar answer[3];
ssize_t ret;
int index_tmp;
SYSTEM_ERROR_CHECK(ret=read(STDIN_FILENO, answer, 3), -1, "Waiting for keyboard input");
if (ret==1)
{
if (answer[0] >= min && answer[0] <= max && ((index_tmp=table.uchars[*answer-min]) != keys_nb)){
*index=index_tmp;
return INDEX_KEY;
}
else if (answer[0]==quitting_key) return QUIT_KEY;
else if (answer[0]==neutral_key) return NEUTRAL_KEY;
else fprintf(stderr, "\nThe key '%c' id '%d' is not possible. The possibilities are in '%s' or '%c' for quitting and '%c' for neutral value.\n", answer[0], answer[0], key_list, quitting_key, neutral_key);
} if (ret==2){
switch (answer[1]){
default:fprintf(stderr, "\nImpossible key of '%ld' bytes. Byte 0 '%c','%d', byte 1, '%c','%d'\n", ret, answer[0], answer[0], answer[1], answer[1]);
break;
}
}
else if (ret==3){
if ((answer[0]==27 && answer[1]=='[') || (answer[0]==239 && answer[1]==156)) {
switch (answer[2]){
case LEFT_ARROW: case 130: *index=MAX(0, *index-1);
return ARROW_CHANGE_INDEX;
break;
case RIGHT_ARROW: case 131: *index=MIN(keys_nb-1, *index+1);
return ARROW_CHANGE_INDEX;
break;
case UP_ARROW:case 128: return INCREMENT_KEY;
break;
case DOWN_ARROW:case 129: return DECREMENT_KEY;
break;
/* case PAGE_UP:case 172: return FAST_INCREMENT_KEY;
break;
case PAGE_DOWN:case 173: return FAST_DECREMENT_KEY;
break;*/
default: fprintf(stderr, "This key does not have effect\n");
break;
}
}
printf("Answer 0 '%c','%d', answer 1, '%c','%d', 2: '%c','%d'\n" , answer[0], answer[0] , answer[1], answer[1], answer[2], answer[2]);
}else fprintf(stderr, "\nImpossible key of '%ld' bytes. Byte 0 '%c','%d', byte 1, '%c','%d'\n", ret, answer[0], answer[0], answer[1], answer[1]);
return WRONG_KEY;
}
/**Return display size*/
static int display_uchar(int index){
char select_char;
int i;
channel.fprint_graph_uchars(stderr, channel.name, 6, 255, 0);
fprintf(stderr, ">");
FOR(i, keys_nb){
if (index==i) select_char='#';
else select_char=' ';
fprintf(stderr, "|%c%c", select_char, key_list[i]);
}
fprintf(stderr, "|\n");
return 7;
}
/**Return display size*/
static int display_float(int index){
char select_char;
int i;
channel.fprint_graph_floats(stderr, channel.name, 6, 1.0, 0);
fprintf(stderr, ">");
FOR(i, keys_nb){
if (index==i) select_char='#';
else select_char=' ';
fprintf(stderr, "|%c%c", select_char, key_list[i]);
}
fprintf(stderr, "|\n");
return 7;
}
static void loop_toggle_uchar(){
int ret=NORMAL_KEY, index=0, graph_height;
if (display) graph_height=display_uchar(index);
while (ret!=QUIT_KEY){
ret=update_index(&index);
switch (ret){
case INCREMENT_KEY:
channel.uchars[index]=BLC_NORMED_FLOAT_TO_UCHAR(max_value);
break;
case DECREMENT_KEY: channel.uchars[index]=BLC_NORMED_FLOAT_TO_UCHAR(min_value);
break;
case NEUTRAL_KEY:
channel.uchars[index]=BLC_NORMED_FLOAT_TO_UCHAR(neutral_value);
break;
case INDEX_KEY:
if (channel.uchars[index] > BLC_NORMED_FLOAT_TO_UCHAR(neutral_value)) channel.uchars[index]=BLC_NORMED_FLOAT_TO_UCHAR(min_value);
else channel.uchars[index]=BLC_NORMED_FLOAT_TO_UCHAR(max_value);
case ARROW_CHANGE_INDEX:case QUIT_KEY:
break;
default:color_eprintf(BLC_YELLOW, "Unknownd ret '%d'", ret);
}
if (display){
graph_height=display_uchar(index);
blc_eprint_cursor_up(graph_height);
}
}
}
static void loop_uchar(){
int ret=NORMAL_KEY, index=0, graph_height;
if (display) graph_height=display_uchar(index);
while (ret!=QUIT_KEY){
if (display){
blc_eprint_cursor_up(graph_height);
graph_height=display_uchar(index);
}
ret=update_index(&index);
switch (ret){
case INCREMENT_KEY:
channel.uchars[index]=MIN(channel.uchars[index]+uchar_step_size, BLC_NORMED_FLOAT_TO_UCHAR(max_value));
break;
case DECREMENT_KEY: channel.uchars[index]=MAX(channel.uchars[index]-uchar_step_size, BLC_NORMED_FLOAT_TO_UCHAR(min_value));
break;
/* case FAST_INCREMENT_KEY:
channel.uchars[index]=MIN(channel.uchars[index]+10*uchar_step_size, UINT8_MAX);
previous_index=index;
break;
case FAST_DECREMENT_KEY:
channel.uchars[index]=MAX(channel.uchars[index]-10*uchar_step_size, 0);
break;*/
case NEUTRAL_KEY:
channel.uchars[index]=BLC_NORMED_FLOAT_TO_UCHAR(neutral_value);
break;
case INDEX_KEY:case QUIT_KEY:case ARROW_CHANGE_INDEX:
break;
default:EXIT_ON_ERROR("Unknownd ret '%d'", ret);
}
}
}
static void loop_toggle_float(){
int ret=NORMAL_KEY, index=0, graph_height;
if (display) graph_height=display_float(index);
while (ret!=QUIT_KEY){
if (display){
blc_eprint_cursor_up(graph_height);
graph_height=display_float(index);
}
ret=update_index(&index);
switch (ret){
case INCREMENT_KEY:
channel.floats[index]=max_value;
break;
case DECREMENT_KEY: channel.floats[index]=min_value;
break;
case NEUTRAL_KEY:
channel.floats[index]=neutral_value;
break;
case INDEX_KEY:
if (channel.floats[index] > neutral_value) channel.floats[index]=min_value;
else channel.floats[index]=max_value;
case ARROW_CHANGE_INDEX:case QUIT_KEY:
break;
default:color_eprintf(BLC_YELLOW, "Unknownd ret '%d'", ret);
}
}
}
static void loop_float(){
int ret=0, index=0, previous_index=0, graph_height;
if (display) graph_height=display_float(index);
while (ret!=QUIT_KEY){
if (display){
blc_eprint_cursor_up(graph_height);
graph_height=display_float(index);
}
ret=update_index(&index);
switch (ret){
case INCREMENT_KEY: channel.floats[index]=MIN(channel.floats[index]+float_step_size, max_value);
break;
case DECREMENT_KEY: channel.floats[index]=MAX(channel.floats[index]-float_step_size, min_value);
break;
/* case FAST_INCREMENT_KEY: channel.floats[index]+=float_step_size*10;
break;
case FAST_DECREMENT_KEY:channel.floats[index]-=float_step_size*10;
break;*/
case NEUTRAL_KEY:channel.floats[index]=neutral_value;
break;
case INDEX_KEY: case ARROW_CHANGE_INDEX:
previous_index=index;
case QUIT_KEY:break;
default:EXIT_ON_ERROR("Unknownd ret '%d'", ret);
}
}
}
int main(int argc, char** argv){
char *default_output=NULL;
char const *extension;
char const *channel_name, *type_str, *str_quitting_key, *str_neutral_key, *max_str, *min_str, *str_neutral_value, *toggle_mode, *step_size_str, *filename;
char const *key_nb_str;
int i;
char *pos;
uchar answer;
asprintf(&default_output, "/%s%d", basename(argv[0]), getpid()); //This will not be free but it is only allocate once
blc_program_set_description("Get keyboard inputs");
blc_program_add_option(&display, 'd', "display", NULL, "Display a text graph (UIN8 only)", NULL);
blc_program_add_option(&filename, 'f', "file", "filename", "Initialize the values with a tsv file", NULL);
blc_program_add_option((char const**)&key_list, 'k', "key_list", "string", "Define all the keys that can be stroke", "0123456789abcdef");
blc_program_add_option(&min_str, 'm', "min", "real", "Define the normed minimum value", "0.0");
blc_program_add_option(&str_neutral_key, 'n', "neutral_key", "string", "Define the neutral key", "escape");
blc_program_add_option(&channel_name, 'o', "output", "blc_channel", "Define where the result will be put", default_output);
blc_program_add_option(&str_quitting_key, 'q', "quitting_key", "string", "Define the key used to quit", "q");
blc_program_add_option(&key_nb_str, 's', "size", "integer", "Size of key vector", NULL);
blc_program_add_option(&type_str, 't', "type", "UIN8|FL32", "Define the type of the result", "UIN8");
blc_program_add_option(&max_str, 'M', "max", "real", "Define the normed max value", "1.0");
blc_program_add_option(&str_neutral_value, 'N', "neutral_value", "real", "Define the normed neutral value", "0.5");
blc_program_add_option(&step_size_str, 'S', "step", "real", "Set the normed step size", NULL);
blc_program_add_option(&toggle_mode, 'T', "toggle", NULL, "Set in toggle mode", NULL);
blc_program_init(&argc, &argv, blc_set_back_stdin_mode);
if (strlen(str_quitting_key)!=1) EXIT_ON_ERROR("You can only have one quitting key. You propose %s", str_quitting_key);
if (strcmp(str_neutral_key, "escape")==0) neutral_key=27; //Escape
else if (strlen(str_neutral_key)!=1) EXIT_ON_ERROR("You can only have one neutral key. You propose %s", str_neutral_key);
else neutral_key=str_neutral_key[0];
neutral_value=strtof(str_neutral_value, NULL);
max_value=strtof(max_str, NULL);
min_value=strtof(min_str, NULL);
quitting_key=str_quitting_key[0];
if (key_nb_str) {
keys_nb=strtod(key_nb_str, NULL);
key_list=MANY_ALLOCATIONS(keys_nb, char);
FOR(i, keys_nb){
if (i<10) key_list[i]=48+i;
else key_list[i]=97+i-10;
}
}
else keys_nb=strlen(key_list);
if (memchr(key_list, quitting_key, keys_nb)) EXIT_ON_ERROR("The quitting key '%c' is in your key list %*s, you need to select an other one with --quitting_key=...", quitting_key, keys_nb, quitting_key);
if (memchr(key_list, neutral_key, keys_nb)) EXIT_ON_ERROR("The neutral key '%c' is in your key list %*s, you need to select an other one with --neutral_key=...", quitting_key, keys_nb, neutral_key);
channel.create_or_open(channel_name, BLC_CHANNEL_WRITE, STRING_TO_UINT32(type_str), 'NDEF', 1, keys_nb);
if (filename){
extension = blc_get_filename_extension(filename);
if(strcmp(extension, "blc")==0) channel.update_with_blc_file(filename);
else if (strcmp(extension, "tsv")==0) channel.update_with_tsv_file(filename);
else EXIT_ON_ERROR("'%s' is not a possible file type extension", extension);
}
else {
switch (STRING_TO_UINT32(type_str)){
case 'UIN8':
FOR(i, keys_nb) channel.uchars[i]=BLC_NORMED_FLOAT_TO_UCHAR(neutral_value);
break;
case 'FL32':
FOR(i, keys_nb) channel.floats[i]=neutral_value;
break;
default:EXIT_ON_ARRAY_ERROR(&channel, "Type not mnaged");
break;
}
}
if (display){
if ((channel.type!='UIN8') && (channel.type!='FL32')) EXIT_ON_ARRAY_ERROR(&channel, "This type can not be displayed. Only 'UIN8' or 'FL32' can.");
}
blc_set_stdin_non_blocking_mode();
fprintf(stderr, "Waiting for one key in '%s'. Quitting with '%c'\n", key_list, quitting_key);
//We pre calculate the answers
max=min=key_list[0];
FOR(i, keys_nb) {
answer=key_list[i];
if (answer<min) min =answer;
else if (answer>max) max=answer;
}
table.allocate(max-min+1);
FOR(i, table.size){
pos=strchr(key_list, i+min);
if (pos) table.uchars[i]=pos-key_list;
else table.uchars[i]=keys_nb;
}
channel.publish();
switch (channel.type){
case 'UIN8':
if (step_size_str) uchar_step_size=strtod(step_size_str, NULL);
if (toggle_mode) loop_toggle_uchar();
else loop_uchar();
break;
case 'FL32':
if (step_size_str) float_step_size=strtof(step_size_str, NULL);
if (toggle_mode) loop_toggle_float();
else loop_float();
break;
default:
EXIT_ON_ARRAY_ERROR(&channel, "The type is not managed.");
break;
}
return EXIT_SUCCESS;
}