summary refs log tree commit diff
path: root/ui.c
blob: 12f7dc77c9a8cc49219f1eb5cdd94b720ade4ecf (plain) (blame)
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
/* Copyright (C) 2018  Curtis McEnroe <june@causal.agency>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#define _XOPEN_SOURCE_EXTENDED

#include <curses.h>
#include <err.h>
#include <locale.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#include <sysexits.h>
#include <wchar.h>
#include <wctype.h>

#ifndef A_ITALIC
#define A_ITALIC A_NORMAL
#endif

#include "chat.h"
#undef uiFmt

static void colorInit(void) {
	start_color();
	use_default_colors();
	if (COLORS >= 16) {
		for (short pair = 0; pair < 0x100; ++pair) {
			if (pair < 0x10) {
				init_pair(1 + pair, pair, -1);
			} else {
				init_pair(1 + pair, pair & 0x0F, (pair & 0xF0) >> 4);
			}
		}
	} else {
		for (short pair = 0; pair < 0100; ++pair) {
			if (pair < 010) {
				init_pair(1 + pair, pair, -1);
			} else {
				init_pair(1 + pair, pair & 007, (pair & 070) >> 3);
			}
		}
	}
}

static attr_t attr8(short pair) {
	if (COLORS >= 16 || pair < 0) return A_NORMAL;
	return (pair & 0x08) ? A_BOLD : A_NORMAL;
}
static short pair8(short pair) {
	if (COLORS >= 16 || pair < 0) return pair;
	return (pair & 0x70) >> 1 | (pair & 0x07);
}

struct View {
	struct Tag tag;
	WINDOW *log;
	int scroll, unread;
	bool hot, mark;
	struct View *prev;
	struct View *next;
};

static struct {
	bool hide;
	WINDOW *status;
	WINDOW *input;
	struct View *view;
} ui;

static void uiShow(void) {
	ui.hide = false;
	termMode(TermFocus, true);
}

void uiHide(void) {
	ui.hide = true;
	termMode(TermFocus, false);
	endwin();
}

static const int ColsMax = 512;

void uiInit(void) {
	setlocale(LC_CTYPE, "");
	initscr();
	cbreak();
	noecho();

	colorInit();
	termInit();

	ui.status = newpad(1, ColsMax);
	ui.input = newpad(1, ColsMax);
	keypad(ui.input, true);
	nodelay(ui.input, true);

	uiViewTag(TagStatus);
	uiShow();
}

void uiExit(void) {
	uiHide();
	printf(
		"This program is AGPLv3 Free Software!\n"
		"The source is available at <" SOURCE_URL ">.\n"
	);
}

static int lastLine(void) {
	return LINES - 1;
}
static int lastCol(void) {
	return COLS - 1;
}
static int logHeight(void) {
	return LINES - 2;
}

void uiDraw(void) {
	if (ui.hide) return;

	int _, x;
	getyx(ui.status, _, x);
	pnoutrefresh(
		ui.status,
		0, MAX(0, x - lastCol() - 1),
		0, 0,
		0, lastCol()
	);

	pnoutrefresh(
		ui.view->log,
		ui.view->scroll - logHeight(), 0,
		1, 0,
		lastLine() - 1, lastCol()
	);

	getyx(ui.input, _, x);
	pnoutrefresh(
		ui.input,
		0, MAX(0, x - lastCol() + 3),
		lastLine(), 0,
		lastLine(), lastCol()
	);

	doupdate();
}

static const short Colors[] = {
	[IRCWhite]      = 8 + COLOR_WHITE,
	[IRCBlack]      = 0 + COLOR_BLACK,
	[IRCBlue]       = 0 + COLOR_BLUE,
	[IRCGreen]      = 0 + COLOR_GREEN,
	[IRCRed]        = 8 + COLOR_RED,
	[IRCBrown]      = 0 + COLOR_RED,
	[IRCMagenta]    = 0 + COLOR_MAGENTA,
	[IRCOrange]     = 0 + COLOR_YELLOW,
	[IRCYellow]     = 8 + COLOR_YELLOW,
	[IRCLightGreen] = 8 + COLOR_GREEN,
	[IRCCyan]       = 0 + COLOR_CYAN,
	[IRCLightCyan]  = 8 + COLOR_CYAN,
	[IRCLightBlue]  = 8 + COLOR_BLUE,
	[IRCPink]       = 8 + COLOR_MAGENTA,
	[IRCGray]       = 8 + COLOR_BLACK,
	[IRCLightGray]  = 0 + COLOR_WHITE,
};

static void addFormat(WINDOW *win, const struct Format *format) {
	attr_t attr = A_NORMAL;
	if (format->bold)      attr |= A_BOLD;
	if (format->italic)    attr |= A_ITALIC;
	if (format->underline) attr |= A_UNDERLINE;
	if (format->reverse)   attr |= A_REVERSE;

	short pair = -1;
	if (format->fg != IRCDefault) pair = Colors[format->fg];
	if (format->bg != IRCDefault) pair |= Colors[format->bg] << 4;

	wattr_set(win, attr | attr8(pair), 1 + pair8(pair), NULL);
	waddnwstr(win, format->str, format->len);
}

static int addWrap(WINDOW *win, const wchar_t *str) {
	struct Format format = { .str = str };
	formatReset(&format);

	int lines = 0;
	while (formatParse(&format, NULL)) {
		int _, x, xMax;
		getyx(win, _, x);
		getmaxyx(win, _, xMax);
		if (xMax - x - 1 < wcswidth(format.str, format.len)) {
			if (format.str[0] == L' ') {
				format.str++;
				format.len--;
			}
			waddch(win, '\n');
			lines++;
		}
		addFormat(win, &format);
	}
	return lines;
}

static struct {
	struct View *head;
	struct View *tail;
	struct View *tags[TagsLen];
} views;

static void uiStatus(void) {
	mvwhline(ui.status, 0, 0, ACS_HLINE, COLS);
	mvwaddch(ui.status, 0, COLS, ACS_RTEE);

	int num = 0;
	int count = 0;
	for (const struct View *view = views.head; view; view = view->next, ++num) {
		if (!view->unread) continue;
		bool status = (view->tag.id == TagStatus.id);

		int unread;
		wchar_t *str;
		int len = aswprintf(
			&str, L",\3%02d%d\3%s%s%n(%d)",
			(view->hot ? IRCYellow : IRCWhite), num,
			&status[":"], (status ? "" : view->tag.name),
			&unread, view->unread
		);
		if (len < 0) err(EX_OSERR, "aswprintf");
		if (view->unread == 1) str[unread] = L'\0';

		addWrap(ui.status, count ? str : &str[1]);
		free(str);
		count++;
	}

	waddch(ui.status, count ? ACS_LTEE : '\b');
	waddch(ui.status, ACS_HLINE);
}

static void viewAppend(struct View *view) {
	if (views.tail) views.tail->next = view;
	view->prev = views.tail;
	view->next = NULL;
	views.tail = view;
	if (!views.head) views.head = view;
	views.tags[view->tag.id] = view;
}

static void viewRemove(struct View *view) {
	if (view->prev) view->prev->next = view->next;
	if (view->next) view->next->prev = view->prev;
	if (views.head == view) views.head = view->next;
	if (views.tail == view) views.tail = view->prev;
	views.tags[view->tag.id] = NULL;
}

static const int LogLines = 256;

static struct View *viewTag(struct Tag tag) {
	struct View *view = views.tags[tag.id];
	if (view) return view;

	view = calloc(1, sizeof(*view));
	if (!view) err(EX_OSERR, "calloc");

	view->tag = tag;

	view->log = newpad(LogLines, COLS);
	wsetscrreg(view->log, 0, LogLines - 1);
	scrollok(view->log, true);
	wmove(view->log, LogLines - 1, 0);

	view->scroll = LogLines;
	view->mark = true;

	viewAppend(view);
	return view;
}

static void viewClose(struct View *view) {
	viewRemove(view);
	delwin(view->log);
	free(view);
}

static void uiResize(void) {
	for (struct View *view = views.head; view; view = view->next) {
		wresize(view->log, LogLines, COLS);
		wmove(view->log, LogLines - 1, lastCol());
	}
}

static void viewUnmark(struct View *view) {
	view->mark = false;
	view->unread = 0;
	view->hot = false;
	uiStatus();
}

static void uiView(struct View *view) {
	termTitle(view->tag.name);
	touchwin(view->log);
	if (ui.view) ui.view->mark = true;
	viewUnmark(view);
	ui.view = view;
}

void uiViewTag(struct Tag tag) {
	uiView(viewTag(tag));
}

void uiViewNum(int num) {
	if (num < 0) {
		for (struct View *view = views.tail; view; view = view->prev) {
			if (++num) continue;
			uiView(view);
			break;
		}
	} else {
		for (struct View *view = views.head; view; view = view->next) {
			if (num--) continue;
			uiView(view);
			break;
		}
	}
}

void uiCloseTag(struct Tag tag) {
	struct View *view = viewTag(tag);
	if (ui.view == view) {
		if (view->next) {
			uiView(view->next);
		} else if (view->prev) {
			uiView(view->prev);
		} else {
			return;
		}
	}
	viewClose(view);
}

void uiLog(struct Tag tag, enum UIHeat heat, const wchar_t *line) {
	struct View *view = viewTag(tag);
	int lines = 1;
	waddch(view->log, '\n');

	if (view->mark && heat > UICold) {
		if (!view->unread++) {
			lines++;
			waddch(view->log, '\n');
		}
		if (heat > UIWarm) {
			view->hot = true;
			beep(); // TODO: Notify.
		}
		uiStatus();
	}

	lines += addWrap(view->log, line);
	if (view->scroll != LogLines) view->scroll -= lines;
}

void uiFmt(struct Tag tag, enum UIHeat heat, const wchar_t *format, ...) {
	wchar_t *str;
	va_list ap;
	va_start(ap, format);
	vaswprintf(&str, format, ap);
	va_end(ap);
	if (!str) err(EX_OSERR, "vaswprintf");
	uiLog(tag, heat, str);
	free(str);
}

static void (int lines) {
	if (ui.view->scroll == logHeight()) return;
	if (ui.view->scroll == LogLines) ui.view->mark = true;
	ui.view->scroll = MAX(ui.view->scroll - lines, logHeight());
}
static void (int lines) {
	if (ui.view->scroll == LogLines) return;
	ui.view->scroll = MIN(ui.view->scroll + lines, LogLines);
	if (ui.view->scroll == LogLines) viewUnmark(ui.view);
}

static bool keyCode(wchar_t ch) {
	switch (ch) {
		break; case KEY_RESIZE:    uiResize(); return false;
		break; case KEY_SLEFT:     scrollUp(1); return false;
		break; case KEY_SRIGHT:    scrollDown(1); return false;
		break; case KEY_PPAGE:     scrollUp(logHeight() / 2); return false;
		break; case KEY_NPAGE:     scrollDown(logHeight() / 2); return false;
		break; case KEY_LEFT:      edit(ui.view->tag, EditLeft, 0);
		break; case KEY_RIGHT:     edit(ui.view->tag, EditRight, 0);
		break; case KEY_HOME:      edit(ui.view->tag, EditHome, 0);
		break; case KEY_END:       edit(ui.view->tag, EditEnd, 0);
		break; case KEY_DC:        edit(ui.view->tag, EditDelete, 0);
		break; case KEY_BACKSPACE: edit(ui.view->tag, EditBackspace, 0);
		break; case KEY_ENTER:     edit(ui.view->tag, EditEnter, 0);
		break; default:            return false;
	}
	return true;
}

#define CTRL(ch) ((ch) ^ 0100)

static bool keyChar(wchar_t ch) {
	if (ch < 0200) {
		enum TermEvent event = termEvent((char)ch);
		switch (event) {
			break; case TermFocusIn:  viewUnmark(ui.view);
			break; case TermFocusOut: ui.view->mark = true;
			break; default: {}
		}
		if (event) return false;
	}

	static bool meta;
	if (ch == L'\33') {
		meta = true;
		return false;
	}

	if (ch == L'\177') ch = L'\b';

	if (meta) {
		meta = false;
		switch (ch) {
			break; case L'b':  edit(ui.view->tag, EditBackWord, 0);
			break; case L'f':  edit(ui.view->tag, EditForeWord, 0);
			break; case L'\b': edit(ui.view->tag, EditKillBackWord, 0);
			break; case L'd':  edit(ui.view->tag, EditKillForeWord, 0);
			break; default: {
				if (ch >= L'0' && ch <= L'9') uiViewNum(ch - L'0');
				return false;
			}
		}
		return true;
	}

	switch (ch) {
		break; case CTRL(L'L'): clearok(curscr, true); return false;

		break; case CTRL(L'A'): edit(ui.view->tag, EditHome, 0);
		break; case CTRL(L'B'): edit(ui.view->tag, EditLeft, 0);
		break; case CTRL(L'D'): edit(ui.view->tag, EditDelete, 0);
		break; case CTRL(L'E'): edit(ui.view->tag, EditEnd, 0);
		break; case CTRL(L'F'): edit(ui.view->tag, EditRight, 0);
		break; case CTRL(L'K'): edit(ui.view->tag, EditKillLine, 0);
		break; case CTRL(L'W'): edit(ui.view->tag, EditKillBackWord, 0);

		break; case CTRL(L'C'): edit(ui.view->tag, EditInsert, IRCColor);
		break; case CTRL(L'N'): edit(ui.view->tag, EditInsert, IRCReset);
		break; case CTRL(L'O'): edit(ui.view->tag, EditInsert, IRCBold);
		break; case CTRL(L'R'): edit(ui.view->tag, EditInsert, IRCColor);
		break; case CTRL(L'T'): edit(ui.view->tag, EditInsert, IRCItalic);
		break; case CTRL(L'U'): edit(ui.view->tag, EditInsert, IRCUnderline);
		break; case CTRL(L'V'): edit(ui.view->tag, EditInsert, IRCReverse);

		break; case L'\b': edit(ui.view->tag, EditBackspace, 0);
		break; case L'\t': edit(ui.view->tag, EditComplete, 0);
		break; case L'\n': edit(ui.view->tag, EditEnter, 0);

		break; default: {
			if (!iswprint(ch)) return false;
			edit(ui.view->tag, EditInsert, ch);
		}
	}
	return true;
}

void uiRead(void) {
	uiShow();

	bool update = false;
	int ret;
	wint_t ch;
	while (ERR != (ret = wget_wch(ui.input, &ch))) {
		if (ret == KEY_CODE_YES) {
			update |= keyCode(ch);
		} else {
			update |= keyChar(ch);
		}
	}
	if (!update) return;

	struct Format format = { .str = editHead() };
	formatReset(&format);
	wmove(ui.input, 0, 0);

	int _, x = 0;
	while (formatParse(&format, editTail())) {
		if (format.split) getyx(ui.input, _, x);
		addFormat(ui.input, &format);
	}

	wclrtoeol(ui.input);
	wmove(ui.input, 0, x);
}