// 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 #ifdef NDEBUG #undef NDEBUG #endif #ifndef DEBUG #define DEBUG #endif #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 #include #include #include void LocatedEntityTest::externalOperation(const Operation & op, Link &) { } void LocatedEntityTest::operation(const Operation &, OpVector &) { } void LocatedEntityTest::destroy() { } 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) { TypeNode * test_type = new TypeNode("test_type"); test_type->addProperty("test_default", new SoftProperty); 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); } bool EntityExerciser::checkAttributes(const std::set & attr_names) { Atlas::Message::Element null; bool res = true; std::set::const_iterator I = attr_names.begin(); std::set::const_iterator Iend = attr_names.end(); for (; I != Iend; ++I) { if (this->m_ent.getAttr(*I, null) != 0) { 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::const_iterator J = attr_types.begin(); std::set::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 & prop_names) { std::set::const_iterator I = prop_names.begin(); std::set::const_iterator Iend = prop_names.end(); for (; I != Iend; ++I) { } return true; } void EntityExerciser::addAllOperations(std::set & 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(); } // stubs void TypeNode::addProperty(const std::string & name, PropertyBase * p) { m_defaults[name] = p; }