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
|
#include <curses.h>
#include "mon.h"
/* Screen disposition :
program | program
status | output
window | interp.
----------------------
command line
*/
#define STATUS_WIN_WIDTH 60
static void disp_cmdline();
static char command[100];
static int cmd_pos = 0;
static WINDOW *wpstatus, *wpoutput, *wcmdline;
void disp_init() {
initscr();
cbreak();
noecho();
nonl();
wpstatus = newwin(LINES - 4, STATUS_WIN_WIDTH, 1, 1);
wpoutput = newwin(LINES - 4, COLS - STATUS_WIN_WIDTH - 3, 1, STATUS_WIN_WIDTH + 2);
wcmdline = newwin(1, COLS - 2, LINES - 2, 1);
intrflush(wcmdline, FALSE);
keypad(wcmdline, TRUE);
nodelay(wcmdline, TRUE);
cmd_pos = 0;
command[0] = 0;
disp_cmdline();
}
void disp_finish() {
endwin();
}
void handle_kbd(t_mon *mon) {
int x;
while ((x = wgetch(wcmdline)) != ERR) {
if (x == '\r') {
mon_handle_command(mon, command);
cmd_pos = 0;
} else if (x == KEY_BACKSPACE) {
if (cmd_pos > 0) cmd_pos--;
} else if (x >= 32 && x <= 127) {
if (cmd_pos < 99)
command[cmd_pos++] = x;
}
command[cmd_pos] = 0;
disp_cmdline();
}
}
// DISPLAY
void disp_cmdline() {
werase(wcmdline);
wprintw(wcmdline, "> %s", command);
wrefresh(wcmdline);
}
void disp_display(t_mon *mon) {
int i;
werase(wpstatus);
wprintw(wpstatus, "Step:\t\t%d\t%s\t%s\n",
mon->step,
(mon->status == MS_AUTO ? "A" : "M"),
(mon->ticker_mode == TM_SECOND ? "TS" : (mon->ticker_mode == TM_FAST ? "TF" : "TZ")));
wprintw(wpstatus, "\nInputs:\n");
for (i = 0; i < mon->n_inputs; i++) {
wprintw(wpstatus, " %d. %s%s\t%s (%d)\t%s\n",
i,
(i == mon->ticker_input ? "T" : ""),
(i == mon->ser_in_in ? ">" : ""),
mon->inputs[i].name, mon->inputs[i].size, mon->inputs[i].value);
}
if (mon->n_inputs == 0) wprintw(wpstatus, "\t(none)\n");
wprintw(wpstatus, "\nOutputs:\n");
for (i = 0; i < mon->n_outputs; i++) {
wprintw(wpstatus, " %d. %s%s\t%s\t%s\t%ld\n", i,
(i == mon->ser_out ? "<" : ""),
(i == mon->ser_in_busy_out ? "!" : ""),
mon->outputs[i].name, mon->outputs[i].v_bin, mon->outputs[i].v_int);
}
if (mon->n_outputs == 0) wprintw(wpstatus, "\t(none)\n");
wprintw(wpstatus, "\nSerial buffer:\n%s\n", mon->ser_buf);
wmove(wcmdline, 0, cmd_pos + 2);
wrefresh(wpstatus);
if (mon->ser_out_buf != 0) {
wprintw(wpoutput, "%c", mon->ser_out_buf);
wrefresh(wpoutput);
mon->ser_out_buf = 0;
}
}
|