summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-12-24 14:33:13 +0300
committerAndrei Karas <akaras@inbox.ru>2013-12-24 14:33:13 +0300
commite707170f6b4f163e31ebf9624aacb43fb2bfb718 (patch)
tree9a52ca352668b90b1255f3394a62880d5667b95e /src
parentf812b1f3f1b508504170de4e2d3574775e89c4d1 (diff)
downloadplus-e707170f6b4f163e31ebf9624aacb43fb2bfb718.tar.gz
plus-e707170f6b4f163e31ebf9624aacb43fb2bfb718.tar.bz2
plus-e707170f6b4f163e31ebf9624aacb43fb2bfb718.tar.xz
plus-e707170f6b4f163e31ebf9624aacb43fb2bfb718.zip
dehardcode pet logic parameters.
New pet db parameters: startFollowDistance - distance from pet start follow owner. followDistance - distance on what pet preffer follow owner.
Diffstat (limited to 'src')
-rw-r--r--src/being/being.cpp4
-rw-r--r--src/resources/beinginfo.cpp2
-rw-r--r--src/resources/beinginfo.h14
-rw-r--r--src/resources/db/petdb.cpp5
4 files changed, 23 insertions, 2 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp
index 0b7010789..72d362eea 100644
--- a/src/being/being.cpp
+++ b/src/being/being.cpp
@@ -1617,8 +1617,8 @@ void Being::petLogic()
return;
int dstX = mOwner->getTileX();
int dstY = mOwner->getTileY();
- const int followDist = 3;
- const int dist = 1;
+ const int followDist = mInfo->getStartFollowDist();
+ const int dist = mInfo->getFollowDist();
const int divX = abs(dstX - mX);
const int divY = abs(dstY - mY);
if (divX > followDist || divY > followDist)
diff --git a/src/resources/beinginfo.cpp b/src/resources/beinginfo.cpp
index 92169314a..7a8d1e0ce 100644
--- a/src/resources/beinginfo.cpp
+++ b/src/resources/beinginfo.cpp
@@ -60,6 +60,8 @@ BeingInfo::BeingInfo() :
mAvatarId(0),
mWidth(0),
mHeight(0),
+ mStartFollowDist(3),
+ mFollowDist(1),
mStaticMaxHP(false),
mTargetSelection(true)
{
diff --git a/src/resources/beinginfo.h b/src/resources/beinginfo.h
index 008af8590..a752898f8 100644
--- a/src/resources/beinginfo.h
+++ b/src/resources/beinginfo.h
@@ -224,6 +224,18 @@ class BeingInfo final
void setHeight(const int n)
{ mHeight = n; }
+ void setStartFollowDist(const int n)
+ { mStartFollowDist = n; }
+
+ int getStartFollowDist()
+ { return mStartFollowDist; }
+
+ void setFollowDist(const int n)
+ { mFollowDist = n; }
+
+ int getFollowDist()
+ { return mFollowDist; }
+
void setColorsList(const std::string &name);
std::string getColor(const int idx) const;
@@ -254,6 +266,8 @@ class BeingInfo final
uint16_t mAvatarId;
int mWidth;
int mHeight;
+ int mStartFollowDist;
+ int mFollowDist;
bool mStaticMaxHP;
bool mTargetSelection;
};
diff --git a/src/resources/db/petdb.cpp b/src/resources/db/petdb.cpp
index 169c8ee39..829da3ef6 100644
--- a/src/resources/db/petdb.cpp
+++ b/src/resources/db/petdb.cpp
@@ -82,6 +82,11 @@ void PETDB::load()
currentInfo->setDeadSortOffsetY(XML::getProperty(petNode,
"deadSortOffsetY", 31));
+ currentInfo->setStartFollowDist(XML::getProperty(petNode,
+ "startFollowDistance", 3));
+ currentInfo->setFollowDist(XML::getProperty(petNode,
+ "followDistance", 1));
+
SpriteDisplay display;
for_each_xml_child_node(spriteNode, petNode)
{