catgirl/ui.c

564 lines
13 KiB
C
Raw Normal View History

/* Copyright (C) 2020 C. McEnroe <june@causal.agency>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2020-02-04 08:58:56 +00:00
#define _XOPEN_SOURCE_EXTENDED
#include <assert.h>
#include <ctype.h>
#include <curses.h>
#include <err.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sysexits.h>
#include <term.h>
#include <termios.h>
#include <time.h>
#include <unistd.h>
2020-02-02 06:54:51 +00:00
#include <wchar.h>
#include <wctype.h>
#include "chat.h"
2020-02-05 07:03:21 +00:00
// Annoying stuff from <term.h>:
#undef lines
#ifndef A_ITALIC
#define A_ITALIC A_UNDERLINE
#endif
#define BOTTOM (LINES - 1)
#define RIGHT (COLS - 1)
#define WINDOW_LINES (LINES - 2)
static WINDOW *status;
static WINDOW *input;
2020-02-05 07:03:21 +00:00
enum { BufferCap = 512 };
struct Buffer {
time_t times[BufferCap];
char *lines[BufferCap];
size_t len;
};
static_assert(!(BufferCap & (BufferCap - 1)), "BufferCap is power of two");
static void bufferPush(struct Buffer *buffer, time_t time, const char *line) {
size_t i = buffer->len++ % BufferCap;
free(buffer->lines[i]);
buffer->times[i] = time;
buffer->lines[i] = strdup(line);
if (!buffer->lines[i]) err(EX_OSERR, "strdup");
}
struct Window {
size_t id;
2020-02-05 07:03:21 +00:00
struct Buffer buffer;
WINDOW *pad;
enum Heat heat;
int unread;
int scroll;
bool mark;
struct Window *prev;
struct Window *next;
};
static struct {
struct Window *active;
struct Window *other;
struct Window *head;
struct Window *tail;
} windows;
static void windowAdd(struct Window *window) {
if (windows.tail) windows.tail->next = window;
window->prev = windows.tail;
window->next = NULL;
windows.tail = window;
if (!windows.head) windows.head = window;
}
static void windowRemove(struct Window *window) {
if (window->prev) window->prev->next = window->next;
if (window->next) window->next->prev = window->prev;
if (windows.head == window) windows.head = window->next;
if (windows.tail == window) windows.tail = window->prev;
}
static struct Window *windowFor(size_t id) {
struct Window *window;
for (window = windows.head; window; window = window->next) {
if (window->id == id) return window;
}
2020-02-05 07:03:21 +00:00
window = calloc(1, sizeof(*window));
if (!window) err(EX_OSERR, "malloc");
2020-02-03 00:38:37 +00:00
window->id = id;
2020-02-05 07:03:21 +00:00
window->pad = newpad(BufferCap, COLS);
2020-02-03 00:38:37 +00:00
scrollok(window->pad, true);
2020-02-05 07:03:21 +00:00
wmove(window->pad, BufferCap - 1, 0);
window->scroll = BufferCap;
window->mark = true;
2020-02-03 00:38:37 +00:00
windowAdd(window);
return window;
}
2020-02-03 00:38:37 +00:00
static short colorPairs;
static void colorInit(void) {
start_color();
use_default_colors();
for (short pair = 0; pair < 16; ++pair) {
init_pair(1 + pair, pair % COLORS, -1);
}
colorPairs = 17;
}
static attr_t colorAttr(short fg) {
return (fg >= COLORS ? A_BOLD : A_NORMAL);
}
static short colorPair(short fg, short bg) {
if (bg == -1) return 1 + fg;
for (short pair = 17; pair < colorPairs; ++pair) {
short f, b;
pair_content(pair, &f, &b);
if (f == fg && b == bg) return pair;
}
init_pair(colorPairs, fg % COLORS, bg % COLORS);
return colorPairs++;
}
enum {
KeyFocusIn = KEY_MAX + 1,
KeyFocusOut,
KeyPasteOn,
KeyPasteOff,
};
// XXX: Assuming terminals will be fine with these even if they're unsupported,
// since they're "private" modes.
static const char *EnterFocusMode = "\33[?1004h";
static const char *ExitFocusMode = "\33[?1004l";
static const char *EnterPasteMode = "\33[?2004h";
static const char *ExitPasteMode = "\33[?2004l";
void uiShow(void) {
putp(EnterFocusMode);
putp(EnterPasteMode);
}
void uiHide(void) {
putp(ExitFocusMode);
putp(ExitPasteMode);
endwin();
}
static void disableFlowControl(void) {
struct termios term;
int error = tcgetattr(STDOUT_FILENO, &term);
if (error) err(EX_OSERR, "tcgetattr");
term.c_iflag &= ~IXON;
term.c_cc[VDISCARD] = _POSIX_VDISABLE;
error = tcsetattr(STDOUT_FILENO, TCSADRAIN, &term);
if (error) err(EX_OSERR, "tcsetattr");
}
static void errExit(int eval) {
(void)eval;
reset_shell_mode();
}
void uiInit(void) {
initscr();
cbreak();
noecho();
disableFlowControl();
def_prog_mode();
err_set_exit(errExit);
if (!to_status_line && !strncmp(termname(), "xterm", 5)) {
to_status_line = "\33]2;";
from_status_line = "\7";
}
define_key("\33[I", KeyFocusIn);
define_key("\33[O", KeyFocusOut);
define_key("\33[200~", KeyPasteOn);
define_key("\33[201~", KeyPasteOff);
colorInit();
status = newwin(1, COLS, 0, 0);
2020-02-05 07:03:21 +00:00
input = newpad(1, 512);
keypad(input, true);
nodelay(input, true);
windows.active = windowFor(Network);
2020-02-04 08:58:56 +00:00
uiShow();
}
void uiDraw(void) {
wnoutrefresh(status);
pnoutrefresh(
windows.active->pad,
windows.active->scroll - WINDOW_LINES, 0,
1, 0,
BOTTOM - 1, RIGHT
);
// TODO: Input scrolling.
pnoutrefresh(
input,
0, 0,
BOTTOM, 0,
BOTTOM, RIGHT
);
doupdate();
}
struct Style {
attr_t attr;
enum Color fg, bg;
};
static const struct Style Reset = { A_NORMAL, Default, Default };
static short mapColor(enum Color color) {
switch (color) {
break; case White: return 8 + COLOR_WHITE;
break; case Black: return 0 + COLOR_BLACK;
break; case Blue: return 0 + COLOR_BLUE;
break; case Green: return 0 + COLOR_GREEN;
break; case Red: return 8 + COLOR_RED;
break; case Brown: return 0 + COLOR_RED;
break; case Magenta: return 0 + COLOR_MAGENTA;
break; case Orange: return 0 + COLOR_YELLOW;
break; case Yellow: return 8 + COLOR_YELLOW;
break; case LightGreen: return 8 + COLOR_GREEN;
break; case Cyan: return 0 + COLOR_CYAN;
break; case LightCyan: return 8 + COLOR_CYAN;
break; case LightBlue: return 8 + COLOR_BLUE;
break; case Pink: return 8 + COLOR_MAGENTA;
break; case Gray: return 8 + COLOR_BLACK;
break; case LightGray: return 0 + COLOR_WHITE;
break; default: return -1;
}
}
static void styleParse(struct Style *style, const char **str, size_t *len) {
switch (**str) {
break; case '\2': (*str)++; style->attr ^= A_BOLD;
break; case '\17': (*str)++; *style = Reset;
break; case '\26': (*str)++; style->attr ^= A_REVERSE;
break; case '\35': (*str)++; style->attr ^= A_ITALIC;
break; case '\37': (*str)++; style->attr ^= A_UNDERLINE;
break; case '\3': {
(*str)++;
if (!isdigit(**str)) {
style->fg = Default;
style->bg = Default;
break;
}
style->fg = *(*str)++ - '0';
if (isdigit(**str)) style->fg = style->fg * 10 + *(*str)++ - '0';
if ((*str)[0] != ',' || !isdigit((*str)[1])) break;
(*str)++;
style->bg = *(*str)++ - '0';
if (isdigit(**str)) style->bg = style->bg * 10 + *(*str)++ - '0';
}
}
*len = strcspn(*str, "\2\3\17\26\35\37");
}
static void statusAdd(const char *str) {
size_t len;
struct Style style = Reset;
while (*str) {
styleParse(&style, &str, &len);
wattr_set(
status,
style.attr | colorAttr(mapColor(style.fg)),
colorPair(mapColor(style.fg), mapColor(style.bg)),
NULL
);
waddnstr(status, str, len);
str += len;
}
}
static void statusUpdate(void) {
wmove(status, 0, 0);
int num;
const struct Window *window;
for (num = 0, window = windows.head; window; ++num, window = window->next) {
if (!window->unread && window != windows.active) continue;
int unread;
char buf[256];
snprintf(
2020-02-02 08:34:05 +00:00
buf, sizeof(buf), "\3%d%s %d %s %n(\3%02d%d\3%d) ",
idColors[window->id], (window == windows.active ? "\26" : ""),
num, idNames[window->id],
2020-02-02 08:27:50 +00:00
&unread, (window->heat > Warm ? White : idColors[window->id]),
window->unread,
idColors[window->id]
);
if (!window->unread) buf[unread] = '\0';
statusAdd(buf);
}
wclrtoeol(status);
2020-02-02 22:57:07 +00:00
int unread;
char buf[256];
snprintf(
buf, sizeof(buf), "%s %s%n (%d)",
self.network, idNames[windows.active->id],
&unread, windows.active->unread
);
if (!windows.active->unread) buf[unread] = '\0';
putp(to_status_line);
putp(buf);
putp(from_status_line);
}
2020-02-04 09:09:54 +00:00
static void unmark(void) {
windows.active->heat = Cold;
windows.active->unread = 0;
windows.active->mark = false;
statusUpdate();
}
static int wordWidth(const char *str) {
size_t len = strcspn(str, " ");
int width = 0;
while (len) {
wchar_t wc;
int n = mbtowc(&wc, str, len);
if (n < 1) return width + len;
width += (iswprint(wc) ? wcwidth(wc) : 0);
str += n;
len -= n;
}
return width;
}
static void wordWrap(WINDOW *win, const char *str) {
int y, x, width;
getmaxyx(win, y, width);
size_t len;
int align = 0;
struct Style style = Reset;
while (*str) {
if (*str == '\t') {
waddch(win, ' ');
getyx(win, y, align);
str++;
} else if (*str == ' ') {
getyx(win, y, x);
const char *word = &str[strspn(str, " ")];
if (width - x - 1 <= wordWidth(word)) {
waddch(win, '\n');
getyx(win, y, x);
wmove(win, y, align);
str = word;
} else {
waddch(win, ' ');
str++;
}
}
styleParse(&style, &str, &len);
size_t ws = strcspn(str, "\t ");
if (ws < len) len = ws;
wattr_set(
win,
style.attr | colorAttr(mapColor(style.fg)),
colorPair(mapColor(style.fg), mapColor(style.bg)),
NULL
);
waddnstr(win, str, len);
str += len;
}
}
2020-02-05 07:03:21 +00:00
void uiWrite(size_t id, enum Heat heat, const time_t *src, const char *str) {
struct Window *window = windowFor(id);
2020-02-05 07:03:21 +00:00
time_t clock = (src ? *src : time(NULL));
bufferPush(&window->buffer, clock, str);
waddch(window->pad, '\n');
2020-02-03 01:23:36 +00:00
if (window->mark && heat > Cold) {
if (!window->unread++) {
waddch(window->pad, '\n');
}
window->heat = heat;
statusUpdate();
}
wordWrap(window->pad, str);
}
void uiFormat(
2020-02-03 23:41:52 +00:00
size_t id, enum Heat heat, const time_t *time, const char *format, ...
) {
char buf[1024];
va_list ap;
va_start(ap, format);
int len = vsnprintf(buf, sizeof(buf), format, ap);
va_end(ap);
assert((size_t)len < sizeof(buf));
uiWrite(id, heat, time, buf);
}
2020-02-04 08:58:56 +00:00
2020-02-05 07:03:21 +00:00
static void reflow(struct Window *window) {
werase(window->pad);
wmove(window->pad, BufferCap - 1, 0);
size_t len = window->buffer.len;
for (size_t i = (len > BufferCap ? len - BufferCap : 0); i < len; ++i) {
waddch(window->pad, '\n');
wordWrap(window->pad, window->buffer.lines[i % BufferCap]);
}
}
static void resize(void) {
// FIXME: Only reflow when COLS changes.
for (struct Window *window = windows.head; window; window = window->next) {
wresize(window->pad, BufferCap, COLS);
reflow(window);
}
statusUpdate();
}
static void inputAdd(struct Style *style, const char *str) {
size_t len;
while (*str) {
const char *code = str;
styleParse(style, &str, &len);
wattr_set(input, A_BOLD | A_REVERSE, 0, NULL);
switch (*code) {
break; case '\2': waddch(input, 'B');
break; case '\3': waddch(input, 'C');
break; case '\17': waddch(input, 'O');
break; case '\26': waddch(input, 'R');
break; case '\35': waddch(input, 'I');
break; case '\37': waddch(input, 'U');
}
if (str - code > 1) waddnstr(input, &code[1], str - &code[1]);
wattr_set(
input,
style->attr | colorAttr(mapColor(style->fg)),
colorPair(mapColor(style->fg), mapColor(style->bg)),
NULL
);
waddnstr(input, str, len);
str += len;
}
}
static void inputUpdate(void) {
wmove(input, 0, 0);
wattr_set(
input,
colorAttr(mapColor(self.color)),
colorPair(mapColor(self.color), -1),
NULL
);
if (self.nick) {
// TODO: Check if input is command or action.
waddch(input, '<');
waddstr(input, self.nick);
waddstr(input, "> ");
}
int y, x;
struct Style style = Reset;
inputAdd(&style, editHead());
getyx(input, y, x);
inputAdd(&style, editTail());
wclrtoeol(input);
wmove(input, y, x);
}
static void windowShow(struct Window *window) {
touchwin(window->pad);
windows.other = windows.active;
windows.active = window;
windows.other->mark = true;
inputUpdate();
unmark();
}
void uiShowID(size_t id) {
windowShow(windowFor(id));
}
void uiShowNum(size_t num) {
struct Window *window = windows.head;
for (size_t i = 0; i < num; ++i) {
window = window->next;
if (!window) return;
}
windowShow(window);
}
2020-02-04 08:58:56 +00:00
static void keyCode(int code) {
switch (code) {
2020-02-05 07:03:21 +00:00
break; case KEY_RESIZE: resize();
2020-02-04 09:09:54 +00:00
break; case KeyFocusIn: unmark();
2020-02-04 08:58:56 +00:00
break; case KeyFocusOut: windows.active->mark = true;
break; case KeyPasteOn:; // TODO
break; case KeyPasteOff:; // TODO
}
}
static void keyMeta(wchar_t ch) {
switch (ch) {
2020-02-05 07:03:21 +00:00
break; case L'm': waddch(windows.active->pad, '\n');
2020-02-04 09:41:11 +00:00
break; default: {
if (ch >= L'0' && ch <= L'9') uiShowNum(ch - L'0');
}
2020-02-04 08:58:56 +00:00
}
}
2020-02-05 01:56:27 +00:00
static void keyCtrl(wchar_t ch) {
size_t id = windows.active->id;
2020-02-04 08:58:56 +00:00
switch (ch) {
break; case L'J': edit(id, EditEnter, 0);
2020-02-05 01:56:27 +00:00
break; case L'L': clearok(curscr, true);
break; case L'U': edit(id, EditKill, 0);
2020-02-04 08:58:56 +00:00
}
}
void uiRead(void) {
int ret;
wint_t ch;
static bool meta;
while (ERR != (ret = wget_wch(input, &ch))) {
if (ret == KEY_CODE_YES) {
keyCode(ch);
} else if (ch == '\33') {
meta = true;
continue;
} else if (meta) {
keyMeta(ch);
2020-02-05 01:56:27 +00:00
} else if (iswcntrl(ch)) {
keyCtrl(ch ^ L'@');
2020-02-04 08:58:56 +00:00
} else {
edit(windows.active->id, EditInsert, ch);
2020-02-04 08:58:56 +00:00
}
meta = false;
}
inputUpdate();
2020-02-04 08:58:56 +00:00
}