-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcurses.c
754 lines (589 loc) · 15.8 KB
/
curses.c
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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
/*
* Copyright (c) 2023, 2024 Logan Ryan McLintock
*
* Permission to use, copy, modify, and/or distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*
* Curses module.
*
* "Do not be worried and upset," Jesus told them.
* "Believe in God and believe also in me. ..."
* John 14:1 GNT
*/
#ifdef __linux__
/* For: cfmakeraw */
#ifndef _DEFAULT_SOURCE
#define _DEFAULT_SOURCE
#endif
#endif
#ifdef _WIN32
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#endif
#ifdef _WIN32
#include <Windows.h>
#include <conio.h>
#include <io.h>
#include <fcntl.h>
#else
#include <sys/ioctl.h>
#include <sys/select.h>
#include <unistd.h>
#endif
#include <ctype.h>
#include <limits.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define IN_CURSES_LIB
#include "curses.h"
#undef IN_CURSES_LIB
#define DEFAULT_TABSIZE 8
#define ESC 27
#define INIT_UNREAD_MEM_SIZE 64
#define CTRL_2 0
#define mreturn(rv) do { \
fprintf(stderr, "[%s:%d]: Error: " #rv "\n", __FILE__, __LINE__); \
return (rv); \
} while (0)
#define mgoto(lb) do { \
fprintf(stderr, "[%s:%d]: Error: " #lb "\n", __FILE__, __LINE__); \
goto lb; \
} while (0)
/* Unsigned overflow tests */
/* Addition */
#define aof(a, b, max_val) ((a) > (max_val) - (b))
/* Multiplication */
#define mof(a, b, max_val) ((a) && (b) > (max_val) / (a))
#define phy_move(pos) printf("\x1B[%lu;%luH", \
(unsigned long) ((pos) / stdscr->w + 1), \
(unsigned long) ((pos) % stdscr->w + 1))
#define phy_hl_off() printf("\x1B[m")
/* Does not toggle */
#define phy_hl_on() printf("\x1B[7m")
#define phy_clear() printf("\x1B[2J\x1B[1;1H")
#define phy_invisible_cursor() printf("\x1B[?25l")
#define phy_visible_cursor() printf("\x1B[?25h")
WINDOW *initscr(void)
{
/* Already initialised, so fail */
if (stdscr != NULL)
mreturn(NULL);
if ((stdscr = calloc(1, sizeof(WINDOW))) == NULL)
mreturn(NULL);
stdscr->tabsize = DEFAULT_TABSIZE;
stdscr->clear = 1;
if ((stdscr->a = calloc(INIT_UNREAD_MEM_SIZE, 1)) == NULL)
mgoto(error);
stdscr->n = INIT_UNREAD_MEM_SIZE;
/* Setup terminal */
#ifdef _WIN32
if (_setmode(_fileno(stdin), _O_BINARY) == -1)
mgoto(error);
if (_setmode(_fileno(stdout), _O_BINARY) == -1)
mgoto(error);
if (_setmode(_fileno(stderr), _O_BINARY) == -1)
mgoto(error);
if ((stdscr->term_handle =
GetStdHandle(STD_OUTPUT_HANDLE)) == INVALID_HANDLE_VALUE)
mgoto(error);
if (!GetConsoleMode(stdscr->term_handle, &stdscr->term_orig))
mgoto(error);
stdscr->term_new =
stdscr->term_orig | ENABLE_PROCESSED_OUTPUT |
ENABLE_VIRTUAL_TERMINAL_PROCESSING;
if (!SetConsoleMode(stdscr->term_handle, stdscr->term_new))
mgoto(error);
#else
if (tcgetattr(STDIN_FILENO, &stdscr->term_orig))
mgoto(error);
stdscr->term_new = stdscr->term_orig;
cfmakeraw(&stdscr->term_new);
/* Wait forever for 1 char */
stdscr->term_new.c_cc[VMIN] = 1;
stdscr->term_new.c_cc[VTIME] = 0;
if (tcsetattr(STDIN_FILENO, TCSANOW, &stdscr->term_new))
mgoto(error);
#endif
/*
* The memory for the virtual screens will be allocated upon the first call
* to erase_screen (which is called by erase).
* This will also set the physical screen size.
*/
if (erase() == ERR)
mgoto(error);
return stdscr;
error:
free(stdscr);
mreturn(NULL);
}
int endwin(void)
{
int ret = OK;
phy_hl_off();
phy_clear();
phy_visible_cursor();
#ifdef _WIN32
if (!SetConsoleMode(stdscr->term_handle, stdscr->term_orig))
ret = ERR;
#else
if (tcsetattr(STDIN_FILENO, TCSANOW, &stdscr->term_orig))
ret = ERR;
#endif
free(stdscr->vs_c);
free(stdscr->vs_n);
free(stdscr->a);
free(stdscr);
return ret;
}
int set_tabsize(size_t size)
{
stdscr->tabsize = size;
return OK;
}
#ifndef _WIN32
static int _kbhit(void)
{
fd_set read_fd_set;
struct timeval t_o = { 0 };
FD_ZERO(&read_fd_set);
FD_SET(STDIN_FILENO, &read_fd_set);
if (select(STDIN_FILENO + 1, &read_fd_set, NULL, NULL, &t_o) == -1) {
fprintf(stderr, "[%s:%d]: select: Error\n", __FILE__, __LINE__);
return 0; /* Error */
}
if (FD_ISSET(STDIN_FILENO, &read_fd_set))
return 1; /* Ready */
return 0; /* No keyboard hit */
}
#endif
static int unread(unsigned char u)
{
unsigned char *t;
size_t new_n;
if (stdscr->i == stdscr->n) {
/* Grow buffer */
if (aof(stdscr->n, 1, SIZE_MAX))
mreturn(ERR);
new_n = stdscr->n + 1;
if (mof(new_n, 2, SIZE_MAX))
mreturn(ERR);
new_n *= 2;
if ((t = realloc(stdscr->a, new_n)) == NULL)
mreturn(ERR);
stdscr->a = t;
stdscr->n = new_n;
}
*(stdscr->a + stdscr->i) = u;
++stdscr->i;
return OK;
}
static int getch_raw(void)
{
#ifndef _WIN32
int num, x, k;
unsigned char t;
size_t s_i, e_i;
top:
#endif
if (stdscr->i) {
stdscr->i--;
return *(stdscr->a + stdscr->i);
}
if (!stdscr->non_blocking)
#ifdef _WIN32
return _getch();
#else
return getchar();
#endif
/* Non-blocking */
/* No chars ready */
if (!_kbhit())
return ERR;
#ifdef _WIN32
return _getch();
#else
/* See how many chars are waiting */
if (ioctl(STDIN_FILENO, FIONREAD, &num) == -1) {
fprintf(stderr, "[%s:%d]: ioctl: Error\n", __FILE__, __LINE__);
return ERR;
}
if (!num)
return ERR;
/*
* Need to read all characters that are waiting in stdin.
* Some keys send a multi-byte sequence, such as the arrow keys.
* If only the first byte is read, then select() will report that
* it is not ready until the next key is pressed, delaying the
* reading of the rest of the bytes in the original key.
*/
for (k = 0; k < num; ++k) {
x = getchar();
unread(x);
}
/* Need to reverse chars */
s_i = stdscr->i - num;
e_i = stdscr->i - 1;
while (s_i < e_i) {
t = *(stdscr->a + s_i);
*(stdscr->a + s_i) = *(stdscr->a + e_i);
*(stdscr->a + e_i) = t;
++s_i;
--e_i;
}
goto top;
#endif
}
int getch(void)
{
#ifdef _WIN32
int x, y;
top:
x = getch_raw();
if (x == 0) {
if ((y = getch_raw()) == ERR) {
unread(x);
return ERR;
}
if (y == 3)
return CTRL_2;
else
goto top; /* Eat */
} else if (x == 224) {
if ((y = getch_raw()) == ERR) {
unread(x);
return ERR;
}
switch (y) {
case 'K':
return KEY_LEFT;
case 'M':
return KEY_RIGHT;
case 'H':
return KEY_UP;
case 'P':
return KEY_DOWN;
case 'S':
return KEY_DC;
case 'G':
return KEY_HOME;
case 'O':
return KEY_END;
default:
goto top; /* Eat */
}
}
return x;
#else
#define get_sb_ch() do { \
if (i == MAX_SEQ_LEN) { \
fprintf(stderr, "[%s:%d]: getch: Error: " \
"Key sequence buffer is full\n", \
__FILE__, __LINE__); \
goto top; \
} \
if ((sb[i++] = getch_raw()) == ERR) { \
while (i) \
if (sb[--i] != ERR) \
unread(sb[i]); \
\
return ERR; \
} \
} while (0)
/* Must be at least 4 */
#define MAX_SEQ_LEN 16
int sb[MAX_SEQ_LEN]; /* Sequence buffer */
size_t i = 0; /* Index of next write in sb */
top:
i = 0;
get_sb_ch();
if (sb[0] == C('x')) {
/*
* Control X is often used as the prefix in a multi-key sequence.
* So need to wait until the next char is ready, otherwise the
* sequence will be separated.
*/
get_sb_ch();
unread(sb[1]);
return sb[0];
} else if (sb[0] == ESC) {
get_sb_ch();
if (sb[1] == '[') {
get_sb_ch();
switch (sb[2]) {
case 'D':
return KEY_LEFT;
case 'C':
return KEY_RIGHT;
case 'A':
return KEY_UP;
case 'B':
return KEY_DOWN;
case 'H':
return KEY_HOME;
case 'F':
return KEY_END;
case '3':
get_sb_ch();
if (sb[3] == '~')
return KEY_DC;
eat:
/* Eat to end of sequence */
while (1) {
get_sb_ch();
/* All of sequence has been eaten */
if (!(isdigit(sb[i - 1]) || sb[i - 1] == ';'))
goto top;
}
default:
goto eat;
}
} else {
unread(sb[1]);
return sb[0];
}
}
return sb[0];
#endif
}
#undef get_sb_ch
static int get_phy_screen_size(void)
{
#ifdef _WIN32
CONSOLE_SCREEN_BUFFER_INFO si;
if (!GetConsoleScreenBufferInfo(stdscr->term_handle, &si))
mreturn(ERR);
stdscr->h = si.srWindow.Bottom - si.srWindow.Top + 1;
stdscr->w = si.srWindow.Right - si.srWindow.Left + 1;
#else
struct winsize ws;
if (ioctl(STDOUT_FILENO, TIOCGWINSZ, &ws) == -1)
mreturn(ERR);
stdscr->h = ws.ws_row;
stdscr->w = ws.ws_col;
#endif
return OK;
}
static int erase_screen(int clear)
{
size_t new_s_s;
unsigned char *t;
if (get_phy_screen_size() == ERR)
mreturn(ERR);
if (mof(stdscr->h, stdscr->w, SIZE_MAX))
mreturn(ERR);
new_s_s = stdscr->h * stdscr->w; /* New screen size */
if (!new_s_s) /* No screen size */
mreturn(ERR);
if (clear || new_s_s != stdscr->vs_s) {
if (new_s_s != stdscr->vs_s) {
/*
* Allocates memory the first time, as stdscr->vs_s is initially
* zero, and stdscr->vs_c and stdscr->vs_n are initially NULL.
*/
if ((t = realloc(stdscr->vs_c, new_s_s)) == NULL)
mreturn(ERR);
stdscr->vs_c = t;
if ((t = realloc(stdscr->vs_n, new_s_s)) == NULL)
mreturn(ERR);
stdscr->vs_n = t;
stdscr->vs_s = new_s_s;
}
memset(stdscr->vs_c, ' ', stdscr->vs_s);
phy_hl_off();
phy_clear();
}
memset(stdscr->vs_n, ' ', stdscr->vs_s);
stdscr->v_i = 0;
return OK;
}
int erase(void)
{
return erase_screen(0);
}
int clear(void)
{
return erase_screen(1);
}
int refresh(void)
{
size_t k;
unsigned char *t, ch;
/* Diff */
for (k = 0; k < stdscr->vs_s; ++k) {
if ((ch = *(stdscr->vs_n + k)) != *(stdscr->vs_c + k)) {
phy_move(k);
if (ch & '\x80')
phy_hl_on();
else
phy_hl_off();
putchar(ch & '\x7F');
}
}
phy_move(stdscr->v_i);
if (fflush(stdout))
mreturn(ERR);
/* Swap */
t = stdscr->vs_c;
stdscr->vs_c = stdscr->vs_n;
stdscr->vs_n = t;
return OK;
}
int addch(unsigned char ch)
{
unsigned char new_ch;
size_t tws; /* Tab write size */
/* Off screen */
if (stdscr->v_i >= stdscr->vs_s)
return ERR;
if (ch == '\n') {
*(stdscr->vs_n + stdscr->v_i) = stdscr->v_hl ? ' ' | '\x80' : ' ';
++stdscr->v_i;
if (stdscr->v_i % stdscr->w)
stdscr->v_i = (stdscr->v_i / stdscr->w + 1) * stdscr->w;
} else {
if (ch == '\t') {
tws =
stdscr->vs_s - stdscr->v_i >
TABSIZE ? TABSIZE : stdscr->vs_s - stdscr->v_i;
memset(stdscr->vs_n + stdscr->v_i,
stdscr->v_hl ? ' ' | '\x80' : ' ', tws);
stdscr->v_i += tws;
} else {
if (ch == '\0')
new_ch = '~';
else if (!isprint(ch))
new_ch = '?';
else
new_ch = ch;
*(stdscr->vs_n + stdscr->v_i) =
stdscr->v_hl ? new_ch | '\x80' : new_ch;
++stdscr->v_i;
}
}
return OK;
}
int addnstr(const char *str, int n)
{
char ch;
if (str == NULL)
return ERR;
if (!n)
return OK;
if (n > 0) {
while ((ch = *str++) != '\0' && n--)
if (addch(ch) == ERR)
return ERR;
} else {
while ((ch = *str++) != '\0')
if (addch(ch) == ERR)
return ERR;
}
return OK;
}
int move(int y, int x)
{
size_t new_v_i;
if (mof(y, stdscr->w, SIZE_MAX))
return ERR;
new_v_i = y * stdscr->w;
if (aof(new_v_i, x, SIZE_MAX))
return ERR;
new_v_i += x;
/* Off screen */
if (new_v_i >= stdscr->vs_s)
return ERR;
stdscr->v_i = new_v_i;
return OK;
}
chtype inch(void)
{
return *(stdscr->vs_n + stdscr->v_i);
}
int clrtoeol(void)
{
memset(stdscr->vs_n + stdscr->v_i, ' ',
stdscr->w - stdscr->v_i % stdscr->w);
return OK;
}
int standend(void)
{
stdscr->v_hl = 0;
return OK;
}
int standout(void)
{
stdscr->v_hl = 1;
return OK;
}
int raw(void)
{
/* Preformed by initscr() in this implementation */
return OK;
}
int noecho(void)
{
/* Preformed by initscr() in this implementation */
return OK;
}
int keypad(WINDOW *win, bool bf)
{
/* Preformed by initscr() in this implementation */
if (win == NULL)
return ERR;
if (bf != TRUE && bf != FALSE)
return ERR;
return OK;
}
int nodelay(WINDOW *win, bool bf)
{
if (win == NULL)
return ERR;
if (bf != TRUE && bf != FALSE)
return ERR;
/*
#ifndef _WIN32
if ((!win->non_blocking && bf == TRUE)
|| (win->non_blocking && bf == FALSE)) {
if ((flags = fcntl(STDIN_FILENO, F_GETFL)) == -1)
return ERR;
if (bf == TRUE)
flags |= O_NONBLOCK;
else
flags &= ~O_NONBLOCK;
if (fcntl(STDIN_FILENO, F_SETFL, flags) == -1)
return ERR;
}
#endif
*/
win->non_blocking = bf;
return OK;
}
#define INVISIBLE 0
#define VISIBLE 1
int curs_set(int visibility)
{
switch (visibility) {
case INVISIBLE:
phy_invisible_cursor();
break;
case VISIBLE:
phy_visible_cursor();
break;
default:
return ERR;
}
return OK;
}