2012-02-08 17:26:43 -05:00
|
|
|
#include <string.h>
|
2012-02-05 18:08:15 -05:00
|
|
|
#include <ncurses.h>
|
|
|
|
#include "windows.h"
|
2012-02-08 19:48:17 -05:00
|
|
|
#include "util.h"
|
2012-02-05 18:08:15 -05:00
|
|
|
|
2012-02-08 17:26:43 -05:00
|
|
|
static struct prof_win wins[10];
|
|
|
|
static int curr_win = 0;
|
2012-02-05 18:08:15 -05:00
|
|
|
|
2012-02-08 17:26:43 -05:00
|
|
|
static void create_windows(void);
|
2012-02-05 18:29:09 -05:00
|
|
|
|
2012-02-06 19:08:59 -05:00
|
|
|
void gui_init(void)
|
2012-02-05 18:29:09 -05:00
|
|
|
{
|
|
|
|
initscr();
|
|
|
|
cbreak();
|
|
|
|
keypad(stdscr, TRUE);
|
|
|
|
start_color();
|
|
|
|
|
|
|
|
init_color(COLOR_WHITE, 1000, 1000, 1000);
|
|
|
|
init_pair(1, COLOR_WHITE, COLOR_BLACK);
|
|
|
|
init_pair(2, COLOR_GREEN, COLOR_BLACK);
|
|
|
|
|
|
|
|
init_color(COLOR_BLUE, 0, 0, 250);
|
|
|
|
init_pair(3, COLOR_WHITE, COLOR_BLUE);
|
|
|
|
|
|
|
|
attron(A_BOLD);
|
|
|
|
attron(COLOR_PAIR(1));
|
|
|
|
|
|
|
|
refresh();
|
|
|
|
|
|
|
|
create_title_bar();
|
2012-02-07 17:59:47 -05:00
|
|
|
create_input_bar();
|
|
|
|
create_input_window();
|
|
|
|
|
2012-02-08 17:26:43 -05:00
|
|
|
create_windows();
|
2012-02-06 19:08:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void gui_close(void)
|
|
|
|
{
|
|
|
|
endwin();
|
|
|
|
}
|
|
|
|
|
2012-02-08 17:26:43 -05:00
|
|
|
void switch_to(int i)
|
|
|
|
{
|
|
|
|
touchwin(wins[i].win);
|
|
|
|
wrefresh(wins[i].win);
|
|
|
|
curr_win = i;
|
|
|
|
}
|
|
|
|
|
2012-02-08 18:12:34 -05:00
|
|
|
void close_win(void)
|
|
|
|
{
|
|
|
|
// reset the chat win to unused
|
|
|
|
strcpy(wins[curr_win].from, "");
|
|
|
|
wclear(wins[curr_win].win);
|
|
|
|
|
|
|
|
// set it as inactive in the status bar
|
2012-02-08 18:49:46 -05:00
|
|
|
inp_bar_inactive(curr_win);
|
2012-02-08 18:12:34 -05:00
|
|
|
|
|
|
|
// go back to console window
|
|
|
|
touchwin(wins[0].win);
|
|
|
|
wrefresh(wins[0].win);
|
|
|
|
}
|
|
|
|
|
2012-02-08 17:46:35 -05:00
|
|
|
int in_chat(void)
|
|
|
|
{
|
2012-02-08 19:02:03 -05:00
|
|
|
return ((curr_win != 0) && (strcmp(wins[curr_win].from, "") != 0));
|
2012-02-08 17:46:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void get_recipient(char *recipient)
|
|
|
|
{
|
|
|
|
strcpy(recipient, wins[curr_win].from);
|
|
|
|
}
|
|
|
|
|
2012-02-06 19:08:59 -05:00
|
|
|
void show_incomming_msg(char *from, char *message)
|
|
|
|
{
|
2012-02-08 19:48:17 -05:00
|
|
|
char from_cpy[100];
|
|
|
|
strcpy(from_cpy, from);
|
|
|
|
|
2012-02-06 19:08:59 -05:00
|
|
|
char line[100];
|
2012-02-08 19:48:17 -05:00
|
|
|
char *short_from = strtok(from_cpy, "@");
|
|
|
|
char tstmp[80];
|
|
|
|
get_time(tstmp);
|
|
|
|
|
|
|
|
sprintf(line, " [%s] %s: %s\n", tstmp, short_from, message);
|
2012-02-06 19:08:59 -05:00
|
|
|
|
2012-02-08 17:26:43 -05:00
|
|
|
// find the chat window for sender
|
|
|
|
int i;
|
|
|
|
for (i = 1; i < 10; i++)
|
|
|
|
if (strcmp(wins[i].from, from) == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
// if we didn't find a window
|
|
|
|
if (i == 10) {
|
|
|
|
// find the first unused one
|
|
|
|
for (i = 1; i < 10; i++)
|
|
|
|
if (strcmp(wins[i].from, "") == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
// set it up and print the message to it
|
|
|
|
strcpy(wins[i].from, from);
|
|
|
|
wclear(wins[i].win);
|
|
|
|
wprintw(wins[i].win, line);
|
|
|
|
|
|
|
|
// signify active window in status bar
|
2012-02-08 18:49:46 -05:00
|
|
|
inp_bar_active(i);
|
2012-02-08 17:26:43 -05:00
|
|
|
|
|
|
|
// if its the current window, draw it
|
|
|
|
if (curr_win == i) {
|
|
|
|
touchwin(wins[i].win);
|
|
|
|
wrefresh(wins[i].win);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// otherwise
|
|
|
|
else {
|
|
|
|
// add the line to the senders window
|
|
|
|
wprintw(wins[i].win, line);
|
|
|
|
|
|
|
|
// signify active window in status bar
|
2012-02-08 18:49:46 -05:00
|
|
|
inp_bar_active(i);
|
2012-02-08 17:26:43 -05:00
|
|
|
|
|
|
|
// if its the current window, draw it
|
|
|
|
if (curr_win == i) {
|
|
|
|
touchwin(wins[i].win);
|
|
|
|
wrefresh(wins[i].win);
|
|
|
|
}
|
|
|
|
}
|
2012-02-06 19:08:59 -05:00
|
|
|
}
|
|
|
|
|
2012-02-06 19:37:42 -05:00
|
|
|
void show_outgoing_msg(char *from, char* message)
|
|
|
|
{
|
|
|
|
char line[100];
|
2012-02-08 19:48:17 -05:00
|
|
|
char tstmp[80];
|
|
|
|
get_time(tstmp);
|
|
|
|
sprintf(line, " [%s] %s: %s\n", tstmp, from, message);
|
2012-02-06 19:37:42 -05:00
|
|
|
|
2012-02-08 17:46:35 -05:00
|
|
|
wprintw(wins[curr_win].win, line);
|
|
|
|
touchwin(wins[curr_win].win);
|
|
|
|
wrefresh(wins[curr_win].win);
|
2012-02-06 19:37:42 -05:00
|
|
|
}
|
|
|
|
|
2012-02-07 17:59:47 -05:00
|
|
|
void cons_help(void)
|
|
|
|
{
|
2012-02-08 19:48:17 -05:00
|
|
|
char tstmp[80];
|
|
|
|
get_time(tstmp);
|
|
|
|
|
|
|
|
wprintw(wins[0].win, " [%s] Help\n", tstmp);
|
|
|
|
wprintw(wins[0].win, " [%s] ----\n", tstmp);
|
|
|
|
wprintw(wins[0].win, " [%s] /help - This help.\n", tstmp);
|
|
|
|
wprintw(wins[0].win, " [%s] /connect <username@host> - Login to jabber.\n", tstmp);
|
|
|
|
wprintw(wins[0].win, " [%s] /quit - Quits Profanity.\n", tstmp);
|
2012-02-08 18:12:34 -05:00
|
|
|
|
|
|
|
// if its the current window, draw it
|
|
|
|
if (curr_win == 0) {
|
|
|
|
touchwin(wins[0].win);
|
|
|
|
wrefresh(wins[0].win);
|
|
|
|
}
|
2012-02-07 17:59:47 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void cons_bad_command(char *cmd)
|
|
|
|
{
|
2012-02-08 19:48:17 -05:00
|
|
|
char tstmp[80];
|
|
|
|
get_time(tstmp);
|
|
|
|
|
|
|
|
wprintw(wins[0].win, " [%s] Unknown command: %s\n", tstmp, cmd);
|
2012-02-08 18:12:34 -05:00
|
|
|
|
|
|
|
// if its the current window, draw it
|
|
|
|
if (curr_win == 0) {
|
|
|
|
touchwin(wins[0].win);
|
|
|
|
wrefresh(wins[0].win);
|
|
|
|
}
|
2012-02-05 18:29:09 -05:00
|
|
|
}
|
|
|
|
|
2012-02-08 17:26:43 -05:00
|
|
|
static void create_windows(void)
|
2012-02-07 17:59:47 -05:00
|
|
|
{
|
|
|
|
int rows, cols;
|
|
|
|
getmaxyx(stdscr, rows, cols);
|
|
|
|
|
2012-02-08 17:26:43 -05:00
|
|
|
// create the console window in 0
|
|
|
|
struct prof_win cons;
|
|
|
|
strcpy(cons.from, "_cons");
|
|
|
|
cons.win = newwin(rows-3, cols, 1, 0);
|
|
|
|
scrollok(cons.win, TRUE);
|
2012-02-08 19:48:17 -05:00
|
|
|
|
|
|
|
char tstmp[80];
|
|
|
|
get_time(tstmp);
|
2012-02-07 17:59:47 -05:00
|
|
|
|
2012-02-08 19:48:17 -05:00
|
|
|
wprintw(cons.win, " [%s] Welcome to Profanity.\n", tstmp);
|
2012-02-08 17:26:43 -05:00
|
|
|
touchwin(cons.win);
|
|
|
|
wrefresh(cons.win);
|
|
|
|
wins[0] = cons;
|
|
|
|
|
|
|
|
// create the chat windows
|
|
|
|
int i;
|
|
|
|
for (i = 1; i < 10; i++) {
|
|
|
|
struct prof_win chat;
|
|
|
|
strcpy(chat.from, "");
|
|
|
|
chat.win = newwin(rows-3, cols, 1, 0);
|
|
|
|
scrollok(chat.win, TRUE);
|
|
|
|
wins[i] = chat;
|
|
|
|
}
|
2012-02-07 17:59:47 -05:00
|
|
|
}
|