diff options
author | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2013-05-10 15:51:14 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2013-05-10 15:51:14 +0200 |
commit | 598f79c6dd78be5c0ca684c19172f3b9d3420a44 (patch) | |
tree | d5727018585de90709da7d4e22bc6d6199a48ce1 /src/game-server/mapcomposite.cpp | |
parent | ed8fba0a47d2e498267cbfbf1271bacb76c400e9 (diff) | |
parent | 000dcd8064d60f9f34077ca0a1731af4b8773b52 (diff) | |
download | manaserv-lpc2012.tar.gz manaserv-lpc2012.tar.bz2 manaserv-lpc2012.tar.xz manaserv-lpc2012.zip |
Merge branch 'master' into lpc2012lpc2012
Diffstat (limited to 'src/game-server/mapcomposite.cpp')
-rw-r--r-- | src/game-server/mapcomposite.cpp | 133 |
1 files changed, 103 insertions, 30 deletions
diff --git a/src/game-server/mapcomposite.cpp b/src/game-server/mapcomposite.cpp index 4a5d800e..2b12a39b 100644 --- a/src/game-server/mapcomposite.cpp +++ b/src/game-server/mapcomposite.cpp @@ -775,51 +775,124 @@ void MapComposite::initializeContent() if (utils::compareStrI(type, "WARP") == 0) { - std::string destMapName = object->getProperty("DEST_MAP"); - std::string destMapObjectName = object->getProperty("DEST_NAME"); - + const std::string destMapName = object->getProperty("DEST_MAP"); + const Rectangle &sourceBounds = object->getBounds(); MapComposite *destMap = MapManager::getMap(destMapName); - int destX = 0; - int destY = 0; - if (destMap && !destMapObjectName.empty()) + // check destination map + if (!destMap) + { + if (destMapName.empty()) + { + // this must be a one way warp target + continue; + } + + LOG_ERROR("Warp \"" << object->getName() << "\" targets missing map \"" + << destMapName << "\" in " << getName()); + continue; + } + + + TriggerAction* action; + if (object->hasProperty("DEST_NAME")) { - const MapObject *obj = - destMap->findMapObject(destMapObjectName, "WARP"); - if (obj) + // warp to an object + // get destination object name + const std::string destMapObjectName = object->getProperty("DEST_NAME"); + // get target object and validate it + const MapObject *destination = destMap->findMapObject(destMapObjectName, "WARP"); + if (!destination) { - const Rectangle &rect = obj->getBounds(); - destX = rect.x + rect.w / 2; - destY = rect.y + rect.h / 2; + LOG_ERROR("Warp \"" << object->getName() << "\" from map " << getName() + << " targets missing warp \"" << destMapObjectName << "\" " + << " on map " << destMap->getName()); + continue; + } + + const Rectangle &destinationBounds = destination->getBounds(); + + const std::string &exit = destination->getProperty("EXIT_DIRECTION"); + + if (exit.empty()) { + // old style WARP, warp to center of that object + int destX = destinationBounds.x + destinationBounds.w / 2; + int destY = destinationBounds.y + destinationBounds.h / 2; + action = new WarpAction(destMap, Point(destX, destY)); } else { - LOG_ERROR("Warp target \"" << destMapObjectName << "\" " - << "was not found on the map " - << destMap->getName()); + // newer and cooler warp + + AutowarpAction::ExitDirection exitDir; + + // find the exit direction + if (utils::compareStrI(exit, "NORTH") == 0) + { + exitDir = AutowarpAction::ExitNorth; + } + else if (utils::compareStrI(exit, "EAST") == 0) + { + exitDir = AutowarpAction::ExitEast; + } + else if (utils::compareStrI(exit, "SOUTH") == 0) + { + exitDir = AutowarpAction::ExitSouth; + } + else if (utils::compareStrI(exit, "WEST") == 0) + { + exitDir = AutowarpAction::ExitWest; + } + else + { + // invalid or missing exit direction + if (exit.empty()) + { + LOG_ERROR("Warp target \"" << destMapObjectName << "\" on map " + << destMap->getName() + << " is missing exit direction!"); + } + else + { + LOG_ERROR("Warp target \"" << destMapObjectName << "\" on map " + << destMap->getName() + << " has an invalid exit direction \"" + << exit + << "\"!"); + } + continue; + } + + action = new AutowarpAction(destMap, sourceBounds, + destinationBounds, exitDir); } } - else + else if (object->hasProperty("DEST_X") && object->hasProperty("DEST_Y")) { - destX = utils::stringToInt(object->getProperty("DEST_X")); - destY = utils::stringToInt(object->getProperty("DEST_Y")); - } - + // warp to absolute position + int destX = utils::stringToInt(object->getProperty("DEST_X")); + int destY = utils::stringToInt(object->getProperty("DEST_Y")); - if (destMap && destX && destY) - { - Entity *entity = new Entity(OBJECT_OTHER, this); - const Point warpTarget(destX, destY); - WarpAction *action = new WarpAction(destMap, warpTarget); - entity->addComponent( - new TriggerAreaComponent(object->getBounds(), - action, false)); - insert(entity); + action = new WarpAction(destMap, Point(destX, destY)); } else { - LOG_WARN("Unrecognized warp format on map " << mName); + LOG_ERROR("Warp \"" << object->getName() << "\" on map " + << getName() + << " is invalid!"); + continue; } + + // add this trigger to the map + Entity *entity = new Entity(OBJECT_OTHER, this); + entity->addComponent( + new TriggerAreaComponent( + sourceBounds, + action, + false + ) + ); + insert(entity); } else if (utils::compareStrI(type, "SPAWN") == 0) { |