summaryrefslogtreecommitdiff
path: root/src/resources
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources')
-rw-r--r--src/resources/beinginfo.cpp3
-rw-r--r--src/resources/beinginfo.h7
-rw-r--r--src/resources/db/petdb.cpp3
3 files changed, 13 insertions, 0 deletions
diff --git a/src/resources/beinginfo.cpp b/src/resources/beinginfo.cpp
index fc23bf231..20a15429c 100644
--- a/src/resources/beinginfo.cpp
+++ b/src/resources/beinginfo.cpp
@@ -66,6 +66,9 @@ BeingInfo::BeingInfo() :
mWalkSpeed(0),
mSitOffsetX(0),
mSitOffsetY(0),
+ mThinkTime(50),
+ mDirectionType(1),
+ mSitDirectionType(1),
mStaticMaxHP(false),
mTargetSelection(true)
{
diff --git a/src/resources/beinginfo.h b/src/resources/beinginfo.h
index c1d53ccde..bb8f6b6ff 100644
--- a/src/resources/beinginfo.h
+++ b/src/resources/beinginfo.h
@@ -272,6 +272,12 @@ class BeingInfo final
int getDirectionType() const A_WARN_UNUSED
{ return mDirectionType; }
+ void setSitDirectionType(const int n)
+ { mSitDirectionType = n; }
+
+ int getSitDirectionType() const A_WARN_UNUSED
+ { return mSitDirectionType; }
+
void setColorsList(const std::string &name);
std::string getColor(const int idx) const A_WARN_UNUSED;
@@ -310,6 +316,7 @@ class BeingInfo final
int mSitOffsetY;
int mThinkTime;
int mDirectionType;
+ int mSitDirectionType;
bool mStaticMaxHP;
bool mTargetSelection;
};
diff --git a/src/resources/db/petdb.cpp b/src/resources/db/petdb.cpp
index 072dad7c0..631dceb60 100644
--- a/src/resources/db/petdb.cpp
+++ b/src/resources/db/petdb.cpp
@@ -103,8 +103,11 @@ void PETDB::load()
currentInfo->setThinkTime(XML::getProperty(petNode,
"thinkTime", 500) / 10);
+
currentInfo->setDirectionType(XML::getProperty(petNode,
"directionType", 1));
+ currentInfo->setSitDirectionType(XML::getProperty(petNode,
+ "sitDirectionType", 1));
SpriteDisplay display;
for_each_xml_child_node(spriteNode, petNode)