[project @ 2005-07-04 01:48:38 by unknown_lamer]
[clinton/bobotpp.git] / source / Interp.H
CommitLineData
cb21075d 1// Interp.H -*- 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
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();
52 static void Shutdown();
53 static void Execute(Bot *, String);
54 static void LoadScript(Bot *, String);
c3ecc559 55
ae97d6ec 56 static SCM LazyApplyWrapper (void *);
57 static SCM EmptyHandler (void *, SCM, SCM);
58 static SCM LazyHandler (void *, SCM, SCM);
59 static SCM ScmApplyWrapper (void *);
cb21075d 60};
61
62#endif
63#endif