mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
Moved _heTimers to ScummEngine_v60he
svn-id: r22116
This commit is contained in:
parent
d68f95b3be
commit
b2befd7951
@ -48,10 +48,15 @@ protected:
|
||||
|
||||
const OpcodeEntryv60he *_opcodesv60he;
|
||||
|
||||
public:
|
||||
Common::File _hFileTable[17];
|
||||
|
||||
int _heTimers[16];
|
||||
int getHETimer(int timer);
|
||||
void setHETimer(int timer);
|
||||
|
||||
public:
|
||||
ScummEngine_v60he(OSystem *syst, const DetectorResult &dr) : ScummEngine_v6(syst, dr) {}
|
||||
ScummEngine_v60he(OSystem *syst, const DetectorResult &dr);
|
||||
|
||||
virtual void scummInit();
|
||||
|
||||
|
@ -27,6 +27,7 @@
|
||||
#include "scumm/imuse/imuse.h"
|
||||
#include "scumm/scumm.h"
|
||||
#include "scumm/he/sound_he.h"
|
||||
#include "scumm/he/intern_he.h"
|
||||
#include "scumm/util.h"
|
||||
|
||||
#include "common/config-manager.h"
|
||||
@ -48,6 +49,7 @@ namespace Scumm {
|
||||
SoundHE::SoundHE(ScummEngine *parent)
|
||||
:
|
||||
Sound(parent),
|
||||
_vm((ScummEngine_v60he *)parent),
|
||||
_heMusic(0),
|
||||
_heMusicTracks(0) {
|
||||
|
||||
|
@ -27,9 +27,13 @@
|
||||
|
||||
namespace Scumm {
|
||||
|
||||
class ScummEngine_v60he;
|
||||
|
||||
class SoundHE : public Sound {
|
||||
protected:
|
||||
struct HEMusic{
|
||||
ScummEngine_v60he *_vm;
|
||||
|
||||
struct HEMusic {
|
||||
int32 id;
|
||||
int32 offset;
|
||||
int32 size;
|
||||
|
@ -428,7 +428,6 @@ ScummEngine::ScummEngine(OSystem *syst, const DetectorResult &dr)
|
||||
_actorClipOverride.right = 640;
|
||||
|
||||
_skipDrawObject = 0;
|
||||
memset(_heTimers, 0, sizeof(_heTimers));
|
||||
|
||||
memset(_akosQueue, 0, sizeof(_akosQueue));
|
||||
_akosQueuePos = 0;
|
||||
@ -798,6 +797,11 @@ ScummEngine_v6::ScummEngine_v6(OSystem *syst, const DetectorResult &dr)
|
||||
VAR_TIMEDATE_SECOND = 0xFF;
|
||||
}
|
||||
|
||||
ScummEngine_v60he::ScummEngine_v60he(OSystem *syst, const DetectorResult &dr)
|
||||
: ScummEngine_v6(syst, dr) {
|
||||
memset(_heTimers, 0, sizeof(_heTimers));
|
||||
}
|
||||
|
||||
#ifndef DISABLE_HE
|
||||
ScummEngine_v70he::ScummEngine_v70he(OSystem *syst, const DetectorResult &dr)
|
||||
: ScummEngine_v60he(syst, dr) {
|
||||
@ -1894,13 +1898,13 @@ load_game:
|
||||
#pragma mark --- SCUMM ---
|
||||
#pragma mark -
|
||||
|
||||
int ScummEngine::getHETimer(int timer) {
|
||||
int ScummEngine_v60he::getHETimer(int timer) {
|
||||
checkRange(15, 1, timer, "getHETimer: Timer out of range(%d)");
|
||||
int time = _system->getMillis() - _heTimers[timer];
|
||||
return time;
|
||||
}
|
||||
|
||||
void ScummEngine::setHETimer(int timer) {
|
||||
void ScummEngine_v60he::setHETimer(int timer) {
|
||||
checkRange(15, 1, timer, "setHETimer: Timer out of range(%d)");
|
||||
_heTimers[timer] = _system->getMillis();
|
||||
}
|
||||
|
@ -1127,10 +1127,6 @@ public:
|
||||
byte _HEV7ActorPalette[256];
|
||||
uint8 *_hePalettes;
|
||||
|
||||
int _heTimers[16];
|
||||
int getHETimer(int timer);
|
||||
void setHETimer(int timer);
|
||||
|
||||
protected:
|
||||
int _shadowPaletteSize;
|
||||
byte _currentPalette[3 * 256];
|
||||
|
Loading…
x
Reference in New Issue
Block a user