merged new collision detection branch back into mainline
[supertux.git] / src / scripting / wrapper.cpp
1 /**
2  * WARNING: This file is automatically generated from:
3  *  'src/scripting/wrapper.interface.hpp'
4  * DO NOT CHANGE
5  */
6 #include <config.h>
7
8 #include <new>
9 #include <assert.h>
10 #include <string>
11 #include <sstream>
12 #include <squirrel.h>
13 #include "squirrel_error.hpp"
14 #include "wrapper.interface.hpp"
15
16 namespace Scripting
17 {
18 namespace Wrapper
19 {
20
21 static SQInteger DisplayEffect_release_hook(SQUserPointer ptr, SQInteger )
22 {
23   Scripting::DisplayEffect* _this = reinterpret_cast<Scripting::DisplayEffect*> (ptr);
24   delete _this;
25   return 0;
26 }
27
28 static SQInteger DisplayEffect_fade_out_wrapper(HSQUIRRELVM vm)
29 {
30   SQUserPointer data;
31   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
32     sq_throwerror(vm, _SC("'fade_out' called without instance"));
33     return SQ_ERROR;
34   }
35   Scripting::DisplayEffect* _this = reinterpret_cast<Scripting::DisplayEffect*> (data);
36   SQFloat arg0;
37   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
38     sq_throwerror(vm, _SC("Argument 1 not a float"));
39     return SQ_ERROR;
40   }
41   
42   try {
43     _this->fade_out(static_cast<float> (arg0));
44   
45     return 0;
46   
47   } catch(std::exception& e) {
48     sq_throwerror(vm, e.what());
49     return SQ_ERROR;
50   } catch(...) {
51     sq_throwerror(vm, _SC("Unexpected exception while executing function 'fade_out'"));
52     return SQ_ERROR;
53   }
54   
55 }
56
57 static SQInteger DisplayEffect_fade_in_wrapper(HSQUIRRELVM vm)
58 {
59   SQUserPointer data;
60   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
61     sq_throwerror(vm, _SC("'fade_in' called without instance"));
62     return SQ_ERROR;
63   }
64   Scripting::DisplayEffect* _this = reinterpret_cast<Scripting::DisplayEffect*> (data);
65   SQFloat arg0;
66   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
67     sq_throwerror(vm, _SC("Argument 1 not a float"));
68     return SQ_ERROR;
69   }
70   
71   try {
72     _this->fade_in(static_cast<float> (arg0));
73   
74     return 0;
75   
76   } catch(std::exception& e) {
77     sq_throwerror(vm, e.what());
78     return SQ_ERROR;
79   } catch(...) {
80     sq_throwerror(vm, _SC("Unexpected exception while executing function 'fade_in'"));
81     return SQ_ERROR;
82   }
83   
84 }
85
86 static SQInteger DisplayEffect_set_black_wrapper(HSQUIRRELVM vm)
87 {
88   SQUserPointer data;
89   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
90     sq_throwerror(vm, _SC("'set_black' called without instance"));
91     return SQ_ERROR;
92   }
93   Scripting::DisplayEffect* _this = reinterpret_cast<Scripting::DisplayEffect*> (data);
94   SQBool arg0;
95   if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) {
96     sq_throwerror(vm, _SC("Argument 1 not a bool"));
97     return SQ_ERROR;
98   }
99   
100   try {
101     _this->set_black(arg0 == SQTrue);
102   
103     return 0;
104   
105   } catch(std::exception& e) {
106     sq_throwerror(vm, e.what());
107     return SQ_ERROR;
108   } catch(...) {
109     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_black'"));
110     return SQ_ERROR;
111   }
112   
113 }
114
115 static SQInteger DisplayEffect_is_black_wrapper(HSQUIRRELVM vm)
116 {
117   SQUserPointer data;
118   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
119     sq_throwerror(vm, _SC("'is_black' called without instance"));
120     return SQ_ERROR;
121   }
122   Scripting::DisplayEffect* _this = reinterpret_cast<Scripting::DisplayEffect*> (data);
123   
124   try {
125     bool return_value = _this->is_black();
126   
127     sq_pushbool(vm, return_value);
128     return 1;
129   
130   } catch(std::exception& e) {
131     sq_throwerror(vm, e.what());
132     return SQ_ERROR;
133   } catch(...) {
134     sq_throwerror(vm, _SC("Unexpected exception while executing function 'is_black'"));
135     return SQ_ERROR;
136   }
137   
138 }
139
140 static SQInteger DisplayEffect_sixteen_to_nine_wrapper(HSQUIRRELVM vm)
141 {
142   SQUserPointer data;
143   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
144     sq_throwerror(vm, _SC("'sixteen_to_nine' called without instance"));
145     return SQ_ERROR;
146   }
147   Scripting::DisplayEffect* _this = reinterpret_cast<Scripting::DisplayEffect*> (data);
148   SQFloat arg0;
149   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
150     sq_throwerror(vm, _SC("Argument 1 not a float"));
151     return SQ_ERROR;
152   }
153   
154   try {
155     _this->sixteen_to_nine(static_cast<float> (arg0));
156   
157     return 0;
158   
159   } catch(std::exception& e) {
160     sq_throwerror(vm, e.what());
161     return SQ_ERROR;
162   } catch(...) {
163     sq_throwerror(vm, _SC("Unexpected exception while executing function 'sixteen_to_nine'"));
164     return SQ_ERROR;
165   }
166   
167 }
168
169 static SQInteger DisplayEffect_four_to_three_wrapper(HSQUIRRELVM vm)
170 {
171   SQUserPointer data;
172   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
173     sq_throwerror(vm, _SC("'four_to_three' called without instance"));
174     return SQ_ERROR;
175   }
176   Scripting::DisplayEffect* _this = reinterpret_cast<Scripting::DisplayEffect*> (data);
177   SQFloat arg0;
178   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
179     sq_throwerror(vm, _SC("Argument 1 not a float"));
180     return SQ_ERROR;
181   }
182   
183   try {
184     _this->four_to_three(static_cast<float> (arg0));
185   
186     return 0;
187   
188   } catch(std::exception& e) {
189     sq_throwerror(vm, e.what());
190     return SQ_ERROR;
191   } catch(...) {
192     sq_throwerror(vm, _SC("Unexpected exception while executing function 'four_to_three'"));
193     return SQ_ERROR;
194   }
195   
196 }
197
198 static SQInteger Camera_release_hook(SQUserPointer ptr, SQInteger )
199 {
200   Scripting::Camera* _this = reinterpret_cast<Scripting::Camera*> (ptr);
201   delete _this;
202   return 0;
203 }
204
205 static SQInteger Camera_shake_wrapper(HSQUIRRELVM vm)
206 {
207   SQUserPointer data;
208   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
209     sq_throwerror(vm, _SC("'shake' called without instance"));
210     return SQ_ERROR;
211   }
212   Scripting::Camera* _this = reinterpret_cast<Scripting::Camera*> (data);
213   SQFloat arg0;
214   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
215     sq_throwerror(vm, _SC("Argument 1 not a float"));
216     return SQ_ERROR;
217   }
218   SQFloat arg1;
219   if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) {
220     sq_throwerror(vm, _SC("Argument 2 not a float"));
221     return SQ_ERROR;
222   }
223   SQFloat arg2;
224   if(SQ_FAILED(sq_getfloat(vm, 4, &arg2))) {
225     sq_throwerror(vm, _SC("Argument 3 not a float"));
226     return SQ_ERROR;
227   }
228   
229   try {
230     _this->shake(static_cast<float> (arg0), static_cast<float> (arg1), static_cast<float> (arg2));
231   
232     return 0;
233   
234   } catch(std::exception& e) {
235     sq_throwerror(vm, e.what());
236     return SQ_ERROR;
237   } catch(...) {
238     sq_throwerror(vm, _SC("Unexpected exception while executing function 'shake'"));
239     return SQ_ERROR;
240   }
241   
242 }
243
244 static SQInteger Camera_set_pos_wrapper(HSQUIRRELVM vm)
245 {
246   SQUserPointer data;
247   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
248     sq_throwerror(vm, _SC("'set_pos' called without instance"));
249     return SQ_ERROR;
250   }
251   Scripting::Camera* _this = reinterpret_cast<Scripting::Camera*> (data);
252   SQFloat arg0;
253   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
254     sq_throwerror(vm, _SC("Argument 1 not a float"));
255     return SQ_ERROR;
256   }
257   SQFloat arg1;
258   if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) {
259     sq_throwerror(vm, _SC("Argument 2 not a float"));
260     return SQ_ERROR;
261   }
262   
263   try {
264     _this->set_pos(static_cast<float> (arg0), static_cast<float> (arg1));
265   
266     return 0;
267   
268   } catch(std::exception& e) {
269     sq_throwerror(vm, e.what());
270     return SQ_ERROR;
271   } catch(...) {
272     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_pos'"));
273     return SQ_ERROR;
274   }
275   
276 }
277
278 static SQInteger Camera_set_mode_wrapper(HSQUIRRELVM vm)
279 {
280   SQUserPointer data;
281   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
282     sq_throwerror(vm, _SC("'set_mode' called without instance"));
283     return SQ_ERROR;
284   }
285   Scripting::Camera* _this = reinterpret_cast<Scripting::Camera*> (data);
286   const SQChar* arg0;
287   if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) {
288     sq_throwerror(vm, _SC("Argument 1 not a string"));
289     return SQ_ERROR;
290   }
291   
292   try {
293     _this->set_mode(arg0);
294   
295     return 0;
296   
297   } catch(std::exception& e) {
298     sq_throwerror(vm, e.what());
299     return SQ_ERROR;
300   } catch(...) {
301     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_mode'"));
302     return SQ_ERROR;
303   }
304   
305 }
306
307 static SQInteger Camera_scroll_to_wrapper(HSQUIRRELVM vm)
308 {
309   SQUserPointer data;
310   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
311     sq_throwerror(vm, _SC("'scroll_to' called without instance"));
312     return SQ_ERROR;
313   }
314   Scripting::Camera* _this = reinterpret_cast<Scripting::Camera*> (data);
315   SQFloat arg0;
316   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
317     sq_throwerror(vm, _SC("Argument 1 not a float"));
318     return SQ_ERROR;
319   }
320   SQFloat arg1;
321   if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) {
322     sq_throwerror(vm, _SC("Argument 2 not a float"));
323     return SQ_ERROR;
324   }
325   SQFloat arg2;
326   if(SQ_FAILED(sq_getfloat(vm, 4, &arg2))) {
327     sq_throwerror(vm, _SC("Argument 3 not a float"));
328     return SQ_ERROR;
329   }
330   
331   try {
332     _this->scroll_to(static_cast<float> (arg0), static_cast<float> (arg1), static_cast<float> (arg2));
333   
334     return 0;
335   
336   } catch(std::exception& e) {
337     sq_throwerror(vm, e.what());
338     return SQ_ERROR;
339   } catch(...) {
340     sq_throwerror(vm, _SC("Unexpected exception while executing function 'scroll_to'"));
341     return SQ_ERROR;
342   }
343   
344 }
345
346 static SQInteger Level_release_hook(SQUserPointer ptr, SQInteger )
347 {
348   Scripting::Level* _this = reinterpret_cast<Scripting::Level*> (ptr);
349   delete _this;
350   return 0;
351 }
352
353 static SQInteger Level_finish_wrapper(HSQUIRRELVM vm)
354 {
355   SQUserPointer data;
356   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
357     sq_throwerror(vm, _SC("'finish' called without instance"));
358     return SQ_ERROR;
359   }
360   Scripting::Level* _this = reinterpret_cast<Scripting::Level*> (data);
361   SQBool arg0;
362   if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) {
363     sq_throwerror(vm, _SC("Argument 1 not a bool"));
364     return SQ_ERROR;
365   }
366   
367   try {
368     _this->finish(arg0 == SQTrue);
369   
370     return 0;
371   
372   } catch(std::exception& e) {
373     sq_throwerror(vm, e.what());
374     return SQ_ERROR;
375   } catch(...) {
376     sq_throwerror(vm, _SC("Unexpected exception while executing function 'finish'"));
377     return SQ_ERROR;
378   }
379   
380 }
381
382 static SQInteger Level_spawn_wrapper(HSQUIRRELVM vm)
383 {
384   SQUserPointer data;
385   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
386     sq_throwerror(vm, _SC("'spawn' called without instance"));
387     return SQ_ERROR;
388   }
389   Scripting::Level* _this = reinterpret_cast<Scripting::Level*> (data);
390   const SQChar* arg0;
391   if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) {
392     sq_throwerror(vm, _SC("Argument 1 not a string"));
393     return SQ_ERROR;
394   }
395   const SQChar* arg1;
396   if(SQ_FAILED(sq_getstring(vm, 3, &arg1))) {
397     sq_throwerror(vm, _SC("Argument 2 not a string"));
398     return SQ_ERROR;
399   }
400   
401   try {
402     _this->spawn(arg0, arg1);
403   
404     return 0;
405   
406   } catch(std::exception& e) {
407     sq_throwerror(vm, e.what());
408     return SQ_ERROR;
409   } catch(...) {
410     sq_throwerror(vm, _SC("Unexpected exception while executing function 'spawn'"));
411     return SQ_ERROR;
412   }
413   
414 }
415
416 static SQInteger Level_flip_vertically_wrapper(HSQUIRRELVM vm)
417 {
418   SQUserPointer data;
419   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
420     sq_throwerror(vm, _SC("'flip_vertically' called without instance"));
421     return SQ_ERROR;
422   }
423   Scripting::Level* _this = reinterpret_cast<Scripting::Level*> (data);
424   
425   try {
426     _this->flip_vertically();
427   
428     return 0;
429   
430   } catch(std::exception& e) {
431     sq_throwerror(vm, e.what());
432     return SQ_ERROR;
433   } catch(...) {
434     sq_throwerror(vm, _SC("Unexpected exception while executing function 'flip_vertically'"));
435     return SQ_ERROR;
436   }
437   
438 }
439
440 static SQInteger Level_toggle_pause_wrapper(HSQUIRRELVM vm)
441 {
442   SQUserPointer data;
443   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
444     sq_throwerror(vm, _SC("'toggle_pause' called without instance"));
445     return SQ_ERROR;
446   }
447   Scripting::Level* _this = reinterpret_cast<Scripting::Level*> (data);
448   
449   try {
450     _this->toggle_pause();
451   
452     return 0;
453   
454   } catch(std::exception& e) {
455     sq_throwerror(vm, e.what());
456     return SQ_ERROR;
457   } catch(...) {
458     sq_throwerror(vm, _SC("Unexpected exception while executing function 'toggle_pause'"));
459     return SQ_ERROR;
460   }
461   
462 }
463
464 static SQInteger ScriptedObject_release_hook(SQUserPointer ptr, SQInteger )
465 {
466   Scripting::ScriptedObject* _this = reinterpret_cast<Scripting::ScriptedObject*> (ptr);
467   delete _this;
468   return 0;
469 }
470
471 static SQInteger ScriptedObject_set_action_wrapper(HSQUIRRELVM vm)
472 {
473   SQUserPointer data;
474   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
475     sq_throwerror(vm, _SC("'set_action' called without instance"));
476     return SQ_ERROR;
477   }
478   Scripting::ScriptedObject* _this = reinterpret_cast<Scripting::ScriptedObject*> (data);
479   const SQChar* arg0;
480   if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) {
481     sq_throwerror(vm, _SC("Argument 1 not a string"));
482     return SQ_ERROR;
483   }
484   
485   try {
486     _this->set_action(arg0);
487   
488     return 0;
489   
490   } catch(std::exception& e) {
491     sq_throwerror(vm, e.what());
492     return SQ_ERROR;
493   } catch(...) {
494     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_action'"));
495     return SQ_ERROR;
496   }
497   
498 }
499
500 static SQInteger ScriptedObject_get_action_wrapper(HSQUIRRELVM vm)
501 {
502   SQUserPointer data;
503   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
504     sq_throwerror(vm, _SC("'get_action' called without instance"));
505     return SQ_ERROR;
506   }
507   Scripting::ScriptedObject* _this = reinterpret_cast<Scripting::ScriptedObject*> (data);
508   
509   try {
510     std::string return_value = _this->get_action();
511   
512     sq_pushstring(vm, return_value.c_str(), return_value.size());
513     return 1;
514   
515   } catch(std::exception& e) {
516     sq_throwerror(vm, e.what());
517     return SQ_ERROR;
518   } catch(...) {
519     sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_action'"));
520     return SQ_ERROR;
521   }
522   
523 }
524
525 static SQInteger ScriptedObject_move_wrapper(HSQUIRRELVM vm)
526 {
527   SQUserPointer data;
528   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
529     sq_throwerror(vm, _SC("'move' called without instance"));
530     return SQ_ERROR;
531   }
532   Scripting::ScriptedObject* _this = reinterpret_cast<Scripting::ScriptedObject*> (data);
533   SQFloat arg0;
534   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
535     sq_throwerror(vm, _SC("Argument 1 not a float"));
536     return SQ_ERROR;
537   }
538   SQFloat arg1;
539   if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) {
540     sq_throwerror(vm, _SC("Argument 2 not a float"));
541     return SQ_ERROR;
542   }
543   
544   try {
545     _this->move(static_cast<float> (arg0), static_cast<float> (arg1));
546   
547     return 0;
548   
549   } catch(std::exception& e) {
550     sq_throwerror(vm, e.what());
551     return SQ_ERROR;
552   } catch(...) {
553     sq_throwerror(vm, _SC("Unexpected exception while executing function 'move'"));
554     return SQ_ERROR;
555   }
556   
557 }
558
559 static SQInteger ScriptedObject_set_pos_wrapper(HSQUIRRELVM vm)
560 {
561   SQUserPointer data;
562   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
563     sq_throwerror(vm, _SC("'set_pos' called without instance"));
564     return SQ_ERROR;
565   }
566   Scripting::ScriptedObject* _this = reinterpret_cast<Scripting::ScriptedObject*> (data);
567   SQFloat arg0;
568   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
569     sq_throwerror(vm, _SC("Argument 1 not a float"));
570     return SQ_ERROR;
571   }
572   SQFloat arg1;
573   if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) {
574     sq_throwerror(vm, _SC("Argument 2 not a float"));
575     return SQ_ERROR;
576   }
577   
578   try {
579     _this->set_pos(static_cast<float> (arg0), static_cast<float> (arg1));
580   
581     return 0;
582   
583   } catch(std::exception& e) {
584     sq_throwerror(vm, e.what());
585     return SQ_ERROR;
586   } catch(...) {
587     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_pos'"));
588     return SQ_ERROR;
589   }
590   
591 }
592
593 static SQInteger ScriptedObject_get_pos_x_wrapper(HSQUIRRELVM vm)
594 {
595   SQUserPointer data;
596   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
597     sq_throwerror(vm, _SC("'get_pos_x' called without instance"));
598     return SQ_ERROR;
599   }
600   Scripting::ScriptedObject* _this = reinterpret_cast<Scripting::ScriptedObject*> (data);
601   
602   try {
603     float return_value = _this->get_pos_x();
604   
605     sq_pushfloat(vm, return_value);
606     return 1;
607   
608   } catch(std::exception& e) {
609     sq_throwerror(vm, e.what());
610     return SQ_ERROR;
611   } catch(...) {
612     sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_pos_x'"));
613     return SQ_ERROR;
614   }
615   
616 }
617
618 static SQInteger ScriptedObject_get_pos_y_wrapper(HSQUIRRELVM vm)
619 {
620   SQUserPointer data;
621   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
622     sq_throwerror(vm, _SC("'get_pos_y' called without instance"));
623     return SQ_ERROR;
624   }
625   Scripting::ScriptedObject* _this = reinterpret_cast<Scripting::ScriptedObject*> (data);
626   
627   try {
628     float return_value = _this->get_pos_y();
629   
630     sq_pushfloat(vm, return_value);
631     return 1;
632   
633   } catch(std::exception& e) {
634     sq_throwerror(vm, e.what());
635     return SQ_ERROR;
636   } catch(...) {
637     sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_pos_y'"));
638     return SQ_ERROR;
639   }
640   
641 }
642
643 static SQInteger ScriptedObject_set_velocity_wrapper(HSQUIRRELVM vm)
644 {
645   SQUserPointer data;
646   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
647     sq_throwerror(vm, _SC("'set_velocity' called without instance"));
648     return SQ_ERROR;
649   }
650   Scripting::ScriptedObject* _this = reinterpret_cast<Scripting::ScriptedObject*> (data);
651   SQFloat arg0;
652   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
653     sq_throwerror(vm, _SC("Argument 1 not a float"));
654     return SQ_ERROR;
655   }
656   SQFloat arg1;
657   if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) {
658     sq_throwerror(vm, _SC("Argument 2 not a float"));
659     return SQ_ERROR;
660   }
661   
662   try {
663     _this->set_velocity(static_cast<float> (arg0), static_cast<float> (arg1));
664   
665     return 0;
666   
667   } catch(std::exception& e) {
668     sq_throwerror(vm, e.what());
669     return SQ_ERROR;
670   } catch(...) {
671     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_velocity'"));
672     return SQ_ERROR;
673   }
674   
675 }
676
677 static SQInteger ScriptedObject_get_velocity_x_wrapper(HSQUIRRELVM vm)
678 {
679   SQUserPointer data;
680   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
681     sq_throwerror(vm, _SC("'get_velocity_x' called without instance"));
682     return SQ_ERROR;
683   }
684   Scripting::ScriptedObject* _this = reinterpret_cast<Scripting::ScriptedObject*> (data);
685   
686   try {
687     float return_value = _this->get_velocity_x();
688   
689     sq_pushfloat(vm, return_value);
690     return 1;
691   
692   } catch(std::exception& e) {
693     sq_throwerror(vm, e.what());
694     return SQ_ERROR;
695   } catch(...) {
696     sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_velocity_x'"));
697     return SQ_ERROR;
698   }
699   
700 }
701
702 static SQInteger ScriptedObject_get_velocity_y_wrapper(HSQUIRRELVM vm)
703 {
704   SQUserPointer data;
705   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
706     sq_throwerror(vm, _SC("'get_velocity_y' called without instance"));
707     return SQ_ERROR;
708   }
709   Scripting::ScriptedObject* _this = reinterpret_cast<Scripting::ScriptedObject*> (data);
710   
711   try {
712     float return_value = _this->get_velocity_y();
713   
714     sq_pushfloat(vm, return_value);
715     return 1;
716   
717   } catch(std::exception& e) {
718     sq_throwerror(vm, e.what());
719     return SQ_ERROR;
720   } catch(...) {
721     sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_velocity_y'"));
722     return SQ_ERROR;
723   }
724   
725 }
726
727 static SQInteger ScriptedObject_set_visible_wrapper(HSQUIRRELVM vm)
728 {
729   SQUserPointer data;
730   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
731     sq_throwerror(vm, _SC("'set_visible' called without instance"));
732     return SQ_ERROR;
733   }
734   Scripting::ScriptedObject* _this = reinterpret_cast<Scripting::ScriptedObject*> (data);
735   SQBool arg0;
736   if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) {
737     sq_throwerror(vm, _SC("Argument 1 not a bool"));
738     return SQ_ERROR;
739   }
740   
741   try {
742     _this->set_visible(arg0 == SQTrue);
743   
744     return 0;
745   
746   } catch(std::exception& e) {
747     sq_throwerror(vm, e.what());
748     return SQ_ERROR;
749   } catch(...) {
750     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_visible'"));
751     return SQ_ERROR;
752   }
753   
754 }
755
756 static SQInteger ScriptedObject_is_visible_wrapper(HSQUIRRELVM vm)
757 {
758   SQUserPointer data;
759   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
760     sq_throwerror(vm, _SC("'is_visible' called without instance"));
761     return SQ_ERROR;
762   }
763   Scripting::ScriptedObject* _this = reinterpret_cast<Scripting::ScriptedObject*> (data);
764   
765   try {
766     bool return_value = _this->is_visible();
767   
768     sq_pushbool(vm, return_value);
769     return 1;
770   
771   } catch(std::exception& e) {
772     sq_throwerror(vm, e.what());
773     return SQ_ERROR;
774   } catch(...) {
775     sq_throwerror(vm, _SC("Unexpected exception while executing function 'is_visible'"));
776     return SQ_ERROR;
777   }
778   
779 }
780
781 static SQInteger ScriptedObject_set_solid_wrapper(HSQUIRRELVM vm)
782 {
783   SQUserPointer data;
784   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
785     sq_throwerror(vm, _SC("'set_solid' called without instance"));
786     return SQ_ERROR;
787   }
788   Scripting::ScriptedObject* _this = reinterpret_cast<Scripting::ScriptedObject*> (data);
789   SQBool arg0;
790   if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) {
791     sq_throwerror(vm, _SC("Argument 1 not a bool"));
792     return SQ_ERROR;
793   }
794   
795   try {
796     _this->set_solid(arg0 == SQTrue);
797   
798     return 0;
799   
800   } catch(std::exception& e) {
801     sq_throwerror(vm, e.what());
802     return SQ_ERROR;
803   } catch(...) {
804     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_solid'"));
805     return SQ_ERROR;
806   }
807   
808 }
809
810 static SQInteger ScriptedObject_is_solid_wrapper(HSQUIRRELVM vm)
811 {
812   SQUserPointer data;
813   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
814     sq_throwerror(vm, _SC("'is_solid' called without instance"));
815     return SQ_ERROR;
816   }
817   Scripting::ScriptedObject* _this = reinterpret_cast<Scripting::ScriptedObject*> (data);
818   
819   try {
820     bool return_value = _this->is_solid();
821   
822     sq_pushbool(vm, return_value);
823     return 1;
824   
825   } catch(std::exception& e) {
826     sq_throwerror(vm, e.what());
827     return SQ_ERROR;
828   } catch(...) {
829     sq_throwerror(vm, _SC("Unexpected exception while executing function 'is_solid'"));
830     return SQ_ERROR;
831   }
832   
833 }
834
835 static SQInteger ScriptedObject_get_name_wrapper(HSQUIRRELVM vm)
836 {
837   SQUserPointer data;
838   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
839     sq_throwerror(vm, _SC("'get_name' called without instance"));
840     return SQ_ERROR;
841   }
842   Scripting::ScriptedObject* _this = reinterpret_cast<Scripting::ScriptedObject*> (data);
843   
844   try {
845     std::string return_value = _this->get_name();
846   
847     sq_pushstring(vm, return_value.c_str(), return_value.size());
848     return 1;
849   
850   } catch(std::exception& e) {
851     sq_throwerror(vm, e.what());
852     return SQ_ERROR;
853   } catch(...) {
854     sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_name'"));
855     return SQ_ERROR;
856   }
857   
858 }
859
860 static SQInteger Text_release_hook(SQUserPointer ptr, SQInteger )
861 {
862   Scripting::Text* _this = reinterpret_cast<Scripting::Text*> (ptr);
863   delete _this;
864   return 0;
865 }
866
867 static SQInteger Text_set_text_wrapper(HSQUIRRELVM vm)
868 {
869   SQUserPointer data;
870   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
871     sq_throwerror(vm, _SC("'set_text' called without instance"));
872     return SQ_ERROR;
873   }
874   Scripting::Text* _this = reinterpret_cast<Scripting::Text*> (data);
875   const SQChar* arg0;
876   if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) {
877     sq_throwerror(vm, _SC("Argument 1 not a string"));
878     return SQ_ERROR;
879   }
880   
881   try {
882     _this->set_text(arg0);
883   
884     return 0;
885   
886   } catch(std::exception& e) {
887     sq_throwerror(vm, e.what());
888     return SQ_ERROR;
889   } catch(...) {
890     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_text'"));
891     return SQ_ERROR;
892   }
893   
894 }
895
896 static SQInteger Text_set_font_wrapper(HSQUIRRELVM vm)
897 {
898   SQUserPointer data;
899   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
900     sq_throwerror(vm, _SC("'set_font' called without instance"));
901     return SQ_ERROR;
902   }
903   Scripting::Text* _this = reinterpret_cast<Scripting::Text*> (data);
904   const SQChar* arg0;
905   if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) {
906     sq_throwerror(vm, _SC("Argument 1 not a string"));
907     return SQ_ERROR;
908   }
909   
910   try {
911     _this->set_font(arg0);
912   
913     return 0;
914   
915   } catch(std::exception& e) {
916     sq_throwerror(vm, e.what());
917     return SQ_ERROR;
918   } catch(...) {
919     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_font'"));
920     return SQ_ERROR;
921   }
922   
923 }
924
925 static SQInteger Text_fade_in_wrapper(HSQUIRRELVM vm)
926 {
927   SQUserPointer data;
928   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
929     sq_throwerror(vm, _SC("'fade_in' called without instance"));
930     return SQ_ERROR;
931   }
932   Scripting::Text* _this = reinterpret_cast<Scripting::Text*> (data);
933   SQFloat arg0;
934   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
935     sq_throwerror(vm, _SC("Argument 1 not a float"));
936     return SQ_ERROR;
937   }
938   
939   try {
940     _this->fade_in(static_cast<float> (arg0));
941   
942     return 0;
943   
944   } catch(std::exception& e) {
945     sq_throwerror(vm, e.what());
946     return SQ_ERROR;
947   } catch(...) {
948     sq_throwerror(vm, _SC("Unexpected exception while executing function 'fade_in'"));
949     return SQ_ERROR;
950   }
951   
952 }
953
954 static SQInteger Text_fade_out_wrapper(HSQUIRRELVM vm)
955 {
956   SQUserPointer data;
957   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
958     sq_throwerror(vm, _SC("'fade_out' called without instance"));
959     return SQ_ERROR;
960   }
961   Scripting::Text* _this = reinterpret_cast<Scripting::Text*> (data);
962   SQFloat arg0;
963   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
964     sq_throwerror(vm, _SC("Argument 1 not a float"));
965     return SQ_ERROR;
966   }
967   
968   try {
969     _this->fade_out(static_cast<float> (arg0));
970   
971     return 0;
972   
973   } catch(std::exception& e) {
974     sq_throwerror(vm, e.what());
975     return SQ_ERROR;
976   } catch(...) {
977     sq_throwerror(vm, _SC("Unexpected exception while executing function 'fade_out'"));
978     return SQ_ERROR;
979   }
980   
981 }
982
983 static SQInteger Text_set_visible_wrapper(HSQUIRRELVM vm)
984 {
985   SQUserPointer data;
986   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
987     sq_throwerror(vm, _SC("'set_visible' called without instance"));
988     return SQ_ERROR;
989   }
990   Scripting::Text* _this = reinterpret_cast<Scripting::Text*> (data);
991   SQBool arg0;
992   if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) {
993     sq_throwerror(vm, _SC("Argument 1 not a bool"));
994     return SQ_ERROR;
995   }
996   
997   try {
998     _this->set_visible(arg0 == SQTrue);
999   
1000     return 0;
1001   
1002   } catch(std::exception& e) {
1003     sq_throwerror(vm, e.what());
1004     return SQ_ERROR;
1005   } catch(...) {
1006     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_visible'"));
1007     return SQ_ERROR;
1008   }
1009   
1010 }
1011
1012 static SQInteger Text_set_centered_wrapper(HSQUIRRELVM vm)
1013 {
1014   SQUserPointer data;
1015   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1016     sq_throwerror(vm, _SC("'set_centered' called without instance"));
1017     return SQ_ERROR;
1018   }
1019   Scripting::Text* _this = reinterpret_cast<Scripting::Text*> (data);
1020   SQBool arg0;
1021   if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) {
1022     sq_throwerror(vm, _SC("Argument 1 not a bool"));
1023     return SQ_ERROR;
1024   }
1025   
1026   try {
1027     _this->set_centered(arg0 == SQTrue);
1028   
1029     return 0;
1030   
1031   } catch(std::exception& e) {
1032     sq_throwerror(vm, e.what());
1033     return SQ_ERROR;
1034   } catch(...) {
1035     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_centered'"));
1036     return SQ_ERROR;
1037   }
1038   
1039 }
1040
1041 static SQInteger Player_release_hook(SQUserPointer ptr, SQInteger )
1042 {
1043   Scripting::Player* _this = reinterpret_cast<Scripting::Player*> (ptr);
1044   delete _this;
1045   return 0;
1046 }
1047
1048 static SQInteger Player_add_bonus_wrapper(HSQUIRRELVM vm)
1049 {
1050   SQUserPointer data;
1051   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1052     sq_throwerror(vm, _SC("'add_bonus' called without instance"));
1053     return SQ_ERROR;
1054   }
1055   Scripting::Player* _this = reinterpret_cast<Scripting::Player*> (data);
1056   const SQChar* arg0;
1057   if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) {
1058     sq_throwerror(vm, _SC("Argument 1 not a string"));
1059     return SQ_ERROR;
1060   }
1061   
1062   try {
1063     bool return_value = _this->add_bonus(arg0);
1064   
1065     sq_pushbool(vm, return_value);
1066     return 1;
1067   
1068   } catch(std::exception& e) {
1069     sq_throwerror(vm, e.what());
1070     return SQ_ERROR;
1071   } catch(...) {
1072     sq_throwerror(vm, _SC("Unexpected exception while executing function 'add_bonus'"));
1073     return SQ_ERROR;
1074   }
1075   
1076 }
1077
1078 static SQInteger Player_add_coins_wrapper(HSQUIRRELVM vm)
1079 {
1080   SQUserPointer data;
1081   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1082     sq_throwerror(vm, _SC("'add_coins' called without instance"));
1083     return SQ_ERROR;
1084   }
1085   Scripting::Player* _this = reinterpret_cast<Scripting::Player*> (data);
1086   SQInteger arg0;
1087   if(SQ_FAILED(sq_getinteger(vm, 2, &arg0))) {
1088     sq_throwerror(vm, _SC("Argument 1 not an integer"));
1089     return SQ_ERROR;
1090   }
1091   
1092   try {
1093     _this->add_coins(static_cast<int> (arg0));
1094   
1095     return 0;
1096   
1097   } catch(std::exception& e) {
1098     sq_throwerror(vm, e.what());
1099     return SQ_ERROR;
1100   } catch(...) {
1101     sq_throwerror(vm, _SC("Unexpected exception while executing function 'add_coins'"));
1102     return SQ_ERROR;
1103   }
1104   
1105 }
1106
1107 static SQInteger Player_make_invincible_wrapper(HSQUIRRELVM vm)
1108 {
1109   SQUserPointer data;
1110   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1111     sq_throwerror(vm, _SC("'make_invincible' called without instance"));
1112     return SQ_ERROR;
1113   }
1114   Scripting::Player* _this = reinterpret_cast<Scripting::Player*> (data);
1115   
1116   try {
1117     _this->make_invincible();
1118   
1119     return 0;
1120   
1121   } catch(std::exception& e) {
1122     sq_throwerror(vm, e.what());
1123     return SQ_ERROR;
1124   } catch(...) {
1125     sq_throwerror(vm, _SC("Unexpected exception while executing function 'make_invincible'"));
1126     return SQ_ERROR;
1127   }
1128   
1129 }
1130
1131 static SQInteger Player_deactivate_wrapper(HSQUIRRELVM vm)
1132 {
1133   SQUserPointer data;
1134   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1135     sq_throwerror(vm, _SC("'deactivate' called without instance"));
1136     return SQ_ERROR;
1137   }
1138   Scripting::Player* _this = reinterpret_cast<Scripting::Player*> (data);
1139   
1140   try {
1141     _this->deactivate();
1142   
1143     return 0;
1144   
1145   } catch(std::exception& e) {
1146     sq_throwerror(vm, e.what());
1147     return SQ_ERROR;
1148   } catch(...) {
1149     sq_throwerror(vm, _SC("Unexpected exception while executing function 'deactivate'"));
1150     return SQ_ERROR;
1151   }
1152   
1153 }
1154
1155 static SQInteger Player_activate_wrapper(HSQUIRRELVM vm)
1156 {
1157   SQUserPointer data;
1158   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1159     sq_throwerror(vm, _SC("'activate' called without instance"));
1160     return SQ_ERROR;
1161   }
1162   Scripting::Player* _this = reinterpret_cast<Scripting::Player*> (data);
1163   
1164   try {
1165     _this->activate();
1166   
1167     return 0;
1168   
1169   } catch(std::exception& e) {
1170     sq_throwerror(vm, e.what());
1171     return SQ_ERROR;
1172   } catch(...) {
1173     sq_throwerror(vm, _SC("Unexpected exception while executing function 'activate'"));
1174     return SQ_ERROR;
1175   }
1176   
1177 }
1178
1179 static SQInteger Player_walk_wrapper(HSQUIRRELVM vm)
1180 {
1181   SQUserPointer data;
1182   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1183     sq_throwerror(vm, _SC("'walk' called without instance"));
1184     return SQ_ERROR;
1185   }
1186   Scripting::Player* _this = reinterpret_cast<Scripting::Player*> (data);
1187   SQFloat arg0;
1188   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
1189     sq_throwerror(vm, _SC("Argument 1 not a float"));
1190     return SQ_ERROR;
1191   }
1192   
1193   try {
1194     _this->walk(static_cast<float> (arg0));
1195   
1196     return 0;
1197   
1198   } catch(std::exception& e) {
1199     sq_throwerror(vm, e.what());
1200     return SQ_ERROR;
1201   } catch(...) {
1202     sq_throwerror(vm, _SC("Unexpected exception while executing function 'walk'"));
1203     return SQ_ERROR;
1204   }
1205   
1206 }
1207
1208 static SQInteger Player_set_visible_wrapper(HSQUIRRELVM vm)
1209 {
1210   SQUserPointer data;
1211   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1212     sq_throwerror(vm, _SC("'set_visible' called without instance"));
1213     return SQ_ERROR;
1214   }
1215   Scripting::Player* _this = reinterpret_cast<Scripting::Player*> (data);
1216   SQBool arg0;
1217   if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) {
1218     sq_throwerror(vm, _SC("Argument 1 not a bool"));
1219     return SQ_ERROR;
1220   }
1221   
1222   try {
1223     _this->set_visible(arg0 == SQTrue);
1224   
1225     return 0;
1226   
1227   } catch(std::exception& e) {
1228     sq_throwerror(vm, e.what());
1229     return SQ_ERROR;
1230   } catch(...) {
1231     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_visible'"));
1232     return SQ_ERROR;
1233   }
1234   
1235 }
1236
1237 static SQInteger Player_get_visible_wrapper(HSQUIRRELVM vm)
1238 {
1239   SQUserPointer data;
1240   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1241     sq_throwerror(vm, _SC("'get_visible' called without instance"));
1242     return SQ_ERROR;
1243   }
1244   Scripting::Player* _this = reinterpret_cast<Scripting::Player*> (data);
1245   
1246   try {
1247     bool return_value = _this->get_visible();
1248   
1249     sq_pushbool(vm, return_value);
1250     return 1;
1251   
1252   } catch(std::exception& e) {
1253     sq_throwerror(vm, e.what());
1254     return SQ_ERROR;
1255   } catch(...) {
1256     sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_visible'"));
1257     return SQ_ERROR;
1258   }
1259   
1260 }
1261
1262 static SQInteger Player_kill_wrapper(HSQUIRRELVM vm)
1263 {
1264   SQUserPointer data;
1265   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1266     sq_throwerror(vm, _SC("'kill' called without instance"));
1267     return SQ_ERROR;
1268   }
1269   Scripting::Player* _this = reinterpret_cast<Scripting::Player*> (data);
1270   SQBool arg0;
1271   if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) {
1272     sq_throwerror(vm, _SC("Argument 1 not a bool"));
1273     return SQ_ERROR;
1274   }
1275   
1276   try {
1277     _this->kill(arg0 == SQTrue);
1278   
1279     return 0;
1280   
1281   } catch(std::exception& e) {
1282     sq_throwerror(vm, e.what());
1283     return SQ_ERROR;
1284   } catch(...) {
1285     sq_throwerror(vm, _SC("Unexpected exception while executing function 'kill'"));
1286     return SQ_ERROR;
1287   }
1288   
1289 }
1290
1291 static SQInteger Player_set_ghost_mode_wrapper(HSQUIRRELVM vm)
1292 {
1293   SQUserPointer data;
1294   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1295     sq_throwerror(vm, _SC("'set_ghost_mode' called without instance"));
1296     return SQ_ERROR;
1297   }
1298   Scripting::Player* _this = reinterpret_cast<Scripting::Player*> (data);
1299   SQBool arg0;
1300   if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) {
1301     sq_throwerror(vm, _SC("Argument 1 not a bool"));
1302     return SQ_ERROR;
1303   }
1304   
1305   try {
1306     _this->set_ghost_mode(arg0 == SQTrue);
1307   
1308     return 0;
1309   
1310   } catch(std::exception& e) {
1311     sq_throwerror(vm, e.what());
1312     return SQ_ERROR;
1313   } catch(...) {
1314     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_ghost_mode'"));
1315     return SQ_ERROR;
1316   }
1317   
1318 }
1319
1320 static SQInteger Player_get_ghost_mode_wrapper(HSQUIRRELVM vm)
1321 {
1322   SQUserPointer data;
1323   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1324     sq_throwerror(vm, _SC("'get_ghost_mode' called without instance"));
1325     return SQ_ERROR;
1326   }
1327   Scripting::Player* _this = reinterpret_cast<Scripting::Player*> (data);
1328   
1329   try {
1330     bool return_value = _this->get_ghost_mode();
1331   
1332     sq_pushbool(vm, return_value);
1333     return 1;
1334   
1335   } catch(std::exception& e) {
1336     sq_throwerror(vm, e.what());
1337     return SQ_ERROR;
1338   } catch(...) {
1339     sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_ghost_mode'"));
1340     return SQ_ERROR;
1341   }
1342   
1343 }
1344
1345 static SQInteger Player_do_cheer_wrapper(HSQUIRRELVM vm)
1346 {
1347   SQUserPointer data;
1348   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1349     sq_throwerror(vm, _SC("'do_cheer' called without instance"));
1350     return SQ_ERROR;
1351   }
1352   Scripting::Player* _this = reinterpret_cast<Scripting::Player*> (data);
1353   
1354   try {
1355     _this->do_cheer();
1356   
1357     return 0;
1358   
1359   } catch(std::exception& e) {
1360     sq_throwerror(vm, e.what());
1361     return SQ_ERROR;
1362   } catch(...) {
1363     sq_throwerror(vm, _SC("Unexpected exception while executing function 'do_cheer'"));
1364     return SQ_ERROR;
1365   }
1366   
1367 }
1368
1369 static SQInteger Player_do_duck_wrapper(HSQUIRRELVM vm)
1370 {
1371   SQUserPointer data;
1372   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1373     sq_throwerror(vm, _SC("'do_duck' called without instance"));
1374     return SQ_ERROR;
1375   }
1376   Scripting::Player* _this = reinterpret_cast<Scripting::Player*> (data);
1377   
1378   try {
1379     _this->do_duck();
1380   
1381     return 0;
1382   
1383   } catch(std::exception& e) {
1384     sq_throwerror(vm, e.what());
1385     return SQ_ERROR;
1386   } catch(...) {
1387     sq_throwerror(vm, _SC("Unexpected exception while executing function 'do_duck'"));
1388     return SQ_ERROR;
1389   }
1390   
1391 }
1392
1393 static SQInteger Player_do_standup_wrapper(HSQUIRRELVM vm)
1394 {
1395   SQUserPointer data;
1396   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1397     sq_throwerror(vm, _SC("'do_standup' called without instance"));
1398     return SQ_ERROR;
1399   }
1400   Scripting::Player* _this = reinterpret_cast<Scripting::Player*> (data);
1401   
1402   try {
1403     _this->do_standup();
1404   
1405     return 0;
1406   
1407   } catch(std::exception& e) {
1408     sq_throwerror(vm, e.what());
1409     return SQ_ERROR;
1410   } catch(...) {
1411     sq_throwerror(vm, _SC("Unexpected exception while executing function 'do_standup'"));
1412     return SQ_ERROR;
1413   }
1414   
1415 }
1416
1417 static SQInteger Player_do_backflip_wrapper(HSQUIRRELVM vm)
1418 {
1419   SQUserPointer data;
1420   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1421     sq_throwerror(vm, _SC("'do_backflip' called without instance"));
1422     return SQ_ERROR;
1423   }
1424   Scripting::Player* _this = reinterpret_cast<Scripting::Player*> (data);
1425   
1426   try {
1427     _this->do_backflip();
1428   
1429     return 0;
1430   
1431   } catch(std::exception& e) {
1432     sq_throwerror(vm, e.what());
1433     return SQ_ERROR;
1434   } catch(...) {
1435     sq_throwerror(vm, _SC("Unexpected exception while executing function 'do_backflip'"));
1436     return SQ_ERROR;
1437   }
1438   
1439 }
1440
1441 static SQInteger Player_do_jump_wrapper(HSQUIRRELVM vm)
1442 {
1443   SQUserPointer data;
1444   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1445     sq_throwerror(vm, _SC("'do_jump' called without instance"));
1446     return SQ_ERROR;
1447   }
1448   Scripting::Player* _this = reinterpret_cast<Scripting::Player*> (data);
1449   SQFloat arg0;
1450   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
1451     sq_throwerror(vm, _SC("Argument 1 not a float"));
1452     return SQ_ERROR;
1453   }
1454   
1455   try {
1456     _this->do_jump(static_cast<float> (arg0));
1457   
1458     return 0;
1459   
1460   } catch(std::exception& e) {
1461     sq_throwerror(vm, e.what());
1462     return SQ_ERROR;
1463   } catch(...) {
1464     sq_throwerror(vm, _SC("Unexpected exception while executing function 'do_jump'"));
1465     return SQ_ERROR;
1466   }
1467   
1468 }
1469
1470 static SQInteger FloatingImage_release_hook(SQUserPointer ptr, SQInteger )
1471 {
1472   Scripting::FloatingImage* _this = reinterpret_cast<Scripting::FloatingImage*> (ptr);
1473   delete _this;
1474   return 0;
1475 }
1476
1477 static SQInteger FloatingImage_constructor_wrapper(HSQUIRRELVM vm)
1478 {
1479   const SQChar* arg0;
1480   if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) {
1481     sq_throwerror(vm, _SC("Argument 1 not a string"));
1482     return SQ_ERROR;
1483   }
1484   
1485   try {
1486     Scripting::FloatingImage* _this = new Scripting::FloatingImage(arg0);
1487   if(SQ_FAILED(sq_setinstanceup(vm, 1, _this))) {
1488     sq_throwerror(vm, _SC("Couldn't setup instance of 'FloatingImage' class"));
1489     return SQ_ERROR;
1490   }
1491   sq_setreleasehook(vm, 1, FloatingImage_release_hook);
1492   
1493     return 0;
1494   
1495   } catch(std::exception& e) {
1496     sq_throwerror(vm, e.what());
1497     return SQ_ERROR;
1498   } catch(...) {
1499     sq_throwerror(vm, _SC("Unexpected exception while executing function 'constructor'"));
1500     return SQ_ERROR;
1501   }
1502   
1503 }
1504
1505 static SQInteger FloatingImage_set_layer_wrapper(HSQUIRRELVM vm)
1506 {
1507   SQUserPointer data;
1508   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1509     sq_throwerror(vm, _SC("'set_layer' called without instance"));
1510     return SQ_ERROR;
1511   }
1512   Scripting::FloatingImage* _this = reinterpret_cast<Scripting::FloatingImage*> (data);
1513   SQInteger arg0;
1514   if(SQ_FAILED(sq_getinteger(vm, 2, &arg0))) {
1515     sq_throwerror(vm, _SC("Argument 1 not an integer"));
1516     return SQ_ERROR;
1517   }
1518   
1519   try {
1520     _this->set_layer(static_cast<int> (arg0));
1521   
1522     return 0;
1523   
1524   } catch(std::exception& e) {
1525     sq_throwerror(vm, e.what());
1526     return SQ_ERROR;
1527   } catch(...) {
1528     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_layer'"));
1529     return SQ_ERROR;
1530   }
1531   
1532 }
1533
1534 static SQInteger FloatingImage_get_layer_wrapper(HSQUIRRELVM vm)
1535 {
1536   SQUserPointer data;
1537   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1538     sq_throwerror(vm, _SC("'get_layer' called without instance"));
1539     return SQ_ERROR;
1540   }
1541   Scripting::FloatingImage* _this = reinterpret_cast<Scripting::FloatingImage*> (data);
1542   
1543   try {
1544     int return_value = _this->get_layer();
1545   
1546     sq_pushinteger(vm, return_value);
1547     return 1;
1548   
1549   } catch(std::exception& e) {
1550     sq_throwerror(vm, e.what());
1551     return SQ_ERROR;
1552   } catch(...) {
1553     sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_layer'"));
1554     return SQ_ERROR;
1555   }
1556   
1557 }
1558
1559 static SQInteger FloatingImage_set_pos_wrapper(HSQUIRRELVM vm)
1560 {
1561   SQUserPointer data;
1562   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1563     sq_throwerror(vm, _SC("'set_pos' called without instance"));
1564     return SQ_ERROR;
1565   }
1566   Scripting::FloatingImage* _this = reinterpret_cast<Scripting::FloatingImage*> (data);
1567   SQFloat arg0;
1568   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
1569     sq_throwerror(vm, _SC("Argument 1 not a float"));
1570     return SQ_ERROR;
1571   }
1572   SQFloat arg1;
1573   if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) {
1574     sq_throwerror(vm, _SC("Argument 2 not a float"));
1575     return SQ_ERROR;
1576   }
1577   
1578   try {
1579     _this->set_pos(static_cast<float> (arg0), static_cast<float> (arg1));
1580   
1581     return 0;
1582   
1583   } catch(std::exception& e) {
1584     sq_throwerror(vm, e.what());
1585     return SQ_ERROR;
1586   } catch(...) {
1587     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_pos'"));
1588     return SQ_ERROR;
1589   }
1590   
1591 }
1592
1593 static SQInteger FloatingImage_get_pos_x_wrapper(HSQUIRRELVM vm)
1594 {
1595   SQUserPointer data;
1596   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1597     sq_throwerror(vm, _SC("'get_pos_x' called without instance"));
1598     return SQ_ERROR;
1599   }
1600   Scripting::FloatingImage* _this = reinterpret_cast<Scripting::FloatingImage*> (data);
1601   
1602   try {
1603     float return_value = _this->get_pos_x();
1604   
1605     sq_pushfloat(vm, return_value);
1606     return 1;
1607   
1608   } catch(std::exception& e) {
1609     sq_throwerror(vm, e.what());
1610     return SQ_ERROR;
1611   } catch(...) {
1612     sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_pos_x'"));
1613     return SQ_ERROR;
1614   }
1615   
1616 }
1617
1618 static SQInteger FloatingImage_get_pos_y_wrapper(HSQUIRRELVM vm)
1619 {
1620   SQUserPointer data;
1621   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1622     sq_throwerror(vm, _SC("'get_pos_y' called without instance"));
1623     return SQ_ERROR;
1624   }
1625   Scripting::FloatingImage* _this = reinterpret_cast<Scripting::FloatingImage*> (data);
1626   
1627   try {
1628     float return_value = _this->get_pos_y();
1629   
1630     sq_pushfloat(vm, return_value);
1631     return 1;
1632   
1633   } catch(std::exception& e) {
1634     sq_throwerror(vm, e.what());
1635     return SQ_ERROR;
1636   } catch(...) {
1637     sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_pos_y'"));
1638     return SQ_ERROR;
1639   }
1640   
1641 }
1642
1643 static SQInteger FloatingImage_set_anchor_point_wrapper(HSQUIRRELVM vm)
1644 {
1645   SQUserPointer data;
1646   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1647     sq_throwerror(vm, _SC("'set_anchor_point' called without instance"));
1648     return SQ_ERROR;
1649   }
1650   Scripting::FloatingImage* _this = reinterpret_cast<Scripting::FloatingImage*> (data);
1651   SQInteger arg0;
1652   if(SQ_FAILED(sq_getinteger(vm, 2, &arg0))) {
1653     sq_throwerror(vm, _SC("Argument 1 not an integer"));
1654     return SQ_ERROR;
1655   }
1656   
1657   try {
1658     _this->set_anchor_point(static_cast<int> (arg0));
1659   
1660     return 0;
1661   
1662   } catch(std::exception& e) {
1663     sq_throwerror(vm, e.what());
1664     return SQ_ERROR;
1665   } catch(...) {
1666     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_anchor_point'"));
1667     return SQ_ERROR;
1668   }
1669   
1670 }
1671
1672 static SQInteger FloatingImage_get_anchor_point_wrapper(HSQUIRRELVM vm)
1673 {
1674   SQUserPointer data;
1675   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1676     sq_throwerror(vm, _SC("'get_anchor_point' called without instance"));
1677     return SQ_ERROR;
1678   }
1679   Scripting::FloatingImage* _this = reinterpret_cast<Scripting::FloatingImage*> (data);
1680   
1681   try {
1682     int return_value = _this->get_anchor_point();
1683   
1684     sq_pushinteger(vm, return_value);
1685     return 1;
1686   
1687   } catch(std::exception& e) {
1688     sq_throwerror(vm, e.what());
1689     return SQ_ERROR;
1690   } catch(...) {
1691     sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_anchor_point'"));
1692     return SQ_ERROR;
1693   }
1694   
1695 }
1696
1697 static SQInteger FloatingImage_set_visible_wrapper(HSQUIRRELVM vm)
1698 {
1699   SQUserPointer data;
1700   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1701     sq_throwerror(vm, _SC("'set_visible' called without instance"));
1702     return SQ_ERROR;
1703   }
1704   Scripting::FloatingImage* _this = reinterpret_cast<Scripting::FloatingImage*> (data);
1705   SQBool arg0;
1706   if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) {
1707     sq_throwerror(vm, _SC("Argument 1 not a bool"));
1708     return SQ_ERROR;
1709   }
1710   
1711   try {
1712     _this->set_visible(arg0 == SQTrue);
1713   
1714     return 0;
1715   
1716   } catch(std::exception& e) {
1717     sq_throwerror(vm, e.what());
1718     return SQ_ERROR;
1719   } catch(...) {
1720     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_visible'"));
1721     return SQ_ERROR;
1722   }
1723   
1724 }
1725
1726 static SQInteger FloatingImage_get_visible_wrapper(HSQUIRRELVM vm)
1727 {
1728   SQUserPointer data;
1729   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1730     sq_throwerror(vm, _SC("'get_visible' called without instance"));
1731     return SQ_ERROR;
1732   }
1733   Scripting::FloatingImage* _this = reinterpret_cast<Scripting::FloatingImage*> (data);
1734   
1735   try {
1736     bool return_value = _this->get_visible();
1737   
1738     sq_pushbool(vm, return_value);
1739     return 1;
1740   
1741   } catch(std::exception& e) {
1742     sq_throwerror(vm, e.what());
1743     return SQ_ERROR;
1744   } catch(...) {
1745     sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_visible'"));
1746     return SQ_ERROR;
1747   }
1748   
1749 }
1750
1751 static SQInteger FloatingImage_set_action_wrapper(HSQUIRRELVM vm)
1752 {
1753   SQUserPointer data;
1754   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1755     sq_throwerror(vm, _SC("'set_action' called without instance"));
1756     return SQ_ERROR;
1757   }
1758   Scripting::FloatingImage* _this = reinterpret_cast<Scripting::FloatingImage*> (data);
1759   const SQChar* arg0;
1760   if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) {
1761     sq_throwerror(vm, _SC("Argument 1 not a string"));
1762     return SQ_ERROR;
1763   }
1764   
1765   try {
1766     _this->set_action(arg0);
1767   
1768     return 0;
1769   
1770   } catch(std::exception& e) {
1771     sq_throwerror(vm, e.what());
1772     return SQ_ERROR;
1773   } catch(...) {
1774     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_action'"));
1775     return SQ_ERROR;
1776   }
1777   
1778 }
1779
1780 static SQInteger FloatingImage_get_action_wrapper(HSQUIRRELVM vm)
1781 {
1782   SQUserPointer data;
1783   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1784     sq_throwerror(vm, _SC("'get_action' called without instance"));
1785     return SQ_ERROR;
1786   }
1787   Scripting::FloatingImage* _this = reinterpret_cast<Scripting::FloatingImage*> (data);
1788   
1789   try {
1790     std::string return_value = _this->get_action();
1791   
1792     sq_pushstring(vm, return_value.c_str(), return_value.size());
1793     return 1;
1794   
1795   } catch(std::exception& e) {
1796     sq_throwerror(vm, e.what());
1797     return SQ_ERROR;
1798   } catch(...) {
1799     sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_action'"));
1800     return SQ_ERROR;
1801   }
1802   
1803 }
1804
1805 static SQInteger Platform_release_hook(SQUserPointer ptr, SQInteger )
1806 {
1807   Scripting::Platform* _this = reinterpret_cast<Scripting::Platform*> (ptr);
1808   delete _this;
1809   return 0;
1810 }
1811
1812 static SQInteger Platform_goto_node_wrapper(HSQUIRRELVM vm)
1813 {
1814   SQUserPointer data;
1815   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1816     sq_throwerror(vm, _SC("'goto_node' called without instance"));
1817     return SQ_ERROR;
1818   }
1819   Scripting::Platform* _this = reinterpret_cast<Scripting::Platform*> (data);
1820   SQInteger arg0;
1821   if(SQ_FAILED(sq_getinteger(vm, 2, &arg0))) {
1822     sq_throwerror(vm, _SC("Argument 1 not an integer"));
1823     return SQ_ERROR;
1824   }
1825   
1826   try {
1827     _this->goto_node(static_cast<int> (arg0));
1828   
1829     return 0;
1830   
1831   } catch(std::exception& e) {
1832     sq_throwerror(vm, e.what());
1833     return SQ_ERROR;
1834   } catch(...) {
1835     sq_throwerror(vm, _SC("Unexpected exception while executing function 'goto_node'"));
1836     return SQ_ERROR;
1837   }
1838   
1839 }
1840
1841 static SQInteger Platform_start_moving_wrapper(HSQUIRRELVM vm)
1842 {
1843   SQUserPointer data;
1844   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1845     sq_throwerror(vm, _SC("'start_moving' called without instance"));
1846     return SQ_ERROR;
1847   }
1848   Scripting::Platform* _this = reinterpret_cast<Scripting::Platform*> (data);
1849   
1850   try {
1851     _this->start_moving();
1852   
1853     return 0;
1854   
1855   } catch(std::exception& e) {
1856     sq_throwerror(vm, e.what());
1857     return SQ_ERROR;
1858   } catch(...) {
1859     sq_throwerror(vm, _SC("Unexpected exception while executing function 'start_moving'"));
1860     return SQ_ERROR;
1861   }
1862   
1863 }
1864
1865 static SQInteger Platform_stop_moving_wrapper(HSQUIRRELVM vm)
1866 {
1867   SQUserPointer data;
1868   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1869     sq_throwerror(vm, _SC("'stop_moving' called without instance"));
1870     return SQ_ERROR;
1871   }
1872   Scripting::Platform* _this = reinterpret_cast<Scripting::Platform*> (data);
1873   
1874   try {
1875     _this->stop_moving();
1876   
1877     return 0;
1878   
1879   } catch(std::exception& e) {
1880     sq_throwerror(vm, e.what());
1881     return SQ_ERROR;
1882   } catch(...) {
1883     sq_throwerror(vm, _SC("Unexpected exception while executing function 'stop_moving'"));
1884     return SQ_ERROR;
1885   }
1886   
1887 }
1888
1889 static SQInteger Candle_release_hook(SQUserPointer ptr, SQInteger )
1890 {
1891   Scripting::Candle* _this = reinterpret_cast<Scripting::Candle*> (ptr);
1892   delete _this;
1893   return 0;
1894 }
1895
1896 static SQInteger Candle_get_burning_wrapper(HSQUIRRELVM vm)
1897 {
1898   SQUserPointer data;
1899   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1900     sq_throwerror(vm, _SC("'get_burning' called without instance"));
1901     return SQ_ERROR;
1902   }
1903   Scripting::Candle* _this = reinterpret_cast<Scripting::Candle*> (data);
1904   
1905   try {
1906     bool return_value = _this->get_burning();
1907   
1908     sq_pushbool(vm, return_value);
1909     return 1;
1910   
1911   } catch(std::exception& e) {
1912     sq_throwerror(vm, e.what());
1913     return SQ_ERROR;
1914   } catch(...) {
1915     sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_burning'"));
1916     return SQ_ERROR;
1917   }
1918   
1919 }
1920
1921 static SQInteger Candle_set_burning_wrapper(HSQUIRRELVM vm)
1922 {
1923   SQUserPointer data;
1924   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1925     sq_throwerror(vm, _SC("'set_burning' called without instance"));
1926     return SQ_ERROR;
1927   }
1928   Scripting::Candle* _this = reinterpret_cast<Scripting::Candle*> (data);
1929   SQBool arg0;
1930   if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) {
1931     sq_throwerror(vm, _SC("Argument 1 not a bool"));
1932     return SQ_ERROR;
1933   }
1934   
1935   try {
1936     _this->set_burning(arg0 == SQTrue);
1937   
1938     return 0;
1939   
1940   } catch(std::exception& e) {
1941     sq_throwerror(vm, e.what());
1942     return SQ_ERROR;
1943   } catch(...) {
1944     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_burning'"));
1945     return SQ_ERROR;
1946   }
1947   
1948 }
1949
1950 static SQInteger Wind_release_hook(SQUserPointer ptr, SQInteger )
1951 {
1952   Scripting::Wind* _this = reinterpret_cast<Scripting::Wind*> (ptr);
1953   delete _this;
1954   return 0;
1955 }
1956
1957 static SQInteger Wind_start_wrapper(HSQUIRRELVM vm)
1958 {
1959   SQUserPointer data;
1960   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1961     sq_throwerror(vm, _SC("'start' called without instance"));
1962     return SQ_ERROR;
1963   }
1964   Scripting::Wind* _this = reinterpret_cast<Scripting::Wind*> (data);
1965   
1966   try {
1967     _this->start();
1968   
1969     return 0;
1970   
1971   } catch(std::exception& e) {
1972     sq_throwerror(vm, e.what());
1973     return SQ_ERROR;
1974   } catch(...) {
1975     sq_throwerror(vm, _SC("Unexpected exception while executing function 'start'"));
1976     return SQ_ERROR;
1977   }
1978   
1979 }
1980
1981 static SQInteger Wind_stop_wrapper(HSQUIRRELVM vm)
1982 {
1983   SQUserPointer data;
1984   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
1985     sq_throwerror(vm, _SC("'stop' called without instance"));
1986     return SQ_ERROR;
1987   }
1988   Scripting::Wind* _this = reinterpret_cast<Scripting::Wind*> (data);
1989   
1990   try {
1991     _this->stop();
1992   
1993     return 0;
1994   
1995   } catch(std::exception& e) {
1996     sq_throwerror(vm, e.what());
1997     return SQ_ERROR;
1998   } catch(...) {
1999     sq_throwerror(vm, _SC("Unexpected exception while executing function 'stop'"));
2000     return SQ_ERROR;
2001   }
2002   
2003 }
2004
2005 static SQInteger AmbientSound_release_hook(SQUserPointer ptr, SQInteger )
2006 {
2007   Scripting::AmbientSound* _this = reinterpret_cast<Scripting::AmbientSound*> (ptr);
2008   delete _this;
2009   return 0;
2010 }
2011
2012 static SQInteger AmbientSound_set_pos_wrapper(HSQUIRRELVM vm)
2013 {
2014   SQUserPointer data;
2015   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
2016     sq_throwerror(vm, _SC("'set_pos' called without instance"));
2017     return SQ_ERROR;
2018   }
2019   Scripting::AmbientSound* _this = reinterpret_cast<Scripting::AmbientSound*> (data);
2020   SQFloat arg0;
2021   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
2022     sq_throwerror(vm, _SC("Argument 1 not a float"));
2023     return SQ_ERROR;
2024   }
2025   SQFloat arg1;
2026   if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) {
2027     sq_throwerror(vm, _SC("Argument 2 not a float"));
2028     return SQ_ERROR;
2029   }
2030   
2031   try {
2032     _this->set_pos(static_cast<float> (arg0), static_cast<float> (arg1));
2033   
2034     return 0;
2035   
2036   } catch(std::exception& e) {
2037     sq_throwerror(vm, e.what());
2038     return SQ_ERROR;
2039   } catch(...) {
2040     sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_pos'"));
2041     return SQ_ERROR;
2042   }
2043   
2044 }
2045
2046 static SQInteger AmbientSound_get_pos_x_wrapper(HSQUIRRELVM vm)
2047 {
2048   SQUserPointer data;
2049   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
2050     sq_throwerror(vm, _SC("'get_pos_x' called without instance"));
2051     return SQ_ERROR;
2052   }
2053   Scripting::AmbientSound* _this = reinterpret_cast<Scripting::AmbientSound*> (data);
2054   
2055   try {
2056     float return_value = _this->get_pos_x();
2057   
2058     sq_pushfloat(vm, return_value);
2059     return 1;
2060   
2061   } catch(std::exception& e) {
2062     sq_throwerror(vm, e.what());
2063     return SQ_ERROR;
2064   } catch(...) {
2065     sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_pos_x'"));
2066     return SQ_ERROR;
2067   }
2068   
2069 }
2070
2071 static SQInteger AmbientSound_get_pos_y_wrapper(HSQUIRRELVM vm)
2072 {
2073   SQUserPointer data;
2074   if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) {
2075     sq_throwerror(vm, _SC("'get_pos_y' called without instance"));
2076     return SQ_ERROR;
2077   }
2078   Scripting::AmbientSound* _this = reinterpret_cast<Scripting::AmbientSound*> (data);
2079   
2080   try {
2081     float return_value = _this->get_pos_y();
2082   
2083     sq_pushfloat(vm, return_value);
2084     return 1;
2085   
2086   } catch(std::exception& e) {
2087     sq_throwerror(vm, e.what());
2088     return SQ_ERROR;
2089   } catch(...) {
2090     sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_pos_y'"));
2091     return SQ_ERROR;
2092   }
2093   
2094 }
2095
2096 static SQInteger display_wrapper(HSQUIRRELVM vm)
2097 {
2098   return Scripting::display(vm);
2099 }
2100
2101 static SQInteger print_stacktrace_wrapper(HSQUIRRELVM vm)
2102 {
2103   HSQUIRRELVM arg0 = vm;
2104   
2105   try {
2106     Scripting::print_stacktrace(arg0);
2107   
2108     return 0;
2109   
2110   } catch(std::exception& e) {
2111     sq_throwerror(vm, e.what());
2112     return SQ_ERROR;
2113   } catch(...) {
2114     sq_throwerror(vm, _SC("Unexpected exception while executing function 'print_stacktrace'"));
2115     return SQ_ERROR;
2116   }
2117   
2118 }
2119
2120 static SQInteger get_current_thread_wrapper(HSQUIRRELVM vm)
2121 {
2122   return Scripting::get_current_thread(vm);
2123 }
2124
2125 static SQInteger display_text_file_wrapper(HSQUIRRELVM vm)
2126 {
2127   const SQChar* arg0;
2128   if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) {
2129     sq_throwerror(vm, _SC("Argument 1 not a string"));
2130     return SQ_ERROR;
2131   }
2132   
2133   try {
2134     Scripting::display_text_file(arg0);
2135   
2136     return 0;
2137   
2138   } catch(std::exception& e) {
2139     sq_throwerror(vm, e.what());
2140     return SQ_ERROR;
2141   } catch(...) {
2142     sq_throwerror(vm, _SC("Unexpected exception while executing function 'display_text_file'"));
2143     return SQ_ERROR;
2144   }
2145   
2146 }
2147
2148 static SQInteger load_worldmap_wrapper(HSQUIRRELVM vm)
2149 {
2150   const SQChar* arg0;
2151   if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) {
2152     sq_throwerror(vm, _SC("Argument 1 not a string"));
2153     return SQ_ERROR;
2154   }
2155   
2156   try {
2157     Scripting::load_worldmap(arg0);
2158   
2159     return 0;
2160   
2161   } catch(std::exception& e) {
2162     sq_throwerror(vm, e.what());
2163     return SQ_ERROR;
2164   } catch(...) {
2165     sq_throwerror(vm, _SC("Unexpected exception while executing function 'load_worldmap'"));
2166     return SQ_ERROR;
2167   }
2168   
2169 }
2170
2171 static SQInteger load_level_wrapper(HSQUIRRELVM vm)
2172 {
2173   const SQChar* arg0;
2174   if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) {
2175     sq_throwerror(vm, _SC("Argument 1 not a string"));
2176     return SQ_ERROR;
2177   }
2178   
2179   try {
2180     Scripting::load_level(arg0);
2181   
2182     return 0;
2183   
2184   } catch(std::exception& e) {
2185     sq_throwerror(vm, e.what());
2186     return SQ_ERROR;
2187   } catch(...) {
2188     sq_throwerror(vm, _SC("Unexpected exception while executing function 'load_level'"));
2189     return SQ_ERROR;
2190   }
2191   
2192 }
2193
2194 static SQInteger wait_wrapper(HSQUIRRELVM vm)
2195 {
2196   HSQUIRRELVM arg0 = vm;
2197   SQFloat arg1;
2198   if(SQ_FAILED(sq_getfloat(vm, 2, &arg1))) {
2199     sq_throwerror(vm, _SC("Argument 1 not a float"));
2200     return SQ_ERROR;
2201   }
2202   
2203   try {
2204     Scripting::wait(arg0, static_cast<float> (arg1));
2205   
2206     return sq_suspendvm(vm);
2207   
2208   } catch(std::exception& e) {
2209     sq_throwerror(vm, e.what());
2210     return SQ_ERROR;
2211   } catch(...) {
2212     sq_throwerror(vm, _SC("Unexpected exception while executing function 'wait'"));
2213     return SQ_ERROR;
2214   }
2215   
2216 }
2217
2218 static SQInteger wait_for_screenswitch_wrapper(HSQUIRRELVM vm)
2219 {
2220   HSQUIRRELVM arg0 = vm;
2221   
2222   try {
2223     Scripting::wait_for_screenswitch(arg0);
2224   
2225     return sq_suspendvm(vm);
2226   
2227   } catch(std::exception& e) {
2228     sq_throwerror(vm, e.what());
2229     return SQ_ERROR;
2230   } catch(...) {
2231     sq_throwerror(vm, _SC("Unexpected exception while executing function 'wait_for_screenswitch'"));
2232     return SQ_ERROR;
2233   }
2234   
2235 }
2236
2237 static SQInteger exit_screen_wrapper(HSQUIRRELVM vm)
2238 {
2239   (void) vm;
2240   
2241   try {
2242     Scripting::exit_screen();
2243   
2244     return 0;
2245   
2246   } catch(std::exception& e) {
2247     sq_throwerror(vm, e.what());
2248     return SQ_ERROR;
2249   } catch(...) {
2250     sq_throwerror(vm, _SC("Unexpected exception while executing function 'exit_screen'"));
2251     return SQ_ERROR;
2252   }
2253   
2254 }
2255
2256 static SQInteger fadeout_screen_wrapper(HSQUIRRELVM vm)
2257 {
2258   SQFloat arg0;
2259   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
2260     sq_throwerror(vm, _SC("Argument 1 not a float"));
2261     return SQ_ERROR;
2262   }
2263   
2264   try {
2265     Scripting::fadeout_screen(static_cast<float> (arg0));
2266   
2267     return 0;
2268   
2269   } catch(std::exception& e) {
2270     sq_throwerror(vm, e.what());
2271     return SQ_ERROR;
2272   } catch(...) {
2273     sq_throwerror(vm, _SC("Unexpected exception while executing function 'fadeout_screen'"));
2274     return SQ_ERROR;
2275   }
2276   
2277 }
2278
2279 static SQInteger shrink_screen_wrapper(HSQUIRRELVM vm)
2280 {
2281   SQFloat arg0;
2282   if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) {
2283     sq_throwerror(vm, _SC("Argument 1 not a float"));
2284     return SQ_ERROR;
2285   }
2286   SQFloat arg1;
2287   if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) {
2288     sq_throwerror(vm, _SC("Argument 2 not a float"));
2289     return SQ_ERROR;
2290   }
2291   SQFloat arg2;
2292   if(SQ_FAILED(sq_getfloat(vm, 4, &arg2))) {
2293     sq_throwerror(vm, _SC("Argument 3 not a float"));
2294     return SQ_ERROR;
2295   }
2296   
2297   try {
2298     Scripting::shrink_screen(static_cast<float> (arg0), static_cast<float> (arg1), static_cast<float> (arg2));
2299   
2300     return 0;
2301   
2302   } catch(std::exception& e) {
2303     sq_throwerror(vm, e.what());
2304     return SQ_ERROR;
2305   } catch(...) {
2306     sq_throwerror(vm, _SC("Unexpected exception while executing function 'shrink_screen'"));
2307     return SQ_ERROR;
2308   }
2309   
2310 }
2311
2312 static SQInteger translate_wrapper(HSQUIRRELVM vm)
2313 {
2314   const SQChar* arg0;
2315   if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) {
2316     sq_throwerror(vm, _SC("Argument 1 not a string"));
2317     return SQ_ERROR;
2318   }
2319   
2320   try {
2321     std::string return_value = Scripting::translate(arg0);
2322   
2323     sq_pushstring(vm, return_value.c_str(), return_value.size());
2324     return 1;
2325   
2326   } catch(std::exception& e) {
2327     sq_throwerror(vm, e.what());
2328     return SQ_ERROR;
2329   } catch(...) {
2330     sq_throwerror(vm, _SC("Unexpected exception while executing function 'translate'"));
2331     return SQ_ERROR;
2332   }
2333   
2334 }
2335
2336 static SQInteger import_wrapper(HSQUIRRELVM vm)
2337 {
2338   HSQUIRRELVM arg0 = vm;
2339   const SQChar* arg1;
2340   if(SQ_FAILED(sq_getstring(vm, 2, &arg1))) {
2341     sq_throwerror(vm, _SC("Argument 1 not a string"));
2342     return SQ_ERROR;
2343   }
2344   
2345   try {
2346     Scripting::import(arg0, arg1);
2347   
2348     return 0;
2349   
2350   } catch(std::exception& e) {
2351     sq_throwerror(vm, e.what());
2352     return SQ_ERROR;
2353   } catch(...) {
2354     sq_throwerror(vm, _SC("Unexpected exception while executing function 'import'"));
2355     return SQ_ERROR;
2356   }
2357   
2358 }
2359
2360 static SQInteger save_state_wrapper(HSQUIRRELVM vm)
2361 {
2362   (void) vm;
2363   
2364   try {
2365     Scripting::save_state();
2366   
2367     return 0;
2368   
2369   } catch(std::exception& e) {
2370     sq_throwerror(vm, e.what());
2371     return SQ_ERROR;
2372   } catch(...) {
2373     sq_throwerror(vm, _SC("Unexpected exception while executing function 'save_state'"));
2374     return SQ_ERROR;
2375   }
2376   
2377 }
2378
2379 static SQInteger debug_collrects_wrapper(HSQUIRRELVM vm)
2380 {
2381   SQBool arg0;
2382   if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) {
2383     sq_throwerror(vm, _SC("Argument 1 not a bool"));
2384     return SQ_ERROR;
2385   }
2386   
2387   try {
2388     Scripting::debug_collrects(arg0 == SQTrue);
2389   
2390     return 0;
2391   
2392   } catch(std::exception& e) {
2393     sq_throwerror(vm, e.what());
2394     return SQ_ERROR;
2395   } catch(...) {
2396     sq_throwerror(vm, _SC("Unexpected exception while executing function 'debug_collrects'"));
2397     return SQ_ERROR;
2398   }
2399   
2400 }
2401
2402 static SQInteger debug_show_fps_wrapper(HSQUIRRELVM vm)
2403 {
2404   SQBool arg0;
2405   if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) {
2406     sq_throwerror(vm, _SC("Argument 1 not a bool"));
2407     return SQ_ERROR;
2408   }
2409   
2410   try {
2411     Scripting::debug_show_fps(arg0 == SQTrue);
2412   
2413     return 0;
2414   
2415   } catch(std::exception& e) {
2416     sq_throwerror(vm, e.what());
2417     return SQ_ERROR;
2418   } catch(...) {
2419     sq_throwerror(vm, _SC("Unexpected exception while executing function 'debug_show_fps'"));
2420     return SQ_ERROR;
2421   }
2422   
2423 }
2424
2425 static SQInteger debug_draw_solids_only_wrapper(HSQUIRRELVM vm)
2426 {
2427   SQBool arg0;
2428   if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) {
2429     sq_throwerror(vm, _SC("Argument 1 not a bool"));
2430     return SQ_ERROR;
2431   }
2432   
2433   try {
2434     Scripting::debug_draw_solids_only(arg0 == SQTrue);
2435   
2436     return 0;
2437   
2438   } catch(std::exception& e) {
2439     sq_throwerror(vm, e.what());
2440     return SQ_ERROR;
2441   } catch(...) {
2442     sq_throwerror(vm, _SC("Unexpected exception while executing function 'debug_draw_solids_only'"));
2443     return SQ_ERROR;
2444   }
2445   
2446 }
2447
2448 static SQInteger play_music_wrapper(HSQUIRRELVM vm)
2449 {
2450   const SQChar* arg0;
2451   if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) {
2452     sq_throwerror(vm, _SC("Argument 1 not a string"));
2453     return SQ_ERROR;
2454   }
2455   
2456   try {
2457     Scripting::play_music(arg0);
2458   
2459     return 0;
2460   
2461   } catch(std::exception& e) {
2462     sq_throwerror(vm, e.what());
2463     return SQ_ERROR;
2464   } catch(...) {
2465     sq_throwerror(vm, _SC("Unexpected exception while executing function 'play_music'"));
2466     return SQ_ERROR;
2467   }
2468   
2469 }
2470
2471 static SQInteger play_sound_wrapper(HSQUIRRELVM vm)
2472 {
2473   const SQChar* arg0;
2474   if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) {
2475     sq_throwerror(vm, _SC("Argument 1 not a string"));
2476     return SQ_ERROR;
2477   }
2478   
2479   try {
2480     Scripting::play_sound(arg0);
2481   
2482     return 0;
2483   
2484   } catch(std::exception& e) {
2485     sq_throwerror(vm, e.what());
2486     return SQ_ERROR;
2487   } catch(...) {
2488     sq_throwerror(vm, _SC("Unexpected exception while executing function 'play_sound'"));
2489     return SQ_ERROR;
2490   }
2491   
2492 }
2493
2494 static SQInteger grease_wrapper(HSQUIRRELVM vm)
2495 {
2496   (void) vm;
2497   
2498   try {
2499     Scripting::grease();
2500   
2501     return 0;
2502   
2503   } catch(std::exception& e) {
2504     sq_throwerror(vm, e.what());
2505     return SQ_ERROR;
2506   } catch(...) {
2507     sq_throwerror(vm, _SC("Unexpected exception while executing function 'grease'"));
2508     return SQ_ERROR;
2509   }
2510   
2511 }
2512
2513 static SQInteger invincible_wrapper(HSQUIRRELVM vm)
2514 {
2515   (void) vm;
2516   
2517   try {
2518     Scripting::invincible();
2519   
2520     return 0;
2521   
2522   } catch(std::exception& e) {
2523     sq_throwerror(vm, e.what());
2524     return SQ_ERROR;
2525   } catch(...) {
2526     sq_throwerror(vm, _SC("Unexpected exception while executing function 'invincible'"));
2527     return SQ_ERROR;
2528   }
2529   
2530 }
2531
2532 static SQInteger ghost_wrapper(HSQUIRRELVM vm)
2533 {
2534   (void) vm;
2535   
2536   try {
2537     Scripting::ghost();
2538   
2539     return 0;
2540   
2541   } catch(std::exception& e) {
2542     sq_throwerror(vm, e.what());
2543     return SQ_ERROR;
2544   } catch(...) {
2545     sq_throwerror(vm, _SC("Unexpected exception while executing function 'ghost'"));
2546     return SQ_ERROR;
2547   }
2548   
2549 }
2550
2551 static SQInteger mortal_wrapper(HSQUIRRELVM vm)
2552 {
2553   (void) vm;
2554   
2555   try {
2556     Scripting::mortal();
2557   
2558     return 0;
2559   
2560   } catch(std::exception& e) {
2561     sq_throwerror(vm, e.what());
2562     return SQ_ERROR;
2563   } catch(...) {
2564     sq_throwerror(vm, _SC("Unexpected exception while executing function 'mortal'"));
2565     return SQ_ERROR;
2566   }
2567   
2568 }
2569
2570 static SQInteger restart_wrapper(HSQUIRRELVM vm)
2571 {
2572   (void) vm;
2573   
2574   try {
2575     Scripting::restart();
2576   
2577     return 0;
2578   
2579   } catch(std::exception& e) {
2580     sq_throwerror(vm, e.what());
2581     return SQ_ERROR;
2582   } catch(...) {
2583     sq_throwerror(vm, _SC("Unexpected exception while executing function 'restart'"));
2584     return SQ_ERROR;
2585   }
2586   
2587 }
2588
2589 static SQInteger whereami_wrapper(HSQUIRRELVM vm)
2590 {
2591   (void) vm;
2592   
2593   try {
2594     Scripting::whereami();
2595   
2596     return 0;
2597   
2598   } catch(std::exception& e) {
2599     sq_throwerror(vm, e.what());
2600     return SQ_ERROR;
2601   } catch(...) {
2602     sq_throwerror(vm, _SC("Unexpected exception while executing function 'whereami'"));
2603     return SQ_ERROR;
2604   }
2605   
2606 }
2607
2608 static SQInteger gotoend_wrapper(HSQUIRRELVM vm)
2609 {
2610   (void) vm;
2611   
2612   try {
2613     Scripting::gotoend();
2614   
2615     return 0;
2616   
2617   } catch(std::exception& e) {
2618     sq_throwerror(vm, e.what());
2619     return SQ_ERROR;
2620   } catch(...) {
2621     sq_throwerror(vm, _SC("Unexpected exception while executing function 'gotoend'"));
2622     return SQ_ERROR;
2623   }
2624   
2625 }
2626
2627 static SQInteger camera_wrapper(HSQUIRRELVM vm)
2628 {
2629   (void) vm;
2630   
2631   try {
2632     Scripting::camera();
2633   
2634     return 0;
2635   
2636   } catch(std::exception& e) {
2637     sq_throwerror(vm, e.what());
2638     return SQ_ERROR;
2639   } catch(...) {
2640     sq_throwerror(vm, _SC("Unexpected exception while executing function 'camera'"));
2641     return SQ_ERROR;
2642   }
2643   
2644 }
2645
2646 static SQInteger quit_wrapper(HSQUIRRELVM vm)
2647 {
2648   (void) vm;
2649   
2650   try {
2651     Scripting::quit();
2652   
2653     return 0;
2654   
2655   } catch(std::exception& e) {
2656     sq_throwerror(vm, e.what());
2657     return SQ_ERROR;
2658   } catch(...) {
2659     sq_throwerror(vm, _SC("Unexpected exception while executing function 'quit'"));
2660     return SQ_ERROR;
2661   }
2662   
2663 }
2664
2665 static SQInteger rand_wrapper(HSQUIRRELVM vm)
2666 {
2667   
2668   try {
2669     int return_value = Scripting::rand();
2670   
2671     sq_pushinteger(vm, return_value);
2672     return 1;
2673   
2674   } catch(std::exception& e) {
2675     sq_throwerror(vm, e.what());
2676     return SQ_ERROR;
2677   } catch(...) {
2678     sq_throwerror(vm, _SC("Unexpected exception while executing function 'rand'"));
2679     return SQ_ERROR;
2680   }
2681   
2682 }
2683
2684 } // end of namespace Wrapper
2685
2686 void create_squirrel_instance(HSQUIRRELVM v, Scripting::DisplayEffect* object, bool setup_releasehook)
2687 {
2688   using namespace Wrapper;
2689
2690   sq_pushroottable(v);
2691   sq_pushstring(v, "DisplayEffect", -1);
2692   if(SQ_FAILED(sq_get(v, -2))) {
2693     std::ostringstream msg;
2694     msg << "Couldn't resolved squirrel type 'DisplayEffect'";
2695     throw SquirrelError(v, msg.str());
2696   }
2697
2698   if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) {
2699     std::ostringstream msg;
2700     msg << "Couldn't setup squirrel instance for object of type 'DisplayEffect'";
2701     throw SquirrelError(v, msg.str());
2702   }
2703   sq_remove(v, -2); // remove object name
2704
2705   if(setup_releasehook) {
2706     sq_setreleasehook(v, -1, DisplayEffect_release_hook);
2707   }
2708
2709   sq_remove(v, -2); // remove root table
2710 }
2711
2712 void create_squirrel_instance(HSQUIRRELVM v, Scripting::Camera* object, bool setup_releasehook)
2713 {
2714   using namespace Wrapper;
2715
2716   sq_pushroottable(v);
2717   sq_pushstring(v, "Camera", -1);
2718   if(SQ_FAILED(sq_get(v, -2))) {
2719     std::ostringstream msg;
2720     msg << "Couldn't resolved squirrel type 'Camera'";
2721     throw SquirrelError(v, msg.str());
2722   }
2723
2724   if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) {
2725     std::ostringstream msg;
2726     msg << "Couldn't setup squirrel instance for object of type 'Camera'";
2727     throw SquirrelError(v, msg.str());
2728   }
2729   sq_remove(v, -2); // remove object name
2730
2731   if(setup_releasehook) {
2732     sq_setreleasehook(v, -1, Camera_release_hook);
2733   }
2734
2735   sq_remove(v, -2); // remove root table
2736 }
2737
2738 void create_squirrel_instance(HSQUIRRELVM v, Scripting::Level* object, bool setup_releasehook)
2739 {
2740   using namespace Wrapper;
2741
2742   sq_pushroottable(v);
2743   sq_pushstring(v, "Level", -1);
2744   if(SQ_FAILED(sq_get(v, -2))) {
2745     std::ostringstream msg;
2746     msg << "Couldn't resolved squirrel type 'Level'";
2747     throw SquirrelError(v, msg.str());
2748   }
2749
2750   if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) {
2751     std::ostringstream msg;
2752     msg << "Couldn't setup squirrel instance for object of type 'Level'";
2753     throw SquirrelError(v, msg.str());
2754   }
2755   sq_remove(v, -2); // remove object name
2756
2757   if(setup_releasehook) {
2758     sq_setreleasehook(v, -1, Level_release_hook);
2759   }
2760
2761   sq_remove(v, -2); // remove root table
2762 }
2763
2764 void create_squirrel_instance(HSQUIRRELVM v, Scripting::ScriptedObject* object, bool setup_releasehook)
2765 {
2766   using namespace Wrapper;
2767
2768   sq_pushroottable(v);
2769   sq_pushstring(v, "ScriptedObject", -1);
2770   if(SQ_FAILED(sq_get(v, -2))) {
2771     std::ostringstream msg;
2772     msg << "Couldn't resolved squirrel type 'ScriptedObject'";
2773     throw SquirrelError(v, msg.str());
2774   }
2775
2776   if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) {
2777     std::ostringstream msg;
2778     msg << "Couldn't setup squirrel instance for object of type 'ScriptedObject'";
2779     throw SquirrelError(v, msg.str());
2780   }
2781   sq_remove(v, -2); // remove object name
2782
2783   if(setup_releasehook) {
2784     sq_setreleasehook(v, -1, ScriptedObject_release_hook);
2785   }
2786
2787   sq_remove(v, -2); // remove root table
2788 }
2789
2790 void create_squirrel_instance(HSQUIRRELVM v, Scripting::Text* object, bool setup_releasehook)
2791 {
2792   using namespace Wrapper;
2793
2794   sq_pushroottable(v);
2795   sq_pushstring(v, "Text", -1);
2796   if(SQ_FAILED(sq_get(v, -2))) {
2797     std::ostringstream msg;
2798     msg << "Couldn't resolved squirrel type 'Text'";
2799     throw SquirrelError(v, msg.str());
2800   }
2801
2802   if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) {
2803     std::ostringstream msg;
2804     msg << "Couldn't setup squirrel instance for object of type 'Text'";
2805     throw SquirrelError(v, msg.str());
2806   }
2807   sq_remove(v, -2); // remove object name
2808
2809   if(setup_releasehook) {
2810     sq_setreleasehook(v, -1, Text_release_hook);
2811   }
2812
2813   sq_remove(v, -2); // remove root table
2814 }
2815
2816 void create_squirrel_instance(HSQUIRRELVM v, Scripting::Player* object, bool setup_releasehook)
2817 {
2818   using namespace Wrapper;
2819
2820   sq_pushroottable(v);
2821   sq_pushstring(v, "Player", -1);
2822   if(SQ_FAILED(sq_get(v, -2))) {
2823     std::ostringstream msg;
2824     msg << "Couldn't resolved squirrel type 'Player'";
2825     throw SquirrelError(v, msg.str());
2826   }
2827
2828   if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) {
2829     std::ostringstream msg;
2830     msg << "Couldn't setup squirrel instance for object of type 'Player'";
2831     throw SquirrelError(v, msg.str());
2832   }
2833   sq_remove(v, -2); // remove object name
2834
2835   if(setup_releasehook) {
2836     sq_setreleasehook(v, -1, Player_release_hook);
2837   }
2838
2839   sq_remove(v, -2); // remove root table
2840 }
2841
2842 void create_squirrel_instance(HSQUIRRELVM v, Scripting::FloatingImage* object, bool setup_releasehook)
2843 {
2844   using namespace Wrapper;
2845
2846   sq_pushroottable(v);
2847   sq_pushstring(v, "FloatingImage", -1);
2848   if(SQ_FAILED(sq_get(v, -2))) {
2849     std::ostringstream msg;
2850     msg << "Couldn't resolved squirrel type 'FloatingImage'";
2851     throw SquirrelError(v, msg.str());
2852   }
2853
2854   if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) {
2855     std::ostringstream msg;
2856     msg << "Couldn't setup squirrel instance for object of type 'FloatingImage'";
2857     throw SquirrelError(v, msg.str());
2858   }
2859   sq_remove(v, -2); // remove object name
2860
2861   if(setup_releasehook) {
2862     sq_setreleasehook(v, -1, FloatingImage_release_hook);
2863   }
2864
2865   sq_remove(v, -2); // remove root table
2866 }
2867
2868 void create_squirrel_instance(HSQUIRRELVM v, Scripting::Platform* object, bool setup_releasehook)
2869 {
2870   using namespace Wrapper;
2871
2872   sq_pushroottable(v);
2873   sq_pushstring(v, "Platform", -1);
2874   if(SQ_FAILED(sq_get(v, -2))) {
2875     std::ostringstream msg;
2876     msg << "Couldn't resolved squirrel type 'Platform'";
2877     throw SquirrelError(v, msg.str());
2878   }
2879
2880   if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) {
2881     std::ostringstream msg;
2882     msg << "Couldn't setup squirrel instance for object of type 'Platform'";
2883     throw SquirrelError(v, msg.str());
2884   }
2885   sq_remove(v, -2); // remove object name
2886
2887   if(setup_releasehook) {
2888     sq_setreleasehook(v, -1, Platform_release_hook);
2889   }
2890
2891   sq_remove(v, -2); // remove root table
2892 }
2893
2894 void create_squirrel_instance(HSQUIRRELVM v, Scripting::Candle* object, bool setup_releasehook)
2895 {
2896   using namespace Wrapper;
2897
2898   sq_pushroottable(v);
2899   sq_pushstring(v, "Candle", -1);
2900   if(SQ_FAILED(sq_get(v, -2))) {
2901     std::ostringstream msg;
2902     msg << "Couldn't resolved squirrel type 'Candle'";
2903     throw SquirrelError(v, msg.str());
2904   }
2905
2906   if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) {
2907     std::ostringstream msg;
2908     msg << "Couldn't setup squirrel instance for object of type 'Candle'";
2909     throw SquirrelError(v, msg.str());
2910   }
2911   sq_remove(v, -2); // remove object name
2912
2913   if(setup_releasehook) {
2914     sq_setreleasehook(v, -1, Candle_release_hook);
2915   }
2916
2917   sq_remove(v, -2); // remove root table
2918 }
2919
2920 void create_squirrel_instance(HSQUIRRELVM v, Scripting::Wind* object, bool setup_releasehook)
2921 {
2922   using namespace Wrapper;
2923
2924   sq_pushroottable(v);
2925   sq_pushstring(v, "Wind", -1);
2926   if(SQ_FAILED(sq_get(v, -2))) {
2927     std::ostringstream msg;
2928     msg << "Couldn't resolved squirrel type 'Wind'";
2929     throw SquirrelError(v, msg.str());
2930   }
2931
2932   if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) {
2933     std::ostringstream msg;
2934     msg << "Couldn't setup squirrel instance for object of type 'Wind'";
2935     throw SquirrelError(v, msg.str());
2936   }
2937   sq_remove(v, -2); // remove object name
2938
2939   if(setup_releasehook) {
2940     sq_setreleasehook(v, -1, Wind_release_hook);
2941   }
2942
2943   sq_remove(v, -2); // remove root table
2944 }
2945
2946 void create_squirrel_instance(HSQUIRRELVM v, Scripting::AmbientSound* object, bool setup_releasehook)
2947 {
2948   using namespace Wrapper;
2949
2950   sq_pushroottable(v);
2951   sq_pushstring(v, "AmbientSound", -1);
2952   if(SQ_FAILED(sq_get(v, -2))) {
2953     std::ostringstream msg;
2954     msg << "Couldn't resolved squirrel type 'AmbientSound'";
2955     throw SquirrelError(v, msg.str());
2956   }
2957
2958   if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) {
2959     std::ostringstream msg;
2960     msg << "Couldn't setup squirrel instance for object of type 'AmbientSound'";
2961     throw SquirrelError(v, msg.str());
2962   }
2963   sq_remove(v, -2); // remove object name
2964
2965   if(setup_releasehook) {
2966     sq_setreleasehook(v, -1, AmbientSound_release_hook);
2967   }
2968
2969   sq_remove(v, -2); // remove root table
2970 }
2971
2972 void register_supertux_wrapper(HSQUIRRELVM v)
2973 {
2974   using namespace Wrapper;
2975
2976   sq_pushstring(v, "ANCHOR_TOP", -1);
2977   sq_pushinteger(v, 16);
2978   if(SQ_FAILED(sq_createslot(v, -3))) {
2979     throw SquirrelError(v, "Couldn't register constant 'ANCHOR_TOP'");
2980   }
2981
2982   sq_pushstring(v, "ANCHOR_BOTTOM", -1);
2983   sq_pushinteger(v, 32);
2984   if(SQ_FAILED(sq_createslot(v, -3))) {
2985     throw SquirrelError(v, "Couldn't register constant 'ANCHOR_BOTTOM'");
2986   }
2987
2988   sq_pushstring(v, "ANCHOR_LEFT", -1);
2989   sq_pushinteger(v, 1);
2990   if(SQ_FAILED(sq_createslot(v, -3))) {
2991     throw SquirrelError(v, "Couldn't register constant 'ANCHOR_LEFT'");
2992   }
2993
2994   sq_pushstring(v, "ANCHOR_RIGHT", -1);
2995   sq_pushinteger(v, 2);
2996   if(SQ_FAILED(sq_createslot(v, -3))) {
2997     throw SquirrelError(v, "Couldn't register constant 'ANCHOR_RIGHT'");
2998   }
2999
3000   sq_pushstring(v, "ANCHOR_MIDDLE", -1);
3001   sq_pushinteger(v, 0);
3002   if(SQ_FAILED(sq_createslot(v, -3))) {
3003     throw SquirrelError(v, "Couldn't register constant 'ANCHOR_MIDDLE'");
3004   }
3005
3006   sq_pushstring(v, "ANCHOR_TOP_LEFT", -1);
3007   sq_pushinteger(v, 17);
3008   if(SQ_FAILED(sq_createslot(v, -3))) {
3009     throw SquirrelError(v, "Couldn't register constant 'ANCHOR_TOP_LEFT'");
3010   }
3011
3012   sq_pushstring(v, "ANCHOR_TOP_RIGHT", -1);
3013   sq_pushinteger(v, 18);
3014   if(SQ_FAILED(sq_createslot(v, -3))) {
3015     throw SquirrelError(v, "Couldn't register constant 'ANCHOR_TOP_RIGHT'");
3016   }
3017
3018   sq_pushstring(v, "ANCHOR_BOTTOM_LEFT", -1);
3019   sq_pushinteger(v, 33);
3020   if(SQ_FAILED(sq_createslot(v, -3))) {
3021     throw SquirrelError(v, "Couldn't register constant 'ANCHOR_BOTTOM_LEFT'");
3022   }
3023
3024   sq_pushstring(v, "ANCHOR_BOTTOM_RIGHT", -1);
3025   sq_pushinteger(v, 34);
3026   if(SQ_FAILED(sq_createslot(v, -3))) {
3027     throw SquirrelError(v, "Couldn't register constant 'ANCHOR_BOTTOM_RIGHT'");
3028   }
3029
3030   sq_pushstring(v, "display", -1);
3031   sq_newclosure(v, &display_wrapper, 0);
3032   if(SQ_FAILED(sq_createslot(v, -3))) {
3033     throw SquirrelError(v, "Couldn't register function 'display'");
3034   }
3035
3036   sq_pushstring(v, "print_stacktrace", -1);
3037   sq_newclosure(v, &print_stacktrace_wrapper, 0);
3038   if(SQ_FAILED(sq_createslot(v, -3))) {
3039     throw SquirrelError(v, "Couldn't register function 'print_stacktrace'");
3040   }
3041
3042   sq_pushstring(v, "get_current_thread", -1);
3043   sq_newclosure(v, &get_current_thread_wrapper, 0);
3044   if(SQ_FAILED(sq_createslot(v, -3))) {
3045     throw SquirrelError(v, "Couldn't register function 'get_current_thread'");
3046   }
3047
3048   sq_pushstring(v, "display_text_file", -1);
3049   sq_newclosure(v, &display_text_file_wrapper, 0);
3050   if(SQ_FAILED(sq_createslot(v, -3))) {
3051     throw SquirrelError(v, "Couldn't register function 'display_text_file'");
3052   }
3053
3054   sq_pushstring(v, "load_worldmap", -1);
3055   sq_newclosure(v, &load_worldmap_wrapper, 0);
3056   if(SQ_FAILED(sq_createslot(v, -3))) {
3057     throw SquirrelError(v, "Couldn't register function 'load_worldmap'");
3058   }
3059
3060   sq_pushstring(v, "load_level", -1);
3061   sq_newclosure(v, &load_level_wrapper, 0);
3062   if(SQ_FAILED(sq_createslot(v, -3))) {
3063     throw SquirrelError(v, "Couldn't register function 'load_level'");
3064   }
3065
3066   sq_pushstring(v, "wait", -1);
3067   sq_newclosure(v, &wait_wrapper, 0);
3068   if(SQ_FAILED(sq_createslot(v, -3))) {
3069     throw SquirrelError(v, "Couldn't register function 'wait'");
3070   }
3071
3072   sq_pushstring(v, "wait_for_screenswitch", -1);
3073   sq_newclosure(v, &wait_for_screenswitch_wrapper, 0);
3074   if(SQ_FAILED(sq_createslot(v, -3))) {
3075     throw SquirrelError(v, "Couldn't register function 'wait_for_screenswitch'");
3076   }
3077
3078   sq_pushstring(v, "exit_screen", -1);
3079   sq_newclosure(v, &exit_screen_wrapper, 0);
3080   if(SQ_FAILED(sq_createslot(v, -3))) {
3081     throw SquirrelError(v, "Couldn't register function 'exit_screen'");
3082   }
3083
3084   sq_pushstring(v, "fadeout_screen", -1);
3085   sq_newclosure(v, &fadeout_screen_wrapper, 0);
3086   if(SQ_FAILED(sq_createslot(v, -3))) {
3087     throw SquirrelError(v, "Couldn't register function 'fadeout_screen'");
3088   }
3089
3090   sq_pushstring(v, "shrink_screen", -1);
3091   sq_newclosure(v, &shrink_screen_wrapper, 0);
3092   if(SQ_FAILED(sq_createslot(v, -3))) {
3093     throw SquirrelError(v, "Couldn't register function 'shrink_screen'");
3094   }
3095
3096   sq_pushstring(v, "translate", -1);
3097   sq_newclosure(v, &translate_wrapper, 0);
3098   if(SQ_FAILED(sq_createslot(v, -3))) {
3099     throw SquirrelError(v, "Couldn't register function 'translate'");
3100   }
3101
3102   sq_pushstring(v, "import", -1);
3103   sq_newclosure(v, &import_wrapper, 0);
3104   if(SQ_FAILED(sq_createslot(v, -3))) {
3105     throw SquirrelError(v, "Couldn't register function 'import'");
3106   }
3107
3108   sq_pushstring(v, "save_state", -1);
3109   sq_newclosure(v, &save_state_wrapper, 0);
3110   if(SQ_FAILED(sq_createslot(v, -3))) {
3111     throw SquirrelError(v, "Couldn't register function 'save_state'");
3112   }
3113
3114   sq_pushstring(v, "debug_collrects", -1);
3115   sq_newclosure(v, &debug_collrects_wrapper, 0);
3116   if(SQ_FAILED(sq_createslot(v, -3))) {
3117     throw SquirrelError(v, "Couldn't register function 'debug_collrects'");
3118   }
3119
3120   sq_pushstring(v, "debug_show_fps", -1);
3121   sq_newclosure(v, &debug_show_fps_wrapper, 0);
3122   if(SQ_FAILED(sq_createslot(v, -3))) {
3123     throw SquirrelError(v, "Couldn't register function 'debug_show_fps'");
3124   }
3125
3126   sq_pushstring(v, "debug_draw_solids_only", -1);
3127   sq_newclosure(v, &debug_draw_solids_only_wrapper, 0);
3128   if(SQ_FAILED(sq_createslot(v, -3))) {
3129     throw SquirrelError(v, "Couldn't register function 'debug_draw_solids_only'");
3130   }
3131
3132   sq_pushstring(v, "play_music", -1);
3133   sq_newclosure(v, &play_music_wrapper, 0);
3134   if(SQ_FAILED(sq_createslot(v, -3))) {
3135     throw SquirrelError(v, "Couldn't register function 'play_music'");
3136   }
3137
3138   sq_pushstring(v, "play_sound", -1);
3139   sq_newclosure(v, &play_sound_wrapper, 0);
3140   if(SQ_FAILED(sq_createslot(v, -3))) {
3141     throw SquirrelError(v, "Couldn't register function 'play_sound'");
3142   }
3143
3144   sq_pushstring(v, "grease", -1);
3145   sq_newclosure(v, &grease_wrapper, 0);
3146   if(SQ_FAILED(sq_createslot(v, -3))) {
3147     throw SquirrelError(v, "Couldn't register function 'grease'");
3148   }
3149
3150   sq_pushstring(v, "invincible", -1);
3151   sq_newclosure(v, &invincible_wrapper, 0);
3152   if(SQ_FAILED(sq_createslot(v, -3))) {
3153     throw SquirrelError(v, "Couldn't register function 'invincible'");
3154   }
3155
3156   sq_pushstring(v, "ghost", -1);
3157   sq_newclosure(v, &ghost_wrapper, 0);
3158   if(SQ_FAILED(sq_createslot(v, -3))) {
3159     throw SquirrelError(v, "Couldn't register function 'ghost'");
3160   }
3161
3162   sq_pushstring(v, "mortal", -1);
3163   sq_newclosure(v, &mortal_wrapper, 0);
3164   if(SQ_FAILED(sq_createslot(v, -3))) {
3165     throw SquirrelError(v, "Couldn't register function 'mortal'");
3166   }
3167
3168   sq_pushstring(v, "restart", -1);
3169   sq_newclosure(v, &restart_wrapper, 0);
3170   if(SQ_FAILED(sq_createslot(v, -3))) {
3171     throw SquirrelError(v, "Couldn't register function 'restart'");
3172   }
3173
3174   sq_pushstring(v, "whereami", -1);
3175   sq_newclosure(v, &whereami_wrapper, 0);
3176   if(SQ_FAILED(sq_createslot(v, -3))) {
3177     throw SquirrelError(v, "Couldn't register function 'whereami'");
3178   }
3179
3180   sq_pushstring(v, "gotoend", -1);
3181   sq_newclosure(v, &gotoend_wrapper, 0);
3182   if(SQ_FAILED(sq_createslot(v, -3))) {
3183     throw SquirrelError(v, "Couldn't register function 'gotoend'");
3184   }
3185
3186   sq_pushstring(v, "camera", -1);
3187   sq_newclosure(v, &camera_wrapper, 0);
3188   if(SQ_FAILED(sq_createslot(v, -3))) {
3189     throw SquirrelError(v, "Couldn't register function 'camera'");
3190   }
3191
3192   sq_pushstring(v, "quit", -1);
3193   sq_newclosure(v, &quit_wrapper, 0);
3194   if(SQ_FAILED(sq_createslot(v, -3))) {
3195     throw SquirrelError(v, "Couldn't register function 'quit'");
3196   }
3197
3198   sq_pushstring(v, "rand", -1);
3199   sq_newclosure(v, &rand_wrapper, 0);
3200   if(SQ_FAILED(sq_createslot(v, -3))) {
3201     throw SquirrelError(v, "Couldn't register function 'rand'");
3202   }
3203
3204   // Register class DisplayEffect
3205   sq_pushstring(v, "DisplayEffect", -1);
3206   if(sq_newclass(v, SQFalse) < 0) {
3207     std::ostringstream msg;
3208     msg << "Couldn't create new class 'DisplayEffect'";
3209     throw SquirrelError(v, msg.str());
3210   }
3211   sq_pushstring(v, "fade_out", -1);
3212   sq_newclosure(v, &DisplayEffect_fade_out_wrapper, 0);
3213   if(SQ_FAILED(sq_createslot(v, -3))) {
3214     throw SquirrelError(v, "Couldn't register function 'fade_out'");
3215   }
3216
3217   sq_pushstring(v, "fade_in", -1);
3218   sq_newclosure(v, &DisplayEffect_fade_in_wrapper, 0);
3219   if(SQ_FAILED(sq_createslot(v, -3))) {
3220     throw SquirrelError(v, "Couldn't register function 'fade_in'");
3221   }
3222
3223   sq_pushstring(v, "set_black", -1);
3224   sq_newclosure(v, &DisplayEffect_set_black_wrapper, 0);
3225   if(SQ_FAILED(sq_createslot(v, -3))) {
3226     throw SquirrelError(v, "Couldn't register function 'set_black'");
3227   }
3228
3229   sq_pushstring(v, "is_black", -1);
3230   sq_newclosure(v, &DisplayEffect_is_black_wrapper, 0);
3231   if(SQ_FAILED(sq_createslot(v, -3))) {
3232     throw SquirrelError(v, "Couldn't register function 'is_black'");
3233   }
3234
3235   sq_pushstring(v, "sixteen_to_nine", -1);
3236   sq_newclosure(v, &DisplayEffect_sixteen_to_nine_wrapper, 0);
3237   if(SQ_FAILED(sq_createslot(v, -3))) {
3238     throw SquirrelError(v, "Couldn't register function 'sixteen_to_nine'");
3239   }
3240
3241   sq_pushstring(v, "four_to_three", -1);
3242   sq_newclosure(v, &DisplayEffect_four_to_three_wrapper, 0);
3243   if(SQ_FAILED(sq_createslot(v, -3))) {
3244     throw SquirrelError(v, "Couldn't register function 'four_to_three'");
3245   }
3246
3247   if(SQ_FAILED(sq_createslot(v, -3))) {
3248     throw SquirrelError(v, "Couldn't register class 'DisplayEffect'");
3249   }
3250
3251   // Register class Camera
3252   sq_pushstring(v, "Camera", -1);
3253   if(sq_newclass(v, SQFalse) < 0) {
3254     std::ostringstream msg;
3255     msg << "Couldn't create new class 'Camera'";
3256     throw SquirrelError(v, msg.str());
3257   }
3258   sq_pushstring(v, "shake", -1);
3259   sq_newclosure(v, &Camera_shake_wrapper, 0);
3260   if(SQ_FAILED(sq_createslot(v, -3))) {
3261     throw SquirrelError(v, "Couldn't register function 'shake'");
3262   }
3263
3264   sq_pushstring(v, "set_pos", -1);
3265   sq_newclosure(v, &Camera_set_pos_wrapper, 0);
3266   if(SQ_FAILED(sq_createslot(v, -3))) {
3267     throw SquirrelError(v, "Couldn't register function 'set_pos'");
3268   }
3269
3270   sq_pushstring(v, "set_mode", -1);
3271   sq_newclosure(v, &Camera_set_mode_wrapper, 0);
3272   if(SQ_FAILED(sq_createslot(v, -3))) {
3273     throw SquirrelError(v, "Couldn't register function 'set_mode'");
3274   }
3275
3276   sq_pushstring(v, "scroll_to", -1);
3277   sq_newclosure(v, &Camera_scroll_to_wrapper, 0);
3278   if(SQ_FAILED(sq_createslot(v, -3))) {
3279     throw SquirrelError(v, "Couldn't register function 'scroll_to'");
3280   }
3281
3282   if(SQ_FAILED(sq_createslot(v, -3))) {
3283     throw SquirrelError(v, "Couldn't register class 'Camera'");
3284   }
3285
3286   // Register class Level
3287   sq_pushstring(v, "Level", -1);
3288   if(sq_newclass(v, SQFalse) < 0) {
3289     std::ostringstream msg;
3290     msg << "Couldn't create new class 'Level'";
3291     throw SquirrelError(v, msg.str());
3292   }
3293   sq_pushstring(v, "finish", -1);
3294   sq_newclosure(v, &Level_finish_wrapper, 0);
3295   if(SQ_FAILED(sq_createslot(v, -3))) {
3296     throw SquirrelError(v, "Couldn't register function 'finish'");
3297   }
3298
3299   sq_pushstring(v, "spawn", -1);
3300   sq_newclosure(v, &Level_spawn_wrapper, 0);
3301   if(SQ_FAILED(sq_createslot(v, -3))) {
3302     throw SquirrelError(v, "Couldn't register function 'spawn'");
3303   }
3304
3305   sq_pushstring(v, "flip_vertically", -1);
3306   sq_newclosure(v, &Level_flip_vertically_wrapper, 0);
3307   if(SQ_FAILED(sq_createslot(v, -3))) {
3308     throw SquirrelError(v, "Couldn't register function 'flip_vertically'");
3309   }
3310
3311   sq_pushstring(v, "toggle_pause", -1);
3312   sq_newclosure(v, &Level_toggle_pause_wrapper, 0);
3313   if(SQ_FAILED(sq_createslot(v, -3))) {
3314     throw SquirrelError(v, "Couldn't register function 'toggle_pause'");
3315   }
3316
3317   if(SQ_FAILED(sq_createslot(v, -3))) {
3318     throw SquirrelError(v, "Couldn't register class 'Level'");
3319   }
3320
3321   // Register class ScriptedObject
3322   sq_pushstring(v, "ScriptedObject", -1);
3323   if(sq_newclass(v, SQFalse) < 0) {
3324     std::ostringstream msg;
3325     msg << "Couldn't create new class 'ScriptedObject'";
3326     throw SquirrelError(v, msg.str());
3327   }
3328   sq_pushstring(v, "set_action", -1);
3329   sq_newclosure(v, &ScriptedObject_set_action_wrapper, 0);
3330   if(SQ_FAILED(sq_createslot(v, -3))) {
3331     throw SquirrelError(v, "Couldn't register function 'set_action'");
3332   }
3333
3334   sq_pushstring(v, "get_action", -1);
3335   sq_newclosure(v, &ScriptedObject_get_action_wrapper, 0);
3336   if(SQ_FAILED(sq_createslot(v, -3))) {
3337     throw SquirrelError(v, "Couldn't register function 'get_action'");
3338   }
3339
3340   sq_pushstring(v, "move", -1);
3341   sq_newclosure(v, &ScriptedObject_move_wrapper, 0);
3342   if(SQ_FAILED(sq_createslot(v, -3))) {
3343     throw SquirrelError(v, "Couldn't register function 'move'");
3344   }
3345
3346   sq_pushstring(v, "set_pos", -1);
3347   sq_newclosure(v, &ScriptedObject_set_pos_wrapper, 0);
3348   if(SQ_FAILED(sq_createslot(v, -3))) {
3349     throw SquirrelError(v, "Couldn't register function 'set_pos'");
3350   }
3351
3352   sq_pushstring(v, "get_pos_x", -1);
3353   sq_newclosure(v, &ScriptedObject_get_pos_x_wrapper, 0);
3354   if(SQ_FAILED(sq_createslot(v, -3))) {
3355     throw SquirrelError(v, "Couldn't register function 'get_pos_x'");
3356   }
3357
3358   sq_pushstring(v, "get_pos_y", -1);
3359   sq_newclosure(v, &ScriptedObject_get_pos_y_wrapper, 0);
3360   if(SQ_FAILED(sq_createslot(v, -3))) {
3361     throw SquirrelError(v, "Couldn't register function 'get_pos_y'");
3362   }
3363
3364   sq_pushstring(v, "set_velocity", -1);
3365   sq_newclosure(v, &ScriptedObject_set_velocity_wrapper, 0);
3366   if(SQ_FAILED(sq_createslot(v, -3))) {
3367     throw SquirrelError(v, "Couldn't register function 'set_velocity'");
3368   }
3369
3370   sq_pushstring(v, "get_velocity_x", -1);
3371   sq_newclosure(v, &ScriptedObject_get_velocity_x_wrapper, 0);
3372   if(SQ_FAILED(sq_createslot(v, -3))) {
3373     throw SquirrelError(v, "Couldn't register function 'get_velocity_x'");
3374   }
3375
3376   sq_pushstring(v, "get_velocity_y", -1);
3377   sq_newclosure(v, &ScriptedObject_get_velocity_y_wrapper, 0);
3378   if(SQ_FAILED(sq_createslot(v, -3))) {
3379     throw SquirrelError(v, "Couldn't register function 'get_velocity_y'");
3380   }
3381
3382   sq_pushstring(v, "set_visible", -1);
3383   sq_newclosure(v, &ScriptedObject_set_visible_wrapper, 0);
3384   if(SQ_FAILED(sq_createslot(v, -3))) {
3385     throw SquirrelError(v, "Couldn't register function 'set_visible'");
3386   }
3387
3388   sq_pushstring(v, "is_visible", -1);
3389   sq_newclosure(v, &ScriptedObject_is_visible_wrapper, 0);
3390   if(SQ_FAILED(sq_createslot(v, -3))) {
3391     throw SquirrelError(v, "Couldn't register function 'is_visible'");
3392   }
3393
3394   sq_pushstring(v, "set_solid", -1);
3395   sq_newclosure(v, &ScriptedObject_set_solid_wrapper, 0);
3396   if(SQ_FAILED(sq_createslot(v, -3))) {
3397     throw SquirrelError(v, "Couldn't register function 'set_solid'");
3398   }
3399
3400   sq_pushstring(v, "is_solid", -1);
3401   sq_newclosure(v, &ScriptedObject_is_solid_wrapper, 0);
3402   if(SQ_FAILED(sq_createslot(v, -3))) {
3403     throw SquirrelError(v, "Couldn't register function 'is_solid'");
3404   }
3405
3406   sq_pushstring(v, "get_name", -1);
3407   sq_newclosure(v, &ScriptedObject_get_name_wrapper, 0);
3408   if(SQ_FAILED(sq_createslot(v, -3))) {
3409     throw SquirrelError(v, "Couldn't register function 'get_name'");
3410   }
3411
3412   if(SQ_FAILED(sq_createslot(v, -3))) {
3413     throw SquirrelError(v, "Couldn't register class 'ScriptedObject'");
3414   }
3415
3416   // Register class Text
3417   sq_pushstring(v, "Text", -1);
3418   if(sq_newclass(v, SQFalse) < 0) {
3419     std::ostringstream msg;
3420     msg << "Couldn't create new class 'Text'";
3421     throw SquirrelError(v, msg.str());
3422   }
3423   sq_pushstring(v, "set_text", -1);
3424   sq_newclosure(v, &Text_set_text_wrapper, 0);
3425   if(SQ_FAILED(sq_createslot(v, -3))) {
3426     throw SquirrelError(v, "Couldn't register function 'set_text'");
3427   }
3428
3429   sq_pushstring(v, "set_font", -1);
3430   sq_newclosure(v, &Text_set_font_wrapper, 0);
3431   if(SQ_FAILED(sq_createslot(v, -3))) {
3432     throw SquirrelError(v, "Couldn't register function 'set_font'");
3433   }
3434
3435   sq_pushstring(v, "fade_in", -1);
3436   sq_newclosure(v, &Text_fade_in_wrapper, 0);
3437   if(SQ_FAILED(sq_createslot(v, -3))) {
3438     throw SquirrelError(v, "Couldn't register function 'fade_in'");
3439   }
3440
3441   sq_pushstring(v, "fade_out", -1);
3442   sq_newclosure(v, &Text_fade_out_wrapper, 0);
3443   if(SQ_FAILED(sq_createslot(v, -3))) {
3444     throw SquirrelError(v, "Couldn't register function 'fade_out'");
3445   }
3446
3447   sq_pushstring(v, "set_visible", -1);
3448   sq_newclosure(v, &Text_set_visible_wrapper, 0);
3449   if(SQ_FAILED(sq_createslot(v, -3))) {
3450     throw SquirrelError(v, "Couldn't register function 'set_visible'");
3451   }
3452
3453   sq_pushstring(v, "set_centered", -1);
3454   sq_newclosure(v, &Text_set_centered_wrapper, 0);
3455   if(SQ_FAILED(sq_createslot(v, -3))) {
3456     throw SquirrelError(v, "Couldn't register function 'set_centered'");
3457   }
3458
3459   if(SQ_FAILED(sq_createslot(v, -3))) {
3460     throw SquirrelError(v, "Couldn't register class 'Text'");
3461   }
3462
3463   // Register class Player
3464   sq_pushstring(v, "Player", -1);
3465   if(sq_newclass(v, SQFalse) < 0) {
3466     std::ostringstream msg;
3467     msg << "Couldn't create new class 'Player'";
3468     throw SquirrelError(v, msg.str());
3469   }
3470   sq_pushstring(v, "add_bonus", -1);
3471   sq_newclosure(v, &Player_add_bonus_wrapper, 0);
3472   if(SQ_FAILED(sq_createslot(v, -3))) {
3473     throw SquirrelError(v, "Couldn't register function 'add_bonus'");
3474   }
3475
3476   sq_pushstring(v, "add_coins", -1);
3477   sq_newclosure(v, &Player_add_coins_wrapper, 0);
3478   if(SQ_FAILED(sq_createslot(v, -3))) {
3479     throw SquirrelError(v, "Couldn't register function 'add_coins'");
3480   }
3481
3482   sq_pushstring(v, "make_invincible", -1);
3483   sq_newclosure(v, &Player_make_invincible_wrapper, 0);
3484   if(SQ_FAILED(sq_createslot(v, -3))) {
3485     throw SquirrelError(v, "Couldn't register function 'make_invincible'");
3486   }
3487
3488   sq_pushstring(v, "deactivate", -1);
3489   sq_newclosure(v, &Player_deactivate_wrapper, 0);
3490   if(SQ_FAILED(sq_createslot(v, -3))) {
3491     throw SquirrelError(v, "Couldn't register function 'deactivate'");
3492   }
3493
3494   sq_pushstring(v, "activate", -1);
3495   sq_newclosure(v, &Player_activate_wrapper, 0);
3496   if(SQ_FAILED(sq_createslot(v, -3))) {
3497     throw SquirrelError(v, "Couldn't register function 'activate'");
3498   }
3499
3500   sq_pushstring(v, "walk", -1);
3501   sq_newclosure(v, &Player_walk_wrapper, 0);
3502   if(SQ_FAILED(sq_createslot(v, -3))) {
3503     throw SquirrelError(v, "Couldn't register function 'walk'");
3504   }
3505
3506   sq_pushstring(v, "set_visible", -1);
3507   sq_newclosure(v, &Player_set_visible_wrapper, 0);
3508   if(SQ_FAILED(sq_createslot(v, -3))) {
3509     throw SquirrelError(v, "Couldn't register function 'set_visible'");
3510   }
3511
3512   sq_pushstring(v, "get_visible", -1);
3513   sq_newclosure(v, &Player_get_visible_wrapper, 0);
3514   if(SQ_FAILED(sq_createslot(v, -3))) {
3515     throw SquirrelError(v, "Couldn't register function 'get_visible'");
3516   }
3517
3518   sq_pushstring(v, "kill", -1);
3519   sq_newclosure(v, &Player_kill_wrapper, 0);
3520   if(SQ_FAILED(sq_createslot(v, -3))) {
3521     throw SquirrelError(v, "Couldn't register function 'kill'");
3522   }
3523
3524   sq_pushstring(v, "set_ghost_mode", -1);
3525   sq_newclosure(v, &Player_set_ghost_mode_wrapper, 0);
3526   if(SQ_FAILED(sq_createslot(v, -3))) {
3527     throw SquirrelError(v, "Couldn't register function 'set_ghost_mode'");
3528   }
3529
3530   sq_pushstring(v, "get_ghost_mode", -1);
3531   sq_newclosure(v, &Player_get_ghost_mode_wrapper, 0);
3532   if(SQ_FAILED(sq_createslot(v, -3))) {
3533     throw SquirrelError(v, "Couldn't register function 'get_ghost_mode'");
3534   }
3535
3536   sq_pushstring(v, "do_cheer", -1);
3537   sq_newclosure(v, &Player_do_cheer_wrapper, 0);
3538   if(SQ_FAILED(sq_createslot(v, -3))) {
3539     throw SquirrelError(v, "Couldn't register function 'do_cheer'");
3540   }
3541
3542   sq_pushstring(v, "do_duck", -1);
3543   sq_newclosure(v, &Player_do_duck_wrapper, 0);
3544   if(SQ_FAILED(sq_createslot(v, -3))) {
3545     throw SquirrelError(v, "Couldn't register function 'do_duck'");
3546   }
3547
3548   sq_pushstring(v, "do_standup", -1);
3549   sq_newclosure(v, &Player_do_standup_wrapper, 0);
3550   if(SQ_FAILED(sq_createslot(v, -3))) {
3551     throw SquirrelError(v, "Couldn't register function 'do_standup'");
3552   }
3553
3554   sq_pushstring(v, "do_backflip", -1);
3555   sq_newclosure(v, &Player_do_backflip_wrapper, 0);
3556   if(SQ_FAILED(sq_createslot(v, -3))) {
3557     throw SquirrelError(v, "Couldn't register function 'do_backflip'");
3558   }
3559
3560   sq_pushstring(v, "do_jump", -1);
3561   sq_newclosure(v, &Player_do_jump_wrapper, 0);
3562   if(SQ_FAILED(sq_createslot(v, -3))) {
3563     throw SquirrelError(v, "Couldn't register function 'do_jump'");
3564   }
3565
3566   if(SQ_FAILED(sq_createslot(v, -3))) {
3567     throw SquirrelError(v, "Couldn't register class 'Player'");
3568   }
3569
3570   // Register class FloatingImage
3571   sq_pushstring(v, "FloatingImage", -1);
3572   if(sq_newclass(v, SQFalse) < 0) {
3573     std::ostringstream msg;
3574     msg << "Couldn't create new class 'FloatingImage'";
3575     throw SquirrelError(v, msg.str());
3576   }
3577   sq_pushstring(v, "constructor", -1);
3578   sq_newclosure(v, &FloatingImage_constructor_wrapper, 0);
3579   if(SQ_FAILED(sq_createslot(v, -3))) {
3580     throw SquirrelError(v, "Couldn't register function 'constructor'");
3581   }
3582
3583   sq_pushstring(v, "set_layer", -1);
3584   sq_newclosure(v, &FloatingImage_set_layer_wrapper, 0);
3585   if(SQ_FAILED(sq_createslot(v, -3))) {
3586     throw SquirrelError(v, "Couldn't register function 'set_layer'");
3587   }
3588
3589   sq_pushstring(v, "get_layer", -1);
3590   sq_newclosure(v, &FloatingImage_get_layer_wrapper, 0);
3591   if(SQ_FAILED(sq_createslot(v, -3))) {
3592     throw SquirrelError(v, "Couldn't register function 'get_layer'");
3593   }
3594
3595   sq_pushstring(v, "set_pos", -1);
3596   sq_newclosure(v, &FloatingImage_set_pos_wrapper, 0);
3597   if(SQ_FAILED(sq_createslot(v, -3))) {
3598     throw SquirrelError(v, "Couldn't register function 'set_pos'");
3599   }
3600
3601   sq_pushstring(v, "get_pos_x", -1);
3602   sq_newclosure(v, &FloatingImage_get_pos_x_wrapper, 0);
3603   if(SQ_FAILED(sq_createslot(v, -3))) {
3604     throw SquirrelError(v, "Couldn't register function 'get_pos_x'");
3605   }
3606
3607   sq_pushstring(v, "get_pos_y", -1);
3608   sq_newclosure(v, &FloatingImage_get_pos_y_wrapper, 0);
3609   if(SQ_FAILED(sq_createslot(v, -3))) {
3610     throw SquirrelError(v, "Couldn't register function 'get_pos_y'");
3611   }
3612
3613   sq_pushstring(v, "set_anchor_point", -1);
3614   sq_newclosure(v, &FloatingImage_set_anchor_point_wrapper, 0);
3615   if(SQ_FAILED(sq_createslot(v, -3))) {
3616     throw SquirrelError(v, "Couldn't register function 'set_anchor_point'");
3617   }
3618
3619   sq_pushstring(v, "get_anchor_point", -1);
3620   sq_newclosure(v, &FloatingImage_get_anchor_point_wrapper, 0);
3621   if(SQ_FAILED(sq_createslot(v, -3))) {
3622     throw SquirrelError(v, "Couldn't register function 'get_anchor_point'");
3623   }
3624
3625   sq_pushstring(v, "set_visible", -1);
3626   sq_newclosure(v, &FloatingImage_set_visible_wrapper, 0);
3627   if(SQ_FAILED(sq_createslot(v, -3))) {
3628     throw SquirrelError(v, "Couldn't register function 'set_visible'");
3629   }
3630
3631   sq_pushstring(v, "get_visible", -1);
3632   sq_newclosure(v, &FloatingImage_get_visible_wrapper, 0);
3633   if(SQ_FAILED(sq_createslot(v, -3))) {
3634     throw SquirrelError(v, "Couldn't register function 'get_visible'");
3635   }
3636
3637   sq_pushstring(v, "set_action", -1);
3638   sq_newclosure(v, &FloatingImage_set_action_wrapper, 0);
3639   if(SQ_FAILED(sq_createslot(v, -3))) {
3640     throw SquirrelError(v, "Couldn't register function 'set_action'");
3641   }
3642
3643   sq_pushstring(v, "get_action", -1);
3644   sq_newclosure(v, &FloatingImage_get_action_wrapper, 0);
3645   if(SQ_FAILED(sq_createslot(v, -3))) {
3646     throw SquirrelError(v, "Couldn't register function 'get_action'");
3647   }
3648
3649   if(SQ_FAILED(sq_createslot(v, -3))) {
3650     throw SquirrelError(v, "Couldn't register class 'FloatingImage'");
3651   }
3652
3653   // Register class Platform
3654   sq_pushstring(v, "Platform", -1);
3655   if(sq_newclass(v, SQFalse) < 0) {
3656     std::ostringstream msg;
3657     msg << "Couldn't create new class 'Platform'";
3658     throw SquirrelError(v, msg.str());
3659   }
3660   sq_pushstring(v, "goto_node", -1);
3661   sq_newclosure(v, &Platform_goto_node_wrapper, 0);
3662   if(SQ_FAILED(sq_createslot(v, -3))) {
3663     throw SquirrelError(v, "Couldn't register function 'goto_node'");
3664   }
3665
3666   sq_pushstring(v, "start_moving", -1);
3667   sq_newclosure(v, &Platform_start_moving_wrapper, 0);
3668   if(SQ_FAILED(sq_createslot(v, -3))) {
3669     throw SquirrelError(v, "Couldn't register function 'start_moving'");
3670   }
3671
3672   sq_pushstring(v, "stop_moving", -1);
3673   sq_newclosure(v, &Platform_stop_moving_wrapper, 0);
3674   if(SQ_FAILED(sq_createslot(v, -3))) {
3675     throw SquirrelError(v, "Couldn't register function 'stop_moving'");
3676   }
3677
3678   if(SQ_FAILED(sq_createslot(v, -3))) {
3679     throw SquirrelError(v, "Couldn't register class 'Platform'");
3680   }
3681
3682   // Register class Candle
3683   sq_pushstring(v, "Candle", -1);
3684   if(sq_newclass(v, SQFalse) < 0) {
3685     std::ostringstream msg;
3686     msg << "Couldn't create new class 'Candle'";
3687     throw SquirrelError(v, msg.str());
3688   }
3689   sq_pushstring(v, "get_burning", -1);
3690   sq_newclosure(v, &Candle_get_burning_wrapper, 0);
3691   if(SQ_FAILED(sq_createslot(v, -3))) {
3692     throw SquirrelError(v, "Couldn't register function 'get_burning'");
3693   }
3694
3695   sq_pushstring(v, "set_burning", -1);
3696   sq_newclosure(v, &Candle_set_burning_wrapper, 0);
3697   if(SQ_FAILED(sq_createslot(v, -3))) {
3698     throw SquirrelError(v, "Couldn't register function 'set_burning'");
3699   }
3700
3701   if(SQ_FAILED(sq_createslot(v, -3))) {
3702     throw SquirrelError(v, "Couldn't register class 'Candle'");
3703   }
3704
3705   // Register class Wind
3706   sq_pushstring(v, "Wind", -1);
3707   if(sq_newclass(v, SQFalse) < 0) {
3708     std::ostringstream msg;
3709     msg << "Couldn't create new class 'Wind'";
3710     throw SquirrelError(v, msg.str());
3711   }
3712   sq_pushstring(v, "start", -1);
3713   sq_newclosure(v, &Wind_start_wrapper, 0);
3714   if(SQ_FAILED(sq_createslot(v, -3))) {
3715     throw SquirrelError(v, "Couldn't register function 'start'");
3716   }
3717
3718   sq_pushstring(v, "stop", -1);
3719   sq_newclosure(v, &Wind_stop_wrapper, 0);
3720   if(SQ_FAILED(sq_createslot(v, -3))) {
3721     throw SquirrelError(v, "Couldn't register function 'stop'");
3722   }
3723
3724   if(SQ_FAILED(sq_createslot(v, -3))) {
3725     throw SquirrelError(v, "Couldn't register class 'Wind'");
3726   }
3727
3728   // Register class AmbientSound
3729   sq_pushstring(v, "AmbientSound", -1);
3730   if(sq_newclass(v, SQFalse) < 0) {
3731     std::ostringstream msg;
3732     msg << "Couldn't create new class 'AmbientSound'";
3733     throw SquirrelError(v, msg.str());
3734   }
3735   sq_pushstring(v, "set_pos", -1);
3736   sq_newclosure(v, &AmbientSound_set_pos_wrapper, 0);
3737   if(SQ_FAILED(sq_createslot(v, -3))) {
3738     throw SquirrelError(v, "Couldn't register function 'set_pos'");
3739   }
3740
3741   sq_pushstring(v, "get_pos_x", -1);
3742   sq_newclosure(v, &AmbientSound_get_pos_x_wrapper, 0);
3743   if(SQ_FAILED(sq_createslot(v, -3))) {
3744     throw SquirrelError(v, "Couldn't register function 'get_pos_x'");
3745   }
3746
3747   sq_pushstring(v, "get_pos_y", -1);
3748   sq_newclosure(v, &AmbientSound_get_pos_y_wrapper, 0);
3749   if(SQ_FAILED(sq_createslot(v, -3))) {
3750     throw SquirrelError(v, "Couldn't register function 'get_pos_y'");
3751   }
3752
3753   if(SQ_FAILED(sq_createslot(v, -3))) {
3754     throw SquirrelError(v, "Couldn't register class 'AmbientSound'");
3755   }
3756
3757 }
3758
3759 } // end of namespace Scripting
3760