-/* files.c - Transscription, recording and playback
+/* files.c - Transcription, recording and playback
* Copyright (c) 1995-1997 Stefan Jokisch
*
* This file is part of Frotz.
/*
* script_open
*
- * Open the transscript file. 'AMFV' makes this more complicated as it
- * turns transscription on/off several times to exclude some text from
- * the transscription file. This wasn't a problem for the original V4
- * interpreters which always sent transscription to the printer, but it
+ * Open the transcript file. 'AMFV' makes this more complicated as it
+ * turns transcription on/off several times to exclude some text from
+ * the transcription file. This wasn't a problem for the original V4
+ * interpreters which always sent transcription to the printer, but it
* means a problem to modern interpreters that offer to open a new file
- * every time transscription is turned on. Our solution is to append to
- * the old transscription file in V1 to V4, and to ask for a new file
+ * every time transcription is turned on. Our solution is to append to
+ * the old transcription file in V1 to V4, and to ask for a new file
* name in V5+.
*
*/
/*
* script_close
*
- * Stop transscription.
+ * Stop transcription.
*
*/
/*
* script_new_line
*
- * Write a newline to the transscript file.
+ * Write a newline to the transcript file.
*
*/
/*
* script_char
*
- * Write a single character to the transscript file.
+ * Write a single character to the transcript file.
*
*/
/*
* script_word
*
- * Write a string to the transscript file.
+ * Write a string to the transcript file.
*
*/
/*
* script_write_input
*
- * Send an input line to the transscript file.
+ * Send an input line to the transcript file.
*
*/
/*
* script_erase_input
*
- * Remove an input line from the transscript file.
+ * Remove an input line from the transcript file.
*
*/
/*
* script_mssg_on
*
- * Start sending a "debugging" message to the transscript file.
+ * Start sending a "debugging" message to the transcript file.
*
*/
#define CONFIG_TIMEDINPUT 0x80 /* Interpr supports timed input - V4+ */
-#define SCRIPTING_FLAG 0x0001 /* Outputting to transscription file - V1+ */
+#define SCRIPTING_FLAG 0x0001 /* Outputting to transcription file - V1+ */
#define FIXED_FONT_FLAG 0x0002 /* Use fixed width font - V3+ */
#define REFRESH_FLAG 0x0004 /* Refresh the screen - V6 */
#define GRAPHICS_FLAG 0x0008 /* Game wants to use graphics - V5+ */
flush_buffer ();
- /* Remove initial input from the transscript file or from the screen */
+ /* Remove initial input from the transcript file or from the screen */
if (ostream_script && enable_scripting && !no_scripting)
script_erase_input (buf);
}
- /* Copy input line to transscript file or to the screen */
+ /* Copy input line to transcript file or to the screen */
if (ostream_script && enable_scripting && !no_scripting)
script_write_input (buf, key);
*
* FILE_SAVE - Save game file
* FILE_RESTORE - Restore game file
- * FILE_SCRIPT - Transscript file
+ * FILE_SCRIPT - Transcript file
* FILE_RECORD - Command file for recording
* FILE_PLAYBACK - Command file for playback
* FILE_SAVE_AUX - Save auxilary ("preferred settings") file