-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathncpaint.c
172 lines (142 loc) · 3.45 KB
/
ncpaint.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
#include <curses.h>
#include <stdlib.h>
enum {
ERR_INIT = 32,
ERR_QUIT,
ERR_MALLOC,
ERR_MOUSE,
};
enum {
BTN_LEFT = 1,
BTN_MIDDLE = 2,
BTN_RIGHT = 4,
};
// State struct
struct State {
MEVENT* mevent;
unsigned int loops_n;
unsigned int chars_n;
unsigned int mouse_n;
int x;
int y;
int brush_ch;
char btns_down;
bool is_running;
};
void state_init(struct State* s, MEVENT* mevent);
int init(void);
void loop(struct State*);
int main(void);
int quit(struct State*);
void state_init(struct State* s, MEVENT* mevent)
{
s->mevent = mevent;
s->loops_n = 0;
s->chars_n = 0;
s->mouse_n = 0;
s->x = 0;
s->y = 0;
s->brush_ch = '#';
s->btns_down = 0;
s->is_running = TRUE;
}
int init()
{
initscr();
cbreak(); // Do not buffer characters but send them immediately
noecho(); // Do not echo characters automatically
keypad(stdscr, TRUE); // Enable special keys like cursor arrows, F-keys
mouseinterval(0); // Do not wait for double/tripple clicks
// Request all mouse events
const mmask_t mouse_support = mousemask(
ALL_MOUSE_EVENTS | REPORT_MOUSE_POSITION, NULL);
if (!mouse_support)
return ERR_MOUSE;
// Enable motion reporting (xterm extension)
printf("\033[?1003h\n");
// TODO first render
return OK;
}
void loop(struct State* state)
{
++state->loops_n;
bool has_moved = FALSE;
char btns_changed = 0;
// Handle input and modify state accordingly
int ch = getch();
if (ch == KEY_MOUSE) {
// Handle all queued mouse events
while (getmouse(state->mevent) != ERR) {
++state->mouse_n;
if (!has_moved) {
state->x = state->mevent->x;
state->y = state->mevent->y;
has_moved = TRUE;
}
if (!(btns_changed & BTN_LEFT)) {
if (state->mevent->bstate & BUTTON1_PRESSED) {
state->btns_down |= BTN_LEFT;
btns_changed |= BTN_LEFT;
} else if (state->mevent->bstate & BUTTON1_RELEASED) {
state->btns_down &= ~BTN_LEFT;
btns_changed |= BTN_LEFT;
}
}
if (!(btns_changed & BTN_MIDDLE)) {
if (state->mevent->bstate & BUTTON2_PRESSED) {
state->btns_down |= BTN_MIDDLE;
btns_changed |= BTN_MIDDLE;
} else if (state->mevent->bstate & BUTTON2_RELEASED) {
state->btns_down &= ~BTN_MIDDLE;
btns_changed |= BTN_MIDDLE;
}
}
if (!(btns_changed & BTN_RIGHT)) {
if (state->mevent->bstate & BUTTON3_PRESSED) {
state->btns_down |= BTN_RIGHT;
btns_changed |= BTN_RIGHT;
} else if (state->mevent->bstate & BUTTON3_RELEASED) {
state->btns_down &= ~BTN_RIGHT;
btns_changed |= BTN_RIGHT;
}
}
}
} else if (ch != ERR) { // Handle key press
++state->chars_n;
// Quit if 'q' is pressed
if (ch == 'q')
state->is_running = FALSE;
state->brush_ch = ch;
}
// React to state changes
if (state->btns_down & BTN_LEFT)
mvaddch(state->y, state->x, state->brush_ch);
else if (state->btns_down & BTN_RIGHT)
mvaddch(state->y, state->x, ' ');
mvprintw(LINES - 1, 0, "[%dx%d]:%d,%d | L: %d Ch: %d M: %d [0x%02x]",
COLS, LINES, state->x, state->y, state->loops_n,
state->chars_n, state->mouse_n, state->btns_down);
clrtoeol();
move(state->y, state->x);
refresh();
}
int quit(struct State* state)
{
int ret = endwin();
if (ret != OK)
return ERR_QUIT;
printf("Ran for %u loops, processed %u keys and %u mouse events\n",
state->loops_n, state->chars_n, state->mouse_n);
return ret;
}
int main(void)
{
MEVENT mevent;
struct State state;
state_init(&state, &mevent);
init();
while(state.is_running)
loop(&state);
quit(&state);
return 0;
}