2020-02-02 00:37:48 +00:00
|
|
|
/* 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
|
|
|
|
|
2020-02-02 00:37:48 +00:00
|
|
|
#include <assert.h>
|
2020-02-02 02:57:11 +00:00
|
|
|
#include <ctype.h>
|
2020-02-02 00:37:48 +00:00
|
|
|
#include <curses.h>
|
|
|
|
#include <err.h>
|
2020-02-11 00:40:13 +00:00
|
|
|
#include <errno.h>
|
2020-02-11 02:09:32 +00:00
|
|
|
#include <signal.h>
|
2020-02-02 00:37:48 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2020-02-02 02:57:11 +00:00
|
|
|
#include <string.h>
|
2020-02-02 00:37:48 +00:00
|
|
|
#include <sysexits.h>
|
2020-02-02 23:39:08 +00:00
|
|
|
#include <term.h>
|
2020-02-03 00:34:35 +00:00
|
|
|
#include <termios.h>
|
2020-02-02 00:37:48 +00:00
|
|
|
#include <time.h>
|
2020-02-03 00:34:35 +00:00
|
|
|
#include <unistd.h>
|
2020-02-02 06:54:51 +00:00
|
|
|
#include <wchar.h>
|
|
|
|
#include <wctype.h>
|
2020-02-02 00:37:48 +00:00
|
|
|
|
|
|
|
#include "chat.h"
|
|
|
|
|
2020-02-05 07:03:21 +00:00
|
|
|
// Annoying stuff from <term.h>:
|
|
|
|
#undef lines
|
2020-02-11 01:44:37 +00:00
|
|
|
#undef tab
|
2020-02-05 07:03:21 +00:00
|
|
|
|
2020-02-02 00:37:48 +00:00
|
|
|
#ifndef A_ITALIC
|
2020-02-06 23:48:49 +00:00
|
|
|
#define A_ITALIC A_NORMAL
|
2020-02-02 00:37:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define BOTTOM (LINES - 1)
|
|
|
|
#define RIGHT (COLS - 1)
|
2020-02-09 16:50:56 +00:00
|
|
|
#define PAGE_LINES (LINES - 2)
|
2020-02-02 00:37:48 +00:00
|
|
|
|
|
|
|
static WINDOW *status;
|
2020-02-09 16:50:56 +00:00
|
|
|
static WINDOW *marker;
|
2020-02-02 00:37:48 +00:00
|
|
|
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");
|
|
|
|
}
|
|
|
|
|
2020-02-11 00:40:13 +00:00
|
|
|
static time_t bufferTime(const struct Buffer *buffer, size_t i) {
|
|
|
|
return buffer->times[(buffer->len + i) % BufferCap];
|
|
|
|
}
|
|
|
|
static const char *bufferLine(const struct Buffer *buffer, size_t i) {
|
|
|
|
return buffer->lines[(buffer->len + i) % BufferCap];
|
|
|
|
}
|
|
|
|
|
2020-02-09 16:50:56 +00:00
|
|
|
enum { WindowLines = BufferCap };
|
2020-02-02 00:37:48 +00:00
|
|
|
struct Window {
|
|
|
|
size_t id;
|
2020-02-05 07:03:21 +00:00
|
|
|
struct Buffer buffer;
|
2020-02-02 00:37:48 +00:00
|
|
|
WINDOW *pad;
|
2020-02-10 06:59:08 +00:00
|
|
|
int scroll;
|
2020-02-09 17:13:51 +00:00
|
|
|
bool mark;
|
2020-02-02 00:37:48 +00:00
|
|
|
enum Heat heat;
|
2020-02-09 17:13:51 +00:00
|
|
|
int unreadCount;
|
|
|
|
int unreadLines;
|
2020-02-02 00:37:48 +00:00
|
|
|
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));
|
2020-02-02 00:37:48 +00:00
|
|
|
if (!window) err(EX_OSERR, "malloc");
|
2020-02-03 00:38:37 +00:00
|
|
|
|
2020-02-02 00:37:48 +00:00
|
|
|
window->id = id;
|
2020-02-09 16:50:56 +00:00
|
|
|
window->pad = newpad(WindowLines, COLS);
|
2020-02-08 07:13:02 +00:00
|
|
|
if (!window->pad) err(EX_OSERR, "newpad");
|
2020-02-03 00:38:37 +00:00
|
|
|
scrollok(window->pad, true);
|
2020-02-10 06:59:08 +00:00
|
|
|
wmove(window->pad, WindowLines - 1, 0);
|
2020-02-05 07:03:21 +00:00
|
|
|
window->mark = true;
|
2020-02-03 00:38:37 +00:00
|
|
|
|
2020-02-02 00:37:48 +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) {
|
2020-02-10 10:33:31 +00:00
|
|
|
if (fg != COLOR_BLACK && fg % COLORS == COLOR_BLACK) return A_BOLD;
|
|
|
|
if (COLORS > 8) return A_NORMAL;
|
|
|
|
return (fg / COLORS & 1 ? A_BOLD : A_NORMAL);
|
2020-02-03 00:38:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static short colorPair(short fg, short bg) {
|
2020-02-05 09:24:13 +00:00
|
|
|
fg %= COLORS;
|
|
|
|
bg %= COLORS;
|
2020-02-10 10:33:31 +00:00
|
|
|
if (bg == -1 && fg < 16) return 1 + fg;
|
2020-02-03 00:38:37 +00:00
|
|
|
for (short pair = 17; pair < colorPairs; ++pair) {
|
|
|
|
short f, b;
|
|
|
|
pair_content(pair, &f, &b);
|
|
|
|
if (f == fg && b == bg) return pair;
|
|
|
|
}
|
2020-02-05 09:24:13 +00:00
|
|
|
init_pair(colorPairs, fg, bg);
|
2020-02-03 00:38:37 +00:00
|
|
|
return colorPairs++;
|
|
|
|
}
|
2020-02-02 00:37:48 +00:00
|
|
|
|
2020-02-03 04:20:19 +00:00
|
|
|
// 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";
|
|
|
|
|
2020-02-11 02:09:32 +00:00
|
|
|
// Gain use of C-q, C-s, C-c, C-z, C-y, C-o.
|
2020-02-09 12:09:51 +00:00
|
|
|
static void acquireKeys(void) {
|
2020-02-03 00:34:35 +00:00
|
|
|
struct termios term;
|
|
|
|
int error = tcgetattr(STDOUT_FILENO, &term);
|
|
|
|
if (error) err(EX_OSERR, "tcgetattr");
|
|
|
|
term.c_iflag &= ~IXON;
|
2020-02-11 02:09:32 +00:00
|
|
|
term.c_cc[VINTR] = _POSIX_VDISABLE;
|
2020-02-06 07:25:58 +00:00
|
|
|
term.c_cc[VSUSP] = _POSIX_VDISABLE;
|
2020-02-11 08:42:06 +00:00
|
|
|
#ifdef VDSUSP
|
2020-02-09 12:09:51 +00:00
|
|
|
term.c_cc[VDSUSP] = _POSIX_VDISABLE;
|
2020-02-11 08:42:06 +00:00
|
|
|
#endif
|
2020-02-03 00:34:35 +00:00
|
|
|
term.c_cc[VDISCARD] = _POSIX_VDISABLE;
|
|
|
|
error = tcsetattr(STDOUT_FILENO, TCSADRAIN, &term);
|
|
|
|
if (error) err(EX_OSERR, "tcsetattr");
|
|
|
|
}
|
|
|
|
|
2020-02-08 03:25:09 +00:00
|
|
|
static void errExit(void) {
|
2020-02-02 07:28:14 +00:00
|
|
|
reset_shell_mode();
|
|
|
|
}
|
|
|
|
|
2020-02-08 01:41:27 +00:00
|
|
|
#define ENUM_KEY \
|
|
|
|
X(KeyMeta0, "\0330") \
|
|
|
|
X(KeyMeta1, "\0331") \
|
|
|
|
X(KeyMeta2, "\0332") \
|
|
|
|
X(KeyMeta3, "\0333") \
|
|
|
|
X(KeyMeta4, "\0334") \
|
|
|
|
X(KeyMeta5, "\0335") \
|
|
|
|
X(KeyMeta6, "\0336") \
|
|
|
|
X(KeyMeta7, "\0337") \
|
|
|
|
X(KeyMeta8, "\0338") \
|
|
|
|
X(KeyMeta9, "\0339") \
|
2020-02-09 13:14:22 +00:00
|
|
|
X(KeyMetaA, "\33a") \
|
2020-02-09 09:32:32 +00:00
|
|
|
X(KeyMetaB, "\33b") \
|
|
|
|
X(KeyMetaD, "\33d") \
|
|
|
|
X(KeyMetaF, "\33f") \
|
2020-02-09 23:16:01 +00:00
|
|
|
X(KeyMetaL, "\33l") \
|
2020-02-08 01:41:27 +00:00
|
|
|
X(KeyMetaM, "\33m") \
|
2020-02-09 17:13:51 +00:00
|
|
|
X(KeyMetaU, "\33u") \
|
2020-02-09 13:17:05 +00:00
|
|
|
X(KeyMetaSlash, "\33/") \
|
2020-02-08 01:41:27 +00:00
|
|
|
X(KeyFocusIn, "\33[I") \
|
|
|
|
X(KeyFocusOut, "\33[O") \
|
|
|
|
X(KeyPasteOn, "\33[200~") \
|
|
|
|
X(KeyPasteOff, "\33[201~")
|
|
|
|
|
|
|
|
enum {
|
|
|
|
KeyMax = KEY_MAX,
|
|
|
|
#define X(id, seq) id,
|
|
|
|
ENUM_KEY
|
|
|
|
#undef X
|
|
|
|
};
|
|
|
|
|
2020-02-02 00:37:48 +00:00
|
|
|
void uiInit(void) {
|
|
|
|
initscr();
|
|
|
|
cbreak();
|
|
|
|
noecho();
|
2020-02-09 12:09:51 +00:00
|
|
|
acquireKeys();
|
2020-02-02 00:37:48 +00:00
|
|
|
def_prog_mode();
|
2020-02-08 03:25:09 +00:00
|
|
|
atexit(errExit);
|
2020-02-08 07:13:02 +00:00
|
|
|
colorInit();
|
2020-02-03 00:34:35 +00:00
|
|
|
|
2020-02-02 23:39:08 +00:00
|
|
|
if (!to_status_line && !strncmp(termname(), "xterm", 5)) {
|
|
|
|
to_status_line = "\33]2;";
|
|
|
|
from_status_line = "\7";
|
|
|
|
}
|
2020-02-08 07:13:02 +00:00
|
|
|
|
2020-02-08 01:41:27 +00:00
|
|
|
#define X(id, seq) define_key(seq, id);
|
|
|
|
ENUM_KEY
|
|
|
|
#undef X
|
2020-02-02 23:39:08 +00:00
|
|
|
|
2020-02-02 00:37:48 +00:00
|
|
|
status = newwin(1, COLS, 0, 0);
|
2020-02-08 07:13:02 +00:00
|
|
|
if (!status) err(EX_OSERR, "newwin");
|
|
|
|
|
2020-02-09 16:50:56 +00:00
|
|
|
marker = newwin(1, COLS, LINES - 2, 0);
|
|
|
|
short fg = 8 + COLOR_BLACK;
|
|
|
|
wbkgd(marker, '~' | colorAttr(fg) | COLOR_PAIR(colorPair(fg, -1)));
|
|
|
|
|
2020-02-05 07:03:21 +00:00
|
|
|
input = newpad(1, 512);
|
2020-02-08 07:13:02 +00:00
|
|
|
if (!input) err(EX_OSERR, "newpad");
|
2020-02-02 00:37:48 +00:00
|
|
|
keypad(input, true);
|
|
|
|
nodelay(input, true);
|
2020-02-08 07:13:02 +00:00
|
|
|
|
2020-02-02 00:37:48 +00:00
|
|
|
windows.active = windowFor(Network);
|
2020-02-04 08:58:56 +00:00
|
|
|
uiShow();
|
2020-02-02 00:37:48 +00:00
|
|
|
}
|
|
|
|
|
2020-02-11 03:05:02 +00:00
|
|
|
static bool hidden;
|
|
|
|
static bool waiting;
|
|
|
|
|
2020-02-11 02:24:30 +00:00
|
|
|
static char title[256];
|
2020-02-11 03:05:02 +00:00
|
|
|
static char prevTitle[sizeof(title)];
|
2020-02-11 02:24:30 +00:00
|
|
|
|
2020-02-02 00:37:48 +00:00
|
|
|
void uiDraw(void) {
|
2020-02-09 19:09:27 +00:00
|
|
|
if (hidden) return;
|
2020-02-02 00:37:48 +00:00
|
|
|
wnoutrefresh(status);
|
2020-02-09 16:50:56 +00:00
|
|
|
struct Window *window = windows.active;
|
2020-02-02 00:37:48 +00:00
|
|
|
pnoutrefresh(
|
2020-02-09 16:50:56 +00:00
|
|
|
window->pad,
|
|
|
|
WindowLines - window->scroll - PAGE_LINES + !!window->scroll, 0,
|
2020-02-02 00:37:48 +00:00
|
|
|
1, 0,
|
2020-02-09 16:50:56 +00:00
|
|
|
BOTTOM - 1 - !!window->scroll, RIGHT
|
2020-02-02 00:37:48 +00:00
|
|
|
);
|
2020-02-09 16:50:56 +00:00
|
|
|
if (window->scroll) {
|
|
|
|
touchwin(marker);
|
|
|
|
wnoutrefresh(marker);
|
2020-02-09 14:18:26 +00:00
|
|
|
}
|
2020-02-05 23:18:25 +00:00
|
|
|
int y, x;
|
|
|
|
getyx(input, y, x);
|
2020-02-02 00:37:48 +00:00
|
|
|
pnoutrefresh(
|
|
|
|
input,
|
2020-02-08 01:28:22 +00:00
|
|
|
0, (x + 1 > RIGHT ? x + 1 - RIGHT : 0),
|
2020-02-02 00:37:48 +00:00
|
|
|
BOTTOM, 0,
|
|
|
|
BOTTOM, RIGHT
|
|
|
|
);
|
2020-02-11 08:47:30 +00:00
|
|
|
(void)y;
|
2020-02-02 00:37:48 +00:00
|
|
|
doupdate();
|
2020-02-11 02:34:23 +00:00
|
|
|
|
2020-02-11 03:05:02 +00:00
|
|
|
if (!to_status_line) return;
|
2020-02-11 02:34:23 +00:00
|
|
|
if (!strcmp(title, prevTitle)) return;
|
|
|
|
strcpy(prevTitle, title);
|
2020-02-11 02:24:30 +00:00
|
|
|
putp(to_status_line);
|
|
|
|
putp(title);
|
|
|
|
putp(from_status_line);
|
|
|
|
fflush(stdout);
|
2020-02-02 00:37:48 +00:00
|
|
|
}
|
|
|
|
|
2020-02-11 03:05:02 +00:00
|
|
|
void uiShow(void) {
|
|
|
|
prevTitle[0] = '\0';
|
|
|
|
putp(EnterFocusMode);
|
|
|
|
putp(EnterPasteMode);
|
|
|
|
fflush(stdout);
|
|
|
|
hidden = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void uiHide(void) {
|
|
|
|
hidden = true;
|
|
|
|
putp(ExitFocusMode);
|
|
|
|
putp(ExitPasteMode);
|
|
|
|
endwin();
|
|
|
|
}
|
|
|
|
|
2020-02-02 02:57:11 +00:00
|
|
|
struct Style {
|
|
|
|
attr_t attr;
|
|
|
|
enum Color fg, bg;
|
|
|
|
};
|
|
|
|
static const struct Style Reset = { A_NORMAL, Default, Default };
|
|
|
|
|
2020-02-11 22:43:36 +00:00
|
|
|
static const short Colors[ColorCap] = {
|
2020-02-10 09:17:07 +00:00
|
|
|
[Default] = -1,
|
|
|
|
[White] = 8 + COLOR_WHITE,
|
|
|
|
[Black] = 0 + COLOR_BLACK,
|
|
|
|
[Blue] = 0 + COLOR_BLUE,
|
|
|
|
[Green] = 0 + COLOR_GREEN,
|
|
|
|
[Red] = 8 + COLOR_RED,
|
|
|
|
[Brown] = 0 + COLOR_RED,
|
|
|
|
[Magenta] = 0 + COLOR_MAGENTA,
|
|
|
|
[Orange] = 0 + COLOR_YELLOW,
|
|
|
|
[Yellow] = 8 + COLOR_YELLOW,
|
|
|
|
[LightGreen] = 8 + COLOR_GREEN,
|
|
|
|
[Cyan] = 0 + COLOR_CYAN,
|
|
|
|
[LightCyan] = 8 + COLOR_CYAN,
|
|
|
|
[LightBlue] = 8 + COLOR_BLUE,
|
|
|
|
[Pink] = 8 + COLOR_MAGENTA,
|
|
|
|
[Gray] = 8 + COLOR_BLACK,
|
|
|
|
[LightGray] = 0 + COLOR_WHITE,
|
|
|
|
52, 94, 100, 58, 22, 29, 23, 24, 17, 54, 53, 89,
|
|
|
|
88, 130, 142, 64, 28, 35, 30, 25, 18, 91, 90, 125,
|
|
|
|
124, 166, 184, 106, 34, 49, 37, 33, 19, 129, 127, 161,
|
|
|
|
196, 208, 226, 154, 46, 86, 51, 75, 21, 171, 201, 198,
|
|
|
|
203, 215, 227, 191, 83, 122, 87, 111, 63, 177, 207, 205,
|
|
|
|
217, 223, 229, 193, 157, 158, 159, 153, 147, 183, 219, 212,
|
|
|
|
16, 233, 235, 237, 239, 241, 244, 247, 250, 254, 231,
|
|
|
|
};
|
2020-02-02 02:57:11 +00:00
|
|
|
|
2020-02-07 07:46:40 +00:00
|
|
|
enum { B = '\2', C = '\3', O = '\17', R = '\26', I = '\35', U = '\37' };
|
|
|
|
|
2020-02-02 02:57:11 +00:00
|
|
|
static void styleParse(struct Style *style, const char **str, size_t *len) {
|
|
|
|
switch (**str) {
|
2020-02-07 07:46:40 +00:00
|
|
|
break; case B: (*str)++; style->attr ^= A_BOLD;
|
|
|
|
break; case O: (*str)++; *style = Reset;
|
|
|
|
break; case R: (*str)++; style->attr ^= A_REVERSE;
|
|
|
|
break; case I: (*str)++; style->attr ^= A_ITALIC;
|
|
|
|
break; case U: (*str)++; style->attr ^= A_UNDERLINE;
|
|
|
|
break; case C: {
|
2020-02-02 02:57:11 +00:00
|
|
|
(*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';
|
|
|
|
}
|
|
|
|
}
|
2020-02-07 07:46:40 +00:00
|
|
|
*len = strcspn(*str, (const char[]) { B, C, O, R, I, U, '\0' });
|
2020-02-02 02:57:11 +00:00
|
|
|
}
|
|
|
|
|
2020-02-05 01:23:55 +00:00
|
|
|
static void statusAdd(const char *str) {
|
2020-02-02 02:57:11 +00:00
|
|
|
size_t len;
|
|
|
|
struct Style style = Reset;
|
|
|
|
while (*str) {
|
|
|
|
styleParse(&style, &str, &len);
|
|
|
|
wattr_set(
|
2020-02-05 01:23:55 +00:00
|
|
|
status,
|
2020-02-10 09:17:07 +00:00
|
|
|
style.attr | colorAttr(Colors[style.fg]),
|
|
|
|
colorPair(Colors[style.fg], Colors[style.bg]),
|
2020-02-02 02:57:11 +00:00
|
|
|
NULL
|
|
|
|
);
|
2020-02-05 01:23:55 +00:00
|
|
|
waddnstr(status, str, len);
|
2020-02-02 02:57:11 +00:00
|
|
|
str += len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-02 08:13:50 +00:00
|
|
|
static void statusUpdate(void) {
|
2020-02-10 22:54:16 +00:00
|
|
|
int otherUnread = 0;
|
|
|
|
enum Heat otherHeat = Cold;
|
2020-02-02 08:13:50 +00:00
|
|
|
wmove(status, 0, 0);
|
2020-02-10 22:54:16 +00:00
|
|
|
|
2020-02-02 08:13:50 +00:00
|
|
|
int num;
|
|
|
|
const struct Window *window;
|
|
|
|
for (num = 0, window = windows.head; window; ++num, window = window->next) {
|
2020-02-10 06:59:08 +00:00
|
|
|
if (!window->heat && window != windows.active) continue;
|
2020-02-10 22:54:16 +00:00
|
|
|
if (window != windows.active) {
|
|
|
|
otherUnread += window->unreadCount;
|
|
|
|
if (window->heat > otherHeat) otherHeat = window->heat;
|
|
|
|
}
|
|
|
|
int trunc;
|
2020-02-02 08:13:50 +00:00
|
|
|
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" : ""),
|
2020-02-02 08:13:50 +00:00
|
|
|
num, idNames[window->id],
|
2020-02-10 22:54:16 +00:00
|
|
|
&trunc, (window->heat > Warm ? White : idColors[window->id]),
|
2020-02-09 17:13:51 +00:00
|
|
|
window->unreadCount,
|
2020-02-02 08:27:50 +00:00
|
|
|
idColors[window->id]
|
2020-02-02 08:13:50 +00:00
|
|
|
);
|
2020-02-10 22:54:16 +00:00
|
|
|
if (!window->mark || !window->unreadCount) buf[trunc] = '\0';
|
2020-02-05 01:23:55 +00:00
|
|
|
statusAdd(buf);
|
2020-02-02 08:13:50 +00:00
|
|
|
}
|
|
|
|
wclrtoeol(status);
|
2020-02-02 22:57:07 +00:00
|
|
|
|
2020-02-10 22:54:16 +00:00
|
|
|
window = windows.active;
|
2020-02-11 02:24:30 +00:00
|
|
|
snprintf(title, sizeof(title), "%s %s", self.network, idNames[window->id]);
|
2020-02-10 22:54:16 +00:00
|
|
|
if (window->mark && window->unreadCount) {
|
2020-02-11 02:24:30 +00:00
|
|
|
snprintf(
|
|
|
|
&title[strlen(title)], sizeof(title) - strlen(title),
|
2020-02-10 22:54:16 +00:00
|
|
|
" (%d%s)", window->unreadCount, (window->heat > Warm ? "!" : "")
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (otherUnread) {
|
2020-02-11 02:24:30 +00:00
|
|
|
snprintf(
|
|
|
|
&title[strlen(title)], sizeof(title) - strlen(title),
|
|
|
|
" (+%d%s)", otherUnread, (otherHeat > Warm ? "!" : "")
|
|
|
|
);
|
2020-02-10 22:54:16 +00:00
|
|
|
}
|
2020-02-02 08:13:50 +00:00
|
|
|
}
|
|
|
|
|
2020-02-10 06:59:08 +00:00
|
|
|
static void mark(struct Window *window) {
|
|
|
|
if (window->scroll) return;
|
|
|
|
window->mark = true;
|
|
|
|
window->unreadCount = 0;
|
|
|
|
window->unreadLines = 0;
|
|
|
|
}
|
|
|
|
|
2020-02-09 13:52:17 +00:00
|
|
|
static void unmark(struct Window *window) {
|
2020-02-09 16:50:56 +00:00
|
|
|
if (!window->scroll) {
|
2020-02-09 14:18:26 +00:00
|
|
|
window->mark = false;
|
2020-02-10 06:59:08 +00:00
|
|
|
window->heat = Cold;
|
2020-02-09 14:18:26 +00:00
|
|
|
}
|
2020-02-04 09:09:54 +00:00
|
|
|
statusUpdate();
|
|
|
|
}
|
|
|
|
|
2020-02-09 13:52:17 +00:00
|
|
|
static void windowScroll(struct Window *window, int n) {
|
2020-02-10 06:59:08 +00:00
|
|
|
mark(window);
|
2020-02-09 13:52:17 +00:00
|
|
|
window->scroll += n;
|
2020-02-09 16:50:56 +00:00
|
|
|
if (window->scroll > WindowLines - PAGE_LINES) {
|
|
|
|
window->scroll = WindowLines - PAGE_LINES;
|
|
|
|
}
|
|
|
|
if (window->scroll < 0) window->scroll = 0;
|
2020-02-10 06:59:08 +00:00
|
|
|
unmark(window);
|
2020-02-09 13:52:17 +00:00
|
|
|
}
|
|
|
|
|
2020-02-09 17:13:51 +00:00
|
|
|
static void windowScrollUnread(struct Window *window) {
|
|
|
|
window->scroll = 0;
|
2020-02-10 08:37:17 +00:00
|
|
|
windowScroll(window, window->unreadLines - PAGE_LINES + 1);
|
2020-02-09 17:13:51 +00:00
|
|
|
}
|
|
|
|
|
2020-02-05 01:23:55 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2020-02-09 13:52:17 +00:00
|
|
|
static int wordWrap(WINDOW *win, const char *str) {
|
2020-02-05 01:23:55 +00:00
|
|
|
int y, x, width;
|
|
|
|
getmaxyx(win, y, width);
|
|
|
|
|
|
|
|
size_t len;
|
2020-02-09 13:52:17 +00:00
|
|
|
int lines = 0;
|
2020-02-05 01:23:55 +00:00
|
|
|
int align = 0;
|
|
|
|
struct Style style = Reset;
|
|
|
|
while (*str) {
|
2020-02-08 04:55:46 +00:00
|
|
|
if (*str == '\t') {
|
2020-02-08 04:56:41 +00:00
|
|
|
if (align) {
|
|
|
|
waddch(win, '\t');
|
|
|
|
str++;
|
|
|
|
} else {
|
|
|
|
waddch(win, ' ');
|
|
|
|
getyx(win, y, align);
|
|
|
|
str++;
|
|
|
|
}
|
2020-02-05 01:23:55 +00:00
|
|
|
} else if (*str == ' ') {
|
|
|
|
getyx(win, y, x);
|
|
|
|
const char *word = &str[strspn(str, " ")];
|
|
|
|
if (width - x - 1 <= wordWidth(word)) {
|
2020-02-10 07:50:32 +00:00
|
|
|
lines += 1 + (align + wordWidth(word)) / width;
|
2020-02-05 01:23:55 +00:00
|
|
|
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,
|
2020-02-10 09:17:07 +00:00
|
|
|
style.attr | colorAttr(Colors[style.fg]),
|
|
|
|
colorPair(Colors[style.fg], Colors[style.bg]),
|
2020-02-05 01:23:55 +00:00
|
|
|
NULL
|
|
|
|
);
|
|
|
|
waddnstr(win, str, len);
|
|
|
|
str += len;
|
|
|
|
}
|
2020-02-09 13:52:17 +00:00
|
|
|
return lines;
|
2020-02-05 01:23:55 +00:00
|
|
|
}
|
|
|
|
|
2020-02-05 07:03:21 +00:00
|
|
|
void uiWrite(size_t id, enum Heat heat, const time_t *src, const char *str) {
|
2020-02-02 00:37:48 +00:00
|
|
|
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);
|
|
|
|
|
2020-02-09 13:52:17 +00:00
|
|
|
int lines = 1;
|
2020-02-02 00:37:48 +00:00
|
|
|
waddch(window->pad, '\n');
|
2020-02-03 01:23:36 +00:00
|
|
|
if (window->mark && heat > Cold) {
|
2020-02-09 17:13:51 +00:00
|
|
|
if (!window->unreadCount++) {
|
2020-02-09 13:52:17 +00:00
|
|
|
lines++;
|
2020-02-03 01:23:36 +00:00
|
|
|
waddch(window->pad, '\n');
|
|
|
|
}
|
2020-02-10 08:29:38 +00:00
|
|
|
if (window->heat < heat) window->heat = heat;
|
2020-02-03 01:23:36 +00:00
|
|
|
statusUpdate();
|
|
|
|
}
|
2020-02-09 13:52:17 +00:00
|
|
|
lines += wordWrap(window->pad, str);
|
2020-02-10 08:10:08 +00:00
|
|
|
window->unreadLines += lines;
|
2020-02-09 16:50:56 +00:00
|
|
|
if (window->scroll) windowScroll(window, lines);
|
2020-02-06 09:23:49 +00:00
|
|
|
if (heat > Warm) beep();
|
2020-02-02 00:37:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void uiFormat(
|
2020-02-03 23:41:52 +00:00
|
|
|
size_t id, enum Heat heat, const time_t *time, const char *format, ...
|
2020-02-02 00:37:48 +00:00
|
|
|
) {
|
|
|
|
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);
|
2020-02-10 08:37:17 +00:00
|
|
|
wmove(window->pad, WindowLines - 1, 0);
|
|
|
|
window->unreadLines = 0;
|
2020-02-08 21:56:49 +00:00
|
|
|
for (size_t i = 0; i < BufferCap; ++i) {
|
2020-02-11 00:40:13 +00:00
|
|
|
const char *line = bufferLine(&window->buffer, i);
|
2020-02-08 21:56:49 +00:00
|
|
|
if (!line) continue;
|
2020-02-05 07:03:21 +00:00
|
|
|
waddch(window->pad, '\n');
|
2020-02-10 08:37:17 +00:00
|
|
|
if (i >= (size_t)(BufferCap - window->unreadCount)) {
|
|
|
|
window->unreadLines += 1 + wordWrap(window->pad, line);
|
|
|
|
} else {
|
|
|
|
wordWrap(window->pad, line);
|
|
|
|
}
|
2020-02-05 07:03:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void resize(void) {
|
2020-02-10 07:55:21 +00:00
|
|
|
mvwin(marker, LINES - 2, 0);
|
2020-02-05 23:01:57 +00:00
|
|
|
int height, width;
|
|
|
|
getmaxyx(windows.active->pad, height, width);
|
|
|
|
if (width == COLS) return;
|
2020-02-05 07:03:21 +00:00
|
|
|
for (struct Window *window = windows.head; window; window = window->next) {
|
|
|
|
wresize(window->pad, BufferCap, COLS);
|
|
|
|
reflow(window);
|
|
|
|
}
|
2020-02-11 08:47:30 +00:00
|
|
|
(void)height;
|
2020-02-05 07:03:21 +00:00
|
|
|
statusUpdate();
|
|
|
|
}
|
|
|
|
|
2020-02-11 00:40:13 +00:00
|
|
|
static void bufferList(const struct Buffer *buffer) {
|
2020-02-09 23:16:01 +00:00
|
|
|
uiHide();
|
|
|
|
waiting = true;
|
|
|
|
for (size_t i = 0; i < BufferCap; ++i) {
|
2020-02-11 00:40:13 +00:00
|
|
|
time_t time = bufferTime(buffer, i);
|
|
|
|
const char *line = bufferLine(buffer, i);
|
2020-02-09 23:16:01 +00:00
|
|
|
if (!line) continue;
|
|
|
|
|
|
|
|
struct tm *tm = localtime(&time);
|
|
|
|
if (!tm) continue;
|
|
|
|
char buf[sizeof("[00:00:00]")];
|
|
|
|
strftime(buf, sizeof(buf), "[%T]", tm);
|
2020-02-10 09:17:07 +00:00
|
|
|
vid_attr(colorAttr(Colors[Gray]), colorPair(Colors[Gray], -1), NULL);
|
2020-02-11 01:44:37 +00:00
|
|
|
printf("%s ", buf);
|
2020-02-09 23:16:01 +00:00
|
|
|
|
|
|
|
size_t len;
|
2020-02-11 01:44:37 +00:00
|
|
|
bool align = false;
|
2020-02-09 23:16:01 +00:00
|
|
|
struct Style style = Reset;
|
|
|
|
while (*line) {
|
2020-02-11 01:44:37 +00:00
|
|
|
if (*line == '\t') {
|
|
|
|
printf("%c", (align ? '\t' : ' '));
|
|
|
|
align = true;
|
|
|
|
line++;
|
|
|
|
}
|
2020-02-09 23:16:01 +00:00
|
|
|
styleParse(&style, &line, &len);
|
2020-02-11 01:44:37 +00:00
|
|
|
size_t tab = strcspn(line, "\t");
|
|
|
|
if (tab < len) len = tab;
|
2020-02-09 23:16:01 +00:00
|
|
|
vid_attr(
|
2020-02-10 09:17:07 +00:00
|
|
|
style.attr | colorAttr(Colors[style.fg]),
|
|
|
|
colorPair(Colors[style.fg], Colors[style.bg]),
|
2020-02-09 23:16:01 +00:00
|
|
|
NULL
|
|
|
|
);
|
|
|
|
if (len) printf("%.*s", (int)len, line);
|
|
|
|
line += len;
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-05 01:23:55 +00:00
|
|
|
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) {
|
2020-02-07 07:46:40 +00:00
|
|
|
break; case B: waddch(input, 'B');
|
|
|
|
break; case C: waddch(input, 'C');
|
|
|
|
break; case O: waddch(input, 'O');
|
|
|
|
break; case R: waddch(input, 'R');
|
|
|
|
break; case I: waddch(input, 'I');
|
|
|
|
break; case U: waddch(input, 'U');
|
2020-02-05 01:23:55 +00:00
|
|
|
}
|
|
|
|
if (str - code > 1) waddnstr(input, &code[1], str - &code[1]);
|
|
|
|
wattr_set(
|
|
|
|
input,
|
2020-02-10 09:17:07 +00:00
|
|
|
style->attr | colorAttr(Colors[style->fg]),
|
|
|
|
colorPair(Colors[style->fg], Colors[style->bg]),
|
2020-02-05 01:23:55 +00:00
|
|
|
NULL
|
|
|
|
);
|
|
|
|
waddnstr(input, str, len);
|
|
|
|
str += len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void inputUpdate(void) {
|
2020-02-07 00:05:51 +00:00
|
|
|
size_t id = windows.active->id;
|
2020-02-09 06:28:24 +00:00
|
|
|
size_t pos;
|
|
|
|
char *buf = editBuffer(&pos);
|
|
|
|
|
2020-02-06 00:00:54 +00:00
|
|
|
const char *skip = NULL;
|
2020-02-09 06:28:24 +00:00
|
|
|
struct Style init = { .fg = self.color, .bg = Default };
|
|
|
|
struct Style rest = Reset;
|
|
|
|
const char *prefix = "";
|
2020-02-11 22:52:55 +00:00
|
|
|
const char *prompt = self.nick;
|
2020-02-09 06:28:24 +00:00
|
|
|
const char *suffix = "";
|
|
|
|
if (NULL != (skip = commandIsPrivmsg(id, buf))) {
|
|
|
|
prefix = "<"; suffix = "> ";
|
|
|
|
} else if (NULL != (skip = commandIsNotice(id, buf))) {
|
|
|
|
prefix = "-"; suffix = "- ";
|
|
|
|
rest.fg = LightGray;
|
|
|
|
} else if (NULL != (skip = commandIsAction(id, buf))) {
|
|
|
|
init.attr |= A_ITALIC;
|
|
|
|
prefix = "* "; suffix = " ";
|
|
|
|
rest.attr |= A_ITALIC;
|
2020-02-07 00:05:51 +00:00
|
|
|
} else if (id == Debug) {
|
2020-02-09 06:28:24 +00:00
|
|
|
skip = buf;
|
|
|
|
init.fg = Gray;
|
|
|
|
prompt = "<< ";
|
|
|
|
} else {
|
|
|
|
prompt = "";
|
|
|
|
}
|
|
|
|
if (skip && skip > &buf[pos]) {
|
|
|
|
skip = NULL;
|
|
|
|
prefix = prompt = suffix = "";
|
2020-02-05 01:23:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int y, x;
|
2020-02-07 00:05:51 +00:00
|
|
|
wmove(input, 0, 0);
|
2020-02-09 06:28:24 +00:00
|
|
|
wattr_set(
|
|
|
|
input,
|
2020-02-10 09:17:07 +00:00
|
|
|
init.attr | colorAttr(Colors[init.fg]),
|
|
|
|
colorPair(Colors[init.fg], Colors[init.bg]),
|
2020-02-09 06:28:24 +00:00
|
|
|
NULL
|
|
|
|
);
|
|
|
|
waddstr(input, prefix);
|
|
|
|
waddstr(input, prompt);
|
|
|
|
waddstr(input, suffix);
|
|
|
|
struct Style style = rest;
|
|
|
|
char p = buf[pos];
|
|
|
|
buf[pos] = '\0';
|
|
|
|
inputAdd(&style, (skip ? skip : buf));
|
2020-02-05 01:23:55 +00:00
|
|
|
getyx(input, y, x);
|
2020-02-09 06:28:24 +00:00
|
|
|
buf[pos] = p;
|
|
|
|
inputAdd(&style, &buf[pos]);
|
2020-02-05 01:23:55 +00:00
|
|
|
wclrtoeol(input);
|
|
|
|
wmove(input, y, x);
|
|
|
|
}
|
|
|
|
|
2020-02-05 01:46:16 +00:00
|
|
|
static void windowShow(struct Window *window) {
|
2020-02-09 12:46:30 +00:00
|
|
|
if (!window) return;
|
2020-02-05 01:46:16 +00:00
|
|
|
touchwin(window->pad);
|
|
|
|
windows.other = windows.active;
|
|
|
|
windows.active = window;
|
2020-02-10 06:59:08 +00:00
|
|
|
mark(windows.other);
|
2020-02-09 13:52:17 +00:00
|
|
|
unmark(windows.active);
|
2020-02-10 06:59:08 +00:00
|
|
|
inputUpdate();
|
2020-02-05 01:46:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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-08 07:26:00 +00:00
|
|
|
static void windowClose(struct Window *window) {
|
|
|
|
if (window->id == Network) return;
|
2020-02-11 23:18:48 +00:00
|
|
|
completeClear(window->id);
|
2020-02-08 07:26:00 +00:00
|
|
|
if (windows.active == window) {
|
2020-02-09 05:39:09 +00:00
|
|
|
if (windows.other && windows.other != window) {
|
|
|
|
windowShow(windows.other);
|
|
|
|
} else {
|
|
|
|
windowShow(window->prev ? window->prev : window->next);
|
|
|
|
}
|
2020-02-08 07:26:00 +00:00
|
|
|
}
|
|
|
|
if (windows.other == window) windows.other = NULL;
|
|
|
|
windowRemove(window);
|
|
|
|
for (size_t i = 0; i < BufferCap; ++i) {
|
|
|
|
free(window->buffer.lines[i]);
|
|
|
|
}
|
|
|
|
delwin(window->pad);
|
|
|
|
free(window);
|
|
|
|
statusUpdate();
|
|
|
|
}
|
|
|
|
|
|
|
|
void uiCloseID(size_t id) {
|
|
|
|
windowClose(windowFor(id));
|
|
|
|
}
|
|
|
|
|
|
|
|
void uiCloseNum(size_t num) {
|
|
|
|
struct Window *window = windows.head;
|
|
|
|
for (size_t i = 0; i < num; ++i) {
|
|
|
|
window = window->next;
|
|
|
|
if (!window) return;
|
|
|
|
}
|
|
|
|
windowClose(window);
|
|
|
|
}
|
|
|
|
|
2020-02-09 13:14:22 +00:00
|
|
|
static void showAuto(void) {
|
2020-02-10 06:09:03 +00:00
|
|
|
static struct Window *other;
|
|
|
|
if (windows.other != other) {
|
|
|
|
other = windows.active;
|
2020-02-09 13:14:22 +00:00
|
|
|
}
|
|
|
|
for (struct Window *window = windows.head; window; window = window->next) {
|
|
|
|
if (window->heat < Hot) continue;
|
|
|
|
windowShow(window);
|
|
|
|
windows.other = other;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
for (struct Window *window = windows.head; window; window = window->next) {
|
|
|
|
if (window->heat < Warm) continue;
|
|
|
|
windowShow(window);
|
|
|
|
windows.other = other;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
windowShow(windows.other);
|
|
|
|
}
|
|
|
|
|
2020-02-04 08:58:56 +00:00
|
|
|
static void keyCode(int code) {
|
2020-02-09 13:52:17 +00:00
|
|
|
struct Window *window = windows.active;
|
|
|
|
size_t id = window->id;
|
2020-02-04 08:58:56 +00:00
|
|
|
switch (code) {
|
2020-02-05 07:03:21 +00:00
|
|
|
break; case KEY_RESIZE: resize();
|
2020-02-09 13:52:17 +00:00
|
|
|
break; case KeyFocusIn: unmark(window);
|
2020-02-10 06:59:08 +00:00
|
|
|
break; case KeyFocusOut: mark(window);
|
2020-02-04 08:58:56 +00:00
|
|
|
break; case KeyPasteOn:; // TODO
|
|
|
|
break; case KeyPasteOff:; // TODO
|
2020-02-07 06:55:26 +00:00
|
|
|
|
2020-02-09 13:17:05 +00:00
|
|
|
break; case KeyMetaSlash: windowShow(windows.other);
|
|
|
|
|
2020-02-09 13:14:22 +00:00
|
|
|
break; case KeyMetaA: showAuto();
|
2020-02-09 09:20:07 +00:00
|
|
|
break; case KeyMetaB: edit(id, EditPrevWord, 0);
|
2020-02-09 09:32:32 +00:00
|
|
|
break; case KeyMetaD: edit(id, EditDeleteNextWord, 0);
|
2020-02-09 09:20:07 +00:00
|
|
|
break; case KeyMetaF: edit(id, EditNextWord, 0);
|
2020-02-09 23:16:01 +00:00
|
|
|
break; case KeyMetaL: bufferList(&window->buffer);
|
2020-02-09 13:52:17 +00:00
|
|
|
break; case KeyMetaM: waddch(window->pad, '\n');
|
2020-02-09 17:13:51 +00:00
|
|
|
break; case KeyMetaU: windowScrollUnread(window);
|
2020-02-08 01:41:27 +00:00
|
|
|
|
2020-02-09 08:56:18 +00:00
|
|
|
break; case KEY_BACKSPACE: edit(id, EditDeletePrev, 0);
|
|
|
|
break; case KEY_DC: edit(id, EditDeleteNext, 0);
|
2020-02-09 16:50:56 +00:00
|
|
|
break; case KEY_DOWN: windowScroll(window, -1);
|
2020-02-09 08:56:18 +00:00
|
|
|
break; case KEY_END: edit(id, EditTail, 0);
|
2020-02-07 06:55:26 +00:00
|
|
|
break; case KEY_ENTER: edit(id, EditEnter, 0);
|
2020-02-09 08:56:18 +00:00
|
|
|
break; case KEY_HOME: edit(id, EditHead, 0);
|
|
|
|
break; case KEY_LEFT: edit(id, EditPrev, 0);
|
2020-02-09 16:50:56 +00:00
|
|
|
break; case KEY_NPAGE: windowScroll(window, -(PAGE_LINES - 2));
|
|
|
|
break; case KEY_PPAGE: windowScroll(window, +(PAGE_LINES - 2));
|
2020-02-09 08:56:18 +00:00
|
|
|
break; case KEY_RIGHT: edit(id, EditNext, 0);
|
2020-02-09 16:50:56 +00:00
|
|
|
break; case KEY_UP: windowScroll(window, +1);
|
2020-02-08 01:41:27 +00:00
|
|
|
|
2020-02-04 09:41:11 +00:00
|
|
|
break; default: {
|
2020-02-08 01:41:27 +00:00
|
|
|
if (code >= KeyMeta0 && code <= KeyMeta9) {
|
|
|
|
uiShowNum(code - KeyMeta0);
|
|
|
|
}
|
2020-02-04 09:41:11 +00:00
|
|
|
}
|
2020-02-04 08:58:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-05 01:56:27 +00:00
|
|
|
static void keyCtrl(wchar_t ch) {
|
2020-02-05 05:20:39 +00:00
|
|
|
size_t id = windows.active->id;
|
2020-02-07 07:46:40 +00:00
|
|
|
switch (ch ^ L'@') {
|
2020-02-09 08:56:18 +00:00
|
|
|
break; case L'?': edit(id, EditDeletePrev, 0);
|
|
|
|
break; case L'A': edit(id, EditHead, 0);
|
|
|
|
break; case L'B': edit(id, EditPrev, 0);
|
2020-02-11 02:09:32 +00:00
|
|
|
break; case L'C': raise(SIGINT);
|
2020-02-09 08:56:18 +00:00
|
|
|
break; case L'D': edit(id, EditDeleteNext, 0);
|
|
|
|
break; case L'E': edit(id, EditTail, 0);
|
|
|
|
break; case L'F': edit(id, EditNext, 0);
|
|
|
|
break; case L'H': edit(id, EditDeletePrev, 0);
|
2020-02-08 02:30:25 +00:00
|
|
|
break; case L'I': edit(id, EditComplete, 0);
|
2020-02-05 05:20:39 +00:00
|
|
|
break; case L'J': edit(id, EditEnter, 0);
|
2020-02-09 09:22:41 +00:00
|
|
|
break; case L'K': edit(id, EditDeleteTail, 0);
|
2020-02-05 01:56:27 +00:00
|
|
|
break; case L'L': clearok(curscr, true);
|
2020-02-09 12:46:30 +00:00
|
|
|
break; case L'N': windowShow(windows.active->next);
|
2020-02-11 01:29:19 +00:00
|
|
|
break; case L'O': windowShow(windows.other);
|
2020-02-09 12:46:30 +00:00
|
|
|
break; case L'P': windowShow(windows.active->prev);
|
2020-02-09 09:22:41 +00:00
|
|
|
break; case L'U': edit(id, EditDeleteHead, 0);
|
2020-02-09 09:32:32 +00:00
|
|
|
break; case L'W': edit(id, EditDeletePrevWord, 0);
|
2020-02-09 12:09:51 +00:00
|
|
|
break; case L'Y': edit(id, EditPaste, 0);
|
2020-02-04 08:58:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-07 07:46:40 +00:00
|
|
|
static void keyStyle(wchar_t ch) {
|
|
|
|
size_t id = windows.active->id;
|
2020-02-11 08:48:50 +00:00
|
|
|
switch (iswcntrl(ch) ? ch ^ L'@' : (wchar_t)towupper(ch)) {
|
2020-02-07 07:46:40 +00:00
|
|
|
break; case L'B': edit(id, EditInsert, B);
|
|
|
|
break; case L'C': edit(id, EditInsert, C);
|
|
|
|
break; case L'I': edit(id, EditInsert, I);
|
|
|
|
break; case L'O': edit(id, EditInsert, O);
|
|
|
|
break; case L'R': edit(id, EditInsert, R);
|
|
|
|
break; case L'U': edit(id, EditInsert, U);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-04 08:58:56 +00:00
|
|
|
void uiRead(void) {
|
2020-02-09 23:16:01 +00:00
|
|
|
if (hidden) {
|
|
|
|
if (waiting) {
|
|
|
|
uiShow();
|
|
|
|
flushinp();
|
|
|
|
waiting = false;
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-04 08:58:56 +00:00
|
|
|
int ret;
|
|
|
|
wint_t ch;
|
2020-02-08 01:41:27 +00:00
|
|
|
static bool style;
|
2020-02-04 08:58:56 +00:00
|
|
|
while (ERR != (ret = wget_wch(input, &ch))) {
|
|
|
|
if (ret == KEY_CODE_YES) {
|
|
|
|
keyCode(ch);
|
2020-02-07 07:46:40 +00:00
|
|
|
} else if (ch == (L'Z' ^ L'@')) {
|
|
|
|
style = true;
|
|
|
|
continue;
|
|
|
|
} else if (style) {
|
|
|
|
keyStyle(ch);
|
2020-02-05 01:56:27 +00:00
|
|
|
} else if (iswcntrl(ch)) {
|
2020-02-07 07:46:40 +00:00
|
|
|
keyCtrl(ch);
|
2020-02-04 08:58:56 +00:00
|
|
|
} else {
|
2020-02-05 05:20:39 +00:00
|
|
|
edit(windows.active->id, EditInsert, ch);
|
2020-02-04 08:58:56 +00:00
|
|
|
}
|
2020-02-08 01:41:27 +00:00
|
|
|
style = false;
|
2020-02-04 08:58:56 +00:00
|
|
|
}
|
2020-02-05 01:23:55 +00:00
|
|
|
inputUpdate();
|
2020-02-04 08:58:56 +00:00
|
|
|
}
|
2020-02-11 00:40:13 +00:00
|
|
|
|
2020-02-11 23:01:50 +00:00
|
|
|
static const time_t Signatures[] = {
|
2020-02-11 00:40:13 +00:00
|
|
|
0x6C72696774616301,
|
|
|
|
};
|
|
|
|
|
2020-02-11 23:01:50 +00:00
|
|
|
static size_t signatureVersion(time_t signature) {
|
2020-02-11 00:40:13 +00:00
|
|
|
for (size_t i = 0; i < ARRAY_LEN(Signatures); ++i) {
|
|
|
|
if (signature == Signatures[i]) return i;
|
|
|
|
}
|
2020-02-11 23:01:50 +00:00
|
|
|
err(EX_DATAERR, "unknown file signature %jX", (uintmax_t)signature);
|
2020-02-11 00:40:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int writeTime(FILE *file, time_t time) {
|
|
|
|
return (fwrite(&time, sizeof(time), 1, file) ? 0 : -1);
|
|
|
|
}
|
|
|
|
static int writeString(FILE *file, const char *str) {
|
|
|
|
return (fwrite(str, strlen(str) + 1, 1, file) ? 0 : -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
int uiSave(const char *name) {
|
|
|
|
FILE *file = dataOpen(name, "w");
|
|
|
|
if (!file) return -1;
|
|
|
|
|
2020-02-11 23:01:50 +00:00
|
|
|
if (writeTime(file, Signatures[0])) return -1;
|
2020-02-11 00:40:13 +00:00
|
|
|
const struct Window *window;
|
|
|
|
for (window = windows.head; window; window = window->next) {
|
|
|
|
if (writeString(file, idNames[window->id])) return -1;
|
|
|
|
for (size_t i = 0; i < BufferCap; ++i) {
|
|
|
|
time_t time = bufferTime(&window->buffer, i);
|
|
|
|
const char *line = bufferLine(&window->buffer, i);
|
|
|
|
if (!line) continue;
|
|
|
|
if (writeTime(file, time)) return -1;
|
|
|
|
if (writeString(file, line)) return -1;
|
|
|
|
}
|
|
|
|
if (writeTime(file, 0)) return -1;
|
|
|
|
}
|
|
|
|
return fclose(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
static time_t readTime(FILE *file) {
|
|
|
|
time_t time;
|
|
|
|
fread(&time, sizeof(time), 1, file);
|
|
|
|
if (ferror(file)) err(EX_IOERR, "fread");
|
|
|
|
if (feof(file)) errx(EX_DATAERR, "unexpected eof");
|
|
|
|
return time;
|
|
|
|
}
|
|
|
|
static ssize_t readString(FILE *file, char **buf, size_t *cap) {
|
|
|
|
ssize_t len = getdelim(buf, cap, '\0', file);
|
|
|
|
if (len < 0 && !feof(file)) err(EX_IOERR, "getdelim");
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
void uiLoad(const char *name) {
|
|
|
|
FILE *file = dataOpen(name, "r");
|
|
|
|
if (!file) {
|
|
|
|
if (errno != ENOENT) exit(EX_NOINPUT);
|
|
|
|
file = dataOpen(name, "w");
|
|
|
|
if (!file) exit(EX_CANTCREAT);
|
|
|
|
fclose(file);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-02-11 23:01:50 +00:00
|
|
|
time_t signature;
|
|
|
|
fread(&signature, sizeof(signature), 1, file);
|
|
|
|
if (ferror(file)) err(EX_IOERR, "fread");
|
|
|
|
if (feof(file)) {
|
|
|
|
fclose(file);
|
|
|
|
return;
|
|
|
|
}
|
2020-02-11 00:40:13 +00:00
|
|
|
signatureVersion(signature);
|
|
|
|
|
|
|
|
char *buf = NULL;
|
|
|
|
size_t cap = 0;
|
|
|
|
while (0 < readString(file, &buf, &cap)) {
|
|
|
|
struct Window *window = windowFor(idFor(buf));
|
|
|
|
for (;;) {
|
|
|
|
time_t time = readTime(file);
|
|
|
|
if (!time) break;
|
|
|
|
readString(file, &buf, &cap);
|
|
|
|
bufferPush(&window->buffer, time, buf);
|
|
|
|
}
|
|
|
|
reflow(window);
|
2020-02-11 00:44:35 +00:00
|
|
|
waddch(window->pad, '\n');
|
2020-02-11 00:40:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
free(buf);
|
|
|
|
fclose(file);
|
|
|
|
}
|