1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 16:27:45 +02:00
toxic/src/prompt.c

369 lines
11 KiB
C
Raw Normal View History

/*
2013-09-02 19:19:25 +02:00
* Toxic -- Tox Curses Client
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h>
#include <string.h>
#include "toxic_windows.h"
2013-08-13 00:50:43 +02:00
#include "prompt.h"
#include "commands.h"
#include "misc_tools.h"
2013-10-16 23:59:56 +02:00
uint8_t pending_frnd_requests[MAX_FRIENDS_NUM][TOX_CLIENT_ID_SIZE] = {0};
2013-09-15 22:38:38 +02:00
uint8_t num_frnd_requests = 0;
2013-09-22 10:32:51 +02:00
/* One group chat request slot for each friend; slot is
overwritten on subsequent requests by the same friend. */
2013-09-26 06:35:50 +02:00
uint8_t pending_grp_requests[MAX_FRIENDS_NUM][TOX_CLIENT_ID_SIZE] = {0};
2013-09-08 09:18:34 +02:00
static char prompt_buf[MAX_STR_SIZE] = {'\0'};
2013-08-07 00:27:51 +02:00
static int prompt_buf_pos = 0;
/* Updates own nick in prompt statusbar */
void prompt_update_nick(ToxWindow *prompt, uint8_t *nick, uint16_t len)
{
StatusBar *statusbar = (StatusBar *) prompt->stb;
snprintf(statusbar->nick, sizeof(statusbar->nick), "%s", nick);
statusbar->nick_len = len;
}
/* Updates own statusmessage in prompt statusbar */
void prompt_update_statusmessage(ToxWindow *prompt, uint8_t *statusmsg, uint16_t len)
{
StatusBar *statusbar = (StatusBar *) prompt->stb;
snprintf(statusbar->statusmsg, sizeof(statusbar->statusmsg), "%s", statusmsg);
statusbar->statusmsg_len = len;
}
/* Updates own status in prompt statusbar */
void prompt_update_status(ToxWindow *prompt, TOX_USERSTATUS status)
{
StatusBar *statusbar = (StatusBar *) prompt->stb;
statusbar->status = status;
}
2013-09-09 06:56:47 +02:00
/* Updates own connection status in prompt statusbar */
2013-09-07 03:37:16 +02:00
void prompt_update_connectionstatus(ToxWindow *prompt, bool is_connected)
{
StatusBar *statusbar = (StatusBar *) prompt->stb;
2013-09-07 03:37:16 +02:00
statusbar->is_online = is_connected;
}
2013-09-16 06:28:28 +02:00
/* Adds friend request to pending friend requests.
2013-10-16 23:59:56 +02:00
Returns request number on success, -1 if queue is full or other error. */
static int add_friend_request(uint8_t *public_key)
{
2013-09-16 06:28:28 +02:00
if (num_frnd_requests < MAX_FRIENDS_NUM) {
2013-10-16 23:59:56 +02:00
int i;
for (i = 0; i <= num_frnd_requests; ++i) {
if (!strlen(pending_frnd_requests[i])) {
memcpy(pending_frnd_requests[i], public_key, TOX_CLIENT_ID_SIZE);
if (i == num_frnd_requests)
++num_frnd_requests;
return i;
}
}
2013-09-16 06:28:28 +02:00
}
return -1;
}
2013-09-16 06:28:28 +02:00
/* Adds group chat invite to pending group chat requests.
2013-09-22 10:32:51 +02:00
Returns friend number on success, -1 if f_num is out of range. */
2013-10-16 23:59:56 +02:00
static int add_group_request(uint8_t *group_pub_key, int f_num)
2013-08-07 00:27:51 +02:00
{
2013-09-22 10:32:51 +02:00
if (f_num >= 0 && f_num < MAX_FRIENDS_NUM) {
2013-09-22 04:18:02 +02:00
memcpy(pending_grp_requests[f_num], group_pub_key, TOX_CLIENT_ID_SIZE);
return f_num;
2013-09-16 06:28:28 +02:00
}
return -1;
}
static void print_prompt_help(ToxWindow *self)
2013-09-15 22:38:38 +02:00
{
wclear(self->window);
wattron(self->window, COLOR_PAIR(CYAN) | A_BOLD);
wprintw(self->window, "\n\nCommands:\n");
wattroff(self->window, A_BOLD);
wprintw(self->window, " /add <id> <message> : Add friend with optional message\n");
wprintw(self->window, " /accept <n> : Accept friend request\n");
2013-09-28 01:55:11 +02:00
wprintw(self->window, " /connect <ip> <port> <key> : Manually connect to a DHT server\n");
wprintw(self->window, " /status <type> <message> : Set your status with optional note\n");
wprintw(self->window, " /note <message> : Set a personal note\n");
wprintw(self->window, " /nick <nickname> : Set your nickname\n");
wprintw(self->window, " /join <n> : Join a group chat\n");
wprintw(self->window, " /groupchat : Create a group chat\n");
wprintw(self->window, " /myid : Print your ID\n");
wprintw(self->window, " /quit or /exit : Exit Toxic\n");
wprintw(self->window, " /help : Print this message again\n");
wprintw(self->window, " /clear : Clear this window\n");
wattron(self->window, A_BOLD);
2013-09-24 22:18:22 +02:00
wprintw(self->window, " * Argument messages must be enclosed in quotation marks.\n");
wprintw(self->window, " * Use the TAB key to navigate through the tabs.\n");
wattroff(self->window, A_BOLD);
wattroff(self->window, COLOR_PAIR(CYAN));
}
2013-08-23 23:03:44 +02:00
static void prompt_onKey(ToxWindow *self, Tox *m, wint_t key)
2013-08-07 00:27:51 +02:00
{
2013-10-23 09:24:08 +02:00
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 (prompt_buf_pos != 0) {
prompt_buf[--prompt_buf_pos] = '\0';
if (x == 0)
mvwdelch(self->window, y - 1, x2 - 1);
else
mvwdelch(self->window, y, x - 1);
2013-08-16 19:11:09 +02:00
}
2013-10-23 09:24:08 +02:00
}
2013-08-16 19:11:09 +02:00
2013-10-23 09:24:08 +02:00
/* Add printable characters to line */
else if (isprint(key)) {
2013-10-25 06:55:27 +02:00
if (prompt_buf_pos < (MAX_STR_SIZE-1)) {
2013-10-23 09:24:08 +02:00
mvwaddch(self->window, y, x, key);
prompt_buf[prompt_buf_pos++] = key;
prompt_buf[prompt_buf_pos] = '\0';
}
}
2013-08-16 19:11:09 +02:00
/* RETURN key: execute command */
else if (key == '\n') {
wprintw(self->window, "\n");
if (!strncmp(prompt_buf, "/help", strlen("/help")))
print_prompt_help(self);
else
2013-10-20 07:27:45 +02:00
execute(self->window, self, m, prompt_buf);
2013-08-16 19:11:09 +02:00
prompt_buf_pos = 0;
2013-10-23 09:24:08 +02:00
prompt_buf[0] = '\0';
}
2013-08-16 19:11:09 +02:00
}
2013-08-23 23:03:44 +02:00
static void prompt_onDraw(ToxWindow *self, Tox *m)
2013-08-07 00:27:51 +02:00
{
2013-08-16 19:11:09 +02:00
curs_set(1);
2013-09-28 01:55:11 +02:00
int x, y, x2, y2;
getyx(self->window, y, x);
2013-09-28 01:55:11 +02:00
getmaxyx(self->window, y2, x2);
2013-08-16 19:11:09 +02:00
2013-10-23 09:24:08 +02:00
/* Someone please fix this disgusting hack */
2013-09-28 01:55:11 +02:00
size_t i;
2013-09-28 04:12:52 +02:00
for (i = 0; i < prompt_buf_pos; ++i) {
2013-10-23 09:24:08 +02:00
if ((prompt_buf_pos + 3) >= x2)
2013-08-16 19:11:09 +02:00
--y;
}
StatusBar *statusbar = (StatusBar *) self->stb;
werase(statusbar->topline);
2013-09-28 01:55:11 +02:00
mvwhline(statusbar->topline, 1, 0, '-', x2);
wmove(statusbar->topline, 0, 0);
2013-09-07 03:37:16 +02:00
if (statusbar->is_online) {
int colour = WHITE;
char *status_text = "Unknown";
switch(statusbar->status) {
case TOX_USERSTATUS_NONE:
status_text = "Online";
colour = GREEN;
break;
case TOX_USERSTATUS_AWAY:
status_text = "Away";
colour = YELLOW;
break;
case TOX_USERSTATUS_BUSY:
status_text = "Busy";
colour = RED;
break;
}
wattron(statusbar->topline, A_BOLD);
2013-09-09 06:56:47 +02:00
wprintw(statusbar->topline, " %s ", statusbar->nick);
wattron(statusbar->topline, A_BOLD);
wattron(statusbar->topline, COLOR_PAIR(colour) | A_BOLD);
wprintw(statusbar->topline, "[%s]", status_text);
wattroff(statusbar->topline, COLOR_PAIR(colour) | A_BOLD);
} else {
wattron(statusbar->topline, A_BOLD);
wprintw(statusbar->topline, "%s ", statusbar->nick);
wattroff(statusbar->topline, A_BOLD);
wprintw(statusbar->topline, "[Offline]");
}
2013-09-08 09:18:34 +02:00
wattron(statusbar->topline, A_BOLD);
2013-09-09 06:56:47 +02:00
wprintw(statusbar->topline, " | %s |", statusbar->statusmsg);
2013-09-08 09:18:34 +02:00
wattroff(statusbar->topline, A_BOLD);
wprintw(statusbar->topline, "\n");
wattron(self->window, COLOR_PAIR(GREEN));
2013-08-16 19:11:09 +02:00
mvwprintw(self->window, y, 0, "# ");
wattroff(self->window, COLOR_PAIR(GREEN));
2013-08-16 19:11:09 +02:00
mvwprintw(self->window, y, 2, "%s", prompt_buf);
wclrtoeol(self->window);
2013-08-16 19:11:09 +02:00
wrefresh(self->window);
}
2013-08-23 23:03:44 +02:00
static void prompt_onInit(ToxWindow *self, Tox *m)
2013-08-07 00:27:51 +02:00
{
2013-09-28 01:55:11 +02:00
scrollok(self->window, true);
print_prompt_help(self);
2013-08-16 19:11:09 +02:00
wclrtoeol(self->window);
}
2013-09-23 07:22:21 +02:00
static void prompt_onConnectionChange(ToxWindow *self, Tox *m, int friendnum , uint8_t status)
{
if (friendnum < 0)
return;
uint8_t nick[TOX_MAX_NAME_LENGTH] = {'\0'};
if (tox_getname(m, friendnum, nick) == -1)
return;
if (!nick[0])
snprintf(nick, sizeof(nick), "%s", UNKNOWN_NAME);
if (status == 1) {
wattron(self->window, COLOR_PAIR(GREEN));
wattron(self->window, A_BOLD);
wprintw(self->window, "\n%s ", nick);
wattroff(self->window, A_BOLD);
wprintw(self->window, "has come online\n");
wattroff(self->window, COLOR_PAIR(GREEN));
} else {
wattron(self->window, COLOR_PAIR(RED));
wattron(self->window, A_BOLD);
wprintw(self->window, "\n%s ", nick);
wattroff(self->window, A_BOLD);
wprintw(self->window, "has gone offline\n");
wattroff(self->window, COLOR_PAIR(RED));
}
}
static void prompt_onFriendRequest(ToxWindow *self, uint8_t *key, uint8_t *data, uint16_t length)
2013-09-15 22:38:38 +02:00
{
wprintw(self->window, "\nFriend request from:\n");
int i;
for (i = 0; i < KEY_SIZE_BYTES; ++i) {
wprintw(self->window, "%02x", key[i] & 0xff);
}
wprintw(self->window, "\n\nWith the message: %s\n\n", data);
2013-10-16 23:59:56 +02:00
int n = add_friend_request(key);
2013-09-15 22:38:38 +02:00
2013-09-22 10:32:51 +02:00
if (n == -1) {
wprintw(self->window, "Friend request queue is full. Discarding request.\n");
return;
}
wprintw(self->window, "Type \"/accept %d\" to accept it.\n", n);
2013-09-15 22:38:38 +02:00
self->blink = true;
beep();
}
static void prompt_onGroupInvite(ToxWindow *self, Tox *m, int friendnumber, uint8_t *group_pub_key)
2013-09-15 22:38:38 +02:00
{
if (friendnumber < 0)
return;
uint8_t name[TOX_MAX_NAME_LENGTH] = {'\0'};
if (tox_getname(m, friendnumber, name) == -1)
return;
wprintw(self->window, "\nGroup chat invite from %s.\n", name);
2013-09-16 06:28:28 +02:00
2013-09-15 22:38:38 +02:00
int ngc = get_num_groupchats();
2013-09-16 06:28:28 +02:00
if (ngc < 0 || ngc > MAX_GROUPCHAT_NUM) {
2013-09-15 22:38:38 +02:00
wprintw(self->window, "\nMaximum number of group chats has been reached. Discarding invite.\n");
return;
}
2013-10-16 23:59:56 +02:00
int n = add_group_request(group_pub_key, friendnumber);
2013-09-15 22:38:38 +02:00
2013-09-16 06:28:28 +02:00
if (n == -1) {
2013-09-23 02:25:48 +02:00
wprintw(self->window, "\nSomething bad happened.\n");
2013-09-16 06:28:28 +02:00
return;
}
wprintw(self->window, "Type \"/join %d\" to join the chat.\n", n);
2013-09-15 22:38:38 +02:00
self->blink = true;
beep();
}
void prompt_init_statusbar(ToxWindow *self, Tox *m)
{
int x, y;
getmaxyx(self->window, y, x);
/* Init statusbar info */
StatusBar *statusbar = (StatusBar *) self->stb;
statusbar->status = TOX_USERSTATUS_NONE;
2013-09-07 03:39:22 +02:00
statusbar->is_online = false;
uint8_t nick[TOX_MAX_NAME_LENGTH] = {'\0'};
2013-09-08 09:18:34 +02:00
tox_getselfname(m, nick, TOX_MAX_NAME_LENGTH);
snprintf(statusbar->nick, sizeof(statusbar->nick), "%s", nick);
2013-09-08 09:18:34 +02:00
/* temporary until statusmessage saving works */
2013-10-11 06:32:00 +02:00
uint8_t *statusmsg = "Toxing on Toxic v.0.2.2";
2013-09-09 06:56:47 +02:00
m_set_statusmessage(m, statusmsg, strlen(statusmsg) + 1);
2013-09-08 09:18:34 +02:00
snprintf(statusbar->statusmsg, sizeof(statusbar->statusmsg), "%s", statusmsg);
/* Init statusbar subwindow */
statusbar->topline = subwin(self->window, 2, x, 0, 0);
}
ToxWindow new_prompt(void)
2013-08-07 00:27:51 +02:00
{
2013-08-16 19:11:09 +02:00
ToxWindow ret;
memset(&ret, 0, sizeof(ret));
2013-09-15 22:38:38 +02:00
2013-08-16 19:11:09 +02:00
ret.onKey = &prompt_onKey;
ret.onDraw = &prompt_onDraw;
ret.onInit = &prompt_onInit;
2013-09-23 07:22:21 +02:00
ret.onConnectionChange = &prompt_onConnectionChange;
ret.onFriendRequest = &prompt_onFriendRequest;
2013-09-15 22:38:38 +02:00
ret.onGroupInvite = &prompt_onGroupInvite;
strcpy(ret.name, "prompt");
StatusBar *stb = calloc(1, sizeof(StatusBar));
2013-09-12 00:07:26 +02:00
if (stb != NULL)
ret.stb = stb;
2013-09-12 00:07:26 +02:00
else {
endwin();
2013-09-12 07:33:41 +02:00
fprintf(stderr, "calloc() failed. Aborting...\n");
2013-09-12 00:07:26 +02:00
exit(EXIT_FAILURE);
}
2013-08-16 19:11:09 +02:00
return ret;
}