2018-01-21 18:34:46 -08:00
|
|
|
/* Copyright (C) 2018 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 "ICmpObstruction.h"
|
|
|
|
|
|
|
|
|
|
#include "simulation2/system/InterfaceScripted.h"
|
|
|
|
|
|
2013-02-23 16:12:41 -08:00
|
|
|
#include "simulation2/system/SimContext.h"
|
|
|
|
|
|
2017-01-19 18:25:19 -08:00
|
|
|
std::string ICmpObstruction::CheckFoundation_wrapper(const std::string& className, bool onlyCenterPoint) const
|
2013-02-23 16:12:41 -08:00
|
|
|
{
|
2013-07-07 15:44:47 -07:00
|
|
|
EFoundationCheck check = CheckFoundation(className, onlyCenterPoint);
|
2013-02-23 16:12:41 -08:00
|
|
|
|
|
|
|
|
switch (check)
|
|
|
|
|
{
|
|
|
|
|
case FOUNDATION_CHECK_SUCCESS:
|
|
|
|
|
return "success";
|
|
|
|
|
case FOUNDATION_CHECK_FAIL_ERROR:
|
|
|
|
|
return "fail_error";
|
|
|
|
|
case FOUNDATION_CHECK_FAIL_NO_OBSTRUCTION:
|
|
|
|
|
return "fail_no_obstruction";
|
|
|
|
|
case FOUNDATION_CHECK_FAIL_OBSTRUCTS_FOUNDATION:
|
|
|
|
|
return "fail_obstructs_foundation";
|
|
|
|
|
case FOUNDATION_CHECK_FAIL_TERRAIN_CLASS:
|
|
|
|
|
return "fail_terrain_class";
|
|
|
|
|
default:
|
|
|
|
|
debug_warn(L"Unexpected result from CheckFoundation");
|
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-01-29 13:13:18 -08:00
|
|
|
BEGIN_INTERFACE_WRAPPER(Obstruction)
|
2017-01-19 18:25:19 -08:00
|
|
|
DEFINE_INTERFACE_METHOD_CONST_0("GetUnitRadius", entity_pos_t, ICmpObstruction, GetUnitRadius)
|
2018-01-21 18:34:46 -08:00
|
|
|
DEFINE_INTERFACE_METHOD_CONST_0("CheckShorePlacement", bool, ICmpObstruction, CheckShorePlacement)
|
2017-01-19 18:25:19 -08:00
|
|
|
DEFINE_INTERFACE_METHOD_CONST_2("CheckFoundation", std::string, ICmpObstruction, CheckFoundation_wrapper, std::string, bool)
|
|
|
|
|
DEFINE_INTERFACE_METHOD_CONST_0("CheckDuplicateFoundation", bool, ICmpObstruction, CheckDuplicateFoundation)
|
2018-03-26 08:18:53 -07:00
|
|
|
DEFINE_INTERFACE_METHOD_CONST_0("GetEntitiesBlockingConstruction", std::vector<entity_id_t>, ICmpObstruction, GetEntitiesBlockingConstruction)
|
|
|
|
|
DEFINE_INTERFACE_METHOD_CONST_0("GetEntitiesDeletedUponConstruction", std::vector<entity_id_t>, ICmpObstruction, GetEntitiesDeletedUponConstruction)
|
2011-02-10 08:06:28 -08:00
|
|
|
DEFINE_INTERFACE_METHOD_1("SetActive", void, ICmpObstruction, SetActive, bool)
|
2012-07-08 09:25:33 -07:00
|
|
|
DEFINE_INTERFACE_METHOD_3("SetDisableBlockMovementPathfinding", void, ICmpObstruction, SetDisableBlockMovementPathfinding, bool, bool, int32_t)
|
2017-01-19 18:25:19 -08:00
|
|
|
DEFINE_INTERFACE_METHOD_CONST_0("GetBlockMovementFlag", bool, ICmpObstruction, GetBlockMovementFlag)
|
2010-09-03 02:55:14 -07:00
|
|
|
DEFINE_INTERFACE_METHOD_1("SetControlGroup", void, ICmpObstruction, SetControlGroup, entity_id_t)
|
2017-01-19 18:25:19 -08:00
|
|
|
DEFINE_INTERFACE_METHOD_CONST_0("GetControlGroup", entity_id_t, ICmpObstruction, GetControlGroup)
|
2012-05-05 12:22:22 -07:00
|
|
|
DEFINE_INTERFACE_METHOD_1("SetControlGroup2", void, ICmpObstruction, SetControlGroup2, entity_id_t)
|
2017-01-19 18:25:19 -08:00
|
|
|
DEFINE_INTERFACE_METHOD_CONST_0("GetControlGroup2", entity_id_t, ICmpObstruction, GetControlGroup2)
|
2010-01-29 13:13:18 -08:00
|
|
|
END_INTERFACE_WRAPPER(Obstruction)
|