aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorStrangerke2014-02-18 22:43:48 +0100
committerStrangerke2014-02-18 22:43:48 +0100
commitb06497f351a090e6802c6a359667d05e2b5600f3 (patch)
tree9c844ac4f61949d7a26c7bc76586849b4406b2db /engines
parent6c63a9f4c7fc72369ac91f5d3a000b3063f19f6f (diff)
downloadscummvm-rg350-b06497f351a090e6802c6a359667d05e2b5600f3.tar.gz
scummvm-rg350-b06497f351a090e6802c6a359667d05e2b5600f3.tar.bz2
scummvm-rg350-b06497f351a090e6802c6a359667d05e2b5600f3.zip
VOYEUR: Start cleaning FILES
Diffstat (limited to 'engines')
-rw-r--r--engines/voyeur/files.cpp63
-rw-r--r--engines/voyeur/files.h20
2 files changed, 16 insertions, 67 deletions
diff --git a/engines/voyeur/files.cpp b/engines/voyeur/files.cpp
index 03eae9666f..ecea231993 100644
--- a/engines/voyeur/files.cpp
+++ b/engines/voyeur/files.cpp
@@ -33,11 +33,6 @@ BoltFilesState::BoltFilesState() {
_curLibPtr = NULL;
_curGroupPtr = NULL;
_curMemberPtr = NULL;
- _curMemInfoPtr = NULL;
- _fromGroupFlag = 0;
- _xorMask = 0;
- _encrypt = false;
- _curFilePosition = 0;
_bufferEnd = 0;
_bufferBegin = 0;
_bytesLeft = 0;
@@ -46,7 +41,7 @@ BoltFilesState::BoltFilesState() {
_bufPos = NULL;
_historyIndex = 0;
_runLength = 0;
- _decompState = 0;
+ _decompState = false;
_runType = 0;
_runValue = 0;
_runOffset = 0;
@@ -65,7 +60,7 @@ byte *BoltFilesState::decompress(byte *buf, int size, int mode) {
byte *bufP = buf;
if (mode & 8) {
- _decompState = 1;
+ _decompState = true;
_runType = 0;
_runLength = size;
}
@@ -116,9 +111,9 @@ byte *BoltFilesState::decompress(byte *buf, int size, int mode) {
int len;
if (_runLength <= size) {
len = _runLength;
- _decompState = 0;
+ _decompState = false;
} else {
- _decompState = 1;
+ _decompState = true;
len = size;
_runLength -= size;
if (_runType == 1)
@@ -170,7 +165,7 @@ void BoltFilesState::nextBlock() {
_bufferBegin = _bufferEnd;
int bytesRead = _curFd->read(_bufStart, _bufSize);
- _bufferEnd = _curFilePosition = _curFd->pos();
+ _bufferEnd = _curFd->pos();
_bytesLeft = bytesRead - 1;
_bufPos = _bufStart;
}
@@ -222,7 +217,6 @@ byte *FilesManager::fload(const Common::String &filename, int *size) {
BoltFile::BoltFile(const Common::String &filename, BoltFilesState &state): _state(state) {
if (!_file.open(filename))
error("Could not open %s", filename.c_str());
- _state._curFilePosition = 0;
// Read in the file header
byte header[16];
@@ -245,7 +239,6 @@ BoltFile::~BoltFile() {
}
BoltGroup *BoltFile::getBoltGroup(uint16 id, bool process) {
- ++_state._fromGroupFlag;
_state._curLibPtr = this;
_state._curGroupPtr = &_groups[(id >> 8) & 0xff];
@@ -254,9 +247,6 @@ BoltGroup *BoltFile::getBoltGroup(uint16 id, bool process) {
_state._curGroupPtr->load(id & 0xff00);
}
- if (_state._curGroupPtr->_callInitGro)
- initGro();
-
if (process) {
// Pre-process the resources
id &= 0xff00;
@@ -270,7 +260,6 @@ BoltGroup *BoltFile::getBoltGroup(uint16 id, bool process) {
}
resolveAll();
- --_state._fromGroupFlag;
return _state._curGroupPtr;
}
@@ -398,16 +387,11 @@ byte *BoltFile::getBoltMember(uint32 id) {
// Get the entry
_state._curMemberPtr = &_state._curGroupPtr->_entries[id & 0xff];
- if (_state._curMemberPtr->_initMemRequired)
- initMem(_state._curMemberPtr->_initMemRequired);
// Return the data for the entry if it's already been loaded
if (_state._curMemberPtr->_data)
return _state._curMemberPtr->_data;
- _state._xorMask = _state._curMemberPtr->_xorMask;
- _state._encrypt = (_state._curMemberPtr->_mode & 0x10) != 0;
-
if (_state._curGroupPtr->_processed) {
error("Processed resources are not supported");
} else {
@@ -426,7 +410,7 @@ byte *BoltFile::getBoltMember(uint32 id) {
}
}
- _state._decompState = 0;
+ _state._decompState = false;
_state._historyIndex = 0;
// Initialize the resource
@@ -1085,27 +1069,18 @@ PictureResource::PictureResource(BoltFilesState &state, const byte *src):
}
} else if (_flags & PICFLAG_PIC_OFFSET) {
int mode = 0;
- if (_bounds.width() == 320) {
+ if (_bounds.width() == 320)
mode = 147;
- state._sImageShift = 2;
- state._SVGAReset = false;
- } else {
- state._SVGAReset = true;
+ else {
if (_bounds.width() == 640) {
- if (_bounds.height() == 400) {
+ if (_bounds.height() == 400)
mode = 220;
- state._sImageShift = 3;
- } else {
+ else
mode = 221;
- state._sImageShift = 3;
- }
- } else if (_bounds.width() == 800) {
+ } else if (_bounds.width() == 800)
mode = 222;
- state._sImageShift = 3;
- } else if (_bounds.width() == 1024) {
+ else if (_bounds.width() == 1024)
mode = 226;
- state._sImageShift = 3;
- }
}
if (mode != state._vm->_graphicsManager._SVGAMode) {
@@ -1135,18 +1110,10 @@ PictureResource::PictureResource(BoltFilesState &state, const byte *src):
int mask = (nbytes + 0x3FFF) >> 14;
_imgData = NULL;
- if (state._boltPageFrame == 0)
- state.EMSGetFrameAddr(&state._boltPageFrame);
if (state._boltPageFrame != 0) {
- if (!state.EMSAllocatePages(&_planeSize)) {
- _maskData = mask;
-
- for (int idx = 0; idx < mask; ++idx)
- state.EMSMapPageHandle(_planeSize, idx, idx);
-
- state.decompress(state._boltPageFrame, nbytes, state._curMemberPtr->_mode);
- return;
- }
+ _maskData = mask;
+ state.decompress(state._boltPageFrame, nbytes, state._curMemberPtr->_mode);
+ return;
}
}
diff --git a/engines/voyeur/files.h b/engines/voyeur/files.h
index 01b6d3469a..48656c5902 100644
--- a/engines/voyeur/files.h
+++ b/engines/voyeur/files.h
@@ -63,11 +63,6 @@ public:
BoltFile *_curLibPtr;
BoltGroup *_curGroupPtr;
BoltEntry *_curMemberPtr;
- byte *_curMemInfoPtr;
- int _fromGroupFlag;
- byte _xorMask;
- bool _encrypt;
- int _curFilePosition;
int _bufferEnd;
int _bufferBegin;
int _bytesLeft;
@@ -78,7 +73,7 @@ public:
int _historyIndex;
byte _historyBuffer[0x200];
int _runLength;
- int _decompState;
+ bool _decompState;
int _runType;
int _runValue;
int _runOffset;
@@ -86,18 +81,11 @@ public:
Common::Array<ResolveEntry> _resolves;
byte *_boltPageFrame;
- int _sImageShift;
- bool _SVGAReset;
public:
BoltFilesState();
byte *decompress(byte *buf, int size, int mode);
void nextBlock();
-
- // Methods in the original stubbed under ScummVM
- void EMSGetFrameAddr(byte **pageFrame) {}
- bool EMSAllocatePages(uint *planeSize) { return false; }
- void EMSMapPageHandle(int planeSize, int idx1, int idx2) {}
};
class BoltFile {
@@ -112,12 +100,6 @@ private:
void resolveAll();
byte *getBoltMember(uint32 id);
- // Methods in the original that are stubbed in ScummVM
- void termType() {}
- void initMem(int id) {}
- void termMem() {}
- void initGro() {}
- void termGro() {}
public:
Common::File _file;
public: