From e7016b15259f8432e0a333a948498fb280d4d7a9 Mon Sep 17 00:00:00 2001 From: Mattes D Date: Fri, 9 Aug 2019 03:13:15 +0200 Subject: Removed coord-based API from cCuboid. (#4362) --- src/Bindings/ManualBindings.cpp | 134 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 134 insertions(+) (limited to 'src/Bindings/ManualBindings.cpp') diff --git a/src/Bindings/ManualBindings.cpp b/src/Bindings/ManualBindings.cpp index 90251a4b2..af4a301a0 100644 --- a/src/Bindings/ManualBindings.cpp +++ b/src/Bindings/ManualBindings.cpp @@ -3954,6 +3954,134 @@ static int tolua_cCompositeChat_UnderlineUrls(lua_State * tolua_S) +static int tolua_cCuboid_Assign(lua_State * tolua_S) +{ + cLuaState L(tolua_S); + + if (!L.CheckParamSelf("cCuboid")) + { + return 0; + } + + cCuboid * self = nullptr; + L.GetStackValue(1, self); + + // Check the old coord-based signature: + int x1, y1, z1, x2, y2, z2; + if (L.GetStackValues(2, x1, y1, z1, x2, y2, z2)) + { + LOGWARNING("cCuboid:Assign(x1, y1, z1, x2, y2, z2) is deprecated, use cCuboid:Assign(Vector3i, Vector3i) instead."); + L.LogStackTrace(); + self->Assign({x1, y1, z1}, {x2, y2, z2}); + return 0; + } + + // Try the (cCuboid) param version: + cCuboid * other = nullptr; + if (L.GetStackValue(2, other) && (other != nullptr)) + { + self->Assign(*other); + return 0; + } + + // Try the (Vector3i, Vector3i) param version: + Vector3i * pt1 = nullptr; + Vector3i * pt2 = nullptr; + if (L.GetStackValues(2, pt1, pt2) && (pt1 != nullptr) && (pt2 != nullptr)) + { + self->Assign(*pt1, *pt2); + return 0; + } + return L.ApiParamError("Invalid parameter, expected either a cCuboid or two Vector3i-s."); +} + + + + + +static int tolua_cCuboid_IsInside(lua_State * tolua_S) +{ + cLuaState L(tolua_S); + + if (!L.CheckParamSelf("cCuboid")) + { + return 0; + } + + cCuboid * self = nullptr; + L.GetStackValue(1, self); + + // Check the old coord-based signature: + int x, y, z; + if (L.GetStackValues(2, x, y, z)) + { + LOGWARNING("cCuboid:IsInside(x, y, z) is deprecated, use cCuboid:IsInside(Vector3d) instead."); + L.LogStackTrace(); + self->Move({x, y, z}); + return 0; + } + + // Try the (Vector3i) param version: + { + Vector3i * pt = nullptr; + if (L.GetStackValue(2, pt) && (pt != nullptr)) + { + L.Push(self->IsInside(*pt)); + return 1; + } + } + + // Try the (Vector3d) param version: + { + Vector3d * pt = nullptr; + if (L.GetStackValue(2, pt) && (pt != nullptr)) + { + L.Push(self->IsInside(*pt)); + return 1; + } + } + return L.ApiParamError("Invalid parameter #2, expected a Vector3i or a Vector3d."); +} + + + + + +static int tolua_cCuboid_Move(lua_State * tolua_S) +{ + cLuaState L(tolua_S); + + if (!L.CheckParamSelf("cCuboid")) + { + return 0; + } + + cCuboid * self = nullptr; + L.GetStackValue(1, self); + + // Check the old coord-based signature: + int x, y, z; + if (L.GetStackValues(2, x, y, z)) + { + LOGWARNING("cCuboid:Move(x, y, z) is deprecated, use cCuboid:Move(Vector3i) instead."); + L.LogStackTrace(); + self->Move({x, y, z}); + return 0; + } + + Vector3i * offset = nullptr; + if (!L.GetStackValue(2, offset) || (offset == nullptr)) + { + return L.ApiParamError("Invalid parameter #2, expected a Vector3i."); + } + self->Move(*offset); + return 0; +} + + + + + static int tolua_cEntity_IsSubmerged(lua_State * tolua_S) { // Check the params: @@ -4121,6 +4249,12 @@ void cManualBindings::Bind(lua_State * tolua_S) tolua_function(tolua_S, "sha1HexString", tolua_sha1HexString); tolua_endmodule(tolua_S); + tolua_beginmodule(tolua_S, "cCuboid"); + tolua_function(tolua_S, "Assign", tolua_cCuboid_Assign); + tolua_function(tolua_S, "IsInside", tolua_cCuboid_IsInside); + tolua_function(tolua_S, "Move", tolua_cCuboid_Move); + tolua_endmodule(tolua_S); + tolua_beginmodule(tolua_S, "cEntity"); tolua_constant(tolua_S, "INVALID_ID", cEntity::INVALID_ID); tolua_function(tolua_S, "IsSubmerged", tolua_cEntity_IsSubmerged); -- cgit v1.2.3