2013-08-13 02:21:03 +02:00
|
|
|
#include "friendlist.h"
|
|
|
|
#include "prompt.h"
|
2013-08-11 04:49:41 +02:00
|
|
|
#include "dhtstatus.h"
|
2013-08-13 02:21:03 +02:00
|
|
|
#include "windows.h"
|
|
|
|
|
2013-08-15 12:11:48 +02:00
|
|
|
extern char *DATA_FILE;
|
|
|
|
extern int store_data(Messenger *m, char *path);
|
|
|
|
|
2013-08-17 15:40:30 +02:00
|
|
|
static ToxWindow windows[MAX_WINDOWS_NUM];
|
2013-08-17 10:00:19 +02:00
|
|
|
static ToxWindow *active_window;
|
2013-08-16 19:11:09 +02:00
|
|
|
static ToxWindow *prompt;
|
2013-08-17 10:00:19 +02:00
|
|
|
static Messenger *m;
|
2013-08-13 02:21:03 +02:00
|
|
|
|
|
|
|
/* CALLBACKS START */
|
2013-08-16 19:11:09 +02:00
|
|
|
void on_request(uint8_t *public_key, uint8_t *data, uint16_t length, void *userdata)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
int n = add_req(public_key);
|
|
|
|
wprintw(prompt->window, "\nFriend request from:\n");
|
2013-08-13 02:21:03 +02:00
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
int i;
|
2013-08-13 02:21:03 +02:00
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
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, "\nUse \"accept %d\" to accept it.\n", n);
|
2013-08-13 02:21:03 +02:00
|
|
|
|
2013-08-17 15:40:30 +02:00
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
2013-08-16 19:11:09 +02:00
|
|
|
if (windows[i].onFriendRequest != NULL)
|
|
|
|
windows[i].onFriendRequest(&windows[i], public_key, data, length);
|
|
|
|
}
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
void on_message(Messenger *m, int friendnumber, uint8_t *string, uint16_t length, void *userdata)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
int i;
|
|
|
|
|
2013-08-17 15:40:30 +02:00
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
2013-08-16 19:11:09 +02:00
|
|
|
if (windows[i].onMessage != NULL)
|
|
|
|
windows[i].onMessage(&windows[i], m, friendnumber, string, length);
|
|
|
|
}
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
void on_action(Messenger *m, int friendnumber, uint8_t *string, uint16_t length, void *userdata)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
int i;
|
|
|
|
|
2013-08-17 15:40:30 +02:00
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
2013-08-16 19:11:09 +02:00
|
|
|
if (windows[i].onAction != NULL)
|
|
|
|
windows[i].onAction(&windows[i], m, friendnumber, string, length);
|
|
|
|
}
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
void on_nickchange(Messenger *m, int friendnumber, uint8_t *string, uint16_t length, void *userdata)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
wprintw(prompt->window, "\n(nickchange) %d: %s\n", friendnumber, string);
|
|
|
|
int i;
|
|
|
|
|
2013-08-17 15:40:30 +02:00
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
2013-08-16 19:11:09 +02:00
|
|
|
if (windows[i].onNickChange != NULL)
|
|
|
|
windows[i].onNickChange(&windows[i], friendnumber, string, length);
|
|
|
|
}
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
void on_statuschange(Messenger *m, int friendnumber, uint8_t *string, uint16_t length, void *userdata)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
wprintw(prompt->window, "\n(statuschange) %d: %s\n", friendnumber, string);
|
|
|
|
int i;
|
|
|
|
|
2013-08-17 15:40:30 +02:00
|
|
|
for (i = 0; i < MAX_WINDOWS_NUM; ++i) {
|
2013-08-16 19:11:09 +02:00
|
|
|
if (windows[i].onStatusChange != NULL)
|
|
|
|
windows[i].onStatusChange(&windows[i], friendnumber, string, length);
|
|
|
|
}
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void on_friendadded(Messenger *m, int friendnumber)
|
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
friendlist_onFriendAdded(m, friendnumber);
|
|
|
|
|
2013-08-17 11:59:28 +02:00
|
|
|
if (store_data(m, DATA_FILE)) {
|
2013-08-16 19:11:09 +02:00
|
|
|
wprintw(prompt->window, "\nCould not store Messenger data\n");
|
|
|
|
}
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
/* CALLBACKS END */
|
|
|
|
|
2013-08-17 10:00:19 +02:00
|
|
|
int add_window(Messenger *m, ToxWindow w)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
if (LINES < 2)
|
|
|
|
return -1;
|
2013-08-17 10:00:19 +02:00
|
|
|
|
|
|
|
int i;
|
2013-08-17 15:40:30 +02:00
|
|
|
for(i = 0; i < MAX_WINDOWS_NUM; i++) {
|
2013-08-17 10:00:19 +02:00
|
|
|
if (windows[i].window)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
w.window = newwin(LINES - 2, COLS, 0, 0);
|
|
|
|
if (w.window == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
windows[i] = w;
|
|
|
|
w.onInit(&w, m);
|
|
|
|
|
|
|
|
active_window = windows+i;
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Deletes window w and cleans up */
|
2013-08-17 10:00:19 +02:00
|
|
|
void del_window(ToxWindow *w)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-08-17 10:00:19 +02:00
|
|
|
active_window = windows; // Go to prompt screen
|
2013-08-16 19:11:09 +02:00
|
|
|
delwin(w->window);
|
2013-08-17 10:00:19 +02:00
|
|
|
if (w->x)
|
|
|
|
free(w->x);
|
|
|
|
w->window = NULL;
|
|
|
|
memset(w, 0, sizeof(ToxWindow));
|
2013-08-16 19:11:09 +02:00
|
|
|
clear();
|
|
|
|
refresh();
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Shows next window when tab or back-tab is pressed */
|
2013-08-17 10:00:19 +02:00
|
|
|
void set_next_window(int ch)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-08-17 15:40:30 +02:00
|
|
|
ToxWindow *end = windows+MAX_WINDOWS_NUM-1;
|
2013-08-17 10:00:19 +02:00
|
|
|
ToxWindow *inf = active_window;
|
|
|
|
while(true) {
|
|
|
|
if (ch == '\t') {
|
|
|
|
if (++active_window > end)
|
|
|
|
active_window = windows;
|
|
|
|
} else
|
|
|
|
if (--active_window < windows)
|
|
|
|
active_window = end;
|
|
|
|
|
|
|
|
if (active_window->window)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (active_window == inf) { // infinite loop check
|
|
|
|
endwin();
|
|
|
|
exit(2);
|
2013-08-16 19:11:09 +02:00
|
|
|
}
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-17 10:00:19 +02:00
|
|
|
void set_active_window(int index)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-08-17 15:40:30 +02:00
|
|
|
if (index < 0 || index >= MAX_WINDOWS_NUM)
|
2013-08-17 10:00:19 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
active_window = windows+index;
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
2013-08-14 22:02:21 +02:00
|
|
|
ToxWindow *init_windows()
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
2013-08-17 16:05:32 +02:00
|
|
|
int n_prompt = add_window(m, new_prompt());
|
2013-08-17 10:00:19 +02:00
|
|
|
|
|
|
|
if (n_prompt == -1
|
|
|
|
|| add_window(m, new_friendlist()) == -1
|
|
|
|
|| add_window(m, new_dhtstatus()) == -1) {
|
2013-08-16 19:11:09 +02:00
|
|
|
fprintf(stderr, "add_window() failed.\n");
|
|
|
|
endwin();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
prompt = &windows[n_prompt];
|
2013-08-17 10:00:19 +02:00
|
|
|
active_window = prompt;
|
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
return prompt;
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void draw_bar()
|
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
static int odd = 0;
|
|
|
|
int blinkrate = 30;
|
|
|
|
|
|
|
|
attron(COLOR_PAIR(4));
|
|
|
|
mvhline(LINES - 2, 0, '_', COLS);
|
|
|
|
attroff(COLOR_PAIR(4));
|
|
|
|
|
|
|
|
move(LINES - 1, 0);
|
|
|
|
|
|
|
|
attron(COLOR_PAIR(4) | A_BOLD);
|
|
|
|
printw(" TOXIC " TOXICVER "|");
|
|
|
|
attroff(COLOR_PAIR(4) | A_BOLD);
|
2013-08-13 02:21:03 +02:00
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
int i;
|
2013-08-13 02:21:03 +02:00
|
|
|
|
2013-08-17 15:40:30 +02:00
|
|
|
for (i = 0; i < (MAX_WINDOWS_NUM); ++i) {
|
2013-08-17 10:00:19 +02:00
|
|
|
if (windows[i].window) {
|
|
|
|
if (windows+i == active_window)
|
2013-08-16 19:11:09 +02:00
|
|
|
attron(A_BOLD);
|
2013-08-13 02:21:03 +02:00
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
odd = (odd + 1) % blinkrate;
|
2013-08-13 02:21:03 +02:00
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
if (windows[i].blink && (odd < (blinkrate / 2)))
|
|
|
|
attron(COLOR_PAIR(3));
|
2013-08-13 02:21:03 +02:00
|
|
|
|
2013-08-19 22:59:24 +02:00
|
|
|
clrtoeol();
|
2013-08-16 19:11:09 +02:00
|
|
|
printw(" %s", windows[i].title);
|
2013-08-13 02:21:03 +02:00
|
|
|
|
2013-08-16 19:11:09 +02:00
|
|
|
if (windows[i].blink && (odd < (blinkrate / 2)))
|
|
|
|
attroff(COLOR_PAIR(3));
|
2013-08-13 02:21:03 +02:00
|
|
|
|
2013-08-17 10:00:19 +02:00
|
|
|
if (windows+i == active_window) {
|
2013-08-16 19:11:09 +02:00
|
|
|
attroff(A_BOLD);
|
|
|
|
}
|
|
|
|
}
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
2013-08-16 19:11:09 +02:00
|
|
|
|
|
|
|
refresh();
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void prepare_window(WINDOW *w)
|
|
|
|
{
|
2013-08-16 19:11:09 +02:00
|
|
|
mvwin(w, 0, 0);
|
|
|
|
wresize(w, LINES - 2, COLS);
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|
|
|
|
|
2013-08-14 22:02:21 +02:00
|
|
|
void draw_active_window(Messenger *m)
|
2013-08-13 02:21:03 +02:00
|
|
|
{
|
|
|
|
|
2013-08-17 10:00:19 +02:00
|
|
|
ToxWindow *a = active_window;
|
2013-08-16 19:11:09 +02:00
|
|
|
prepare_window(a->window);
|
|
|
|
a->blink = false;
|
|
|
|
draw_bar();
|
|
|
|
a->onDraw(a);
|
|
|
|
|
|
|
|
/* Handle input */
|
|
|
|
int ch = getch();
|
|
|
|
|
|
|
|
if (ch == '\t' || ch == KEY_BTAB)
|
2013-08-17 10:00:19 +02:00
|
|
|
set_next_window(ch);
|
2013-08-16 19:11:09 +02:00
|
|
|
else if (ch != ERR)
|
|
|
|
a->onKey(a, m, ch);
|
2013-08-13 02:21:03 +02:00
|
|
|
}
|