/* * Toxic -- Tox Curses Client */ #include #include #include #include #include #include "../../core/Messenger.h" #include "../../core/network.h" #include "windows.h" extern ToxWindow new_prompt(); extern ToxWindow new_friendlist(); extern int friendlist_onFriendAdded(int num); extern void disable_chatwin(int f_num); extern int add_req(uint8_t* public_key); // XXX char WINDOW_STATUS[MAX_WINDOW_SLOTS]; // Holds status of chat windows static ToxWindow windows[MAX_WINDOW_SLOTS]; int w_num; int w_active; static ToxWindow* prompt; // CALLBACKS START void on_request(uint8_t* public_key, uint8_t* data, uint16_t length) { size_t i; int n = add_req(public_key); wprintw(prompt->window, "\nFriend request from:\n"); for(i=0; i<32; i++) { wprintw(prompt->window, "%02x", public_key[i] & 0xff); } wprintw(prompt->window, "\n"); wprintw(prompt->window, "Use \"accept %d\" to accept it.\n", n); for(i=0; iwindow, "\n(message) %d: %s\n", friendnumber, string); for(i=0; iwindow, "\n(nickchange) %d: %s!\n", friendnumber, string); for(i=0; iwindow, "\n(statuschange) %d: %s\n", friendnumber, string); for(i=0; i= TOXWINDOWS_MAX_NUM) return -1; if(LINES < 2) return -1; w.window = newwin(LINES - 2, COLS, 0, 0); if(w.window == NULL) return -1; windows[n] = w; w.onInit(&w); w_num++; return n; } /* Deletes window w and cleans up */ void del_window(ToxWindow *w, int f_num) { delwin(w->window); int i; for (i = N_DEFAULT_WINS; i < MAX_WINDOW_SLOTS; i++) { if (WINDOW_STATUS[i] == f_num) { WINDOW_STATUS[i] = -1; disable_chatwin(f_num); break; } } clear(); refresh(); } static void init_windows() { w_num = 0; int n_prompt = 0; int n_friendslist = 1; if(add_window(new_prompt(), n_prompt) == -1 || add_window(new_friendlist(), n_friendslist) == -1) { fprintf(stderr, "add_window() failed.\n"); endwin(); exit(1); } prompt = &windows[n_prompt]; } static void do_tox() { static bool dht_on = false; if(!dht_on && DHT_isconnected()) { dht_on = true; wprintw(prompt->window, "\nDHT connected!\n"); } else if(dht_on && !DHT_isconnected()) { dht_on = false; wprintw(prompt->window, "\nDHT disconnected!\n"); } doMessenger(); } static void load_data(char *path) { FILE* fd; size_t len; uint8_t* buf; if((fd = fopen(path, "r")) != NULL) { fseek(fd, 0, SEEK_END); len = ftell(fd); fseek(fd, 0, SEEK_SET); buf = malloc(len); if(buf == NULL) { fprintf(stderr, "malloc() failed.\n"); fclose(fd); endwin(); exit(1); } if(fread(buf, len, 1, fd) != 1){ fprintf(stderr, "fread() failed.\n"); free(buf); fclose(fd); endwin(); exit(1); } Messenger_load(buf, len); } else { len = Messenger_size(); buf = malloc(len); if(buf == NULL) { fprintf(stderr, "malloc() failed.\n"); endwin(); exit(1); } Messenger_save(buf); fd = fopen(path, "w"); if(fd == NULL) { fprintf(stderr, "fopen() failed.\n"); free(buf); endwin(); exit(1); } if(fwrite(buf, len, 1, fd) != 1){ fprintf(stderr, "fwrite() failed.\n"); free(buf); fclose(fd); endwin(); exit(1); } } free(buf); fclose(fd); } static void draw_bar() { static int odd = 0; 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 1.0 |"); attroff(COLOR_PAIR(4) | A_BOLD); int i; for (i = 0; i < (MAX_WINDOW_SLOTS-1); i++) { if (WINDOW_STATUS[i] != -1) { if (i == w_active) attron(A_BOLD); odd = (odd+1) % 10; if(windows[i].blink && (odd < 5)) { attron(COLOR_PAIR(3)); } printw(" %s", windows[i].title); if(windows[i].blink && (odd < 5)) { attron(COLOR_PAIR(3)); } if(i == w_active) { attroff(A_BOLD); } } } refresh(); } void prepare_window(WINDOW* w) { mvwin(w, 0, 0); wresize(w, LINES-2, COLS); } /* Shows next window when tab or back-tab is pressed */ void set_active_window(int ch) { int f_inf = 0; int max = MAX_WINDOW_SLOTS-1; if (ch == '\t') { int i = (w_active + 1) % max; while (true) { if (WINDOW_STATUS[i] != -1) { w_active = i; return; } i = (i + 1) % max; if (f_inf++ > max) { // infinite loop check endwin(); clear(); exit(2); } } }else { int i = w_active - 1; if (i < 0) i = max; while (true) { if (WINDOW_STATUS[i] != -1) { w_active = i; return; } if (--i < 0) i = max; if (f_inf++ > max) { endwin(); clear(); exit(2); } } } } int main(int argc, char* argv[]) { int ch; int i = 0; int f_flag = 0; char *filename = "data"; ToxWindow* a; for(i = 0; i < argc; i++) { if (argv[i] == NULL){ break; } else if(argv[i][0] == '-') { if(argv[i][1] == 'f') { if(argv[i + 1] != NULL) filename = argv[i + 1]; else { f_flag = -1; } } } } init_term(); init_tox(); load_data(filename); init_windows(); init_window_status(); if(f_flag == -1) { attron(COLOR_PAIR(3) | A_BOLD); wprintw(prompt->window, "You passed '-f' without giving an argument!\n" "defaulting to 'data' for a keyfile...\n"); attroff(COLOR_PAIR(3) | A_BOLD); } while(true) { // Update tox. do_tox(); // Draw. a = &windows[w_active]; prepare_window(a->window); a->blink = false; draw_bar(); a->onDraw(a); // Handle input. ch = getch(); if(ch == '\t' || ch == KEY_BTAB) set_active_window(ch); else if(ch != ERR) { a->onKey(a, ch); } else if(ch != ERR) { a->onKey(a, ch); } } return 0; }