2010-10-21 17:09:57 +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.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This code is based on original Hugo Trilogy source code
|
|
|
|
*
|
|
|
|
* Copyright (c) 1989-1995 David P. Gray
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HUGO_OBJECT_H
|
|
|
|
#define HUGO_OBJECT_H
|
|
|
|
|
|
|
|
#include "common/file.h"
|
|
|
|
|
|
|
|
namespace Hugo {
|
|
|
|
|
|
|
|
class ObjectHandler {
|
|
|
|
public:
|
|
|
|
ObjectHandler(HugoEngine *vm);
|
2010-10-25 09:19:06 +00:00
|
|
|
virtual ~ObjectHandler();
|
2010-10-21 17:09:57 +00:00
|
|
|
|
2011-02-11 07:12:29 +00:00
|
|
|
overlay_t _objBound;
|
|
|
|
overlay_t _boundary; // Boundary overlay file
|
|
|
|
overlay_t _overlay; // First overlay file
|
|
|
|
overlay_t _ovlBase; // First overlay base file
|
|
|
|
|
2010-10-21 17:09:57 +00:00
|
|
|
object_t *_objects;
|
2010-11-11 23:04:04 +00:00
|
|
|
uint16 _numObj;
|
2010-10-25 09:13:57 +00:00
|
|
|
|
2011-02-11 07:12:29 +00:00
|
|
|
byte getBoundaryOverlay(uint16 index) const { return _boundary[index]; }
|
|
|
|
byte getObjectBoundary(uint16 index) const { return _objBound[index]; }
|
|
|
|
byte getBaseBoundary(uint16 index) const { return _ovlBase[index]; }
|
|
|
|
byte getFirstOverlay(uint16 index) const { return _overlay[index]; }
|
|
|
|
|
|
|
|
int deltaX(const int x1, const int x2, const int vx, int y) const;
|
|
|
|
int deltaY(const int x1, const int x2, const int vy, const int y) const;
|
|
|
|
void boundaryCollision(object_t *obj);
|
|
|
|
void clearBoundary(const int x1, const int x2, const int y);
|
|
|
|
void clearScreenBoundary(const int x1, const int x2, const int y);
|
|
|
|
void storeBoundary(const int x1, const int x2, const int y);
|
|
|
|
|
2011-02-02 21:12:51 +00:00
|
|
|
virtual void homeIn(const int objIndex1, const int objIndex2, const int8 objDx, const int8 objDy) = 0;
|
2010-10-25 09:13:57 +00:00
|
|
|
virtual void moveObjects() = 0;
|
|
|
|
virtual void updateImages() = 0;
|
2011-01-18 21:32:18 +00:00
|
|
|
virtual void swapImages(int objIndex1, int objIndex2) = 0;
|
2010-10-25 09:13:57 +00:00
|
|
|
|
2010-10-22 20:45:00 +00:00
|
|
|
bool isCarrying(uint16 wordIndex);
|
|
|
|
bool findObjectSpace(object_t *obj, int16 *destx, int16 *desty);
|
2010-10-21 17:09:57 +00:00
|
|
|
|
2010-11-11 23:04:04 +00:00
|
|
|
int calcMaxScore();
|
2010-10-21 17:09:57 +00:00
|
|
|
int16 findObject(uint16 x, uint16 y);
|
|
|
|
void freeObjects();
|
2010-10-30 16:04:43 +00:00
|
|
|
void loadObjectArr(Common::File &in);
|
|
|
|
void freeObjectArr();
|
2010-11-11 23:04:04 +00:00
|
|
|
void loadNumObj(Common::File &in);
|
2010-10-22 20:45:00 +00:00
|
|
|
void lookObject(object_t *obj);
|
2010-11-11 23:04:04 +00:00
|
|
|
void readObjectImages();
|
|
|
|
void restoreAllSeq();
|
|
|
|
void restoreObjects(Common::SeekableReadStream *in);
|
|
|
|
void saveObjects(Common::WriteStream *out);
|
2010-10-21 17:09:57 +00:00
|
|
|
void saveSeq(object_t *obj);
|
2010-11-11 23:04:04 +00:00
|
|
|
void setCarriedScreen(int screenNum);
|
2010-10-21 17:09:57 +00:00
|
|
|
void showTakeables();
|
|
|
|
void useObject(int16 objId);
|
2010-10-25 13:31:01 +00:00
|
|
|
|
2010-10-21 17:09:57 +00:00
|
|
|
static int y2comp(const void *a, const void *b);
|
|
|
|
|
|
|
|
bool isCarried(int objIndex) {
|
|
|
|
return _objects[objIndex].carriedFl;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setCarry(int objIndex, bool val) {
|
|
|
|
_objects[objIndex].carriedFl = val;
|
|
|
|
}
|
2010-10-25 13:31:01 +00:00
|
|
|
|
2010-10-21 17:09:57 +00:00
|
|
|
void setVelocity(int objIndex, int8 vx, int8 vy) {
|
|
|
|
_objects[objIndex].vx = vx;
|
|
|
|
_objects[objIndex].vy = vy;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setPath(int objIndex, path_t pathType, int16 vxPath, int16 vyPath) {
|
|
|
|
_objects[objIndex].pathType = pathType;
|
|
|
|
_objects[objIndex].vxPath = vxPath;
|
|
|
|
_objects[objIndex].vyPath = vyPath;
|
|
|
|
}
|
2010-10-25 09:13:57 +00:00
|
|
|
protected:
|
2010-10-21 17:09:57 +00:00
|
|
|
HugoEngine *_vm;
|
2011-01-23 00:05:52 +00:00
|
|
|
|
|
|
|
static const int kEdge = 10; // Closest object can get to edge of screen
|
|
|
|
static const int kEdge2 = kEdge * 2; // Push object further back on edge collision
|
|
|
|
static const int kMaxObjNumb = 128; // Used in Update_images()
|
|
|
|
|
2010-10-30 16:04:43 +00:00
|
|
|
uint16 _objCount;
|
2010-11-11 23:04:04 +00:00
|
|
|
|
|
|
|
void restoreSeq(object_t *obj);
|
2011-01-23 22:51:12 +00:00
|
|
|
|
|
|
|
inline bool checkBoundary(int16 x, int16 y);
|
|
|
|
template <typename T>
|
|
|
|
inline int sign(T a) { if ( a < 0) return -1; else return 1; }
|
2010-10-21 17:09:57 +00:00
|
|
|
};
|
|
|
|
|
2010-10-25 09:13:57 +00:00
|
|
|
class ObjectHandler_v1d : public ObjectHandler {
|
|
|
|
public:
|
|
|
|
ObjectHandler_v1d(HugoEngine *vm);
|
2010-10-25 12:07:07 +00:00
|
|
|
virtual ~ObjectHandler_v1d();
|
2010-10-25 09:13:57 +00:00
|
|
|
|
2011-02-02 21:12:51 +00:00
|
|
|
virtual void homeIn(const int objIndex1, const int objIndex2, const int8 objDx, const int8 objDy);
|
2011-01-19 00:49:49 +00:00
|
|
|
virtual void moveObjects();
|
|
|
|
virtual void updateImages();
|
|
|
|
virtual void swapImages(int objIndex1, int objIndex2);
|
2010-10-25 09:13:57 +00:00
|
|
|
};
|
2010-10-21 17:09:57 +00:00
|
|
|
|
2010-10-25 12:07:07 +00:00
|
|
|
class ObjectHandler_v2d : public ObjectHandler_v1d {
|
|
|
|
public:
|
|
|
|
ObjectHandler_v2d(HugoEngine *vm);
|
|
|
|
virtual ~ObjectHandler_v2d();
|
|
|
|
|
2011-01-19 00:49:49 +00:00
|
|
|
virtual void moveObjects();
|
|
|
|
virtual void updateImages();
|
|
|
|
|
2011-02-02 21:12:51 +00:00
|
|
|
void homeIn(const int objIndex1, const int objIndex2, const int8 objDx, const int8 objDy);
|
2010-10-25 12:07:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class ObjectHandler_v3d : public ObjectHandler_v2d {
|
|
|
|
public:
|
|
|
|
ObjectHandler_v3d(HugoEngine *vm);
|
|
|
|
~ObjectHandler_v3d();
|
|
|
|
|
2011-01-19 00:49:49 +00:00
|
|
|
virtual void moveObjects();
|
|
|
|
virtual void swapImages(int objIndex1, int objIndex2);
|
|
|
|
};
|
|
|
|
|
|
|
|
class ObjectHandler_v1w : public ObjectHandler_v3d {
|
|
|
|
public:
|
|
|
|
ObjectHandler_v1w(HugoEngine *vm);
|
|
|
|
~ObjectHandler_v1w();
|
|
|
|
|
2010-10-25 12:07:07 +00:00
|
|
|
void moveObjects();
|
2011-01-19 00:49:49 +00:00
|
|
|
void updateImages();
|
2011-01-18 21:32:18 +00:00
|
|
|
void swapImages(int objIndex1, int objIndex2);
|
2010-10-25 12:07:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Hugo
|
2010-10-21 17:09:57 +00:00
|
|
|
#endif //HUGO_OBJECT_H
|