diff options
author | Eugene Sandulenko | 2013-12-06 22:59:42 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2013-12-06 22:59:42 +0200 |
commit | 9fbc292404cbb5ec6d1ad37cd56dc9141dfe4048 (patch) | |
tree | 93b12ac2c49f790e720c0c0a1df1deb6fa1ad6f4 | |
parent | 00a6ded66c962efc904f3672b5ec051ec198b8cd (diff) | |
download | scummvm-rg350-9fbc292404cbb5ec6d1ad37cd56dc9141dfe4048.tar.gz scummvm-rg350-9fbc292404cbb5ec6d1ad37cd56dc9141dfe4048.tar.bz2 scummvm-rg350-9fbc292404cbb5ec6d1ad37cd56dc9141dfe4048.zip |
FULLPIPE: More stubs in MctlLadder
-rw-r--r-- | engines/fullpipe/motion.cpp | 20 | ||||
-rw-r--r-- | engines/fullpipe/motion.h | 6 |
2 files changed, 26 insertions, 0 deletions
diff --git a/engines/fullpipe/motion.cpp b/engines/fullpipe/motion.cpp index 844813807e..080c607159 100644 --- a/engines/fullpipe/motion.cpp +++ b/engines/fullpipe/motion.cpp @@ -202,6 +202,26 @@ int MctlLadder::collisionDetection(StaticANIObject *man) { return 0; } +void MctlLadder::addObject(StaticANIObject *obj) { + warning("STUB: MctlLadder::addObject()"); +} + +void MctlLadder::freeItems() { + warning("STUB: MctlLadder::freeItems()"); +} + +MessageQueue *MctlLadder::method34(StaticANIObject *subj, int xpos, int ypos, int fuzzyMatch, int staticsId) { + warning("STUB: MctlLadder::method34()"); + + return 0; +} + +MessageQueue *MctlLadder::doWalkTo(StaticANIObject *subj, int xpos, int ypos, int fuzzyMatch, int staticsId) { + warning("STUB: MctlLadder::doWalkTo()"); + + return 0; +} + MctlConnectionPoint *MctlCompound::findClosestConnectionPoint(int ox, int oy, int destIndex, int connectionX, int connectionY, int sourceIndex, int *minDistancePtr) { warning("STUB: MctlCompound::findClosestConnectionPoint()"); diff --git a/engines/fullpipe/motion.h b/engines/fullpipe/motion.h index 6cc3862ca8..43ec367545 100644 --- a/engines/fullpipe/motion.h +++ b/engines/fullpipe/motion.h @@ -192,6 +192,12 @@ public: public: MctlLadder(); int collisionDetection(StaticANIObject *man); + + virtual void addObject(StaticANIObject *obj); + virtual int removeObject(StaticANIObject *obj) { return 1; } + virtual void freeItems(); + virtual MessageQueue *method34(StaticANIObject *subj, int xpos, int ypos, int fuzzyMatch, int staticsId); + virtual MessageQueue *doWalkTo(StaticANIObject *subj, int xpos, int ypos, int fuzzyMatch, int staticsId); }; class MovGraphNode : public CObject { |