2010-03-31 01:17:26 +01:00
|
|
|
// Cyphesis Online RPG Server and AI Engine
|
|
|
|
|
// Copyright (C) 2010 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
|
|
|
|
|
|
|
|
|
|
|
2011-02-15 09:30:46 +00:00
|
|
|
#ifdef NDEBUG
|
|
|
|
|
#undef NDEBUG
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef DEBUG
|
|
|
|
|
#define DEBUG
|
|
|
|
|
#endif
|
|
|
|
|
|
2010-03-31 01:17:26 +01:00
|
|
|
#include "EntityExerciser.h"
|
|
|
|
|
|
|
|
|
|
#include "common/OperationRouter.h"
|
|
|
|
|
#include "common/TypeNode.h"
|
|
|
|
|
#include "common/Property.h"
|
|
|
|
|
|
|
|
|
|
#include "common/Add.h"
|
|
|
|
|
#include "common/Burn.h"
|
|
|
|
|
#include "common/Connect.h"
|
|
|
|
|
#include "common/Eat.h"
|
|
|
|
|
#include "common/Monitor.h"
|
|
|
|
|
#include "common/Nourish.h"
|
|
|
|
|
#include "common/Setup.h"
|
|
|
|
|
#include "common/Tick.h"
|
|
|
|
|
#include "common/Unseen.h"
|
|
|
|
|
#include "common/Update.h"
|
|
|
|
|
|
|
|
|
|
#include <Atlas/Objects/Operation.h>
|
|
|
|
|
#include <Atlas/Objects/Anonymous.h>
|
|
|
|
|
|
|
|
|
|
#include <set>
|
|
|
|
|
|
|
|
|
|
#include <cassert>
|
|
|
|
|
|
2012-12-04 20:39:35 +00:00
|
|
|
void LocatedEntityTest::externalOperation(const Operation & op, Link &)
|
2012-11-14 00:12:02 +00:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void LocatedEntityTest::operation(const Operation &, OpVector &)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-24 22:52:05 +00:00
|
|
|
void LocatedEntityTest::destroy()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-31 01:23:26 +01:00
|
|
|
EntityExerciser::EntityExerciser(LocatedEntity & e) : m_ent(e)
|
|
|
|
|
{
|
|
|
|
|
if (e.getIntId() == 0) {
|
|
|
|
|
e.makeContainer();
|
|
|
|
|
assert(e.m_contains != 0);
|
|
|
|
|
} else {
|
|
|
|
|
e.m_location.m_loc = new LocatedEntityTest("0", 0);
|
|
|
|
|
e.m_location.m_loc->makeContainer();
|
|
|
|
|
assert(e.m_location.m_loc->m_contains != 0);
|
|
|
|
|
e.m_location.m_loc->m_contains->insert(&e);
|
|
|
|
|
}
|
|
|
|
|
if (e.getType() == 0) {
|
2011-09-16 18:30:22 +01:00
|
|
|
TypeNode * test_type = new TypeNode("test_type");
|
2011-09-16 16:52:45 +01:00
|
|
|
test_type->addProperty("test_default", new SoftProperty);
|
2010-03-31 01:23:26 +01:00
|
|
|
e.setType(test_type);
|
|
|
|
|
}
|
|
|
|
|
attr_types.insert(Atlas::Message::Element::TYPE_INT);
|
|
|
|
|
attr_types.insert(Atlas::Message::Element::TYPE_FLOAT);
|
|
|
|
|
attr_types.insert(Atlas::Message::Element::TYPE_STRING);
|
|
|
|
|
attr_types.insert(Atlas::Message::Element::TYPE_MAP);
|
|
|
|
|
attr_types.insert(Atlas::Message::Element::TYPE_LIST);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
EntityExerciser::~EntityExerciser()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EntityExerciser::dispatchOp(const Atlas::Objects::Operation::RootOperation&op)
|
|
|
|
|
{
|
|
|
|
|
OpVector ov1;
|
|
|
|
|
m_ent.operation(op, ov1);
|
|
|
|
|
flushOperations(ov1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-03-31 01:17:26 +01:00
|
|
|
bool EntityExerciser::checkAttributes(const std::set<std::string> & attr_names)
|
|
|
|
|
{
|
|
|
|
|
Atlas::Message::Element null;
|
|
|
|
|
bool res = true;
|
|
|
|
|
std::set<std::string>::const_iterator I = attr_names.begin();
|
|
|
|
|
std::set<std::string>::const_iterator Iend = attr_names.end();
|
|
|
|
|
for (; I != Iend; ++I) {
|
2011-09-29 17:36:26 +01:00
|
|
|
if (this->m_ent.getAttr(*I, null) != 0) {
|
2010-03-31 01:17:26 +01:00
|
|
|
std::cerr << "Entity does not have \"" << *I << "\" attribute."
|
|
|
|
|
<< std::endl << std::flush;
|
|
|
|
|
res = false;
|
|
|
|
|
}
|
|
|
|
|
if (this->m_ent.getProperty(*I) == NULL) {
|
|
|
|
|
std::cerr << "Entity does not have \"" << *I << "\" property."
|
|
|
|
|
<< std::endl << std::flush;
|
|
|
|
|
res = false;
|
|
|
|
|
}
|
|
|
|
|
std::set<int>::const_iterator J = attr_types.begin();
|
|
|
|
|
std::set<int>::const_iterator Jend = attr_types.end();
|
|
|
|
|
for (; J != Jend; ++J) {
|
|
|
|
|
this->m_ent.getAttrType(*I, null, *J);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool EntityExerciser::checkProperties(const std::set<std::string> & prop_names)
|
|
|
|
|
{
|
|
|
|
|
std::set<std::string>::const_iterator I = prop_names.begin();
|
|
|
|
|
std::set<std::string>::const_iterator Iend = prop_names.end();
|
|
|
|
|
for (; I != Iend; ++I) {
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EntityExerciser::addAllOperations(std::set<std::string> & ops)
|
|
|
|
|
{
|
|
|
|
|
ops.insert("login");
|
|
|
|
|
ops.insert("logout");
|
|
|
|
|
ops.insert("action");
|
|
|
|
|
ops.insert("chop");
|
|
|
|
|
ops.insert("combine");
|
|
|
|
|
ops.insert("create");
|
|
|
|
|
ops.insert("cut");
|
|
|
|
|
ops.insert("delete");
|
|
|
|
|
ops.insert("divide");
|
|
|
|
|
ops.insert("eat");
|
|
|
|
|
ops.insert("burn");
|
|
|
|
|
ops.insert("get");
|
|
|
|
|
ops.insert("imaginary");
|
|
|
|
|
ops.insert("info");
|
|
|
|
|
ops.insert("move");
|
|
|
|
|
ops.insert("nourish");
|
|
|
|
|
ops.insert("set");
|
|
|
|
|
ops.insert("sight");
|
|
|
|
|
ops.insert("sound");
|
|
|
|
|
ops.insert("talk");
|
|
|
|
|
ops.insert("touch");
|
|
|
|
|
ops.insert("tick");
|
|
|
|
|
ops.insert("look");
|
|
|
|
|
ops.insert("setup");
|
|
|
|
|
ops.insert("appearance");
|
|
|
|
|
ops.insert("disappearance");
|
|
|
|
|
ops.insert("use");
|
|
|
|
|
ops.insert("wield");
|
|
|
|
|
ops.insert("error");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EntityExerciser::runOperations()
|
|
|
|
|
{
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Login op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Logout op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Combine op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Create op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Delete op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Divide op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Eat op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Get op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Imaginary op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Info op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Move op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Nourish op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Set op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Sight op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Sound op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Talk op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Touch op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Tick op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Look op;
|
|
|
|
|
op->setFrom(m_ent.getId());
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Setup op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Appearance op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Disappearance op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Use op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Wield op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::Error op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Operation::RootOperation op;
|
|
|
|
|
dispatchOp(op);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EntityExerciser::runConversions()
|
|
|
|
|
{
|
|
|
|
|
{
|
|
|
|
|
Atlas::Message::MapType data;
|
|
|
|
|
|
|
|
|
|
assert(data.empty());
|
|
|
|
|
m_ent.addToMessage(data);
|
|
|
|
|
assert(!data.empty());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
Atlas::Objects::Entity::Anonymous data;
|
|
|
|
|
|
|
|
|
|
assert(data->isDefaultId());
|
|
|
|
|
m_ent.addToEntity(data);
|
|
|
|
|
assert(!data->isDefaultId());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EntityExerciser::flushOperations(OpVector & ops)
|
|
|
|
|
{
|
|
|
|
|
ops.clear();
|
|
|
|
|
}
|
2011-09-16 16:52:45 +01:00
|
|
|
|
|
|
|
|
// stubs
|
|
|
|
|
|
|
|
|
|
void TypeNode::addProperty(const std::string & name,
|
|
|
|
|
PropertyBase * p)
|
|
|
|
|
{
|
|
|
|
|
m_defaults[name] = p;
|
|
|
|
|
}
|