lots of cool scripting stuff
[supertux.git] / src / scripting / script_interpreter.cpp
1 #include <config.h>
2
3 #include "script_interpreter.hpp"
4
5 #include <stdarg.h>
6 #include <stdexcept>
7 #include <sstream>
8 #include <fstream>
9 #include <sqstdio.h>
10 #include <sqstdaux.h>
11 #include <sqstdblob.h>
12 #include <sqstdsystem.h>
13 #include <sqstdmath.h>
14 #include <sqstdstring.h>
15
16 #include "wrapper.hpp"
17 #include "wrapper_util.hpp"
18 #include "sector.hpp"
19 #include "file_system.hpp"
20 #include "game_session.hpp"
21 #include "resources.hpp"
22 #include "physfs/physfs_stream.hpp"
23 #include "object/text_object.hpp"
24 #include "object/scripted_object.hpp"
25 #include "object/display_effect.hpp"
26 #include "object/player.hpp"
27 #include "scripting/sound.hpp"
28 #include "scripting/scripted_object.hpp"
29 #include "scripting/display_effect.hpp"
30 #include "scripting/squirrel_error.hpp"
31
32 static void printfunc(HSQUIRRELVM, const char* str, ...)
33 {
34   va_list arglist;
35   va_start(arglist, str);
36   vprintf(str, arglist);
37   va_end(arglist);
38 }
39
40 ScriptInterpreter* ScriptInterpreter::_current = 0;
41
42 ScriptInterpreter::ScriptInterpreter(const std::string& new_working_directory)
43   : working_directory(new_working_directory), sound(0), level(0)
44 {
45   v = sq_open(1024);
46   if(v == 0)
47     throw std::runtime_error("Couldn't initialize squirrel vm");
48
49   // register default error handlers
50   sqstd_seterrorhandlers(v);
51   // register squirrel libs
52   sq_pushroottable(v);
53   if(sqstd_register_bloblib(v) < 0)
54     throw Scripting::SquirrelError(v, "Couldn't register blob lib");
55   if(sqstd_register_iolib(v) < 0)
56     throw Scripting::SquirrelError(v, "Couldn't register io lib");
57   if(sqstd_register_systemlib(v) < 0)
58     throw Scripting::SquirrelError(v, "Couldn't register system lib");
59   if(sqstd_register_mathlib(v) < 0)
60     throw Scripting::SquirrelError(v, "Couldn't register math lib");
61   if(sqstd_register_stringlib(v) < 0)
62     throw Scripting::SquirrelError(v, "Couldn't register string lib");
63
64   // register print function
65   sq_setprintfunc(v, printfunc);
66   
67   // register supertux API
68   Scripting::register_supertux_wrapper(v);
69
70   // expose some "global" objects
71   sound = new Scripting::Sound();
72   expose_object(sound, "Sound");
73   
74   level = new Scripting::Level();
75   expose_object(level, "Level");
76 }
77
78 void
79 ScriptInterpreter::register_sector(Sector* sector)
80 {
81   // expose ScriptedObjects to the script
82   for(Sector::GameObjects::iterator i = sector->gameobjects.begin();
83       i != sector->gameobjects.end(); ++i) {
84     GameObject* object = *i;
85     Scripting::ScriptedObject* scripted_object
86       = dynamic_cast<Scripting::ScriptedObject*> (object);
87     if(!scripted_object)
88       continue;
89     
90     expose_object(scripted_object, scripted_object->get_name());
91   }
92   
93   expose_object(static_cast<Scripting::Player*> (sector->player), "Tux");
94   TextObject* text_object = new TextObject();
95   sector->add_object(text_object);
96   Scripting::Text* text = static_cast<Scripting::Text*> (text_object);
97   expose_object(text, "Text");
98   
99   DisplayEffect* display_effect = new DisplayEffect();
100   sector->add_object(display_effect);
101   Scripting::DisplayEffect* display_effect_api
102     = static_cast<Scripting::DisplayEffect*> (display_effect);
103   expose_object(display_effect_api, "DisplayEffect");
104 }
105
106 ScriptInterpreter::~ScriptInterpreter()
107 {
108   sq_close(v);
109   delete sound;
110   delete level;
111 }
112
113 static SQInteger squirrel_read_char(SQUserPointer file)
114 {
115   std::istream* in = reinterpret_cast<std::istream*> (file);
116   char c = in->get();
117   if(in->eof())
118     return 0;    
119   return c;
120 }
121
122 void
123 ScriptInterpreter::run_script(std::istream& in, const std::string& sourcename,
124         bool remove_when_terminated)
125 {
126   printf("Stackbefore:\n");
127   print_squirrel_stack(v);
128   if(sq_compile(v, squirrel_read_char, &in, sourcename.c_str(), true) < 0)
129     throw Scripting::SquirrelError(v, "Couldn't parse script");
130  
131   _current = this;
132   sq_push(v, -2);
133   if(sq_call(v, 1, false) < 0)
134     throw Scripting::SquirrelError(v, "Couldn't start script");
135   _current = 0;
136   if(sq_getvmstate(v) != SQ_VMSTATE_SUSPENDED) {
137     if(remove_when_terminated) {
138       remove_me();
139     }
140     printf("ended.\n");
141     // remove closure from stack
142     sq_pop(v, 1);
143   }
144   printf("After:\n");
145   print_squirrel_stack(v);
146 }
147
148 void
149 ScriptInterpreter::set_wakeup_time(float seconds)
150 {
151   wakeup_timer.start(seconds);
152 }
153
154 void
155 ScriptInterpreter::update(float )
156 {
157   if(!wakeup_timer.check())
158     return;
159   
160   _current = this;
161   if(sq_wakeupvm(v, false, false) < 0)
162     throw Scripting::SquirrelError(v, "Couldn't resume script");
163   _current = 0;
164   if(sq_getvmstate(v) != SQ_VMSTATE_SUSPENDED) {
165     printf("script ended...\n");
166     remove_me();
167   }
168 }
169
170 void
171 ScriptInterpreter::draw(DrawingContext& )
172 {
173 }
174
175 void
176 ScriptInterpreter::add_script_object(Sector* sector, const std::string& name,
177     const std::string& script)
178 {
179   try {
180     std::string workdir = GameSession::current()->get_working_directory();
181     std::auto_ptr<ScriptInterpreter> interpreter(
182                 new ScriptInterpreter(workdir));
183     interpreter->register_sector(sector);
184     
185     // load global default.nut file if it exists
186     //TODO: Load all .nut files from that directory
187     try {
188       std::string filename = "script/default.nut";
189       IFileStream in(filename);
190       interpreter->run_script(in, filename, false);
191     } catch(std::exception& e) {
192       // nothing
193     }
194
195     // load world-specific default.nut file if it exists
196     try {
197       std::string filename = workdir + "/default.nut";
198       IFileStream in(filename);
199       interpreter->run_script(in, filename, false);
200     } catch(std::exception& e) {
201       // nothing
202     }
203         
204     std::istringstream in(script);
205     interpreter->run_script(in, name);
206     sector->add_object(interpreter.release());
207   } catch(std::exception& e) {
208     std::cerr << "Couldn't start '" << name << "' script: " << e.what() << "\n";
209   }
210 }
211