mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
Update the Sphere type to use the new dynamic dispatching system for metamethods.
This commit is contained in:
parent
1b95fba086
commit
1a409b4919
@ -1,6 +1,7 @@
|
|||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
#include "Base/Sphere.hpp"
|
#include "Base/Sphere.hpp"
|
||||||
#include "Base/Shared.hpp"
|
#include "Base/Shared.hpp"
|
||||||
|
#include "Base/DynArg.hpp"
|
||||||
#include "Library/Numeric/Random.hpp"
|
#include "Library/Numeric/Random.hpp"
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
@ -559,13 +560,13 @@ void Register_Sphere(HSQUIRRELVM vm)
|
|||||||
// Core Meta-methods
|
// Core Meta-methods
|
||||||
.Func(_SC("_tostring"), &Sphere::ToString)
|
.Func(_SC("_tostring"), &Sphere::ToString)
|
||||||
.SquirrelFunc(_SC("_typename"), &Sphere::Typename)
|
.SquirrelFunc(_SC("_typename"), &Sphere::Typename)
|
||||||
.Func(_SC("_cmp"), &Sphere::Cmp)
|
.SquirrelFunc(_SC("cmp"), &SqDynArgFwd< SqDynArgCmpFn< Sphere >, SQFloat, SQInteger, bool, std::nullptr_t, Sphere >)
|
||||||
// Meta-methods
|
// Meta-methods
|
||||||
.Func< Sphere (Sphere::*)(const Sphere &) const >(_SC("_add"), &Sphere::operator +)
|
.SquirrelFunc(_SC("_add"), &SqDynArgFwd< SqDynArgAddFn< Sphere >, SQFloat, SQInteger, bool, std::nullptr_t, Sphere >)
|
||||||
.Func< Sphere (Sphere::*)(const Sphere &) const >(_SC("_sub"), &Sphere::operator -)
|
.SquirrelFunc(_SC("_sub"), &SqDynArgFwd< SqDynArgSubFn< Sphere >, SQFloat, SQInteger, bool, std::nullptr_t, Sphere >)
|
||||||
.Func< Sphere (Sphere::*)(const Sphere &) const >(_SC("_mul"), &Sphere::operator *)
|
.SquirrelFunc(_SC("_mul"), &SqDynArgFwd< SqDynArgMulFn< Sphere >, SQFloat, SQInteger, bool, std::nullptr_t, Sphere >)
|
||||||
.Func< Sphere (Sphere::*)(const Sphere &) const >(_SC("_div"), &Sphere::operator /)
|
.SquirrelFunc(_SC("_div"), &SqDynArgFwd< SqDynArgDivFn< Sphere >, SQFloat, SQInteger, bool, std::nullptr_t, Sphere >)
|
||||||
.Func< Sphere (Sphere::*)(const Sphere &) const >(_SC("_modulo"), &Sphere::operator %)
|
.SquirrelFunc(_SC("_modulo"), &SqDynArgFwd< SqDynArgModFn< Sphere >, SQFloat, SQInteger, bool, std::nullptr_t, Sphere >)
|
||||||
.Func< Sphere (Sphere::*)(void) const >(_SC("_unm"), &Sphere::operator -)
|
.Func< Sphere (Sphere::*)(void) const >(_SC("_unm"), &Sphere::operator -)
|
||||||
// Properties
|
// Properties
|
||||||
.Prop(_SC("Abs"), &Sphere::Abs)
|
.Prop(_SC("Abs"), &Sphere::Abs)
|
||||||
|
@ -306,6 +306,30 @@ struct Sphere
|
|||||||
*/
|
*/
|
||||||
Int32 Cmp(const Sphere & s) const;
|
Int32 Cmp(const Sphere & s) const;
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* Used by the script engine to compare an instance of this type with a scalar value.
|
||||||
|
*/
|
||||||
|
Int32 Cmp(Value s) const
|
||||||
|
{
|
||||||
|
return Cmp(Sphere(s));
|
||||||
|
}
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* Used by the script engine to compare an instance of this type with a scalar value.
|
||||||
|
*/
|
||||||
|
Int32 Cmp(Int32 s) const
|
||||||
|
{
|
||||||
|
return Cmp(Sphere(static_cast< Value >(s)));
|
||||||
|
}
|
||||||
|
|
||||||
|
/* --------------------------------------------------------------------------------------------
|
||||||
|
* Used by the script engine to compare an instance of this type with a scalar value.
|
||||||
|
*/
|
||||||
|
Int32 Cmp(std::nullptr_t) const
|
||||||
|
{
|
||||||
|
return Cmp(Sphere(static_cast< Value >(0)));
|
||||||
|
}
|
||||||
|
|
||||||
/* --------------------------------------------------------------------------------------------
|
/* --------------------------------------------------------------------------------------------
|
||||||
* Used by the script engine to convert an instance of this type to a string.
|
* Used by the script engine to convert an instance of this type to a string.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user