2017-01-19 18:25:19 -08:00
|
|
|
/* Copyright (C) 2017 Wildfire Games.
|
2010-01-29 13:13:18 -08:00
|
|
|
* This file is part of 0 A.D.
|
|
|
|
|
*
|
|
|
|
|
* 0 A.D. is free software: you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* 0 A.D. is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "precompiled.h"
|
|
|
|
|
|
|
|
|
|
#include "ICmpFootprint.h"
|
|
|
|
|
|
|
|
|
|
#include "simulation2/system/InterfaceScripted.h"
|
|
|
|
|
|
2010-05-01 02:48:39 -07:00
|
|
|
#include "simulation2/system/SimContext.h"
|
2010-04-29 16:36:05 -07:00
|
|
|
#include "maths/FixedVector3D.h"
|
|
|
|
|
|
2017-01-19 18:25:19 -08:00
|
|
|
JS::Value ICmpFootprint::GetShape_wrapper() const
|
2010-05-01 02:48:39 -07:00
|
|
|
{
|
|
|
|
|
EShape shape;
|
|
|
|
|
entity_pos_t size0, size1, height;
|
|
|
|
|
GetShape(shape, size0, size1, height);
|
|
|
|
|
|
|
|
|
|
JSContext* cx = GetSimContext().GetScriptInterface().GetContext();
|
2015-01-24 06:46:52 -08:00
|
|
|
JSAutoRequest rq(cx);
|
2010-05-01 02:48:39 -07:00
|
|
|
|
2016-09-02 09:28:17 -07:00
|
|
|
JS::RootedObject obj(cx, JS_NewPlainObject(cx));
|
2010-05-01 02:48:39 -07:00
|
|
|
if (!obj)
|
2015-01-24 06:46:52 -08:00
|
|
|
return JS::UndefinedValue();
|
2010-05-01 02:48:39 -07:00
|
|
|
|
|
|
|
|
if (shape == CIRCLE)
|
|
|
|
|
{
|
2014-03-28 13:26:32 -07:00
|
|
|
JS::RootedValue ptype(cx);
|
|
|
|
|
JS::RootedValue pradius(cx);
|
|
|
|
|
JS::RootedValue pheight(cx);
|
2014-07-14 12:52:35 -07:00
|
|
|
ScriptInterface::ToJSVal<std::string>(cx, &ptype, "circle");
|
|
|
|
|
ScriptInterface::ToJSVal(cx, &pradius, size0);
|
|
|
|
|
ScriptInterface::ToJSVal(cx, &pheight, height);
|
2015-01-24 06:46:52 -08:00
|
|
|
JS_SetProperty(cx, obj, "type", ptype);
|
|
|
|
|
JS_SetProperty(cx, obj, "radius", pradius);
|
|
|
|
|
JS_SetProperty(cx, obj, "height", pheight);
|
2010-05-01 02:48:39 -07:00
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2014-03-28 13:26:32 -07:00
|
|
|
JS::RootedValue ptype(cx);
|
|
|
|
|
JS::RootedValue pwidth(cx);
|
|
|
|
|
JS::RootedValue pdepth(cx);
|
|
|
|
|
JS::RootedValue pheight(cx);
|
2014-07-14 12:52:35 -07:00
|
|
|
ScriptInterface::ToJSVal<std::string>(cx, &ptype, "square");
|
|
|
|
|
ScriptInterface::ToJSVal(cx, &pwidth, size0);
|
|
|
|
|
ScriptInterface::ToJSVal(cx, &pdepth, size1);
|
|
|
|
|
ScriptInterface::ToJSVal(cx, &pheight, height);
|
2015-01-24 06:46:52 -08:00
|
|
|
JS_SetProperty(cx, obj, "type", ptype);
|
|
|
|
|
JS_SetProperty(cx, obj, "width", pwidth);
|
|
|
|
|
JS_SetProperty(cx, obj, "depth", pdepth);
|
|
|
|
|
JS_SetProperty(cx, obj, "height", pheight);
|
2010-05-01 02:48:39 -07:00
|
|
|
}
|
|
|
|
|
|
2015-01-24 06:46:52 -08:00
|
|
|
return JS::ObjectValue(*obj);
|
2010-05-01 02:48:39 -07:00
|
|
|
}
|
|
|
|
|
|
2010-01-29 13:13:18 -08:00
|
|
|
BEGIN_INTERFACE_WRAPPER(Footprint)
|
2017-01-19 18:25:19 -08:00
|
|
|
DEFINE_INTERFACE_METHOD_CONST_1("PickSpawnPoint", CFixedVector3D, ICmpFootprint, PickSpawnPoint, entity_id_t)
|
|
|
|
|
DEFINE_INTERFACE_METHOD_CONST_1("PickSpawnPointBothPass", CFixedVector3D, ICmpFootprint, PickSpawnPointBothPass, entity_id_t)
|
|
|
|
|
DEFINE_INTERFACE_METHOD_CONST_0("GetShape", JS::Value, ICmpFootprint, GetShape_wrapper)
|
2010-01-29 13:13:18 -08:00
|
|
|
END_INTERFACE_WRAPPER(Footprint)
|