aboutsummaryrefslogtreecommitdiff
path: root/engines/made/script.cpp
diff options
context:
space:
mode:
authorFilippos Karapetis2008-04-24 14:39:01 +0000
committerFilippos Karapetis2008-04-24 14:39:01 +0000
commit9c4b451e1a16614d798fbf7a682766b7c774bd85 (patch)
tree0bdb35109d111b905c025738de1427562812b61d /engines/made/script.cpp
parent00e652f8e42f41963dc128441d5583e4a4940e9a (diff)
downloadscummvm-rg350-9c4b451e1a16614d798fbf7a682766b7c774bd85.tar.gz
scummvm-rg350-9c4b451e1a16614d798fbf7a682766b7c774bd85.tar.bz2
scummvm-rg350-9c4b451e1a16614d798fbf7a682766b7c774bd85.zip
Unimplemented commands and opcodes throw a warning now
svn-id: r31693
Diffstat (limited to 'engines/made/script.cpp')
-rw-r--r--engines/made/script.cpp40
1 files changed, 20 insertions, 20 deletions
diff --git a/engines/made/script.cpp b/engines/made/script.cpp
index 1f5518c685..579abab7c3 100644
--- a/engines/made/script.cpp
+++ b/engines/made/script.cpp
@@ -514,7 +514,7 @@ void ScriptInterpreter::cmd_vsize() {
}
void ScriptInterpreter::cmd_exit() {
- fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_exit");
}
void ScriptInterpreter::cmd_return() {
@@ -548,33 +548,32 @@ void ScriptInterpreter::cmd_call() {
}
void ScriptInterpreter::cmd_svar() {
- fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_svar");
}
void ScriptInterpreter::cmd_sset() {
- fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_sset");
}
void ScriptInterpreter::cmd_split() {
- fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_split");
}
void ScriptInterpreter::cmd_snlit() {
- fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_snlit");
}
void ScriptInterpreter::cmd_yorn() {
- fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_yorn");
}
void ScriptInterpreter::cmd_save() {
- //fflush(stdout); g_system->delayMillis(5000);
- // TODO
+ warning("Unimplemented command: cmd_save");
_stack.setTop(0);
}
void ScriptInterpreter::cmd_restore() {
- fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_restore");
}
void ScriptInterpreter::cmd_arg() {
@@ -608,26 +607,27 @@ void ScriptInterpreter::cmd_tspace() {
}
void ScriptInterpreter::cmd_class() {
- fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_class");
}
void ScriptInterpreter::cmd_objectp() {
- fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_objectp");
}
void ScriptInterpreter::cmd_vectorp() {
- fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_vectorp");
}
void ScriptInterpreter::cmd_restart() {
- fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_restart");
}
void ScriptInterpreter::cmd_rand() {
- //fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_rand");
}
void ScriptInterpreter::cmd_randomize() {
+ warning("Unimplemented command: cmd_randomize");
// TODO
_stack.setTop(0);
}
@@ -696,19 +696,19 @@ void ScriptInterpreter::cmd_extend() {
}
void ScriptInterpreter::cmd_catch() {
- fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_catch");
}
void ScriptInterpreter::cmd_cdone() {
- fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_cdone");
}
void ScriptInterpreter::cmd_throw() {
- fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_throw");
}
void ScriptInterpreter::cmd_functionp() {
- fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_functionp");
}
void ScriptInterpreter::cmd_le() {
@@ -728,11 +728,11 @@ void ScriptInterpreter::cmd_ge() {
}
void ScriptInterpreter::cmd_varx() {
- fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_varx");
}
void ScriptInterpreter::cmd_setx() {
- fflush(stdout); g_system->delayMillis(5000);
+ warning("Unimplemented command: cmd_setx");
}
} // End of namespace Made