initial 1.3.0

This commit is contained in:
2019-05-01 17:46:38 -04:00
commit ad86bc2a30
418 changed files with 34837 additions and 0 deletions

13
help/displaying_text.html Normal file
View File

@@ -0,0 +1,13 @@
<HTML>
<HEAD>
<TITLE>Displaying text on screen</TITLE></HEAD>
<BODY>
<h1>Displaying text on screen</h1>
For text display purposes, the AGI screen consists of 25 lines (numbered 0-24) and 40 columns (numbered 0-39). Each text character is 8 screen pixels (4 AGI pixels) wide and 8 screen pixels high.
Note that this gives a total screen resolution of 320x200, even though the area that pictures are displayed in and objects are placed is only 168 pixels high. The top line of the screen is normally
reserved for the status line and menu, and the bottom three lines are normally reserved for player input and other text display (in some early versions of the interpreter, text from commands like
<a href="print.html">print</a> was displayed down here instead of in windows).
<p>
<B>See also</B><p>
<a href="display_commands.html">Display commands</a><p>
</BODY></HTML>