mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
461 lines
14 KiB
C++
461 lines
14 KiB
C++
// ------------------------------------------------------------------------------------------------
|
|
#include "Base/Vector2.hpp"
|
|
#include "Base/Vector2i.hpp"
|
|
#include "Base/DynArg.hpp"
|
|
#include "Core/Buffer.hpp"
|
|
#include "Core/Utility.hpp"
|
|
#include "Library/Numeric/Random.hpp"
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
namespace SqMod {
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
SQMOD_DECL_TYPENAME(Typename, _SC("Vector2"))
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
const Vector2 Vector2::NIL = Vector2(0);
|
|
const Vector2 Vector2::MIN = Vector2(std::numeric_limits< Vector2::Value >::min());
|
|
const Vector2 Vector2::MAX = Vector2(std::numeric_limits< Vector2::Value >::max());
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
SQChar Vector2::Delim = ',';
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2::Vector2(Value sv) noexcept
|
|
: x(sv), y(sv)
|
|
{
|
|
/* ... */
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2::Vector2(Value xv, Value yv) noexcept
|
|
: x(xv), y(yv)
|
|
{
|
|
/* ... */
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 & Vector2::operator = (Value s)
|
|
{
|
|
x = s;
|
|
y = s;
|
|
return *this;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 & Vector2::operator = (const Vector2i & v)
|
|
{
|
|
x = ConvTo< Value >::From(v.x);
|
|
y = ConvTo< Value >::From(v.y);
|
|
return *this;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 & Vector2::operator += (const Vector2 & v)
|
|
{
|
|
x += v.x;
|
|
y += v.y;
|
|
return *this;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 & Vector2::operator -= (const Vector2 & v)
|
|
{
|
|
x -= v.x;
|
|
y -= v.y;
|
|
return *this;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 & Vector2::operator *= (const Vector2 & v)
|
|
{
|
|
x *= v.x;
|
|
y *= v.y;
|
|
return *this;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 & Vector2::operator /= (const Vector2 & v)
|
|
{
|
|
x /= v.x;
|
|
y /= v.y;
|
|
return *this;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 & Vector2::operator %= (const Vector2 & v)
|
|
{
|
|
x = fmodf(x, v.x);
|
|
y = fmodf(y, v.y);
|
|
return *this;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 & Vector2::operator += (Value s)
|
|
{
|
|
x += s;
|
|
y += s;
|
|
return *this;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 & Vector2::operator -= (Value s)
|
|
{
|
|
x -= s;
|
|
y -= s;
|
|
return *this;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 & Vector2::operator *= (Value s)
|
|
{
|
|
x *= s;
|
|
y *= s;
|
|
return *this;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 & Vector2::operator /= (Value s)
|
|
{
|
|
x /= s;
|
|
y /= s;
|
|
return *this;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 & Vector2::operator %= (Value s)
|
|
{
|
|
x = fmodf(x, s);
|
|
y = fmodf(y, s);
|
|
return *this;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 & Vector2::operator ++ ()
|
|
{
|
|
++x;
|
|
++y;
|
|
return *this;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 & Vector2::operator -- ()
|
|
{
|
|
--x;
|
|
--y;
|
|
return *this;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 Vector2::operator ++ (int) // NOLINT(cert-dcl21-cpp)
|
|
{
|
|
Vector2 state(*this);
|
|
++x;
|
|
++y;
|
|
return state;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 Vector2::operator -- (int) // NOLINT(cert-dcl21-cpp)
|
|
{
|
|
Vector2 state(*this);
|
|
--x;
|
|
--y;
|
|
return state;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 Vector2::operator + (const Vector2 & v) const
|
|
{
|
|
return {x + v.x, y + v.y};
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 Vector2::operator - (const Vector2 & v) const
|
|
{
|
|
return {x - v.x, y - v.y};
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 Vector2::operator * (const Vector2 & v) const
|
|
{
|
|
return {x * v.x, y * v.y};
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 Vector2::operator / (const Vector2 & v) const
|
|
{
|
|
return {x / v.x, y / v.y};
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 Vector2::operator % (const Vector2 & v) const
|
|
{
|
|
return {fmodf(x, v.x), fmodf(y, v.y)};
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 Vector2::operator + (Value s) const
|
|
{
|
|
return {x + s, y + s};
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 Vector2::operator - (Value s) const
|
|
{
|
|
return {x - s, y - s};
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 Vector2::operator * (Value s) const
|
|
{
|
|
return {x * s, y * s};
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 Vector2::operator / (Value s) const
|
|
{
|
|
return {x / s, y / s};
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 Vector2::operator % (Value s) const
|
|
{
|
|
return {fmodf(x, s), fmodf(y, s)};
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 Vector2::operator + () const
|
|
{
|
|
return {fabsf(x), fabsf(y)};
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 Vector2::operator - () const
|
|
{
|
|
return {-x, -y};
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
bool Vector2::operator == (const Vector2 & v) const
|
|
{
|
|
return EpsEq(x, v.x) && EpsEq(y, v.y);
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
bool Vector2::operator != (const Vector2 & v) const
|
|
{
|
|
return !EpsEq(x, v.x) || !EpsEq(y, v.y);
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
bool Vector2::operator < (const Vector2 & v) const
|
|
{
|
|
return EpsLt(x, v.x) && EpsLt(y, v.y);
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
bool Vector2::operator > (const Vector2 & v) const
|
|
{
|
|
return EpsGt(x, v.x) && EpsGt(y, v.y);
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
bool Vector2::operator <= (const Vector2 & v) const
|
|
{
|
|
return EpsLtEq(x, v.x) && EpsLtEq(y, v.y);
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
bool Vector2::operator >= (const Vector2 & v) const
|
|
{
|
|
return EpsGtEq(x, v.x) && EpsGtEq(y, v.y);
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
int32_t Vector2::Cmp(const Vector2 & o) const
|
|
{
|
|
if (*this == o)
|
|
{
|
|
return 0;
|
|
}
|
|
else if (*this > o)
|
|
{
|
|
return 1;
|
|
}
|
|
else
|
|
{
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
String Vector2::ToString() const
|
|
{
|
|
return fmt::format("{},{}", x, y);
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
void Vector2::SetScalar(Value ns)
|
|
{
|
|
x = ns;
|
|
y = ns;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
void Vector2::SetVector2(const Vector2 & v)
|
|
{
|
|
x = v.x;
|
|
y = v.y;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
void Vector2::SetVector2Ex(Value nx, Value ny)
|
|
{
|
|
x = nx;
|
|
y = ny;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
void Vector2::SetVector2i(const Vector2i & v)
|
|
{
|
|
x = ConvTo< Value >::From(v.x);
|
|
y = ConvTo< Value >::From(v.y);
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
void Vector2::SetStr(SQChar delim, StackStrF & values)
|
|
{
|
|
SetVector2(Vector2::GetEx(delim, values));
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 & Vector2::Generate()
|
|
{
|
|
x = GetRandomFloat32();
|
|
y = GetRandomFloat32();
|
|
// Allow chaining
|
|
return *this;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 & Vector2::GenerateB(Value min, Value max)
|
|
{
|
|
if (EpsLt(max, min))
|
|
{
|
|
STHROWF("max value is lower than min value");
|
|
}
|
|
|
|
x = GetRandomFloat32(min, max);
|
|
y = GetRandomFloat32(min, max);
|
|
// Allow chaining
|
|
return *this;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 & Vector2::GenerateR(Value xmin, Value xmax, Value ymin, Value ymax)
|
|
{
|
|
if (EpsLt(xmax, xmin) || EpsLt(ymax, ymin))
|
|
{
|
|
STHROWF("max value is lower than min value");
|
|
}
|
|
|
|
x = GetRandomFloat32(ymin, ymax);
|
|
y = GetRandomFloat32(xmin, xmax);
|
|
// Allow chaining
|
|
return *this;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
Vector2 Vector2::Abs() const
|
|
{
|
|
return {fabsf(x), fabsf(y)};
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
String Vector2::Format(StackStrF & str) const
|
|
{
|
|
return fmt::format(str.ToStr()
|
|
, fmt::arg("x", x)
|
|
, fmt::arg("y", y)
|
|
);
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
const Vector2 & Vector2::Get(StackStrF & str)
|
|
{
|
|
return Vector2::GetEx(Vector2::Delim, str);
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------------------------
|
|
const Vector2 & Vector2::GetEx(SQChar delim, StackStrF & str)
|
|
{
|
|
static Vector2 vec;
|
|
// Clear previous values, if any
|
|
vec.Clear();
|
|
// Is the specified string empty?
|
|
if (str.mLen <= 0)
|
|
{
|
|
return vec; // Return the value as is!
|
|
}
|
|
// The format specifications that will be used to scan the string
|
|
SQChar fs[] = _SC(" %f , %f ");
|
|
// Assign the specified delimiter
|
|
fs[4] = delim;
|
|
// Attempt to extract the component values from the specified string
|
|
std::sscanf(str.mPtr, fs, &vec.x, &vec.y);
|
|
// Return the resulted value
|
|
return vec;
|
|
}
|
|
|
|
// ================================================================================================
|
|
void Register_Vector2(HSQUIRRELVM vm)
|
|
{
|
|
typedef Vector2::Value Val;
|
|
|
|
RootTable(vm).Bind(Typename::Str,
|
|
Class< Vector2 >(vm, Typename::Str)
|
|
// Constructors
|
|
.Ctor()
|
|
.Ctor< Val >()
|
|
.Ctor< Val, Val >()
|
|
// Member Variables
|
|
.Var(_SC("x"), &Vector2::x)
|
|
.Var(_SC("y"), &Vector2::y)
|
|
.Var(_SC("X"), &Vector2::x)
|
|
.Var(_SC("Y"), &Vector2::y)
|
|
// Core Meta-methods
|
|
.SquirrelFunc(_SC("cmp"), &SqDynArgFwd< SqDynArgCmpFn< Vector2 >, SQFloat, SQInteger, bool, std::nullptr_t, Vector2 >)
|
|
.SquirrelFunc(_SC("_typename"), &Typename::Fn)
|
|
.Func(_SC("_tostring"), &Vector2::ToString)
|
|
// Meta-methods
|
|
.SquirrelFunc(_SC("_add"), &SqDynArgFwd< SqDynArgAddFn< Vector2 >, SQFloat, SQInteger, bool, std::nullptr_t, Vector2 >)
|
|
.SquirrelFunc(_SC("_sub"), &SqDynArgFwd< SqDynArgSubFn< Vector2 >, SQFloat, SQInteger, bool, std::nullptr_t, Vector2 >)
|
|
.SquirrelFunc(_SC("_mul"), &SqDynArgFwd< SqDynArgMulFn< Vector2 >, SQFloat, SQInteger, bool, std::nullptr_t, Vector2 >)
|
|
.SquirrelFunc(_SC("_div"), &SqDynArgFwd< SqDynArgDivFn< Vector2 >, SQFloat, SQInteger, bool, std::nullptr_t, Vector2 >)
|
|
.SquirrelFunc(_SC("_modulo"), &SqDynArgFwd< SqDynArgModFn< Vector2 >, SQFloat, SQInteger, bool, std::nullptr_t, Vector2 >)
|
|
.Func< Vector2 (Vector2::*)(void) const >(_SC("_unm"), &Vector2::operator -)
|
|
// Properties
|
|
.Prop(_SC("Abs"), &Vector2::Abs)
|
|
// Member Methods
|
|
.Func(_SC("SetScalar"), &Vector2::SetScalar)
|
|
.Func(_SC("SetVector2"), &Vector2::SetVector2)
|
|
.Func(_SC("SetVector2Ex"), &Vector2::SetVector2Ex)
|
|
.Func(_SC("SetVector2i"), &Vector2::SetVector2i)
|
|
.FmtFunc(_SC("SetStr"), &Vector2::SetStr)
|
|
.Func(_SC("Clear"), &Vector2::Clear)
|
|
.FmtFunc(_SC("Format"), &Vector2::Format)
|
|
// Member Overloads
|
|
.Overload(_SC("Generate"), &Vector2::Generate)
|
|
.Overload(_SC("Generate"), &Vector2::GenerateB)
|
|
.Overload(_SC("Generate"), &Vector2::GenerateR)
|
|
// Static Functions
|
|
.StaticFunc(_SC("GetDelimiter"), &SqGetDelimiter< Vector2 >)
|
|
.StaticFunc(_SC("SetDelimiter"), &SqSetDelimiter< Vector2 >)
|
|
.StaticFmtFunc(_SC("FromStr"), &Vector2::Get)
|
|
.StaticFmtFunc(_SC("FromStrEx"), &Vector2::GetEx)
|
|
);
|
|
}
|
|
|
|
} // Namespace:: SqMod
|