2010-01-03 13:39:39 +00:00
|
|
|
// Cyphesis Online RPG Server and AI Engine
|
|
|
|
|
// Copyright (C) 2009 Alistair Riddoch
|
|
|
|
|
//
|
|
|
|
|
// This program 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.
|
|
|
|
|
//
|
|
|
|
|
// This program 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 this program; if not, write to the Free Software Foundation,
|
|
|
|
|
// Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
|
|
// $Id$
|
|
|
|
|
|
2011-02-15 09:30:46 +00:00
|
|
|
#ifdef NDEBUG
|
|
|
|
|
#undef NDEBUG
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef DEBUG
|
|
|
|
|
#define DEBUG
|
|
|
|
|
#endif
|
|
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
#include "TestBase.h"
|
|
|
|
|
|
2010-01-03 13:39:39 +00:00
|
|
|
#include "server/WorldRouter.h"
|
|
|
|
|
|
2010-07-13 18:18:58 +01:00
|
|
|
#include "server/ArithmeticBuilder.h"
|
2010-03-22 16:59:58 +00:00
|
|
|
#include "server/EntityBuilder.h"
|
|
|
|
|
#include "server/SpawnEntity.h"
|
2010-01-03 13:39:39 +00:00
|
|
|
|
2010-03-22 16:59:58 +00:00
|
|
|
#include "rulesets/Domain.h"
|
|
|
|
|
#include "rulesets/World.h"
|
|
|
|
|
|
|
|
|
|
#include "common/const.h"
|
2010-01-03 13:39:39 +00:00
|
|
|
#include "common/globals.h"
|
|
|
|
|
#include "common/id.h"
|
2010-03-22 16:59:58 +00:00
|
|
|
#include "common/Inheritance.h"
|
|
|
|
|
#include "common/log.h"
|
|
|
|
|
#include "common/Monitors.h"
|
2011-10-31 12:47:56 +01:00
|
|
|
#include "common/SystemTime.h"
|
2010-01-03 21:38:49 +00:00
|
|
|
#include "common/Tick.h"
|
2010-03-22 16:59:58 +00:00
|
|
|
#include "common/Variable.h"
|
2010-01-03 13:39:39 +00:00
|
|
|
|
|
|
|
|
#include <Atlas/Objects/Anonymous.h>
|
|
|
|
|
|
2010-03-22 16:59:58 +00:00
|
|
|
#include <cstdio>
|
|
|
|
|
#include <cstdlib>
|
|
|
|
|
|
2010-01-03 13:39:39 +00:00
|
|
|
#include <cassert>
|
|
|
|
|
|
2010-03-22 16:59:58 +00:00
|
|
|
using Atlas::Message::MapType;
|
2010-01-03 13:39:39 +00:00
|
|
|
using Atlas::Objects::Entity::Anonymous;
|
2010-03-22 16:59:58 +00:00
|
|
|
using Atlas::Objects::Entity::RootEntity;
|
2010-01-03 21:38:49 +00:00
|
|
|
using Atlas::Objects::Operation::Tick;
|
|
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
static bool stub_deny_newid = false;
|
|
|
|
|
|
|
|
|
|
class WorldRoutertest : public Cyphesis::TestBase
|
2010-01-03 21:38:49 +00:00
|
|
|
{
|
2012-12-28 23:06:10 +00:00
|
|
|
WorldRouter * test_world;
|
2010-01-03 21:38:49 +00:00
|
|
|
public:
|
2012-12-28 23:06:10 +00:00
|
|
|
WorldRoutertest();
|
|
|
|
|
|
|
|
|
|
void setup();
|
|
|
|
|
void teardown();
|
|
|
|
|
|
|
|
|
|
void test_constructor();
|
|
|
|
|
void test_addNewEntity_unknown();
|
|
|
|
|
void test_addNewEntity_thing();
|
|
|
|
|
void test_addNewEntity_idfail();
|
|
|
|
|
void test_addEntity();
|
|
|
|
|
void test_getOperationFromQueue();
|
|
|
|
|
void test_addEntity_tick();
|
|
|
|
|
void test_addEntity_tick_get();
|
|
|
|
|
void test_spawnNewEntity_unknown();
|
|
|
|
|
void test_spawnNewEntity_thing();
|
|
|
|
|
void test_createSpawnPoint();
|
|
|
|
|
void test_delEntity();
|
|
|
|
|
void test_delEntity_world();
|
2010-01-03 21:38:49 +00:00
|
|
|
};
|
2010-01-03 13:39:39 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
WorldRoutertest::WorldRoutertest()
|
2010-01-03 13:39:39 +00:00
|
|
|
{
|
2012-12-28 23:06:10 +00:00
|
|
|
ADD_TEST(WorldRoutertest::test_constructor);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_addNewEntity_unknown);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_addNewEntity_thing);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_addNewEntity_idfail);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_addEntity);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_getOperationFromQueue);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_addEntity_tick);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_addEntity_tick_get);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_spawnNewEntity_unknown);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_spawnNewEntity_thing);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_createSpawnPoint);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_delEntity);
|
|
|
|
|
ADD_TEST(WorldRoutertest::test_delEntity_world);
|
|
|
|
|
}
|
2010-01-03 13:39:39 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::setup()
|
|
|
|
|
{
|
|
|
|
|
test_world = new WorldRouter(SystemTime());
|
|
|
|
|
}
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::teardown()
|
|
|
|
|
{
|
|
|
|
|
delete test_world;
|
2010-01-03 13:39:39 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
EntityBuilder::del();
|
|
|
|
|
}
|
2010-01-03 13:39:39 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_constructor()
|
|
|
|
|
{
|
|
|
|
|
}
|
2010-01-03 13:39:39 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_addNewEntity_unknown()
|
|
|
|
|
{
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2013-01-17 10:17:07 +00:00
|
|
|
LocatedEntity * ent1 = test_world->addNewEntity("__no_such_type__",
|
|
|
|
|
Anonymous());
|
2012-12-28 23:06:10 +00:00
|
|
|
assert(ent1 == 0);
|
|
|
|
|
}
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_addNewEntity_thing()
|
|
|
|
|
{
|
2013-01-17 10:17:07 +00:00
|
|
|
LocatedEntity * ent1 = test_world->addNewEntity("thing", Anonymous());
|
2012-12-28 23:06:10 +00:00
|
|
|
assert(ent1 != 0);
|
|
|
|
|
}
|
2010-01-03 21:38:49 +00:00
|
|
|
|
|
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_addNewEntity_idfail()
|
|
|
|
|
{
|
|
|
|
|
stub_deny_newid = true;
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2013-01-17 10:17:07 +00:00
|
|
|
LocatedEntity * ent1 = test_world->addNewEntity("thing", Anonymous());
|
2012-12-28 23:06:10 +00:00
|
|
|
assert(ent1 == 0);
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
stub_deny_newid = false;
|
|
|
|
|
}
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_addEntity()
|
|
|
|
|
{
|
|
|
|
|
std::string id;
|
|
|
|
|
long int_id = newId(id);
|
|
|
|
|
|
|
|
|
|
Entity * ent2 = new Entity(id, int_id);
|
|
|
|
|
assert(ent2 != 0);
|
|
|
|
|
ent2->m_location.m_loc = &test_world->m_gameWorld;
|
|
|
|
|
ent2->m_location.m_pos = Point3D(0,0,0);
|
|
|
|
|
test_world->addEntity(ent2);
|
|
|
|
|
}
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_getOperationFromQueue()
|
|
|
|
|
{
|
|
|
|
|
test_world->getOperationFromQueue();
|
|
|
|
|
}
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_addEntity_tick()
|
|
|
|
|
{
|
|
|
|
|
std::string id;
|
|
|
|
|
long int_id = newId(id);
|
|
|
|
|
|
|
|
|
|
Entity * ent2 = new Entity(id, int_id);
|
|
|
|
|
assert(ent2 != 0);
|
|
|
|
|
ent2->m_location.m_loc = &test_world->m_gameWorld;
|
|
|
|
|
ent2->m_location.m_pos = Point3D(0,0,0);
|
|
|
|
|
test_world->addEntity(ent2);
|
|
|
|
|
|
|
|
|
|
Tick tick;
|
|
|
|
|
tick->setFutureSeconds(0);
|
|
|
|
|
tick->setTo(ent2->getId());
|
|
|
|
|
test_world->message(tick, *ent2);
|
|
|
|
|
}
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_addEntity_tick_get()
|
|
|
|
|
{
|
|
|
|
|
std::string id;
|
|
|
|
|
long int_id = newId(id);
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
Entity * ent2 = new Entity(id, int_id);
|
|
|
|
|
assert(ent2 != 0);
|
|
|
|
|
ent2->m_location.m_loc = &test_world->m_gameWorld;
|
|
|
|
|
ent2->m_location.m_pos = Point3D(0,0,0);
|
|
|
|
|
test_world->addEntity(ent2);
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
Tick tick;
|
|
|
|
|
tick->setFutureSeconds(0);
|
|
|
|
|
tick->setTo(ent2->getId());
|
|
|
|
|
test_world->message(tick, *ent2);
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
test_world->getOperationFromQueue();
|
|
|
|
|
}
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_spawnNewEntity_unknown()
|
|
|
|
|
{
|
2013-01-17 10:17:07 +00:00
|
|
|
LocatedEntity * ent3 = test_world->spawnNewEntity("__no_spawn__",
|
|
|
|
|
"thing",
|
|
|
|
|
Anonymous());
|
2012-12-28 23:06:10 +00:00
|
|
|
assert(ent3 == 0);
|
|
|
|
|
}
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_spawnNewEntity_thing()
|
|
|
|
|
{
|
2013-01-17 10:17:07 +00:00
|
|
|
LocatedEntity * ent3 = test_world->spawnNewEntity("bob",
|
|
|
|
|
"thing",
|
|
|
|
|
Anonymous());
|
2012-12-28 23:06:10 +00:00
|
|
|
assert(ent3 == 0);
|
|
|
|
|
}
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_createSpawnPoint()
|
|
|
|
|
{
|
|
|
|
|
std::string id;
|
|
|
|
|
long int_id = newId(id);
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
Entity * ent2 = new Entity(id, int_id);
|
|
|
|
|
assert(ent2 != 0);
|
|
|
|
|
ent2->m_location.m_loc = &test_world->m_gameWorld;
|
|
|
|
|
ent2->m_location.m_pos = Point3D(0,0,0);
|
|
|
|
|
test_world->addEntity(ent2);
|
2010-01-03 21:38:49 +00:00
|
|
|
|
|
|
|
|
{
|
2012-12-28 23:06:10 +00:00
|
|
|
int ret;
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
Atlas::Message::MapType spawn_data;
|
|
|
|
|
ret = test_world->createSpawnPoint(spawn_data, ent2);
|
|
|
|
|
assert(ret == -1);
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
spawn_data["name"] = 1;
|
|
|
|
|
ret = test_world->createSpawnPoint(spawn_data, ent2);
|
|
|
|
|
assert(ret == -1);
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
spawn_data["name"] = "bob";
|
|
|
|
|
ret = test_world->createSpawnPoint(spawn_data, ent2);
|
|
|
|
|
assert(ret == 0);
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
ret = test_world->createSpawnPoint(spawn_data, ent2);
|
|
|
|
|
assert(ret == 0);
|
2010-03-22 16:59:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
2012-12-28 23:06:10 +00:00
|
|
|
Atlas::Message::ListType spawn_repr;
|
|
|
|
|
test_world->getSpawnList(spawn_repr);
|
|
|
|
|
assert(!spawn_repr.empty());
|
|
|
|
|
assert(spawn_repr.size() == 1u);
|
2010-03-22 16:59:58 +00:00
|
|
|
}
|
|
|
|
|
|
2013-01-17 10:17:07 +00:00
|
|
|
LocatedEntity * ent3 = test_world->spawnNewEntity("bob",
|
|
|
|
|
"permitted_non_existant",
|
|
|
|
|
Anonymous());
|
2012-12-28 23:06:10 +00:00
|
|
|
assert(ent3 == 0);
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
ent3 = test_world->spawnNewEntity("bob",
|
|
|
|
|
"thing",
|
|
|
|
|
Anonymous());
|
|
|
|
|
assert(ent3 != 0);
|
|
|
|
|
}
|
2010-03-22 16:59:58 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_delEntity()
|
|
|
|
|
{
|
|
|
|
|
std::string id;
|
|
|
|
|
long int_id = newId(id);
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
Entity * ent2 = new Entity(id, int_id);
|
|
|
|
|
assert(ent2 != 0);
|
|
|
|
|
ent2->m_location.m_loc = &test_world->m_gameWorld;
|
|
|
|
|
ent2->m_location.m_pos = Point3D(0,0,0);
|
|
|
|
|
test_world->addEntity(ent2);
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
test_world->delEntity(ent2);
|
|
|
|
|
test_world->delEntity(&test_world->m_gameWorld);
|
|
|
|
|
}
|
2010-01-03 21:38:49 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
void WorldRoutertest::test_delEntity_world()
|
|
|
|
|
{
|
|
|
|
|
test_world->delEntity(&test_world->m_gameWorld);
|
|
|
|
|
}
|
2010-01-03 13:39:39 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
int main()
|
|
|
|
|
{
|
|
|
|
|
WorldRoutertest t;
|
2012-12-28 11:31:43 +00:00
|
|
|
|
2012-12-28 23:06:10 +00:00
|
|
|
return t.run();
|
2010-01-03 13:39:39 +00:00
|
|
|
}
|
2010-03-22 16:59:58 +00:00
|
|
|
|
|
|
|
|
// Stubs
|
|
|
|
|
|
|
|
|
|
int timeoffset = 0;
|
|
|
|
|
|
|
|
|
|
namespace consts {
|
|
|
|
|
const char * rootWorldId = "0";
|
|
|
|
|
const long rootWorldIntId = 0L;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace Atlas { namespace Objects { namespace Operation {
|
|
|
|
|
int TICK_NO = -1;
|
|
|
|
|
}}}
|
|
|
|
|
|
2012-12-04 23:50:34 +00:00
|
|
|
World::World(const std::string & id, long intId) : Thing(id, intId)
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
World::~World()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void World::EatOperation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void World::LookOperation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void World::MoveOperation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void World::DeleteOperation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Thing::Thing(const std::string & id, long intId) :
|
2012-12-04 23:48:40 +00:00
|
|
|
Entity(id, intId)
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Thing::~Thing()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Thing::DeleteOperation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Thing::MoveOperation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Thing::SetOperation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Thing::LookOperation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Thing::CreateOperation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Thing::UpdateOperation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Entity::Entity(const std::string & id, long intId) :
|
2013-01-14 09:59:54 +00:00
|
|
|
LocatedEntity(id, intId), m_motion(0)
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Entity::~Entity()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::destroy()
|
|
|
|
|
{
|
|
|
|
|
destroyed.emit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Domain * Domain::m_instance = new Domain();
|
|
|
|
|
|
|
|
|
|
Domain::Domain() : m_refCount(0)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Domain::~Domain()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Domain * Entity::getMovementDomain()
|
|
|
|
|
{
|
|
|
|
|
return Domain::instance();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float Domain::constrainHeight(LocatedEntity * parent,
|
|
|
|
|
const Point3D & pos,
|
|
|
|
|
const std::string & mode)
|
|
|
|
|
{
|
|
|
|
|
return 0.f;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-16 00:20:36 +01:00
|
|
|
void Domain::tick(double t)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-22 16:59:58 +00:00
|
|
|
void Entity::ActuateOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::AppearanceOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::AttackOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::CombineOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::CreateOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::DeleteOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::DisappearanceOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::DivideOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::EatOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-06-30 01:06:14 -07:00
|
|
|
void Entity::GetOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::InfoOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-22 16:59:58 +00:00
|
|
|
void Entity::ImaginaryOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::LookOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::MoveOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::NourishOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::SetOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::SightOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::SoundOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::TalkOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::TickOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::TouchOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::UpdateOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::UseOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::WieldOperation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-04 20:39:35 +00:00
|
|
|
void Entity::externalOperation(const Operation & op, Link &)
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::operation(const Operation & op, OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::addToMessage(Atlas::Message::MapType & omap) const
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::addToEntity(const RootEntity & ent) const
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-28 00:28:25 +00:00
|
|
|
PropertyBase * Entity::setAttr(const std::string & name,
|
|
|
|
|
const Atlas::Message::Element & attr)
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
2011-02-28 00:28:25 +00:00
|
|
|
return 0;
|
2010-03-22 16:59:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const PropertyBase * Entity::getProperty(const std::string & name) const
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 10:17:07 +00:00
|
|
|
PropertyBase * Entity::modProperty(const std::string & name)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PropertyBase * Entity::setProperty(const std::string & name,
|
|
|
|
|
PropertyBase * prop)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::installDelegate(int class_no, const std::string & delegate)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::sendWorld(const Operation & op)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-22 16:59:58 +00:00
|
|
|
void Entity::onContainered()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Entity::onUpdated()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LocatedEntity::LocatedEntity(const std::string & id, long intId) :
|
|
|
|
|
Router(id, intId),
|
|
|
|
|
m_refCount(0), m_seq(0),
|
2013-01-14 09:59:54 +00:00
|
|
|
m_script(0), m_type(0), m_flags(0), m_contains(0)
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LocatedEntity::~LocatedEntity()
|
|
|
|
|
{
|
2012-12-29 01:57:28 +00:00
|
|
|
// Necessary to avoid memory leaks
|
|
|
|
|
if (m_location.m_loc != 0) {
|
|
|
|
|
m_location.m_loc->decRef();
|
|
|
|
|
}
|
|
|
|
|
delete m_contains;
|
2010-03-22 16:59:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LocatedEntity::makeContainer()
|
|
|
|
|
{
|
|
|
|
|
if (m_contains == 0) {
|
|
|
|
|
m_contains = new LocatedEntitySet;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool LocatedEntity::hasAttr(const std::string & name) const
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-29 17:36:26 +01:00
|
|
|
int LocatedEntity::getAttr(const std::string & name,
|
|
|
|
|
Atlas::Message::Element & attr) const
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
2011-09-29 17:36:26 +01:00
|
|
|
return -1;
|
2010-03-22 16:59:58 +00:00
|
|
|
}
|
|
|
|
|
|
2011-09-29 17:36:26 +01:00
|
|
|
int LocatedEntity::getAttrType(const std::string & name,
|
|
|
|
|
Atlas::Message::Element & attr,
|
|
|
|
|
int type) const
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
2011-09-29 17:36:26 +01:00
|
|
|
return -1;
|
2010-03-22 16:59:58 +00:00
|
|
|
}
|
|
|
|
|
|
2011-02-28 00:28:25 +00:00
|
|
|
PropertyBase * LocatedEntity::setAttr(const std::string & name,
|
|
|
|
|
const Atlas::Message::Element & attr)
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
2011-02-28 00:28:25 +00:00
|
|
|
return 0;
|
2010-03-22 16:59:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const PropertyBase * LocatedEntity::getProperty(const std::string & name) const
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 10:17:07 +00:00
|
|
|
PropertyBase * LocatedEntity::modProperty(const std::string & name)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PropertyBase * LocatedEntity::setProperty(const std::string & name,
|
|
|
|
|
PropertyBase * prop)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LocatedEntity::installDelegate(int, const std::string &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LocatedEntity::destroy()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Domain * LocatedEntity::getMovementDomain()
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LocatedEntity::sendWorld(const Operation & op)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-22 16:59:58 +00:00
|
|
|
void LocatedEntity::onContainered()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LocatedEntity::onUpdated()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-16 05:14:35 +01:00
|
|
|
Location::Location() : m_loc(0)
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Router::Router(const std::string & id, long intId) : m_id(id),
|
|
|
|
|
m_intId(intId)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Router::~Router()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Router::addToMessage(Atlas::Message::MapType & omap) const
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Router::addToEntity(const RootEntity & ent) const
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
long integerId(const std::string & id)
|
|
|
|
|
{
|
|
|
|
|
long intId = strtol(id.c_str(), 0, 10);
|
|
|
|
|
if (intId == 0 && id != "0") {
|
|
|
|
|
intId = -1L;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return intId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void log(LogLevel lvl, const std::string & msg)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline float sqr(float x)
|
|
|
|
|
{
|
|
|
|
|
return x * x;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float squareDistance(const Point3D & u, const Point3D & v)
|
|
|
|
|
{
|
|
|
|
|
return (sqr(u.x() - v.x()) + sqr(u.y() - v.y()) + sqr(u.z() - v.z()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool distanceFromAncestor(const Location & self,
|
|
|
|
|
const Location & other, Point3D & c)
|
|
|
|
|
{
|
|
|
|
|
if (&self == &other) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (other.m_loc == NULL) {
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (other.orientation().isValid()) {
|
|
|
|
|
c = c.toParentCoords(other.m_pos, other.orientation());
|
|
|
|
|
} else {
|
|
|
|
|
static const Quaternion identity(1, 0, 0, 0);
|
|
|
|
|
c = c.toParentCoords(other.m_pos, identity);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return distanceFromAncestor(self, other.m_loc->m_location, c);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool distanceToAncestor(const Location & self,
|
|
|
|
|
const Location & other, Point3D & c)
|
|
|
|
|
{
|
|
|
|
|
c.setToOrigin();
|
|
|
|
|
if (distanceFromAncestor(self, other, c)) {
|
|
|
|
|
return true;
|
|
|
|
|
} else if ((self.m_loc != 0) &&
|
|
|
|
|
distanceToAncestor(self.m_loc->m_location, other, c)) {
|
|
|
|
|
if (self.orientation().isValid()) {
|
|
|
|
|
c = c.toLocalCoords(self.m_pos, self.orientation());
|
|
|
|
|
} else {
|
|
|
|
|
static const Quaternion identity(1, 0, 0, 0);
|
|
|
|
|
c = c.toLocalCoords(self.m_pos, identity);
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
log(ERROR, "Broken entity hierarchy doing distance calculation");
|
|
|
|
|
if (self.m_loc != 0) {
|
|
|
|
|
std::cerr << "Self(" << self.m_loc->getId() << "," << self.m_loc << ")"
|
|
|
|
|
<< std::endl << std::flush;
|
|
|
|
|
}
|
|
|
|
|
if (other.m_loc != 0) {
|
|
|
|
|
std::cerr << "Other(" << other.m_loc->getId() << "," << other.m_loc << ")"
|
|
|
|
|
<< std::endl << std::flush;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
float sqrMag(const Point3D & p)
|
|
|
|
|
{
|
|
|
|
|
return p.x() * p.x() + p.y() * p.y() + p.z() * p.z();
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-31 11:06:51 +00:00
|
|
|
float squareDistance(const Location & self, const Location & other)
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
Point3D dist;
|
|
|
|
|
distanceToAncestor(self, other, dist);
|
|
|
|
|
return sqrMag(dist);
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-29 01:57:28 +00:00
|
|
|
static long idGenerator = 2;
|
2010-03-22 16:59:58 +00:00
|
|
|
|
|
|
|
|
long newId(std::string & id)
|
|
|
|
|
{
|
|
|
|
|
if (stub_deny_newid) {
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
static char buf[32];
|
|
|
|
|
long new_id = ++idGenerator;
|
|
|
|
|
sprintf(buf, "%ld", new_id);
|
|
|
|
|
id = buf;
|
|
|
|
|
assert(!id.empty());
|
|
|
|
|
return new_id;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 10:17:07 +00:00
|
|
|
BaseWorld::BaseWorld(LocatedEntity & gw) : m_gameWorld(gw)
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BaseWorld::~BaseWorld()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 10:17:07 +00:00
|
|
|
LocatedEntity * BaseWorld::getEntity(const std::string & id) const
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
long intId = integerId(id);
|
|
|
|
|
|
|
|
|
|
EntityDict::const_iterator I = m_eobjects.find(intId);
|
|
|
|
|
if (I != m_eobjects.end()) {
|
|
|
|
|
assert(I->second != 0);
|
|
|
|
|
return I->second;
|
|
|
|
|
} else {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 10:17:07 +00:00
|
|
|
LocatedEntity * BaseWorld::getEntity(long id) const
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
EntityDict::const_iterator I = m_eobjects.find(id);
|
|
|
|
|
if (I != m_eobjects.end()) {
|
|
|
|
|
assert(I->second != 0);
|
|
|
|
|
return I->second;
|
|
|
|
|
} else {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Inheritance * Inheritance::m_instance = NULL;
|
|
|
|
|
|
2012-09-18 08:49:50 +01:00
|
|
|
Inheritance::Inheritance() : noClass(0)
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Inheritance & Inheritance::instance()
|
|
|
|
|
{
|
|
|
|
|
if (m_instance == NULL) {
|
|
|
|
|
m_instance = new Inheritance();
|
|
|
|
|
}
|
|
|
|
|
return *m_instance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const TypeNode * Inheritance::getType(const std::string & parent)
|
|
|
|
|
{
|
|
|
|
|
TypeNodeDict::const_iterator I = atlasObjects.find(parent);
|
|
|
|
|
if (I == atlasObjects.end()) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
return I->second;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VariableBase::~VariableBase()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
Variable<T>::Variable(const T & variable) : m_variable(variable)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
Variable<T>::~Variable()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
|
void Variable<T>::send(std::ostream & o)
|
|
|
|
|
{
|
|
|
|
|
o << m_variable;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template class Variable<int>;
|
|
|
|
|
|
|
|
|
|
Monitors * Monitors::m_instance = NULL;
|
|
|
|
|
|
|
|
|
|
Monitors::Monitors()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Monitors::~Monitors()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Monitors * Monitors::instance()
|
|
|
|
|
{
|
|
|
|
|
if (m_instance == NULL) {
|
|
|
|
|
m_instance = new Monitors();
|
|
|
|
|
}
|
|
|
|
|
return m_instance;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Monitors::watch(const::std::string & name, VariableBase * monitor)
|
|
|
|
|
{
|
2012-12-28 11:31:43 +00:00
|
|
|
delete monitor;
|
2010-03-22 16:59:58 +00:00
|
|
|
}
|
|
|
|
|
|
2010-07-13 18:18:58 +01:00
|
|
|
ArithmeticBuilder * ArithmeticBuilder::m_instance = 0;
|
|
|
|
|
|
|
|
|
|
ArithmeticBuilder * ArithmeticBuilder::instance()
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ArithmeticScript * ArithmeticBuilder::newArithmetic(const std::string &,
|
2013-01-17 10:17:07 +00:00
|
|
|
LocatedEntity *)
|
2010-07-13 18:18:58 +01:00
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-22 16:59:58 +00:00
|
|
|
EntityBuilder * EntityBuilder::m_instance = NULL;
|
|
|
|
|
|
2011-09-21 12:45:18 +01:00
|
|
|
EntityBuilder::EntityBuilder()
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
EntityBuilder::~EntityBuilder()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 10:17:07 +00:00
|
|
|
LocatedEntity * EntityBuilder::newEntity(const std::string & id, long intId,
|
|
|
|
|
const std::string & type,
|
|
|
|
|
const RootEntity & attributes,
|
|
|
|
|
const BaseWorld & world) const
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
if (type == "thing") {
|
|
|
|
|
Entity * e = new Entity(id, intId);
|
2011-09-21 12:45:18 +01:00
|
|
|
e->m_location.m_loc = &world.m_gameWorld;
|
2010-03-22 16:59:58 +00:00
|
|
|
e->m_location.m_pos = Point3D(0,0,0);
|
|
|
|
|
return e;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-02 23:42:24 +00:00
|
|
|
Task * EntityBuilder::newTask(const std::string & name, LocatedEntity & owner) const
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Task * EntityBuilder::activateTask(const std::string & tool,
|
|
|
|
|
const std::string & op,
|
2011-12-06 10:07:25 +00:00
|
|
|
LocatedEntity * target,
|
2011-12-02 23:42:24 +00:00
|
|
|
LocatedEntity & owner) const
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 10:17:07 +00:00
|
|
|
SpawnEntity::SpawnEntity(LocatedEntity *)
|
2010-03-22 16:59:58 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-12-27 23:02:04 +00:00
|
|
|
int SpawnEntity::setup(const MapType &)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-22 16:59:58 +00:00
|
|
|
int SpawnEntity::spawnEntity(const std::string & type,
|
|
|
|
|
const RootEntity & dsc)
|
|
|
|
|
{
|
|
|
|
|
if (type == "thing" || type == "permitted_non_existant") {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-17 10:17:07 +00:00
|
|
|
int SpawnEntity::populateEntity(LocatedEntity * ent,
|
2010-03-22 16:59:58 +00:00
|
|
|
const RootEntity & dsc,
|
|
|
|
|
OpVector & res)
|
|
|
|
|
{
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int SpawnEntity::addToMessage(MapType & msg) const
|
|
|
|
|
{
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Spawn::~Spawn()
|
|
|
|
|
{
|
|
|
|
|
}
|