mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-23 01:43:01 +01:00
Merge pull request #29 from JFreegman/master
Added status bar to prompt, made it beep/blink on friend request, and bug fixes
This commit is contained in:
commit
5b2e7bb7d2
37
src/chat.c
37
src/chat.c
@ -30,14 +30,6 @@ typedef struct {
|
|||||||
WINDOW *linewin;
|
WINDOW *linewin;
|
||||||
} ChatContext;
|
} ChatContext;
|
||||||
|
|
||||||
typedef struct {
|
|
||||||
WINDOW *topline;
|
|
||||||
uint8_t statusmsg[TOX_MAX_STATUSMESSAGE_LENGTH];
|
|
||||||
TOX_USERSTATUS status;
|
|
||||||
bool is_online;
|
|
||||||
int max_len; /* set equal to the window's max x coordinate */
|
|
||||||
} StatusBar;
|
|
||||||
|
|
||||||
void print_help(ChatContext *self);
|
void print_help(ChatContext *self);
|
||||||
void execute(ToxWindow *self, ChatContext *ctx, Tox *m, char *cmd);
|
void execute(ToxWindow *self, ChatContext *ctx, Tox *m, char *cmd);
|
||||||
|
|
||||||
@ -238,7 +230,7 @@ static void chat_onKey(ToxWindow *self, Tox *m, wint_t key)
|
|||||||
/* make sure the string has at least non-space character */
|
/* make sure the string has at least non-space character */
|
||||||
if (!string_is_empty(line)) {
|
if (!string_is_empty(line)) {
|
||||||
uint8_t selfname[TOX_MAX_NAME_LENGTH];
|
uint8_t selfname[TOX_MAX_NAME_LENGTH];
|
||||||
tox_getselfname(m, selfname, sizeof(selfname));
|
tox_getselfname(m, selfname, TOX_MAX_NAME_LENGTH);
|
||||||
|
|
||||||
wattron(ctx->history, COLOR_PAIR(CYAN));
|
wattron(ctx->history, COLOR_PAIR(CYAN));
|
||||||
wprintw(ctx->history, "[%02d:%02d:%02d] ", timeinfo->tm_hour, timeinfo->tm_min, timeinfo->tm_sec);
|
wprintw(ctx->history, "[%02d:%02d:%02d] ", timeinfo->tm_hour, timeinfo->tm_min, timeinfo->tm_sec);
|
||||||
@ -321,8 +313,7 @@ void execute(ToxWindow *self, ChatContext *ctx, Tox *m, char *cmd)
|
|||||||
|
|
||||||
else if (!strncmp(cmd, "/status ", strlen("/status "))) {
|
else if (!strncmp(cmd, "/status ", strlen("/status "))) {
|
||||||
char *status = strchr(cmd, ' ');
|
char *status = strchr(cmd, ' ');
|
||||||
char *msg;
|
uint8_t *msg;
|
||||||
char *status_text;
|
|
||||||
|
|
||||||
if (status == NULL) {
|
if (status == NULL) {
|
||||||
wprintw(ctx->history, "Invalid syntax.\n");
|
wprintw(ctx->history, "Invalid syntax.\n");
|
||||||
@ -362,24 +353,27 @@ void execute(ToxWindow *self, ChatContext *ctx, Tox *m, char *cmd)
|
|||||||
}
|
}
|
||||||
|
|
||||||
tox_set_userstatus(m, status_kind);
|
tox_set_userstatus(m, status_kind);
|
||||||
|
prompt_update_status(self->prompt, status_kind);
|
||||||
|
|
||||||
msg = strchr(status, ' ');
|
msg = strchr(status, ' ');
|
||||||
if (msg != NULL) {
|
if (msg != NULL) {
|
||||||
msg++;
|
msg++;
|
||||||
tox_set_statusmessage(m, ( uint8_t *) msg, strlen(msg) + 1);
|
tox_set_statusmessage(m, msg, strlen(msg) + 1);
|
||||||
|
prompt_update_statusmessage(self->prompt, msg);
|
||||||
wprintw(ctx->history, "Personal note set to: %s\n", msg);
|
wprintw(ctx->history, "Personal note set to: %s\n", msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (!strncmp(cmd, "/note ", strlen("/note "))) {
|
else if (!strncmp(cmd, "/note ", strlen("/note "))) {
|
||||||
char *msg = strchr(cmd, ' ');
|
uint8_t *msg = strchr(cmd, ' ');
|
||||||
msg++;
|
msg++;
|
||||||
|
tox_set_statusmessage(m, msg, strlen(msg) + 1);
|
||||||
|
prompt_update_statusmessage(self->prompt, msg);
|
||||||
wprintw(ctx->history, "Personal note set to: %s\n", msg);
|
wprintw(ctx->history, "Personal note set to: %s\n", msg);
|
||||||
tox_set_statusmessage(m, ( uint8_t *) msg, strlen(msg) + 1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
else if (!strncmp(cmd, "/nick ", strlen("/nick "))) {
|
else if (!strncmp(cmd, "/nick ", strlen("/nick "))) {
|
||||||
char *nick;
|
uint8_t *nick;
|
||||||
nick = strchr(cmd, ' ');
|
nick = strchr(cmd, ' ');
|
||||||
|
|
||||||
if (nick == NULL) {
|
if (nick == NULL) {
|
||||||
@ -388,7 +382,8 @@ void execute(ToxWindow *self, ChatContext *ctx, Tox *m, char *cmd)
|
|||||||
}
|
}
|
||||||
|
|
||||||
nick++;
|
nick++;
|
||||||
tox_setname(m, (uint8_t *) nick, strlen(nick) + 1);
|
tox_setname(m, nick, strlen(nick) + 1);
|
||||||
|
prompt_update_nick(self->prompt, nick);
|
||||||
wprintw(ctx->history, "Nickname set to: %s\n", nick);
|
wprintw(ctx->history, "Nickname set to: %s\n", nick);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -444,6 +439,7 @@ static void chat_onDraw(ToxWindow *self, Tox *m)
|
|||||||
colour = RED;
|
colour = RED;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
wattron(statusbar->topline, A_BOLD);
|
wattron(statusbar->topline, A_BOLD);
|
||||||
wprintw(statusbar->topline, " %s ", self->name);
|
wprintw(statusbar->topline, " %s ", self->name);
|
||||||
wattroff(statusbar->topline, A_BOLD);
|
wattroff(statusbar->topline, A_BOLD);
|
||||||
@ -458,8 +454,11 @@ static void chat_onDraw(ToxWindow *self, Tox *m)
|
|||||||
wprintw(statusbar->topline, "[Offline]");
|
wprintw(statusbar->topline, "[Offline]");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (statusbar->statusmsg[0])
|
if (statusbar->statusmsg[0]) {
|
||||||
|
wattron(statusbar->topline, A_BOLD);
|
||||||
wprintw(statusbar->topline, " | %s", statusbar->statusmsg);
|
wprintw(statusbar->topline, " | %s", statusbar->statusmsg);
|
||||||
|
wattroff(statusbar->topline, A_BOLD);
|
||||||
|
}
|
||||||
|
|
||||||
wprintw(statusbar->topline, "\n");
|
wprintw(statusbar->topline, "\n");
|
||||||
|
|
||||||
@ -514,7 +513,7 @@ void print_help(ChatContext *self)
|
|||||||
wattroff(self->history, COLOR_PAIR(CYAN));
|
wattroff(self->history, COLOR_PAIR(CYAN));
|
||||||
}
|
}
|
||||||
|
|
||||||
ToxWindow new_chat(Tox *m, int friendnum)
|
ToxWindow new_chat(Tox *m, ToxWindow *prompt, int friendnum)
|
||||||
{
|
{
|
||||||
ToxWindow ret;
|
ToxWindow ret;
|
||||||
memset(&ret, 0, sizeof(ret));
|
memset(&ret, 0, sizeof(ret));
|
||||||
@ -537,6 +536,8 @@ ToxWindow new_chat(Tox *m, int friendnum)
|
|||||||
StatusBar *s = calloc(1, sizeof(StatusBar));
|
StatusBar *s = calloc(1, sizeof(StatusBar));
|
||||||
ret.x = x;
|
ret.x = x;
|
||||||
ret.s = s;
|
ret.s = s;
|
||||||
|
|
||||||
|
ret.prompt = prompt;
|
||||||
ret.friendnum = friendnum;
|
ret.friendnum = friendnum;
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#ifndef CHAT_H_6489PZ13
|
#ifndef CHAT_H_6489PZ13
|
||||||
#define CHAT_H_6489PZ13
|
#define CHAT_H_6489PZ13
|
||||||
|
|
||||||
ToxWindow new_chat(Tox *m, int friendnum);
|
ToxWindow new_chat(Tox *m, ToxWindow *prompt, int friendnum);
|
||||||
|
|
||||||
#endif /* end of include guard: CHAT_H_6489PZ13 */
|
#endif /* end of include guard: CHAT_H_6489PZ13 */
|
||||||
|
@ -19,6 +19,8 @@
|
|||||||
extern char *DATA_FILE;
|
extern char *DATA_FILE;
|
||||||
extern int store_data(Tox *m, char *path);
|
extern int store_data(Tox *m, char *path);
|
||||||
|
|
||||||
|
extern ToxWindow *prompt;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint8_t name[TOX_MAX_NAME_LENGTH];
|
uint8_t name[TOX_MAX_NAME_LENGTH];
|
||||||
uint8_t statusmsg[TOX_MAX_STATUSMESSAGE_LENGTH];
|
uint8_t statusmsg[TOX_MAX_STATUSMESSAGE_LENGTH];
|
||||||
@ -40,7 +42,7 @@ void friendlist_onMessage(ToxWindow *self, Tox *m, int num, uint8_t *str, uint16
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if (friends[num].chatwin == -1)
|
if (friends[num].chatwin == -1)
|
||||||
friends[num].chatwin = add_window(m, new_chat(m, friends[num].num));
|
friends[num].chatwin = add_window(m, new_chat(m, prompt, friends[num].num));
|
||||||
}
|
}
|
||||||
|
|
||||||
void friendlist_onConnectionChange(ToxWindow *self, Tox *m, int num, uint8_t status)
|
void friendlist_onConnectionChange(ToxWindow *self, Tox *m, int num, uint8_t status)
|
||||||
@ -76,8 +78,9 @@ void friendlist_onStatusMessageChange(ToxWindow *self, int num, uint8_t *str, ui
|
|||||||
if (len >= TOX_MAX_STATUSMESSAGE_LENGTH || num < 0 || num >= num_friends)
|
if (len >= TOX_MAX_STATUSMESSAGE_LENGTH || num < 0 || num >= num_friends)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
memcpy((char *) &friends[num].statusmsg, (char *) str, len);
|
/* Ignore default "Online" status message */
|
||||||
friends[num].statusmsg[len] = 0;
|
if (strncmp(str, "Online", strlen(str)))
|
||||||
|
memcpy((char *) &friends[num].statusmsg, (char *) str, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
int friendlist_onFriendAdded(Tox *m, int num)
|
int friendlist_onFriendAdded(Tox *m, int num)
|
||||||
@ -166,7 +169,7 @@ static void friendlist_onKey(ToxWindow *self, Tox *m, wint_t key)
|
|||||||
if (friends[num_selected].chatwin != -1) {
|
if (friends[num_selected].chatwin != -1) {
|
||||||
set_active_window(friends[num_selected].chatwin);
|
set_active_window(friends[num_selected].chatwin);
|
||||||
} else {
|
} else {
|
||||||
friends[num_selected].chatwin = add_window(m, new_chat(m, friends[num_selected].num));
|
friends[num_selected].chatwin = add_window(m, new_chat(m, prompt, friends[num_selected].num));
|
||||||
set_active_window(friends[num_selected].chatwin);
|
set_active_window(friends[num_selected].chatwin);
|
||||||
}
|
}
|
||||||
} else if (key == 0x107 || key == 0x8 || key == 0x7f)
|
} else if (key == 0x107 || key == 0x8 || key == 0x7f)
|
||||||
|
@ -44,6 +44,7 @@
|
|||||||
/* Export for use in Callbacks */
|
/* Export for use in Callbacks */
|
||||||
char *DATA_FILE = NULL;
|
char *DATA_FILE = NULL;
|
||||||
char *SRVLIST_FILE = NULL;
|
char *SRVLIST_FILE = NULL;
|
||||||
|
ToxWindow *prompt = NULL;
|
||||||
|
|
||||||
void on_window_resize(int sig)
|
void on_window_resize(int sig)
|
||||||
{
|
{
|
||||||
@ -237,9 +238,11 @@ static void do_tox(Tox *m, ToxWindow *prompt)
|
|||||||
}
|
}
|
||||||
} else if (!dht_on && tox_isconnected(m)) {
|
} else if (!dht_on && tox_isconnected(m)) {
|
||||||
dht_on = true;
|
dht_on = true;
|
||||||
|
prompt_update_connectionstatus(prompt, dht_on);
|
||||||
wprintw(prompt->window, "\nDHT connected.\n");
|
wprintw(prompt->window, "\nDHT connected.\n");
|
||||||
} else if (dht_on && !tox_isconnected(m)) {
|
} else if (dht_on && !tox_isconnected(m)) {
|
||||||
dht_on = false;
|
dht_on = false;
|
||||||
|
prompt_update_connectionstatus(prompt, dht_on);
|
||||||
wprintw(prompt->window, "\nDHT disconnected. Attempting to reconnect.\n");
|
wprintw(prompt->window, "\nDHT disconnected. Attempting to reconnect.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -392,7 +395,7 @@ int main(int argc, char *argv[])
|
|||||||
|
|
||||||
init_term();
|
init_term();
|
||||||
Tox *m = init_tox();
|
Tox *m = init_tox();
|
||||||
ToxWindow *prompt = init_windows(m);
|
prompt = init_windows(m);
|
||||||
|
|
||||||
if (f_loadfromfile)
|
if (f_loadfromfile)
|
||||||
load_data(m, DATA_FILE);
|
load_data(m, DATA_FILE);
|
||||||
@ -411,6 +414,8 @@ int main(int argc, char *argv[])
|
|||||||
attroff(COLOR_PAIR(RED) | A_BOLD);
|
attroff(COLOR_PAIR(RED) | A_BOLD);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
prompt_init_statusbar(prompt, m);
|
||||||
|
|
||||||
while (true) {
|
while (true) {
|
||||||
/* Update tox */
|
/* Update tox */
|
||||||
do_tox(m, prompt);
|
do_tox(m, prompt);
|
||||||
|
253
src/prompt.c
253
src/prompt.c
@ -10,6 +10,7 @@
|
|||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
|
#include "toxic_windows.h"
|
||||||
#include "prompt.h"
|
#include "prompt.h"
|
||||||
|
|
||||||
extern char *DATA_FILE;
|
extern char *DATA_FILE;
|
||||||
@ -30,12 +31,11 @@ void cmd_help(ToxWindow *, Tox *m, int, char **);
|
|||||||
void cmd_msg(ToxWindow *, Tox *m, int, char **);
|
void cmd_msg(ToxWindow *, Tox *m, int, char **);
|
||||||
void cmd_myid(ToxWindow *, Tox *m, int, char **);
|
void cmd_myid(ToxWindow *, Tox *m, int, char **);
|
||||||
void cmd_nick(ToxWindow *, Tox *m, int, char **);
|
void cmd_nick(ToxWindow *, Tox *m, int, char **);
|
||||||
void cmd_mynick(ToxWindow *, Tox *m, int, char **);
|
|
||||||
void cmd_quit(ToxWindow *, Tox *m, int, char **);
|
void cmd_quit(ToxWindow *, Tox *m, int, char **);
|
||||||
void cmd_status(ToxWindow *, Tox *m, int, char **);
|
void cmd_status(ToxWindow *, Tox *m, int, char **);
|
||||||
void cmd_note(ToxWindow *, Tox *m, int, char **);
|
void cmd_note(ToxWindow *, Tox *m, int, char **);
|
||||||
|
|
||||||
#define NUM_COMMANDS 14
|
#define NUM_COMMANDS 13
|
||||||
|
|
||||||
static struct {
|
static struct {
|
||||||
char *name;
|
char *name;
|
||||||
@ -50,13 +50,58 @@ static struct {
|
|||||||
{ "msg", cmd_msg },
|
{ "msg", cmd_msg },
|
||||||
{ "myid", cmd_myid },
|
{ "myid", cmd_myid },
|
||||||
{ "nick", cmd_nick },
|
{ "nick", cmd_nick },
|
||||||
{ "mynick", cmd_mynick },
|
|
||||||
{ "q", cmd_quit },
|
{ "q", cmd_quit },
|
||||||
{ "quit", cmd_quit },
|
{ "quit", cmd_quit },
|
||||||
{ "status", cmd_status },
|
{ "status", cmd_status },
|
||||||
{ "note", cmd_note },
|
{ "note", cmd_note },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Updates own nick in prompt statusbar */
|
||||||
|
void prompt_update_nick(ToxWindow *prompt, uint8_t *nick)
|
||||||
|
{
|
||||||
|
StatusBar *statusbar = (StatusBar *) prompt->s;
|
||||||
|
snprintf(statusbar->nick, sizeof(statusbar->nick), "%s", nick);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Updates own statusmessage in prompt statusbar */
|
||||||
|
void prompt_update_statusmessage(ToxWindow *prompt, uint8_t *statusmsg)
|
||||||
|
{
|
||||||
|
StatusBar *statusbar = (StatusBar *) prompt->s;
|
||||||
|
snprintf(statusbar->statusmsg, sizeof(statusbar->statusmsg), "%s", statusmsg);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Updates own status in prompt statusbar */
|
||||||
|
void prompt_update_status(ToxWindow *prompt, TOX_USERSTATUS status)
|
||||||
|
{
|
||||||
|
StatusBar *statusbar = (StatusBar *) prompt->s;
|
||||||
|
statusbar->status = status;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Updates own connection status */
|
||||||
|
void prompt_update_connectionstatus(ToxWindow *prompt, bool is_connected)
|
||||||
|
{
|
||||||
|
StatusBar *statusbar = (StatusBar *) prompt->s;
|
||||||
|
statusbar->is_online = is_connected;
|
||||||
|
}
|
||||||
|
|
||||||
|
void prompt_onFriendRequest(ToxWindow *prompt, uint8_t *key, uint8_t *data, uint16_t length)
|
||||||
|
{
|
||||||
|
int n = add_req(key);
|
||||||
|
wprintw(prompt->window, "\nFriend request from:\n");
|
||||||
|
|
||||||
|
int i;
|
||||||
|
|
||||||
|
for (i = 0; i < KEY_SIZE_BYTES; ++i) {
|
||||||
|
wprintw(prompt->window, "%02x", key[i] & 0xff);
|
||||||
|
}
|
||||||
|
|
||||||
|
wprintw(prompt->window, "\n\nWith the message: %s\n\n", data);
|
||||||
|
wprintw(prompt->window, "Type \"accept %d\" to accept it.\n", n);
|
||||||
|
|
||||||
|
prompt->blink = true;
|
||||||
|
beep();
|
||||||
|
}
|
||||||
|
|
||||||
// XXX:
|
// XXX:
|
||||||
int add_req(uint8_t *public_key)
|
int add_req(uint8_t *public_key)
|
||||||
{
|
{
|
||||||
@ -109,7 +154,7 @@ void cmd_accept(ToxWindow *self, Tox *m, int argc, char **argv)
|
|||||||
|
|
||||||
void cmd_add(ToxWindow *self, Tox *m, int argc, char **argv)
|
void cmd_add(ToxWindow *self, Tox *m, int argc, char **argv)
|
||||||
{
|
{
|
||||||
if (argc != 1 && argc != 2) {
|
if (argc < 1 || argc > 2) {
|
||||||
wprintw(self->window, "Invalid syntax.\n");
|
wprintw(self->window, "Invalid syntax.\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -117,22 +162,33 @@ void cmd_add(ToxWindow *self, Tox *m, int argc, char **argv)
|
|||||||
uint8_t id_bin[TOX_FRIEND_ADDRESS_SIZE];
|
uint8_t id_bin[TOX_FRIEND_ADDRESS_SIZE];
|
||||||
char xx[3];
|
char xx[3];
|
||||||
uint32_t x;
|
uint32_t x;
|
||||||
char *id;
|
uint8_t *msg;
|
||||||
char *msg;
|
|
||||||
int i, num;
|
int i, num;
|
||||||
|
|
||||||
id = argv[1];
|
char *id = argv[1];
|
||||||
|
|
||||||
|
if (id == NULL) {
|
||||||
|
wprintw(self->window, "Invalid syntax.\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (argc == 2) {
|
if (argc == 2) {
|
||||||
if (argv[2][0] != '\"') {
|
msg = argv[2];
|
||||||
|
|
||||||
|
if (msg == NULL) {
|
||||||
|
wprintw(self->window, "Invalid syntax.\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (msg[0] != '\"') {
|
||||||
wprintw(self->window, "Messages must be enclosed in quotes.\n");
|
wprintw(self->window, "Messages must be enclosed in quotes.\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
msg = argv[2];
|
|
||||||
msg[strlen(++msg)-1] = L'\0';
|
msg[strlen(++msg)-1] = L'\0';
|
||||||
|
|
||||||
} else
|
} else
|
||||||
msg = "";
|
msg = "Let's tox.";
|
||||||
|
|
||||||
if (strlen(id) != 2 * TOX_FRIEND_ADDRESS_SIZE) {
|
if (strlen(id) != 2 * TOX_FRIEND_ADDRESS_SIZE) {
|
||||||
wprintw(self->window, "Invalid ID length.\n");
|
wprintw(self->window, "Invalid ID length.\n");
|
||||||
@ -156,7 +212,7 @@ void cmd_add(ToxWindow *self, Tox *m, int argc, char **argv)
|
|||||||
id[i] = toupper(id[i]);
|
id[i] = toupper(id[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
num = tox_addfriend(m, id_bin, (uint8_t *) msg, strlen(msg) + 1);
|
num = tox_addfriend(m, id_bin, msg, strlen(msg) + 1);
|
||||||
|
|
||||||
switch (num) {
|
switch (num) {
|
||||||
case TOX_FAERR_TOOLONG:
|
case TOX_FAERR_TOOLONG:
|
||||||
@ -197,6 +253,7 @@ void cmd_add(ToxWindow *self, Tox *m, int argc, char **argv)
|
|||||||
void cmd_clear(ToxWindow *self, Tox *m, int argc, char **argv)
|
void cmd_clear(ToxWindow *self, Tox *m, int argc, char **argv)
|
||||||
{
|
{
|
||||||
wclear(self->window);
|
wclear(self->window);
|
||||||
|
wprintw(self->window, "\n\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
void cmd_connect(ToxWindow *self, Tox *m, int argc, char **argv)
|
void cmd_connect(ToxWindow *self, Tox *m, int argc, char **argv)
|
||||||
@ -244,7 +301,7 @@ void cmd_help(ToxWindow *self, Tox *m, int argc, char **argv)
|
|||||||
{
|
{
|
||||||
wclear(self->window);
|
wclear(self->window);
|
||||||
wattron(self->window, COLOR_PAIR(CYAN) | A_BOLD);
|
wattron(self->window, COLOR_PAIR(CYAN) | A_BOLD);
|
||||||
wprintw(self->window, "Commands:\n");
|
wprintw(self->window, "\n\nCommands:\n");
|
||||||
wattroff(self->window, A_BOLD);
|
wattroff(self->window, A_BOLD);
|
||||||
|
|
||||||
wprintw(self->window, " connect <ip> <port> <key> : Connect to DHT server\n");
|
wprintw(self->window, " connect <ip> <port> <key> : Connect to DHT server\n");
|
||||||
@ -252,7 +309,6 @@ void cmd_help(ToxWindow *self, Tox *m, int argc, char **argv)
|
|||||||
wprintw(self->window, " status <type> <message> : Set your status with optional note\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, " note <message> : Set a personal note\n");
|
||||||
wprintw(self->window, " nick <nickname> : Set your nickname\n");
|
wprintw(self->window, " nick <nickname> : Set your nickname\n");
|
||||||
wprintw(self->window, " mynick : Print your current nickname\n");
|
|
||||||
wprintw(self->window, " accept <number> : Accept friend request\n");
|
wprintw(self->window, " accept <number> : Accept friend request\n");
|
||||||
wprintw(self->window, " myid : Print your ID\n");
|
wprintw(self->window, " myid : Print your ID\n");
|
||||||
wprintw(self->window, " quit/exit : Exit Toxic\n");
|
wprintw(self->window, " quit/exit : Exit Toxic\n");
|
||||||
@ -279,6 +335,12 @@ void cmd_msg(ToxWindow *self, Tox *m, int argc, char **argv)
|
|||||||
|
|
||||||
id = argv[1];
|
id = argv[1];
|
||||||
msg = argv[2];
|
msg = argv[2];
|
||||||
|
|
||||||
|
if (id == NULL || msg == NULL) {
|
||||||
|
wprintw(self->window, "Invalid syntax.\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
msg[strlen(++msg)-1] = L'\0';
|
msg[strlen(++msg)-1] = L'\0';
|
||||||
|
|
||||||
if (tox_sendmessage(m, atoi(id), (uint8_t *) msg, strlen(msg) + 1) == 0)
|
if (tox_sendmessage(m, atoi(id), (uint8_t *) msg, strlen(msg) + 1) == 0)
|
||||||
@ -305,7 +367,7 @@ void cmd_myid(ToxWindow *self, Tox *m, int argc, char **argv)
|
|||||||
|
|
||||||
void cmd_nick(ToxWindow *self, Tox *m, int argc, char **argv)
|
void cmd_nick(ToxWindow *self, Tox *m, int argc, char **argv)
|
||||||
{
|
{
|
||||||
char *nick;
|
uint8_t *nick;
|
||||||
|
|
||||||
/* check arguments */
|
/* check arguments */
|
||||||
if (argc != 1) {
|
if (argc != 1) {
|
||||||
@ -314,82 +376,74 @@ void cmd_nick(ToxWindow *self, Tox *m, int argc, char **argv)
|
|||||||
}
|
}
|
||||||
|
|
||||||
nick = argv[1];
|
nick = argv[1];
|
||||||
|
|
||||||
|
if (nick == NULL) {
|
||||||
|
wprintw(self->window, "Invalid syntax.\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (nick[0] == '\"')
|
if (nick[0] == '\"')
|
||||||
nick[strlen(++nick)-1] = L'\0';
|
nick[strlen(++nick)-1] = L'\0';
|
||||||
|
|
||||||
tox_setname(m, (uint8_t *) nick, strlen(nick) + 1);
|
tox_setname(m, nick, strlen(nick) + 1);
|
||||||
wprintw(self->window, "Nickname set to: %s\n", nick);
|
prompt_update_nick(self, nick);
|
||||||
|
|
||||||
if (store_data(m, DATA_FILE)) {
|
store_data(m, DATA_FILE);
|
||||||
wprintw(self->window, "\nCould not store Messenger data\n");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void cmd_mynick(ToxWindow *self, Tox *m, int argc, char **argv)
|
|
||||||
{
|
|
||||||
uint8_t *nick = malloc(TOX_MAX_NAME_LENGTH);
|
|
||||||
tox_getselfname(m, nick, TOX_MAX_NAME_LENGTH);
|
|
||||||
wprintw(self->window, "Current nickname: %s\n", nick);
|
|
||||||
free(nick);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void cmd_status(ToxWindow *self, Tox *m, int argc, char **argv)
|
void cmd_status(ToxWindow *self, Tox *m, int argc, char **argv)
|
||||||
{
|
{
|
||||||
if (argc != 1 && argc != 2) {
|
char *status, *status_text;
|
||||||
|
uint8_t *msg = NULL;
|
||||||
|
|
||||||
|
if (argc < 1 || argc > 2) {
|
||||||
wprintw(self->window, "Wrong number of arguments.\n");
|
wprintw(self->window, "Wrong number of arguments.\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *status, *status_text;
|
|
||||||
char *msg = NULL;
|
|
||||||
|
|
||||||
/* check arguments */
|
|
||||||
if (argc == 2) {
|
if (argc == 2) {
|
||||||
|
|
||||||
msg = argv[2];
|
msg = argv[2];
|
||||||
|
|
||||||
|
if (msg == NULL) {
|
||||||
|
wprintw(self->window, "Invalid syntax.\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (msg[0] != '\"') {
|
if (msg[0] != '\"') {
|
||||||
wprintw(self->window, "Messages must be enclosed in quotes.\n");
|
wprintw(self->window, "Messages must be enclosed in quotes.\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
status = argv[1];
|
status = argv[1];
|
||||||
|
|
||||||
|
if (status == NULL) {
|
||||||
|
wprintw(self->window, "Invalid syntax.\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
TOX_USERSTATUS status_kind;
|
TOX_USERSTATUS status_kind;
|
||||||
|
|
||||||
if (!strncmp(status, "online", strlen("online"))) {
|
if (!strncmp(status, "online", strlen("online")))
|
||||||
status_kind = TOX_USERSTATUS_NONE;
|
status_kind = TOX_USERSTATUS_NONE;
|
||||||
wprintw(self->window, "Status set to: ");
|
|
||||||
wattron(self->window, COLOR_PAIR(GREEN) | A_BOLD);
|
|
||||||
wprintw(self->window, "[Online]\n");
|
|
||||||
wattroff(self->window, COLOR_PAIR(GREEN) | A_BOLD);
|
|
||||||
}
|
|
||||||
|
|
||||||
else if (!strncmp(status, "away", strlen("away"))) {
|
else if (!strncmp(status, "away", strlen("away")))
|
||||||
status_kind = TOX_USERSTATUS_AWAY;
|
status_kind = TOX_USERSTATUS_AWAY;
|
||||||
wprintw(self->window, "Status set to: ");
|
|
||||||
wattron(self->window, COLOR_PAIR(YELLOW) | A_BOLD);
|
|
||||||
wprintw(self->window, "[Away]\n");
|
|
||||||
wattroff(self->window, COLOR_PAIR(YELLOW) | A_BOLD);
|
|
||||||
}
|
|
||||||
|
|
||||||
else if (!strncmp(status, "busy", strlen("busy"))) {
|
else if (!strncmp(status, "busy", strlen("busy")))
|
||||||
status_kind = TOX_USERSTATUS_BUSY;
|
status_kind = TOX_USERSTATUS_BUSY;
|
||||||
wprintw(self->window, "Status set to: ");
|
|
||||||
wattron(self->window, COLOR_PAIR(RED) | A_BOLD);
|
|
||||||
wprintw(self->window, "[Busy]\n");
|
|
||||||
wattroff(self->window, COLOR_PAIR(RED) | A_BOLD);
|
|
||||||
}
|
|
||||||
|
|
||||||
else
|
else
|
||||||
wprintw(self->window, "Invalid status.\n");
|
wprintw(self->window, "Invalid status.\n");
|
||||||
|
|
||||||
tox_set_userstatus(m, status_kind);
|
tox_set_userstatus(m, status_kind);
|
||||||
|
prompt_update_status(self, status_kind);
|
||||||
|
|
||||||
if (msg != NULL) {
|
if (msg != NULL) {
|
||||||
msg[strlen(++msg)-1] = L'\0'; /* remove opening and closing quotes */
|
msg[strlen(++msg)-1] = L'\0'; /* remove opening and closing quotes */
|
||||||
tox_set_statusmessage(m, (uint8_t *) msg, strlen(msg) + 1);
|
tox_set_statusmessage(m, msg, strlen(msg) + 1);
|
||||||
wprintw(self->window, "Personal note set to: %s\n", msg);
|
prompt_update_statusmessage(self, msg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -400,19 +454,22 @@ void cmd_note(ToxWindow *self, Tox *m, int argc, char **argv)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *msg;
|
if (argv[1] == NULL) {
|
||||||
|
wprintw(self->window, "Invalid syntax.\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/* check arguments */
|
if (argv[1][0] != '\"') {
|
||||||
if (argv[1] && argv[1][0] != '\"') {
|
|
||||||
wprintw(self->window, "Messages must be enclosed in quotes.\n");
|
wprintw(self->window, "Messages must be enclosed in quotes.\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uint8_t *msg;
|
||||||
msg = argv[1];
|
msg = argv[1];
|
||||||
msg[strlen(++msg)-1] = L'\0';
|
msg[strlen(++msg)-1] = L'\0';
|
||||||
|
|
||||||
tox_set_statusmessage(m, (uint8_t *) msg, strlen(msg) + 1);
|
tox_set_statusmessage(m, msg, strlen(msg) + 1);
|
||||||
wprintw(self->window, "Personal note set to: %s\n", msg);
|
prompt_update_statusmessage(self, msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void execute(ToxWindow *self, Tox *m, char *u_cmd)
|
static void execute(ToxWindow *self, Tox *m, char *u_cmd)
|
||||||
@ -524,9 +581,8 @@ static void prompt_onKey(ToxWindow *self, Tox *m, wint_t key)
|
|||||||
|
|
||||||
/* BACKSPACE key: Remove one character from line */
|
/* BACKSPACE key: Remove one character from line */
|
||||||
else if (key == 0x107 || key == 0x8 || key == 0x7f) {
|
else if (key == 0x107 || key == 0x8 || key == 0x7f) {
|
||||||
if (prompt_buf_pos != 0) {
|
if (prompt_buf_pos != 0)
|
||||||
prompt_buf[--prompt_buf_pos] = 0;
|
prompt_buf[--prompt_buf_pos] = 0;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -534,20 +590,64 @@ static void prompt_onDraw(ToxWindow *self, Tox *m)
|
|||||||
{
|
{
|
||||||
curs_set(1);
|
curs_set(1);
|
||||||
int x, y;
|
int x, y;
|
||||||
getyx(self->window, y, x);
|
|
||||||
(void) x;
|
|
||||||
int i;
|
int i;
|
||||||
|
getyx(self->window, y, x);
|
||||||
|
|
||||||
for (i = 0; i < (strlen(prompt_buf)); ++i) {
|
for (i = 0; i < (strlen(prompt_buf)); ++i) {
|
||||||
if ((prompt_buf[i] == '\n') && (y != 0))
|
if ((prompt_buf[i] == '\n') && (y != 0))
|
||||||
--y;
|
--y;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
StatusBar *statusbar = (StatusBar *) self->s;
|
||||||
|
|
||||||
|
werase(statusbar->topline);
|
||||||
|
|
||||||
|
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);
|
||||||
|
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]");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (statusbar->statusmsg[0]) {
|
||||||
|
wattron(statusbar->topline, A_BOLD);
|
||||||
|
wprintw(statusbar->topline, " | %s", statusbar->statusmsg);
|
||||||
|
wattroff(statusbar->topline, A_BOLD);
|
||||||
|
}
|
||||||
|
|
||||||
|
wprintw(statusbar->topline, "\n");
|
||||||
|
|
||||||
wattron(self->window, COLOR_PAIR(GREEN));
|
wattron(self->window, COLOR_PAIR(GREEN));
|
||||||
mvwprintw(self->window, y, 0, "# ");
|
mvwprintw(self->window, y, 0, "# ");
|
||||||
wattroff(self->window, COLOR_PAIR(GREEN));
|
wattroff(self->window, COLOR_PAIR(GREEN));
|
||||||
mvwprintw(self->window, y, 2, "%s", prompt_buf);
|
mvwprintw(self->window, y, 2, "%s", prompt_buf);
|
||||||
wclrtoeol(self->window);
|
wclrtoeol(self->window);
|
||||||
|
|
||||||
wrefresh(self->window);
|
wrefresh(self->window);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -558,6 +658,30 @@ static void prompt_onInit(ToxWindow *self, Tox *m)
|
|||||||
wclrtoeol(self->window);
|
wclrtoeol(self->window);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void prompt_init_statusbar(ToxWindow *self, Tox *m)
|
||||||
|
{
|
||||||
|
int x, y;
|
||||||
|
getmaxyx(self->window, y, x);
|
||||||
|
|
||||||
|
/* Init statusbar info */
|
||||||
|
StatusBar *statusbar = (StatusBar *) self->s;
|
||||||
|
statusbar->status = TOX_USERSTATUS_NONE;
|
||||||
|
statusbar->is_online = false;
|
||||||
|
statusbar->max_len = x;
|
||||||
|
|
||||||
|
uint8_t nick[TOX_MAX_NAME_LENGTH] = {'\0'};
|
||||||
|
tox_getselfname(m, (uint8_t *) &nick, TOX_MAX_NAME_LENGTH);
|
||||||
|
snprintf(statusbar->nick, sizeof(statusbar->nick), "%s", nick);
|
||||||
|
|
||||||
|
uint8_t statusmsg[TOX_MAX_STATUSMESSAGE_LENGTH];
|
||||||
|
tox_copy_self_statusmessage(m, statusmsg, TOX_MAX_STATUSMESSAGE_LENGTH);
|
||||||
|
if (strncmp(statusmsg, "Online", strlen(statusmsg)))
|
||||||
|
snprintf(statusbar->statusmsg, sizeof(statusbar->statusmsg), "%s", statusmsg);
|
||||||
|
|
||||||
|
/* Init statusbar subwindow */
|
||||||
|
statusbar->topline = subwin(self->window, 2, x, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
ToxWindow new_prompt()
|
ToxWindow new_prompt()
|
||||||
{
|
{
|
||||||
ToxWindow ret;
|
ToxWindow ret;
|
||||||
@ -565,6 +689,11 @@ ToxWindow new_prompt()
|
|||||||
ret.onKey = &prompt_onKey;
|
ret.onKey = &prompt_onKey;
|
||||||
ret.onDraw = &prompt_onDraw;
|
ret.onDraw = &prompt_onDraw;
|
||||||
ret.onInit = &prompt_onInit;
|
ret.onInit = &prompt_onInit;
|
||||||
|
ret.onFriendRequest = &prompt_onFriendRequest;
|
||||||
strcpy(ret.name, "prompt");
|
strcpy(ret.name, "prompt");
|
||||||
|
|
||||||
|
StatusBar *s = calloc(1, sizeof(StatusBar));
|
||||||
|
ret.s = s;
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
ToxWindow new_prompt();
|
ToxWindow new_prompt();
|
||||||
int add_req(uint8_t *public_key);
|
int add_req(uint8_t *public_key);
|
||||||
unsigned char *hex_string_to_bin(char hex_string[]);
|
unsigned char *hex_string_to_bin(char hex_string[]);
|
||||||
|
void prompt_init_statusbar(ToxWindow *self, Tox *m);
|
||||||
|
|
||||||
#endif /* end of include guard: PROMPT_H_UZYGWFFL */
|
#endif /* end of include guard: PROMPT_H_UZYGWFFL */
|
||||||
|
|
||||||
|
@ -49,16 +49,26 @@ struct ToxWindow_ {
|
|||||||
void(*onAction)(ToxWindow *, Tox *, int, uint8_t *, uint16_t);
|
void(*onAction)(ToxWindow *, Tox *, int, uint8_t *, uint16_t);
|
||||||
|
|
||||||
char name[TOX_MAX_NAME_LENGTH];
|
char name[TOX_MAX_NAME_LENGTH];
|
||||||
|
|
||||||
int friendnum;
|
int friendnum;
|
||||||
|
|
||||||
void *x;
|
void *x;
|
||||||
void *s;
|
void *s;
|
||||||
|
void *prompt;
|
||||||
|
|
||||||
bool blink;
|
bool blink;
|
||||||
|
|
||||||
WINDOW *window;
|
WINDOW *window;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
WINDOW *topline;
|
||||||
|
uint8_t statusmsg[TOX_MAX_STATUSMESSAGE_LENGTH];
|
||||||
|
uint8_t nick[TOX_MAX_NAME_LENGTH];
|
||||||
|
TOX_USERSTATUS status;
|
||||||
|
bool is_online;
|
||||||
|
int max_len; /* set to the window's max x coordinate */
|
||||||
|
} StatusBar;
|
||||||
|
|
||||||
void on_request(uint8_t *public_key, uint8_t *data, uint16_t length, void *userdata);
|
void on_request(uint8_t *public_key, uint8_t *data, uint16_t length, void *userdata);
|
||||||
void on_connectionchange(Tox *m, int friendnumber, uint8_t status, void *userdata);
|
void on_connectionchange(Tox *m, int friendnumber, uint8_t status, void *userdata);
|
||||||
void on_message(Tox *m, int friendnumber, uint8_t *string, uint16_t length, void *userdata);
|
void on_message(Tox *m, int friendnumber, uint8_t *string, uint16_t length, void *userdata);
|
||||||
|
@ -22,18 +22,8 @@ static Tox *m;
|
|||||||
/* CALLBACKS START */
|
/* CALLBACKS START */
|
||||||
void on_request(uint8_t *public_key, uint8_t *data, uint16_t length, void *userdata)
|
void on_request(uint8_t *public_key, uint8_t *data, uint16_t length, void *userdata)
|
||||||
{
|
{
|
||||||
int n = add_req(public_key);
|
|
||||||
wprintw(prompt->window, "\nFriend request from:\n");
|
|
||||||
|
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < KEY_SIZE_BYTES; ++i) {
|
|
||||||
wprintw(prompt->window, "%02x", public_key[i] & 0xff);
|
|
||||||
}
|
|
||||||
|
|
||||||
wprintw(prompt->window, "\nWith the message: %s\n", data);
|
|
||||||
wprintw(prompt->window, "Type \"accept %d\" to accept it.\n", n);
|
|
||||||
|
|
||||||
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
||||||
if (windows[i].onFriendRequest != NULL)
|
if (windows[i].onFriendRequest != NULL)
|
||||||
windows[i].onFriendRequest(&windows[i], public_key, data, length);
|
windows[i].onFriendRequest(&windows[i], public_key, data, length);
|
||||||
@ -49,15 +39,19 @@ void on_connectionchange(Tox *m, int friendnumber, uint8_t status, void *userdat
|
|||||||
snprintf(nick, sizeof(nick), "%s", UNKNOWN_NAME);
|
snprintf(nick, sizeof(nick), "%s", UNKNOWN_NAME);
|
||||||
|
|
||||||
if (status == 1) {
|
if (status == 1) {
|
||||||
|
wattron(prompt->window, COLOR_PAIR(GREEN));
|
||||||
wattron(prompt->window, A_BOLD);
|
wattron(prompt->window, A_BOLD);
|
||||||
wprintw(prompt->window, "\n%s ", nick);
|
wprintw(prompt->window, "\n%s ", nick);
|
||||||
wattroff(prompt->window, A_BOLD);
|
wattroff(prompt->window, A_BOLD);
|
||||||
wprintw(prompt->window, "has come online\n");
|
wprintw(prompt->window, "has come online\n");
|
||||||
|
wattroff(prompt->window, COLOR_PAIR(GREEN));
|
||||||
} else {
|
} else {
|
||||||
|
wattron(prompt->window, COLOR_PAIR(RED));
|
||||||
wattron(prompt->window, A_BOLD);
|
wattron(prompt->window, A_BOLD);
|
||||||
wprintw(prompt->window, "\n%s ", nick);
|
wprintw(prompt->window, "\n%s ", nick);
|
||||||
wattroff(prompt->window, A_BOLD);
|
wattroff(prompt->window, A_BOLD);
|
||||||
wprintw(prompt->window, "has gone offline\n");
|
wprintw(prompt->window, "has gone offline\n");
|
||||||
|
wattroff(prompt->window, COLOR_PAIR(RED));
|
||||||
}
|
}
|
||||||
|
|
||||||
int i;
|
int i;
|
||||||
|
Loading…
Reference in New Issue
Block a user