2009-08-21 20:21:05 +00:00
|
|
|
/*
|
|
|
|
* This file is part of OpenTTD.
|
|
|
|
* OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
|
|
|
|
* OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
* See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2009-01-12 17:11:45 +00:00
|
|
|
/** @file squirrel_helper.hpp declarations and parts of the implementation of the class for convert code */
|
|
|
|
|
|
|
|
#ifndef SQUIRREL_HELPER_HPP
|
|
|
|
#define SQUIRREL_HELPER_HPP
|
|
|
|
|
2010-08-26 22:01:16 +00:00
|
|
|
#include "squirrel.hpp"
|
2009-01-12 17:11:45 +00:00
|
|
|
#include "../core/smallvec_type.hpp"
|
|
|
|
#include "../economy_type.h"
|
2009-02-02 13:46:26 +00:00
|
|
|
#include "../string_func.h"
|
2021-11-06 22:11:22 +00:00
|
|
|
#include "../tile_type.h"
|
2009-01-12 17:11:45 +00:00
|
|
|
#include "squirrel_helper_type.hpp"
|
|
|
|
|
2011-11-29 22:23:33 +00:00
|
|
|
template <class CL, ScriptType ST> const char *GetClassName();
|
2011-11-13 20:52:39 +00:00
|
|
|
|
2009-01-12 17:11:45 +00:00
|
|
|
/**
|
|
|
|
* The Squirrel convert routines
|
|
|
|
*/
|
|
|
|
namespace SQConvert {
|
|
|
|
/**
|
|
|
|
* Pointers assigned to this class will be free'd when this instance
|
2014-04-25 15:40:32 +00:00
|
|
|
* comes out of scope. Useful to make sure you can use stredup(),
|
2009-01-12 17:11:45 +00:00
|
|
|
* without leaking memory.
|
|
|
|
*/
|
2019-03-03 17:30:09 +00:00
|
|
|
struct SQAutoFreePointers : std::vector<void *> {
|
2009-01-12 17:11:45 +00:00
|
|
|
~SQAutoFreePointers()
|
|
|
|
{
|
2019-03-13 20:55:31 +00:00
|
|
|
for (void * p : *this) free(p);
|
2009-01-12 17:11:45 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Special class to make it possible for the compiler to pick the correct GetParam().
|
|
|
|
*/
|
|
|
|
template <typename T> class ForceType { };
|
|
|
|
|
|
|
|
/**
|
|
|
|
* To return a value to squirrel, we call this function. It converts to the right format.
|
|
|
|
*/
|
|
|
|
template <typename T> static int Return(HSQUIRRELVM vm, T t);
|
|
|
|
|
|
|
|
template <> inline int Return<uint8> (HSQUIRRELVM vm, uint8 res) { sq_pushinteger(vm, (int32)res); return 1; }
|
|
|
|
template <> inline int Return<uint16> (HSQUIRRELVM vm, uint16 res) { sq_pushinteger(vm, (int32)res); return 1; }
|
|
|
|
template <> inline int Return<uint32> (HSQUIRRELVM vm, uint32 res) { sq_pushinteger(vm, (int32)res); return 1; }
|
|
|
|
template <> inline int Return<int8> (HSQUIRRELVM vm, int8 res) { sq_pushinteger(vm, res); return 1; }
|
|
|
|
template <> inline int Return<int16> (HSQUIRRELVM vm, int16 res) { sq_pushinteger(vm, res); return 1; }
|
|
|
|
template <> inline int Return<int32> (HSQUIRRELVM vm, int32 res) { sq_pushinteger(vm, res); return 1; }
|
2014-05-11 20:25:26 +00:00
|
|
|
template <> inline int Return<int64> (HSQUIRRELVM vm, int64 res) { sq_pushinteger(vm, res); return 1; }
|
|
|
|
template <> inline int Return<Money> (HSQUIRRELVM vm, Money res) { sq_pushinteger(vm, res); return 1; }
|
2021-11-06 22:11:22 +00:00
|
|
|
template <> inline int Return<TileIndex> (HSQUIRRELVM vm, TileIndex res) { sq_pushinteger(vm, (int32)res.value); return 1; }
|
2009-01-12 17:11:45 +00:00
|
|
|
template <> inline int Return<bool> (HSQUIRRELVM vm, bool res) { sq_pushbool (vm, res); return 1; }
|
2019-04-10 21:07:06 +00:00
|
|
|
template <> inline int Return<char *> (HSQUIRRELVM vm, char *res) { if (res == nullptr) sq_pushnull(vm); else { sq_pushstring(vm, res, -1); free(res); } return 1; }
|
|
|
|
template <> inline int Return<const char *>(HSQUIRRELVM vm, const char *res) { if (res == nullptr) sq_pushnull(vm); else { sq_pushstring(vm, res, -1); } return 1; }
|
2009-01-12 17:11:45 +00:00
|
|
|
template <> inline int Return<void *> (HSQUIRRELVM vm, void *res) { sq_pushuserpointer(vm, res); return 1; }
|
2011-11-23 13:39:36 +00:00
|
|
|
template <> inline int Return<HSQOBJECT> (HSQUIRRELVM vm, HSQOBJECT res) { sq_pushobject(vm, res); return 1; }
|
2009-01-12 17:11:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* To get a param from squirrel, we call this function. It converts to the right format.
|
|
|
|
*/
|
|
|
|
template <typename T> static T GetParam(ForceType<T>, HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr);
|
|
|
|
|
|
|
|
template <> inline uint8 GetParam(ForceType<uint8> , HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQInteger tmp; sq_getinteger (vm, index, &tmp); return tmp; }
|
|
|
|
template <> inline uint16 GetParam(ForceType<uint16> , HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQInteger tmp; sq_getinteger (vm, index, &tmp); return tmp; }
|
|
|
|
template <> inline uint32 GetParam(ForceType<uint32> , HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQInteger tmp; sq_getinteger (vm, index, &tmp); return tmp; }
|
|
|
|
template <> inline int8 GetParam(ForceType<int8> , HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQInteger tmp; sq_getinteger (vm, index, &tmp); return tmp; }
|
|
|
|
template <> inline int16 GetParam(ForceType<int16> , HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQInteger tmp; sq_getinteger (vm, index, &tmp); return tmp; }
|
|
|
|
template <> inline int32 GetParam(ForceType<int32> , HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQInteger tmp; sq_getinteger (vm, index, &tmp); return tmp; }
|
2014-05-11 20:25:26 +00:00
|
|
|
template <> inline int64 GetParam(ForceType<int64> , HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQInteger tmp; sq_getinteger (vm, index, &tmp); return tmp; }
|
2021-11-06 22:11:22 +00:00
|
|
|
template <> inline TileIndex GetParam(ForceType<TileIndex> , HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQInteger tmp; sq_getinteger (vm, index, &tmp); return TileIndex((uint32)(int32)tmp); }
|
2014-05-11 20:25:26 +00:00
|
|
|
template <> inline Money GetParam(ForceType<Money> , HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQInteger tmp; sq_getinteger (vm, index, &tmp); return tmp; }
|
2009-01-12 17:11:45 +00:00
|
|
|
template <> inline bool GetParam(ForceType<bool> , HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQBool tmp; sq_getbool (vm, index, &tmp); return tmp != 0; }
|
|
|
|
template <> inline void *GetParam(ForceType<void *> , HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr) { SQUserPointer tmp; sq_getuserpointer(vm, index, &tmp); return tmp; }
|
2009-08-19 14:54:52 +00:00
|
|
|
template <> inline const char *GetParam(ForceType<const char *>, HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr)
|
|
|
|
{
|
2011-12-19 20:44:31 +00:00
|
|
|
/* Convert what-ever there is as parameter to a string */
|
2009-08-19 14:54:52 +00:00
|
|
|
sq_tostring(vm, index);
|
2011-12-19 20:44:31 +00:00
|
|
|
|
2009-08-19 14:54:52 +00:00
|
|
|
const SQChar *tmp;
|
|
|
|
sq_getstring(vm, -1, &tmp);
|
2014-09-06 17:30:33 +00:00
|
|
|
char *tmp_str = stredup(tmp);
|
2009-08-19 14:54:52 +00:00
|
|
|
sq_poptop(vm);
|
2019-02-18 22:39:06 +00:00
|
|
|
ptr->push_back((void *)tmp_str);
|
2021-05-29 09:21:38 +00:00
|
|
|
StrMakeValidInPlace(tmp_str);
|
2009-08-19 14:54:52 +00:00
|
|
|
return tmp_str;
|
|
|
|
}
|
2009-01-12 17:11:45 +00:00
|
|
|
|
|
|
|
template <> inline Array *GetParam(ForceType<Array *>, HSQUIRRELVM vm, int index, SQAutoFreePointers *ptr)
|
|
|
|
{
|
2011-09-02 20:16:41 +00:00
|
|
|
/* Sanity check of the size. */
|
2014-09-06 17:46:56 +00:00
|
|
|
if (sq_getsize(vm, index) > UINT16_MAX) throw sq_throwerror(vm, "an array used as parameter to a function is too large");
|
2011-09-02 20:16:41 +00:00
|
|
|
|
2009-01-12 17:11:45 +00:00
|
|
|
SQObject obj;
|
|
|
|
sq_getstackobj(vm, index, &obj);
|
|
|
|
sq_pushobject(vm, obj);
|
|
|
|
sq_pushnull(vm);
|
|
|
|
|
2019-03-03 17:30:09 +00:00
|
|
|
std::vector<int32> data;
|
2009-01-12 17:11:45 +00:00
|
|
|
|
|
|
|
while (SQ_SUCCEEDED(sq_next(vm, -2))) {
|
|
|
|
SQInteger tmp;
|
|
|
|
if (SQ_SUCCEEDED(sq_getinteger(vm, -1, &tmp))) {
|
2019-02-18 22:39:06 +00:00
|
|
|
data.push_back((int32)tmp);
|
2009-01-12 17:11:45 +00:00
|
|
|
} else {
|
|
|
|
sq_pop(vm, 4);
|
2014-09-06 17:46:56 +00:00
|
|
|
throw sq_throwerror(vm, "a member of an array used as parameter to a function is not numeric");
|
2009-01-12 17:11:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sq_pop(vm, 2);
|
|
|
|
}
|
|
|
|
sq_pop(vm, 2);
|
|
|
|
|
2018-09-23 11:23:54 +00:00
|
|
|
Array *arr = (Array*)MallocT<byte>(sizeof(Array) + sizeof(int32) * data.size());
|
|
|
|
arr->size = data.size();
|
2019-02-17 11:20:52 +00:00
|
|
|
memcpy(arr->array, data.data(), sizeof(int32) * data.size());
|
2009-01-12 17:11:45 +00:00
|
|
|
|
2019-02-18 22:39:06 +00:00
|
|
|
ptr->push_back(arr);
|
2009-01-12 17:11:45 +00:00
|
|
|
return arr;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-11-03 17:30:08 +00:00
|
|
|
* Helper class to recognize the function type (retval type, args) and use the proper specialization
|
|
|
|
* for SQ callback. The partial specializations for the second arg (Tis_void_retval) are not possible
|
|
|
|
* on the function. Therefore the class is used instead.
|
|
|
|
*/
|
2021-12-19 14:17:10 +00:00
|
|
|
template <typename Tfunc> struct HelperT;
|
2009-01-12 17:11:45 +00:00
|
|
|
|
|
|
|
/**
|
2021-12-19 14:17:10 +00:00
|
|
|
* The real C++ caller for functions.
|
2009-01-12 17:11:45 +00:00
|
|
|
*/
|
2021-12-19 14:17:10 +00:00
|
|
|
template <typename Tretval, typename... Targs>
|
|
|
|
struct HelperT<Tretval (*)(Targs...)> {
|
|
|
|
static int SQCall(void *instance, Tretval(*func)(Targs...), HSQUIRRELVM vm)
|
2009-01-12 17:11:45 +00:00
|
|
|
{
|
2021-12-19 14:17:10 +00:00
|
|
|
return SQCall(instance, func, vm, std::index_sequence_for<Targs...>{});
|
2009-01-12 17:11:45 +00:00
|
|
|
}
|
|
|
|
|
2021-12-19 14:17:10 +00:00
|
|
|
private:
|
|
|
|
template <size_t... i>
|
|
|
|
static int SQCall(void *instance, Tretval(*func)(Targs...), [[maybe_unused]] HSQUIRRELVM vm, std::index_sequence<i...>)
|
2009-01-12 17:11:45 +00:00
|
|
|
{
|
2021-12-19 14:17:10 +00:00
|
|
|
[[maybe_unused]] SQAutoFreePointers ptr;
|
|
|
|
if constexpr (std::is_void_v<Tretval>) {
|
|
|
|
(*func)(
|
|
|
|
GetParam(ForceType<Targs>(), vm, 2 + i, &ptr)...
|
|
|
|
);
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
Tretval ret = (*func)(
|
|
|
|
GetParam(ForceType<Targs>(), vm, 2 + i, &ptr)...
|
|
|
|
);
|
|
|
|
return Return(vm, ret);
|
|
|
|
}
|
2009-01-12 17:11:45 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2021-12-19 14:17:10 +00:00
|
|
|
* The real C++ caller for methods.
|
2009-01-12 17:11:45 +00:00
|
|
|
*/
|
2021-12-19 14:17:10 +00:00
|
|
|
template <class Tcls, typename Tretval, typename... Targs>
|
|
|
|
struct HelperT<Tretval(Tcls:: *)(Targs...)> {
|
|
|
|
static int SQCall(Tcls *instance, Tretval(Tcls:: *func)(Targs...), HSQUIRRELVM vm)
|
2009-01-12 17:11:45 +00:00
|
|
|
{
|
2021-12-19 14:17:10 +00:00
|
|
|
return SQCall(instance, func, vm, std::index_sequence_for<Targs...>{});
|
2009-01-12 17:11:45 +00:00
|
|
|
}
|
|
|
|
|
2021-12-19 14:17:10 +00:00
|
|
|
static Tcls *SQConstruct(Tcls *instance, Tretval(Tcls:: *func)(Targs...), HSQUIRRELVM vm)
|
2009-01-12 17:11:45 +00:00
|
|
|
{
|
2021-12-19 14:17:10 +00:00
|
|
|
return SQConstruct(instance, func, vm, std::index_sequence_for<Targs...>{});
|
2009-01-12 17:11:45 +00:00
|
|
|
}
|
|
|
|
|
2021-12-19 14:17:10 +00:00
|
|
|
private:
|
|
|
|
template <size_t... i>
|
|
|
|
static int SQCall(Tcls *instance, Tretval(Tcls:: *func)(Targs...), [[maybe_unused]] HSQUIRRELVM vm, std::index_sequence<i...>)
|
2009-01-12 17:11:45 +00:00
|
|
|
{
|
2021-12-19 14:17:10 +00:00
|
|
|
[[maybe_unused]] SQAutoFreePointers ptr;
|
|
|
|
if constexpr (std::is_void_v<Tretval>) {
|
|
|
|
(instance->*func)(
|
|
|
|
GetParam(ForceType<Targs>(), vm, 2 + i, &ptr)...
|
|
|
|
);
|
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
Tretval ret = (instance->*func)(
|
|
|
|
GetParam(ForceType<Targs>(), vm, 2 + i, &ptr)...
|
|
|
|
);
|
|
|
|
return Return(vm, ret);
|
|
|
|
}
|
2009-01-12 17:11:45 +00:00
|
|
|
}
|
|
|
|
|
2021-12-19 14:17:10 +00:00
|
|
|
template <size_t... i>
|
|
|
|
static Tcls *SQConstruct(Tcls *, Tretval(Tcls:: *func)(Targs...), [[maybe_unused]] HSQUIRRELVM vm, std::index_sequence<i...>)
|
2009-01-12 17:11:45 +00:00
|
|
|
{
|
2021-12-19 14:17:10 +00:00
|
|
|
[[maybe_unused]] SQAutoFreePointers ptr;
|
2009-01-12 17:11:45 +00:00
|
|
|
Tcls *inst = new Tcls(
|
2021-12-19 14:17:10 +00:00
|
|
|
GetParam(ForceType<Targs>(), vm, 2 + i, &ptr)...
|
2009-01-12 17:11:45 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
return inst;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A general template for all non-static method callbacks from Squirrel.
|
|
|
|
* In here the function_proc is recovered, and the SQCall is called that
|
|
|
|
* can handle this exact amount of params.
|
|
|
|
*/
|
2011-11-29 22:23:33 +00:00
|
|
|
template <typename Tcls, typename Tmethod, ScriptType Ttype>
|
2009-01-12 17:11:45 +00:00
|
|
|
inline SQInteger DefSQNonStaticCallback(HSQUIRRELVM vm)
|
|
|
|
{
|
|
|
|
/* Find the amount of params we got */
|
|
|
|
int nparam = sq_gettop(vm);
|
2019-04-10 21:07:06 +00:00
|
|
|
SQUserPointer ptr = nullptr;
|
|
|
|
SQUserPointer real_instance = nullptr;
|
2009-01-12 17:11:45 +00:00
|
|
|
HSQOBJECT instance;
|
|
|
|
|
|
|
|
/* Get the 'SQ' instance of this class */
|
|
|
|
Squirrel::GetInstance(vm, &instance);
|
|
|
|
|
|
|
|
/* Protect against calls to a non-static method in a static way */
|
|
|
|
sq_pushroottable(vm);
|
2011-11-29 22:23:33 +00:00
|
|
|
const char *className = GetClassName<Tcls, Ttype>();
|
2014-09-06 17:30:33 +00:00
|
|
|
sq_pushstring(vm, className, -1);
|
2009-01-12 17:11:45 +00:00
|
|
|
sq_get(vm, -2);
|
|
|
|
sq_pushobject(vm, instance);
|
2014-09-06 17:46:56 +00:00
|
|
|
if (sq_instanceof(vm) != SQTrue) return sq_throwerror(vm, "class method is non-static");
|
2009-01-12 17:11:45 +00:00
|
|
|
sq_pop(vm, 3);
|
|
|
|
|
|
|
|
/* Get the 'real' instance of this class */
|
2021-06-16 19:10:41 +00:00
|
|
|
sq_getinstanceup(vm, 1, &real_instance, nullptr);
|
2009-01-12 17:11:45 +00:00
|
|
|
/* Get the real function pointer */
|
2021-06-16 19:10:41 +00:00
|
|
|
sq_getuserdata(vm, nparam, &ptr, nullptr);
|
2019-04-10 21:07:06 +00:00
|
|
|
if (real_instance == nullptr) return sq_throwerror(vm, "couldn't detect real instance of class for non-static call");
|
2009-01-12 17:11:45 +00:00
|
|
|
/* Remove the userdata from the stack */
|
|
|
|
sq_pop(vm, 1);
|
|
|
|
|
|
|
|
try {
|
|
|
|
/* Delegate it to a template that can handle this specific function */
|
|
|
|
return HelperT<Tmethod>::SQCall((Tcls *)real_instance, *(Tmethod *)ptr, vm);
|
2019-05-15 19:14:13 +00:00
|
|
|
} catch (SQInteger &e) {
|
2009-01-12 17:11:45 +00:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A general template for all non-static advanced method callbacks from Squirrel.
|
|
|
|
* In here the function_proc is recovered, and the SQCall is called that
|
|
|
|
* can handle this exact amount of params.
|
|
|
|
*/
|
2011-11-29 22:23:33 +00:00
|
|
|
template <typename Tcls, typename Tmethod, ScriptType Ttype>
|
2009-01-12 17:11:45 +00:00
|
|
|
inline SQInteger DefSQAdvancedNonStaticCallback(HSQUIRRELVM vm)
|
|
|
|
{
|
|
|
|
/* Find the amount of params we got */
|
|
|
|
int nparam = sq_gettop(vm);
|
2019-04-10 21:07:06 +00:00
|
|
|
SQUserPointer ptr = nullptr;
|
|
|
|
SQUserPointer real_instance = nullptr;
|
2009-01-12 17:11:45 +00:00
|
|
|
HSQOBJECT instance;
|
|
|
|
|
|
|
|
/* Get the 'SQ' instance of this class */
|
|
|
|
Squirrel::GetInstance(vm, &instance);
|
|
|
|
|
|
|
|
/* Protect against calls to a non-static method in a static way */
|
|
|
|
sq_pushroottable(vm);
|
2011-11-29 22:23:33 +00:00
|
|
|
const char *className = GetClassName<Tcls, Ttype>();
|
2014-09-06 17:30:33 +00:00
|
|
|
sq_pushstring(vm, className, -1);
|
2009-01-12 17:11:45 +00:00
|
|
|
sq_get(vm, -2);
|
|
|
|
sq_pushobject(vm, instance);
|
2014-09-06 17:46:56 +00:00
|
|
|
if (sq_instanceof(vm) != SQTrue) return sq_throwerror(vm, "class method is non-static");
|
2009-01-12 17:11:45 +00:00
|
|
|
sq_pop(vm, 3);
|
|
|
|
|
|
|
|
/* Get the 'real' instance of this class */
|
2021-06-16 19:10:41 +00:00
|
|
|
sq_getinstanceup(vm, 1, &real_instance, nullptr);
|
2009-01-12 17:11:45 +00:00
|
|
|
/* Get the real function pointer */
|
2021-06-16 19:10:41 +00:00
|
|
|
sq_getuserdata(vm, nparam, &ptr, nullptr);
|
2019-04-10 21:07:06 +00:00
|
|
|
if (real_instance == nullptr) return sq_throwerror(vm, "couldn't detect real instance of class for non-static call");
|
2009-01-12 17:11:45 +00:00
|
|
|
/* Remove the userdata from the stack */
|
|
|
|
sq_pop(vm, 1);
|
|
|
|
|
|
|
|
/* Call the function, which its only param is always the VM */
|
|
|
|
return (SQInteger)(((Tcls *)real_instance)->*(*(Tmethod *)ptr))(vm);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A general template for all function/static method callbacks from Squirrel.
|
|
|
|
* In here the function_proc is recovered, and the SQCall is called that
|
|
|
|
* can handle this exact amount of params.
|
|
|
|
*/
|
|
|
|
template <typename Tcls, typename Tmethod>
|
|
|
|
inline SQInteger DefSQStaticCallback(HSQUIRRELVM vm)
|
|
|
|
{
|
|
|
|
/* Find the amount of params we got */
|
|
|
|
int nparam = sq_gettop(vm);
|
2019-04-10 21:07:06 +00:00
|
|
|
SQUserPointer ptr = nullptr;
|
2009-01-12 17:11:45 +00:00
|
|
|
|
|
|
|
/* Get the real function pointer */
|
2021-06-16 19:10:41 +00:00
|
|
|
sq_getuserdata(vm, nparam, &ptr, nullptr);
|
2009-01-12 17:11:45 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
/* Delegate it to a template that can handle this specific function */
|
2019-04-10 21:07:06 +00:00
|
|
|
return HelperT<Tmethod>::SQCall((Tcls *)nullptr, *(Tmethod *)ptr, vm);
|
2019-05-15 19:14:13 +00:00
|
|
|
} catch (SQInteger &e) {
|
2009-01-12 17:11:45 +00:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-19 21:00:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A general template for all static advanced method callbacks from Squirrel.
|
|
|
|
* In here the function_proc is recovered, and the SQCall is called that
|
|
|
|
* can handle this exact amount of params.
|
|
|
|
*/
|
|
|
|
template <typename Tcls, typename Tmethod>
|
|
|
|
inline SQInteger DefSQAdvancedStaticCallback(HSQUIRRELVM vm)
|
|
|
|
{
|
|
|
|
/* Find the amount of params we got */
|
|
|
|
int nparam = sq_gettop(vm);
|
2019-04-10 21:07:06 +00:00
|
|
|
SQUserPointer ptr = nullptr;
|
2011-12-19 21:00:32 +00:00
|
|
|
|
|
|
|
/* Get the real function pointer */
|
2021-06-16 19:10:41 +00:00
|
|
|
sq_getuserdata(vm, nparam, &ptr, nullptr);
|
2011-12-19 21:00:32 +00:00
|
|
|
/* Remove the userdata from the stack */
|
|
|
|
sq_pop(vm, 1);
|
|
|
|
|
|
|
|
/* Call the function, which its only param is always the VM */
|
|
|
|
return (SQInteger)(*(*(Tmethod *)ptr))(vm);
|
|
|
|
}
|
|
|
|
|
2009-01-12 17:11:45 +00:00
|
|
|
/**
|
|
|
|
* A general template for the destructor of SQ instances. This is needed
|
|
|
|
* here as it has to be in the same scope as DefSQConstructorCallback.
|
|
|
|
*/
|
|
|
|
template <typename Tcls>
|
|
|
|
static SQInteger DefSQDestructorCallback(SQUserPointer p, SQInteger size)
|
|
|
|
{
|
|
|
|
/* Remove the real instance too */
|
2019-04-10 21:07:06 +00:00
|
|
|
if (p != nullptr) ((Tcls *)p)->Release();
|
2009-01-12 17:11:45 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A general template to handle creating of instance with any amount of
|
|
|
|
* params. It creates the instance in C++, and it sets all the needed
|
|
|
|
* settings in SQ to register the instance.
|
|
|
|
*/
|
|
|
|
template <typename Tcls, typename Tmethod, int Tnparam>
|
|
|
|
inline SQInteger DefSQConstructorCallback(HSQUIRRELVM vm)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
/* Create the real instance */
|
2019-04-10 21:07:06 +00:00
|
|
|
Tcls *instance = HelperT<Tmethod>::SQConstruct((Tcls *)nullptr, (Tmethod)nullptr, vm);
|
2009-01-12 17:11:45 +00:00
|
|
|
sq_setinstanceup(vm, -Tnparam, instance);
|
|
|
|
sq_setreleasehook(vm, -Tnparam, DefSQDestructorCallback<Tcls>);
|
|
|
|
instance->AddRef();
|
|
|
|
return 0;
|
2019-05-15 19:14:13 +00:00
|
|
|
} catch (SQInteger &e) {
|
2009-01-12 17:11:45 +00:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-21 14:55:28 +00:00
|
|
|
/**
|
|
|
|
* A general template to handle creating of an instance with a complex
|
|
|
|
* constructor.
|
|
|
|
*/
|
|
|
|
template <typename Tcls>
|
|
|
|
inline SQInteger DefSQAdvancedConstructorCallback(HSQUIRRELVM vm)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
/* Find the amount of params we got */
|
|
|
|
int nparam = sq_gettop(vm);
|
|
|
|
|
|
|
|
/* Create the real instance */
|
|
|
|
Tcls *instance = new Tcls(vm);
|
|
|
|
sq_setinstanceup(vm, -nparam, instance);
|
|
|
|
sq_setreleasehook(vm, -nparam, DefSQDestructorCallback<Tcls>);
|
|
|
|
instance->AddRef();
|
|
|
|
return 0;
|
2019-05-15 19:14:13 +00:00
|
|
|
} catch (SQInteger &e) {
|
2011-12-21 14:55:28 +00:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-03-23 22:37:18 +00:00
|
|
|
} // namespace SQConvert
|
2009-01-12 17:11:45 +00:00
|
|
|
|
|
|
|
#endif /* SQUIRREL_HELPER_HPP */
|