[Scummvm-cvs-logs] SF.net SVN: scummvm: [25502] scummvm/trunk/engines/agos
kirben at users.sourceforge.net
kirben at users.sourceforge.net
Mon Feb 12 01:21:05 CET 2007
Revision: 25502
http://scummvm.svn.sourceforge.net/scummvm/?rev=25502&view=rev
Author: kirben
Date: 2007-02-11 16:21:04 -0800 (Sun, 11 Feb 2007)
Log Message:
-----------
Ooops, remove debug leftovers in last commit.
Modified Paths:
--------------
scummvm/trunk/engines/agos/agos.cpp
scummvm/trunk/engines/agos/res.cpp
scummvm/trunk/engines/agos/subroutine.cpp
Modified: scummvm/trunk/engines/agos/agos.cpp
===================================================================
--- scummvm/trunk/engines/agos/agos.cpp 2007-02-12 00:14:14 UTC (rev 25501)
+++ scummvm/trunk/engines/agos/agos.cpp 2007-02-12 00:21:04 UTC (rev 25502)
@@ -837,26 +837,6 @@
}
int AGOSEngine::go() {
- if (getGameType() == GType_ELVIRA1 && getPlatform() == Common::kPlatformAtariST &&
- (getFeatures() & GF_DEMO)) {
- int i;
-
- while(1) {
- for (i = 1; i < 4; i++) {
- setWindowImageEx(3, 9902 + i);
- debug(0, "Displaying image %d", 9902 + i);
- delay(1000);
-
- }
-
- for (i = 4; i < 16; i++) {
- setWindowImageEx(4, 9902 + i);
- debug(0, "Displaying image %d", 9902 + i);
- delay(1000);
- }
- }
- }
-
loadGamePcFile();
addTimeEvent(0, 1);
@@ -877,6 +857,26 @@
vc34_setMouseOff();
+ if (getGameType() == GType_ELVIRA1 && getPlatform() == Common::kPlatformAtariST &&
+ (getFeatures() & GF_DEMO)) {
+ int i;
+
+ while(1) {
+ for (i = 1; i < 4; i++) {
+ setWindowImageEx(3, 9902 + i);
+ debug(0, "Displaying image %d", 9902 + i);
+ delay(1000);
+
+ }
+
+ for (i = 4; i < 16; i++) {
+ setWindowImageEx(4, 9902 + i);
+ debug(0, "Displaying image %d", 9902 + i);
+ delay(1000);
+ }
+ }
+ }
+
if (getGameType() == GType_ELVIRA1 && getFeatures() & GF_DEMO) {
loadMusic(0);
}
@@ -887,11 +887,9 @@
_moviePlay->play();
}
- //runSubroutine101();
+ runSubroutine101();
permitInput();
- setWindowImageEx(3, 911);
-
while (1) {
waitForInput();
handleVerbClicked(_verbHitArea);
Modified: scummvm/trunk/engines/agos/res.cpp
===================================================================
--- scummvm/trunk/engines/agos/res.cpp 2007-02-12 00:14:14 UTC (rev 25501)
+++ scummvm/trunk/engines/agos/res.cpp 2007-02-12 00:21:04 UTC (rev 25502)
@@ -680,10 +680,12 @@
if (getPlatform() == Common::kPlatformAcorn) {
sprintf(filename, "%.3d%d.DAT", id, type);
} else if (getPlatform() == Common::kPlatformAmiga || getPlatform() == Common::kPlatformAtariST) {
- //if (getFeatures() & GF_TALKIE) {
- sprintf(filename, "%.2d%d.out", id, type);
- /* } else if (getGameType() == GType_ELVIRA1 && getFeatures() & GF_DEMO) {
- if (id == 20)
+ if (getFeatures() & GF_TALKIE) {
+ sprintf(filename, "%.3d%d.out", id, type);
+ } else if (getGameType() == GType_ELVIRA1 && getFeatures() & GF_DEMO) {
+ if (getPlatform() == Common::kPlatformAtariST)
+ sprintf(filename, "%.2d%d.out", id, type);
+ else if (id == 20)
sprintf(filename, "D%d.out", type);
else if (id == 26)
sprintf(filename, "J%d.out", type);
@@ -699,7 +701,7 @@
sprintf(filename, "%.2d%d.pkd", id, type);
} else {
sprintf(filename, "%.3d%d.pkd", id, type);
- } */
+ }
} else {
if (getGameType() == GType_ELVIRA1 || getGameType() == GType_ELVIRA2 || getGameType() == GType_WW) {
sprintf(filename, "%.2d%d.VGA", id, type);
Modified: scummvm/trunk/engines/agos/subroutine.cpp
===================================================================
--- scummvm/trunk/engines/agos/subroutine.cpp 2007-02-12 00:14:14 UTC (rev 25501)
+++ scummvm/trunk/engines/agos/subroutine.cpp 2007-02-12 00:21:04 UTC (rev 25502)
@@ -483,8 +483,6 @@
SubroutineLine *AGOSEngine::createSubroutineLine(Subroutine *sub, int where) {
SubroutineLine *sl, *cur_sl = NULL, *last_sl = NULL;
- printf("sub->id %d\n", sub->id);
-
if (sub->id == 0)
sl = (SubroutineLine *)allocateTable(SUBROUTINE_LINE_BIG_SIZE);
else
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list