2012-10-02 11:44:23 +00: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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HOPKINS_LINES_H
|
|
|
|
#define HOPKINS_LINES_H
|
|
|
|
|
2013-02-18 00:19:41 +00:00
|
|
|
#include "hopkins/globals.h"
|
|
|
|
|
2012-10-02 11:44:23 +00:00
|
|
|
#include "common/scummsys.h"
|
|
|
|
#include "common/str.h"
|
|
|
|
|
|
|
|
namespace Hopkins {
|
|
|
|
|
|
|
|
class HopkinsEngine;
|
|
|
|
|
|
|
|
struct LigneZoneItem {
|
2013-01-22 06:53:59 +00:00
|
|
|
int _count;
|
2013-01-27 22:49:20 +00:00
|
|
|
int _bobZoneIdx;
|
2013-01-22 06:53:59 +00:00
|
|
|
int16 *_zoneData;
|
2012-10-02 11:44:23 +00:00
|
|
|
};
|
|
|
|
|
2013-03-11 06:25:45 +00:00
|
|
|
#define INVALID_LINE_VALUE 1300
|
2013-03-07 07:23:28 +00:00
|
|
|
|
2013-02-16 12:46:13 +00:00
|
|
|
struct RouteItem;
|
|
|
|
|
2012-10-02 11:44:23 +00:00
|
|
|
struct LigneItem {
|
2013-01-10 07:28:15 +00:00
|
|
|
int _lineDataEndIdx;
|
2013-02-18 00:19:41 +00:00
|
|
|
Directions _direction;
|
2013-02-19 16:07:29 +00:00
|
|
|
Directions _directionRouteInc;
|
|
|
|
Directions _directionRouteDec;
|
2013-01-10 07:28:15 +00:00
|
|
|
int16 *_lineData;
|
2013-02-16 12:46:13 +00:00
|
|
|
|
|
|
|
int appendToRouteInc(int from, int to, RouteItem *route, int index);
|
|
|
|
int appendToRouteDec(int from, int to, RouteItem *route, int index);
|
2012-10-02 11:44:23 +00:00
|
|
|
};
|
|
|
|
|
2012-10-02 12:41:13 +00:00
|
|
|
struct SmoothItem {
|
2013-01-26 13:54:57 +00:00
|
|
|
int _posX;
|
|
|
|
int _posY;
|
2012-10-02 12:41:13 +00:00
|
|
|
};
|
|
|
|
|
2013-01-27 19:20:36 +00:00
|
|
|
struct SegmentItem {
|
2013-01-27 22:30:40 +00:00
|
|
|
int _minZoneLineIdx;
|
|
|
|
int _maxZoneLineIdx;
|
2013-01-27 19:20:36 +00:00
|
|
|
};
|
|
|
|
|
2013-01-27 22:30:40 +00:00
|
|
|
struct SquareZoneItem {
|
2013-02-21 07:23:38 +00:00
|
|
|
bool _enabledFl;
|
2013-01-27 19:20:36 +00:00
|
|
|
int _left;
|
|
|
|
int _right;
|
|
|
|
int _top;
|
|
|
|
int _bottom;
|
|
|
|
int _minZoneLineIdx;
|
|
|
|
int _maxZoneLineIdx;
|
|
|
|
bool _squareZoneFl;
|
|
|
|
};
|
|
|
|
|
2013-02-12 22:48:03 +00:00
|
|
|
struct ZonePItem {
|
|
|
|
int _destX;
|
|
|
|
int _destY;
|
|
|
|
int _spriteIndex;
|
2013-02-20 07:30:16 +00:00
|
|
|
int _verbFl1;
|
|
|
|
int _verbFl2;
|
|
|
|
int _verbFl3;
|
|
|
|
int _verbFl4;
|
|
|
|
int _verbFl5;
|
|
|
|
int _verbFl6;
|
|
|
|
int _verbFl7;
|
|
|
|
int _verbFl8;
|
|
|
|
int _verbFl9;
|
|
|
|
int _verbFl10;
|
2013-02-12 22:48:03 +00:00
|
|
|
bool _enabledFl;
|
2013-02-20 07:30:16 +00:00
|
|
|
int _messageId;
|
2013-02-12 22:48:03 +00:00
|
|
|
};
|
|
|
|
|
2013-02-16 09:55:07 +00:00
|
|
|
struct RouteItem {
|
2013-02-19 17:06:05 +00:00
|
|
|
int16 _x;
|
|
|
|
int16 _y;
|
2013-02-18 22:52:55 +00:00
|
|
|
Directions _dir;
|
2013-02-19 17:06:05 +00:00
|
|
|
bool isValid() const { return _x != -1 || _y != -1; }
|
|
|
|
void invalidate() { _x = _y = -1; _dir = DIR_NONE; }
|
|
|
|
void set(int16 X, int16 Y, Directions dir) { _x = X; _y = Y; _dir = dir; }
|
2013-02-16 09:55:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-10-02 11:44:23 +00:00
|
|
|
class LinesManager {
|
|
|
|
private:
|
|
|
|
HopkinsEngine *_vm;
|
2013-01-27 14:22:57 +00:00
|
|
|
|
|
|
|
int _pathFindingMaxDepth;
|
2013-01-26 13:54:57 +00:00
|
|
|
SmoothItem _smoothRoute[4000];
|
2013-02-18 00:19:41 +00:00
|
|
|
Directions _smoothMoveDirection;
|
2013-01-27 21:28:10 +00:00
|
|
|
LigneZoneItem _zoneLine[401];
|
2013-01-27 22:30:40 +00:00
|
|
|
SegmentItem _segment[101];
|
|
|
|
SquareZoneItem _squareZone[101];
|
2013-01-27 21:28:10 +00:00
|
|
|
int _currentSegmentId;
|
2013-01-27 21:53:20 +00:00
|
|
|
int _maxLineIdx;
|
|
|
|
int _lastLine;
|
|
|
|
int _linesNumb;
|
2013-02-20 07:30:16 +00:00
|
|
|
int _newLineIdx;
|
|
|
|
int _newLineDataIdx;
|
|
|
|
int _newRouteIdx;
|
|
|
|
int _newPosX;
|
|
|
|
int _newPosY;
|
|
|
|
|
|
|
|
byte *_largeBuf;
|
2013-03-05 07:26:51 +00:00
|
|
|
RouteItem *_testRoute0;
|
2013-03-06 07:28:18 +00:00
|
|
|
RouteItem *_testRoute1;
|
2013-02-20 07:30:16 +00:00
|
|
|
int16 *_lineBuf;
|
|
|
|
LigneItem _lineItem[400];
|
|
|
|
RouteItem _bestRoute[8001];
|
2013-01-27 14:22:57 +00:00
|
|
|
|
2013-01-27 19:20:36 +00:00
|
|
|
int checkInventoryHotspotsRow(int posX, int minZoneNum, bool lastRow);
|
|
|
|
void removeZoneLine(int idx);
|
|
|
|
void removeLine(int idx);
|
2013-02-21 07:23:38 +00:00
|
|
|
int checkCollision(int xp, int yp);
|
2013-01-27 19:20:36 +00:00
|
|
|
bool checkCollisionLine(int xp, int yp, int *foundDataIdx, int *foundLineIdx, int startLineIdx, int endLineIdx);
|
2013-02-08 05:44:28 +00:00
|
|
|
bool checkSmoothMove(int fromX, int fromY, int destX, int destY);
|
|
|
|
bool makeSmoothMove(int fromX, int fromY, int destX, int destY);
|
2013-02-26 22:27:55 +00:00
|
|
|
int characterRoute(int fromX, int fromY, int destX, int destY, int startLineIdx, int endLineIdx, int routeIdx);
|
2013-02-21 07:23:38 +00:00
|
|
|
int testLine(int paramX, int paramY, int *a3, int *foundLineIdx, int *foundDataIdx);
|
2013-03-06 07:28:18 +00:00
|
|
|
void _useRoute0(int idx, int curRouteIdx);
|
2013-03-05 07:26:51 +00:00
|
|
|
void useRoute1(int idx, int curRouteIdx);
|
|
|
|
void useRoute2(int idx, int curRouteIdx);
|
2013-02-08 05:44:28 +00:00
|
|
|
|
|
|
|
int CALC_PROPRE(int idx);
|
2013-02-26 07:21:28 +00:00
|
|
|
int CONTOURNE(int lineIdx, int lineDataIdx, int routeIdx, int destLineIdx, int destLineDataIdx, RouteItem *route);
|
|
|
|
int CONTOURNE1(int lineIdx, int lineDataIdx, int routeIdx, int destLineIdx, int destLineDataIdx, RouteItem *route, int a8, int a9);
|
2013-02-26 22:27:55 +00:00
|
|
|
bool MIRACLE(int fromX, int fromY, int lineIdx, int destLineIdx, int routeIdx);
|
|
|
|
int GENIAL(int lineIdx, int dataIdx, int fromX, int fromY, int destX, int destY, int routerIdx, RouteItem *route);
|
2013-03-09 00:08:11 +00:00
|
|
|
bool PLAN_TEST(int paramX, int paramY, int superRouteIdx, int paramStartLineIdx, int paramEndLineIdx);
|
2013-01-27 19:20:36 +00:00
|
|
|
|
|
|
|
public:
|
2013-02-16 09:55:07 +00:00
|
|
|
RouteItem *_route;
|
2013-03-06 07:28:18 +00:00
|
|
|
RouteItem *_testRoute2;
|
2013-01-27 14:22:57 +00:00
|
|
|
|
2013-02-12 22:48:03 +00:00
|
|
|
int BOBZONE[105];
|
|
|
|
bool BOBZONE_FLAG[105];
|
|
|
|
ZonePItem ZONEP[106];
|
|
|
|
|
2013-03-20 06:47:39 +00:00
|
|
|
LinesManager(HopkinsEngine *vm);
|
2013-01-27 21:28:10 +00:00
|
|
|
~LinesManager();
|
2013-02-08 05:44:28 +00:00
|
|
|
void clearAll();
|
2012-10-02 11:44:23 +00:00
|
|
|
|
2013-02-08 05:44:28 +00:00
|
|
|
void setMaxLineIdx(int idx);
|
2013-01-10 22:15:52 +00:00
|
|
|
int checkInventoryHotspots(int posX, int posY);
|
2013-03-09 08:41:15 +00:00
|
|
|
void addZoneLine(int idx, int fromX, int fromY, int destX, int destY, int bobZoneIdx);
|
2013-02-08 05:44:28 +00:00
|
|
|
void loadLines(const Common::String &file);
|
2013-03-09 08:41:15 +00:00
|
|
|
void addLine(int lineIdx, Directions direction, int fromX, int fromY, int destX, int destY);
|
2013-02-08 05:44:28 +00:00
|
|
|
void initRoute();
|
2013-02-16 09:55:07 +00:00
|
|
|
RouteItem *cityMapCarRoute(int x1, int y1, int x2, int y2);
|
2013-01-27 19:20:36 +00:00
|
|
|
void clearAllZones();
|
2013-01-10 21:09:37 +00:00
|
|
|
void resetLines();
|
2013-02-08 05:44:28 +00:00
|
|
|
void resetLinesNumb();
|
|
|
|
void resetLastLine();
|
2013-02-12 22:48:03 +00:00
|
|
|
void enableZone(int idx);
|
|
|
|
void disableZone(int idx);
|
|
|
|
void checkZone();
|
2013-02-22 07:18:13 +00:00
|
|
|
int getMouseZone();
|
2013-02-08 05:44:28 +00:00
|
|
|
|
2013-01-27 19:20:36 +00:00
|
|
|
void CARRE_ZONE();
|
2013-02-16 09:55:07 +00:00
|
|
|
RouteItem *PARCOURS2(int fromX, int fromY, int destX, int destY);
|
|
|
|
void PACOURS_PROPRE(RouteItem *route);
|
2012-10-02 11:44:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Hopkins
|
|
|
|
|
|
|
|
#endif /* HOPKINS_FONT_H */
|