[Scummvm-cvs-logs] SF.net SVN: scummvm:[36056] scummvm/trunk/engines/made/scriptfuncs.cpp
thebluegr at users.sourceforge.net
thebluegr at users.sourceforge.net
Sun Jan 25 11:16:00 CET 2009
Revision: 36056
http://scummvm.svn.sourceforge.net/scummvm/?rev=36056&view=rev
Author: thebluegr
Date: 2009-01-25 10:16:00 +0000 (Sun, 25 Jan 2009)
Log Message:
-----------
Added some information on sfPlayNote, sfStopNote, sfPlayTele, sfStopTele
Modified Paths:
--------------
scummvm/trunk/engines/made/scriptfuncs.cpp
Modified: scummvm/trunk/engines/made/scriptfuncs.cpp
===================================================================
--- scummvm/trunk/engines/made/scriptfuncs.cpp 2009-01-25 09:37:53 UTC (rev 36055)
+++ scummvm/trunk/engines/made/scriptfuncs.cpp 2009-01-25 10:16:00 UTC (rev 36056)
@@ -306,24 +306,34 @@
int16 ScriptFunctions::sfPlayNote(int16 argc, int16 *argv) {
// TODO: Used in Manhole:NE, Manhole EGA
+ // This is used when using the piano in the desk screen inside the ship.
+ // It takes 2 parameters:
+ // The first parameter is the key pressed
+ // The second parameter is some sort of modifier (volume, perhaps?),
+ // depending on which of the 3 keys on the right has been pressed (12 - 14)
warning("Unimplemented opcode: sfPlayNote");
return 0;
}
int16 ScriptFunctions::sfStopNote(int16 argc, int16 *argv) {
// TODO: Used in Manhole:NE, Manhole EGA
+ // Used in the same place as sfPlayNote, with the same parameters
warning("Unimplemented opcode: sfStopNote");
return 0;
}
int16 ScriptFunctions::sfPlayTele(int16 argc, int16 *argv) {
// TODO: Used in Manhole:NE, Manhole EGA
+ // This is used when pressing the phone keys while using the phone in
+ // the desk screen inside the ship.
+ // It takes 1 parameter, the key pressed (0-9, 10 for asterisk, 11 for hash)
warning("Unimplemented opcode: sfPlayTele");
return 0;
}
int16 ScriptFunctions::sfStopTele(int16 argc, int16 *argv) {
// TODO: Used in Manhole:NE, Manhole EGA
+ // Used in the same place as sfPlayTele, with the same parameters
warning("Unimplemented opcode: sfStopTele");
return 0;
}
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