aboutsummaryrefslogtreecommitdiff
path: root/engines/draci
diff options
context:
space:
mode:
authorDenis Kasak2009-06-15 17:12:21 +0000
committerDenis Kasak2009-06-15 17:12:21 +0000
commitca7d400dc35ed69d5e6368672102822b7eab081c (patch)
tree63cf6448da2b70bc0e80e8c0402f4ef2f4156020 /engines/draci
parent30ef3a122369ab3002b2e718934afea676a48fe7 (diff)
downloadscummvm-rg350-ca7d400dc35ed69d5e6368672102822b7eab081c.tar.gz
scummvm-rg350-ca7d400dc35ed69d5e6368672102822b7eab081c.tar.bz2
scummvm-rg350-ca7d400dc35ed69d5e6368672102822b7eab081c.zip
Submitting changes to DraciEngine::go() mentioned in the last commit but omitted by accident. Removed superfluous BArchive::closeArchive() calls.
svn-id: r41552
Diffstat (limited to 'engines/draci')
-rw-r--r--engines/draci/draci.cpp51
1 files changed, 40 insertions, 11 deletions
diff --git a/engines/draci/draci.cpp b/engines/draci/draci.cpp
index 2f55906a2b..99b9cd1ab2 100644
--- a/engines/draci/draci.cpp
+++ b/engines/draci/draci.cpp
@@ -73,7 +73,14 @@ int DraciEngine::init() {
BArchive ar(path);
BAFile *f;
debugC(3, kDraciGeneralDebugLevel, "Number of file streams in archive: %d", ar.size());
- f = ar[0];
+
+ if(ar.isOpen()) {
+ f = ar[0];
+ } else {
+ debugC(2, kDraciGeneralDebugLevel, "ERROR - Archive not opened");
+ return 0;
+ }
+
debugC(3, kDraciGeneralDebugLevel, "First 10 bytes of file %d: ", 0);
for (unsigned int i = 0; i < 10; ++i) {
debugC(3, kDraciGeneralDebugLevel, "0x%02x%c", f->_data[i], (i < 9) ? ' ' : '\n');
@@ -82,10 +89,16 @@ int DraciEngine::init() {
// Read in GPL script for the first game location
debugC(2, kDraciBytecodeDebugLevel, "Disassembling GPL script "
"for the first game location...");
- Common::String path2("MIST.DFW");
- ar.closeArchive();
- ar.openArchive(path2);
- f = ar[3];
+
+ path = "MIST.DFW";
+ ar.openArchive(path);
+
+ if(ar.isOpen()) {
+ f = ar[3];
+ } else {
+ debugC(2, kDraciGeneralDebugLevel, "ERROR - Archive not opened");
+ return 0;
+ }
// Disassemble GPL script for the first location
gpldisasm(f->_data, f->_length);
@@ -113,9 +126,15 @@ int DraciEngine::go() {
BArchive ar(path);
BAFile *f;
- ar.closeArchive();
ar.openArchive(path);
- f = ar[0];
+
+ if(ar.isOpen()) {
+ f = ar[0];
+ } else {
+ debugC(2, kDraciGeneralDebugLevel, "ERROR - Archive not opened");
+ return 0;
+ }
+
Common::MemoryReadStream paletteReader(f->_data, f->_length);
for (unsigned int i = 0; i < 256; ++i) {
@@ -156,8 +175,12 @@ int DraciEngine::go() {
// Draw and animate the dragon
path = "OBR_AN.DFW";
- ar.closeArchive();
ar.openArchive(path);
+
+ if(!ar.isOpen()) {
+ debugC(2, kDraciGeneralDebugLevel, "ERROR - Archive not opened");
+ return 0;
+ }
for (unsigned int t = 0; t < 25; ++t) {
debugC(5, kDraciGeneralDebugLevel, "Drawing frame %d...", t);
@@ -170,11 +193,17 @@ int DraciEngine::go() {
debugC(5, kDraciGeneralDebugLevel, "Finished frame %d", t);
}
-
+
path = "HRA.DFW";
- ar.closeArchive();
ar.openArchive(path);
- f = ar[0];
+
+ if(ar.isOpen()) {
+ f = ar[0];
+ } else {
+ debugC(2, kDraciGeneralDebugLevel, "ERROR - Archive not opened");
+ return 0;
+ }
+
Sprite sp(f->_data, f->_length, 0, 0, true);
CursorMan.pushCursorPalette(palette, 0, 256);
CursorMan.pushCursor(sp._data, sp._width, sp._height, sp._width / 2, sp._height / 2);