Регистрация класса irrlicht в angelscript дает - PullRequest
0 голосов
/ 09 августа 2011

Я пытаюсь зарегистрировать следующую функцию из Irrlicht, dimension2df:

template <class U>
dimension2d<T>& operator=(const dimension2d<U>& other)
{ 
    Width = (T) other.Width;
    Height = (T) other.Height;
    return *this;
}

Вот полный исходный файл: http://irrlicht.sourceforge.net/docu/dimension2d_8h_source.html

Вот мой код на C ++ для регистрации перегруженного оператора = в angelscript:

r = engine->RegisterObjectMethod("dimension2f", "bool opEquals(const dimension2f &in) const", asFUNCTIONPR(operator==, (dimension2df&), bool),asCALL_CDECL_OBJFIRST); assert(r >= 0);

При компиляции я получаю следующее сообщение об ошибке:

E:\pb\main.cpp|295|error: invalid static_cast from type '<unresolved overloaded function type>' to type 'bool (*)(irr::core::dimension2df&)'|

Глядя на документацию, он описывает этот метод регистрации операторной функции:

struct Vector3
{
Vector3();
Vector3(const Vector3 &other);
Vector3(float x, float y, float z);

Vector3 &operator=(const Vector3 &other);
Vector3 &operator+=(const Vector3 &other);
Vector3 &operator-=(const Vector3 &other);
Vector3 &operator*=(float scalar);
Vector3 &operator/=(float scalar);

friend bool operator==(const Vector3 &a, const Vector3 &b);
friend bool operator!=(const Vector3 &a, const Vector3 &b);
friend Vector3 operator+(const Vector3 &a, const Vector3 &b);
friend Vector3 operator-(const Vector3 &a, const Vector3 &b);
friend Vector3 operator*(float s, const Vector3 &v);
friend Vector3 operator*(const Vector3 &v, float s);
friend Vector3 operator/(const Vector3 &v, float s);

float x;
float y;
float z;
};

r = engine->RegisterObjectMethod("vector3", "bool opEquals(const vector3 &in) const", asFUNCTIONPR(operator==, (const Vector3&, const Vector3&), bool), asCALL_CDECL_OBJFIRST); assert( r >= 0 );

Я пытался следовать примеру как можно ближе, но эта проблема действительно поставила меня в тупик.

1 Ответ

1 голос
/ 10 августа 2011

Я понял, вот правильный код:

r = engine->RegisterObjectMethod("dimension2f", "bool opEquals(const dimension2f &in) const", asMETHODPR(dimension2df, operator==, (const dimension2df&) const, bool),asCALL_THISCALL); assert(r >= 0);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...