2007-05-30 21:56:52 +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.
|
2002-07-16 18:26:42 +00:00
|
|
|
*
|
|
|
|
* 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
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2002-07-16 18:26:42 +00:00
|
|
|
*/
|
|
|
|
|
2007-02-19 17:48:19 +00:00
|
|
|
#ifndef SCUMM_COSTUME_H
|
|
|
|
#define SCUMM_COSTUME_H
|
2002-07-16 18:26:42 +00:00
|
|
|
|
2003-10-03 18:33:57 +00:00
|
|
|
#include "scumm/base-costume.h"
|
|
|
|
|
|
|
|
namespace Scumm {
|
2005-03-27 00:42:53 +00:00
|
|
|
class ClassicCostumeLoader : public BaseCostumeLoader {
|
2002-07-16 18:26:42 +00:00
|
|
|
public:
|
2003-07-08 12:28:57 +00:00
|
|
|
int _id;
|
2003-05-29 02:46:06 +00:00
|
|
|
const byte *_baseptr;
|
2003-07-08 16:31:01 +00:00
|
|
|
const byte *_animCmds;
|
|
|
|
const byte *_dataOffsets;
|
|
|
|
const byte *_palette;
|
|
|
|
const byte *_frameOffsets;
|
2002-07-16 18:26:42 +00:00
|
|
|
byte _numColors;
|
2003-07-08 12:28:57 +00:00
|
|
|
byte _numAnim;
|
|
|
|
byte _format;
|
|
|
|
bool _mirror;
|
2002-07-16 18:26:42 +00:00
|
|
|
|
2005-03-27 00:42:53 +00:00
|
|
|
ClassicCostumeLoader(ScummEngine *vm) :
|
|
|
|
BaseCostumeLoader(vm),
|
|
|
|
_id(-1), _baseptr(0), _animCmds(0), _dataOffsets(0), _palette(0),
|
2003-07-08 16:31:01 +00:00
|
|
|
_frameOffsets(0), _numColors(0), _numAnim(0), _format(0), _mirror(false) {}
|
2002-07-16 18:26:42 +00:00
|
|
|
|
|
|
|
void loadCostume(int id);
|
2005-03-27 00:42:53 +00:00
|
|
|
void costumeDecodeData(Actor *a, int frame, uint usemask);
|
2002-07-16 18:26:42 +00:00
|
|
|
byte increaseAnims(Actor *a);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
byte increaseAnim(Actor *a, int slot);
|
|
|
|
};
|
|
|
|
|
2005-03-27 00:42:53 +00:00
|
|
|
class NESCostumeLoader : public BaseCostumeLoader {
|
2005-03-27 00:23:38 +00:00
|
|
|
public:
|
2005-03-27 00:42:53 +00:00
|
|
|
int _id;
|
|
|
|
const byte *_baseptr;
|
|
|
|
const byte *_dataOffsets;
|
|
|
|
byte _numAnim;
|
|
|
|
|
|
|
|
NESCostumeLoader(ScummEngine *vm) : BaseCostumeLoader(vm) {}
|
2005-03-27 00:23:38 +00:00
|
|
|
void loadCostume(int id);
|
2005-03-27 00:42:53 +00:00
|
|
|
void costumeDecodeData(Actor *a, int frame, uint usemask);
|
|
|
|
byte increaseAnims(Actor *a);
|
2003-01-05 23:53:16 +00:00
|
|
|
|
2002-07-16 18:26:42 +00:00
|
|
|
protected:
|
2005-03-27 00:23:38 +00:00
|
|
|
byte increaseAnim(Actor *a, int slot);
|
|
|
|
};
|
|
|
|
|
2012-02-04 17:34:08 +00:00
|
|
|
class V0CostumeLoader : public ClassicCostumeLoader {
|
2005-05-21 03:30:23 +00:00
|
|
|
public:
|
2012-02-04 17:34:08 +00:00
|
|
|
V0CostumeLoader(ScummEngine *vm) : ClassicCostumeLoader(vm) {}
|
2005-05-21 03:30:23 +00:00
|
|
|
void loadCostume(int id);
|
|
|
|
void costumeDecodeData(Actor *a, int frame, uint usemask);
|
|
|
|
byte increaseAnims(Actor *a);
|
2012-02-04 16:32:26 +00:00
|
|
|
byte getFrame(Actor *a, int limb);
|
2005-05-21 03:30:23 +00:00
|
|
|
|
|
|
|
protected:
|
2012-02-04 16:32:26 +00:00
|
|
|
byte increaseAnim(Actor *a, int limb);
|
2005-05-21 03:30:23 +00:00
|
|
|
};
|
|
|
|
|
2005-03-27 00:23:38 +00:00
|
|
|
class ClassicCostumeRenderer : public BaseCostumeRenderer {
|
|
|
|
protected:
|
2005-03-27 00:42:53 +00:00
|
|
|
ClassicCostumeLoader _loaded;
|
2005-07-30 21:11:48 +00:00
|
|
|
|
2002-07-16 18:26:42 +00:00
|
|
|
byte _scaleIndexX; /* must wrap at 256 */
|
2003-05-30 21:37:58 +00:00
|
|
|
byte _scaleIndexY;
|
2009-10-26 12:44:26 +00:00
|
|
|
uint16 _palette[32];
|
2002-07-16 18:26:42 +00:00
|
|
|
|
2003-01-05 23:53:16 +00:00
|
|
|
public:
|
2005-03-27 00:23:38 +00:00
|
|
|
ClassicCostumeRenderer(ScummEngine *vm) : BaseCostumeRenderer(vm), _loaded(vm) {}
|
2003-01-05 23:53:16 +00:00
|
|
|
|
2009-06-04 11:03:45 +00:00
|
|
|
void setPalette(uint16 *palette);
|
2004-09-30 23:49:46 +00:00
|
|
|
void setFacing(const Actor *a);
|
2005-10-29 01:59:18 +00:00
|
|
|
void setCostume(int costume, int shadow);
|
2003-01-05 23:53:16 +00:00
|
|
|
|
|
|
|
protected:
|
2004-09-08 21:14:12 +00:00
|
|
|
byte drawLimb(const Actor *a, int limb);
|
2003-01-05 23:53:16 +00:00
|
|
|
|
2004-11-25 23:36:02 +00:00
|
|
|
void proc3(Codec1 &v1);
|
|
|
|
void proc3_ami(Codec1 &v1);
|
2003-07-08 10:49:13 +00:00
|
|
|
|
2004-11-25 23:36:02 +00:00
|
|
|
void procC64(Codec1 &v1, int actor);
|
2003-07-08 10:49:13 +00:00
|
|
|
|
2009-10-25 14:20:47 +00:00
|
|
|
void procPCEngine(Codec1 &v1);
|
|
|
|
|
2003-05-29 10:31:05 +00:00
|
|
|
byte mainRoutine(int xmoveCur, int ymoveCur);
|
2002-07-16 18:26:42 +00:00
|
|
|
};
|
|
|
|
|
2005-03-27 00:23:38 +00:00
|
|
|
class NESCostumeRenderer : public BaseCostumeRenderer {
|
|
|
|
protected:
|
2005-03-27 00:42:53 +00:00
|
|
|
NESCostumeLoader _loaded;
|
2005-03-27 00:23:38 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
NESCostumeRenderer(ScummEngine *vm) : BaseCostumeRenderer(vm), _loaded(vm) {}
|
|
|
|
|
2009-06-04 11:03:45 +00:00
|
|
|
void setPalette(uint16 *palette);
|
2005-03-27 00:23:38 +00:00
|
|
|
void setFacing(const Actor *a);
|
2005-10-29 01:59:18 +00:00
|
|
|
void setCostume(int costume, int shadow);
|
2005-03-27 00:23:38 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
byte drawLimb(const Actor *a, int limb);
|
|
|
|
};
|
|
|
|
|
2009-11-22 11:43:12 +00:00
|
|
|
#ifdef USE_RGB_COLOR
|
2009-10-25 14:20:47 +00:00
|
|
|
class PCEngineCostumeRenderer : public ClassicCostumeRenderer {
|
2009-10-21 12:59:10 +00:00
|
|
|
public:
|
2009-10-25 14:20:47 +00:00
|
|
|
PCEngineCostumeRenderer(ScummEngine *vm) : ClassicCostumeRenderer(vm) {}
|
2009-10-21 12:59:10 +00:00
|
|
|
|
|
|
|
void setPalette(uint16 *palette);
|
|
|
|
};
|
2009-11-22 11:43:12 +00:00
|
|
|
#endif
|
2009-10-21 12:59:10 +00:00
|
|
|
|
2012-02-04 17:34:08 +00:00
|
|
|
class V0CostumeRenderer : public BaseCostumeRenderer {
|
2005-05-21 03:30:23 +00:00
|
|
|
protected:
|
2012-02-04 17:34:08 +00:00
|
|
|
V0CostumeLoader _loaded;
|
2005-05-21 03:30:23 +00:00
|
|
|
|
|
|
|
public:
|
2012-02-04 17:34:08 +00:00
|
|
|
V0CostumeRenderer(ScummEngine *vm) : BaseCostumeRenderer(vm), _loaded(vm) {}
|
2005-05-21 03:30:23 +00:00
|
|
|
|
2009-06-04 11:03:45 +00:00
|
|
|
void setPalette(uint16 *palette) {}
|
2005-05-21 03:30:23 +00:00
|
|
|
void setFacing(const Actor *a) {}
|
2005-10-29 01:59:18 +00:00
|
|
|
void setCostume(int costume, int shadow);
|
2005-05-21 03:30:23 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
byte drawLimb(const Actor *a, int limb);
|
|
|
|
};
|
|
|
|
|
2003-10-03 18:33:57 +00:00
|
|
|
} // End of namespace Scumm
|
|
|
|
|
2002-07-16 18:26:42 +00:00
|
|
|
#endif
|