2013-07-30 01:32:39 +02:00
|
|
|
/*
|
|
|
|
* Toxic -- Tox Curses Client
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <curses.h>
|
2013-08-08 16:00:12 +02:00
|
|
|
#include <errno.h>
|
2013-07-30 01:32:39 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2013-08-08 16:00:12 +02:00
|
|
|
#ifdef _win32
|
|
|
|
#include <direct.h>
|
|
|
|
#else
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#endif
|
|
|
|
|
2013-07-30 01:32:39 +02:00
|
|
|
#include "../../core/Messenger.h"
|
|
|
|
#include "../../core/network.h"
|
|
|
|
|
2013-08-08 10:15:07 +02:00
|
|
|
#include "configdir.h"
|
2013-07-30 01:32:39 +02:00
|
|
|
#include "windows.h"
|
|
|
|
|
|
|
|
extern ToxWindow new_prompt();
|
2013-07-30 21:47:40 +02:00
|
|
|
extern ToxWindow new_friendlist();
|
|
|
|
|
2013-08-11 05:24:11 +02:00
|
|
|
extern int friendlist_onFriendAdded(Messenger *m, int num);
|
2013-08-05 07:57:29 +02:00
|
|
|
extern void disable_chatwin(int f_num);
|
2013-08-07 00:27:51 +02:00
|
|
|
extern int add_req(uint8_t *public_key); // XXX
|
2013-08-10 21:46:29 +02:00
|
|
|
extern unsigned char *hex_string_to_bin(char hex_string[]);
|
2013-08-07 00:27:51 +02:00
|
|
|
|
|
|
|
/* Holds status of chat windows */
|
|
|
|
char WINDOW_STATUS[MAX_WINDOW_SLOTS];
|
2013-08-08 16:59:22 +02:00
|
|
|
|
|
|
|
#ifndef TOXICVER
|
|
|
|
#define TOXICVER "NOVER" //Use the -D flag to set this
|
|
|
|
#endif
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-05 07:57:29 +02:00
|
|
|
static ToxWindow windows[MAX_WINDOW_SLOTS];
|
2013-07-30 01:32:39 +02:00
|
|
|
static ToxWindow* prompt;
|
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
int w_num;
|
|
|
|
int active_window;
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
/* CALLBACKS START */
|
2013-08-12 14:23:46 +02:00
|
|
|
void on_request(uint8_t *public_key, uint8_t *data, uint16_t length, void* userdata)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
|
|
|
int n = add_req(public_key);
|
2013-07-31 20:20:16 +02:00
|
|
|
wprintw(prompt->window, "\nFriend request from:\n");
|
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
int i;
|
2013-08-08 10:51:58 +02:00
|
|
|
for (i = 0; i < KEY_SIZE_BYTES; ++i) {
|
2013-07-31 20:20:16 +02:00
|
|
|
wprintw(prompt->window, "%02x", public_key[i] & 0xff);
|
|
|
|
}
|
|
|
|
|
2013-08-08 21:01:33 +02:00
|
|
|
wprintw(prompt->window, "\nWith the message: %s\n", data);
|
|
|
|
wprintw(prompt->window, "\nUse \"accept %d\" to accept it.\n", n);
|
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
for (i = 0; i < MAX_WINDOW_SLOTS; ++i) {
|
|
|
|
if (windows[i].onFriendRequest != NULL)
|
2013-07-31 19:20:03 +02:00
|
|
|
windows[i].onFriendRequest(&windows[i], public_key, data, length);
|
|
|
|
}
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
|
2013-08-12 14:23:46 +02:00
|
|
|
void on_message(Messenger *m, int friendnumber, uint8_t *string, uint16_t length, void* userdata)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < MAX_WINDOW_SLOTS; ++i) {
|
|
|
|
if (windows[i].onMessage != NULL)
|
2013-08-11 05:24:11 +02:00
|
|
|
windows[i].onMessage(&windows[i], m, friendnumber, string, length);
|
2013-07-31 19:20:03 +02:00
|
|
|
}
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
|
2013-08-12 14:23:46 +02:00
|
|
|
void on_action(Messenger *m, int friendnumber, uint8_t *string, uint16_t length, void* userdata)
|
2013-08-08 21:01:33 +02:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < MAX_WINDOW_SLOTS; ++i) {
|
|
|
|
if (windows[i].onAction != NULL)
|
2013-08-11 05:24:11 +02:00
|
|
|
windows[i].onAction(&windows[i], m, friendnumber, string, length);
|
2013-08-08 21:01:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-12 14:23:46 +02:00
|
|
|
void on_nickchange(Messenger *m, int friendnumber, uint8_t *string, uint16_t length, void* userdata)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-08-09 06:25:45 +02:00
|
|
|
wprintw(prompt->window, "\n(nickchange) %d: %s\n", friendnumber, string);
|
2013-08-07 00:27:51 +02:00
|
|
|
int i;
|
|
|
|
for (i = 0; i < MAX_WINDOW_SLOTS; ++i) {
|
|
|
|
if (windows[i].onNickChange != NULL)
|
2013-07-31 19:20:03 +02:00
|
|
|
windows[i].onNickChange(&windows[i], friendnumber, string, length);
|
|
|
|
}
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
|
2013-08-12 14:23:46 +02:00
|
|
|
void on_statuschange(Messenger *m, int friendnumber, uint8_t *string, uint16_t length, void* userdata)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-08-06 02:08:05 +02:00
|
|
|
wprintw(prompt->window, "\n(statuschange) %d: %s\n", friendnumber, string);
|
2013-08-07 00:27:51 +02:00
|
|
|
int i;
|
|
|
|
for (i=0; i<MAX_WINDOW_SLOTS; ++i) {
|
|
|
|
if (windows[i].onStatusChange != NULL)
|
2013-07-31 19:20:03 +02:00
|
|
|
windows[i].onStatusChange(&windows[i], friendnumber, string, length);
|
|
|
|
}
|
2013-07-30 21:47:40 +02:00
|
|
|
}
|
|
|
|
|
2013-08-12 23:34:46 +02:00
|
|
|
void on_friendadded(Messenger *m, int friendnumber)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-08-11 05:24:11 +02:00
|
|
|
friendlist_onFriendAdded(m, friendnumber);
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
2013-08-07 00:27:51 +02:00
|
|
|
/* CALLBACKS END */
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
static void init_term()
|
|
|
|
{
|
|
|
|
/* Setup terminal */
|
2013-07-30 01:32:39 +02:00
|
|
|
initscr();
|
|
|
|
cbreak();
|
|
|
|
keypad(stdscr, 1);
|
|
|
|
noecho();
|
2013-08-04 12:27:36 +02:00
|
|
|
timeout(100);
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
if (has_colors()) {
|
2013-07-30 01:32:39 +02:00
|
|
|
start_color();
|
|
|
|
init_pair(1, COLOR_GREEN, COLOR_BLACK);
|
|
|
|
init_pair(2, COLOR_CYAN, COLOR_BLACK);
|
|
|
|
init_pair(3, COLOR_RED, COLOR_BLACK);
|
|
|
|
init_pair(4, COLOR_BLUE, COLOR_BLACK);
|
2013-08-13 01:50:50 +02:00
|
|
|
init_pair(5, COLOR_YELLOW, COLOR_BLACK);
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
2013-08-12 23:34:46 +02:00
|
|
|
static Messenger * init_tox()
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
|
|
|
/* Init core */
|
2013-08-12 23:34:46 +02:00
|
|
|
Messenger *m = initMessenger();
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
/* Callbacks */
|
2013-08-12 14:23:46 +02:00
|
|
|
m_callback_friendrequest(m, on_request, NULL);
|
|
|
|
m_callback_friendmessage(m, on_message, NULL);
|
|
|
|
m_callback_namechange(m, on_nickchange, NULL);
|
|
|
|
m_callback_statusmessage(m, on_statuschange, NULL);
|
|
|
|
m_callback_action(m, on_action, NULL);
|
2013-08-13 13:39:04 +02:00
|
|
|
#ifdef __linux__
|
|
|
|
setname(m, (uint8_t*) "Cool guy", sizeof("Cool guy"));
|
|
|
|
#elif WIN32
|
|
|
|
setname(m, (uint8_t*) "I should install GNU/Linux", sizeof("I should install GNU/Linux"));
|
|
|
|
#else
|
|
|
|
setname(m, (uint8_t*) "Hipster", sizeof("Hipster"));
|
|
|
|
#endif
|
2013-08-12 23:34:46 +02:00
|
|
|
return m;
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
|
2013-08-10 21:46:29 +02:00
|
|
|
#define MAXLINE 90 /* Approx max number of chars in a sever line (IP + port + key) */
|
2013-08-11 06:55:09 +02:00
|
|
|
#define MINLINE 70
|
2013-08-10 21:46:29 +02:00
|
|
|
#define MAXSERVERS 50
|
|
|
|
|
|
|
|
/* Connects to a random DHT server listed in the DHTservers file */
|
|
|
|
int init_connection(void)
|
|
|
|
{
|
|
|
|
if (DHT_isconnected())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
FILE *fp = fopen("../../../other/DHTservers", "r");
|
2013-08-11 06:55:09 +02:00
|
|
|
if (!fp)
|
2013-08-10 21:46:29 +02:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
char servers[MAXSERVERS][MAXLINE];
|
|
|
|
char line[MAXLINE];
|
|
|
|
int linecnt = 0;
|
|
|
|
while (fgets(line, sizeof(line), fp) && linecnt < MAXSERVERS) {
|
2013-08-12 09:10:47 +02:00
|
|
|
if (strlen(line) > MINLINE)
|
2013-08-10 21:46:29 +02:00
|
|
|
strcpy(servers[linecnt++], line);
|
|
|
|
}
|
|
|
|
if (linecnt < 1) {
|
|
|
|
fclose(fp);
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
fclose(fp);
|
|
|
|
|
2013-08-11 06:55:09 +02:00
|
|
|
char *server = servers[rand() % linecnt];
|
2013-08-10 21:46:29 +02:00
|
|
|
char *ip = strtok(server, " ");
|
|
|
|
char *port = strtok(NULL, " ");
|
|
|
|
char *key = strtok(NULL, " ");
|
2013-08-11 06:55:09 +02:00
|
|
|
if (!ip || !port || !key)
|
|
|
|
return 3;
|
2013-08-10 21:46:29 +02:00
|
|
|
|
|
|
|
IP_Port dht;
|
|
|
|
dht.port = htons(atoi(port));
|
|
|
|
uint32_t resolved_address = resolve_addr(ip);
|
|
|
|
if (resolved_address == 0)
|
2013-08-13 04:34:08 +02:00
|
|
|
return 0;
|
2013-08-10 21:46:29 +02:00
|
|
|
dht.ip.i = resolved_address;
|
|
|
|
unsigned char *binary_string = hex_string_to_bin(key);
|
|
|
|
DHT_bootstrap(dht, binary_string);
|
|
|
|
free(binary_string);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
void init_window_status()
|
|
|
|
{
|
2013-08-05 22:04:06 +02:00
|
|
|
/* Default window values decrement from -2 */
|
2013-08-05 07:57:29 +02:00
|
|
|
int i;
|
2013-08-07 00:27:51 +02:00
|
|
|
for (i = 0; i < N_DEFAULT_WINS; ++i)
|
2013-08-05 22:04:06 +02:00
|
|
|
WINDOW_STATUS[i] = -(i+2);
|
2013-08-05 07:57:29 +02:00
|
|
|
|
|
|
|
int j;
|
|
|
|
for (j = N_DEFAULT_WINS; j < MAX_WINDOW_SLOTS; j++)
|
|
|
|
WINDOW_STATUS[j] = -1;
|
|
|
|
}
|
|
|
|
|
2013-08-12 23:34:46 +02:00
|
|
|
int add_window(Messenger *m, ToxWindow w, int n)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
|
|
|
if (w_num >= TOXWINDOWS_MAX_NUM)
|
2013-07-30 01:32:39 +02:00
|
|
|
return -1;
|
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
if (LINES < 2)
|
2013-07-30 01:32:39 +02:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
w.window = newwin(LINES - 2, COLS, 0, 0);
|
2013-08-07 00:27:51 +02:00
|
|
|
if (w.window == NULL)
|
2013-07-30 01:32:39 +02:00
|
|
|
return -1;
|
|
|
|
|
2013-08-05 22:04:06 +02:00
|
|
|
windows[n] = w;
|
2013-08-11 05:24:11 +02:00
|
|
|
w.onInit(&w, m);
|
2013-08-05 22:04:06 +02:00
|
|
|
w_num++;
|
|
|
|
return n;
|
2013-07-31 19:20:03 +02:00
|
|
|
}
|
|
|
|
|
2013-08-05 07:57:29 +02:00
|
|
|
/* Deletes window w and cleans up */
|
2013-08-07 00:27:51 +02:00
|
|
|
void del_window(ToxWindow *w, int f_num)
|
|
|
|
{
|
2013-08-05 07:57:29 +02:00
|
|
|
delwin(w->window);
|
|
|
|
int i;
|
2013-08-07 00:27:51 +02:00
|
|
|
for (i = N_DEFAULT_WINS; i < MAX_WINDOW_SLOTS; ++i) {
|
2013-08-05 07:57:29 +02:00
|
|
|
if (WINDOW_STATUS[i] == f_num) {
|
|
|
|
WINDOW_STATUS[i] = -1;
|
|
|
|
disable_chatwin(f_num);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
clear();
|
|
|
|
refresh();
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
|
2013-08-12 23:34:46 +02:00
|
|
|
static void init_windows(Messenger *m)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-07-30 01:32:39 +02:00
|
|
|
w_num = 0;
|
2013-08-05 22:04:06 +02:00
|
|
|
int n_prompt = 0;
|
|
|
|
int n_friendslist = 1;
|
2013-08-12 23:34:46 +02:00
|
|
|
if (add_window(m, new_prompt(), n_prompt) == -1
|
|
|
|
|| add_window(m, new_friendlist(), n_friendslist) == -1) {
|
2013-07-30 01:32:39 +02:00
|
|
|
fprintf(stderr, "add_window() failed.\n");
|
|
|
|
endwin();
|
|
|
|
exit(1);
|
|
|
|
}
|
2013-08-05 22:04:06 +02:00
|
|
|
prompt = &windows[n_prompt];
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
|
2013-08-12 23:34:46 +02:00
|
|
|
static void do_tox(Messenger *m)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
2013-08-12 11:59:08 +02:00
|
|
|
static int conn_try = 0;
|
2013-08-13 04:04:07 +02:00
|
|
|
static int conn_err = 0;
|
2013-07-30 01:32:39 +02:00
|
|
|
static bool dht_on = false;
|
2013-08-12 11:59:08 +02:00
|
|
|
if (!dht_on && !DHT_isconnected() && !(conn_try++ % 100)) {
|
2013-08-13 04:04:07 +02:00
|
|
|
if (!conn_err) {
|
|
|
|
conn_err = init_connection();
|
|
|
|
wprintw(prompt->window, "\nEstablishing connection...\n");
|
|
|
|
if (conn_err)
|
|
|
|
wprintw(prompt->window, "\nAuto-connect failed with error code %d\n", conn_err);
|
|
|
|
}
|
2013-08-12 09:10:47 +02:00
|
|
|
}
|
|
|
|
else if (!dht_on && DHT_isconnected()) {
|
2013-07-30 01:32:39 +02:00
|
|
|
dht_on = true;
|
2013-08-10 21:46:29 +02:00
|
|
|
wprintw(prompt->window, "\nDHT connected.\n");
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
2013-08-07 00:27:51 +02:00
|
|
|
else if (dht_on && !DHT_isconnected()) {
|
2013-07-30 01:32:39 +02:00
|
|
|
dht_on = false;
|
2013-08-12 09:10:47 +02:00
|
|
|
wprintw(prompt->window, "\nDHT disconnected. Attempting to reconnect.\n");
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
2013-08-11 05:24:11 +02:00
|
|
|
doMessenger(m);
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
|
2013-08-12 23:34:46 +02:00
|
|
|
static void load_data(Messenger *m, char *path)
|
2013-08-07 00:27:51 +02:00
|
|
|
{
|
|
|
|
FILE *fd;
|
2013-07-30 01:32:39 +02:00
|
|
|
size_t len;
|
2013-08-07 00:27:51 +02:00
|
|
|
uint8_t *buf;
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
if ((fd = fopen(path, "r")) != NULL) {
|
2013-07-30 01:32:39 +02:00
|
|
|
fseek(fd, 0, SEEK_END);
|
|
|
|
len = ftell(fd);
|
|
|
|
fseek(fd, 0, SEEK_SET);
|
|
|
|
|
|
|
|
buf = malloc(len);
|
2013-08-07 00:27:51 +02:00
|
|
|
if (buf == NULL) {
|
2013-07-30 01:32:39 +02:00
|
|
|
fprintf(stderr, "malloc() failed.\n");
|
|
|
|
fclose(fd);
|
2013-07-30 21:47:40 +02:00
|
|
|
endwin();
|
2013-07-30 01:32:39 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
2013-08-07 00:27:51 +02:00
|
|
|
if (fread(buf, len, 1, fd) != 1){
|
2013-07-30 01:32:39 +02:00
|
|
|
fprintf(stderr, "fread() failed.\n");
|
|
|
|
free(buf);
|
|
|
|
fclose(fd);
|
2013-07-30 21:47:40 +02:00
|
|
|
endwin();
|
2013-07-30 01:32:39 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
2013-08-11 05:24:11 +02:00
|
|
|
Messenger_load(m, buf, len);
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
2013-08-05 21:30:40 +02:00
|
|
|
else {
|
2013-08-11 05:24:11 +02:00
|
|
|
len = Messenger_size(m);
|
2013-07-30 01:32:39 +02:00
|
|
|
buf = malloc(len);
|
2013-08-07 00:27:51 +02:00
|
|
|
if (buf == NULL) {
|
2013-07-30 01:32:39 +02:00
|
|
|
fprintf(stderr, "malloc() failed.\n");
|
2013-07-30 21:47:40 +02:00
|
|
|
endwin();
|
2013-07-30 01:32:39 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
2013-08-11 05:24:11 +02:00
|
|
|
Messenger_save(m, buf);
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-03 21:12:02 +02:00
|
|
|
fd = fopen(path, "w");
|
2013-08-07 00:27:51 +02:00
|
|
|
if (fd == NULL) {
|
2013-07-30 01:32:39 +02:00
|
|
|
fprintf(stderr, "fopen() failed.\n");
|
|
|
|
free(buf);
|
2013-07-30 21:47:40 +02:00
|
|
|
endwin();
|
2013-07-30 01:32:39 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
if (fwrite(buf, len, 1, fd) != 1){
|
2013-07-30 01:32:39 +02:00
|
|
|
fprintf(stderr, "fwrite() failed.\n");
|
|
|
|
free(buf);
|
|
|
|
fclose(fd);
|
2013-07-30 21:47:40 +02:00
|
|
|
endwin();
|
2013-07-30 01:32:39 +02:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(buf);
|
|
|
|
fclose(fd);
|
|
|
|
}
|
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
static void draw_bar()
|
|
|
|
{
|
2013-07-31 20:20:16 +02:00
|
|
|
static int odd = 0;
|
2013-08-07 08:34:55 +02:00
|
|
|
int blinkrate = 30;
|
2013-07-30 01:32:39 +02:00
|
|
|
|
|
|
|
attron(COLOR_PAIR(4));
|
|
|
|
mvhline(LINES - 2, 0, '_', COLS);
|
|
|
|
attroff(COLOR_PAIR(4));
|
|
|
|
|
|
|
|
move(LINES - 1, 0);
|
|
|
|
|
2013-07-31 20:20:16 +02:00
|
|
|
attron(COLOR_PAIR(4) | A_BOLD);
|
2013-08-11 05:24:11 +02:00
|
|
|
printw(" TOXIC " TOXICVER "|");
|
2013-07-31 20:20:16 +02:00
|
|
|
attroff(COLOR_PAIR(4) | A_BOLD);
|
2013-07-30 21:47:40 +02:00
|
|
|
|
2013-08-05 07:57:29 +02:00
|
|
|
int i;
|
2013-08-07 00:27:51 +02:00
|
|
|
for (i = 0; i < (MAX_WINDOW_SLOTS); ++i) {
|
2013-08-05 07:57:29 +02:00
|
|
|
if (WINDOW_STATUS[i] != -1) {
|
2013-08-07 00:27:51 +02:00
|
|
|
if (i == active_window)
|
2013-08-05 07:57:29 +02:00
|
|
|
attron(A_BOLD);
|
|
|
|
|
2013-08-07 08:34:55 +02:00
|
|
|
odd = (odd+1) % blinkrate;
|
2013-08-08 21:01:33 +02:00
|
|
|
if (windows[i].blink && (odd < (blinkrate/2)))
|
2013-08-05 07:57:29 +02:00
|
|
|
attron(COLOR_PAIR(3));
|
2013-08-08 21:01:33 +02:00
|
|
|
|
2013-08-05 07:57:29 +02:00
|
|
|
printw(" %s", windows[i].title);
|
2013-08-08 21:01:33 +02:00
|
|
|
if (windows[i].blink && (odd < (blinkrate/2)))
|
2013-08-07 08:34:55 +02:00
|
|
|
attroff(COLOR_PAIR(3));
|
2013-08-08 21:01:33 +02:00
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
if (i == active_window) {
|
2013-08-05 07:57:29 +02:00
|
|
|
attroff(A_BOLD);
|
|
|
|
}
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
refresh();
|
|
|
|
}
|
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
void prepare_window(WINDOW *w)
|
|
|
|
{
|
2013-07-30 21:47:40 +02:00
|
|
|
mvwin(w, 0, 0);
|
|
|
|
wresize(w, LINES-2, COLS);
|
|
|
|
}
|
|
|
|
|
2013-08-05 07:57:29 +02:00
|
|
|
/* Shows next window when tab or back-tab is pressed */
|
2013-08-07 00:27:51 +02:00
|
|
|
void set_active_window(int ch)
|
|
|
|
{
|
2013-08-05 07:57:29 +02:00
|
|
|
int f_inf = 0;
|
|
|
|
int max = MAX_WINDOW_SLOTS-1;
|
|
|
|
if (ch == '\t') {
|
2013-08-07 00:27:51 +02:00
|
|
|
int i = (active_window + 1) % max;
|
2013-08-05 07:57:29 +02:00
|
|
|
while (true) {
|
|
|
|
if (WINDOW_STATUS[i] != -1) {
|
2013-08-07 00:27:51 +02:00
|
|
|
active_window = i;
|
2013-08-05 07:57:29 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
i = (i + 1) % max;
|
2013-08-07 00:27:51 +02:00
|
|
|
if (f_inf++ > max) { // infinite loop check
|
2013-08-05 07:57:29 +02:00
|
|
|
endwin();
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}else {
|
2013-08-07 00:27:51 +02:00
|
|
|
int i = active_window - 1;
|
2013-08-05 07:57:29 +02:00
|
|
|
if (i < 0) i = max;
|
|
|
|
while (true) {
|
|
|
|
if (WINDOW_STATUS[i] != -1) {
|
2013-08-07 00:27:51 +02:00
|
|
|
active_window = i;
|
2013-08-05 07:57:29 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (--i < 0) i = max;
|
|
|
|
if (f_inf++ > max) {
|
|
|
|
endwin();
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2013-07-30 01:32:39 +02:00
|
|
|
int ch;
|
2013-08-10 21:46:29 +02:00
|
|
|
ToxWindow* a;
|
2013-08-08 16:00:12 +02:00
|
|
|
char *user_config_dir = get_user_config_dir();
|
2013-08-10 21:46:29 +02:00
|
|
|
char *DATA_FILE;
|
2013-08-08 16:00:12 +02:00
|
|
|
int config_err = create_user_config_dir(user_config_dir);
|
|
|
|
if(config_err) {
|
2013-08-10 21:46:29 +02:00
|
|
|
DATA_FILE = "data";
|
2013-08-08 10:15:07 +02:00
|
|
|
} else {
|
2013-08-10 21:46:29 +02:00
|
|
|
DATA_FILE = malloc(strlen(user_config_dir) + strlen(CONFIGDIR) + strlen("data") + 1);
|
|
|
|
strcpy(DATA_FILE, user_config_dir);
|
|
|
|
strcat(DATA_FILE, CONFIGDIR);
|
|
|
|
strcat(DATA_FILE, "data");
|
2013-08-08 10:15:07 +02:00
|
|
|
}
|
2013-08-11 17:51:10 +02:00
|
|
|
free(user_config_dir);
|
2013-08-10 21:46:29 +02:00
|
|
|
|
|
|
|
/* This is broken */
|
|
|
|
int f_loadfromfile = 1;
|
|
|
|
int f_flag = 0;
|
2013-08-07 00:27:51 +02:00
|
|
|
int i = 0;
|
|
|
|
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)
|
2013-08-10 21:46:29 +02:00
|
|
|
DATA_FILE = argv[i + 1];
|
2013-08-07 00:27:51 +02:00
|
|
|
else
|
|
|
|
f_flag = -1;
|
2013-08-09 00:50:29 +02:00
|
|
|
} else if (argv[i][1] == 'n') {
|
2013-08-10 21:46:29 +02:00
|
|
|
f_loadfromfile = 0;
|
2013-08-07 00:27:51 +02:00
|
|
|
}
|
2013-08-03 21:12:02 +02:00
|
|
|
}
|
2013-08-07 00:27:51 +02:00
|
|
|
}
|
2013-08-03 21:12:02 +02:00
|
|
|
|
2013-07-30 01:32:39 +02:00
|
|
|
init_term();
|
2013-08-12 23:34:46 +02:00
|
|
|
Messenger *m = init_tox();
|
|
|
|
init_windows(m);
|
2013-08-05 08:48:59 +02:00
|
|
|
init_window_status();
|
2013-08-11 06:55:09 +02:00
|
|
|
|
2013-08-11 00:00:54 +02:00
|
|
|
if(f_loadfromfile)
|
2013-08-12 23:34:46 +02:00
|
|
|
load_data(m, DATA_FILE);
|
2013-08-11 00:00:54 +02:00
|
|
|
free(DATA_FILE);
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
if (f_flag == -1) {
|
2013-08-03 22:12:02 +02:00
|
|
|
attron(COLOR_PAIR(3) | A_BOLD);
|
2013-08-10 21:46:29 +02:00
|
|
|
wprintw(prompt->window, "You passed '-f' without giving an argument.\n"
|
2013-08-03 22:12:02 +02:00
|
|
|
"defaulting to 'data' for a keyfile...\n");
|
|
|
|
attroff(COLOR_PAIR(3) | A_BOLD);
|
|
|
|
}
|
2013-08-08 16:00:12 +02:00
|
|
|
|
|
|
|
if(config_err) {
|
|
|
|
attron(COLOR_PAIR(3) | A_BOLD);
|
2013-08-10 21:46:29 +02:00
|
|
|
wprintw(prompt->window, "Unable to determine configuration directory.\n"
|
2013-08-08 16:00:12 +02:00
|
|
|
"defaulting to 'data' for a keyfile...\n");
|
|
|
|
attroff(COLOR_PAIR(3) | A_BOLD);
|
|
|
|
}
|
2013-07-30 01:32:39 +02:00
|
|
|
while(true) {
|
2013-08-07 00:27:51 +02:00
|
|
|
/* Update tox */
|
2013-08-12 23:34:46 +02:00
|
|
|
do_tox(m);
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
/* Draw */
|
|
|
|
a = &windows[active_window];
|
2013-07-30 21:47:40 +02:00
|
|
|
prepare_window(a->window);
|
2013-07-31 20:20:16 +02:00
|
|
|
a->blink = false;
|
2013-07-30 01:32:39 +02:00
|
|
|
draw_bar();
|
2013-08-03 03:36:01 +02:00
|
|
|
a->onDraw(a);
|
2013-07-30 01:32:39 +02:00
|
|
|
|
2013-08-07 00:27:51 +02:00
|
|
|
/* Handle input */
|
2013-07-30 01:32:39 +02:00
|
|
|
ch = getch();
|
2013-08-07 00:27:51 +02:00
|
|
|
if (ch == '\t' || ch == KEY_BTAB)
|
2013-08-05 07:57:29 +02:00
|
|
|
set_active_window(ch);
|
2013-08-07 08:34:55 +02:00
|
|
|
else if (ch != ERR)
|
2013-08-11 05:24:11 +02:00
|
|
|
a->onKey(a, m, ch);
|
2013-07-30 01:32:39 +02:00
|
|
|
}
|
2013-08-11 05:24:11 +02:00
|
|
|
cleanupMessenger(m);
|
2013-07-30 01:32:39 +02:00
|
|
|
return 0;
|
|
|
|
}
|