aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/motion.h
diff options
context:
space:
mode:
authorEugene Sandulenko2016-08-14 22:09:34 +0200
committerEugene Sandulenko2016-08-14 22:56:17 +0200
commit23e62424e217eb41889b20a085d07cca7bcc6e33 (patch)
treee972eff513aba79118540c07e785261d243a4fb1 /engines/fullpipe/motion.h
parent8ea436686dc0bd1726831f1648778903896b26c7 (diff)
downloadscummvm-rg350-23e62424e217eb41889b20a085d07cca7bcc6e33.tar.gz
scummvm-rg350-23e62424e217eb41889b20a085d07cca7bcc6e33.tar.bz2
scummvm-rg350-23e62424e217eb41889b20a085d07cca7bcc6e33.zip
FULLPIPE: Rename MovGraph2 to MctlGraph
Diffstat (limited to 'engines/fullpipe/motion.h')
-rw-r--r--engines/fullpipe/motion.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/fullpipe/motion.h b/engines/fullpipe/motion.h
index 96bde0d4b7..fd26550535 100644
--- a/engines/fullpipe/motion.h
+++ b/engines/fullpipe/motion.h
@@ -115,7 +115,7 @@ public:
virtual MessageQueue *startMove(StaticANIObject *subj, int xpos, int ypos, int fuzzyMatch, int staticsId);
virtual MessageQueue *doWalkTo(StaticANIObject *subj, int xpos, int ypos, int fuzzyMatch, int staticsId);
- void initMovGraph2();
+ void initMctlGraph();
MctlConnectionPoint *findClosestConnectionPoint(int ox, int oy, int destIndex, int connectionX, int connectionY, int sourceIndex, double *minDistancePtr);
void replaceNodeX(int from, int to);
@@ -326,7 +326,7 @@ struct MG2I {
int _my;
};
-struct MovGraph2ItemSub {
+struct MctlGraphItemSub {
int _staticsId2;
int _staticsId1;
MG2I _walk[3];
@@ -363,15 +363,15 @@ struct MovInfo1 {
void clear();
};
-struct MovGraph2Item { // 744
+struct MctlGraphItem { // 744
int _objectId;
StaticANIObject *_obj;
- MovGraph2ItemSub _subItems[4]; // 184
+ MctlGraphItemSub _subItems[4]; // 184
};
-class MovGraph2 : public MovGraph {
+class MctlGraph : public MovGraph {
public:
- Common::Array<MovGraph2Item *> _items2;
+ Common::Array<MctlGraphItem *> _items2;
public:
virtual void attachObject(StaticANIObject *obj);
@@ -388,7 +388,7 @@ public:
int getShortSide(MovGraphLink *lnk, int x, int y);
int findLink(Common::Array<MovGraphLink *> *linkList, int idx, Common::Rect *a3, Common::Point *a4);
- bool initDirections(StaticANIObject *obj, MovGraph2Item *item);
+ bool initDirections(StaticANIObject *obj, MctlGraphItem *item);
void buildMovInfo1SubItems(MovInfo1 *movinfo, Common::Array<MovGraphLink *> *linkList, LinkInfo *lnkSrc, LinkInfo *lnkDst);
MessageQueue *buildMovInfo1MessageQueue(MovInfo1 *movInfo);