Description
INT WRITE(INT SOURCE[v/ariable], INT [variable]X, INT Y, INT CENTERED, STRING TEXT)
PARAMETERS:
source: Identifier of a font loaded with Load_Fnt.
x: X Coordinate of where to draw the text.
y: Y Coordinate of where to draw the text
centred: Code that it indicates like interpreting the point (x, y) with respect to the text it is to draw.
It can be one of the following values:
0: Left superior corner
1: Superior centre
2: Right superior corner
3: Left centre
4: Centre
5: Right centre
6: Left inferior corner
7: Inferior centre
8: Inferior corner right
text: String to write in screen.
DESCRIPTION:
This function writes a fixed text in screen. All the texts written with the function Write remain active over the processes (each frame is drawn as if the graph of a process it was).
Note:
A limit of 512 simultaneous texts in screen at once exists, if it were reached, the program would stop immediately generating an error.
|