Added direct-native versions of the Shape2D API.

This commit is contained in:
Chronos Ouroboros 2019-10-19 04:41:57 -03:00
parent c3dc8ea837
commit f45ade151a
1 changed files with 35 additions and 15 deletions

View File

@ -81,10 +81,8 @@ DEFINE_ACTION_FUNCTION(DShape2D, SetTransform)
return 0; return 0;
} }
DEFINE_ACTION_FUNCTION(DShape2D, Clear) static void Shape2D_Clear(DShape2D* self, int which)
{ {
PARAM_SELF_PROLOGUE(DShape2D);
PARAM_INT(which);
if (which & C_Verts) if (which & C_Verts)
{ {
self->mVertices.Clear(); self->mVertices.Clear();
@ -92,37 +90,59 @@ DEFINE_ACTION_FUNCTION(DShape2D, Clear)
} }
if (which & C_Coords) self->mCoords.Clear(); if (which & C_Coords) self->mCoords.Clear();
if (which & C_Indices) self->mIndices.Clear(); if (which & C_Indices) self->mIndices.Clear();
}
DEFINE_ACTION_FUNCTION_NATIVE(DShape2D, Clear, Shape2D_Clear)
{
PARAM_SELF_PROLOGUE(DShape2D);
PARAM_INT(which);
Shape2D_Clear(self, which);
return 0; return 0;
} }
DEFINE_ACTION_FUNCTION(DShape2D, PushVertex) static void Shape2D_PushVertex(DShape2D* self, double x, double y)
{
self->mVertices.Push(DVector2(x, y));
self->dirty = true;
}
DEFINE_ACTION_FUNCTION_NATIVE(DShape2D, PushVertex, Shape2D_PushVertex)
{ {
PARAM_SELF_PROLOGUE(DShape2D); PARAM_SELF_PROLOGUE(DShape2D);
PARAM_FLOAT(x); PARAM_FLOAT(x);
PARAM_FLOAT(y); PARAM_FLOAT(y);
self->mVertices.Push(DVector2(x,y)); Shape2D_PushVertex(self, x, y);
self->dirty = true;
return 0; return 0;
} }
DEFINE_ACTION_FUNCTION(DShape2D, PushCoord) static void Shape2D_PushCoord(DShape2D* self, double u, double v)
{
self->mCoords.Push(DVector2(u, v));
}
DEFINE_ACTION_FUNCTION_NATIVE(DShape2D, PushCoord, Shape2D_PushCoord)
{ {
PARAM_SELF_PROLOGUE(DShape2D); PARAM_SELF_PROLOGUE(DShape2D);
PARAM_FLOAT(u); PARAM_FLOAT(u);
PARAM_FLOAT(v); PARAM_FLOAT(v);
self->mCoords.Push(DVector2(u,v)); Shape2D_PushCoord(self, u, v);
return 0; return 0;
} }
DEFINE_ACTION_FUNCTION(DShape2D, PushTriangle) static void Shape2D_PushTriangle(DShape2D* self, int a, int b, int c)
{
self->mIndices.Push(a);
self->mIndices.Push(b);
self->mIndices.Push(c);
}
DEFINE_ACTION_FUNCTION_NATIVE(DShape2D, PushTriangle, Shape2D_PushTriangle)
{ {
PARAM_SELF_PROLOGUE(DShape2D); PARAM_SELF_PROLOGUE(DShape2D);
PARAM_INT(a); PARAM_INT(a);
PARAM_INT(b); PARAM_INT(b);
PARAM_INT(c); PARAM_INT(c);
self->mIndices.Push(a); Shape2D_PushTriangle(self, a, b, c);
self->mIndices.Push(b);
self->mIndices.Push(c);
return 0; return 0;
} }