我正在尝试围绕AngelScript编写一个薄包装器。我无法弄清楚如何环绕特定结构。
这是我要包装的结构的结构定义,asSMethodPtr
:
template <int N>
struct asSMethodPtr
{
template<class M>
static asSFuncPtr Convert(M Mthd)
{
// This version of the function should never be executed, nor compiled,
// as it would mean that the size of the method pointer cannot be determined.
int ERROR_UnsupportedMethodPtr[N-100];
asSFuncPtr p;
return p;
}
};
这是 的定义asSFuncPtr
:
struct asSFuncPtr
{
union
{
char dummy[25]; // largest known class method pointer
struct {asFUNCTION_t func; char dummy[25-sizeof(asFUNCTION_t)];} f;
} ptr;
asBYTE flag; // 1 = generic, 2 = global func
};
这是我找到的代码(取自AngelBinder库),它允许我“包装”它:
template<typename R> ClassExporter& method(std::string name, R (T::*func)())
{
MethodClass mthd(name, Type<R>::toString(), asSMethodPtr< sizeof( void (T::*)() ) >::Convert( AS_METHOD_AMBIGUITY_CAST( R (T::*)()) (func) ));
this->_methods.push(mthd);
return *this;
}
不幸的是,我不知道这段代码在做什么......
应该怎么T::*
做?指向类类型的指针?
是什么R (T::*func)()
?
任何帮助表示赞赏...