1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
|
// Cyphesis Online RPG Server and AI Engine
// Copyright (C) 2000-2005 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: Entity.cpp,v 1.154 2008-03-26 01:34:16 alriddoch Exp $
#include "Entity.h"
#include "Script.h"
#include "common/log.h"
#include "common/debug.h"
#include "common/op_switch.h"
#include "common/TypeNode.h"
#include "common/Property.h"
#include "common/PropertyManager.h"
#include "common/Actuate.h"
#include "common/Attack.h"
#include "common/Eat.h"
#include "common/Nourish.h"
#include "common/Setup.h"
#include "common/Tick.h"
#include "common/Update.h"
#include <wfmath/atlasconv.h>
#include <Atlas/Objects/Operation.h>
#include <Atlas/Objects/Anonymous.h>
#include <sigc++/functors/mem_fun.h>
#include <cassert>
using Atlas::Message::Element;
using Atlas::Message::MapType;
using Atlas::Message::ListType;
using Atlas::Objects::Root;
using Atlas::Objects::Operation::Sight;
using Atlas::Objects::Entity::RootEntity;
using Atlas::Objects::Entity::Anonymous;
using Atlas::Objects::smart_dynamic_cast;
static const bool debug_flag = false;
/// \brief Entity constructor
Entity::Entity(const std::string & id, long intId) :
Identified(id, intId),
LocatedEntity(id, intId), m_destroyed(false), m_motion(0),
m_perceptive(false), m_update_flags(0)
{
SignalProperty<BBox> * sp = new SignalProperty<BBox>(m_location.m_bBox, a_bbox);
sp->modified.connect(sigc::mem_fun(&m_location, &Location::modifyBBox));
m_properties["bbox"] = sp;
}
Entity::~Entity()
{
}
void Entity::setAttr(const std::string & name, const Element & attr)
{
PropertyDict::const_iterator I = m_properties.find(name);
if (I != m_properties.end()) {
I->second->set(attr);
m_update_flags |= I->second->flags();
return;
}
PropertyBase * prop = PropertyManager::instance()->addProperty(this, name);
if (prop == 0) {
prop = new SoftProperty(attr);
} else {
prop->set(attr);
}
m_properties[name] = prop;
m_update_flags |= prop->flags();
return;
}
/// \brief Set the property object for a given attribute
///
/// @param name name of the attribute for which the property is given
/// @param prop the property object to be used
void Entity::setProperty(const std::string & name, PropertyBase * prop)
{
m_properties[name] = prop;
}
/// \brief Copy attributes into an Atlas element
///
/// @param omap Atlas map element this entity should be copied into
void Entity::addToMessage(MapType & omap) const
{
// We need to have a list of keys to pull from attributes.
PropertyDict::const_iterator J = m_properties.begin();
PropertyDict::const_iterator Jend = m_properties.end();
for (; J != Jend; ++J) {
J->second->add(J->first, omap);
}
omap["stamp"] = (double)m_seq;
omap["parents"] = ListType(1, m_type);
m_location.addToMessage(omap);
omap["objtype"] = "obj";
}
/// \brief Copy attributes into an Atlas entity
///
/// @param ent Atlas entity this entity should be copied into
void Entity::addToEntity(const RootEntity & ent) const
{
// We need to have a list of keys to pull from attributes.
PropertyDict::const_iterator J = m_properties.begin();
PropertyDict::const_iterator Jend = m_properties.end();
for (; J != Jend; ++J) {
J->second->add(J->first, ent);
}
ent->setStamp(m_seq);
ent->setParents(std::list<std::string>(1, m_type->name()));
m_location.addToEntity(ent);
ent->setObjtype("obj");
}
/// \brief Install a handler function for an operation
///
/// @param class_no The class number of the operation to be handled
/// @param handler A pointer to the function to be wrapped
void Entity::installHandler(int class_no, Handler handler)
{
m_operationHandlers.insert(std::make_pair(class_no, handler));
}
/// \brief Destroy this entity
///
/// Do the jobs required to remove this entity from the world. Handles
/// removing from the containership tree.
void Entity::destroy()
{
assert(m_location.m_loc != 0);
assert(m_location.m_loc->m_contains != 0);
LocatedEntitySet & loc_contains = *m_location.m_loc->m_contains;
if (m_contains != 0) {
LocatedEntitySet::const_iterator Iend = m_contains->end();
for (LocatedEntitySet::const_iterator I = m_contains->begin(); I != Iend; ++I) {
Location & child = (*I)->m_location;
// FIXME take account of orientation
// FIXME velocity and orientation need to be adjusted
// Remove the reference to ourself.
decRef();
child.m_loc = m_location.m_loc;
m_location.m_loc->incRef();
if (m_location.orientation().isValid()) {
child.m_pos = child.m_pos.toParentCoords(m_location.pos(),
m_location.orientation());
child.m_velocity.rotate(m_location.orientation());
child.m_orientation *= m_location.orientation();
} else {
static const Quaternion identity(1, 0, 0, 0);
child.m_pos = child.m_pos.toParentCoords(m_location.pos(),
identity);
}
loc_contains.insert(*I);
}
}
loc_contains.erase(this);
// We don't call decRef() on our parent, because we may not get deleted
// yet, and we need to keep a reference to our parent in case there
// are broadcast ops left that we have not yet sent.
if (loc_contains.empty()) {
Entity * loc = dynamic_cast<Entity *>(m_location.m_loc);
loc->m_update_flags |= a_cont;
loc->updated.emit();
}
m_destroyed = true;
destroyed.emit();
}
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 &)
{
}
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::SetupOperation(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::WieldOperation(const Operation &, OpVector &)
{
}
/// \brief Process an operation from an external source, from this Entity
///
/// The ownership of the operation passed in at this point is handed
/// over to the entity. The calling code must not modify the operation
/// after passing it to externalOperation, or expect the attributes
/// of the operaration to remain the same.
/// @param op The operation to be processed.
void Entity::externalOperation(const Operation & op)
{
OpVector res;
operation(op, res);
OpVector::const_iterator Iend = res.end();
for (OpVector::const_iterator I = res.begin(); I != Iend; ++I) {
if (!op->isDefaultSerialno()) {
(*I)->setRefno(op->getSerialno());
}
sendWorld(*I);
}
}
void Entity::operation(const Operation & op, OpVector & res)
{
if (m_script->operation(op->getParents().front(), op, res) != 0) {
return;
}
HandlerMap::const_iterator I = m_operationHandlers.find(op->getClassNo());
if (I != m_operationHandlers.end()) {
debug(std::cout << "Found handler for " << op->getParents().front()
<< " operations" << std::endl << std::flush;);
I->second(this, op, res);
}
return callOperation(op, res);
}
/// \brief Find and call the handler for an operation
///
/// @param op The operation to be processed.
/// @param res The result of the operation is returned here.
void Entity::callOperation(const Operation & op, OpVector & res)
{
const OpNo op_no = op->getClassNo();
OP_SWITCH(op, op_no, res,)
}
void Entity::onContainered()
{
containered.emit();
containered.clear();
}
|