aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMatthew Hoops2007-09-23 12:31:21 +0000
committerMatthew Hoops2007-09-23 12:31:21 +0000
commit4e0913b19f4599bcf44dc0c27856356d0f1ad5b7 (patch)
tree1f4b09c714ea9ecc4ee04ff8e0f696faadaf171d /engines
parentfe2f83efcef8f70dd7a4c61ba0434a84e5830afb (diff)
downloadscummvm-rg350-4e0913b19f4599bcf44dc0c27856356d0f1ad5b7.tar.gz
scummvm-rg350-4e0913b19f4599bcf44dc0c27856356d0f1ad5b7.tar.bz2
scummvm-rg350-4e0913b19f4599bcf44dc0c27856356d0f1ad5b7.zip
changes for Winnie Amiga (now playable) and C64
svn-id: r29049
Diffstat (limited to 'engines')
-rw-r--r--engines/agi/preagi_winnie.cpp66
-rw-r--r--engines/agi/preagi_winnie.h3
2 files changed, 55 insertions, 14 deletions
diff --git a/engines/agi/preagi_winnie.cpp b/engines/agi/preagi_winnie.cpp
index e98105e61e..2d15d09b7b 100644
--- a/engines/agi/preagi_winnie.cpp
+++ b/engines/agi/preagi_winnie.cpp
@@ -385,7 +385,13 @@ int Winnie::parser(int pc, int index, uint8 *buffer) {
}
// jump to the script block of the selected option
- pc = hdr.opt[index].ofsOpt[iSel] - IDI_WTP_OFS_ROOM;
+ if (_vm->getPlatform() == Common::kPlatformPC)
+ pc = hdr.opt[index].ofsOpt[iSel] - IDI_WTP_OFS_ROOM_DOS;
+ else if (_vm->getPlatform() == Common::kPlatformC64)
+ pc = hdr.opt[index].ofsOpt[iSel] - IDI_WTP_OFS_ROOM_C64;
+ else if (_vm->getPlatform() == Common::kPlatformAmiga)
+ pc = hdr.opt[index].ofsOpt[iSel];
+
opcode = *(buffer + pc);
if (!opcode) pc++;
@@ -1022,19 +1028,46 @@ phase1:
}
phase2:
for (iBlock = 0; iBlock < IDI_WTP_MAX_BLOCK; iBlock++) {
- if (parser(hdr.ofsDesc[iBlock] - IDI_WTP_OFS_ROOM, iBlock, roomdata) == IDI_WTP_PAR_BACK) {
- goto phase1;
+ if (_vm->getPlatform() == Common::kPlatformPC) {
+ if (parser(hdr.ofsDesc[iBlock] - IDI_WTP_OFS_ROOM_DOS, iBlock, roomdata) == IDI_WTP_PAR_BACK)
+ goto phase1;
+ } else if (_vm->getPlatform() == Common::kPlatformC64) {
+ if (parser(hdr.ofsDesc[iBlock] - IDI_WTP_OFS_ROOM_C64, iBlock, roomdata) == IDI_WTP_PAR_BACK)
+ goto phase1;
+ } else if (_vm->getPlatform() == Common::kPlatformAmiga) {
+ if (parser(hdr.ofsDesc[iBlock], iBlock, roomdata) == IDI_WTP_PAR_BACK)
+ goto phase1;
}
}
for (;;) {
for (iBlock = 0; iBlock < IDI_WTP_MAX_BLOCK; iBlock++) {
- switch(parser(hdr.ofsBlock[iBlock] - IDI_WTP_OFS_ROOM, iBlock, roomdata)) {
- case IDI_WTP_PAR_GOTO:
- goto phase0;
- break;
- case IDI_WTP_PAR_BACK:
- goto phase2;
- break;
+ if (_vm->getPlatform() == Common::kPlatformPC) {
+ switch(parser(hdr.ofsBlock[iBlock] - IDI_WTP_OFS_ROOM_DOS, iBlock, roomdata)) {
+ case IDI_WTP_PAR_GOTO:
+ goto phase0;
+ break;
+ case IDI_WTP_PAR_BACK:
+ goto phase2;
+ break;
+ }
+ } else if (_vm->getPlatform() == Common::kPlatformC64) {
+ switch(parser(hdr.ofsBlock[iBlock] - IDI_WTP_OFS_ROOM_C64, iBlock, roomdata)) {
+ case IDI_WTP_PAR_GOTO:
+ goto phase0;
+ break;
+ case IDI_WTP_PAR_BACK:
+ goto phase2;
+ break;
+ }
+ } else if (_vm->getPlatform() == Common::kPlatformAmiga) {
+ switch(parser(hdr.ofsBlock[iBlock], iBlock, roomdata)) {
+ case IDI_WTP_PAR_GOTO:
+ goto phase0;
+ break;
+ case IDI_WTP_PAR_BACK:
+ goto phase2;
+ break;
+ }
}
}
}
@@ -1095,8 +1128,10 @@ void Winnie::drawRoomPic() {
// read room picture
readRoom(room, buffer, roomhdr);
- if (_vm->getPlatform() == Common::kPlatformPC || _vm->getPlatform() == Common::kPlatformC64)
- roomhdr.ofsPic = roomhdr.ofsPic - IDI_WTP_OFS_ROOM;
+ if (_vm->getPlatform() == Common::kPlatformPC)
+ roomhdr.ofsPic = roomhdr.ofsPic - IDI_WTP_OFS_ROOM_DOS;
+ else if (_vm->getPlatform() == Common::kPlatformC64)
+ roomhdr.ofsPic = roomhdr.ofsPic - IDI_WTP_OFS_ROOM_C64;
// draw room picture
_vm->_picture->decodePicture(buffer + roomhdr.ofsPic, 4096, 1, IDI_WTP_PIC_WIDTH, IDI_WTP_PIC_HEIGHT);
@@ -1127,7 +1162,12 @@ void Winnie::printRoomStr(int iRoom, int iStr) {
uint8 *buffer = (uint8 *)malloc(4096);
readRoom(iRoom, buffer, hdr);
- _vm->printStrXOR((char *)(buffer + hdr.ofsStr[iStr - 1] - IDI_WTP_OFS_ROOM));
+ if (_vm->getPlatform() == Common::kPlatformPC)
+ _vm->printStrXOR((char *)(buffer + hdr.ofsStr[iStr - 1] - IDI_WTP_OFS_ROOM_DOS));
+ else if (_vm->getPlatform() == Common::kPlatformC64)
+ _vm->printStrXOR((char *)(buffer + hdr.ofsStr[iStr - 1] - IDI_WTP_OFS_ROOM_C64));
+ else if (_vm->getPlatform() == Common::kPlatformAmiga)
+ _vm->printStrXOR((char *)(buffer + hdr.ofsStr[iStr - 1]));
free(buffer);
}
diff --git a/engines/agi/preagi_winnie.h b/engines/agi/preagi_winnie.h
index db20774353..bf0057b7f5 100644
--- a/engines/agi/preagi_winnie.h
+++ b/engines/agi/preagi_winnie.h
@@ -134,7 +134,8 @@ namespace Agi {
// data file offset modifiers
-#define IDI_WTP_OFS_ROOM 0x5400
+#define IDI_WTP_OFS_ROOM_DOS 0x5400
+#define IDI_WTP_OFS_ROOM_C64 0x5400 //FIXME: This number needs to be higher to show the image
#define IDI_WTP_OFS_OBJ 0x0800
// picture