2018-08-04 17:35:29 +00:00
|
|
|
/* 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/>.
|
|
|
|
*/
|
|
|
|
|
2018-08-05 01:23:28 +00:00
|
|
|
#define SOURCE_URL "https://code.causal.agency/june/chat"
|
|
|
|
|
2018-08-06 18:19:52 +00:00
|
|
|
#include <stdarg.h>
|
2018-08-04 17:35:29 +00:00
|
|
|
#include <stdbool.h>
|
2018-08-08 20:59:26 +00:00
|
|
|
#include <stdio.h>
|
2018-08-04 17:35:29 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <wchar.h>
|
|
|
|
|
|
|
|
#define err(...) do { uiHide(); err(__VA_ARGS__); } while (0)
|
|
|
|
#define errx(...) do { uiHide(); errx(__VA_ARGS__); } while (0)
|
|
|
|
|
|
|
|
struct {
|
|
|
|
bool verbose;
|
|
|
|
char *nick;
|
|
|
|
char *user;
|
2018-08-10 04:01:35 +00:00
|
|
|
char *join;
|
2018-08-11 03:31:20 +00:00
|
|
|
} self;
|
2018-08-04 17:35:29 +00:00
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
void selfNick(const char *nick);
|
|
|
|
void selfUser(const char *user);
|
|
|
|
void selfJoin(const char *join);
|
2018-08-10 17:36:00 +00:00
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
struct Tag {
|
|
|
|
size_t id;
|
|
|
|
const char *name;
|
|
|
|
};
|
2018-08-04 17:35:29 +00:00
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
enum { TAGS_LEN = 256 };
|
2018-08-11 23:30:30 +00:00
|
|
|
const struct Tag TAG_NONE;
|
|
|
|
const struct Tag TAG_STATUS;
|
|
|
|
const struct Tag TAG_VERBOSE;
|
2018-08-13 03:55:12 +00:00
|
|
|
struct Tag tagFind(const char *name);
|
2018-08-11 03:31:20 +00:00
|
|
|
struct Tag tagFor(const char *name);
|
2018-08-04 17:35:29 +00:00
|
|
|
|
2018-08-11 23:30:30 +00:00
|
|
|
enum {
|
|
|
|
IRC_WHITE,
|
|
|
|
IRC_BLACK,
|
|
|
|
IRC_BLUE,
|
|
|
|
IRC_GREEN,
|
|
|
|
IRC_RED,
|
|
|
|
IRC_BROWN,
|
|
|
|
IRC_MAGENTA,
|
|
|
|
IRC_ORANGE,
|
|
|
|
IRC_YELLOW,
|
|
|
|
IRC_LIGHT_GREEN,
|
|
|
|
IRC_CYAN,
|
|
|
|
IRC_LIGHT_CYAN,
|
|
|
|
IRC_LIGHT_BLUE,
|
|
|
|
IRC_PINK,
|
|
|
|
IRC_GRAY,
|
|
|
|
IRC_LIGHT_GRAY,
|
|
|
|
};
|
2018-08-10 04:01:35 +00:00
|
|
|
enum {
|
|
|
|
IRC_BOLD = 002,
|
|
|
|
IRC_COLOR = 003,
|
|
|
|
IRC_REVERSE = 026,
|
|
|
|
IRC_RESET = 017,
|
|
|
|
IRC_ITALIC = 035,
|
|
|
|
IRC_UNDERLINE = 037,
|
|
|
|
};
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
void handle(char *line);
|
|
|
|
void input(struct Tag tag, char *line);
|
|
|
|
void inputTab(void);
|
|
|
|
|
|
|
|
int ircConnect(
|
|
|
|
const char *host, const char *port, const char *pass, const char *webPass
|
|
|
|
);
|
|
|
|
void ircRead(void);
|
|
|
|
void ircWrite(const char *ptr, size_t len);
|
|
|
|
void ircFmt(const char *format, ...) __attribute__((format(printf, 1, 2)));
|
|
|
|
|
2018-08-04 17:35:29 +00:00
|
|
|
void uiInit(void);
|
|
|
|
void uiHide(void);
|
2018-08-09 04:24:49 +00:00
|
|
|
void uiExit(void);
|
2018-08-04 17:35:29 +00:00
|
|
|
void uiDraw(void);
|
|
|
|
void uiRead(void);
|
2018-08-11 23:30:30 +00:00
|
|
|
void uiViewTag(struct Tag tag);
|
|
|
|
void uiViewNum(int num);
|
2018-08-13 17:49:03 +00:00
|
|
|
void uiCloseTag(struct Tag tag);
|
2018-08-11 03:31:20 +00:00
|
|
|
void uiTopic(struct Tag tag, const char *topic);
|
|
|
|
void uiLog(struct Tag tag, const wchar_t *line);
|
|
|
|
void uiFmt(struct Tag tag, const wchar_t *format, ...);
|
|
|
|
|
2018-08-11 19:49:39 +00:00
|
|
|
enum TermMode {
|
|
|
|
TERM_FOCUS,
|
|
|
|
TERM_PASTE,
|
|
|
|
};
|
|
|
|
enum TermEvent {
|
|
|
|
TERM_NONE,
|
|
|
|
TERM_FOCUS_IN,
|
|
|
|
TERM_FOCUS_OUT,
|
|
|
|
TERM_PASTE_START,
|
|
|
|
TERM_PASTE_END,
|
|
|
|
};
|
2018-08-14 02:54:02 +00:00
|
|
|
void termInit(void);
|
|
|
|
void termTitle(const char *title);
|
2018-08-11 19:49:39 +00:00
|
|
|
void termMode(enum TermMode mode, bool set);
|
|
|
|
enum TermEvent termEvent(char ch);
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
enum Edit {
|
|
|
|
EDIT_LEFT,
|
|
|
|
EDIT_RIGHT,
|
|
|
|
EDIT_HOME,
|
|
|
|
EDIT_END,
|
|
|
|
EDIT_BACK_WORD,
|
|
|
|
EDIT_FORE_WORD,
|
|
|
|
EDIT_INSERT,
|
|
|
|
EDIT_BACKSPACE,
|
|
|
|
EDIT_DELETE,
|
|
|
|
EDIT_KILL_BACK_WORD,
|
|
|
|
EDIT_KILL_FORE_WORD,
|
|
|
|
EDIT_KILL_LINE,
|
|
|
|
EDIT_COMPLETE,
|
|
|
|
EDIT_ENTER,
|
|
|
|
};
|
|
|
|
void edit(struct Tag tag, enum Edit op, wchar_t ch);
|
2018-08-08 20:59:26 +00:00
|
|
|
const wchar_t *editHead(void);
|
|
|
|
const wchar_t *editTail(void);
|
2018-08-09 04:24:49 +00:00
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
void tabTouch(struct Tag tag, const char *word);
|
|
|
|
void tabRemove(struct Tag tag, const char *word);
|
2018-08-11 23:30:30 +00:00
|
|
|
void tabReplace(struct Tag tag, const char *prev, const char *next);
|
2018-08-11 03:31:20 +00:00
|
|
|
void tabClear(struct Tag tag);
|
2018-08-11 23:30:30 +00:00
|
|
|
struct Tag tabTag(const char *word);
|
2018-08-11 03:31:20 +00:00
|
|
|
const char *tabNext(struct Tag tag, const char *prefix);
|
2018-08-08 02:40:05 +00:00
|
|
|
void tabAccept(void);
|
|
|
|
void tabReject(void);
|
2018-08-07 18:58:32 +00:00
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
void urlScan(struct Tag tag, const char *str);
|
|
|
|
void urlList(struct Tag tag);
|
2018-08-13 03:44:58 +00:00
|
|
|
void urlOpen(struct Tag tag, size_t at, size_t to);
|
2018-08-11 03:31:20 +00:00
|
|
|
|
|
|
|
void spawn(char *const argv[]);
|
|
|
|
|
2018-08-07 20:24:14 +00:00
|
|
|
wchar_t *ambstowcs(const char *src);
|
|
|
|
char *awcstombs(const wchar_t *src);
|
2018-08-06 18:19:52 +00:00
|
|
|
int vaswprintf(wchar_t **ret, const wchar_t *format, va_list ap);
|
2018-08-11 03:31:20 +00:00
|
|
|
|
|
|
|
// HACK: clang won't check wchar_t *format strings.
|
|
|
|
#ifdef NDEBUG
|
|
|
|
#define uiFmt(tag, format, ...) uiFmt(tag, L##format, __VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define uiFmt(tag, format, ...) do { \
|
|
|
|
snprintf(NULL, 0, format, __VA_ARGS__); \
|
|
|
|
uiFmt(tag, L##format, __VA_ARGS__); \
|
|
|
|
} while(0)
|
|
|
|
#endif
|