aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/motion.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2013-07-06 22:56:11 +0300
committerEugene Sandulenko2013-09-06 14:48:17 +0300
commitc2103bb9cd4b8b2958ea99c7797df2cd4f0905d5 (patch)
tree61c40f7e340c77d58244be0f2cba19c38fa56a9c /engines/fullpipe/motion.cpp
parent69946ce96355e5e07ad7a21ab3eb2f2831dfc002 (diff)
downloadscummvm-rg350-c2103bb9cd4b8b2958ea99c7797df2cd4f0905d5.tar.gz
scummvm-rg350-c2103bb9cd4b8b2958ea99c7797df2cd4f0905d5.tar.bz2
scummvm-rg350-c2103bb9cd4b8b2958ea99c7797df2cd4f0905d5.zip
FULLPIPE: Fix indentation
Diffstat (limited to 'engines/fullpipe/motion.cpp')
-rw-r--r--engines/fullpipe/motion.cpp198
1 files changed, 99 insertions, 99 deletions
diff --git a/engines/fullpipe/motion.cpp b/engines/fullpipe/motion.cpp
index 3ff61816ef..4acf568328 100644
--- a/engines/fullpipe/motion.cpp
+++ b/engines/fullpipe/motion.cpp
@@ -44,26 +44,26 @@ bool CMctlCompound::load(MfcArchive &file) {
debug(6, "CMctlCompound::count = %d", count);
for (int i = 0; i < count; i++) {
- debug(6, "CompoundArray[%d]", i);
- CMctlCompoundArrayItem *obj = (CMctlCompoundArrayItem *)file.readClass();
+ debug(6, "CompoundArray[%d]", i);
+ CMctlCompoundArrayItem *obj = (CMctlCompoundArrayItem *)file.readClass();
- int count1 = file.readUint32LE();
+ int count1 = file.readUint32LE();
- debug(6, "ConnectionPoint::count: %d", count1);
- for (int j = 0; j < count1; j++) {
- debug(6, "ConnectionPoint[%d]", j);
- CMctlConnectionPoint *obj1 = (CMctlConnectionPoint *)file.readClass();
+ debug(6, "ConnectionPoint::count: %d", count1);
+ for (int j = 0; j < count1; j++) {
+ debug(6, "ConnectionPoint[%d]", j);
+ CMctlConnectionPoint *obj1 = (CMctlConnectionPoint *)file.readClass();
- obj->_connectionPoints.push_back(*obj1);
- }
+ obj->_connectionPoints.push_back(*obj1);
+ }
- obj->_field_20 = file.readUint32LE();
- obj->_field_24 = file.readUint32LE();
+ obj->_field_20 = file.readUint32LE();
+ obj->_field_24 = file.readUint32LE();
- debug(6, "graphReact");
- obj->_movGraphReactObj = (CMovGraphReact *)file.readClass();
+ debug(6, "graphReact");
+ obj->_movGraphReactObj = (CMovGraphReact *)file.readClass();
- _motionControllers.push_back(*obj);
+ _motionControllers.push_back(*obj);
}
return true;
@@ -80,144 +80,144 @@ bool CMctlCompoundArray::load(MfcArchive &file) {
}
CMovGraph::CMovGraph() {
- _itemsCount = 0;
- _items = 0;
- //_callback1 = CMovGraphCallback1; // TODO
- _field_44 = 0;
- // insertMessageHandler(CMovGraph_messageHandler, getMessageHandlersCount() - 1, 129);
+ _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);
+ _links.load(file);
+ _nodes.load(file);
- return true;
+ return true;
}
CMovGraphLink::CMovGraphLink() {
- _distance = 0;
- _angle = 0;
- _flags = 0x10000000;
- _movGraphNode2 = 0;
- _movGraphNode1 = 0;
- _field_3C = 0;
- _field_38 = 0;
- _movGraphReact = 0;
+ _distance = 0;
+ _angle = 0;
+ _flags = 0x10000000;
+ _movGraphNode2 = 0;
+ _movGraphNode1 = 0;
+ _field_3C = 0;
+ _field_38 = 0;
+ _movGraphReact = 0;
}
bool CMovGraphLink::load(MfcArchive &file) {
- _dwordArray1.load(file);
- _dwordArray2.load(file);
+ _dwordArray1.load(file);
+ _dwordArray2.load(file);
- _flags = file.readUint32LE();
+ _flags = file.readUint32LE();
- debug(8, "GraphNode1");
- _movGraphNode1 = (CMovGraphNode *)file.readClass();
- debug(8, "GraphNode2");
- _movGraphNode2 = (CMovGraphNode *)file.readClass();
+ debug(8, "GraphNode1");
+ _movGraphNode1 = (CMovGraphNode *)file.readClass();
+ debug(8, "GraphNode2");
+ _movGraphNode2 = (CMovGraphNode *)file.readClass();
- _distance = file.readDouble();
- _angle = file.readDouble();
+ _distance = file.readDouble();
+ _angle = file.readDouble();
- debug(8, "distance: %g, angle: %g", _distance, _angle);
+ debug(8, "distance: %g, angle: %g", _distance, _angle);
- _movGraphReact = (CMovGraphReact *)file.readClass();
- _name = file.readPascalString();
+ _movGraphReact = (CMovGraphReact *)file.readClass();
+ _name = file.readPascalString();
- return true;
+ return true;
}
bool CMovGraphNode::load(MfcArchive &file) {
- _field_14 = file.readUint32LE();
- _x = file.readUint32LE();
- _y = file.readUint32LE();
- _distance = file.readUint32LE();
+ _field_14 = file.readUint32LE();
+ _x = file.readUint32LE();
+ _y = file.readUint32LE();
+ _distance = file.readUint32LE();
- return true;
+ return true;
}
CReactParallel::CReactParallel() {
- _x1 = 0;
- _x2 = 0;
- _dy = 0;
- _dx = 0;
- _points = 0;
- _y1 = 0;
- _y2 = 0;
+ _x1 = 0;
+ _x2 = 0;
+ _dy = 0;
+ _dx = 0;
+ _points = 0;
+ _y1 = 0;
+ _y2 = 0;
}
bool CReactParallel::load(MfcArchive &file) {
- _x1 = file.readUint32LE();
- _y1 = file.readUint32LE();
- _x2 = file.readUint32LE();
- _y2 = file.readUint32LE();
- _dx = file.readUint32LE();
- _dy = file.readUint32LE();
+ _x1 = file.readUint32LE();
+ _y1 = file.readUint32LE();
+ _x2 = file.readUint32LE();
+ _y2 = file.readUint32LE();
+ _dx = file.readUint32LE();
+ _dy = file.readUint32LE();
- createRegion();
+ createRegion();
- return true;
+ return true;
}
void CReactParallel::createRegion() {
- _points = (Common::Point **)malloc(sizeof(Common::Point *) * 4);
+ _points = (Common::Point **)malloc(sizeof(Common::Point *) * 4);
+
+ for (int i = 0; i < 4; i++)
+ _points[i] = new Common::Point;
- for (int i = 0; i < 4; i++)
- _points[i] = new Common::Point;
+ double at = atan2(_x1 - _x2, _y1 - _y2) + 1.570796;
+ double sn = sin(at);
+ double cs = cos(at);
- double at = atan2(_x1 - _x2, _y1 - _y2) + 1.570796;
- double sn = sin(at);
- double cs = cos(at);
+ _points[0]->x = (int16)(_x1 - _dx * cs);
+ _points[0]->y = (int16)(_y1 - _dx * sn);
- _points[0]->x = (int16)(_x1 - _dx * cs);
- _points[0]->y = (int16)(_y1 - _dx * sn);
+ _points[1]->x = (int16)(_x2 - _dx * cs);
+ _points[1]->y = (int16)(_y2 - _dx * sn);
- _points[1]->x = (int16)(_x2 - _dx * cs);
- _points[1]->y = (int16)(_y2 - _dx * sn);
-
- _points[2]->x = (int16)(_x1 + _dy * cs);
- _points[2]->y = (int16)(_y2 + _dy * sn);
+ _points[2]->x = (int16)(_x1 + _dy * cs);
+ _points[2]->y = (int16)(_y2 + _dy * sn);
- _points[3]->x = (int16)(_x1 + _dy * cs);
- _points[3]->y = (int16)(_y1 + _dy * sn);
+ _points[3]->x = (int16)(_x1 + _dy * cs);
+ _points[3]->y = (int16)(_y1 + _dy * sn);
- // GdiObject::Attach(_rgn, CreatePolygonRgn(_points, 4, 2);
+ // GdiObject::Attach(_rgn, CreatePolygonRgn(_points, 4, 2);
}
CReactPolygonal::CReactPolygonal() {
- _field_C = 0;
- _points = 0;
- _pointCount = 0;
- _field_10 = 0;
+ _field_C = 0;
+ _points = 0;
+ _pointCount = 0;
+ _field_10 = 0;
}
bool CReactPolygonal::load(MfcArchive &file) {
- _field_C = file.readUint32LE();
- _field_10 = file.readUint32LE();
- _pointCount = file.readUint32LE();
+ _field_C = file.readUint32LE();
+ _field_10 = file.readUint32LE();
+ _pointCount = file.readUint32LE();
- if (_pointCount > 0) {
- _points = (Common::Point **)malloc(sizeof(Common::Point *) * _pointCount);
+ if (_pointCount > 0) {
+ _points = (Common::Point **)malloc(sizeof(Common::Point *) * _pointCount);
- for (int i = 0; i < _pointCount; i++) {
- _points[i] = new Common::Point;
+ for (int i = 0; i < _pointCount; i++) {
+ _points[i] = new Common::Point;
- _points[i]->x = file.readUint32LE();
- _points[i]->y = file.readUint32LE();
- }
+ _points[i]->x = file.readUint32LE();
+ _points[i]->y = file.readUint32LE();
+ }
- }
+ }
- createRegion();
+ createRegion();
- return true;
+ return true;
}
void CReactPolygonal::createRegion() {
- if (_points) {
+ if (_points) {
- // GdiObject::Attach(_rgn, CreatePolygonRgn(_points, _pointCount, 2);
- }
+ // GdiObject::Attach(_rgn, CreatePolygonRgn(_points, _pointCount, 2);
+ }
}
} // End of namespace Fullpipe