[project @ 2006-06-29 00:17:49 by unknown_lamer]
[clinton/bobotpp.git] / source / Interp.H
CommitLineData
cb21075d 1// Interp.H -*- C++ -*-
2// Copyright (c) 1998 Etienne BERNARD
c6e7af05 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#ifndef INTERP_H
21#define INTERP_H
22
23#ifdef HAVE_CONFIG_H
24#include "config.h"
25#endif
26
27#ifdef USESCRIPTS
28
29#ifdef MULTITHREAD
30#include <pthread.h>
31#endif
32
33#include "Bot.H"
34#include "ScriptCommands.H"
35#include <libguile.h>
36
37struct wrapper_data {
38 SCM func;
39 SCM args;
40};
41
cb21075d 42class Interp {
43public:
44 static Bot *bot;
ce02032f 45 static SCM bot_module;
cb21075d 46#ifdef MULTITHREAD
47private:
48 static pthread_mutex_t mutex;
49#endif
50public:
51 static void Startup();
db098a03 52 static void Startup2 (Bot *b);
cb21075d 53 static void Shutdown();
54 static void Execute(Bot *, String);
55 static void LoadScript(Bot *, String);
c3ecc559 56
ae97d6ec 57 static SCM LazyApplyWrapper (void *);
58 static SCM EmptyHandler (void *, SCM, SCM);
59 static SCM LazyHandler (void *, SCM, SCM);
60 static SCM ScmApplyWrapper (void *);
cb21075d 61};
62
63#endif
64#endif