X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fscripting%2Fwrapper.cpp;h=529d8897db21738b237e69527f06ea0fd024b67c;hb=88fac7ee1f38465b6b3d2a9946962db1b1c41a94;hp=4f2592e2052ec46393f2b520f18bfd78e704f0ed;hpb=9b58f72e1c6900540c0ee00a800ed57d2c1f4974;p=supertux.git diff --git a/src/scripting/wrapper.cpp b/src/scripting/wrapper.cpp index 4f2592e20..529d8897d 100644 --- a/src/scripting/wrapper.cpp +++ b/src/scripting/wrapper.cpp @@ -18,28 +18,29 @@ namespace Scripting namespace Wrapper { -static int DisplayEffect_release_hook(SQUserPointer ptr, int ) +static SQInteger DisplayEffect_release_hook(SQUserPointer ptr, SQInteger ) { Scripting::DisplayEffect* _this = reinterpret_cast (ptr); delete _this; return 0; } -static int DisplayEffect_fade_out_wrapper(HSQUIRRELVM vm) +static SQInteger DisplayEffect_fade_out_wrapper(HSQUIRRELVM vm) { - Scripting::DisplayEffect* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'fade_out' called without instance")); return SQ_ERROR; } - float arg0; + Scripting::DisplayEffect* _this = reinterpret_cast (data); + SQFloat arg0; if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a float")); return SQ_ERROR; } try { - _this->fade_out(arg0); + _this->fade_out(static_cast (arg0)); return 0; @@ -53,21 +54,22 @@ static int DisplayEffect_fade_out_wrapper(HSQUIRRELVM vm) } -static int DisplayEffect_fade_in_wrapper(HSQUIRRELVM vm) +static SQInteger DisplayEffect_fade_in_wrapper(HSQUIRRELVM vm) { - Scripting::DisplayEffect* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'fade_in' called without instance")); return SQ_ERROR; } - float arg0; + Scripting::DisplayEffect* _this = reinterpret_cast (data); + SQFloat arg0; if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a float")); return SQ_ERROR; } try { - _this->fade_in(arg0); + _this->fade_in(static_cast (arg0)); return 0; @@ -81,13 +83,14 @@ static int DisplayEffect_fade_in_wrapper(HSQUIRRELVM vm) } -static int DisplayEffect_set_black_wrapper(HSQUIRRELVM vm) +static SQInteger DisplayEffect_set_black_wrapper(HSQUIRRELVM vm) { - Scripting::DisplayEffect* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'set_black' called without instance")); return SQ_ERROR; } + Scripting::DisplayEffect* _this = reinterpret_cast (data); SQBool arg0; if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a bool")); @@ -95,7 +98,7 @@ static int DisplayEffect_set_black_wrapper(HSQUIRRELVM vm) } try { - _this->set_black(arg0); + _this->set_black(arg0 == SQTrue); return 0; @@ -109,13 +112,14 @@ static int DisplayEffect_set_black_wrapper(HSQUIRRELVM vm) } -static int DisplayEffect_is_black_wrapper(HSQUIRRELVM vm) +static SQInteger DisplayEffect_is_black_wrapper(HSQUIRRELVM vm) { - Scripting::DisplayEffect* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'is_black' called without instance")); return SQ_ERROR; } + Scripting::DisplayEffect* _this = reinterpret_cast (data); try { bool return_value = _this->is_black(); @@ -133,21 +137,22 @@ static int DisplayEffect_is_black_wrapper(HSQUIRRELVM vm) } -static int DisplayEffect_sixteen_to_nine_wrapper(HSQUIRRELVM vm) +static SQInteger DisplayEffect_sixteen_to_nine_wrapper(HSQUIRRELVM vm) { - Scripting::DisplayEffect* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'sixteen_to_nine' called without instance")); return SQ_ERROR; } - float arg0; + Scripting::DisplayEffect* _this = reinterpret_cast (data); + SQFloat arg0; if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a float")); return SQ_ERROR; } try { - _this->sixteen_to_nine(arg0); + _this->sixteen_to_nine(static_cast (arg0)); return 0; @@ -161,21 +166,22 @@ static int DisplayEffect_sixteen_to_nine_wrapper(HSQUIRRELVM vm) } -static int DisplayEffect_four_to_three_wrapper(HSQUIRRELVM vm) +static SQInteger DisplayEffect_four_to_three_wrapper(HSQUIRRELVM vm) { - Scripting::DisplayEffect* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'four_to_three' called without instance")); return SQ_ERROR; } - float arg0; + Scripting::DisplayEffect* _this = reinterpret_cast (data); + SQFloat arg0; if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a float")); return SQ_ERROR; } try { - _this->four_to_three(arg0); + _this->four_to_three(static_cast (arg0)); return 0; @@ -189,38 +195,39 @@ static int DisplayEffect_four_to_three_wrapper(HSQUIRRELVM vm) } -static int Camera_release_hook(SQUserPointer ptr, int ) +static SQInteger Camera_release_hook(SQUserPointer ptr, SQInteger ) { Scripting::Camera* _this = reinterpret_cast (ptr); delete _this; return 0; } -static int Camera_shake_wrapper(HSQUIRRELVM vm) +static SQInteger Camera_shake_wrapper(HSQUIRRELVM vm) { - Scripting::Camera* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'shake' called without instance")); return SQ_ERROR; } - float arg0; + Scripting::Camera* _this = reinterpret_cast (data); + SQFloat arg0; if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a float")); return SQ_ERROR; } - float arg1; + SQFloat arg1; if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) { sq_throwerror(vm, _SC("Argument 2 not a float")); return SQ_ERROR; } - float arg2; + SQFloat arg2; if(SQ_FAILED(sq_getfloat(vm, 4, &arg2))) { sq_throwerror(vm, _SC("Argument 3 not a float")); return SQ_ERROR; } try { - _this->shake(arg0, arg1, arg2); + _this->shake(static_cast (arg0), static_cast (arg1), static_cast (arg2)); return 0; @@ -234,26 +241,27 @@ static int Camera_shake_wrapper(HSQUIRRELVM vm) } -static int Camera_set_pos_wrapper(HSQUIRRELVM vm) +static SQInteger Camera_set_pos_wrapper(HSQUIRRELVM vm) { - Scripting::Camera* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'set_pos' called without instance")); return SQ_ERROR; } - float arg0; + Scripting::Camera* _this = reinterpret_cast (data); + SQFloat arg0; if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a float")); return SQ_ERROR; } - float arg1; + SQFloat arg1; if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) { sq_throwerror(vm, _SC("Argument 2 not a float")); return SQ_ERROR; } try { - _this->set_pos(arg0, arg1); + _this->set_pos(static_cast (arg0), static_cast (arg1)); return 0; @@ -267,14 +275,15 @@ static int Camera_set_pos_wrapper(HSQUIRRELVM vm) } -static int Camera_set_mode_wrapper(HSQUIRRELVM vm) +static SQInteger Camera_set_mode_wrapper(HSQUIRRELVM vm) { - Scripting::Camera* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'set_mode' called without instance")); return SQ_ERROR; } - const char* arg0; + Scripting::Camera* _this = reinterpret_cast (data); + const SQChar* arg0; if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a string")); return SQ_ERROR; @@ -295,31 +304,32 @@ static int Camera_set_mode_wrapper(HSQUIRRELVM vm) } -static int Camera_scroll_to_wrapper(HSQUIRRELVM vm) +static SQInteger Camera_scroll_to_wrapper(HSQUIRRELVM vm) { - Scripting::Camera* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'scroll_to' called without instance")); return SQ_ERROR; } - float arg0; + Scripting::Camera* _this = reinterpret_cast (data); + SQFloat arg0; if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a float")); return SQ_ERROR; } - float arg1; + SQFloat arg1; if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) { sq_throwerror(vm, _SC("Argument 2 not a float")); return SQ_ERROR; } - float arg2; + SQFloat arg2; if(SQ_FAILED(sq_getfloat(vm, 4, &arg2))) { sq_throwerror(vm, _SC("Argument 3 not a float")); return SQ_ERROR; } try { - _this->scroll_to(arg0, arg1, arg2); + _this->scroll_to(static_cast (arg0), static_cast (arg1), static_cast (arg2)); return 0; @@ -333,20 +343,21 @@ static int Camera_scroll_to_wrapper(HSQUIRRELVM vm) } -static int Level_release_hook(SQUserPointer ptr, int ) +static SQInteger Level_release_hook(SQUserPointer ptr, SQInteger ) { Scripting::Level* _this = reinterpret_cast (ptr); delete _this; return 0; } -static int Level_finish_wrapper(HSQUIRRELVM vm) +static SQInteger Level_finish_wrapper(HSQUIRRELVM vm) { - Scripting::Level* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'finish' called without instance")); return SQ_ERROR; } + Scripting::Level* _this = reinterpret_cast (data); SQBool arg0; if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a bool")); @@ -354,7 +365,7 @@ static int Level_finish_wrapper(HSQUIRRELVM vm) } try { - _this->finish(arg0); + _this->finish(arg0 == SQTrue); return 0; @@ -368,19 +379,20 @@ static int Level_finish_wrapper(HSQUIRRELVM vm) } -static int Level_spawn_wrapper(HSQUIRRELVM vm) +static SQInteger Level_spawn_wrapper(HSQUIRRELVM vm) { - Scripting::Level* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'spawn' called without instance")); return SQ_ERROR; } - const char* arg0; + Scripting::Level* _this = reinterpret_cast (data); + const SQChar* arg0; if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a string")); return SQ_ERROR; } - const char* arg1; + const SQChar* arg1; if(SQ_FAILED(sq_getstring(vm, 3, &arg1))) { sq_throwerror(vm, _SC("Argument 2 not a string")); return SQ_ERROR; @@ -401,13 +413,14 @@ static int Level_spawn_wrapper(HSQUIRRELVM vm) } -static int Level_flip_vertically_wrapper(HSQUIRRELVM vm) +static SQInteger Level_flip_vertically_wrapper(HSQUIRRELVM vm) { - Scripting::Level* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'flip_vertically' called without instance")); return SQ_ERROR; } + Scripting::Level* _this = reinterpret_cast (data); try { _this->flip_vertically(); @@ -424,21 +437,46 @@ static int Level_flip_vertically_wrapper(HSQUIRRELVM vm) } -static int ScriptedObject_release_hook(SQUserPointer ptr, int ) +static SQInteger Level_toggle_pause_wrapper(HSQUIRRELVM vm) +{ + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'toggle_pause' called without instance")); + return SQ_ERROR; + } + Scripting::Level* _this = reinterpret_cast (data); + + try { + _this->toggle_pause(); + + return 0; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'toggle_pause'")); + return SQ_ERROR; + } + +} + +static SQInteger ScriptedObject_release_hook(SQUserPointer ptr, SQInteger ) { Scripting::ScriptedObject* _this = reinterpret_cast (ptr); delete _this; return 0; } -static int ScriptedObject_set_action_wrapper(HSQUIRRELVM vm) +static SQInteger ScriptedObject_set_action_wrapper(HSQUIRRELVM vm) { - Scripting::ScriptedObject* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'set_action' called without instance")); return SQ_ERROR; } - const char* arg0; + Scripting::ScriptedObject* _this = reinterpret_cast (data); + const SQChar* arg0; if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a string")); return SQ_ERROR; @@ -459,13 +497,14 @@ static int ScriptedObject_set_action_wrapper(HSQUIRRELVM vm) } -static int ScriptedObject_get_action_wrapper(HSQUIRRELVM vm) +static SQInteger ScriptedObject_get_action_wrapper(HSQUIRRELVM vm) { - Scripting::ScriptedObject* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'get_action' called without instance")); return SQ_ERROR; } + Scripting::ScriptedObject* _this = reinterpret_cast (data); try { std::string return_value = _this->get_action(); @@ -483,26 +522,27 @@ static int ScriptedObject_get_action_wrapper(HSQUIRRELVM vm) } -static int ScriptedObject_move_wrapper(HSQUIRRELVM vm) +static SQInteger ScriptedObject_move_wrapper(HSQUIRRELVM vm) { - Scripting::ScriptedObject* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'move' called without instance")); return SQ_ERROR; } - float arg0; + Scripting::ScriptedObject* _this = reinterpret_cast (data); + SQFloat arg0; if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a float")); return SQ_ERROR; } - float arg1; + SQFloat arg1; if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) { sq_throwerror(vm, _SC("Argument 2 not a float")); return SQ_ERROR; } try { - _this->move(arg0, arg1); + _this->move(static_cast (arg0), static_cast (arg1)); return 0; @@ -516,26 +556,27 @@ static int ScriptedObject_move_wrapper(HSQUIRRELVM vm) } -static int ScriptedObject_set_pos_wrapper(HSQUIRRELVM vm) +static SQInteger ScriptedObject_set_pos_wrapper(HSQUIRRELVM vm) { - Scripting::ScriptedObject* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'set_pos' called without instance")); return SQ_ERROR; } - float arg0; + Scripting::ScriptedObject* _this = reinterpret_cast (data); + SQFloat arg0; if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a float")); return SQ_ERROR; } - float arg1; + SQFloat arg1; if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) { sq_throwerror(vm, _SC("Argument 2 not a float")); return SQ_ERROR; } try { - _this->set_pos(arg0, arg1); + _this->set_pos(static_cast (arg0), static_cast (arg1)); return 0; @@ -549,13 +590,14 @@ static int ScriptedObject_set_pos_wrapper(HSQUIRRELVM vm) } -static int ScriptedObject_get_pos_x_wrapper(HSQUIRRELVM vm) +static SQInteger ScriptedObject_get_pos_x_wrapper(HSQUIRRELVM vm) { - Scripting::ScriptedObject* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'get_pos_x' called without instance")); return SQ_ERROR; } + Scripting::ScriptedObject* _this = reinterpret_cast (data); try { float return_value = _this->get_pos_x(); @@ -573,13 +615,14 @@ static int ScriptedObject_get_pos_x_wrapper(HSQUIRRELVM vm) } -static int ScriptedObject_get_pos_y_wrapper(HSQUIRRELVM vm) +static SQInteger ScriptedObject_get_pos_y_wrapper(HSQUIRRELVM vm) { - Scripting::ScriptedObject* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'get_pos_y' called without instance")); return SQ_ERROR; } + Scripting::ScriptedObject* _this = reinterpret_cast (data); try { float return_value = _this->get_pos_y(); @@ -597,26 +640,27 @@ static int ScriptedObject_get_pos_y_wrapper(HSQUIRRELVM vm) } -static int ScriptedObject_set_velocity_wrapper(HSQUIRRELVM vm) +static SQInteger ScriptedObject_set_velocity_wrapper(HSQUIRRELVM vm) { - Scripting::ScriptedObject* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'set_velocity' called without instance")); return SQ_ERROR; } - float arg0; + Scripting::ScriptedObject* _this = reinterpret_cast (data); + SQFloat arg0; if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a float")); return SQ_ERROR; } - float arg1; + SQFloat arg1; if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) { sq_throwerror(vm, _SC("Argument 2 not a float")); return SQ_ERROR; } try { - _this->set_velocity(arg0, arg1); + _this->set_velocity(static_cast (arg0), static_cast (arg1)); return 0; @@ -630,13 +674,14 @@ static int ScriptedObject_set_velocity_wrapper(HSQUIRRELVM vm) } -static int ScriptedObject_get_velocity_x_wrapper(HSQUIRRELVM vm) +static SQInteger ScriptedObject_get_velocity_x_wrapper(HSQUIRRELVM vm) { - Scripting::ScriptedObject* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'get_velocity_x' called without instance")); return SQ_ERROR; } + Scripting::ScriptedObject* _this = reinterpret_cast (data); try { float return_value = _this->get_velocity_x(); @@ -654,13 +699,14 @@ static int ScriptedObject_get_velocity_x_wrapper(HSQUIRRELVM vm) } -static int ScriptedObject_get_velocity_y_wrapper(HSQUIRRELVM vm) +static SQInteger ScriptedObject_get_velocity_y_wrapper(HSQUIRRELVM vm) { - Scripting::ScriptedObject* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'get_velocity_y' called without instance")); return SQ_ERROR; } + Scripting::ScriptedObject* _this = reinterpret_cast (data); try { float return_value = _this->get_velocity_y(); @@ -678,13 +724,14 @@ static int ScriptedObject_get_velocity_y_wrapper(HSQUIRRELVM vm) } -static int ScriptedObject_set_visible_wrapper(HSQUIRRELVM vm) +static SQInteger ScriptedObject_set_visible_wrapper(HSQUIRRELVM vm) { - Scripting::ScriptedObject* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'set_visible' called without instance")); return SQ_ERROR; } + Scripting::ScriptedObject* _this = reinterpret_cast (data); SQBool arg0; if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a bool")); @@ -692,7 +739,7 @@ static int ScriptedObject_set_visible_wrapper(HSQUIRRELVM vm) } try { - _this->set_visible(arg0); + _this->set_visible(arg0 == SQTrue); return 0; @@ -706,13 +753,14 @@ static int ScriptedObject_set_visible_wrapper(HSQUIRRELVM vm) } -static int ScriptedObject_is_visible_wrapper(HSQUIRRELVM vm) +static SQInteger ScriptedObject_is_visible_wrapper(HSQUIRRELVM vm) { - Scripting::ScriptedObject* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'is_visible' called without instance")); return SQ_ERROR; } + Scripting::ScriptedObject* _this = reinterpret_cast (data); try { bool return_value = _this->is_visible(); @@ -730,108 +778,101 @@ static int ScriptedObject_is_visible_wrapper(HSQUIRRELVM vm) } -static int ScriptedObject_get_name_wrapper(HSQUIRRELVM vm) +static SQInteger ScriptedObject_set_solid_wrapper(HSQUIRRELVM vm) { - Scripting::ScriptedObject* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { - sq_throwerror(vm, _SC("'get_name' called without instance")); + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'set_solid' called without instance")); + return SQ_ERROR; + } + Scripting::ScriptedObject* _this = reinterpret_cast (data); + SQBool arg0; + if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) { + sq_throwerror(vm, _SC("Argument 1 not a bool")); return SQ_ERROR; } try { - std::string return_value = _this->get_name(); + _this->set_solid(arg0 == SQTrue); - sq_pushstring(vm, return_value.c_str(), return_value.size()); - return 1; + return 0; } catch(std::exception& e) { sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_name'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_solid'")); return SQ_ERROR; } } -static int Sound_release_hook(SQUserPointer ptr, int ) -{ - Scripting::Sound* _this = reinterpret_cast (ptr); - delete _this; - return 0; -} - -static int Sound_play_music_wrapper(HSQUIRRELVM vm) +static SQInteger ScriptedObject_is_solid_wrapper(HSQUIRRELVM vm) { - Scripting::Sound* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { - sq_throwerror(vm, _SC("'play_music' called without instance")); - return SQ_ERROR; - } - const char* arg0; - if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { - sq_throwerror(vm, _SC("Argument 1 not a string")); + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'is_solid' called without instance")); return SQ_ERROR; } + Scripting::ScriptedObject* _this = reinterpret_cast (data); try { - _this->play_music(arg0); + bool return_value = _this->is_solid(); - return 0; + sq_pushbool(vm, return_value); + return 1; } catch(std::exception& e) { sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'play_music'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'is_solid'")); return SQ_ERROR; } } -static int Sound_play_wrapper(HSQUIRRELVM vm) +static SQInteger ScriptedObject_get_name_wrapper(HSQUIRRELVM vm) { - Scripting::Sound* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { - sq_throwerror(vm, _SC("'play' called without instance")); - return SQ_ERROR; - } - const char* arg0; - if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { - sq_throwerror(vm, _SC("Argument 1 not a string")); + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'get_name' called without instance")); return SQ_ERROR; } + Scripting::ScriptedObject* _this = reinterpret_cast (data); try { - _this->play(arg0); + std::string return_value = _this->get_name(); - return 0; + sq_pushstring(vm, return_value.c_str(), return_value.size()); + return 1; } catch(std::exception& e) { sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'play'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_name'")); return SQ_ERROR; } } -static int Text_release_hook(SQUserPointer ptr, int ) +static SQInteger Text_release_hook(SQUserPointer ptr, SQInteger ) { Scripting::Text* _this = reinterpret_cast (ptr); delete _this; return 0; } -static int Text_set_text_wrapper(HSQUIRRELVM vm) +static SQInteger Text_set_text_wrapper(HSQUIRRELVM vm) { - Scripting::Text* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'set_text' called without instance")); return SQ_ERROR; } - const char* arg0; + Scripting::Text* _this = reinterpret_cast (data); + const SQChar* arg0; if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a string")); return SQ_ERROR; @@ -852,14 +893,15 @@ static int Text_set_text_wrapper(HSQUIRRELVM vm) } -static int Text_set_font_wrapper(HSQUIRRELVM vm) +static SQInteger Text_set_font_wrapper(HSQUIRRELVM vm) { - Scripting::Text* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'set_font' called without instance")); return SQ_ERROR; } - const char* arg0; + Scripting::Text* _this = reinterpret_cast (data); + const SQChar* arg0; if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a string")); return SQ_ERROR; @@ -880,21 +922,22 @@ static int Text_set_font_wrapper(HSQUIRRELVM vm) } -static int Text_fade_in_wrapper(HSQUIRRELVM vm) +static SQInteger Text_fade_in_wrapper(HSQUIRRELVM vm) { - Scripting::Text* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'fade_in' called without instance")); return SQ_ERROR; } - float arg0; + Scripting::Text* _this = reinterpret_cast (data); + SQFloat arg0; if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a float")); return SQ_ERROR; } try { - _this->fade_in(arg0); + _this->fade_in(static_cast (arg0)); return 0; @@ -908,21 +951,22 @@ static int Text_fade_in_wrapper(HSQUIRRELVM vm) } -static int Text_fade_out_wrapper(HSQUIRRELVM vm) +static SQInteger Text_fade_out_wrapper(HSQUIRRELVM vm) { - Scripting::Text* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'fade_out' called without instance")); return SQ_ERROR; } - float arg0; + Scripting::Text* _this = reinterpret_cast (data); + SQFloat arg0; if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a float")); return SQ_ERROR; } try { - _this->fade_out(arg0); + _this->fade_out(static_cast (arg0)); return 0; @@ -936,13 +980,14 @@ static int Text_fade_out_wrapper(HSQUIRRELVM vm) } -static int Text_set_visible_wrapper(HSQUIRRELVM vm) +static SQInteger Text_set_visible_wrapper(HSQUIRRELVM vm) { - Scripting::Text* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'set_visible' called without instance")); return SQ_ERROR; } + Scripting::Text* _this = reinterpret_cast (data); SQBool arg0; if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a bool")); @@ -950,7 +995,7 @@ static int Text_set_visible_wrapper(HSQUIRRELVM vm) } try { - _this->set_visible(arg0); + _this->set_visible(arg0 == SQTrue); return 0; @@ -964,13 +1009,14 @@ static int Text_set_visible_wrapper(HSQUIRRELVM vm) } -static int Text_set_centered_wrapper(HSQUIRRELVM vm) +static SQInteger Text_set_centered_wrapper(HSQUIRRELVM vm) { - Scripting::Text* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'set_centered' called without instance")); return SQ_ERROR; } + Scripting::Text* _this = reinterpret_cast (data); SQBool arg0; if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a bool")); @@ -978,7 +1024,7 @@ static int Text_set_centered_wrapper(HSQUIRRELVM vm) } try { - _this->set_centered(arg0); + _this->set_centered(arg0 == SQTrue); return 0; @@ -992,21 +1038,22 @@ static int Text_set_centered_wrapper(HSQUIRRELVM vm) } -static int Player_release_hook(SQUserPointer ptr, int ) +static SQInteger Player_release_hook(SQUserPointer ptr, SQInteger ) { Scripting::Player* _this = reinterpret_cast (ptr); delete _this; return 0; } -static int Player_add_bonus_wrapper(HSQUIRRELVM vm) +static SQInteger Player_add_bonus_wrapper(HSQUIRRELVM vm) { - Scripting::Player* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'add_bonus' called without instance")); return SQ_ERROR; } - const char* arg0; + Scripting::Player* _this = reinterpret_cast (data); + const SQChar* arg0; if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a string")); return SQ_ERROR; @@ -1027,21 +1074,22 @@ static int Player_add_bonus_wrapper(HSQUIRRELVM vm) } -static int Player_add_coins_wrapper(HSQUIRRELVM vm) +static SQInteger Player_add_coins_wrapper(HSQUIRRELVM vm) { - Scripting::Player* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'add_coins' called without instance")); return SQ_ERROR; } - int arg0; + Scripting::Player* _this = reinterpret_cast (data); + SQInteger arg0; if(SQ_FAILED(sq_getinteger(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not an integer")); return SQ_ERROR; } try { - _this->add_coins(arg0); + _this->add_coins(static_cast (arg0)); return 0; @@ -1055,13 +1103,14 @@ static int Player_add_coins_wrapper(HSQUIRRELVM vm) } -static int Player_make_invincible_wrapper(HSQUIRRELVM vm) +static SQInteger Player_make_invincible_wrapper(HSQUIRRELVM vm) { - Scripting::Player* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'make_invincible' called without instance")); return SQ_ERROR; } + Scripting::Player* _this = reinterpret_cast (data); try { _this->make_invincible(); @@ -1078,13 +1127,14 @@ static int Player_make_invincible_wrapper(HSQUIRRELVM vm) } -static int Player_deactivate_wrapper(HSQUIRRELVM vm) +static SQInteger Player_deactivate_wrapper(HSQUIRRELVM vm) { - Scripting::Player* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'deactivate' called without instance")); return SQ_ERROR; } + Scripting::Player* _this = reinterpret_cast (data); try { _this->deactivate(); @@ -1101,13 +1151,14 @@ static int Player_deactivate_wrapper(HSQUIRRELVM vm) } -static int Player_activate_wrapper(HSQUIRRELVM vm) +static SQInteger Player_activate_wrapper(HSQUIRRELVM vm) { - Scripting::Player* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'activate' called without instance")); return SQ_ERROR; } + Scripting::Player* _this = reinterpret_cast (data); try { _this->activate(); @@ -1124,21 +1175,22 @@ static int Player_activate_wrapper(HSQUIRRELVM vm) } -static int Player_walk_wrapper(HSQUIRRELVM vm) +static SQInteger Player_walk_wrapper(HSQUIRRELVM vm) { - Scripting::Player* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'walk' called without instance")); return SQ_ERROR; } - float arg0; + Scripting::Player* _this = reinterpret_cast (data); + SQFloat arg0; if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a float")); return SQ_ERROR; } try { - _this->walk(arg0); + _this->walk(static_cast (arg0)); return 0; @@ -1152,13 +1204,14 @@ static int Player_walk_wrapper(HSQUIRRELVM vm) } -static int Player_set_visible_wrapper(HSQUIRRELVM vm) +static SQInteger Player_set_visible_wrapper(HSQUIRRELVM vm) { - Scripting::Player* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'set_visible' called without instance")); return SQ_ERROR; } + Scripting::Player* _this = reinterpret_cast (data); SQBool arg0; if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a bool")); @@ -1166,7 +1219,7 @@ static int Player_set_visible_wrapper(HSQUIRRELVM vm) } try { - _this->set_visible(arg0); + _this->set_visible(arg0 == SQTrue); return 0; @@ -1180,13 +1233,14 @@ static int Player_set_visible_wrapper(HSQUIRRELVM vm) } -static int Player_get_visible_wrapper(HSQUIRRELVM vm) +static SQInteger Player_get_visible_wrapper(HSQUIRRELVM vm) { - Scripting::Player* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'get_visible' called without instance")); return SQ_ERROR; } + Scripting::Player* _this = reinterpret_cast (data); try { bool return_value = _this->get_visible(); @@ -1204,16 +1258,224 @@ static int Player_get_visible_wrapper(HSQUIRRELVM vm) } -static int FloatingImage_release_hook(SQUserPointer ptr, int ) +static SQInteger Player_kill_wrapper(HSQUIRRELVM vm) +{ + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'kill' called without instance")); + return SQ_ERROR; + } + Scripting::Player* _this = reinterpret_cast (data); + SQBool arg0; + if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) { + sq_throwerror(vm, _SC("Argument 1 not a bool")); + return SQ_ERROR; + } + + try { + _this->kill(arg0 == SQTrue); + + return 0; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'kill'")); + return SQ_ERROR; + } + +} + +static SQInteger Player_set_ghost_mode_wrapper(HSQUIRRELVM vm) +{ + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'set_ghost_mode' called without instance")); + return SQ_ERROR; + } + Scripting::Player* _this = reinterpret_cast (data); + SQBool arg0; + if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) { + sq_throwerror(vm, _SC("Argument 1 not a bool")); + return SQ_ERROR; + } + + try { + _this->set_ghost_mode(arg0 == SQTrue); + + return 0; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_ghost_mode'")); + return SQ_ERROR; + } + +} + +static SQInteger Player_get_ghost_mode_wrapper(HSQUIRRELVM vm) +{ + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'get_ghost_mode' called without instance")); + return SQ_ERROR; + } + Scripting::Player* _this = reinterpret_cast (data); + + try { + bool return_value = _this->get_ghost_mode(); + + sq_pushbool(vm, return_value); + return 1; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_ghost_mode'")); + return SQ_ERROR; + } + +} + +static SQInteger Player_do_cheer_wrapper(HSQUIRRELVM vm) +{ + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'do_cheer' called without instance")); + return SQ_ERROR; + } + Scripting::Player* _this = reinterpret_cast (data); + + try { + _this->do_cheer(); + + return 0; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'do_cheer'")); + return SQ_ERROR; + } + +} + +static SQInteger Player_do_duck_wrapper(HSQUIRRELVM vm) +{ + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'do_duck' called without instance")); + return SQ_ERROR; + } + Scripting::Player* _this = reinterpret_cast (data); + + try { + _this->do_duck(); + + return 0; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'do_duck'")); + return SQ_ERROR; + } + +} + +static SQInteger Player_do_standup_wrapper(HSQUIRRELVM vm) +{ + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'do_standup' called without instance")); + return SQ_ERROR; + } + Scripting::Player* _this = reinterpret_cast (data); + + try { + _this->do_standup(); + + return 0; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'do_standup'")); + return SQ_ERROR; + } + +} + +static SQInteger Player_do_backflip_wrapper(HSQUIRRELVM vm) +{ + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'do_backflip' called without instance")); + return SQ_ERROR; + } + Scripting::Player* _this = reinterpret_cast (data); + + try { + _this->do_backflip(); + + return 0; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'do_backflip'")); + return SQ_ERROR; + } + +} + +static SQInteger Player_do_jump_wrapper(HSQUIRRELVM vm) +{ + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'do_jump' called without instance")); + return SQ_ERROR; + } + Scripting::Player* _this = reinterpret_cast (data); + SQFloat arg0; + if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { + sq_throwerror(vm, _SC("Argument 1 not a float")); + return SQ_ERROR; + } + + try { + _this->do_jump(static_cast (arg0)); + + return 0; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'do_jump'")); + return SQ_ERROR; + } + +} + +static SQInteger FloatingImage_release_hook(SQUserPointer ptr, SQInteger ) { Scripting::FloatingImage* _this = reinterpret_cast (ptr); delete _this; return 0; } -static int FloatingImage_constructor_wrapper(HSQUIRRELVM vm) +static SQInteger FloatingImage_constructor_wrapper(HSQUIRRELVM vm) { - const char* arg0; + const SQChar* arg0; if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a string")); return SQ_ERROR; @@ -1239,21 +1501,22 @@ static int FloatingImage_constructor_wrapper(HSQUIRRELVM vm) } -static int FloatingImage_set_layer_wrapper(HSQUIRRELVM vm) +static SQInteger FloatingImage_set_layer_wrapper(HSQUIRRELVM vm) { - Scripting::FloatingImage* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'set_layer' called without instance")); return SQ_ERROR; } - int arg0; + Scripting::FloatingImage* _this = reinterpret_cast (data); + SQInteger arg0; if(SQ_FAILED(sq_getinteger(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not an integer")); return SQ_ERROR; } try { - _this->set_layer(arg0); + _this->set_layer(static_cast (arg0)); return 0; @@ -1267,13 +1530,14 @@ static int FloatingImage_set_layer_wrapper(HSQUIRRELVM vm) } -static int FloatingImage_get_layer_wrapper(HSQUIRRELVM vm) +static SQInteger FloatingImage_get_layer_wrapper(HSQUIRRELVM vm) { - Scripting::FloatingImage* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'get_layer' called without instance")); return SQ_ERROR; } + Scripting::FloatingImage* _this = reinterpret_cast (data); try { int return_value = _this->get_layer(); @@ -1291,26 +1555,27 @@ static int FloatingImage_get_layer_wrapper(HSQUIRRELVM vm) } -static int FloatingImage_set_pos_wrapper(HSQUIRRELVM vm) +static SQInteger FloatingImage_set_pos_wrapper(HSQUIRRELVM vm) { - Scripting::FloatingImage* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'set_pos' called without instance")); return SQ_ERROR; } - float arg0; + Scripting::FloatingImage* _this = reinterpret_cast (data); + SQFloat arg0; if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a float")); return SQ_ERROR; } - float arg1; + SQFloat arg1; if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) { sq_throwerror(vm, _SC("Argument 2 not a float")); return SQ_ERROR; } try { - _this->set_pos(arg0, arg1); + _this->set_pos(static_cast (arg0), static_cast (arg1)); return 0; @@ -1324,13 +1589,14 @@ static int FloatingImage_set_pos_wrapper(HSQUIRRELVM vm) } -static int FloatingImage_get_pos_x_wrapper(HSQUIRRELVM vm) +static SQInteger FloatingImage_get_pos_x_wrapper(HSQUIRRELVM vm) { - Scripting::FloatingImage* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'get_pos_x' called without instance")); return SQ_ERROR; } + Scripting::FloatingImage* _this = reinterpret_cast (data); try { float return_value = _this->get_pos_x(); @@ -1348,13 +1614,14 @@ static int FloatingImage_get_pos_x_wrapper(HSQUIRRELVM vm) } -static int FloatingImage_get_pos_y_wrapper(HSQUIRRELVM vm) +static SQInteger FloatingImage_get_pos_y_wrapper(HSQUIRRELVM vm) { - Scripting::FloatingImage* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'get_pos_y' called without instance")); return SQ_ERROR; } + Scripting::FloatingImage* _this = reinterpret_cast (data); try { float return_value = _this->get_pos_y(); @@ -1372,21 +1639,22 @@ static int FloatingImage_get_pos_y_wrapper(HSQUIRRELVM vm) } -static int FloatingImage_set_anchor_point_wrapper(HSQUIRRELVM vm) +static SQInteger FloatingImage_set_anchor_point_wrapper(HSQUIRRELVM vm) { - Scripting::FloatingImage* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'set_anchor_point' called without instance")); return SQ_ERROR; } - int arg0; + Scripting::FloatingImage* _this = reinterpret_cast (data); + SQInteger arg0; if(SQ_FAILED(sq_getinteger(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not an integer")); return SQ_ERROR; } try { - _this->set_anchor_point(arg0); + _this->set_anchor_point(static_cast (arg0)); return 0; @@ -1400,13 +1668,14 @@ static int FloatingImage_set_anchor_point_wrapper(HSQUIRRELVM vm) } -static int FloatingImage_get_anchor_point_wrapper(HSQUIRRELVM vm) +static SQInteger FloatingImage_get_anchor_point_wrapper(HSQUIRRELVM vm) { - Scripting::FloatingImage* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'get_anchor_point' called without instance")); return SQ_ERROR; } + Scripting::FloatingImage* _this = reinterpret_cast (data); try { int return_value = _this->get_anchor_point(); @@ -1424,13 +1693,14 @@ static int FloatingImage_get_anchor_point_wrapper(HSQUIRRELVM vm) } -static int FloatingImage_set_visible_wrapper(HSQUIRRELVM vm) +static SQInteger FloatingImage_set_visible_wrapper(HSQUIRRELVM vm) { - Scripting::FloatingImage* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'set_visible' called without instance")); return SQ_ERROR; } + Scripting::FloatingImage* _this = reinterpret_cast (data); SQBool arg0; if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a bool")); @@ -1438,7 +1708,7 @@ static int FloatingImage_set_visible_wrapper(HSQUIRRELVM vm) } try { - _this->set_visible(arg0); + _this->set_visible(arg0 == SQTrue); return 0; @@ -1452,13 +1722,14 @@ static int FloatingImage_set_visible_wrapper(HSQUIRRELVM vm) } -static int FloatingImage_get_visible_wrapper(HSQUIRRELVM vm) +static SQInteger FloatingImage_get_visible_wrapper(HSQUIRRELVM vm) { - Scripting::FloatingImage* _this; - if(SQ_FAILED(sq_getinstanceup(vm, 1, reinterpret_cast (&_this), 0))) { + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { sq_throwerror(vm, _SC("'get_visible' called without instance")); return SQ_ERROR; } + Scripting::FloatingImage* _this = reinterpret_cast (data); try { bool return_value = _this->get_visible(); @@ -1476,21 +1747,22 @@ static int FloatingImage_get_visible_wrapper(HSQUIRRELVM vm) } -static int display_wrapper(HSQUIRRELVM vm) -{ - return Scripting::display(vm); -} - -static int display_text_file_wrapper(HSQUIRRELVM vm) +static SQInteger FloatingImage_set_action_wrapper(HSQUIRRELVM vm) { - const char* arg0; + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'set_action' called without instance")); + return SQ_ERROR; + } + Scripting::FloatingImage* _this = reinterpret_cast (data); + const SQChar* arg0; if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a string")); return SQ_ERROR; } try { - Scripting::display_text_file(arg0); + _this->set_action(arg0); return 0; @@ -1498,45 +1770,60 @@ static int display_text_file_wrapper(HSQUIRRELVM vm) sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'display_text_file'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_action'")); return SQ_ERROR; } } -static int load_worldmap_wrapper(HSQUIRRELVM vm) +static SQInteger FloatingImage_get_action_wrapper(HSQUIRRELVM vm) { - const char* arg0; - if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { - sq_throwerror(vm, _SC("Argument 1 not a string")); + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'get_action' called without instance")); return SQ_ERROR; } + Scripting::FloatingImage* _this = reinterpret_cast (data); try { - Scripting::load_worldmap(arg0); + std::string return_value = _this->get_action(); - return 0; + sq_pushstring(vm, return_value.c_str(), return_value.size()); + return 1; } catch(std::exception& e) { sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'load_worldmap'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_action'")); return SQ_ERROR; } } -static int load_level_wrapper(HSQUIRRELVM vm) +static SQInteger Platform_release_hook(SQUserPointer ptr, SQInteger ) { - const char* arg0; - if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { - sq_throwerror(vm, _SC("Argument 1 not a string")); + Scripting::Platform* _this = reinterpret_cast (ptr); + delete _this; + return 0; +} + +static SQInteger Platform_goto_node_wrapper(HSQUIRRELVM vm) +{ + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'goto_node' called without instance")); + return SQ_ERROR; + } + Scripting::Platform* _this = reinterpret_cast (data); + SQInteger arg0; + if(SQ_FAILED(sq_getinteger(vm, 2, &arg0))) { + sq_throwerror(vm, _SC("Argument 1 not an integer")); return SQ_ERROR; } try { - Scripting::load_level(arg0); + _this->goto_node(static_cast (arg0)); return 0; @@ -1544,63 +1831,416 @@ static int load_level_wrapper(HSQUIRRELVM vm) sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'load_level'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'goto_node'")); return SQ_ERROR; } } -static int wait_wrapper(HSQUIRRELVM vm) +static SQInteger Platform_start_moving_wrapper(HSQUIRRELVM vm) { - HSQUIRRELVM arg0 = vm; - float arg1; - if(SQ_FAILED(sq_getfloat(vm, 2, &arg1))) { - sq_throwerror(vm, _SC("Argument 1 not a float")); + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'start_moving' called without instance")); return SQ_ERROR; } + Scripting::Platform* _this = reinterpret_cast (data); try { - Scripting::wait(arg0, arg1); + _this->start_moving(); - return sq_suspendvm(vm); + return 0; } catch(std::exception& e) { sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'wait'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'start_moving'")); return SQ_ERROR; } } -static int wait_for_screenswitch_wrapper(HSQUIRRELVM vm) +static SQInteger Platform_stop_moving_wrapper(HSQUIRRELVM vm) { - HSQUIRRELVM arg0 = vm; + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'stop_moving' called without instance")); + return SQ_ERROR; + } + Scripting::Platform* _this = reinterpret_cast (data); try { - Scripting::wait_for_screenswitch(arg0); + _this->stop_moving(); - return sq_suspendvm(vm); + return 0; } catch(std::exception& e) { sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'wait_for_screenswitch'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'stop_moving'")); return SQ_ERROR; } } -static int exit_screen_wrapper(HSQUIRRELVM vm) +static SQInteger Candle_release_hook(SQUserPointer ptr, SQInteger ) { - (void) vm; - - try { - Scripting::exit_screen(); - - return 0; + Scripting::Candle* _this = reinterpret_cast (ptr); + delete _this; + return 0; +} + +static SQInteger Candle_get_burning_wrapper(HSQUIRRELVM vm) +{ + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'get_burning' called without instance")); + return SQ_ERROR; + } + Scripting::Candle* _this = reinterpret_cast (data); + + try { + bool return_value = _this->get_burning(); + + sq_pushbool(vm, return_value); + return 1; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_burning'")); + return SQ_ERROR; + } + +} + +static SQInteger Candle_set_burning_wrapper(HSQUIRRELVM vm) +{ + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'set_burning' called without instance")); + return SQ_ERROR; + } + Scripting::Candle* _this = reinterpret_cast (data); + SQBool arg0; + if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) { + sq_throwerror(vm, _SC("Argument 1 not a bool")); + return SQ_ERROR; + } + + try { + _this->set_burning(arg0 == SQTrue); + + return 0; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_burning'")); + return SQ_ERROR; + } + +} + +static SQInteger Wind_release_hook(SQUserPointer ptr, SQInteger ) +{ + Scripting::Wind* _this = reinterpret_cast (ptr); + delete _this; + return 0; +} + +static SQInteger Wind_start_wrapper(HSQUIRRELVM vm) +{ + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'start' called without instance")); + return SQ_ERROR; + } + Scripting::Wind* _this = reinterpret_cast (data); + + try { + _this->start(); + + return 0; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'start'")); + return SQ_ERROR; + } + +} + +static SQInteger Wind_stop_wrapper(HSQUIRRELVM vm) +{ + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'stop' called without instance")); + return SQ_ERROR; + } + Scripting::Wind* _this = reinterpret_cast (data); + + try { + _this->stop(); + + return 0; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'stop'")); + return SQ_ERROR; + } + +} + +static SQInteger AmbientSound_release_hook(SQUserPointer ptr, SQInteger ) +{ + Scripting::AmbientSound* _this = reinterpret_cast (ptr); + delete _this; + return 0; +} + +static SQInteger AmbientSound_set_pos_wrapper(HSQUIRRELVM vm) +{ + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'set_pos' called without instance")); + return SQ_ERROR; + } + Scripting::AmbientSound* _this = reinterpret_cast (data); + SQFloat arg0; + if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { + sq_throwerror(vm, _SC("Argument 1 not a float")); + return SQ_ERROR; + } + SQFloat arg1; + if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) { + sq_throwerror(vm, _SC("Argument 2 not a float")); + return SQ_ERROR; + } + + try { + _this->set_pos(static_cast (arg0), static_cast (arg1)); + + return 0; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'set_pos'")); + return SQ_ERROR; + } + +} + +static SQInteger AmbientSound_get_pos_x_wrapper(HSQUIRRELVM vm) +{ + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'get_pos_x' called without instance")); + return SQ_ERROR; + } + Scripting::AmbientSound* _this = reinterpret_cast (data); + + try { + float return_value = _this->get_pos_x(); + + sq_pushfloat(vm, return_value); + return 1; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_pos_x'")); + return SQ_ERROR; + } + +} + +static SQInteger AmbientSound_get_pos_y_wrapper(HSQUIRRELVM vm) +{ + SQUserPointer data; + if(SQ_FAILED(sq_getinstanceup(vm, 1, &data, 0))) { + sq_throwerror(vm, _SC("'get_pos_y' called without instance")); + return SQ_ERROR; + } + Scripting::AmbientSound* _this = reinterpret_cast (data); + + try { + float return_value = _this->get_pos_y(); + + sq_pushfloat(vm, return_value); + return 1; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'get_pos_y'")); + return SQ_ERROR; + } + +} + +static SQInteger display_wrapper(HSQUIRRELVM vm) +{ + return Scripting::display(vm); +} + +static SQInteger print_stacktrace_wrapper(HSQUIRRELVM vm) +{ + HSQUIRRELVM arg0 = vm; + + try { + Scripting::print_stacktrace(arg0); + + return 0; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'print_stacktrace'")); + return SQ_ERROR; + } + +} + +static SQInteger get_current_thread_wrapper(HSQUIRRELVM vm) +{ + return Scripting::get_current_thread(vm); +} + +static SQInteger display_text_file_wrapper(HSQUIRRELVM vm) +{ + const SQChar* arg0; + if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { + sq_throwerror(vm, _SC("Argument 1 not a string")); + return SQ_ERROR; + } + + try { + Scripting::display_text_file(arg0); + + return 0; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'display_text_file'")); + return SQ_ERROR; + } + +} + +static SQInteger load_worldmap_wrapper(HSQUIRRELVM vm) +{ + const SQChar* arg0; + if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { + sq_throwerror(vm, _SC("Argument 1 not a string")); + return SQ_ERROR; + } + + try { + Scripting::load_worldmap(arg0); + + return 0; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'load_worldmap'")); + return SQ_ERROR; + } + +} + +static SQInteger load_level_wrapper(HSQUIRRELVM vm) +{ + const SQChar* arg0; + if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { + sq_throwerror(vm, _SC("Argument 1 not a string")); + return SQ_ERROR; + } + + try { + Scripting::load_level(arg0); + + return 0; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'load_level'")); + return SQ_ERROR; + } + +} + +static SQInteger wait_wrapper(HSQUIRRELVM vm) +{ + HSQUIRRELVM arg0 = vm; + SQFloat arg1; + if(SQ_FAILED(sq_getfloat(vm, 2, &arg1))) { + sq_throwerror(vm, _SC("Argument 1 not a float")); + return SQ_ERROR; + } + + try { + Scripting::wait(arg0, static_cast (arg1)); + + return sq_suspendvm(vm); + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'wait'")); + return SQ_ERROR; + } + +} + +static SQInteger wait_for_screenswitch_wrapper(HSQUIRRELVM vm) +{ + HSQUIRRELVM arg0 = vm; + + try { + Scripting::wait_for_screenswitch(arg0); + + return sq_suspendvm(vm); + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'wait_for_screenswitch'")); + return SQ_ERROR; + } + +} + +static SQInteger exit_screen_wrapper(HSQUIRRELVM vm) +{ + (void) vm; + + try { + Scripting::exit_screen(); + + return 0; } catch(std::exception& e) { sq_throwerror(vm, e.what()); @@ -1612,16 +2252,16 @@ static int exit_screen_wrapper(HSQUIRRELVM vm) } -static int fadeout_screen_wrapper(HSQUIRRELVM vm) +static SQInteger fadeout_screen_wrapper(HSQUIRRELVM vm) { - float arg0; + SQFloat arg0; if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a float")); return SQ_ERROR; } try { - Scripting::fadeout_screen(arg0); + Scripting::fadeout_screen(static_cast (arg0)); return 0; @@ -1635,26 +2275,26 @@ static int fadeout_screen_wrapper(HSQUIRRELVM vm) } -static int shrink_screen_wrapper(HSQUIRRELVM vm) +static SQInteger shrink_screen_wrapper(HSQUIRRELVM vm) { - float arg0; + SQFloat arg0; if(SQ_FAILED(sq_getfloat(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a float")); return SQ_ERROR; } - float arg1; + SQFloat arg1; if(SQ_FAILED(sq_getfloat(vm, 3, &arg1))) { sq_throwerror(vm, _SC("Argument 2 not a float")); return SQ_ERROR; } - float arg2; + SQFloat arg2; if(SQ_FAILED(sq_getfloat(vm, 4, &arg2))) { sq_throwerror(vm, _SC("Argument 3 not a float")); return SQ_ERROR; } try { - Scripting::shrink_screen(arg0, arg1, arg2); + Scripting::shrink_screen(static_cast (arg0), static_cast (arg1), static_cast (arg2)); return 0; @@ -1668,9 +2308,9 @@ static int shrink_screen_wrapper(HSQUIRRELVM vm) } -static int translate_wrapper(HSQUIRRELVM vm) +static SQInteger translate_wrapper(HSQUIRRELVM vm) { - const char* arg0; + const SQChar* arg0; if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { sq_throwerror(vm, _SC("Argument 1 not a string")); return SQ_ERROR; @@ -1692,10 +2332,10 @@ static int translate_wrapper(HSQUIRRELVM vm) } -static int import_wrapper(HSQUIRRELVM vm) +static SQInteger import_wrapper(HSQUIRRELVM vm) { HSQUIRRELVM arg0 = vm; - const char* arg1; + const SQChar* arg1; if(SQ_FAILED(sq_getstring(vm, 2, &arg1))) { sq_throwerror(vm, _SC("Argument 1 not a string")); return SQ_ERROR; @@ -1716,7 +2356,7 @@ static int import_wrapper(HSQUIRRELVM vm) } -static int save_state_wrapper(HSQUIRRELVM vm) +static SQInteger save_state_wrapper(HSQUIRRELVM vm) { (void) vm; @@ -1735,16 +2375,16 @@ static int save_state_wrapper(HSQUIRRELVM vm) } -static int add_key_wrapper(HSQUIRRELVM vm) +static SQInteger debug_collrects_wrapper(HSQUIRRELVM vm) { - int arg0; - if(SQ_FAILED(sq_getinteger(vm, 2, &arg0))) { - sq_throwerror(vm, _SC("Argument 1 not an integer")); + SQBool arg0; + if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) { + sq_throwerror(vm, _SC("Argument 1 not a bool")); return SQ_ERROR; } try { - Scripting::add_key(arg0); + Scripting::debug_collrects(arg0 == SQTrue); return 0; @@ -1752,13 +2392,13 @@ static int add_key_wrapper(HSQUIRRELVM vm) sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'add_key'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'debug_collrects'")); return SQ_ERROR; } } -static int debug_collrects_wrapper(HSQUIRRELVM vm) +static SQInteger debug_show_fps_wrapper(HSQUIRRELVM vm) { SQBool arg0; if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) { @@ -1767,7 +2407,7 @@ static int debug_collrects_wrapper(HSQUIRRELVM vm) } try { - Scripting::debug_collrects(arg0); + Scripting::debug_show_fps(arg0 == SQTrue); return 0; @@ -1775,13 +2415,13 @@ static int debug_collrects_wrapper(HSQUIRRELVM vm) sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'debug_collrects'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'debug_show_fps'")); return SQ_ERROR; } } -static int debug_draw_fps_wrapper(HSQUIRRELVM vm) +static SQInteger debug_draw_solids_only_wrapper(HSQUIRRELVM vm) { SQBool arg0; if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) { @@ -1790,7 +2430,7 @@ static int debug_draw_fps_wrapper(HSQUIRRELVM vm) } try { - Scripting::debug_draw_fps(arg0); + Scripting::debug_draw_solids_only(arg0 == SQTrue); return 0; @@ -1798,22 +2438,22 @@ static int debug_draw_fps_wrapper(HSQUIRRELVM vm) sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'debug_draw_fps'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'debug_draw_solids_only'")); return SQ_ERROR; } } -static int debug_draw_solids_only_wrapper(HSQUIRRELVM vm) +static SQInteger play_music_wrapper(HSQUIRRELVM vm) { - SQBool arg0; - if(SQ_FAILED(sq_getbool(vm, 2, &arg0))) { - sq_throwerror(vm, _SC("Argument 1 not a bool")); + const SQChar* arg0; + if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { + sq_throwerror(vm, _SC("Argument 1 not a string")); return SQ_ERROR; } try { - Scripting::debug_draw_solids_only(arg0); + Scripting::play_music(arg0); return 0; @@ -1821,18 +2461,22 @@ static int debug_draw_solids_only_wrapper(HSQUIRRELVM vm) sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'debug_draw_solids_only'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'play_music'")); return SQ_ERROR; } } -static int grease_wrapper(HSQUIRRELVM vm) +static SQInteger play_sound_wrapper(HSQUIRRELVM vm) { - (void) vm; + const SQChar* arg0; + if(SQ_FAILED(sq_getstring(vm, 2, &arg0))) { + sq_throwerror(vm, _SC("Argument 1 not a string")); + return SQ_ERROR; + } try { - Scripting::grease(); + Scripting::play_sound(arg0); return 0; @@ -1840,18 +2484,18 @@ static int grease_wrapper(HSQUIRRELVM vm) sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'grease'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'play_sound'")); return SQ_ERROR; } } -static int invincible_wrapper(HSQUIRRELVM vm) +static SQInteger grease_wrapper(HSQUIRRELVM vm) { (void) vm; try { - Scripting::invincible(); + Scripting::grease(); return 0; @@ -1859,18 +2503,18 @@ static int invincible_wrapper(HSQUIRRELVM vm) sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'invincible'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'grease'")); return SQ_ERROR; } } -static int mortal_wrapper(HSQUIRRELVM vm) +static SQInteger invincible_wrapper(HSQUIRRELVM vm) { (void) vm; try { - Scripting::mortal(); + Scripting::invincible(); return 0; @@ -1878,18 +2522,18 @@ static int mortal_wrapper(HSQUIRRELVM vm) sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'mortal'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'invincible'")); return SQ_ERROR; } } -static int shrink_wrapper(HSQUIRRELVM vm) +static SQInteger ghost_wrapper(HSQUIRRELVM vm) { (void) vm; try { - Scripting::shrink(); + Scripting::ghost(); return 0; @@ -1897,18 +2541,18 @@ static int shrink_wrapper(HSQUIRRELVM vm) sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'shrink'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'ghost'")); return SQ_ERROR; } } -static int kill_wrapper(HSQUIRRELVM vm) +static SQInteger mortal_wrapper(HSQUIRRELVM vm) { (void) vm; try { - Scripting::kill(); + Scripting::mortal(); return 0; @@ -1916,13 +2560,13 @@ static int kill_wrapper(HSQUIRRELVM vm) sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'kill'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'mortal'")); return SQ_ERROR; } } -static int restart_wrapper(HSQUIRRELVM vm) +static SQInteger restart_wrapper(HSQUIRRELVM vm) { (void) vm; @@ -1941,7 +2585,7 @@ static int restart_wrapper(HSQUIRRELVM vm) } -static int whereami_wrapper(HSQUIRRELVM vm) +static SQInteger whereami_wrapper(HSQUIRRELVM vm) { (void) vm; @@ -1960,7 +2604,7 @@ static int whereami_wrapper(HSQUIRRELVM vm) } -static int gotoend_wrapper(HSQUIRRELVM vm) +static SQInteger gotoend_wrapper(HSQUIRRELVM vm) { (void) vm; @@ -1973,18 +2617,37 @@ static int gotoend_wrapper(HSQUIRRELVM vm) sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'gotoend'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'gotoend'")); + return SQ_ERROR; + } + +} + +static SQInteger camera_wrapper(HSQUIRRELVM vm) +{ + (void) vm; + + try { + Scripting::camera(); + + return 0; + + } catch(std::exception& e) { + sq_throwerror(vm, e.what()); + return SQ_ERROR; + } catch(...) { + sq_throwerror(vm, _SC("Unexpected exception while executing function 'camera'")); return SQ_ERROR; } } -static int camera_wrapper(HSQUIRRELVM vm) +static SQInteger quit_wrapper(HSQUIRRELVM vm) { (void) vm; try { - Scripting::camera(); + Scripting::quit(); return 0; @@ -1992,26 +2655,26 @@ static int camera_wrapper(HSQUIRRELVM vm) sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'camera'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'quit'")); return SQ_ERROR; } } -static int quit_wrapper(HSQUIRRELVM vm) +static SQInteger rand_wrapper(HSQUIRRELVM vm) { - (void) vm; try { - Scripting::quit(); + int return_value = Scripting::rand(); - return 0; + sq_pushinteger(vm, return_value); + return 1; } catch(std::exception& e) { sq_throwerror(vm, e.what()); return SQ_ERROR; } catch(...) { - sq_throwerror(vm, _SC("Unexpected exception while executing function 'quit'")); + sq_throwerror(vm, _SC("Unexpected exception while executing function 'rand'")); return SQ_ERROR; } @@ -2123,144 +2786,192 @@ void create_squirrel_instance(HSQUIRRELVM v, Scripting::ScriptedObject* object, sq_remove(v, -2); // remove root table } -void create_squirrel_instance(HSQUIRRELVM v, Scripting::Sound* object, bool setup_releasehook) +void create_squirrel_instance(HSQUIRRELVM v, Scripting::Text* object, bool setup_releasehook) { using namespace Wrapper; sq_pushroottable(v); - sq_pushstring(v, "Sound", -1); + sq_pushstring(v, "Text", -1); if(SQ_FAILED(sq_get(v, -2))) { std::ostringstream msg; - msg << "Couldn't resolved squirrel type 'Sound'"; + msg << "Couldn't resolved squirrel type 'Text'"; throw SquirrelError(v, msg.str()); } if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) { std::ostringstream msg; - msg << "Couldn't setup squirrel instance for object of type 'Sound'"; + msg << "Couldn't setup squirrel instance for object of type 'Text'"; throw SquirrelError(v, msg.str()); } sq_remove(v, -2); // remove object name if(setup_releasehook) { - sq_setreleasehook(v, -1, Sound_release_hook); + sq_setreleasehook(v, -1, Text_release_hook); } sq_remove(v, -2); // remove root table } -void create_squirrel_instance(HSQUIRRELVM v, Scripting::Text* object, bool setup_releasehook) +void create_squirrel_instance(HSQUIRRELVM v, Scripting::Player* object, bool setup_releasehook) { using namespace Wrapper; sq_pushroottable(v); - sq_pushstring(v, "Text", -1); + sq_pushstring(v, "Player", -1); if(SQ_FAILED(sq_get(v, -2))) { std::ostringstream msg; - msg << "Couldn't resolved squirrel type 'Text'"; + msg << "Couldn't resolved squirrel type 'Player'"; throw SquirrelError(v, msg.str()); } if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) { std::ostringstream msg; - msg << "Couldn't setup squirrel instance for object of type 'Text'"; + msg << "Couldn't setup squirrel instance for object of type 'Player'"; throw SquirrelError(v, msg.str()); } sq_remove(v, -2); // remove object name if(setup_releasehook) { - sq_setreleasehook(v, -1, Text_release_hook); + sq_setreleasehook(v, -1, Player_release_hook); } sq_remove(v, -2); // remove root table } -void create_squirrel_instance(HSQUIRRELVM v, Scripting::Player* object, bool setup_releasehook) +void create_squirrel_instance(HSQUIRRELVM v, Scripting::FloatingImage* object, bool setup_releasehook) { using namespace Wrapper; sq_pushroottable(v); - sq_pushstring(v, "Player", -1); + sq_pushstring(v, "FloatingImage", -1); if(SQ_FAILED(sq_get(v, -2))) { std::ostringstream msg; - msg << "Couldn't resolved squirrel type 'Player'"; + msg << "Couldn't resolved squirrel type 'FloatingImage'"; throw SquirrelError(v, msg.str()); } if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) { std::ostringstream msg; - msg << "Couldn't setup squirrel instance for object of type 'Player'"; + msg << "Couldn't setup squirrel instance for object of type 'FloatingImage'"; throw SquirrelError(v, msg.str()); } sq_remove(v, -2); // remove object name if(setup_releasehook) { - sq_setreleasehook(v, -1, Player_release_hook); + sq_setreleasehook(v, -1, FloatingImage_release_hook); } sq_remove(v, -2); // remove root table } -void create_squirrel_instance(HSQUIRRELVM v, Scripting::FloatingImage* object, bool setup_releasehook) +void create_squirrel_instance(HSQUIRRELVM v, Scripting::Platform* object, bool setup_releasehook) { using namespace Wrapper; sq_pushroottable(v); - sq_pushstring(v, "FloatingImage", -1); + sq_pushstring(v, "Platform", -1); if(SQ_FAILED(sq_get(v, -2))) { std::ostringstream msg; - msg << "Couldn't resolved squirrel type 'FloatingImage'"; + msg << "Couldn't resolved squirrel type 'Platform'"; throw SquirrelError(v, msg.str()); } if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) { std::ostringstream msg; - msg << "Couldn't setup squirrel instance for object of type 'FloatingImage'"; + msg << "Couldn't setup squirrel instance for object of type 'Platform'"; throw SquirrelError(v, msg.str()); } sq_remove(v, -2); // remove object name if(setup_releasehook) { - sq_setreleasehook(v, -1, FloatingImage_release_hook); + sq_setreleasehook(v, -1, Platform_release_hook); } sq_remove(v, -2); // remove root table } -void register_supertux_wrapper(HSQUIRRELVM v) +void create_squirrel_instance(HSQUIRRELVM v, Scripting::Candle* object, bool setup_releasehook) { using namespace Wrapper; - sq_pushstring(v, "KEY_BRASS", -1); - sq_pushinteger(v, 1); - if(SQ_FAILED(sq_createslot(v, -3))) { - throw SquirrelError(v, "Couldn't register constant 'KEY_BRASS'"); + sq_pushroottable(v); + sq_pushstring(v, "Candle", -1); + if(SQ_FAILED(sq_get(v, -2))) { + std::ostringstream msg; + msg << "Couldn't resolved squirrel type 'Candle'"; + throw SquirrelError(v, msg.str()); } - sq_pushstring(v, "KEY_IRON", -1); - sq_pushinteger(v, 2); - if(SQ_FAILED(sq_createslot(v, -3))) { - throw SquirrelError(v, "Couldn't register constant 'KEY_IRON'"); + if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) { + std::ostringstream msg; + msg << "Couldn't setup squirrel instance for object of type 'Candle'"; + throw SquirrelError(v, msg.str()); } + sq_remove(v, -2); // remove object name - sq_pushstring(v, "KEY_BRONZE", -1); - sq_pushinteger(v, 4); - if(SQ_FAILED(sq_createslot(v, -3))) { - throw SquirrelError(v, "Couldn't register constant 'KEY_BRONZE'"); + if(setup_releasehook) { + sq_setreleasehook(v, -1, Candle_release_hook); } - sq_pushstring(v, "KEY_SILVER", -1); - sq_pushinteger(v, 8); - if(SQ_FAILED(sq_createslot(v, -3))) { - throw SquirrelError(v, "Couldn't register constant 'KEY_SILVER'"); + sq_remove(v, -2); // remove root table +} + +void create_squirrel_instance(HSQUIRRELVM v, Scripting::Wind* object, bool setup_releasehook) +{ + using namespace Wrapper; + + sq_pushroottable(v); + sq_pushstring(v, "Wind", -1); + if(SQ_FAILED(sq_get(v, -2))) { + std::ostringstream msg; + msg << "Couldn't resolved squirrel type 'Wind'"; + throw SquirrelError(v, msg.str()); } - sq_pushstring(v, "KEY_GOLD", -1); - sq_pushinteger(v, 16); - if(SQ_FAILED(sq_createslot(v, -3))) { - throw SquirrelError(v, "Couldn't register constant 'KEY_GOLD'"); + if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) { + std::ostringstream msg; + msg << "Couldn't setup squirrel instance for object of type 'Wind'"; + throw SquirrelError(v, msg.str()); + } + sq_remove(v, -2); // remove object name + + if(setup_releasehook) { + sq_setreleasehook(v, -1, Wind_release_hook); + } + + sq_remove(v, -2); // remove root table +} + +void create_squirrel_instance(HSQUIRRELVM v, Scripting::AmbientSound* object, bool setup_releasehook) +{ + using namespace Wrapper; + + sq_pushroottable(v); + sq_pushstring(v, "AmbientSound", -1); + if(SQ_FAILED(sq_get(v, -2))) { + std::ostringstream msg; + msg << "Couldn't resolved squirrel type 'AmbientSound'"; + throw SquirrelError(v, msg.str()); + } + + if(SQ_FAILED(sq_createinstance(v, -1)) || SQ_FAILED(sq_setinstanceup(v, -1, object))) { + std::ostringstream msg; + msg << "Couldn't setup squirrel instance for object of type 'AmbientSound'"; + throw SquirrelError(v, msg.str()); + } + sq_remove(v, -2); // remove object name + + if(setup_releasehook) { + sq_setreleasehook(v, -1, AmbientSound_release_hook); } + sq_remove(v, -2); // remove root table +} + +void register_supertux_wrapper(HSQUIRRELVM v) +{ + using namespace Wrapper; + sq_pushstring(v, "ANCHOR_TOP", -1); sq_pushinteger(v, 16); if(SQ_FAILED(sq_createslot(v, -3))) { @@ -2321,6 +3032,18 @@ void register_supertux_wrapper(HSQUIRRELVM v) throw SquirrelError(v, "Couldn't register function 'display'"); } + sq_pushstring(v, "print_stacktrace", -1); + sq_newclosure(v, &print_stacktrace_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'print_stacktrace'"); + } + + sq_pushstring(v, "get_current_thread", -1); + sq_newclosure(v, &get_current_thread_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'get_current_thread'"); + } + sq_pushstring(v, "display_text_file", -1); sq_newclosure(v, &display_text_file_wrapper, 0); if(SQ_FAILED(sq_createslot(v, -3))) { @@ -2387,22 +3110,16 @@ void register_supertux_wrapper(HSQUIRRELVM v) throw SquirrelError(v, "Couldn't register function 'save_state'"); } - sq_pushstring(v, "add_key", -1); - sq_newclosure(v, &add_key_wrapper, 0); - if(SQ_FAILED(sq_createslot(v, -3))) { - throw SquirrelError(v, "Couldn't register function 'add_key'"); - } - sq_pushstring(v, "debug_collrects", -1); sq_newclosure(v, &debug_collrects_wrapper, 0); if(SQ_FAILED(sq_createslot(v, -3))) { throw SquirrelError(v, "Couldn't register function 'debug_collrects'"); } - sq_pushstring(v, "debug_draw_fps", -1); - sq_newclosure(v, &debug_draw_fps_wrapper, 0); + sq_pushstring(v, "debug_show_fps", -1); + sq_newclosure(v, &debug_show_fps_wrapper, 0); if(SQ_FAILED(sq_createslot(v, -3))) { - throw SquirrelError(v, "Couldn't register function 'debug_draw_fps'"); + throw SquirrelError(v, "Couldn't register function 'debug_show_fps'"); } sq_pushstring(v, "debug_draw_solids_only", -1); @@ -2411,6 +3128,18 @@ void register_supertux_wrapper(HSQUIRRELVM v) throw SquirrelError(v, "Couldn't register function 'debug_draw_solids_only'"); } + sq_pushstring(v, "play_music", -1); + sq_newclosure(v, &play_music_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'play_music'"); + } + + sq_pushstring(v, "play_sound", -1); + sq_newclosure(v, &play_sound_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'play_sound'"); + } + sq_pushstring(v, "grease", -1); sq_newclosure(v, &grease_wrapper, 0); if(SQ_FAILED(sq_createslot(v, -3))) { @@ -2423,22 +3152,16 @@ void register_supertux_wrapper(HSQUIRRELVM v) throw SquirrelError(v, "Couldn't register function 'invincible'"); } - sq_pushstring(v, "mortal", -1); - sq_newclosure(v, &mortal_wrapper, 0); - if(SQ_FAILED(sq_createslot(v, -3))) { - throw SquirrelError(v, "Couldn't register function 'mortal'"); - } - - sq_pushstring(v, "shrink", -1); - sq_newclosure(v, &shrink_wrapper, 0); + sq_pushstring(v, "ghost", -1); + sq_newclosure(v, &ghost_wrapper, 0); if(SQ_FAILED(sq_createslot(v, -3))) { - throw SquirrelError(v, "Couldn't register function 'shrink'"); + throw SquirrelError(v, "Couldn't register function 'ghost'"); } - sq_pushstring(v, "kill", -1); - sq_newclosure(v, &kill_wrapper, 0); + sq_pushstring(v, "mortal", -1); + sq_newclosure(v, &mortal_wrapper, 0); if(SQ_FAILED(sq_createslot(v, -3))) { - throw SquirrelError(v, "Couldn't register function 'kill'"); + throw SquirrelError(v, "Couldn't register function 'mortal'"); } sq_pushstring(v, "restart", -1); @@ -2471,6 +3194,12 @@ void register_supertux_wrapper(HSQUIRRELVM v) throw SquirrelError(v, "Couldn't register function 'quit'"); } + sq_pushstring(v, "rand", -1); + sq_newclosure(v, &rand_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'rand'"); + } + // Register class DisplayEffect sq_pushstring(v, "DisplayEffect", -1); if(sq_newclass(v, SQFalse) < 0) { @@ -2578,6 +3307,12 @@ void register_supertux_wrapper(HSQUIRRELVM v) throw SquirrelError(v, "Couldn't register function 'flip_vertically'"); } + sq_pushstring(v, "toggle_pause", -1); + sq_newclosure(v, &Level_toggle_pause_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'toggle_pause'"); + } + if(SQ_FAILED(sq_createslot(v, -3))) { throw SquirrelError(v, "Couldn't register class 'Level'"); } @@ -2655,37 +3390,26 @@ void register_supertux_wrapper(HSQUIRRELVM v) throw SquirrelError(v, "Couldn't register function 'is_visible'"); } - sq_pushstring(v, "get_name", -1); - sq_newclosure(v, &ScriptedObject_get_name_wrapper, 0); - if(SQ_FAILED(sq_createslot(v, -3))) { - throw SquirrelError(v, "Couldn't register function 'get_name'"); - } - + sq_pushstring(v, "set_solid", -1); + sq_newclosure(v, &ScriptedObject_set_solid_wrapper, 0); if(SQ_FAILED(sq_createslot(v, -3))) { - throw SquirrelError(v, "Couldn't register class 'ScriptedObject'"); + throw SquirrelError(v, "Couldn't register function 'set_solid'"); } - // Register class Sound - sq_pushstring(v, "Sound", -1); - if(sq_newclass(v, SQFalse) < 0) { - std::ostringstream msg; - msg << "Couldn't create new class 'Sound'"; - throw SquirrelError(v, msg.str()); - } - sq_pushstring(v, "play_music", -1); - sq_newclosure(v, &Sound_play_music_wrapper, 0); + sq_pushstring(v, "is_solid", -1); + sq_newclosure(v, &ScriptedObject_is_solid_wrapper, 0); if(SQ_FAILED(sq_createslot(v, -3))) { - throw SquirrelError(v, "Couldn't register function 'play_music'"); + throw SquirrelError(v, "Couldn't register function 'is_solid'"); } - sq_pushstring(v, "play", -1); - sq_newclosure(v, &Sound_play_wrapper, 0); + sq_pushstring(v, "get_name", -1); + sq_newclosure(v, &ScriptedObject_get_name_wrapper, 0); if(SQ_FAILED(sq_createslot(v, -3))) { - throw SquirrelError(v, "Couldn't register function 'play'"); + throw SquirrelError(v, "Couldn't register function 'get_name'"); } if(SQ_FAILED(sq_createslot(v, -3))) { - throw SquirrelError(v, "Couldn't register class 'Sound'"); + throw SquirrelError(v, "Couldn't register class 'ScriptedObject'"); } // Register class Text @@ -2790,6 +3514,54 @@ void register_supertux_wrapper(HSQUIRRELVM v) throw SquirrelError(v, "Couldn't register function 'get_visible'"); } + sq_pushstring(v, "kill", -1); + sq_newclosure(v, &Player_kill_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'kill'"); + } + + sq_pushstring(v, "set_ghost_mode", -1); + sq_newclosure(v, &Player_set_ghost_mode_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'set_ghost_mode'"); + } + + sq_pushstring(v, "get_ghost_mode", -1); + sq_newclosure(v, &Player_get_ghost_mode_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'get_ghost_mode'"); + } + + sq_pushstring(v, "do_cheer", -1); + sq_newclosure(v, &Player_do_cheer_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'do_cheer'"); + } + + sq_pushstring(v, "do_duck", -1); + sq_newclosure(v, &Player_do_duck_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'do_duck'"); + } + + sq_pushstring(v, "do_standup", -1); + sq_newclosure(v, &Player_do_standup_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'do_standup'"); + } + + sq_pushstring(v, "do_backflip", -1); + sq_newclosure(v, &Player_do_backflip_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'do_backflip'"); + } + + sq_pushstring(v, "do_jump", -1); + sq_newclosure(v, &Player_do_jump_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'do_jump'"); + } + if(SQ_FAILED(sq_createslot(v, -3))) { throw SquirrelError(v, "Couldn't register class 'Player'"); } @@ -2861,10 +3633,126 @@ void register_supertux_wrapper(HSQUIRRELVM v) throw SquirrelError(v, "Couldn't register function 'get_visible'"); } + sq_pushstring(v, "set_action", -1); + sq_newclosure(v, &FloatingImage_set_action_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'set_action'"); + } + + sq_pushstring(v, "get_action", -1); + sq_newclosure(v, &FloatingImage_get_action_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'get_action'"); + } + if(SQ_FAILED(sq_createslot(v, -3))) { throw SquirrelError(v, "Couldn't register class 'FloatingImage'"); } + // Register class Platform + sq_pushstring(v, "Platform", -1); + if(sq_newclass(v, SQFalse) < 0) { + std::ostringstream msg; + msg << "Couldn't create new class 'Platform'"; + throw SquirrelError(v, msg.str()); + } + sq_pushstring(v, "goto_node", -1); + sq_newclosure(v, &Platform_goto_node_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'goto_node'"); + } + + sq_pushstring(v, "start_moving", -1); + sq_newclosure(v, &Platform_start_moving_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'start_moving'"); + } + + sq_pushstring(v, "stop_moving", -1); + sq_newclosure(v, &Platform_stop_moving_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'stop_moving'"); + } + + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register class 'Platform'"); + } + + // Register class Candle + sq_pushstring(v, "Candle", -1); + if(sq_newclass(v, SQFalse) < 0) { + std::ostringstream msg; + msg << "Couldn't create new class 'Candle'"; + throw SquirrelError(v, msg.str()); + } + sq_pushstring(v, "get_burning", -1); + sq_newclosure(v, &Candle_get_burning_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'get_burning'"); + } + + sq_pushstring(v, "set_burning", -1); + sq_newclosure(v, &Candle_set_burning_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'set_burning'"); + } + + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register class 'Candle'"); + } + + // Register class Wind + sq_pushstring(v, "Wind", -1); + if(sq_newclass(v, SQFalse) < 0) { + std::ostringstream msg; + msg << "Couldn't create new class 'Wind'"; + throw SquirrelError(v, msg.str()); + } + sq_pushstring(v, "start", -1); + sq_newclosure(v, &Wind_start_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'start'"); + } + + sq_pushstring(v, "stop", -1); + sq_newclosure(v, &Wind_stop_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'stop'"); + } + + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register class 'Wind'"); + } + + // Register class AmbientSound + sq_pushstring(v, "AmbientSound", -1); + if(sq_newclass(v, SQFalse) < 0) { + std::ostringstream msg; + msg << "Couldn't create new class 'AmbientSound'"; + throw SquirrelError(v, msg.str()); + } + sq_pushstring(v, "set_pos", -1); + sq_newclosure(v, &AmbientSound_set_pos_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'set_pos'"); + } + + sq_pushstring(v, "get_pos_x", -1); + sq_newclosure(v, &AmbientSound_get_pos_x_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'get_pos_x'"); + } + + sq_pushstring(v, "get_pos_y", -1); + sq_newclosure(v, &AmbientSound_get_pos_y_wrapper, 0); + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register function 'get_pos_y'"); + } + + if(SQ_FAILED(sq_createslot(v, -3))) { + throw SquirrelError(v, "Couldn't register class 'AmbientSound'"); + } + } } // end of namespace Scripting