aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/stateloader.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2013-06-16 15:11:18 +0300
committerEugene Sandulenko2013-09-06 14:48:12 +0300
commita8d733b2b2c8c110bada0c99ac801ecc1ca0b844 (patch)
tree44871d14d5c34f868d9e82beccbae93bd3880d03 /engines/fullpipe/stateloader.cpp
parent0f9c1281d4e4f0c4e2e942994f9162c88033c01f (diff)
downloadscummvm-rg350-a8d733b2b2c8c110bada0c99ac801ecc1ca0b844.tar.gz
scummvm-rg350-a8d733b2b2c8c110bada0c99ac801ecc1ca0b844.tar.bz2
scummvm-rg350-a8d733b2b2c8c110bada0c99ac801ecc1ca0b844.zip
FULLPIPE: Split out motion-related classes
Diffstat (limited to 'engines/fullpipe/stateloader.cpp')
-rw-r--r--engines/fullpipe/stateloader.cpp45
1 files changed, 0 insertions, 45 deletions
diff --git a/engines/fullpipe/stateloader.cpp b/engines/fullpipe/stateloader.cpp
index 5c68742cc8..75669df602 100644
--- a/engines/fullpipe/stateloader.cpp
+++ b/engines/fullpipe/stateloader.cpp
@@ -504,49 +504,4 @@ bool Sc2::load(MfcArchive &file) {
return true;
}
-
-bool CMotionController::load(MfcArchive &file) {
- // Is originally empty file.readClass();
-
-
- return true;
-}
-
-bool CMctlCompound::load(MfcArchive &file) {
- int count = file.readUint32LE();
-
- debug(0, "CMctlCompund::count = %d", count);
-
- for (int i = 0; i < count; i++) {
- CMctlCompoundArrayItem *obj = (CMctlCompoundArrayItem *)file.readClass();
-
- _motionControllers.push_back(*obj);
- }
-
- return true;
-}
-
-bool CMctlCompoundArray::load(MfcArchive &file) {
- int count = file.readUint32LE();
-
- debug(0, "CMctlCompundArray::count = %d", count);
-
- return true;
-}
-
-CMovGraph::CMovGraph() {
- _itemsCount = 0;
- _items = 0;
- //_callback1 = CMovGraphCallback1; // TODO
- _field_44 = 0;
- // insertMessageHandler(CMovGraph_messageHandler, getMessageHandlersCount() - 1, 129);
-}
-
-bool CMovGraph::load(MfcArchive &file) {
- _links.load(file);
- _nodes.load(file);
-
- return true;
-}
-
} // End of namespace Fullpipe