name='generator' content='cgit 1.4.1-2-gfad0'/>
about summary refs log tree commit diff stats
path: root/windows.c
blob: ee86c2db014217a84c0cc4d008fdf3c1538edfeb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
#include <string.h>
#include <ncurses.h>
#include "windows.h"
#include "util.h"

static struct prof_win wins[10];
static int curr_win = 0;

static void create_windows(void);

void gui_init(void)
{
    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();
    create_input_bar();
    create_input_window();

    create_windows();
}

void gui_close(void)
{
    endwin();
}

void switch_to(int i)
{
    touchwin(wins[i].win);
    wrefresh(wins[i].win);
    curr_win = i;

    title_bar_show(wins[i].from);
}

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
    inp_bar_inactive(curr_win);
    
    // go back to console window
    touchwin(wins[0].win);
    wrefresh(wins[0].win);
}

int in_chat(void)
{
    return ((curr_win != 0) && (strcmp(wins[curr_win].from, "") != 0));
}

void get_recipient(char *recipient)
{
    strcpy(recipient, wins[curr_win].from);
}

void show_incomming_msg(char *from, char *message) 
{
    char from_cpy[100];
    strcpy(from_cpy, from);
    
    char line[100];
    char *short_from = strtok(from_cpy, "/");
    char tstmp[80];
    get_time(tstmp);

    sprintf(line, " [%s] %s: %s\n", tstmp, short_from, message);

    // find the chat window for sender
    int i;
    for (i = 1; i < 10; i++)
        if (strcmp(wins[i].from, short_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, short_from);
        wclear(wins[i].win);
        wprintw(wins[i].win, line);
        
        // signify active window in status bar
        inp_bar_active(i);
        
        // 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
        inp_bar_active(i);
        
        // if its the current window, draw it
        if (curr_win == i) {
            touchwin(wins[i].win);
            wrefresh(wins[i].win);
        }
    }
}

void show_outgoing_msg(char *from, char *to, char *message)
{
    char line[100];
    char tstmp[80];
    get_time(tstmp);
    sprintf(line, " [%s] %s: %s\n", tstmp, from, message);

    // find the chat window for recipient
    int i;
    for (i = 1; i < 10; i++)
        if (strcmp(wins[i].from, to) == 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, to);
        wclear(wins[i].win);
        wprintw(wins[i].win, line);

        // signify active window in status bar
        inp_bar_active(i);

        // 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
        inp_bar_active(i);

        // if its the current window, draw it
        if (curr_win == i) {
            touchwin(wins[i].win);
            wrefresh(wins[i].win);
        }
    }
}

void cons_help(void)
{
    char tstmp[80];
    get_time(tstmp);

    wprintw(wins[0].win, " [%s] Help:\n", tstmp);
    wprintw(wins[0].win, " [%s]   Commands:\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]     /who : Get roster.\n", tstmp);
    wprintw(wins[0].win, " [%s]     /close : Close a chat window.\n", tstmp);
    wprintw(wins[0].win, " [%s]     /quit : Quits Profanity.\n", tstmp);
    wprintw(wins[0].win, " [%s]   Shortcuts:\n", tstmp);
    wprintw(wins[0].win, " [%s]     F1 : Console window.\n", tstmp);
    wprintw(wins[0].win, " [%s]     F2-10 : Chat windows.\n", tstmp);

    // if its the current window, draw it
    if (curr_win == 0) {
        touchwin(wins[0].win);
        wrefresh(wins[0].win);
    }
}

void cons_show(char *msg)
{
    char tstmp[80];
    get_time(tstmp);
   
    wprintw(wins[0].win, " [%s] %s\n", tstmp, msg); 
    
    // if its the current window, draw it
    if (curr_win == 0) {
        touchwin(wins[0].win);
        wrefresh(wins[0].win);
    }
}

void cons_bad_command(char *cmd)
{
    char tstmp[80];
    get_time(tstmp);

    wprintw(wins[0].win, " [%s] Unknown command: %s\n", tstmp, cmd);
    
    // if its the current window, draw it
    if (curr_win == 0) {
        touchwin(wins[0].win);
        wrefresh(wins[0].win);
    }
}

static void create_windows(void)
{
    int rows, cols;
    getmaxyx(stdscr, rows, cols);

    // 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);

    char tstmp[80];
    get_time(tstmp);
    
    wprintw(cons.win, " [%s] Welcome to Profanity.\n", tstmp);
    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;
    }    
}