1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-06-18 15:07:47 +02:00
toxic/src/groupchat.c

257 lines
7.6 KiB
C
Raw Normal View History

2013-09-15 22:38:38 +02:00
/*
* Toxic -- Tox Curses Client
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include "toxic_windows.h"
2013-11-10 03:43:56 +01:00
#include "execute.h"
#include "misc_tools.h"
2013-09-15 22:38:38 +02:00
static GroupChat groupchats[MAX_GROUPCHAT_NUM];
static int group_chat_index = 0;
2013-09-17 12:03:08 +02:00
ToxWindow new_group_chat(Tox *m, ToxWindow *prompt, int groupnum);
2013-09-15 22:38:38 +02:00
extern char *DATA_FILE;
extern int store_data(Tox *m, char *path);
int get_num_groupchats(void)
{
int i;
2013-09-16 06:28:28 +02:00
for (i = 0; i <= group_chat_index; ++i) {
if (!groupchats[i].active)
return i;
2013-09-15 22:38:38 +02:00
}
2013-09-16 06:28:28 +02:00
return -1;
2013-09-15 22:38:38 +02:00
}
2013-09-17 12:03:08 +02:00
int init_groupchat_win(ToxWindow *prompt, Tox *m, int groupnum)
2013-09-15 22:38:38 +02:00
{
int i;
for (i = 0; i <= group_chat_index; ++i) {
if (!groupchats[i].active) {
2013-09-17 12:03:08 +02:00
groupchats[i].chatwin = add_window(m, new_group_chat(m, prompt, groupnum));
2013-09-15 22:38:38 +02:00
groupchats[i].active = true;
2013-09-17 12:03:08 +02:00
set_active_window(groupchats[i].chatwin);
2013-09-15 22:38:38 +02:00
if (i == group_chat_index)
++group_chat_index;
return 0;
}
}
return -1;
}
static void close_groupchatwin(Tox *m, int groupnum)
{
tox_del_groupchat(m, groupnum);
2013-11-17 21:45:26 +01:00
memset(&groupchats[groupnum], 0, sizeof(GroupChat));
2013-09-15 22:38:38 +02:00
int i;
for (i = group_chat_index; i > 0; --i) {
2013-09-17 12:05:31 +02:00
if (groupchats[i-1].active)
2013-09-15 22:38:38 +02:00
break;
}
group_chat_index = i;
}
static void print_groupchat_help(ChatContext *ctx)
{
wattron(ctx->history, COLOR_PAIR(CYAN) | A_BOLD);
wprintw(ctx->history, "Group chat commands:\n");
wattroff(ctx->history, A_BOLD);
wprintw(ctx->history, " /add <id> <message> : Add friend with optional message\n");
wprintw(ctx->history, " /status <type> <message> : Set your status with optional note\n");
wprintw(ctx->history, " /note <message> : Set a personal note\n");
wprintw(ctx->history, " /nick <nickname> : Set your nickname\n");
wprintw(ctx->history, " /groupchat : Create a group chat\n");
wprintw(ctx->history, " /myid : Print your ID\n");
wprintw(ctx->history, " /clear : Clear the screen\n");
wprintw(ctx->history, " /close : Close the current group chat\n");
wprintw(ctx->history, " /quit or /exit : Exit Toxic\n");
wprintw(ctx->history, " /help : Print this message again\n");
wattron(ctx->history, A_BOLD);
2013-09-24 22:18:22 +02:00
wprintw(ctx->history, "\n * Argument messages must be enclosed in quotation marks.\n");
wattroff(ctx->history, A_BOLD);
wattroff(ctx->history, COLOR_PAIR(CYAN));
}
2013-10-11 10:42:30 +02:00
static void groupchat_onGroupMessage(ToxWindow *self, Tox *m, int groupnum, int peernum,
uint8_t *msg, uint16_t len)
2013-09-15 22:38:38 +02:00
{
if (self->num != groupnum)
return;
ChatContext *ctx = (ChatContext *) self->chatwin;
2013-09-18 02:54:25 +02:00
uint8_t nick[TOX_MAX_NAME_LENGTH] = {'\0'};
tox_group_peername(m, groupnum, peernum, nick);
nick[TOXIC_MAX_NAME_LENGTH] = '\0'; /* enforce client max name length */
2013-09-15 22:38:38 +02:00
print_time(ctx->history);
2013-09-15 22:38:38 +02:00
wattron(ctx->history, COLOR_PAIR(4));
2013-09-18 02:54:25 +02:00
wprintw(ctx->history, "%s: ", nick);
2013-09-15 22:38:38 +02:00
wattroff(ctx->history, COLOR_PAIR(4));
2013-09-26 06:33:51 +02:00
if (msg[0] == '>') {
wattron(ctx->history, COLOR_PAIR(GREEN));
wprintw(ctx->history, "%s\n", msg);
wattroff(ctx->history, COLOR_PAIR(GREEN));
} else
wprintw(ctx->history, "%s\n", msg);
2013-09-15 22:38:38 +02:00
self->blink = true;
}
static void groupchat_onKey(ToxWindow *self, Tox *m, wint_t key)
{
ChatContext *ctx = (ChatContext *) self->chatwin;
int x, y, y2, x2;
getyx(self->window, y, x);
getmaxyx(self->window, y2, x2);
/* BACKSPACE key: Remove one character from line */
if (key == 0x107 || key == 0x8 || key == 0x7f) {
if (ctx->pos > 0) {
ctx->line[--ctx->pos] = L'\0';
if (x == 0)
mvwdelch(self->window, y - 1, x2 - 1);
else
mvwdelch(self->window, y, x - 1);
}
} else
2013-09-15 22:38:38 +02:00
/* Add printable chars to buffer and print on input space */
#if HAVE_WIDECHAR
if (iswprint(key)) {
#else
if (isprint(key)) {
#endif
if (ctx->pos < (MAX_STR_SIZE-1)) {
mvwaddstr(self->window, y, x, wc_to_char(key));
ctx->line[ctx->pos++] = key;
ctx->line[ctx->pos] = L'\0';
}
}
/* RETURN key: Execute command or print line */
else if (key == '\n') {
uint8_t *line = wcs_to_char(ctx->line);
wclear(ctx->linewin);
wmove(self->window, y2 - CURS_Y_OFFSET, 0);
wclrtobot(self->window);
bool close_win = false;
if (line[0] == '/') {
2013-09-23 07:22:21 +02:00
if (close_win = strncmp(line, "/close", strlen("/close")) == 0) {
2013-09-15 22:38:38 +02:00
set_active_window(0);
2013-09-17 12:03:08 +02:00
int groupnum = self->num;
2013-09-15 22:38:38 +02:00
delwin(ctx->linewin);
del_window(self);
2013-09-17 12:03:08 +02:00
close_groupchatwin(m, groupnum);
} else if (strncmp(line, "/help", strlen("/help")) == 0)
print_groupchat_help(ctx);
else
2013-11-12 08:41:55 +01:00
execute(ctx->history, self->prompt, m, self->num, line, GROUPCHAT_COMMAND_MODE);
2013-09-15 22:38:38 +02:00
} else {
/* make sure the string has at least non-space character */
if (!string_is_empty(line)) {
2013-09-17 12:03:08 +02:00
// uint8_t selfname[TOX_MAX_NAME_LENGTH];
// tox_getselfname(m, selfname, TOX_MAX_NAME_LENGTH);
2013-09-15 22:38:38 +02:00
// print_time(ctx->history);
2013-09-17 12:03:08 +02:00
// wattron(ctx->history, COLOR_PAIR(GREEN));
// wprintw(ctx->history, "%s: ", selfname);
// wattroff(ctx->history, COLOR_PAIR(GREEN));
// wprintw(ctx->history, "%s\n", line);
2013-09-15 22:38:38 +02:00
if (tox_group_message_send(m, self->num, line, strlen(line) + 1) == -1) {
wattron(ctx->history, COLOR_PAIR(RED));
wprintw(ctx->history, " * Failed to send message.\n");
wattroff(ctx->history, COLOR_PAIR(RED));
}
}
}
if (close_win)
free(ctx);
else {
ctx->line[0] = L'\0';
ctx->pos = 0;
}
free(line);
}
}
static void groupchat_onDraw(ToxWindow *self, Tox *m)
{
curs_set(1);
int x, y;
getmaxyx(self->window, y, x);
ChatContext *ctx = (ChatContext *) self->chatwin;
mvwhline(ctx->linewin, 0, 0, '_', x);
wrefresh(self->window);
}
static void groupchat_onInit(ToxWindow *self, Tox *m)
{
int x, y;
ChatContext *ctx = (ChatContext *) self->chatwin;
getmaxyx(self->window, y, x);
2013-09-17 12:03:08 +02:00
ctx->history = subwin(self->window, y-3, x, 0, 0);
2013-09-15 22:38:38 +02:00
scrollok(ctx->history, 1);
ctx->linewin = subwin(self->window, 2, x, y-4, 0);
print_groupchat_help(ctx);
2013-09-15 22:38:38 +02:00
wmove(self->window, y - CURS_Y_OFFSET, 0);
}
2013-09-17 12:03:08 +02:00
ToxWindow new_group_chat(Tox *m, ToxWindow *prompt, int groupnum)
2013-09-15 22:38:38 +02:00
{
ToxWindow ret;
memset(&ret, 0, sizeof(ret));
ret.onKey = &groupchat_onKey;
ret.onDraw = &groupchat_onDraw;
ret.onInit = &groupchat_onInit;
ret.onGroupMessage = &groupchat_onGroupMessage;
// ret.onNickChange = &groupchat_onNickChange;
// ret.onStatusChange = &groupchat_onStatusChange;
// ret.onAction = &groupchat_onAction;
snprintf(ret.name, sizeof(ret.name), "Room #%d", groupnum);
ChatContext *chatwin = calloc(1, sizeof(ChatContext));
if (chatwin != NULL)
ret.chatwin = chatwin;
else {
endwin();
fprintf(stderr, "calloc() failed. Aborting...\n");
exit(EXIT_FAILURE);
}
ret.prompt = prompt;
ret.num = groupnum;
return ret;
}