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"
|
2013-09-28 14:15:46 +03:00
|
|
|
#include "fullpipe/statics.h"
|
2013-06-16 15:11:18 +03:00
|
|
|
#include "fullpipe/motion.h"
|
2013-09-18 00:00:33 +04:00
|
|
|
#include "fullpipe/messages.h"
|
2013-09-18 22:30:06 +04:00
|
|
|
#include "fullpipe/gameloader.h"
|
2013-06-16 15:11:18 +03:00
|
|
|
|
|
|
|
namespace Fullpipe {
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
bool MotionController::load(MfcArchive &file) {
|
2013-06-16 15:11:18 +03:00
|
|
|
// Is originally empty file.readClass();
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
debug(5, "MotionController::load()");
|
2013-06-16 15:11:18 +03:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
bool MctlCompound::load(MfcArchive &file) {
|
|
|
|
debug(5, "MctlCompound::load()");
|
2013-07-12 09:03:02 +03:00
|
|
|
|
2013-06-16 15:11:18 +03:00
|
|
|
int count = file.readUint32LE();
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
debug(6, "MctlCompound::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);
|
2013-09-28 11:21:13 +03:00
|
|
|
MctlCompoundArrayItem *obj = new MctlCompoundArrayItem();
|
|
|
|
|
|
|
|
obj->_motionControllerObj = (MotionController *)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);
|
2013-09-18 19:04:36 +04:00
|
|
|
MctlConnectionPoint *obj1 = (MctlConnectionPoint *)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");
|
2013-09-18 19:04:36 +04:00
|
|
|
obj->_movGraphReactObj = (MovGraphReact *)file.readClass();
|
2013-06-18 17:07:28 -04:00
|
|
|
|
2013-09-27 22:16:15 +03:00
|
|
|
_motionControllers.push_back(obj);
|
2013-06-16 15:11:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-09-28 13:06:06 +03:00
|
|
|
void MctlCompound::addObject(StaticANIObject *obj) {
|
|
|
|
for (uint i = 0; i < _motionControllers.size(); i++)
|
|
|
|
_motionControllers[i]->_motionControllerObj->addObject(obj);
|
2013-09-24 23:24:33 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int MctlCompound::removeObject(StaticANIObject *obj) {
|
|
|
|
warning("STUB: MctlCompound::removeObject()");
|
|
|
|
|
|
|
|
return 0;
|
2013-07-22 18:46:03 +03:00
|
|
|
}
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
void MctlCompound::initMovGraph2() {
|
2013-09-26 00:07:31 +03:00
|
|
|
if (_objtype != kObjTypeMctlCompound)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (uint i = 0; i < _motionControllers.size(); i++) {
|
|
|
|
if (_motionControllers[i]->_motionControllerObj->_objtype != kObjTypeMovGraph)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
MovGraph *gr = (MovGraph *)_motionControllers[i]->_motionControllerObj;
|
|
|
|
|
2013-09-27 22:16:15 +03:00
|
|
|
MovGraph2 *newgr = new MovGraph2();
|
2013-09-26 00:07:31 +03:00
|
|
|
|
2013-09-27 22:16:15 +03:00
|
|
|
newgr->_links = gr->_links;
|
|
|
|
newgr->_nodes = gr->_nodes;
|
2013-09-26 00:07:31 +03:00
|
|
|
|
|
|
|
gr->_links.clear();
|
|
|
|
gr->_nodes.clear();
|
|
|
|
|
|
|
|
delete gr;
|
|
|
|
|
|
|
|
_motionControllers[i]->_motionControllerObj = newgr;
|
|
|
|
}
|
2013-07-25 00:34:15 +03:00
|
|
|
}
|
|
|
|
|
2013-09-24 23:24:33 +03:00
|
|
|
void MctlCompound::freeItems() {
|
|
|
|
warning("STUB: MctlCompound::freeItems()");
|
|
|
|
}
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
MessageQueue *MctlCompound::method34(StaticANIObject *subj, int xpos, int ypos, int flag, int staticsId) {
|
|
|
|
warning("STUB: MctlCompound::method34()");
|
2013-09-08 23:53:02 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
MessageQueue *MctlCompound::method4C(StaticANIObject *subj, int xpos, int ypos, int flag, int staticsId) {
|
|
|
|
warning("STUB: MctlCompound::method4C()");
|
2013-09-08 23:53:02 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
bool MctlCompoundArray::load(MfcArchive &file) {
|
|
|
|
debug(5, "MctlCompoundArray::load()");
|
2013-07-12 09:03:02 +03:00
|
|
|
|
2013-06-16 15:11:18 +03:00
|
|
|
int count = file.readUint32LE();
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
debug(0, "MctlCompoundArray::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;
|
|
|
|
}
|
|
|
|
|
2013-10-01 22:56:50 +03:00
|
|
|
MovGraphItem::MovGraphItem() {
|
|
|
|
ani = 0;
|
|
|
|
field_4 = 0;
|
|
|
|
field_8 = 0;
|
|
|
|
field_C = 0;
|
|
|
|
field_10 = 0;
|
|
|
|
field_14 = 0;
|
|
|
|
field_18 = 0;
|
|
|
|
field_1C = 0;
|
|
|
|
field_20 = 0;
|
|
|
|
field_24 = 0;
|
|
|
|
items = 0;
|
|
|
|
count = 0;
|
|
|
|
field_30 = 0;
|
|
|
|
field_34 = 0;
|
|
|
|
field_38 = 0;
|
|
|
|
field_3C = 0;
|
|
|
|
}
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
int MovGraph_messageHandler(ExCommand *cmd);
|
2013-09-18 00:00:33 +04:00
|
|
|
|
2013-09-18 22:19:37 +04:00
|
|
|
int MovGraphCallback(int a1, int a2, int a3) {
|
|
|
|
warning("STUB: MovgraphCallback");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
MovGraph::MovGraph() {
|
2013-09-18 22:19:37 +04:00
|
|
|
_callback1 = MovGraphCallback;
|
2013-07-06 22:56:11 +03:00
|
|
|
_field_44 = 0;
|
2013-09-18 19:04:36 +04:00
|
|
|
insertMessageHandler(MovGraph_messageHandler, getMessageHandlersCount() - 1, 129);
|
2013-09-18 00:00:33 +04:00
|
|
|
|
|
|
|
_objtype = kObjTypeMovGraph;
|
2013-06-16 15:11:18 +03:00
|
|
|
}
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
bool MovGraph::load(MfcArchive &file) {
|
|
|
|
debug(5, "MovGraph::load()");
|
2013-07-12 09:03:02 +03:00
|
|
|
|
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-09-28 13:06:06 +03:00
|
|
|
void MovGraph::addObject(StaticANIObject *obj) {
|
2013-10-01 22:56:50 +03:00
|
|
|
_mgm.clear();
|
|
|
|
_mgm.addItem(obj->_id);
|
|
|
|
|
|
|
|
for (uint i = 0; i < _items.size(); i++)
|
|
|
|
if (_items[i]->ani == obj)
|
|
|
|
return;
|
|
|
|
|
|
|
|
MovGraphItem *item = new MovGraphItem();
|
|
|
|
|
|
|
|
item->ani = obj;
|
|
|
|
|
|
|
|
_items.push_back(item);
|
|
|
|
|
|
|
|
_mgm.addItem(obj->_id); // FIXME: Is it really needed?
|
2013-07-22 18:46:03 +03:00
|
|
|
}
|
|
|
|
|
2013-09-27 22:16:15 +03:00
|
|
|
int MovGraph::removeObject(StaticANIObject *obj) {
|
|
|
|
warning("STUB: MovGraph::removeObject()");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MovGraph::freeItems() {
|
|
|
|
warning("STUB: MovGraph::freeItems()");
|
|
|
|
}
|
|
|
|
|
|
|
|
int MovGraph::method28() {
|
|
|
|
warning("STUB: MovGraph::method28()");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int MovGraph::method2C() {
|
|
|
|
warning("STUB: MovGraph::method2C()");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
MessageQueue *MovGraph::method34(StaticANIObject *subj, int xpos, int ypos, int flag, int staticsId) {
|
|
|
|
warning("STUB: MovGraph::method34()");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int MovGraph::changeCallback() {
|
|
|
|
warning("STUB: MovGraph::changeCallback()");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int MovGraph::method3C() {
|
|
|
|
warning("STUB: MovGraph::method3C()");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int MovGraph::method44() {
|
|
|
|
warning("STUB: MovGraph::method44()");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
MessageQueue *MovGraph::method4C(StaticANIObject *subj, int xpos, int ypos, int flag, int staticsId) {
|
|
|
|
warning("STUB: MovGraph::method4C()");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int MovGraph::method50() {
|
|
|
|
warning("STUB: MovGraph::method50()");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
double MovGraph::calcDistance(Common::Point *point, MovGraphLink *link, int flag) {
|
2013-09-29 23:08:45 +03:00
|
|
|
int n1x = link->_movGraphNode1->_x;
|
|
|
|
int n1y = link->_movGraphNode1->_y;
|
|
|
|
int n2x = link->_movGraphNode2->_x;
|
|
|
|
int n2y = link->_movGraphNode2->_y;
|
|
|
|
double dist1x = (double)(point->x - n1x);
|
|
|
|
double dist1y = (double)(n1y - point->y);
|
|
|
|
double dist2x = (double)(n2x - n1x);
|
|
|
|
double dist2y = (double)(n2y - n1y);
|
|
|
|
double dist1 = sqrt(dist1y * dist1y + dist1x * dist1x);
|
|
|
|
double dist2 = ((double)(n1y - n2y) * dist1y + dist2x * dist1x) / link->_distance / dist1;
|
|
|
|
double distm = dist2 * dist1;
|
|
|
|
double res = sqrt(1.0 - dist2 * dist2) * dist1;
|
|
|
|
|
|
|
|
if (dist2 <= 0.0 || distm >= link->_distance) {
|
|
|
|
if (flag) {
|
|
|
|
if (dist2 > 0.0) {
|
|
|
|
if (distm >= link->_distance) {
|
|
|
|
point->x = n2x;
|
|
|
|
point->y = n2y;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
point->x = n1x;
|
|
|
|
point->y = n1y;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return -1.0;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
point->x = n1x + (dist2x * distm / link->_distance);
|
|
|
|
point->y = n1y + (dist2y * distm / link->_distance);
|
|
|
|
}
|
2013-09-18 00:00:33 +04:00
|
|
|
|
2013-09-29 23:08:45 +03:00
|
|
|
return res;
|
2013-09-18 00:00:33 +04:00
|
|
|
}
|
|
|
|
|
2013-09-28 14:15:46 +03:00
|
|
|
int MovGraph2::getItemIndexByGameObjectId(int objectId) {
|
|
|
|
for (uint i = 0; i < _items.size(); i++)
|
|
|
|
if (_items[i]->_objectId == objectId)
|
|
|
|
return i;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool MovGraph2::initDirections(StaticANIObject *obj, MovGraph2Item *item) {
|
2013-09-28 15:59:46 +03:00
|
|
|
item->_obj = obj;
|
|
|
|
item->_objectId = obj->_id;
|
|
|
|
|
|
|
|
GameVar *var = g_fullpipe->getGameLoaderGameVar()->getSubVarByName(obj->_objectName);
|
|
|
|
if (!var)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
var = var->getSubVarByName("Test_walk");
|
|
|
|
|
|
|
|
if (!var)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
GameVar *varD = 0;
|
|
|
|
Common::Point point;
|
|
|
|
|
|
|
|
for (int dir = 0; dir < 4; dir++) {
|
|
|
|
switch (dir) {
|
|
|
|
case 0:
|
|
|
|
varD = var->getSubVarByName("Right");
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
varD = var->getSubVarByName("Left");
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
varD = var->getSubVarByName("Up");
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
varD = var->getSubVarByName("Down");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!varD)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (int act = 0; act < 3; act++) {
|
|
|
|
int idx;
|
|
|
|
|
|
|
|
switch(act) {
|
|
|
|
case 0:
|
|
|
|
idx = varD->getSubVarAsInt("Start");
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
idx = varD->getSubVarAsInt("Go");
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
idx = varD->getSubVarAsInt("Stop");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
item->_subItems[dir]._walk[act]._movementId = idx;
|
|
|
|
|
|
|
|
Movement *mov = obj->getMovementById(idx);
|
|
|
|
|
|
|
|
item->_subItems[dir]._walk[act]._mov = mov;
|
|
|
|
if (mov) {
|
|
|
|
mov->calcSomeXY(point, 0);
|
|
|
|
item->_subItems[dir]._walk[act]._mx = point.x;
|
|
|
|
item->_subItems[dir]._walk[act]._my = point.y;
|
|
|
|
}
|
|
|
|
}
|
2013-09-28 14:15:46 +03:00
|
|
|
|
2013-09-28 15:59:46 +03:00
|
|
|
for (int act = 0; act < 4; act++) {
|
|
|
|
int idx;
|
|
|
|
|
|
|
|
switch(act) {
|
|
|
|
case 0:
|
|
|
|
idx = varD->getSubVarAsInt("TurnR");
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
idx = varD->getSubVarAsInt("TurnL");
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
idx = varD->getSubVarAsInt("TurnU");
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
idx = varD->getSubVarAsInt("TurnD");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
item->_subItems[dir]._turn[act]._movementId = idx;
|
|
|
|
|
|
|
|
Movement *mov = obj->getMovementById(idx);
|
|
|
|
|
|
|
|
item->_subItems[dir]._turn[act]._mov = mov;
|
|
|
|
if (mov) {
|
|
|
|
mov->calcSomeXY(point, 0);
|
|
|
|
item->_subItems[dir]._turn[act]._mx = point.x;
|
|
|
|
item->_subItems[dir]._turn[act]._my = point.y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int act = 0; act < 4; act++) {
|
|
|
|
int idx;
|
|
|
|
|
|
|
|
switch(act) {
|
|
|
|
case 0:
|
|
|
|
idx = varD->getSubVarAsInt("TurnSR");
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
idx = varD->getSubVarAsInt("TurnSL");
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
idx = varD->getSubVarAsInt("TurnSU");
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
idx = varD->getSubVarAsInt("TurnSD");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
item->_subItems[dir]._turnS[act]._movementId = idx;
|
|
|
|
|
|
|
|
Movement *mov = obj->getMovementById(idx);
|
|
|
|
|
|
|
|
item->_subItems[dir]._turnS[act]._mov = mov;
|
|
|
|
if (mov) {
|
|
|
|
mov->calcSomeXY(point, 0);
|
|
|
|
item->_subItems[dir]._turnS[act]._mx = point.x;
|
|
|
|
item->_subItems[dir]._turnS[act]._my = point.y;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
item->_subItems[dir]._staticsId1 = item->_subItems[dir]._walk[0]._mov->_staticsObj1->_staticsId;
|
|
|
|
item->_subItems[dir]._staticsId2 = item->_subItems[dir]._walk[0]._mov->_staticsObj2->_staticsId;
|
|
|
|
|
|
|
|
}
|
|
|
|
return true;
|
2013-09-28 14:15:46 +03:00
|
|
|
}
|
|
|
|
|
2013-09-28 13:06:06 +03:00
|
|
|
void MovGraph2::addObject(StaticANIObject *obj) {
|
2013-09-28 14:15:46 +03:00
|
|
|
MovGraph::addObject(obj);
|
|
|
|
|
|
|
|
int id = getItemIndexByGameObjectId(obj->_id);
|
|
|
|
|
|
|
|
if (id >= 0) {
|
|
|
|
_items[id]->_obj = obj;
|
|
|
|
} else {
|
|
|
|
MovGraph2Item *item = new MovGraph2Item;
|
|
|
|
|
|
|
|
if (initDirections(obj, item)) {
|
|
|
|
_items.push_back(item);
|
|
|
|
} else {
|
|
|
|
delete item;
|
|
|
|
}
|
|
|
|
}
|
2013-09-27 22:16:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int MovGraph2::removeObject(StaticANIObject *obj) {
|
|
|
|
warning("STUB: MovGraph2::removeObject()");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void MovGraph2::freeItems() {
|
|
|
|
warning("STUB: MovGraph2::freeItems()");
|
|
|
|
}
|
|
|
|
|
|
|
|
MessageQueue *MovGraph2::method34(StaticANIObject *subj, int xpos, int ypos, int flag, int staticsId) {
|
|
|
|
warning("STUB: MovGraph2::method34()");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
MessageQueue *MovGraph2::method4C(StaticANIObject *subj, int xpos, int ypos, int flag, int staticsId) {
|
|
|
|
warning("STUB: MovGraph2::method4C()");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
MovGraphNode *MovGraph::calcOffset(int ox, int oy) {
|
|
|
|
warning("STUB: MovGraph::calcOffset()");
|
2013-09-18 00:00:33 +04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-01 22:56:50 +03:00
|
|
|
void MGM::clear() {
|
|
|
|
warning("STUB: MGM:clear()");
|
|
|
|
}
|
|
|
|
|
2013-10-02 08:20:04 +03:00
|
|
|
MGMItem::MGMItem() {
|
|
|
|
objId = 0;
|
|
|
|
subItems = 0;
|
|
|
|
staticsListCount = 0;
|
|
|
|
movementListCount = 0;
|
|
|
|
statics = 0;
|
|
|
|
movements1 = 0;
|
|
|
|
movements2 = 0;
|
|
|
|
}
|
|
|
|
|
2013-10-01 22:56:50 +03:00
|
|
|
void MGM::addItem(int objId) {
|
2013-10-02 08:20:04 +03:00
|
|
|
if (getItemIndexById(objId) == -1) {
|
|
|
|
MGMItem *item = new MGMItem();
|
|
|
|
|
|
|
|
item->objId = objId;
|
|
|
|
_items.push_back(item);
|
|
|
|
}
|
|
|
|
rebuildTables(objId);
|
|
|
|
}
|
|
|
|
|
|
|
|
void MGM::rebuildTables(int objId) {
|
|
|
|
warning("STUB: MGM:rebuildTables()");
|
|
|
|
}
|
|
|
|
|
|
|
|
int MGM::getItemIndexById(int objId) {
|
|
|
|
warning("STUB: MGM:getItemIndexById()");
|
|
|
|
|
|
|
|
return -1;
|
2013-10-01 22:56:50 +03:00
|
|
|
}
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
MovGraphLink::MovGraphLink() {
|
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-08-14 21:11:12 +03:00
|
|
|
_name = 0;
|
2013-06-16 16:10:46 +03:00
|
|
|
}
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
bool MovGraphLink::load(MfcArchive &file) {
|
|
|
|
debug(5, "MovGraphLink::load()");
|
2013-07-12 09:03:02 +03:00
|
|
|
|
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");
|
2013-09-18 19:04:36 +04:00
|
|
|
_movGraphNode1 = (MovGraphNode *)file.readClass();
|
2013-07-06 22:56:11 +03:00
|
|
|
debug(8, "GraphNode2");
|
2013-09-18 19:04:36 +04:00
|
|
|
_movGraphNode2 = (MovGraphNode *)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-09-18 19:04:36 +04:00
|
|
|
_movGraphReact = (MovGraphReact *)file.readClass();
|
2013-07-06 22:56:11 +03:00
|
|
|
_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
|
|
|
}
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
bool MovGraphNode::load(MfcArchive &file) {
|
|
|
|
debug(5, "MovGraphNode::load()");
|
2013-07-12 09:03:02 +03:00
|
|
|
|
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-09-18 19:04:36 +04:00
|
|
|
ReactParallel::ReactParallel() {
|
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
|
|
|
}
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
bool ReactParallel::load(MfcArchive &file) {
|
|
|
|
debug(5, "ReactParallel::load()");
|
2013-07-12 09:03:02 +03:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
void ReactParallel::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-09-11 17:57:18 +03:00
|
|
|
double at = atan2((double)(_x1 - _x2), (double)(_y1 - _y2)) + 1.570796;
|
2013-07-06 22:56:11 +03:00
|
|
|
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-09-18 19:04:36 +04:00
|
|
|
ReactPolygonal::ReactPolygonal() {
|
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
|
|
|
}
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
bool ReactPolygonal::load(MfcArchive &file) {
|
|
|
|
debug(5, "ReactPolygonal::load()");
|
2013-07-12 09:03:02 +03:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2013-09-18 19:04:36 +04:00
|
|
|
void ReactPolygonal::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-08-26 22:17:20 +03:00
|
|
|
int startWalkTo(int objId, int objKey, int x, int y, int a5) {
|
2013-09-18 22:30:06 +04:00
|
|
|
MctlCompound *mc = getSc2MctlCompoundBySceneId(g_fullpipe->_currentScene->_sceneId);
|
|
|
|
|
|
|
|
if (mc)
|
|
|
|
return (mc->method34(g_fullpipe->_currentScene->getStaticANIObject1ById(objId, objKey), x, y, a5, 0) != 0);
|
2013-08-26 22:17:20 +03:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int doSomeAnimation(int objId, int objKey, int a3) {
|
|
|
|
warning("STUB: doSomeAnimation(%d, %d, %d)", objId, objKey, a3);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int doSomeAnimation2(int objId, int objKey) {
|
|
|
|
return doSomeAnimation(objId, objKey, 0);
|
|
|
|
}
|
|
|
|
|
2013-06-16 15:11:18 +03:00
|
|
|
} // End of namespace Fullpipe
|