2013-06-16 15:11:18 +03:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "fullpipe/fullpipe.h"
|
|
|
|
|
|
|
|
#include "common/file.h"
|
|
|
|
#include "common/array.h"
|
|
|
|
#include "common/list.h"
|
|
|
|
|
|
|
|
#include "fullpipe/objects.h"
|
|
|
|
#include "fullpipe/motion.h"
|
|
|
|
|
|
|
|
namespace Fullpipe {
|
|
|
|
|
|
|
|
bool CMotionController::load(MfcArchive &file) {
|
|
|
|
// Is originally empty file.readClass();
|
|
|
|
|
2013-07-12 09:03:02 +03:00
|
|
|
debug(5, "CMotionController::load()");
|
2013-06-16 15:11:18 +03:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CMctlCompound::load(MfcArchive &file) {
|
2013-07-12 09:03:02 +03:00
|
|
|
debug(5, "CMctlCompound::load()");
|
|
|
|
|
2013-06-16 15:11:18 +03:00
|
|
|
int count = file.readUint32LE();
|
|
|
|
|
2013-06-18 17:27:17 -04:00
|
|
|
debug(6, "CMctlCompound::count = %d", count);
|
2013-06-16 15:11:18 +03:00
|
|
|
|
|
|
|
for (int i = 0; i < count; i++) {
|
2013-07-06 22:56:11 +03:00
|
|
|
debug(6, "CompoundArray[%d]", i);
|
|
|
|
CMctlCompoundArrayItem *obj = (CMctlCompoundArrayItem *)file.readClass();
|
2013-06-16 15:11:18 +03:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
int count1 = file.readUint32LE();
|
2013-06-18 17:07:28 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
debug(6, "ConnectionPoint::count: %d", count1);
|
|
|
|
for (int j = 0; j < count1; j++) {
|
|
|
|
debug(6, "ConnectionPoint[%d]", j);
|
|
|
|
CMctlConnectionPoint *obj1 = (CMctlConnectionPoint *)file.readClass();
|
2013-06-18 17:07:28 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
obj->_connectionPoints.push_back(*obj1);
|
|
|
|
}
|
2013-06-18 17:07:28 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
obj->_field_20 = file.readUint32LE();
|
|
|
|
obj->_field_24 = file.readUint32LE();
|
2013-06-18 17:07:28 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
debug(6, "graphReact");
|
|
|
|
obj->_movGraphReactObj = (CMovGraphReact *)file.readClass();
|
2013-06-18 17:07:28 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
_motionControllers.push_back(*obj);
|
2013-06-16 15:11:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CMctlCompoundArray::load(MfcArchive &file) {
|
2013-07-12 09:03:02 +03:00
|
|
|
debug(5, "CMctlCompoundArray::load()");
|
|
|
|
|
2013-06-16 15:11:18 +03:00
|
|
|
int count = file.readUint32LE();
|
|
|
|
|
2013-06-18 17:07:28 -04:00
|
|
|
debug(0, "CMctlCompoundArray::count = %d", count);
|
2013-06-16 15:11:18 +03:00
|
|
|
|
2013-06-18 17:27:17 -04:00
|
|
|
assert(0);
|
|
|
|
|
2013-06-16 15:11:18 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
CMovGraph::CMovGraph() {
|
2013-07-06 22:56:11 +03:00
|
|
|
_itemsCount = 0;
|
|
|
|
_items = 0;
|
|
|
|
//_callback1 = CMovGraphCallback1; // TODO
|
|
|
|
_field_44 = 0;
|
|
|
|
// insertMessageHandler(CMovGraph_messageHandler, getMessageHandlersCount() - 1, 129);
|
2013-06-16 15:11:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CMovGraph::load(MfcArchive &file) {
|
2013-07-12 09:03:02 +03:00
|
|
|
debug(5, "CMovGraph::load()");
|
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
_links.load(file);
|
|
|
|
_nodes.load(file);
|
2013-06-16 15:11:18 +03:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
return true;
|
2013-06-16 15:11:18 +03:00
|
|
|
}
|
|
|
|
|
2013-06-16 16:10:46 +03:00
|
|
|
CMovGraphLink::CMovGraphLink() {
|
2013-07-06 22:56:11 +03:00
|
|
|
_distance = 0;
|
|
|
|
_angle = 0;
|
|
|
|
_flags = 0x10000000;
|
|
|
|
_movGraphNode2 = 0;
|
|
|
|
_movGraphNode1 = 0;
|
|
|
|
_field_3C = 0;
|
|
|
|
_field_38 = 0;
|
|
|
|
_movGraphReact = 0;
|
2013-06-16 16:10:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CMovGraphLink::load(MfcArchive &file) {
|
2013-07-12 09:03:02 +03:00
|
|
|
debug(5, "CMovGraphLink::load()");
|
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
_dwordArray1.load(file);
|
|
|
|
_dwordArray2.load(file);
|
2013-06-16 16:10:46 +03:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
_flags = file.readUint32LE();
|
2013-06-16 16:10:46 +03:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
debug(8, "GraphNode1");
|
|
|
|
_movGraphNode1 = (CMovGraphNode *)file.readClass();
|
|
|
|
debug(8, "GraphNode2");
|
|
|
|
_movGraphNode2 = (CMovGraphNode *)file.readClass();
|
2013-06-16 16:10:46 +03:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
_distance = file.readDouble();
|
|
|
|
_angle = file.readDouble();
|
2013-06-16 16:10:46 +03:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
debug(8, "distance: %g, angle: %g", _distance, _angle);
|
2013-06-16 16:10:46 +03:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
_movGraphReact = (CMovGraphReact *)file.readClass();
|
|
|
|
_name = file.readPascalString();
|
2013-06-16 16:10:46 +03:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
return true;
|
2013-06-16 16:10:46 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CMovGraphNode::load(MfcArchive &file) {
|
2013-07-12 09:03:02 +03:00
|
|
|
debug(5, "CMovGraphNode::load()");
|
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
_field_14 = file.readUint32LE();
|
|
|
|
_x = file.readUint32LE();
|
|
|
|
_y = file.readUint32LE();
|
|
|
|
_distance = file.readUint32LE();
|
2013-06-16 16:10:46 +03:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
return true;
|
2013-06-16 16:10:46 +03:00
|
|
|
}
|
|
|
|
|
2013-06-18 10:04:29 -04:00
|
|
|
CReactParallel::CReactParallel() {
|
2013-07-06 22:56:11 +03:00
|
|
|
_x1 = 0;
|
|
|
|
_x2 = 0;
|
|
|
|
_dy = 0;
|
|
|
|
_dx = 0;
|
|
|
|
_points = 0;
|
|
|
|
_y1 = 0;
|
|
|
|
_y2 = 0;
|
2013-06-18 10:04:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CReactParallel::load(MfcArchive &file) {
|
2013-07-12 09:03:02 +03:00
|
|
|
debug(5, "CReactParallel::load()");
|
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
_x1 = file.readUint32LE();
|
|
|
|
_y1 = file.readUint32LE();
|
|
|
|
_x2 = file.readUint32LE();
|
|
|
|
_y2 = file.readUint32LE();
|
|
|
|
_dx = file.readUint32LE();
|
|
|
|
_dy = file.readUint32LE();
|
2013-06-18 10:04:29 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
createRegion();
|
2013-06-18 10:04:29 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
return true;
|
2013-06-18 10:04:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void CReactParallel::createRegion() {
|
2013-07-06 22:56:11 +03:00
|
|
|
_points = (Common::Point **)malloc(sizeof(Common::Point *) * 4);
|
|
|
|
|
|
|
|
for (int i = 0; i < 4; i++)
|
|
|
|
_points[i] = new Common::Point;
|
2013-06-18 10:04:29 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
double at = atan2(_x1 - _x2, _y1 - _y2) + 1.570796;
|
|
|
|
double sn = sin(at);
|
|
|
|
double cs = cos(at);
|
2013-06-18 10:04:29 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
_points[0]->x = (int16)(_x1 - _dx * cs);
|
|
|
|
_points[0]->y = (int16)(_y1 - _dx * sn);
|
2013-06-18 10:04:29 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
_points[1]->x = (int16)(_x2 - _dx * cs);
|
|
|
|
_points[1]->y = (int16)(_y2 - _dx * sn);
|
2013-06-18 10:04:29 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
_points[2]->x = (int16)(_x1 + _dy * cs);
|
|
|
|
_points[2]->y = (int16)(_y2 + _dy * sn);
|
2013-06-18 10:04:29 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
_points[3]->x = (int16)(_x1 + _dy * cs);
|
|
|
|
_points[3]->y = (int16)(_y1 + _dy * sn);
|
2013-06-18 10:04:29 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
// GdiObject::Attach(_rgn, CreatePolygonRgn(_points, 4, 2);
|
2013-06-18 10:04:29 -04:00
|
|
|
}
|
|
|
|
|
2013-06-18 10:23:49 -04:00
|
|
|
CReactPolygonal::CReactPolygonal() {
|
2013-07-06 22:56:11 +03:00
|
|
|
_field_C = 0;
|
|
|
|
_points = 0;
|
|
|
|
_pointCount = 0;
|
|
|
|
_field_10 = 0;
|
2013-06-18 10:23:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CReactPolygonal::load(MfcArchive &file) {
|
2013-07-12 09:03:02 +03:00
|
|
|
debug(5, "CReactPolygonal::load()");
|
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
_field_C = file.readUint32LE();
|
|
|
|
_field_10 = file.readUint32LE();
|
|
|
|
_pointCount = file.readUint32LE();
|
2013-06-18 10:23:49 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
if (_pointCount > 0) {
|
|
|
|
_points = (Common::Point **)malloc(sizeof(Common::Point *) * _pointCount);
|
2013-06-18 10:23:49 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
for (int i = 0; i < _pointCount; i++) {
|
|
|
|
_points[i] = new Common::Point;
|
2013-06-18 10:23:49 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
_points[i]->x = file.readUint32LE();
|
|
|
|
_points[i]->y = file.readUint32LE();
|
|
|
|
}
|
2013-06-18 10:23:49 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
}
|
2013-06-18 10:23:49 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
createRegion();
|
2013-06-18 10:23:49 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
return true;
|
2013-06-18 10:23:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void CReactPolygonal::createRegion() {
|
2013-07-06 22:56:11 +03:00
|
|
|
if (_points) {
|
2013-06-18 10:23:49 -04:00
|
|
|
|
2013-07-06 22:56:11 +03:00
|
|
|
// GdiObject::Attach(_rgn, CreatePolygonRgn(_points, _pointCount, 2);
|
|
|
|
}
|
2013-06-18 10:23:49 -04:00
|
|
|
}
|
2013-06-18 10:04:29 -04:00
|
|
|
|
2013-06-16 15:11:18 +03:00
|
|
|
} // End of namespace Fullpipe
|