Script Classes for Adventure Games/File Class

From SCI Wiki
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Official SCI Documentation

Chapter: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14
15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | Index


The File Class

Author: Jeff Stephenson

Date: 5 April 1988

 


The File Class

The File class allows you to open and write to a file on disk. This is useful for logging user input for which you have no response in the development or beta-test phase, writing utilities which allow you to position Actors on a picture and then write out the coordinates, etc.

In file: file.sc
Inherits from: Object
Inherited by: none


Properties

name

The name of the file. Defaults to "gamefile.sh".

handle

The handle by which the operating system refers to the opened file. Don't monkey with this, or you may blow away the OS.


Methods

open: [flag]

Open the file whose name is name for writing. The optional parameter flag may be either fAppend, in which case writing begins at the end of an existing file, or fTrunc, in which case the contents of the file are deleted before writing to it. If flag is not present, fAppend is assumed.

write: str [str ...]

Write the strings pointed to by str to the file.

close:

Close the file.

 

Notes


 

Table of Contents

 

< Previous: The StatusLine Class Next: The Code Class >