[project @ 2005-07-04 01:48:38 by unknown_lamer]
[clinton/bobotpp.git] / source / BotInterp.C
CommitLineData
cb21075d 1// BotInterp.C -*- C++ -*-
2// Copyright (c) 1998 Etienne BERNARD
ae97d6ec 3// Copyright (C) 2002,2005 Clinton Ebadi
cb21075d 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
ae97d6ec 17// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18// 02110-1301, USA.
cb21075d 19
20#ifdef HAVE_CONFIG_H
21#include "config.h"
22#endif
23
24#include "Utils.H"
25#include "Bot.H"
26#include "BotInterp.H"
27
28#ifdef USESCRIPTS
29
30#include <libguile.h>
31extern "C"
32{
33#include <libguile/regex-posix.h>
34}
35
36BotInterp::BotInterp(Bot *b, String fn)
37 : bot(b), counter(0)
38{
a6339323 39 logPort = scm_open_file(Utils::str2scm (fn),
40 Utils::str2scm ("a"));
cb21075d 41 scm_gc_protect_object(logPort);
42}
43
44void
45BotInterp::Execute(String command)
46{
47 Interp::Execute(bot, command);
48}
49
50void
51BotInterp::LoadScript(String filename)
52{
53 Interp::LoadScript(bot, filename);
54}
55
d56bdd22 56SCM
57BotInterp::ScriptLog()
cb21075d 58{
d56bdd22 59 return logPort;
cb21075d 60}
61
be3612f3 62namespace
63{
64 bool hptr_lt (const Hook* h, const Hook* h1)
65 // Hook Pointer less than
66 // Used to sort the Hooks list
67 { return *h < *h1; }
68}
69
cb21075d 70bool
fd7440f1 71BotInterp::AddHook(int hooktype, SCM regex, SCM function, int pri, bool fall,
72 String name) {
cb21075d 73 if (scm_string_p(regex) == SCM_BOOL_F)
74 return false;
a6339323 75 String rx = Utils::to_upper (Utils::scm2str (regex));
cb21075d 76 SCM r = scm_make_regexp(regex,
77 scm_listify (gh_lookup("regexp/icase"),
78 SCM_UNDEFINED));
79 scm_gc_protect_object(r);
80 scm_gc_protect_object(function);
81 // First, we check if an hook doesn't exist yet
82 std::list<Hook *>::iterator it = hooksMap[hooktype].begin();
83 std::list<Hook *>::iterator it2 = hooksMap[hooktype].end();
be3612f3 84
cb21075d 85 for ( ; it != it2; ++it)
86 // It exists, we replace it.
fd7440f1 87 if ((*it)->regex_str == rx && (*it)->name == name) {
cb21075d 88 scm_gc_unprotect_object((*it)->function);
89 scm_gc_unprotect_object (r);
90 (*it)->function = function;
91 (*it)->priority = pri;
92 (*it)->fallthru = fall;
be3612f3 93 hooksMap[hooktype].sort (hptr_lt);
cb21075d 94 return true;
95 }
96 // It does not exist, we create it
97 hooksMap[hooktype].push_back (new Hook(hooktype, rx, r,
fd7440f1 98 function, pri, fall, name));
be3612f3 99 hooksMap[hooktype].sort (hptr_lt);
cb21075d 100 return true;
101}
102
103bool
104BotInterp::RunHooks(int hooktype, String match, SCM args)
105{
106 SCM result;
ad529fde 107 // We want to execute higher priority hooks first, so we start at
108 // the end of the list instead of the beggining
109 std::list<Hook *>::reverse_iterator it = hooksMap[hooktype].rbegin();
110 std::list<Hook *>::reverse_iterator it2 = hooksMap[hooktype].rend();
cb21075d 111 wrapper_data wd;
112 wd.args = args;
113 for ( ; it != it2; ++it) {
a6339323 114 if (scm_regexp_exec((*it)->regex, Utils::str2scm (match),
cb21075d 115 SCM_UNDEFINED, SCM_UNDEFINED) != SCM_BOOL_F)
116 {
117 wd.func = (*it)->function;
d56bdd22 118 result = scm_internal_catch(SCM_BOOL_T,
ae97d6ec 119 (scm_t_catch_body)
120 Interp::LazyApplyWrapper,
d56bdd22 121 static_cast<void *> (&wd),
ae97d6ec 122 (scm_t_catch_handler) Interp::EmptyHandler, 0);
cb21075d 123 if (! (*it)->fallthru)
124 break;
125 }
126 }
127 return true;
128}
129
130SCM
131BotInterp::AddTimer(int delay, SCM function)
132{
133 int when = time(NULL) + delay;
134 int c = ++counter;
135 scm_gc_protect_object(function);
136 Timer *t = new Timer(c, when, function);
137 timersList.push_back(t);
138 return scm_long2num (c);
139}
140
141bool
142BotInterp::DelTimer(SCM timer)
143{
144 int count = scm_num2long(timer, SCM_ARG1, "BotInterp::DelTimer");
145 std::list<Timer *>::iterator it = timersList.begin();
146 std::list<Timer *>::iterator it2 = timersList.end();
147
148 for ( ; it != it2; ++it) {
149 if ((*it)->count == count) {
150 scm_gc_unprotect_object((*it)->function);
151 delete (*it);
152 timersList.erase(it);
153 return true;
154 }
155 }
156 return false;
157}
158
159bool
160BotInterp::RunTimers(int now)
161{
162 std::list<Timer *>::iterator it = timersList.begin();
163 std::list<Timer *>::iterator it2 = timersList.end();
164 std::list<Timer *>::iterator it3;
cf8ea873 165
cb21075d 166 struct wrapper_data wd;
167 wd.args = scm_listify (SCM_UNDEFINED);
168
169 while (it != it2) {
170 if ((*it)->when <= now) {
171 wd.func = (*it)->function;
d56bdd22 172 scm_internal_catch(SCM_BOOL_T,
ae97d6ec 173 (scm_t_catch_body) Interp::LazyApplyWrapper, (void *)&wd,
174 (scm_t_catch_handler) Interp::EmptyHandler, 0);
cb21075d 175 scm_gc_unprotect_object(wd.func);
176 it3 = it;
177 ++it3;
178 delete (*it);
179 timersList.erase(it);
180 it = it3;
181 } else {
182 ++it;
183 }
184 }
185 return true;
186}
187
188#endif