From 4d84c4ffd2c4f25a67b2f094baf6ac81c68ebb07 Mon Sep 17 00:00:00 2001 From: Thorbjørn Lindeijer Date: Fri, 16 Mar 2012 23:20:38 +0100 Subject: Renamed Thing to Entity In preparation for using an entity/component system for the entities in the game world, this name will be more recognizable and easier to talk about. Reviewed-by: Yohann Ferreira --- gameserver.cbp | 4 +- src/CMakeLists.txt | 4 +- src/account-server/serverhandler.cpp | 8 +-- src/common/manaserv_protocol.h | 6 +- src/game-server/accountconnection.cpp | 14 ++-- src/game-server/actor.cpp | 2 +- src/game-server/actor.h | 8 +-- src/game-server/being.cpp | 2 +- src/game-server/being.h | 2 +- src/game-server/entity.cpp | 68 +++++++++++++++++++ src/game-server/entity.h | 120 ++++++++++++++++++++++++++++++++++ src/game-server/eventlistener.h | 6 +- src/game-server/mapcomposite.cpp | 26 ++++---- src/game-server/mapcomposite.h | 12 ++-- src/game-server/mapreader.h | 2 - src/game-server/monster.cpp | 6 +- src/game-server/monster.h | 2 +- src/game-server/quest.cpp | 4 +- src/game-server/spawnarea.cpp | 6 +- src/game-server/spawnarea.h | 6 +- src/game-server/state.cpp | 10 +-- src/game-server/state.h | 20 +++--- src/game-server/thing.cpp | 68 ------------------- src/game-server/thing.h | 120 ---------------------------------- src/game-server/trigger.h | 6 +- src/scripting/lua.cpp | 4 +- src/scripting/luascript.cpp | 12 ++-- src/scripting/luascript.h | 6 +- src/scripting/luautil.cpp | 8 +-- src/scripting/luautil.h | 4 +- src/scripting/script.h | 10 +-- 31 files changed, 287 insertions(+), 289 deletions(-) create mode 100644 src/game-server/entity.cpp create mode 100644 src/game-server/entity.h delete mode 100644 src/game-server/thing.cpp delete mode 100644 src/game-server/thing.h diff --git a/gameserver.cbp b/gameserver.cbp index 4184c092..f89db174 100644 --- a/gameserver.cbp +++ b/gameserver.cbp @@ -132,6 +132,8 @@ + + @@ -171,8 +173,6 @@ - - diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 34ec3891..42708f65 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -212,6 +212,8 @@ SET(SRCS_MANASERVGAME game-server/commandhandler.h game-server/effect.h game-server/effect.cpp + game-server/entity.h + game-server/entity.cpp game-server/eventlistener.h game-server/gamehandler.h game-server/gamehandler.cpp @@ -250,8 +252,6 @@ SET(SRCS_MANASERVGAME game-server/statuseffect.cpp game-server/statusmanager.h game-server/statusmanager.cpp - game-server/thing.h - game-server/thing.cpp game-server/trade.h game-server/trade.cpp game-server/trigger.h diff --git a/src/account-server/serverhandler.cpp b/src/account-server/serverhandler.cpp index 9224338f..1f55bc98 100644 --- a/src/account-server/serverhandler.cpp +++ b/src/account-server/serverhandler.cpp @@ -46,7 +46,7 @@ using namespace ManaServ; struct MapStatistics { std::vector players; - unsigned short nbThings; + unsigned short nbEntities; unsigned short nbMonsters; }; @@ -278,7 +278,7 @@ void ServerHandler::processMessage(NetComputer *comp, MessageIn &msg) comp->send(outMsg); MapStatistics &m = server->maps[id]; - m.nbThings = 0; + m.nbEntities = 0; m.nbMonsters = 0; } } @@ -448,7 +448,7 @@ void ServerHandler::processMessage(NetComputer *comp, MessageIn &msg) break; } MapStatistics &m = i->second; - m.nbThings = msg.readInt16(); + m.nbEntities = msg.readInt16(); m.nbMonsters = msg.readInt16(); int nb = msg.readInt16(); m.players.resize(nb); @@ -639,7 +639,7 @@ void GameServerHandler::dumpStatistics(std::ostream &os) j_end = server->maps.end(); j != j_end; ++j) { const MapStatistics &m = j->second; - os << "first << "\" nb_things=\"" << m.nbThings + os << "first << "\" nb_entities=\"" << m.nbEntities << "\" nb_monsters=\"" << m.nbMonsters << "\">\n"; for (std::vector< int >::const_iterator k = m.players.begin(), k_end = m.players.end(); k != k_end; ++k) diff --git a/src/common/manaserv_protocol.h b/src/common/manaserv_protocol.h index 0a61dcb5..a4dc71e3 100644 --- a/src/common/manaserv_protocol.h +++ b/src/common/manaserv_protocol.h @@ -255,7 +255,7 @@ enum { GAMSG_BAN_PLAYER = 0x0550, // D id, W duration GAMSG_CHANGE_PLAYER_LEVEL = 0x0555, // D id, W level GAMSG_CHANGE_ACCOUNT_LEVEL = 0x0556, // D id, W level - GAMSG_STATISTICS = 0x0560, // { W map id, W thing nb, W monster nb, W player nb, { D character id }* }* + GAMSG_STATISTICS = 0x0560, // { W map id, W entity nb, W monster nb, W player nb, { D character id }* }* CGMSG_CHANGED_PARTY = 0x0590, // D character id, D party id GCMSG_REQUEST_POST = 0x05A0, // D character id CGMSG_POST_RESPONSE = 0x05A1, // D receiver id, { S sender name, S letter, W num attachments { W attachment item id, W quantity } } @@ -342,8 +342,8 @@ enum AttribmodResponseCode { ATTRIBMOD_DENIED }; -// Object type enumeration -enum ThingType +// Entity type enumeration +enum EntityType { // A simple item. OBJECT_ITEM = 0, diff --git a/src/game-server/accountconnection.cpp b/src/game-server/accountconnection.cpp index 1e974349..52282a99 100644 --- a/src/game-server/accountconnection.cpp +++ b/src/game-server/accountconnection.cpp @@ -346,14 +346,14 @@ void AccountConnection::sendStatistics() MapComposite *m = i->second; if (!m->isActive()) continue; msg.writeInt16(i->first); - int nbThings = 0, nbMonsters = 0; - typedef std::vector< Thing * > Things; - const Things &things = m->getEverything(); + int nbEntities = 0, nbMonsters = 0; + typedef std::vector< Entity * > Entities; + const Entities &things = m->getEverything(); std::vector< int > players; - for (Things::const_iterator j = things.begin(), + for (Entities::const_iterator j = things.begin(), j_end = things.end(); j != j_end; ++j) { - Thing *t = *j; + Entity *t = *j; switch (t->getType()) { case OBJECT_CHARACTER: @@ -364,10 +364,10 @@ void AccountConnection::sendStatistics() ++nbMonsters; break; default: - ++nbThings; + ++nbEntities; } } - msg.writeInt16(nbThings); + msg.writeInt16(nbEntities); msg.writeInt16(nbMonsters); msg.writeInt16(players.size()); for (std::vector< int >::const_iterator j = players.begin(), diff --git a/src/game-server/actor.cpp b/src/game-server/actor.cpp index 8325c6d8..60379124 100644 --- a/src/game-server/actor.cpp +++ b/src/game-server/actor.cpp @@ -71,7 +71,7 @@ void Actor::setMap(MapComposite *mapComposite) oldMap->freeTile(p.x / oldTileWidth, p.y / oldTileHeight, getBlockType()); } - Thing::setMap(mapComposite); + Entity::setMap(mapComposite); Map *map = mapComposite->getMap(); int tileWidth = map->getTileWidth(); int tileHeight = map->getTileHeight(); diff --git a/src/game-server/actor.h b/src/game-server/actor.h index 758424aa..324393df 100644 --- a/src/game-server/actor.h +++ b/src/game-server/actor.h @@ -22,7 +22,7 @@ #define ACTOR_H #include "game-server/map.h" -#include "game-server/thing.h" +#include "game-server/entity.h" #include "utils/point.h" /** @@ -44,11 +44,11 @@ enum * Generic client-visible object. Keeps track of position, size and what to * update clients about. */ -class Actor : public Thing +class Actor : public Entity { public: - Actor(ThingType type) - : Thing(type), + Actor(EntityType type) + : Entity(type), mMoveTime(0), mUpdateFlags(0), mPublicID(65535), diff --git a/src/game-server/being.cpp b/src/game-server/being.cpp index 1669e55d..bbe07828 100644 --- a/src/game-server/being.cpp +++ b/src/game-server/being.cpp @@ -35,7 +35,7 @@ #include "utils/logger.h" #include "utils/speedconv.h" -Being::Being(ThingType type): +Being::Being(EntityType type): Actor(type), mAction(STAND), mTarget(NULL), diff --git a/src/game-server/being.h b/src/game-server/being.h index 3a76025a..27c14b09 100644 --- a/src/game-server/being.h +++ b/src/game-server/being.h @@ -70,7 +70,7 @@ class Being : public Actor /** * Proxy constructor. */ - Being(ThingType type); + Being(EntityType type); /** * Update being state. diff --git a/src/game-server/entity.cpp b/src/game-server/entity.cpp new file mode 100644 index 00000000..671ef5e6 --- /dev/null +++ b/src/game-server/entity.cpp @@ -0,0 +1,68 @@ +/* + * The Mana Server + * Copyright (C) 2007-2010 The Mana World Development Team + * + * This file is part of The Mana Server. + * + * The Mana Server 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 + * any later version. + * + * The Mana Server 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 The Mana Server. If not, see . + */ + +#include + +#include "game-server/entity.h" + +#include "game-server/eventlistener.h" + +Entity::~Entity() +{ + /* As another object will stop listening and call removeListener when it is + deleted, the following assertion ensures that all the calls to + removeListener have been performed will this object was still alive. It + is not strictly necessary, as there are cases where no removal is + performed (e.g. ~SpawnArea). But this is rather exceptional, so keep the + assertion to catch all the other forgotten calls to removeListener. */ + assert(mListeners.empty()); +} + +void Entity::addListener(const EventListener *l) +{ + mListeners.insert(l); +} + +void Entity::removeListener(const EventListener *l) +{ + mListeners.erase(l); +} + +void Entity::inserted() +{ + for (Listeners::iterator i = mListeners.begin(), + i_end = mListeners.end(); i != i_end;) + { + const EventListener &l = **i; + ++i; // In case the listener removes itself from the list on the fly. + if (l.dispatch->inserted) l.dispatch->inserted(&l, this); + } +} + +void Entity::removed() +{ + for (Listeners::iterator i = mListeners.begin(), + i_end = mListeners.end(); i != i_end;) + { + const EventListener &l = **i; + ++i; // In case the listener removes itself from the list on the fly. + if (l.dispatch->removed) l.dispatch->removed(&l, this); + } +} diff --git a/src/game-server/entity.h b/src/game-server/entity.h new file mode 100644 index 00000000..652db7c7 --- /dev/null +++ b/src/game-server/entity.h @@ -0,0 +1,120 @@ +/* + * The Mana Server + * Copyright (C) 2004-2010 The Mana World Development Team + * + * This file is part of The Mana Server. + * + * The Mana Server 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 + * any later version. + * + * The Mana Server 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 The Mana Server. If not, see . + */ + +#ifndef ENTITY_H +#define ENTITY_H + +#include "common/manaserv_protocol.h" + +using namespace ManaServ; + +#include + +class EventListener; +class MapComposite; + +/** + * Base class for in-game objects. Knows only its type and the map it resides + * on. Provides listeners. + */ +class Entity +{ + public: + Entity(EntityType type, MapComposite *map = 0) + : mMap(map), + mType(type) + {} + + virtual ~Entity(); + + /** + * Gets type of this entity. + * + * @return the type of this entity. + */ + EntityType getType() const + { return mType; } + + /** + * Returns whether this entity is visible on the map or not. (Actor) + */ + bool isVisible() const + { return mType != OBJECT_OTHER; } + + /** + * Returns whether this entity can move on the map or not. (Actor) + */ + bool canMove() const + { return mType == OBJECT_CHARACTER || mType == OBJECT_MONSTER || + mType == OBJECT_NPC; } + + /** + * Returns whether this entity can fight or not. (Being) + */ + bool canFight() const + { return mType == OBJECT_CHARACTER || mType == OBJECT_MONSTER; } + + /** + * Updates the internal status. + */ + virtual void update() = 0; + + /** + * Gets the map this entity is located on. + */ + MapComposite *getMap() const + { return mMap; } + + /** + * Sets the map this entity is located on. + */ + virtual void setMap(MapComposite *map) + { mMap = map; } + + /** + * Adds a new listener. + */ + void addListener(const EventListener *); + + /** + * Removes an existing listener. + */ + void removeListener(const EventListener *); + + /** + * Calls all the "inserted" listeners. + */ + virtual void inserted(); + + /** + * Calls all the "removed" listeners. + */ + virtual void removed(); + + protected: + typedef std::set< const EventListener * > Listeners; + Listeners mListeners; /**< List of event listeners. */ + + private: + MapComposite *mMap; /**< Map the entity is on */ + EntityType mType; /**< Type of this entity. */ +}; + +#endif // ENTITY_H diff --git a/src/game-server/eventlistener.h b/src/game-server/eventlistener.h index 87dac1dc..53d92077 100644 --- a/src/game-server/eventlistener.h +++ b/src/game-server/eventlistener.h @@ -21,7 +21,7 @@ #ifndef GAMESERVER_EVENTLISTENER_H #define GAMESERVER_EVENTLISTENER_H -class Thing; +class Entity; class Being; class Character; @@ -44,12 +44,12 @@ struct EventDispatch /** * Called just after something is inserted in a map. */ - void (*inserted)(const EventListener *, Thing *); + void (*inserted)(const EventListener *, Entity *); /** * Called just before something is removed from a map. */ - void (*removed)(const EventListener *, Thing *); + void (*removed)(const EventListener *, Entity *); /** * Called just after a being has died. diff --git a/src/game-server/mapcomposite.cpp b/src/game-server/mapcomposite.cpp index 2c601183..8dd0503e 100644 --- a/src/game-server/mapcomposite.cpp +++ b/src/game-server/mapcomposite.cpp @@ -557,7 +557,7 @@ ZoneIterator MapComposite::getAroundBeingIterator(Being *obj, int radius) const return ZoneIterator(r2, mContent); } -bool MapComposite::insert(Thing *ptr) +bool MapComposite::insert(Entity *ptr) { if (ptr->isVisible()) { @@ -571,14 +571,14 @@ bool MapComposite::insert(Thing *ptr) } ptr->setMap(this); - mContent->things.push_back(ptr); + mContent->entities.push_back(ptr); return true; } -void MapComposite::remove(Thing *ptr) +void MapComposite::remove(Entity *ptr) { - for (std::vector::iterator i = mContent->things.begin(), - i_end = mContent->things.end(); i != i_end; ++i) + for (std::vector::iterator i = mContent->entities.begin(), + i_end = mContent->entities.end(); i != i_end; ++i) { if ((*i)->canFight()) { @@ -590,7 +590,7 @@ void MapComposite::remove(Thing *ptr) } if (*i == ptr) { - i = mContent->things.erase(i); + i = mContent->entities.erase(i); } } @@ -609,9 +609,9 @@ void MapComposite::remove(Thing *ptr) void MapComposite::update() { // Update object status - const std::vector< Thing * > &things = getEverything(); - for (std::vector< Thing * >::const_iterator it = things.begin(), - it_end = things.end(); it != it_end; ++it) + const std::vector< Entity * > &entities = getEverything(); + for (std::vector< Entity * >::const_iterator it = entities.begin(), + it_end = entities.end(); it != it_end; ++it) { (*it)->update(); } @@ -637,8 +637,8 @@ void MapComposite::update() } // Cannot use a WholeMap iterator as objects will change zones under its feet. - for (std::vector< Thing * >::iterator i = mContent->things.begin(), - i_end = mContent->things.end(); i != i_end; ++i) + for (std::vector< Entity * >::iterator i = mContent->entities.begin(), + i_end = mContent->entities.end(); i != i_end; ++i) { if (!(*i)->canMove()) continue; @@ -659,9 +659,9 @@ void MapComposite::update() } } -const std::vector< Thing * > &MapComposite::getEverything() const +const std::vector< Entity * > &MapComposite::getEverything() const { - return mContent->things; + return mContent->entities; } diff --git a/src/game-server/mapcomposite.h b/src/game-server/mapcomposite.h index 96939a9c..079e5e48 100644 --- a/src/game-server/mapcomposite.h +++ b/src/game-server/mapcomposite.h @@ -35,7 +35,7 @@ class Map; class MapComposite; class Point; class Rectangle; -class Thing; +class Entity; struct MapContent; struct MapZone; @@ -205,9 +205,9 @@ struct MapContent MapZone &getZone(const Point &pos) const; /** - * Things (items, characters, monsters, etc) located on the map. + * Entities (items, characters, monsters, etc) located on the map. */ - std::vector< Thing * > things; + std::vector< Entity * > entities; /** * Buckets of MovingObjects located on the map, referenced by ID. @@ -270,12 +270,12 @@ class MapComposite /** * Inserts a thing on the map. Sets its public ID if relevant. */ - bool insert(Thing *); + bool insert(Entity *); /** * Removes a thing from the map. */ - void remove(Thing *); + void remove(Entity *); /** * Updates zones of every moving beings. @@ -317,7 +317,7 @@ class MapComposite /** * Gets everything related to the map. */ - const std::vector< Thing * > &getEverything() const; + const std::vector< Entity * > &getEverything() const; /** * Gets the cached value of a map-bound script variable diff --git a/src/game-server/mapreader.h b/src/game-server/mapreader.h index 802f6b07..de5ce1d8 100644 --- a/src/game-server/mapreader.h +++ b/src/game-server/mapreader.h @@ -28,8 +28,6 @@ #include class Map; -class MapComposite; -class Thing; /** * Reader for XML map files (*.tmx) diff --git a/src/game-server/monster.cpp b/src/game-server/monster.cpp index 6bc69b7e..34920b91 100644 --- a/src/game-server/monster.cpp +++ b/src/game-server/monster.cpp @@ -40,8 +40,8 @@ struct MonsterTargetEventDispatch: EventDispatch MonsterTargetEventDispatch() { typedef EventListenerFactory Factory; - removed = &Factory::create< Thing, &Monster::forgetTarget >::function; - died = &Factory::create::function; + removed = &Factory::create< Entity, &Monster::forgetTarget >::function; + died = &Factory::create::function; } }; @@ -376,7 +376,7 @@ int Monster::calculatePositionPriority(Point position, int targetPriority) } } -void Monster::forgetTarget(Thing *t) +void Monster::forgetTarget(Entity *t) { Being *b = static_cast< Being * >(t); mAnger.erase(b); diff --git a/src/game-server/monster.h b/src/game-server/monster.h index 6de83685..3b58fa60 100644 --- a/src/game-server/monster.h +++ b/src/game-server/monster.h @@ -322,7 +322,7 @@ class Monster : public Being /** * Removes a being from the anger list. */ - void forgetTarget(Thing *being); + void forgetTarget(Entity *being); /** * Called when an attribute modifier is changed. diff --git a/src/game-server/quest.cpp b/src/game-server/quest.cpp index 3b415fe0..c4cce8e4 100644 --- a/src/game-server/quest.cpp +++ b/src/game-server/quest.cpp @@ -77,7 +77,7 @@ void setQuestVar(Character *ch, const std::string &name, */ struct QuestDeathListener: EventDispatch { - static void partialRemove(const EventListener *, Thing *); + static void partialRemove(const EventListener *, Entity *); static void fullRemove(const EventListener *, Character *); @@ -91,7 +91,7 @@ struct QuestDeathListener: EventDispatch static QuestDeathListener questDeathDummy; static EventListener questDeathListener(&questDeathDummy); -void QuestDeathListener::partialRemove(const EventListener *, Thing *t) +void QuestDeathListener::partialRemove(const EventListener *, Entity *t) { int id = static_cast< Character * >(t)->getDatabaseID(); PendingVariables &variables = pendingQuests[id].variables; diff --git a/src/game-server/spawnarea.cpp b/src/game-server/spawnarea.cpp index 43e3a937..155d4c0d 100644 --- a/src/game-server/spawnarea.cpp +++ b/src/game-server/spawnarea.cpp @@ -31,7 +31,7 @@ struct SpawnAreaEventDispatch : EventDispatch { typedef EventListenerFactory< SpawnArea, &SpawnArea::mSpawnedListener > Factory; - removed = &Factory::create< Thing, &SpawnArea::decrease >::function; + removed = &Factory::create< Entity, &SpawnArea::decrease >::function; } }; @@ -42,7 +42,7 @@ SpawnArea::SpawnArea(MapComposite *map, const Rectangle &zone, int maxBeings, int spawnRate): - Thing(OBJECT_OTHER, map), + Entity(OBJECT_OTHER, map), mSpecy(specy), mSpawnedListener(&spawnAreaEventDispatch), mZone(zone), @@ -125,7 +125,7 @@ void SpawnArea::update() } } -void SpawnArea::decrease(Thing *t) +void SpawnArea::decrease(Entity *t) { --mNumBeings; t->removeListener(&mSpawnedListener); diff --git a/src/game-server/spawnarea.h b/src/game-server/spawnarea.h index 48bfede7..cc0642f1 100644 --- a/src/game-server/spawnarea.h +++ b/src/game-server/spawnarea.h @@ -22,7 +22,7 @@ #define SPAWNAREA_H #include "game-server/eventlistener.h" -#include "game-server/thing.h" +#include "game-server/entity.h" #include "utils/point.h" class Being; @@ -32,7 +32,7 @@ class MonsterClass; * A spawn area, where monsters spawn. The area is a rectangular field and will * spawn a certain number of a given monster type. */ -class SpawnArea : public Thing +class SpawnArea : public Entity { public: SpawnArea(MapComposite *, MonsterClass *, const Rectangle &zone, @@ -43,7 +43,7 @@ class SpawnArea : public Thing /** * Keeps track of the number of spawned being. */ - void decrease(Thing *); + void decrease(Entity *); private: MonsterClass *mSpecy; /**< Specy of monster that spawns in this area. */ diff --git a/src/game-server/state.cpp b/src/game-server/state.cpp index 0e7bea25..843bfadb 100644 --- a/src/game-server/state.cpp +++ b/src/game-server/state.cpp @@ -482,7 +482,7 @@ void GameState::update(int worldTime) delayedEvents.clear(); } -bool GameState::insert(Thing *ptr) +bool GameState::insert(Entity *ptr) { assert(!dbgLockObjects); MapComposite *map = ptr->getMap(); @@ -550,7 +550,7 @@ bool GameState::insert(Thing *ptr) case OBJECT_ACTOR: case OBJECT_OTHER: default: - LOG_DEBUG("Thing inserted: " << obj->getType()); + LOG_DEBUG("Entity inserted: " << obj->getType()); } obj->raiseUpdateFlags(UPDATEFLAG_NEW_ON_MAP); @@ -573,14 +573,14 @@ bool GameState::insert(Thing *ptr) return true; } -bool GameState::insertOrDelete(Thing *ptr) +bool GameState::insertOrDelete(Entity *ptr) { if (insert(ptr)) return true; delete ptr; return false; } -void GameState::remove(Thing *ptr) +void GameState::remove(Entity *ptr) { assert(!dbgLockObjects); MapComposite *map = ptr->getMap(); @@ -618,7 +618,7 @@ void GameState::remove(Thing *ptr) case OBJECT_ACTOR: case OBJECT_OTHER: default: - LOG_DEBUG("Thing removed: " << ptr->getType()); + LOG_DEBUG("Entity removed: " << ptr->getType()); } if (ptr->canMove()) diff --git a/src/game-server/state.h b/src/game-server/state.h index 6fae5c89..ba87a767 100644 --- a/src/game-server/state.h +++ b/src/game-server/state.h @@ -24,7 +24,7 @@ #include class MapComposite; -class Thing; +class Entity; class Actor; class Character; @@ -37,30 +37,30 @@ namespace GameState void update(int worldTime); /** - * Inserts an thing in the game world. - * @return false if the insertion failed and the thing is in limbo. + * Inserts an entity in the game world. + * @return false if the insertion failed and the entity is in limbo. * @note No update may be in progress. */ - bool insert(Thing *) + bool insert(Entity *) # ifdef __GNUC__ __attribute__((warn_unused_result)) # endif ; /** - * Inserts a thing in the game world. Deletes the thing if the insertion + * Inserts a entity in the game world. Deletes the entity if the insertion * failed. * @return false if the insertion failed. * @note No update may be in progress. Invalid for characters. */ - bool insertOrDelete(Thing *); + bool insertOrDelete(Entity *); /** - * Removes a thing from the game world. + * Removes a entity from the game world. * @note No update may be in progress. - * @note The thing is not destroyed by this call. + * @note The entity is not destroyed by this call. */ - void remove(Thing *); + void remove(Entity *); /** * Warps a character between places of the game world. @@ -78,7 +78,7 @@ namespace GameState /** * Enqueues a remove event. * @note The event will be executed at end of update. - * @note The thing will be destroyed at that time. + * @note The entity will be destroyed at that time. */ void enqueueRemove(Actor *); diff --git a/src/game-server/thing.cpp b/src/game-server/thing.cpp deleted file mode 100644 index 5fe94249..00000000 --- a/src/game-server/thing.cpp +++ /dev/null @@ -1,68 +0,0 @@ -/* - * The Mana Server - * Copyright (C) 2007-2010 The Mana World Development Team - * - * This file is part of The Mana Server. - * - * The Mana Server 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 - * any later version. - * - * The Mana Server 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 The Mana Server. If not, see . - */ - -#include - -#include "game-server/thing.h" - -#include "game-server/eventlistener.h" - -Thing::~Thing() -{ - /* As another object will stop listening and call removeListener when it is - deleted, the following assertion ensures that all the calls to - removeListener have been performed will this object was still alive. It - is not strictly necessary, as there are cases where no removal is - performed (e.g. ~SpawnArea). But this is rather exceptional, so keep the - assertion to catch all the other forgotten calls to removeListener. */ - assert(mListeners.empty()); -} - -void Thing::addListener(const EventListener *l) -{ - mListeners.insert(l); -} - -void Thing::removeListener(const EventListener *l) -{ - mListeners.erase(l); -} - -void Thing::inserted() -{ - for (Listeners::iterator i = mListeners.begin(), - i_end = mListeners.end(); i != i_end;) - { - const EventListener &l = **i; - ++i; // In case the listener removes itself from the list on the fly. - if (l.dispatch->inserted) l.dispatch->inserted(&l, this); - } -} - -void Thing::removed() -{ - for (Listeners::iterator i = mListeners.begin(), - i_end = mListeners.end(); i != i_end;) - { - const EventListener &l = **i; - ++i; // In case the listener removes itself from the list on the fly. - if (l.dispatch->removed) l.dispatch->removed(&l, this); - } -} diff --git a/src/game-server/thing.h b/src/game-server/thing.h deleted file mode 100644 index 9409a0b2..00000000 --- a/src/game-server/thing.h +++ /dev/null @@ -1,120 +0,0 @@ -/* - * The Mana Server - * Copyright (C) 2004-2010 The Mana World Development Team - * - * This file is part of The Mana Server. - * - * The Mana Server 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 - * any later version. - * - * The Mana Server 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 The Mana Server. If not, see . - */ - -#ifndef THING_H -#define THING_H - -#include "common/manaserv_protocol.h" - -using namespace ManaServ; - -#include - -class EventListener; -class MapComposite; - -/** - * Base class for in-game objects. Knows only its type and the map it resides - * on. Provides listeners. - */ -class Thing -{ - public: - Thing(ThingType type, MapComposite *map = 0) - : mMap(map), - mType(type) - {} - - virtual ~Thing(); - - /** - * Gets type of this thing. - * - * @return the type of this thing. - */ - ThingType getType() const - { return mType; } - - /** - * Returns whether this thing is visible on the map or not. (Actor) - */ - bool isVisible() const - { return mType != OBJECT_OTHER; } - - /** - * Returns whether this thing can move on the map or not. (Actor) - */ - bool canMove() const - { return mType == OBJECT_CHARACTER || mType == OBJECT_MONSTER || - mType == OBJECT_NPC; } - - /** - * Returns whether this thing can fight or not. (Being) - */ - bool canFight() const - { return mType == OBJECT_CHARACTER || mType == OBJECT_MONSTER; } - - /** - * Updates the internal status. - */ - virtual void update() = 0; - - /** - * Gets the map this thing is located on. - */ - MapComposite *getMap() const - { return mMap; } - - /** - * Sets the map this thing is located on. - */ - virtual void setMap(MapComposite *map) - { mMap = map; } - - /** - * Adds a new listener. - */ - void addListener(const EventListener *); - - /** - * Removes an existing listener. - */ - void removeListener(const EventListener *); - - /** - * Calls all the "inserted" listeners. - */ - virtual void inserted(); - - /** - * Calls all the "removed" listeners. - */ - virtual void removed(); - - protected: - typedef std::set< const EventListener * > Listeners; - Listeners mListeners; /**< List of event listeners. */ - - private: - MapComposite *mMap; /**< Map the thing is on */ - ThingType mType; /**< Type of this thing. */ -}; - -#endif // THING_H diff --git a/src/game-server/trigger.h b/src/game-server/trigger.h index 2a3aa611..fbd41fa8 100644 --- a/src/game-server/trigger.h +++ b/src/game-server/trigger.h @@ -21,7 +21,7 @@ #ifndef TRIGGER_H #define TRIGGER_H -#include "game-server/thing.h" +#include "game-server/entity.h" #include "scripting/script.h" #include "utils/point.h" @@ -60,14 +60,14 @@ class ScriptAction : public TriggerAction int mArg; // Argument passed to script function (meaning is function-specific) }; -class TriggerArea : public Thing +class TriggerArea : public Entity { public: /** * Creates a rectangular trigger for a given map. */ TriggerArea(MapComposite *m, const Rectangle &r, TriggerAction *ptr, bool once) - : Thing(OBJECT_OTHER, m), mZone(r), mAction(ptr), mOnce(once) {} + : Entity(OBJECT_OTHER, m), mZone(r), mAction(ptr), mOnce(once) {} virtual void update(); diff --git a/src/scripting/lua.cpp b/src/scripting/lua.cpp index 47672659..1900f5ac 100644 --- a/src/scripting/lua.cpp +++ b/src/scripting/lua.cpp @@ -938,8 +938,8 @@ static int being_set_status_time(lua_State *s) } /** - * being_type(Being*): ThingType - * Returns the Thing type of the given being. + * being_type(Being*): EntityType + * Returns the entity type of the given being. */ static int being_type(lua_State *s) { diff --git a/src/scripting/luascript.cpp b/src/scripting/luascript.cpp index 3a45b3fc..8ea78f7c 100644 --- a/src/scripting/luascript.cpp +++ b/src/scripting/luascript.cpp @@ -86,7 +86,7 @@ void LuaScript::push(const std::string &v) ++nbArgs; } -void LuaScript::push(Thing *v) +void LuaScript::push(Entity *v) { assert(nbArgs >= 0); if (v) @@ -235,30 +235,30 @@ void LuaScript::load(const char *prog, const char *name) } } -void LuaScript::processDeathEvent(Being *being) +void LuaScript::processDeathEvent(Being *entity) { if (mDeathNotificationCallback.isValid()) { prepare(mDeathNotificationCallback); - push(being); + push(entity); //TODO: get and push a list of creatures who contributed to killing the // being. This might be very interesting for scripting quests. execute(); } } -void LuaScript::processRemoveEvent(Thing *being) +void LuaScript::processRemoveEvent(Entity *entity) { if (mRemoveNotificationCallback.isValid()) { prepare(mRemoveNotificationCallback); - push(being); + push(entity); //TODO: get and push a list of creatures who contributed to killing the // being. This might be very interesting for scripting quests. execute(); } - being->removeListener(getScriptListener()); + entity->removeListener(getScriptListener()); } /** diff --git a/src/scripting/luascript.h b/src/scripting/luascript.h index 955fe21c..7631d982 100644 --- a/src/scripting/luascript.h +++ b/src/scripting/luascript.h @@ -54,7 +54,7 @@ class LuaScript : public Script void push(const std::string &); - void push(Thing *); + void push(Entity *); void push(const std::list &itemList); @@ -75,9 +75,9 @@ class LuaScript : public Script const std::string &letter, Script *); - void processDeathEvent(Being *thing); + void processDeathEvent(Being *entity); - void processRemoveEvent(Thing *thing); + void processRemoveEvent(Entity *entity); static void setDeathNotificationCallback(Script *script) diff --git a/src/scripting/luautil.cpp b/src/scripting/luautil.cpp index feed7568..fd83b58b 100644 --- a/src/scripting/luautil.cpp +++ b/src/scripting/luautil.cpp @@ -144,7 +144,7 @@ Character *getCharacter(lua_State *s, int p) { if (!lua_islightuserdata(s, p)) return 0; - Thing *t = static_cast(lua_touserdata(s, p)); + Entity *t = static_cast(lua_touserdata(s, p)); if (t->getType() != OBJECT_CHARACTER) return 0; return static_cast(t); @@ -174,7 +174,7 @@ Monster *getMonster(lua_State *s, int p) { if (!lua_islightuserdata(s, p)) return 0; - Thing *t = static_cast(lua_touserdata(s, p)); + Entity *t = static_cast(lua_touserdata(s, p)); if (t->getType() != OBJECT_MONSTER) return 0; return static_cast(t); @@ -204,7 +204,7 @@ NPC *getNPC(lua_State *s, int p) { if (!lua_islightuserdata(s, p)) return 0; - Thing *t = static_cast(lua_touserdata(s, p)); + Entity *t = static_cast(lua_touserdata(s, p)); if (t->getType() != OBJECT_NPC) return 0; return static_cast(t); @@ -309,7 +309,7 @@ void push(lua_State *s, const std::string &val) lua_pushstring(s, val.c_str()); } -void push(lua_State *s, Thing *val) +void push(lua_State *s, Entity *val) { lua_pushlightuserdata(s, val); } diff --git a/src/scripting/luautil.h b/src/scripting/luautil.h index 86a748a4..ee4ac315 100644 --- a/src/scripting/luautil.h +++ b/src/scripting/luautil.h @@ -45,7 +45,7 @@ class Monster; class MonsterClass; class NPC; class StatusEffect; -class Thing; +class Entity; // Report script errors and interrupt the script. void raiseScriptError(lua_State *s, const char *format, ...); @@ -182,7 +182,7 @@ Script::Thread* checkCurrentThread(lua_State *s, Script *script = 0); Useful for templates.*/ void push(lua_State *s, int val); void push(lua_State *s, const std::string &val); -void push(lua_State *s, Thing *val); +void push(lua_State *s, Entity *val); void push(lua_State *s, double val); inline void push(lua_State *s, MapObject *val) diff --git a/src/scripting/script.h b/src/scripting/script.h index f6d6d180..238bc34c 100644 --- a/src/scripting/script.h +++ b/src/scripting/script.h @@ -30,7 +30,7 @@ #include class MapComposite; -class Thing; +class Entity; /** * Abstract interface for calling functions written in an external language. @@ -163,7 +163,7 @@ class Script * scripting engine, if needed. This value will usually be passed * by the script to some callback functions. */ - virtual void push(Thing *) = 0; + virtual void push(Entity *) = 0; /** * Pushes a list of items with amounts to the script engine. @@ -219,9 +219,9 @@ class Script EventListener *getScriptListener() { return &mEventListener; } - virtual void processDeathEvent(Being *thing) = 0; + virtual void processDeathEvent(Being *entity) = 0; - virtual void processRemoveEvent(Thing *thing) = 0; + virtual void processRemoveEvent(Entity *entity) = 0; static void setCreateNpcDelayedCallback(Script *script) { script->assignCallback(mCreateNpcDelayedCallback); } @@ -251,7 +251,7 @@ struct ScriptEventDispatch: EventDispatch { typedef EventListenerFactory< Script, &Script::mEventListener > Factory; died = &Factory::create< Being, &Script::processDeathEvent >::function; - removed = &Factory::create< Thing, &Script::processRemoveEvent >::function; + removed = &Factory::create< Entity, &Script::processRemoveEvent >::function; } }; -- cgit v1.2.3-70-g09d2