Merge branch 'development'
[NeonServV5.git] / src / ChanNode.h
1 /* ChanNode.h - NeonServ v5.6
2  * Copyright (C) 2011-2012  Philipp Kreil (pk910)
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License 
15  * along with this program. If not, see <http://www.gnu.org/licenses/>. 
16  */
17 #ifndef _ChanNode_h
18 #define _ChanNode_h
19 #include "main.h"
20
21 struct ChanUser;
22 struct trigger_cache;
23 struct ModeNode;
24 struct NeonSpamSettings;
25 struct timeq_entry;
26
27 #define CHANFLAG_RECEIVED_USERLIST  0x01
28 #define CHANFLAG_REQUESTED_CHANINFO 0x02
29 #define CHANFLAG_CHAN_REGISTERED    0x04
30 #define CHANFLAG_HAVE_INVISIBLES    0x08
31 #define CHANFLAG_REJOINING          0x10
32
33 #define CHANFLAG_SCRIPTFLAG1        0x80 /* used by neonserv_cmd_search */
34
35 struct ChanNode {
36     char name[CHANNELLEN+1];
37     char topic[TOPICLEN+1];
38     struct ChanUser *user;
39     unsigned int usercount;
40     unsigned int botcount;
41     unsigned char flags;
42     struct ModeNode *modes;
43     struct BanNode *bans;
44     
45     struct trigger_cache *trigger;
46     int channel_id;
47     
48     struct NeonSpamSettings *spam_settings;
49         
50     void *rejoin_bots;
51     struct timeq_entry *rejoin_timeout;
52     
53     struct ChanNode *next;
54 };
55
56 #ifndef DND_FUNCTIONS
57 void init_ChanNode();
58 void free_ChanNode();
59 /* MODULAR ACCESSIBLE */ int is_valid_chan(const char *name);
60 /* MODULAR ACCESSIBLE */ struct ChanNode* getAllChans(struct ChanNode *last);
61 /* MODULAR ACCESSIBLE */ struct ChanNode* getChanByName(const char *name);
62 struct ChanNode* addChannel(const char *chan);
63 /* MODULAR ACCESSIBLE */ int getChannelCount();
64 /* MODULAR ACCESSIBLE */ int getChanUserCount();
65 /* MODULAR ACCESSIBLE */ int getChanBanCount();
66 void delChannel(struct ChanNode* chan, int freeChan);
67 void freeChanNode(struct ChanNode* chan);
68 int checkChannelVisibility(struct ChanNode* chan);
69 #endif
70 #endif