diff options
-rw-r--r-- | engines/sci/console.cpp | 9 | ||||
-rw-r--r-- | engines/sci/engine/segment.h | 23 |
2 files changed, 31 insertions, 1 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp index 63a1f0c2ec..412dfaf184 100644 --- a/engines/sci/console.cpp +++ b/engines/sci/console.cpp @@ -2213,9 +2213,16 @@ bool Console::segmentInfo(int nr) { break; #ifdef ENABLE_SCI32 - case SEG_TYPE_ARRAY: + case SEG_TYPE_ARRAY: { + ArrayTable &table = *(ArrayTable *)mobj; debugPrintf("SCI32 arrays\n"); + for (uint i = 0; i < table.size(); ++i) { + if (table.isValidEntry(i)) { + debugPrintf(" [%04x] %s\n", i, table[i].toDebugString().c_str()); + } + } break; + } case SEG_TYPE_BITMAP: { BitmapTable &table = *(BitmapTable *)mobj; diff --git a/engines/sci/engine/segment.h b/engines/sci/engine/segment.h index 7c415f3bb3..dda0189a77 100644 --- a/engines/sci/engine/segment.h +++ b/engines/sci/engine/segment.h @@ -855,6 +855,29 @@ public: Common::strlcpy((char *)_data, string.c_str(), string.size() + 1); } + Common::String toDebugString() const { + const char *type; + switch(_type) { + case kArrayTypeID: + type = "reg_t"; + break; + case kArrayTypeByte: + type = "byte"; + break; + case kArrayTypeInt16: + type = "int16"; + break; + case kArrayTypeString: + type = "string"; + break; + case kArrayTypeInvalid: + type = "invalid"; + break; + } + + return Common::String::format("type %s; %u entries; %u bytes", type, size(), byteSize()); + } + protected: void *_data; SciArrayType _type; |