[project @ 2002-08-06 20:48:44 by unknown_lamer]
[clinton/bobotpp.git] / source / Interp.H
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
17 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
18
19 #ifndef INTERP_H
20 #define INTERP_H
21
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
25
26 #ifdef USESCRIPTS
27
28 #ifdef MULTITHREAD
29 #include <pthread.h>
30 #endif
31
32 #include "Bot.H"
33 #include "ScriptCommands.H"
34 #include <libguile.h>
35
36 struct wrapper_data {
37 SCM func;
38 SCM args;
39 };
40
41 SCM scm_apply_wrapper(void *);
42
43 class Interp {
44 public:
45 static Bot *bot;
46 #ifdef MULTITHREAD
47 private:
48 static pthread_mutex_t mutex;
49 #endif
50 public:
51 static void Startup();
52 static void Shutdown();
53 static void Execute(Bot *, String);
54 static void LoadScript(Bot *, String);
55 static SCM ErrorHandler(void *, SCM, SCM);
56 };
57
58 #endif
59 #endif