/* * 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 . */ #include "game-server/attributemanager.h" #include "common/defines.h" #include "utils/string.h" #include "utils/logger.h" void AttributeManager::initialize() { reload(); } void AttributeManager::reload() { mTagMap.clear(); mAttributeMap.clear(); for (unsigned i = 0; i < MaxScope; ++i) mAttributeScopes[i].clear(); } const std::vector *AttributeManager::getAttributeInfo(int id) const { AttributeMap::const_iterator ret = mAttributeMap.find(id); if (ret == mAttributeMap.end()) return 0; return &ret->second.modifiers; } const AttributeManager::AttributeScope &AttributeManager::getAttributeScope(ScopeType type) const { return mAttributeScopes[type]; } bool AttributeManager::isAttributeDirectlyModifiable(int id) const { AttributeMap::const_iterator ret = mAttributeMap.find(id); if (ret == mAttributeMap.end()) return false; return ret->second.modifiable; } ModifierLocation AttributeManager::getLocation(const std::string &tag) const { if (mTagMap.find(tag) != mTagMap.end()) return mTagMap.at(tag); else return ModifierLocation(0, 0); } const std::string *AttributeManager::getTag(const ModifierLocation &location) const { for (TagMap::const_iterator it = mTagMap.begin(), it_end = mTagMap.end(); it != it_end; ++it) if (it->second == location) return &it->first; return 0; } /** * Read a element from settings. * Used by SettingsManager. */ void AttributeManager::readAttributeNode(xmlNodePtr attributeNode) { int id = XML::getProperty(attributeNode, "id", 0); if (id <= 0) { LOG_WARN("Attribute manager: attribute '" << id << "' has an invalid id and will be ignored."); return; } AttributeInfo &attribute = mAttributeMap[id]; attribute.modifiers = std::vector(); attribute.minimum = XML::getFloatProperty(attributeNode, "minimum", std::numeric_limits::min()); attribute.maximum = XML::getFloatProperty(attributeNode, "maximum", std::numeric_limits::max()); attribute.modifiable = XML::getBoolProperty(attributeNode, "modifiable", false); for_each_xml_child_node(subNode, attributeNode) { if (xmlStrEqual(subNode->name, BAD_CAST "modifier")) { readModifierNode(subNode, id); } } const std::string scope = utils::toUpper( XML::getProperty(attributeNode, "scope", std::string())); if (scope.empty()) { // Give a warning unless scope has been explicitly set to "NONE" LOG_WARN("Attribute manager: attribute '" << id << "' has no default scope."); } else if (scope == "CHARACTER") { mAttributeScopes[CharacterScope][id] = &attribute; LOG_DEBUG("Attribute manager: attribute '" << id << "' added to default character scope."); } else if (scope == "MONSTER") { mAttributeScopes[MonsterScope][id] = &attribute; LOG_DEBUG("Attribute manager: attribute '" << id << "' added to default monster scope."); } else if (scope == "BEING") { mAttributeScopes[BeingScope][id] = &attribute; LOG_DEBUG("Attribute manager: attribute '" << id << "' added to default being scope."); } else if (scope == "NONE") { LOG_DEBUG("Attribute manager: attribute '" << id << "' set to have no default scope."); } } /** * Check the status of recently loaded configuration. */ void AttributeManager::checkStatus() { LOG_DEBUG("attribute map:"); LOG_DEBUG("Stackable is " << Stackable << ", NonStackable is " << NonStackable << ", NonStackableBonus is " << NonStackableBonus << "."); LOG_DEBUG("Additive is " << Additive << ", Multiplicative is " << Multiplicative << "."); const std::string *tag; unsigned count = 0; for (AttributeMap::const_iterator i = mAttributeMap.begin(); i != mAttributeMap.end(); ++i) { unsigned lCount = 0; LOG_DEBUG(" "<first<<" : "); for (std::vector::const_iterator j = i->second.modifiers.begin(); j != i->second.modifiers.end(); ++j) { tag = getTag(ModifierLocation(i->first, lCount)); std::string end = tag ? "tag of '" + (*tag) + "'." : "no tag."; LOG_DEBUG(" stackableType: " << j->stackableType << ", effectType: " << j->effectType << ", and " << end); ++lCount; ++count; } } LOG_INFO("Loaded '" << mAttributeMap.size() << "' attributes with '" << count << "' modifier layers."); for (TagMap::const_iterator i = mTagMap.begin(), i_end = mTagMap.end(); i != i_end; ++i) { LOG_DEBUG("Tag '" << i->first << "': '" << i->second.attributeId << "', '" << i->second.layer << "'."); } LOG_INFO("Loaded '" << mTagMap.size() << "' modifier tags."); } void AttributeManager::readModifierNode(xmlNodePtr modifierNode, int attributeId) { const std::string stackableTypeString = utils::toUpper( XML::getProperty(modifierNode, "stacktype", std::string())); const std::string effectTypeString = utils::toUpper( XML::getProperty(modifierNode, "modtype", std::string())); const std::string tag = XML::getProperty(modifierNode, "tag", std::string()); if (stackableTypeString.empty()) { LOG_WARN("Attribute manager: attribute '" << attributeId << "' has undefined stackable type, skipping modifier!"); return; } if (effectTypeString.empty()) { LOG_WARN("Attribute manager: attribute '" << attributeId << "' has undefined modification type, skipping modifier!"); return; } StackableType stackableType; ModifierEffectType effectType; if (stackableTypeString == "STACKABLE") stackableType = Stackable; else if (stackableTypeString == "NON STACKABLE") stackableType = NonStackable; else if (stackableTypeString == "NON STACKABLE BONUS") stackableType = NonStackableBonus; else { LOG_WARN("Attribute manager: attribute '" << attributeId << "' has unknown stackable type '" << stackableTypeString << "', skipping modifier!"); return; } if (effectTypeString == "ADDITIVE") effectType = Additive; else if (effectTypeString == "MULTIPLICATIVE") effectType = Multiplicative; else { LOG_WARN("Attribute manager: attribute '" << attributeId << "' has unknown modification type '" << effectTypeString << "', skipping modifier!"); return; } if (stackableType == NonStackable && effectType == Multiplicative) { LOG_WARN("Attribute manager: attribute '" << attributeId << "' has a non sense modifier. " << "Having NonStackable and Multiplicative makes no sense! " << "Skipping modifier!"); return; } mAttributeMap[attributeId].modifiers.push_back( AttributeModifier(stackableType, effectType)); if (!tag.empty()) { const int layer = mAttributeMap[attributeId].modifiers.size() - 1; mTagMap.insert(std::make_pair(tag, ModifierLocation(attributeId, layer))); } }