4ce5abeb2f5701b51c6c9ae327359cd4496e5ac7
[silc.git] / apps / irssi / src / fe-common / core / fe-channels.c
1 /*
2  fe-channels.c : irssi
3
4     Copyright (C) 1999-2000 Timo Sirainen
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #include "module.h"
22 #include "module-formats.h"
23 #include "modules.h"
24 #include "signals.h"
25 #include "commands.h"
26 #include "levels.h"
27 #include "misc.h"
28 #include "settings.h"
29
30 #include "chat-protocols.h"
31 #include "chatnets.h"
32 #include "servers.h"
33 #include "channels.h"
34 #include "channels-setup.h"
35 #include "nicklist.h"
36
37 #include "fe-windows.h"
38 #include "fe-channels.h"
39 #include "window-items.h"
40 #include "printtext.h"
41
42 static void signal_channel_created(CHANNEL_REC *channel, void *automatic)
43 {
44         if (window_item_window(channel) == NULL) {
45                 window_item_create((WI_ITEM_REC *) channel,
46                                    GPOINTER_TO_INT(automatic));
47         }
48 }
49
50 static void signal_channel_created_curwin(CHANNEL_REC *channel)
51 {
52         g_return_if_fail(channel != NULL);
53
54         window_item_add(active_win, (WI_ITEM_REC *) channel, FALSE);
55 }
56
57 static void signal_channel_destroyed(CHANNEL_REC *channel)
58 {
59         WINDOW_REC *window;
60
61         g_return_if_fail(channel != NULL);
62
63         window = window_item_window((WI_ITEM_REC *) channel);
64         if (window == NULL)
65                 return;
66
67         window_item_destroy((WI_ITEM_REC *) channel);
68
69         if (channel->joined && !channel->left &&
70             !channel->server->disconnected) {
71                 /* kicked out from channel */
72                 window_bind_add(window, channel->server->tag,
73                                 channel->visible_name);
74         } else if (!channel->joined || channel->left)
75                 window_auto_destroy(window);
76 }
77
78 static void sig_disconnected(SERVER_REC *server)
79 {
80         WINDOW_REC *window;
81         GSList *tmp;
82
83         g_return_if_fail(IS_SERVER(server));
84
85         for (tmp = server->channels; tmp != NULL; tmp = tmp->next) {
86                 CHANNEL_REC *channel = tmp->data;
87
88                 window = window_item_window((WI_ITEM_REC *) channel);
89                 window_bind_add(window, server->tag, channel->name);
90         }
91 }
92
93 static void signal_window_item_changed(WINDOW_REC *window, WI_ITEM_REC *item)
94 {
95         g_return_if_fail(window != NULL);
96         if (item == NULL) return;
97
98         if (g_slist_length(window->items) > 1 && IS_CHANNEL(item)) {
99                 printformat(item->server, item->visible_name,
100                             MSGLEVEL_CLIENTNOTICE,
101                             TXT_TALKING_IN, item->visible_name);
102                 signal_stop();
103         }
104 }
105
106 static void sig_channel_joined(CHANNEL_REC *channel)
107 {
108         if (settings_get_bool("show_names_on_join") &&
109             !channel->session_rejoin)
110                 fe_channels_nicklist(channel, CHANNEL_NICKLIST_FLAG_ALL);
111 }
112
113 static void cmd_wjoin_pre(const char *data)
114 {
115         GHashTable *optlist;
116         char *nick;
117         void *free_arg;
118
119         if (!cmd_get_params(data, &free_arg, 1 | PARAM_FLAG_OPTIONS |
120                             PARAM_FLAG_UNKNOWN_OPTIONS | PARAM_FLAG_GETREST,
121                             "join", &optlist, &nick))
122                 return;
123
124         if (g_hash_table_lookup(optlist, "window") != NULL) {
125                 signal_add("channel created",
126                            (SIGNAL_FUNC) signal_channel_created_curwin);
127         }
128         cmd_params_free(free_arg);
129 }
130
131 static void cmd_join(const char *data, SERVER_REC *server)
132 {
133         WINDOW_REC *window;
134         CHANNEL_REC *channel;
135
136         if (strchr(data, ' ') != NULL || strchr(data, ',') != NULL)
137                 return;
138
139         channel = channel_find(server, data);
140         if (channel == NULL)
141                 return;
142
143         /* already joined to channel, set it active */
144         window = window_item_window(channel);
145         if (window != active_win)
146                 window_set_active(window);
147
148         window_item_set_active(active_win, (WI_ITEM_REC *) channel);
149 }
150
151 static void cmd_wjoin_post(const char *data)
152 {
153         GHashTable *optlist;
154         char *nick;
155         void *free_arg;
156
157         if (!cmd_get_params(data, &free_arg, 1 | PARAM_FLAG_OPTIONS |
158                             PARAM_FLAG_UNKNOWN_OPTIONS | PARAM_FLAG_GETREST,
159                             "join", &optlist, &nick))
160                 return;
161
162         if (g_hash_table_lookup(optlist, "window") != NULL) {
163                 signal_remove("channel created",
164                            (SIGNAL_FUNC) signal_channel_created_curwin);
165         }
166         cmd_params_free(free_arg);
167 }
168
169 static void cmd_channel_list_joined(void)
170 {
171         CHANNEL_REC *channel;
172         GString *nicks;
173         GSList *nicklist, *tmp, *ntmp;
174
175         if (channels == NULL) {
176                 printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, TXT_NOT_IN_CHANNELS);
177                 return;
178         }
179
180         /* print active channel */
181         channel = CHANNEL(active_win->active);
182         if (channel != NULL)
183                 printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
184                             TXT_CURRENT_CHANNEL, channel->visible_name);
185
186         /* print list of all channels, their modes, server tags and nicks */
187         printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, TXT_CHANLIST_HEADER);
188         for (tmp = channels; tmp != NULL; tmp = tmp->next) {
189                 channel = tmp->data;
190
191                 nicklist = nicklist_getnicks(channel);
192                 nicks = g_string_new(NULL);
193                 for (ntmp = nicklist; ntmp != NULL; ntmp = ntmp->next) {
194                         NICK_REC *rec = ntmp->data;
195
196                         g_string_sprintfa(nicks, "%s ", rec->nick);
197                 }
198
199                 if (nicks->len > 1) g_string_truncate(nicks, nicks->len-1);
200                 printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, TXT_CHANLIST_LINE,
201                             channel->visible_name, channel->mode,
202                             channel->server->tag, nicks->str);
203
204                 g_slist_free(nicklist);
205                 g_string_free(nicks, TRUE);
206         }
207 }
208
209 /* SYNTAX: CHANNEL LIST */
210 static void cmd_channel_list(void)
211 {
212         GString *str;
213         GSList *tmp;
214
215         str = g_string_new(NULL);
216         printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, TXT_CHANSETUP_HEADER);
217         for (tmp = setupchannels; tmp != NULL; tmp = tmp->next) {
218                 CHANNEL_SETUP_REC *rec = tmp->data;
219
220                 g_string_truncate(str, 0);
221                 if (rec->autojoin)
222                         g_string_append(str, "autojoin, ");
223                 if (rec->botmasks != NULL && *rec->botmasks != '\0')
224                         g_string_sprintfa(str, "bots: %s, ", rec->botmasks);
225                 if (rec->autosendcmd != NULL && *rec->autosendcmd != '\0')
226                         g_string_sprintfa(str, "botcmd: %s, ", rec->autosendcmd);
227
228                 if (str->len > 2) g_string_truncate(str, str->len-2);
229                 printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, TXT_CHANSETUP_LINE,
230                             rec->name, rec->chatnet == NULL ? "" : rec->chatnet,
231                             rec->password == NULL ? "" : rec->password, str->str);
232         }
233         g_string_free(str, TRUE);
234         printformat(NULL, NULL, MSGLEVEL_CLIENTCRAP, TXT_CHANSETUP_FOOTER);
235 }
236
237 static void cmd_channel(const char *data, SERVER_REC *server, WI_ITEM_REC *item)
238 {
239         if (*data == '\0')
240                 cmd_channel_list_joined();
241         else if (server != NULL && server_ischannel(server, data)) {
242                 signal_emit("command join", 3, data, server, item);
243         } else {
244                 command_runsub("channel", data, server, item);
245         }
246 }
247
248 /* SYNTAX: CHANNEL ADD [-auto | -noauto] [-bots <masks>] [-botcmd <command>]
249                        <channel> <chatnet> [<password>] */
250 static void cmd_channel_add(const char *data)
251 {
252         GHashTable *optlist;
253         CHATNET_REC *chatnetrec;
254         CHANNEL_SETUP_REC *rec;
255         char *botarg, *botcmdarg, *chatnet, *channel, *password;
256         void *free_arg;
257
258         if (!cmd_get_params(data, &free_arg, 3 | PARAM_FLAG_OPTIONS,
259                             "channel add", &optlist, &channel, &chatnet, &password))
260                 return;
261
262         if (*chatnet == '\0' || *channel == '\0')
263                 cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
264
265         chatnetrec = chatnet_find(chatnet);
266         if (chatnetrec == NULL) {
267                 printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
268                             TXT_UNKNOWN_CHATNET, chatnet);
269                 cmd_params_free(free_arg);
270                 return;
271         }
272
273         botarg = g_hash_table_lookup(optlist, "bots");
274         botcmdarg = g_hash_table_lookup(optlist, "botcmd");
275
276         rec = channel_setup_find(channel, chatnet);
277         if (rec == NULL) {
278                 rec = CHAT_PROTOCOL(chatnetrec)->create_channel_setup();
279                 rec->name = g_strdup(channel);
280                 rec->chatnet = g_strdup(chatnet);
281         } else {
282                 if (g_hash_table_lookup(optlist, "bots")) g_free_and_null(rec->botmasks);
283                 if (g_hash_table_lookup(optlist, "botcmd")) g_free_and_null(rec->autosendcmd);
284                 if (*password != '\0') g_free_and_null(rec->password);
285         }
286         if (g_hash_table_lookup(optlist, "auto")) rec->autojoin = TRUE;
287         if (g_hash_table_lookup(optlist, "noauto")) rec->autojoin = FALSE;
288         if (botarg != NULL && *botarg != '\0') rec->botmasks = g_strdup(botarg);
289         if (botcmdarg != NULL && *botcmdarg != '\0') rec->autosendcmd = g_strdup(botcmdarg);
290         if (*password != '\0' && strcmp(password, "-") != 0) rec->password = g_strdup(password);
291
292         signal_emit("channel add fill", 2, rec, optlist);
293
294         channel_setup_create(rec);
295         printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE,
296                     TXT_CHANSETUP_ADDED, channel, chatnet);
297
298         cmd_params_free(free_arg);
299 }
300
301 /* SYNTAX: CHANNEL REMOVE <channel> <chatnet> */
302 static void cmd_channel_remove(const char *data)
303 {
304         CHANNEL_SETUP_REC *rec;
305         char *chatnet, *channel;
306         void *free_arg;
307
308         if (!cmd_get_params(data, &free_arg, 2, &channel, &chatnet))
309                 return;
310         if (*chatnet == '\0' || *channel == '\0')
311                 cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
312
313         rec = channel_setup_find(channel, chatnet);
314         if (rec == NULL)
315                 printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, TXT_CHANSETUP_NOT_FOUND, channel, chatnet);
316         else {
317                 printformat(NULL, NULL, MSGLEVEL_CLIENTNOTICE, TXT_CHANSETUP_REMOVED, channel, chatnet);
318                 channel_setup_remove(rec);
319         }
320         cmd_params_free(free_arg);
321 }
322
323 static int get_nick_length(void *data)
324 {
325         return strlen(((NICK_REC *) data)->nick);
326 }
327
328 static void display_sorted_nicks(CHANNEL_REC *channel, GSList *nicklist)
329 {
330         WINDOW_REC *window;
331         TEXT_DEST_REC dest;
332         GString *str;
333         GSList *tmp;
334         char *format, *stripped, *prefix_format;
335         char *linebuf, nickmode[2] = { 0, 0 };
336         int *columns, cols, rows, last_col_rows, col, row, max_width;
337         int item_extra, linebuf_size, formatnum;
338
339         window = window_find_closest(channel->server, channel->visible_name,
340                                      MSGLEVEL_CLIENTCRAP);
341         max_width = window->width;
342
343         /* get the length of item extra stuff ("[ ] ") */
344         format = format_get_text(MODULE_NAME, NULL,
345                                  channel->server, channel->visible_name,
346                                  TXT_NAMES_NICK, " ", "");
347         stripped = strip_codes(format);
348         item_extra = strlen(stripped);
349         g_free(stripped);
350         g_free(format);
351
352         if (settings_get_int("names_max_width") > 0 &&
353             settings_get_int("names_max_width") < max_width)
354                 max_width = settings_get_int("names_max_width");
355
356         /* remove width of the timestamp from max_width */
357         format_create_dest(&dest, channel->server, channel->visible_name,
358                            MSGLEVEL_CLIENTCRAP, NULL);
359         format = format_get_line_start(current_theme, &dest, time(NULL));
360         if (format != NULL) {
361                 stripped = strip_codes(format);
362                 max_width -= strlen(stripped);
363                 g_free(stripped);
364                 g_free(format);
365         }
366
367         /* remove width of the prefix from max_width */
368         prefix_format = format_get_text(MODULE_NAME, NULL,
369                                         channel->server, channel->visible_name,
370                                         TXT_NAMES_PREFIX,
371                                         channel->visible_name);
372         if (prefix_format != NULL) {
373                 stripped = strip_codes(prefix_format);
374                 max_width -= strlen(stripped);
375                 g_free(stripped);
376         }
377
378         if (max_width <= 0) {
379                 /* we should always have at least some space .. if we
380                    really don't, it won't show properly anyway. */
381                 max_width = 10;
382         }
383
384         /* calculate columns */
385         cols = get_max_column_count(nicklist, get_nick_length, max_width,
386                                     settings_get_int("names_max_columns"),
387                                     item_extra, 3, &columns, &rows);
388         nicklist = columns_sort_list(nicklist, rows);
389
390         /* rows in last column */
391         last_col_rows = rows-(cols*rows-g_slist_length(nicklist));
392         if (last_col_rows == 0)
393                 last_col_rows = rows;
394
395         str = g_string_new(prefix_format);
396         linebuf_size = max_width+1; linebuf = g_malloc(linebuf_size);
397
398         col = 0; row = 0;
399         for (tmp = nicklist; tmp != NULL; tmp = tmp->next) {
400                 NICK_REC *rec = tmp->data;
401
402                 if (rec->op)
403                         nickmode[0] = '@';
404                 else if (rec->halfop)
405                         nickmode[0] = '%';
406                 else if (rec->voice)
407                         nickmode[0] = '+';
408                 else
409                         nickmode[0] = ' ';
410                 
411                 if (linebuf_size < columns[col]-item_extra+1) {
412                         linebuf_size = (columns[col]-item_extra+1)*2;
413                         linebuf = g_realloc(linebuf, linebuf_size);
414                 }
415                 memset(linebuf, ' ', columns[col]-item_extra);
416                 linebuf[columns[col]-item_extra] = '\0';
417                 memcpy(linebuf, rec->nick, strlen(rec->nick));
418
419                 formatnum = rec->op ? TXT_NAMES_NICK_OP :
420                         rec->halfop ? TXT_NAMES_NICK_HALFOP :
421                         rec->voice ? TXT_NAMES_NICK_VOICE :
422                         TXT_NAMES_NICK;
423                 format = format_get_text(MODULE_NAME, NULL,
424                                          channel->server,
425                                          channel->visible_name,
426                                          formatnum, nickmode, linebuf);
427                 g_string_append(str, format);
428                 g_free(format);
429
430                 if (++col == cols) {
431                         printtext(channel->server, channel->visible_name,
432                                   MSGLEVEL_CLIENTCRAP, "%s", str->str);
433                         g_string_truncate(str, 0);
434                         if (prefix_format != NULL)
435                                 g_string_assign(str, prefix_format);
436                         col = 0; row++;
437
438                         if (row == last_col_rows)
439                                 cols--;
440                 }
441         }
442
443         if (str->len > strlen(prefix_format)) {
444                 printtext(channel->server, channel->visible_name,
445                           MSGLEVEL_CLIENTCRAP, "%s", str->str);
446         }
447
448         g_slist_free(nicklist);
449         g_string_free(str, TRUE);
450         g_free_not_null(columns);
451         g_free_not_null(prefix_format);
452         g_free(linebuf);
453 }
454
455 void fe_channels_nicklist(CHANNEL_REC *channel, int flags)
456 {
457         NICK_REC *nick;
458         GSList *tmp, *nicklist, *sorted;
459         int nicks, normal, voices, halfops, ops;
460
461         nicks = normal = voices = halfops = ops = 0;
462         nicklist = nicklist_getnicks(channel);
463         sorted = NULL;
464
465         /* sort the nicklist */
466         for (tmp = nicklist; tmp != NULL; tmp = tmp->next) {
467                 nick = tmp->data;
468
469                 nicks++;
470                 if (nick->op) {
471                         ops++;
472                         if ((flags & CHANNEL_NICKLIST_FLAG_OPS) == 0)
473                                 continue;
474                 } else if (nick->halfop) {
475                         halfops++;
476                         if ((flags & CHANNEL_NICKLIST_FLAG_HALFOPS) == 0)
477                                 continue;
478                 } else if (nick->voice) {
479                         voices++;
480                         if ((flags & CHANNEL_NICKLIST_FLAG_VOICES) == 0)
481                                 continue;
482                 } else {
483                         normal++;
484                         if ((flags & CHANNEL_NICKLIST_FLAG_NORMAL) == 0)
485                                 continue;
486                 }
487
488                 sorted = g_slist_insert_sorted(sorted, nick, (GCompareFunc)
489                                                nicklist_compare);
490         }
491         g_slist_free(nicklist);
492
493         /* display the nicks */
494         if ((flags & CHANNEL_NICKLIST_FLAG_COUNT) == 0) {
495                 printformat(channel->server, channel->visible_name,
496                             MSGLEVEL_CLIENTCRAP, TXT_NAMES,
497                             channel->visible_name,
498                             nicks, ops, halfops, voices, normal);
499                 display_sorted_nicks(channel, sorted);
500         }
501         g_slist_free(sorted);
502
503         printformat(channel->server, channel->visible_name,
504                     MSGLEVEL_CLIENTNOTICE, TXT_ENDOFNAMES,
505                     channel->visible_name, nicks, ops, halfops, voices, normal);
506 }
507
508 /* SYNTAX: NAMES [-count | -ops -halfops -voices -normal] [<channels> | **] */
509 static void cmd_names(const char *data, SERVER_REC *server, WI_ITEM_REC *item)
510 {
511         CHANNEL_REC *chanrec;
512         GHashTable *optlist;
513         GString *unknowns;
514         char *channel, **channels, **tmp;
515         int flags;
516         void *free_arg;
517
518         g_return_if_fail(data != NULL);
519         if (!IS_SERVER(server) || !server->connected)
520                 cmd_return_error(CMDERR_NOT_CONNECTED);
521
522         if (!cmd_get_params(data, &free_arg, 1 | PARAM_FLAG_OPTIONS,
523                             "names", &optlist, &channel))
524                 return;
525
526         if (strcmp(channel, "*") == 0 || *channel == '\0') {
527                 if (!IS_CHANNEL(item))
528                         cmd_param_error(CMDERR_NOT_JOINED);
529
530                 channel = CHANNEL(item)->name;
531         }
532
533         flags = 0;
534         if (g_hash_table_lookup(optlist, "ops") != NULL)
535                 flags |= CHANNEL_NICKLIST_FLAG_OPS;
536         if (g_hash_table_lookup(optlist, "halfops") != NULL)
537                 flags |= CHANNEL_NICKLIST_FLAG_HALFOPS;
538         if (g_hash_table_lookup(optlist, "voices") != NULL)
539                 flags |= CHANNEL_NICKLIST_FLAG_VOICES;
540         if (g_hash_table_lookup(optlist, "normal") != NULL)
541                 flags |= CHANNEL_NICKLIST_FLAG_NORMAL;
542         if (g_hash_table_lookup(optlist, "count") != NULL)
543                 flags |= CHANNEL_NICKLIST_FLAG_COUNT;
544
545         if (flags == 0) flags = CHANNEL_NICKLIST_FLAG_ALL;
546
547         unknowns = g_string_new(NULL);
548
549         channels = g_strsplit(channel, ",", -1);
550         for (tmp = channels; *tmp != NULL; tmp++) {
551                 chanrec = channel_find(server, *tmp);
552                 if (chanrec == NULL)
553                         g_string_sprintfa(unknowns, "%s,", *tmp);
554                 else {
555                         fe_channels_nicklist(chanrec, flags);
556                         signal_stop();
557                 }
558         }
559         g_strfreev(channels);
560
561         if (unknowns->len > 1)
562                 g_string_truncate(unknowns, unknowns->len-1);
563
564         if (unknowns->len > 0 && strcmp(channel, unknowns->str) != 0)
565                 signal_emit("command names", 3, unknowns->str, server, item);
566         g_string_free(unknowns, TRUE);
567
568         cmd_params_free(free_arg);
569 }
570
571 /* SYNTAX: CYCLE [<channel>] [<message>] */
572 static void cmd_cycle(const char *data, SERVER_REC *server, WI_ITEM_REC *item)
573 {
574         CHANNEL_REC *chanrec;
575         char *channame, *msg, *joindata;
576         void *free_arg;
577
578         g_return_if_fail(data != NULL);
579         if (!IS_SERVER(server) || !server->connected)
580                 cmd_return_error(CMDERR_NOT_CONNECTED);
581
582         if (!cmd_get_params(data, &free_arg, 2 | PARAM_FLAG_OPTCHAN,
583                             item, &channame, &msg))
584                 return;
585         if (*channame == '\0') cmd_param_error(CMDERR_NOT_ENOUGH_PARAMS);
586
587         chanrec = channel_find(server, channame);
588         if (chanrec == NULL) cmd_param_error(CMDERR_CHAN_NOT_FOUND);
589
590         joindata = chanrec->get_join_data(chanrec);
591         window_bind_add(window_item_window(chanrec),
592                         chanrec->server->tag, chanrec->name);
593
594         /* FIXME: kludgy kludgy... */
595         signal_emit("command part", 3, data, server, item);
596
597         if (g_slist_find(channels, chanrec) != NULL) {
598                 chanrec->left = TRUE;
599                 channel_destroy(chanrec);
600         }
601
602         server->channels_join(server, joindata, FALSE);
603         g_free(joindata);
604
605         cmd_params_free(free_arg);
606 }
607
608 void fe_channels_init(void)
609 {
610         settings_add_bool("lookandfeel", "autoclose_windows", TRUE);
611         settings_add_bool("lookandfeel", "show_names_on_join", TRUE);
612         settings_add_int("lookandfeel", "names_max_columns", 6);
613         settings_add_int("lookandfeel", "names_max_width", 0);
614
615         signal_add("channel created", (SIGNAL_FUNC) signal_channel_created);
616         signal_add("channel destroyed", (SIGNAL_FUNC) signal_channel_destroyed);
617         signal_add_last("window item changed", (SIGNAL_FUNC) signal_window_item_changed);
618         signal_add_last("server disconnected", (SIGNAL_FUNC) sig_disconnected);
619         signal_add_last("channel joined", (SIGNAL_FUNC) sig_channel_joined);
620
621         command_bind_first("join", NULL, (SIGNAL_FUNC) cmd_wjoin_pre);
622         command_bind("join", NULL, (SIGNAL_FUNC) cmd_join);
623         command_bind_last("join", NULL, (SIGNAL_FUNC) cmd_wjoin_post);
624         command_bind("channel", NULL, (SIGNAL_FUNC) cmd_channel);
625         command_bind("channel add", NULL, (SIGNAL_FUNC) cmd_channel_add);
626         command_bind("channel remove", NULL, (SIGNAL_FUNC) cmd_channel_remove);
627         command_bind("channel list", NULL, (SIGNAL_FUNC) cmd_channel_list);
628         command_bind("names", NULL, (SIGNAL_FUNC) cmd_names);
629         command_bind("cycle", NULL, (SIGNAL_FUNC) cmd_cycle);
630
631         command_set_options("channel add", "auto noauto -bots -botcmd");
632         command_set_options("names", "count ops halfops voices normal");
633         command_set_options("join", "window");
634 }
635
636 void fe_channels_deinit(void)
637 {
638         signal_remove("channel created", (SIGNAL_FUNC) signal_channel_created);
639         signal_remove("channel destroyed", (SIGNAL_FUNC) signal_channel_destroyed);
640         signal_remove("window item changed", (SIGNAL_FUNC) signal_window_item_changed);
641         signal_remove("server disconnected", (SIGNAL_FUNC) sig_disconnected);
642         signal_remove("channel joined", (SIGNAL_FUNC) sig_channel_joined);
643
644         command_unbind("join", (SIGNAL_FUNC) cmd_wjoin_pre);
645         command_unbind("join", (SIGNAL_FUNC) cmd_join);
646         command_unbind("join", (SIGNAL_FUNC) cmd_wjoin_post);
647         command_unbind("channel", (SIGNAL_FUNC) cmd_channel);
648         command_unbind("channel add", (SIGNAL_FUNC) cmd_channel_add);
649         command_unbind("channel remove", (SIGNAL_FUNC) cmd_channel_remove);
650         command_unbind("channel list", (SIGNAL_FUNC) cmd_channel_list);
651         command_unbind("names", (SIGNAL_FUNC) cmd_names);
652         command_unbind("cycle", (SIGNAL_FUNC) cmd_cycle);
653 }