[project @ 2005-06-01 11:12:41 by unknown_lamer]
[clinton/bobotpp.git] / source / Interp.C
CommitLineData
cb21075d 1// Interp.C -*- C++ -*-
2// Copyright (c) 1998 Etienne BERNARD
3// Copyright (C) 2002 Clinton Ebadi
4
5// This program is free software; you can redistribute it and/or modify
6// it under the terms of the GNU General Public License as published by
7// the Free Software Foundation; either version 2 of the License, or
8// (at your option) any later version.
9
10// This program is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU General Public License for more details.
14
15// You should have received a copy of the GNU General Public License
16// along with this program; if not, write to the Free Software
17// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
18
19#ifdef HAVE_CONFIG_H
20#include "config.h"
21#endif
22
23#ifdef USESCRIPTS
24
25#include "Macros.H"
26#include "Commands.H"
27#include "Interp.H"
28#include "BotInterp.H"
29
30#include <libguile.h>
31
ce02032f 32// static class member initial definitions
cb21075d 33Bot * Interp::bot = 0;
ce02032f 34SCM Interp::bot_module = 0;
cb21075d 35#ifdef MULTITHREAD
36pthread_mutex_t Interp::mutex = PTHREAD_MUTEX_INITIALIZER;
37#endif
38
39typedef SCM (*SCMFunc)();
40
41SCM
42scm_apply_wrapper(void *data)
43{
c3ecc559 44#ifdef MULTITHREAD
45 // pthread_mutex_lock (&Interp::mutex);
46#endif
47
cb21075d 48 wrapper_data * wd = static_cast<wrapper_data *> (data);
49 scm_apply(wd->func, wd->args, SCM_EOL);
c3ecc559 50
51#ifdef MULTITHREAD
52 // pthread_mutex_unlock (&Interp::mutex);
53#endif
54
cb21075d 55 return SCM_BOOL_T;
56}
57
ce02032f 58#define bot_new_procedure(a, b, c, d, e) scm_c_define_gsubr (a, c, d, e, b); scm_c_export (a, 0)
59#define scm_c_define_gsubr(a, b, c, d, e) scm_c_define_gsubr (a, b, c, d, e); scm_c_export (a, 0)
60#define scm_c_define(a, b) scm_c_define (a, b); scm_c_export (a, 0)
cb21075d 61
62void
ce02032f 63interp_init_helper (void* unused)
cb21075d 64{
ce02032f 65 scm_c_use_module ("guile-user");
91dddabd 66 // Hooks
67 scm_c_define ("bot:exit-hook", scm_make_hook (scm_long2num (0)));
cb21075d 68
439869bf 69 // Symbols
70 // bot:user-*
71 scm_c_define ("bot:user-none", scm_long2num (User::NONE));
72 scm_c_define ("bot:user-user", scm_long2num (User::USER));
73 scm_c_define ("bot:user-trusted", scm_long2num (User::TRUSTED_USER));
74 scm_c_define ("bot:user-friend", scm_long2num (User::FRIEND));
75 scm_c_define ("bot:user-master", scm_long2num (User::MASTER));
af8c61fe 76
77 // protection
78 scm_c_define ("bot:protection/none", scm_long2num (User::NO_PROT));
79 scm_c_define ("bot:protection/no-ban", scm_long2num (User::NO_BAN));
80 scm_c_define ("bot:protection/no-kick", scm_long2num (User::NO_KICK));
81 scm_c_define ("bot:protection/no-deop", scm_long2num (User::NO_DEOP));
82
83 // auto-op
84 scm_c_define ("bot:aop/yes", scm_long2num (true));
85 scm_c_define ("bot:aop/no", scm_long2num (false));
86
439869bf 87 // sys-dir
88 scm_c_define ("bot:sys-scripts-dir",
ad529fde 89 scm_makfrom0str (String(PREFIX) +
90 "/share/bobotpp/scripts/"));
439869bf 91 // Hooks
cb21075d 92 scm_c_define ("hooks/action", scm_long2num(Hook::ACTION));
93 scm_c_define ("hooks/nickname", scm_long2num(Hook::NICKNAME));
94 scm_c_define ("hooks/signoff", scm_long2num(Hook::SIGNOFF));
95 scm_c_define ("hooks/ctcp", scm_long2num(Hook::CTCP));
96 scm_c_define ("hooks/ctcp-reply", scm_long2num(Hook::CTCP_REPLY));
97 scm_c_define ("hooks/disconnect", scm_long2num(Hook::DISCONNECT));
98 scm_c_define ("hooks/flood", scm_long2num(Hook::FLOOD));
99 scm_c_define ("hooks/invite", scm_long2num(Hook::INVITE));
100 scm_c_define ("hooks/join", scm_long2num(Hook::JOIN));
101 scm_c_define ("hooks/kick", scm_long2num(Hook::KICK));
102 scm_c_define ("hooks/leave", scm_long2num(Hook::LEAVE));
103 scm_c_define ("hooks/part", scm_long2num(Hook::LEAVE));
104 scm_c_define ("hooks/mode", scm_long2num(Hook::MODE));
105 scm_c_define ("hooks/message", scm_long2num(Hook::MESSAGE));
cb21075d 106 scm_c_define ("hooks/notice", scm_long2num(Hook::NOTICE));
107 scm_c_define ("hooks/public", scm_long2num(Hook::PUBLIC));
108 scm_c_define ("hooks/public-notice", scm_long2num(Hook::PUBLIC_NOTICE));
109 scm_c_define ("hooks/raw", scm_long2num(Hook::RAW));
110 scm_c_define ("hooks/timer", scm_long2num(Hook::TIMER));
111 scm_c_define ("hooks/topic", scm_long2num(Hook::TOPIC));
6530edbf 112 // send hooks
fed59248 113 scm_c_define ("hooks/send/public", scm_long2num (Hook::SEND_PUBLIC));
114 scm_c_define ("hooks/send/message", scm_long2num (Hook::SEND_MESSAGE));
115 scm_c_define ("hooks/send/action", scm_long2num (Hook::SEND_ACTION));
116 scm_c_define ("hooks/send/ctcp", scm_long2num (Hook::SEND_CTCP));
6530edbf 117 // dcc hooks
118 scm_c_define ("hooks/dcc/chat-begin",
119 scm_long2num (Hook::DCC_CHAT_BEGIN));
120 scm_c_define ("hooks/dcc/chat-message",
121 scm_long2num (Hook::DCC_CHAT_MESSAGE));
439869bf 122
123 // procedures
124 bot_new_procedure ("bot:action", (SCMFunc)ScriptCommands::Action, 2, 0, 0);
125 scm_c_define_gsubr ("bot:adduser", 5, 2, 0,
126 (SCMFunc)ScriptCommands::AddUser);
127 bot_new_procedure ("bot:addserver", (SCMFunc)ScriptCommands::Action,
128 3, 4, 0);
129 scm_c_define_gsubr ("bot:addshit", 3, 2, 0,
130 (SCMFunc)ScriptCommands::AddShit);
131 bot_new_procedure ("bot:ban", (SCMFunc)ScriptCommands::Action, 2, 0, 0);
af8c61fe 132 bot_new_procedure ("bot:change-command-level",
133 (SCMFunc)ScriptCommands::ChangeCommandLevel,
4edefeb6 134 2, 0, 0);
439869bf 135 bot_new_procedure ("bot:cycle", (SCMFunc)ScriptCommands::Action, 1, 0, 0);
136 bot_new_procedure ("bot:deban", (SCMFunc)ScriptCommands::Deban, 2, 0, 0);
137 bot_new_procedure ("bot:delserver", (SCMFunc)ScriptCommands::DelServer,
138 1, 0, 0);
139 bot_new_procedure ("bot:deluser", (SCMFunc)ScriptCommands::DelUser, 2, 0, 0);
140 bot_new_procedure ("bot:delshit", (SCMFunc)ScriptCommands::DelShit, 2, 0, 0);
141 bot_new_procedure ("bot:deop", (SCMFunc)ScriptCommands::Deop, 2, 0, 0);
142 bot_new_procedure ("bot:die", (SCMFunc)ScriptCommands::Die, 1, 0, 0);
143 bot_new_procedure ("bot:do", (SCMFunc)ScriptCommands::Do, 1, 0, 0);
144 bot_new_procedure ("bot:invite", (SCMFunc)ScriptCommands::Invite, 2, 0, 0);
145 bot_new_procedure ("bot:join", (SCMFunc)ScriptCommands::Join, 1, 1, 0);
146 bot_new_procedure ("bot:keep", (SCMFunc)ScriptCommands::Keep, 2, 0, 0);
147 bot_new_procedure ("bot:kick", (SCMFunc)ScriptCommands::Kick, 2, 1, 0);
148 bot_new_procedure ("bot:kickban", (SCMFunc)ScriptCommands::KickBan, 2, 1, 0);
149 bot_new_procedure ("bot:lock", (SCMFunc)ScriptCommands::Lock, 1, 0, 0);
150 bot_new_procedure ("bot:logport", (SCMFunc)ScriptCommands::LogPort, 0, 0, 0);
151 bot_new_procedure ("bot:mode", (SCMFunc)ScriptCommands::Mode, 2, 0, 0);
152 bot_new_procedure ("bot:msg", (SCMFunc)ScriptCommands::Msg, 2, 0, 0);
153 bot_new_procedure ("bot:nextserver", (SCMFunc)ScriptCommands::NextServer,
154 0, 0, 0);
155 bot_new_procedure ("bot:nick", (SCMFunc)ScriptCommands::Nick, 1, 0, 0);
156 bot_new_procedure ("bot:op", (SCMFunc)ScriptCommands::Op, 2, 0, 0);
157 bot_new_procedure ("bot:part", (SCMFunc)ScriptCommands::Part, 1, 0, 0);
158 bot_new_procedure ("bot:reconnect", (SCMFunc)ScriptCommands::Reconnect,
159 0, 0, 0);
160 bot_new_procedure ("bot:say", (SCMFunc)ScriptCommands::Say, 2, 0, 0);
161 bot_new_procedure ("bot:server", (SCMFunc)ScriptCommands::Server, 1, 0, 0);
e171dcce 162 scm_c_define_gsubr ("bot:setfloodrate", 1, 0, 0,
163 (SCMFunc)ScriptCommands::SetFloodRate);
439869bf 164 bot_new_procedure ("bot:setversion", (SCMFunc)ScriptCommands::SetVersion,
165 1, 0, 0);
166 bot_new_procedure ("bot:tban", (SCMFunc)ScriptCommands::TBan, 3, 0, 0);
167 bot_new_procedure ("bot:tkban", (SCMFunc)ScriptCommands::TKBan, 3, 1, 0);
168 bot_new_procedure ("bot:topic", (SCMFunc)ScriptCommands::Topic, 2, 0, 0);
169 bot_new_procedure ("bot:unlock", (SCMFunc)ScriptCommands::Unlock, 1, 0, 0);
170
171 bot_new_procedure ("bot:getnickname", (SCMFunc)ScriptCommands::getNickname,
172 0, 0, 0);
173 bot_new_procedure ("bot:getserver", (SCMFunc)ScriptCommands::getServer,
174 0, 0, 0);
175 bot_new_procedure ("bot:getserverlist",
176 (SCMFunc)ScriptCommands::getServerList, 0, 0, 0);
177 bot_new_procedure ("bot:flush", (SCMFunc)ScriptCommands::flushQueue,
178 0, 0, 0);
179 bot_new_procedure ("bot:flushport", (SCMFunc)ScriptCommands::flushPort,
180 0, 0, 0);
181 bot_new_procedure ("bot:random", (SCMFunc)ScriptCommands::random,
182 1, 0, 0);
183 bot_new_procedure ("bot:addcommand", (SCMFunc)ScriptCommands::addCommand,
184 5, 0, 0);
185 bot_new_procedure ("bot:delcommand", (SCMFunc)ScriptCommands::delCommand,
186 1, 0, 0);
187 bot_new_procedure ("bot:addhook", (SCMFunc)ScriptCommands::AddHook,
fd7440f1 188 3, 3, 0);
439869bf 189 bot_new_procedure ("bot:addtimer", (SCMFunc)ScriptCommands::AddTimer,
190 2, 0, 0);
191 bot_new_procedure ("bot:deltimer", (SCMFunc)ScriptCommands::DelTimer,
192 1, 0, 0);
e07b6b46 193
b93600f6 194 scm_c_define_gsubr ("bot:dcc-chat-send", 2, 0, 0,
0b7a49e2 195 (SCMFunc)ScriptCommands::sendDCCChatMessage);
196
e07b6b46 197 // "Low Level" Message functuions
198 scm_c_define_gsubr ("bot:send-CTCP", 3, 0, 0,
199 (SCMFunc)ScriptCommands::sendCTCP);
ce02032f 200}
201
202#undef bot_new_procedure
203#undef scm_c_define_gsubr
204#undef scm_c_define
205
e07b6b46 206
ce02032f 207SCM
208interp_post_startup_helper (void *bot_module)
209{
210 SCM module = static_cast<SCM> (bot_module);
211 scm_c_define ("the-bot-module", module);
212 scm_c_export ("the-bot-module", 0);
439869bf 213 // load bobot-utils
214 scm_primitive_load
215 (scm_makfrom0str (String(PREFIX) +
216 "/share/bobotpp/scripts/bobot-utils.scm"));
ce02032f 217 return 0;
218}
439869bf 219
ce02032f 220void
221Interp::Startup()
222{
223 bot_module = scm_c_define_module ("the-bot-module",
0316e2c1 224 interp_init_helper, 0);
ce02032f 225 scm_c_call_with_current_module (bot_module,
226 interp_post_startup_helper,
227 bot_module);
cb21075d 228}
229
230void
231Interp::Shutdown()
91dddabd 232{
233 scm_c_run_hook (gh_lookup ("bot:exit-hook"), SCM_EOL);
234}
cb21075d 235
236void
237Interp::Execute(Bot *b, String command)
238{
239#ifdef MULTITHREAD
240 // We get the lock
241 pthread_mutex_lock(&mutex);
242#endif
0316e2c1 243
cb21075d 244 bot = b;
0316e2c1 245 gh_eval_str_with_catch (command, ErrorHandler);
246
cb21075d 247#ifdef MULTITHREAD
248 // We release the lock
249 pthread_mutex_unlock(&mutex);
250#endif
251}
252
ce02032f 253void load_script_helper (void* file)
254{
255 String filename = *static_cast<String*> (file);
256 scm_c_use_module ("guile-user");
257 gh_eval_file_with_catch(filename, Interp::ErrorHandler);
258}
259
cb21075d 260void
261Interp::LoadScript(Bot *b, String filename)
262{
263#ifdef MULTITHREAD
264 // We get the lock
265 pthread_mutex_lock(&mutex);
266#endif
267 bot = b;
ce02032f 268 //scm_c_define_module ("", load_script_helper, &filename);
cb21075d 269 gh_eval_file_with_catch(filename, ErrorHandler);
270#ifdef MULTITHREAD
271 // We release the lock
272 pthread_mutex_unlock(&mutex);
273#endif
274}
275
276SCM
277Interp::ErrorHandler(void *data, SCM tag, SCM throw_args)
278{
279 bot->botInterp->ScriptLog(throw_args);
280 return SCM_BOOL_F;
281}
282
283#endif