/*
* The ManaPlus Client
* Copyright (C) 2008-2009 The Mana World Development Team
* Copyright (C) 2009-2010 The Mana Developers
* Copyright (C) 2011-2014 The ManaPlus Developers
*
* This file is part of The ManaPlus Client.
*
* 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
* 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, see .
*/
#include "resources/db/petdb.h"
#include "configuration.h"
#include "logger.h"
#include "resources/beingcommon.h"
#include "resources/beinginfo.h"
#include "resources/spritereference.h"
#include "utils/gettext.h"
#include "utils/dtor.h"
#include "debug.h"
namespace
{
BeingInfos mPETInfos;
bool mLoaded = false;
}
extern int serverVersion;
void PETDB::load()
{
if (mLoaded)
unload();
logger->log1("Initializing PET database...");
loadXmlFile(paths.getStringValue("petsFile"));
loadXmlFile(paths.getStringValue("petsPatchFile"));
loadXmlDir("petsPatchDir", loadXmlFile);
mLoaded = true;
}
void PETDB::loadXmlFile(const std::string &fileName)
{
XML::Document doc(fileName);
const XmlNodePtrConst rootNode = doc.rootNode();
if (!rootNode || !xmlNameEqual(rootNode, "pets"))
{
logger->log("PET Database: Error while loading %s!",
fileName.c_str());
return;
}
// iterate s
for_each_xml_child_node(petNode, rootNode)
{
if (xmlNameEqual(petNode, "include"))
{
const std::string name = XML::getProperty(petNode, "name", "");
if (!name.empty())
loadXmlFile(name);
continue;
}
else if (!xmlNameEqual(petNode, "pet"))
{
continue;
}
const int id = XML::getProperty(petNode, "id", -1);
if (id == -1)
{
logger->log("PET Database: PET with missing ID in %s!",
paths.getStringValue("petsFile").c_str());
continue;
}
BeingInfo *currentInfo = nullptr;
if (mPETInfos.find(id) != mPETInfos.end())
currentInfo = mPETInfos[id];
if (!currentInfo)
currentInfo = new BeingInfo;
currentInfo->setName(XML::langProperty(petNode,
// TRANSLATORS: unknown info name
"name", _("pet")));
currentInfo->setTargetSelection(XML::getBoolProperty(petNode,
"targetSelection", true));
BeingCommon::readBasicAttributes(currentInfo, petNode, "talk");
currentInfo->setDeadSortOffsetY(XML::getProperty(petNode,
"deadSortOffsetY", 31));
currentInfo->setStartFollowDist(XML::getProperty(petNode,
"startFollowDistance", 3));
currentInfo->setFollowDist(XML::getProperty(petNode,
"followDistance", 0));
currentInfo->setWarpDist(XML::getProperty(petNode,
"warpDistance", 11));
currentInfo->setWalkSpeed(XML::getProperty(petNode,
"walkSpeed", 0));
currentInfo->setTargetOffsetX(XML::getProperty(petNode,
"offsetX", 0));
currentInfo->setTargetOffsetY(XML::getProperty(petNode,
"offsetY", 1));
currentInfo->setSitOffsetX(XML::getProperty(petNode,
"sitOffsetX", 0));
currentInfo->setSitOffsetY(XML::getProperty(petNode,
"sitOffsetY", 1));
currentInfo->setMoveOffsetX(XML::getProperty(petNode,
"moveOffsetX", 0));
currentInfo->setMoveOffsetY(XML::getProperty(petNode,
"moveOffsetY", 1));
currentInfo->setDeadOffsetX(XML::getProperty(petNode,
"deadOffsetX", 0));
currentInfo->setDeadOffsetY(XML::getProperty(petNode,
"deadOffsetY", 1));
currentInfo->setAttackOffsetX(XML::getProperty(petNode,
"attackOffsetX", currentInfo->getTargetOffsetX()));
currentInfo->setAttackOffsetY(XML::getProperty(petNode,
"attackOffsetY", currentInfo->getTargetOffsetY()));
currentInfo->setThinkTime(XML::getProperty(petNode,
"thinkTime", 500) / 10);
currentInfo->setDirectionType(XML::getProperty(petNode,
"directionType", 1));
currentInfo->setSitDirectionType(XML::getProperty(petNode,
"sitDirectionType", 1));
currentInfo->setDeadDirectionType(XML::getProperty(petNode,
"deadDirectionType", 1));
currentInfo->setAttackDirectionType(XML::getProperty(petNode,
"attackDirectionType", 4));
SpriteDisplay display;
for_each_xml_child_node(spriteNode, petNode)
{
if (!spriteNode->xmlChildrenNode)
continue;
if (xmlNameEqual(spriteNode, "sprite"))
{
SpriteReference *const currentSprite = new SpriteReference;
currentSprite->sprite = reinterpret_cast(
spriteNode->xmlChildrenNode->content);
currentSprite->variant =
XML::getProperty(spriteNode, "variant", 0);
display.sprites.push_back(currentSprite);
}
else if (xmlNameEqual(spriteNode, "particlefx"))
{
std::string particlefx = reinterpret_cast(
spriteNode->xmlChildrenNode->content);
display.particles.push_back(particlefx);
}
}
currentInfo->setDisplay(display);
mPETInfos[id] = currentInfo;
}
}
void PETDB::unload()
{
delete_all(mPETInfos);
mPETInfos.clear();
mLoaded = false;
}
BeingInfo *PETDB::get(const int id)
{
const BeingInfoIterator i = mPETInfos.find(id);
if (i == mPETInfos.end())
{
logger->log("PETDB: Warning, unknown PET ID %d requested", id);
return BeingInfo::unknown;
}
else
{
return i->second;
}
}