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-12 17:09:07 -05:00
|
|
|
static struct prof_win _wins[10];
|
|
|
|
static int _curr_win = 0;
|
2012-02-05 18:08:15 -05:00
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
static void _create_windows(void);
|
2012-02-12 19:53:10 -05:00
|
|
|
static void _send_message_to_win(char *contact, char *line);
|
2012-02-12 20:25:47 -05:00
|
|
|
static void _current_window_refresh();
|
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);
|
2012-02-12 20:05:11 -05:00
|
|
|
|
2012-02-05 18:29:09 -05:00
|
|
|
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-12 17:20:21 -05:00
|
|
|
create_status_bar();
|
2012-02-07 17:59:47 -05:00
|
|
|
create_input_window();
|
2012-02-12 17:09:07 -05:00
|
|
|
_create_windows();
|
2012-02-06 19:08:59 -05:00
|
|
|
}
|
|
|
|
|
2012-02-12 20:25:47 -05:00
|
|
|
void gui_refresh(void)
|
|
|
|
{
|
|
|
|
title_bar_refresh();
|
|
|
|
status_bar_refresh();
|
|
|
|
_current_window_refresh();
|
|
|
|
inp_put_back();
|
|
|
|
}
|
|
|
|
|
2012-02-06 19:08:59 -05:00
|
|
|
void gui_close(void)
|
|
|
|
{
|
|
|
|
endwin();
|
|
|
|
}
|
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
int win_is_active(int i)
|
2012-02-08 17:26:43 -05:00
|
|
|
{
|
2012-02-12 17:09:07 -05:00
|
|
|
if (strcmp(_wins[i].from, "") == 0)
|
2012-02-12 16:36:01 -05:00
|
|
|
return FALSE;
|
|
|
|
else
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
void win_switch_to(int i)
|
2012-02-12 16:36:01 -05:00
|
|
|
{
|
2012-02-12 17:09:07 -05:00
|
|
|
_curr_win = i;
|
2012-02-09 16:45:31 -05:00
|
|
|
|
2012-02-09 19:03:49 -05:00
|
|
|
if (i == 0) {
|
2012-02-12 17:38:27 -05:00
|
|
|
title_bar_show("Console, type /help for help information");
|
2012-02-09 19:03:49 -05:00
|
|
|
} else {
|
2012-02-12 17:38:27 -05:00
|
|
|
title_bar_show(_wins[i].from);
|
2012-02-09 19:03:49 -05:00
|
|
|
}
|
2012-02-08 17:26:43 -05:00
|
|
|
}
|
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
void win_close_win(void)
|
2012-02-08 18:12:34 -05:00
|
|
|
{
|
|
|
|
// reset the chat win to unused
|
2012-02-12 17:09:07 -05:00
|
|
|
strcpy(_wins[_curr_win].from, "");
|
|
|
|
wclear(_wins[_curr_win].win);
|
2012-02-08 18:12:34 -05:00
|
|
|
|
|
|
|
// set it as inactive in the status bar
|
2012-02-12 17:20:21 -05:00
|
|
|
status_bar_inactive(_curr_win);
|
2012-02-08 18:12:34 -05:00
|
|
|
|
|
|
|
// go back to console window
|
2012-02-12 19:28:26 -05:00
|
|
|
_curr_win = 0;
|
2012-02-12 17:38:27 -05:00
|
|
|
title_bar_show("Console, type /help for help information");
|
2012-02-08 18:12:34 -05:00
|
|
|
}
|
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
int win_in_chat(void)
|
2012-02-08 17:46:35 -05:00
|
|
|
{
|
2012-02-12 17:09:07 -05:00
|
|
|
return ((_curr_win != 0) && (strcmp(_wins[_curr_win].from, "") != 0));
|
2012-02-08 17:46:35 -05:00
|
|
|
}
|
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
void win_get_recipient(char *recipient)
|
2012-02-08 17:46:35 -05:00
|
|
|
{
|
2012-02-12 17:09:07 -05:00
|
|
|
strcpy(recipient, _wins[_curr_win].from);
|
2012-02-08 17:46:35 -05:00
|
|
|
}
|
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
void win_show_incomming_msg(char *from, char *message)
|
2012-02-06 19:08:59 -05:00
|
|
|
{
|
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-09 16:45:31 -05:00
|
|
|
char *short_from = strtok(from_cpy, "/");
|
2012-02-08 19:48:17 -05:00
|
|
|
char tstmp[80];
|
|
|
|
get_time(tstmp);
|
|
|
|
|
2012-02-09 19:28:39 -05:00
|
|
|
sprintf(line, " [%s] <%s> %s\n", tstmp, short_from, message);
|
2012-02-12 19:53:10 -05:00
|
|
|
_send_message_to_win(short_from, line);
|
2012-02-06 19:08:59 -05:00
|
|
|
}
|
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
void win_show_outgoing_msg(char *from, char *to, char *message)
|
2012-02-06 19:37:42 -05:00
|
|
|
{
|
|
|
|
char line[100];
|
2012-02-08 19:48:17 -05:00
|
|
|
char tstmp[80];
|
|
|
|
get_time(tstmp);
|
2012-02-09 16:45:31 -05:00
|
|
|
|
2012-02-12 19:53:10 -05:00
|
|
|
sprintf(line, " [%s] <%s> %s\n", tstmp, from, message);
|
|
|
|
_send_message_to_win(to, line);
|
2012-02-06 19:37:42 -05:00
|
|
|
}
|
|
|
|
|
2012-02-12 17:23:51 -05:00
|
|
|
void cons_help(void)
|
2012-02-07 17:59:47 -05:00
|
|
|
{
|
2012-02-08 19:48:17 -05:00
|
|
|
char tstmp[80];
|
|
|
|
get_time(tstmp);
|
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
wprintw(_wins[0].win,
|
|
|
|
" [%s] Help:\n", tstmp);
|
|
|
|
wprintw(_wins[0].win,
|
|
|
|
" [%s] Commands:\n", tstmp);
|
|
|
|
wprintw(_wins[0].win,
|
2012-02-12 19:28:26 -05:00
|
|
|
" [%s] /help : This help.\n", tstmp);
|
2012-02-12 17:09:07 -05:00
|
|
|
wprintw(_wins[0].win,
|
2012-02-12 19:28:26 -05:00
|
|
|
" [%s] /connect user@host : Login to jabber.\n", tstmp);
|
2012-02-12 17:09:07 -05:00
|
|
|
wprintw(_wins[0].win,
|
2012-02-12 19:28:26 -05:00
|
|
|
" [%s] /who : Get roster.\n", tstmp);
|
2012-02-12 17:09:07 -05:00
|
|
|
wprintw(_wins[0].win,
|
2012-02-12 19:28:26 -05:00
|
|
|
" [%s] /close : Close a chat window.\n", tstmp);
|
2012-02-12 17:09:07 -05:00
|
|
|
wprintw(_wins[0].win,
|
2012-02-12 19:28:26 -05:00
|
|
|
" [%s] /msg user@host : Send a message to user.\n", tstmp);
|
|
|
|
wprintw(_wins[0].win,
|
|
|
|
" [%s] /quit : Quit Profanity.\n", tstmp);
|
2012-02-12 17:09:07 -05:00
|
|
|
wprintw(_wins[0].win,
|
|
|
|
" [%s] Shortcuts:\n", tstmp);
|
|
|
|
wprintw(_wins[0].win,
|
2012-02-12 19:28:26 -05:00
|
|
|
" [%s] F1 : Console window.\n", tstmp);
|
2012-02-12 17:09:07 -05:00
|
|
|
wprintw(_wins[0].win,
|
|
|
|
" [%s] F2-10 : Chat windows.\n", tstmp);
|
2012-02-08 21:47:25 -05:00
|
|
|
}
|
|
|
|
|
2012-02-12 17:23:51 -05:00
|
|
|
void cons_show(char *msg)
|
2012-02-08 21:47:25 -05:00
|
|
|
{
|
|
|
|
char tstmp[80];
|
|
|
|
get_time(tstmp);
|
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
wprintw(_wins[0].win, " [%s] %s\n", tstmp, msg);
|
2012-02-07 17:59:47 -05:00
|
|
|
}
|
|
|
|
|
2012-02-12 17:23:51 -05:00
|
|
|
void cons_bad_command(char *cmd)
|
2012-02-07 17:59:47 -05:00
|
|
|
{
|
2012-02-08 19:48:17 -05:00
|
|
|
char tstmp[80];
|
|
|
|
get_time(tstmp);
|
|
|
|
|
2012-02-12 17:09:07 -05:00
|
|
|
wprintw(_wins[0].win, " [%s] Unknown command: %s\n", tstmp, cmd);
|
2012-02-05 18:29:09 -05:00
|
|
|
}
|
|
|
|
|
2012-02-12 17:09:07 -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);
|
2012-02-12 17:09:07 -05:00
|
|
|
_wins[0] = cons;
|
2012-02-08 17:26:43 -05:00
|
|
|
|
|
|
|
// 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);
|
2012-02-12 17:09:07 -05:00
|
|
|
_wins[i] = chat;
|
2012-02-08 17:26:43 -05:00
|
|
|
}
|
2012-02-07 17:59:47 -05:00
|
|
|
}
|
2012-02-12 19:53:10 -05:00
|
|
|
|
|
|
|
static void _send_message_to_win(char *contact, char *line)
|
|
|
|
{
|
|
|
|
// find the chat window for recipient
|
|
|
|
int i;
|
|
|
|
for (i = 1; i < 10; i++)
|
|
|
|
if (strcmp(_wins[i].from, contact) == 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;
|
|
|
|
|
2012-02-12 20:05:11 -05:00
|
|
|
// set it up
|
2012-02-12 19:53:10 -05:00
|
|
|
strcpy(_wins[i].from, contact);
|
|
|
|
wclear(_wins[i].win);
|
|
|
|
}
|
2012-02-12 20:05:11 -05:00
|
|
|
|
|
|
|
// send message to it
|
|
|
|
wprintw(_wins[i].win, line);
|
|
|
|
status_bar_active(i);
|
2012-02-12 19:53:10 -05:00
|
|
|
}
|
|
|
|
|
2012-02-12 20:25:47 -05:00
|
|
|
static void _current_window_refresh()
|
2012-02-12 19:59:04 -05:00
|
|
|
{
|
2012-02-12 20:25:47 -05:00
|
|
|
touchwin(_wins[_curr_win].win);
|
|
|
|
wrefresh(_wins[_curr_win].win);
|
2012-02-12 19:59:04 -05:00
|
|
|
}
|