aboutsummaryrefslogtreecommitdiff
path: root/engines/prince
diff options
context:
space:
mode:
authorEugene Sandulenko2018-05-06 07:39:43 +0200
committerEugene Sandulenko2018-05-06 19:33:45 +0200
commit9a5ba52e6b0865c11258d0fec27796279ff83c34 (patch)
tree52fbaa65521611001295b0896f6091e27728ee51 /engines/prince
parentc6872dcf5299ef22a1ca0bfe7bbc2296f2e98868 (diff)
downloadscummvm-rg350-9a5ba52e6b0865c11258d0fec27796279ff83c34.tar.gz
scummvm-rg350-9a5ba52e6b0865c11258d0fec27796279ff83c34.tar.bz2
scummvm-rg350-9a5ba52e6b0865c11258d0fec27796279ff83c34.zip
PRINCE: Cleanup debug output
Diffstat (limited to 'engines/prince')
-rw-r--r--engines/prince/archive.cpp2
-rw-r--r--engines/prince/hero.cpp2
-rw-r--r--engines/prince/music.cpp2
-rw-r--r--engines/prince/resource.cpp4
-rw-r--r--engines/prince/script.cpp14
-rw-r--r--engines/prince/sound.cpp2
6 files changed, 11 insertions, 15 deletions
diff --git a/engines/prince/archive.cpp b/engines/prince/archive.cpp
index aaf3a9def5..0ed6e8c753 100644
--- a/engines/prince/archive.cpp
+++ b/engines/prince/archive.cpp
@@ -162,8 +162,6 @@ Common::SeekableReadStream *PtcArchive::createReadStreamForMember(const Common::
debug(8, "PtcArchive::createReadStreamForMember: decompressed %d to %d bytes", entryHeader._size, decompLen);
}
- //debug("PtcArchive::createReadStreamForMember name %s", name.c_str());
-
return new Common::MemoryReadStream(buffer, size, DisposeAfterUse::YES);
}
diff --git a/engines/prince/hero.cpp b/engines/prince/hero.cpp
index 037f11e95a..8ade649a9f 100644
--- a/engines/prince/hero.cpp
+++ b/engines/prince/hero.cpp
@@ -68,7 +68,7 @@ bool Hero::loadAnimSet(uint32 animSetNr) {
_moveSet.resize(kMoveSetSize);
for (uint32 i = 0; i < kMoveSetSize; i++) {
- debug("Anim set item %d %s", i, animSet[i]);
+ debug(5, "Anim set item %d %s", i, animSet[i]);
Animation *anim = nullptr;
if (animSet[i] != nullptr) {
anim = new Animation();
diff --git a/engines/prince/music.cpp b/engines/prince/music.cpp
index f1846f925e..58a1c1c02a 100644
--- a/engines/prince/music.cpp
+++ b/engines/prince/music.cpp
@@ -150,7 +150,7 @@ void MusicPlayer::killMidi() {
void MusicPlayer::loadMidi(const char *name) {
Common::SeekableReadStream *stream = SearchMan.createReadStreamForMember(name);
if (!stream) {
- debug("Can't load midi stream %s", name);
+ warning("Can't load midi stream %s", name);
return;
}
diff --git a/engines/prince/resource.cpp b/engines/prince/resource.cpp
index d264540393..34de29b388 100644
--- a/engines/prince/resource.cpp
+++ b/engines/prince/resource.cpp
@@ -78,8 +78,8 @@ bool AnimListItem::loadFromStream(Common::SeekableReadStream &stream) {
_nextAnim = stream.readUint16LE();
_flags = stream.readUint16LE();
- //debug("AnimListItem type %d, fileNumber %d, x %d, y %d, flags %d", _type, _fileNumber, _x, _y, _flags);
- //debug("startPhase %d, endPhase %d, loopPhase %d", _startPhase, _endPhase, _loopPhase);
+ debug(7, "AnimListItem type %d, fileNumber %d, x %d, y %d, flags %d", _type, _fileNumber, _x, _y, _flags);
+ debug(7, "startPhase %d, endPhase %d, loopPhase %d", _startPhase, _endPhase, _loopPhase);
// 32 byte aligment
stream.seek(pos + 32);
diff --git a/engines/prince/script.cpp b/engines/prince/script.cpp
index d6d325181c..2581dde1c1 100644
--- a/engines/prince/script.cpp
+++ b/engines/prince/script.cpp
@@ -222,7 +222,7 @@ void Script::setObjId(int roomObjOffset, int slot, byte objectId) {
}
int Script::scanMobEvents(int mobMask, int dataEventOffset) {
- debug("mobMask: %d", mobMask);
+ debug(3, "scanMobEvents: mobMask: %d", mobMask);
int i = 0;
int16 mob;
int32 code;
@@ -230,7 +230,7 @@ int Script::scanMobEvents(int mobMask, int dataEventOffset) {
mob = (int)READ_LE_UINT16(&_data[dataEventOffset + i * 6]);
if (mob == mobMask) {
code = (int)READ_LE_UINT32(&_data[dataEventOffset + i * 6 + 2]);
- debug("code: %d", code);
+ debug(3, "scanMobEvents: code: %d", code);
return code;
}
i++;
@@ -239,7 +239,7 @@ int Script::scanMobEvents(int mobMask, int dataEventOffset) {
}
int Script::scanMobEventsWithItem(int mobMask, int dataEventOffset, int itemMask) {
- debug("mobMask: %d", mobMask);
+ debug(3, "scanMobEventsWithItem: mobMask: %d", mobMask);
int i = 0;
int16 mob;
int16 item;
@@ -250,8 +250,8 @@ int Script::scanMobEventsWithItem(int mobMask, int dataEventOffset, int itemMask
item = (int)READ_LE_UINT16(&_data[dataEventOffset + i * 8 + 2]);
if (item == itemMask) {
code = (int)READ_LE_UINT32(&_data[dataEventOffset + i * 8 + 4]);
- debug("itemMask: %d", item);
- debug("code: %d", code);
+ debug(3, "scanMobEventsWithItem: itemMask: %d", item);
+ debug(3, "scanMobEventsWithItem: code: %d", code);
return code;
}
}
@@ -388,7 +388,7 @@ bool Script::loadAllMasks(Common::Array<Mask> &maskList, int offset) {
tempMask._width = 0;
tempMask._height = 0;
tempMask._data = nullptr;
- debug("Can't load %s", msStreamName.c_str());
+ warning("loadAllMasks: Can't load %s", msStreamName.c_str());
delete msStream;
} else {
msStream = Resource::getDecompressedStream(msStream);
@@ -452,11 +452,9 @@ void Interpreter::debugInterpreter(const char *s, ...) {
Common::String str = Common::String::format("@0x%08X: ", _lastInstruction);
str += Common::String::format("op %04d: ", _lastOpcode);
- //debugC(10, DebugChannel::kScript, "PrinceEngine::Script %s %s", str.c_str(), buf);
if (!strcmp(_mode, "fg")) {
debug(10, "PrinceEngine::Script %s %s", str.c_str(), buf);
}
- //debug("Prince::Script mode %s %s %s", _mode, str.c_str(), buf);
}
void Interpreter::stepBg() {
diff --git a/engines/prince/sound.cpp b/engines/prince/sound.cpp
index a742005571..49983860be 100644
--- a/engines/prince/sound.cpp
+++ b/engines/prince/sound.cpp
@@ -104,7 +104,7 @@ bool PrinceEngine::loadVoice(uint32 slot, uint32 sampleSlot, const Common::Strin
freeSample(sampleSlot);
Common::SeekableReadStream *sampleStream = SearchMan.createReadStreamForMember(streamName);
if (sampleStream == nullptr) {
- debug("Can't open %s", streamName.c_str());
+ warning("loadVoice: Can't open %s", streamName.c_str());
return false;
}