]> git.sur5r.net Git - cc65/blob - doc/geos.sgml
Added the io module
[cc65] / doc / geos.sgml
1 <!doctype linuxdoc system>
2
3 <article>
4
5 <!-- Title information -->
6
7 <title>GEOSLib docs
8 <author>Maciej Witkowiak, <htmlurl url="mailto:ytm@friko.onet.pl" name="ytm@friko.onet.pl">
9 <date>v1.1, 26.12.1999, 16.03.2000, 19-22.03.2000, 11.07.2000
10 <abstract>
11 This is the documentation of cc65's GEOSLib, but information contained here may be also
12 useful for writting GEOS applications in general.
13 </abstract>
14
15 <!-- Table of contents -->
16 <toc>
17
18 <!-- Begin the document -->
19
20 <sect>Introduction
21 <p>
22 As we all know that the best computers in the world are c64 and c128. They have their GUI too -
23 excellent GEOS. GEOS seems very difficult and cryptic for many people, from programmer's point
24 of view. That's not true. The designers of GEOS created flexible and powerful system, which
25 is easy to use and program.
26 <p>
27 Coding GEOS in C? That's something new. It is possible now - with Ulrich von Bassewitz's cc65
28 package and my GEOSLib you are able to create GEOS applications in no-time.
29 <p>
30 GEOSLib in its current stage doesn't support standard cc65 libraries. It is likely to be changed
31 in next version. Note that it doesn't mean that it will not work now. I didn't bother myself to
32 check if it is possible. All I needed for a start was including only <tt/geos.h/ in the source
33 and nothing else.
34 <p>
35 I am an assembler programmer and GEOSLib was designed in such way that cc65 could emit the best
36 available code (well, the best as for machine :). Many of the <tt/void foo (void)/ functions are
37 just raw calls to Kernal (assembled just as <tt/jsr _foo/), look in <tt/gsym.h/, where you
38 will find many definitions of standard GEOS locations. Access to these addresses is optimized by
39 cc65 to simple <tt/lda/ and <tt/sta/.
40
41 <sect1>Requirements
42 <p>
43 You will not need c64 or c128 for development. The only hardware requirement is a PC capable of
44 runing cc65. You will however need c64 or c128 emulator and GEOS image disks (.d64) to test your
45 programs.
46
47 The software needed:
48 <itemize>
49     <item><em/cc65/ Excellent package containing C crosscompiler, crossassembler and linker, you
50                 can get it from: <htmlurl url="http://www.von-bassewitz.de/uz/cc65/"
51                 name="http://www.von-bassewitz.de/uz/cc65/">
52     <item><em/VICE/ This is portable C64, C128 and few other Commodore computers emulator, you
53                 can obtain it from: <htmlurl url="http://www.cs.cmu.edu/~dsladic/vice/vice.html"
54                 name="http://www.cs.cmu.edu/~dsladic/vice/vice.html">
55     <item><em/Star Commander/ This tool is for DOS right now. You will need it for transferring
56                 object files from PC to 1541. There's also one important ability of this
57                 tool - it automatically un-converts .cvt files into GEOS native format on
58                 disk image files.
59 </itemize>
60 <p>
61 VICE and cc65 are portable - they run on variety of platforms - DOS, Win32 and UNIX. GEOSLib only
62 needs cc65.
63 <p>
64 <em/Update:/ starting from v2.5.0 GEOSLib is a part of cc65 package as its GEOS support.
65
66 <sect1>Legal
67 <p>
68 I want to thank Uz for his cc65 package, Alexander Boyce for his excellent GEOS Programmer's
69 Reference Guide and BSW for GEOS.
70 <p>
71 GEOSLib is covered by the same license as cc65. You can find the whole text among documentation.
72 I would really appreciate if you would like to send me your comments, suggestions, questions,
73 changes, bug reports etc. I feel that GEOSLib may be much better. After all, this is the first
74 release. I will also appreciate if you will just give me a sign that you are using GEOSLib -
75 not especially something big and important, mail me even if you are just playing with it.
76 <p>
77 You can send postcards with hellos to:
78 <p>
79 Maciej Witkowiak, ul. Slowackiego 6/57, 77-400 ZLOTOW
80 <p>
81 POLAND
82 <p>
83 e-mail: <tt/ytm@friko.onet.pl/
84
85 <sect>What have you got and what to do with it?
86 <p>
87 This chapter describes some rules you ought to obey, and how to use GEOSLib.
88
89 <sect1>General rules
90 <p>
91 Ulrich probably won't like it, but I don't want you to use his standard C functions. In fact, the
92 best way (IMO) of programming GEOS with GEOSLib is to only use GEOS lib. You don't need anything
93 else. You shouldn't need anything else.
94 <p>
95 If you really, really need to mix standard libraries with GEOSLib be warned that it probably won't
96 work and lookout for the <tt/errno/ - it points to one place when <tt/errno.h/ is included and
97 another with <tt/geos.h/.
98 <p>
99 Apart from this file which merely describes only standard GEOS library functions you should read
100 <tt/grc/ (GEOS resource compiler) documentation. There are informations about necessary resource
101 files (each GEOS application neeeds at least one) and the building process - what should be done
102 and in which order.
103
104 <sect1>Usage
105 <p>
106 All in all, you just need to place
107 <tscreen><verb>
108 &num;include &lt;geos.h&gt
109 </verb></tscreen>
110 on top of your source.
111 <p>
112 Please read cc65's documentation on how to compile C, assembler and link everything together.
113 <p>
114 GEOSLib building process isn't yet defined stable. Detailed information how to link everything
115 together is in separated file together with resource compiler documentation.
116 <p>
117 As a general rule read the sources of example programs and read the headers. These are the most
118 reliable sources of knowledge ;). You will also find there many C macros representing various
119 arguments passed to functions. Please use them. You will find your sources easier to understand,
120 and it will be easier to find bugs.
121 <p>
122 All types used in GEOSLib are <tt/unsigned/.
123 <p>
124 Screen coordinates are given in pixels unless stated differently.
125
126 <sect1>Notes on style
127 <p>
128 All programs start their execution on <tt/main/ function. Unlike plain C exiting from this function
129 doesn't mean end of program. GEOS is event-driven environment where applications are only executing
130 events, main loop is in kernal. <tt/main/ function should setup the screen, menus etc. and return.
131 Real end of the program should be called from event call, e.g. from menu item. You can force end of
132 program and return to DeskTop either by standard <tt/exit (0)/ function or by <tt/EnterDeskTop()/.
133 Currently they are almost the same (last minute note: don't use <tt/exit/ ever, it's broken right
134 now :-).
135 <p>
136 Whenever possible use definitions from <tt/gsym.h/. The resulting code is translated by cc65 into
137 series of <tt/lda/ and <tt/sta/, so you can't do it better :-).
138 <p>
139 Don't hesitate to use library functions. Everything was written with size and speed in mind. In
140 fact many calls are just redirections to GEOS kernal which results in simple <tt/jsr/.
141 <p>
142 You might wonder why I have chosen sometimes weird order of arguments in functions. It is because
143 I wanted to avoid unnecessary pushing and popping arguments from stack. cc65 can pass single <tt/int/
144 through CPU registers.
145 <p>
146 Do not try to compile in strict ANSI mode. I'm using some cc65 extensions which are not available in
147 ANSI.
148
149 <sect>Library Functions
150 <p>
151 Functions here are sorted more or less in the way they appear in header files. This way I am able
152 to keep functions covering similar task near each other. All function names are identical to those
153 from <tt/geosSym/ file provided with GeoProgrammer package. Only my extensions to <tt/geosSym/
154 are covered by new names, but I tried to keep them in the naming convention.
155
156 <sect1>Graphics
157 <p>
158 This section covers drawing package of GEOS along with text output routines.
159
160 <sect2>SetPattern
161 <p>
162 <tt/void SetPattern (char pattern)/
163 <p>
164 This function sets current pattern to given. There are 32 different patterns in GEOS. You can
165 see them together in the filling box in GeoPaint.
166
167 <sect2>GraphicsString
168 <p>
169 <tt/void GraphicsString (char *myGString)/
170 <p>
171 One of the more powerfull routines of GEOS. This function calls other graphic functions depending
172 on given command string. See structures chapter for more detailed description of the structure of it.
173
174 <sect2>Rectangle functions
175 <p>
176 Parameters to those functions are grouped in <tt/struct window drawWindow/. To speed up things and
177 reduce overhead this structure is glued to zero page locations, where all rectangle functions
178 expect their parameters. You can modify data directly (e.g. <tt/drawWindow.top=10/) or via
179 <tt/InitDrawWindow/ function. Contents of <tt/drawWindow/ are guaranteed not to change only when
180 using graphics functions. In other case you should keep your data in separate <tt/struct window/
181 and use <tt/InitDrawWindow/ before first call to rectangle functions.
182
183 <sect3>InitDrawWindow
184 <p>
185 <tt/void InitDrawWindow (struct window *myWindow)/
186 <p>
187 This function only copies contents of <tt/myWindow/ into system area of <tt/drawWindow/. Use it
188 if for some reason you have to keep window data out of zero page space.
189
190 <sect3>Rectangle
191 <p>
192 <tt/void Rectangle (void)/
193 <p>
194 This draws on screen rectangle filled with current pattern.
195
196 <sect3>FrameRectangle
197 <p>
198 <tt/void FrameRectangle (char pattern)/
199 <p>
200 This one draws frame with given line pattern.
201
202 <sect3>InvertRectangle
203 <p>
204 <tt/void InvertRectangle (void)/
205 <p>
206 Just as the name says...
207
208 <sect3>ImprintRectangle and RecoverRectangle
209 <p>
210 <tt/void ImprintRectangle (void)/
211 <p>
212 <tt/void RecoverRectangle (void)/
213 <p>
214 These two functions are for copying parts of the screen to (<tt/Imprint/) and from (<tt/Recover/)
215 backbuffer of the screen. For example GEOS drawing new menus on screen first uses
216 <tt/ImprintRectangle/ to save the area under menu, and restores it by <tt/RecoverRectangle/ upon
217 destroying the menu.
218
219 <sect2>Line Functions
220 <p>
221 GEOS drawing package is optimized so there are different functions for drawing vertical and
222 horizontal lines.
223
224 <sect3>HorizontalLine
225 <p>
226 <tt/void HorizontalLine (char pattern, char y, int xStart, int xEnd)/
227 <p>
228 This function draws horizontal line using given pattern - here it is a true bit pattern, not
229 pattern set by <tt/SetPattern/.
230
231 <sect3>InvertLine
232 <p>
233 <tt/void InvertLine (char y, int xStart, int xEnd)/
234 <p>
235 There is only horizontal version.
236
237 <sect3>RecoverLine
238 <p>
239 <tt/void RecoverLine (char y, int xStart, int xEnd)/
240 <p>
241 This function recovers only one line. It is utilized by <tt/RecoverRectangle/. See its description
242 for more details.
243
244 <sect3>VerticalLine
245 <p>
246 <tt/void VerticalLine (char pattern, char yStart, char yEnd, int x)/
247 <p>
248 This function draws vertical line using given pattern. Note that <tt/pattern/ is not a pattern
249 number as set in <tt/SetPattern/ but a true bit pattern.
250
251 <sect3>DrawLine
252 <p>
253 <tt/void DrawLine (struct window *myWindow)/
254 <p>
255 <tt/top/ parameters of <tt/struct window/ describe the starting point of the line, while
256 <tt/bottom/ are for the ending point. Current pattern is used for drawing.
257
258 <sect2>Point Functions
259 <p>
260 Parameters to these two functions are passed by a pointer to own <tt/struct pixel/ filled with
261 proper values.
262
263 <sect3>DrawPoint
264 <p>
265 <tt/void DrawPoint (struct pixel *myPixel)/
266 <p>
267 Draws single point on the screen, no matter what the current pattern is.
268
269 <sect3>TestPoint
270 <p>
271 <tt/char TestPoint (struct pixel *myPixel)/
272 <p>
273 This function tests if given pixel is set and returns true or false.
274
275 <sect2>Character and string output
276
277 <sect3>PutChar
278 <p>
279 <tt/void PutChar (char character, char y, char x)/
280 <p>
281 This function outputs single character using current style and font to screen.
282
283 <sect3>PutString
284 <p>
285 <tt/void PutString (char y, int x, char *myString)/
286 <p>
287 Same as <tt/PutChar/ except the fact that you can output whole <tt/NULL/-terminated string.
288 See <tt/ggraph.h/ for list of tokens that you can also place in the string - like <tt/CBOLDON/ or
289 <tt/COUTLINEON/.
290
291 <sect3>PutDecimal
292 <p>
293 <tt/void PutDecimal (char parameter, int value, char y, int x)/
294 <p>
295 This function converts <tt/value/ to its decimal representation and outputs it to the screen.
296 Depending on given <tt/parameter/ the string can be filled with zeroes (string always 5 characters
297 long) or not, to be left or right justified to given pixel. See <tt/geos/ggraph.h/ for predefined
298 values for <tt/parameter/.
299
300 <sect2>Font Handling
301
302 <sect3>GetCharWidth
303 <p>
304 <tt/char GetCharWidth (char character)/
305 <p>
306 This function returns real width (in pixels) of given character with current font. It can be used
307 for counting the length of string on screen, allowing for indentation or justification.
308
309 <sect3>LoadCharSet
310 <p>
311 <tt/void LoadCharSet (struct fontdesc *myFont)/
312 <p>
313 This function forces GEOS to use given font instead of own. <tt/myFont/ should be casted from
314 pointer to the start of area where was loaded record from font file (VLIR structure).
315
316 <sect3>UseSystemFont
317 <p>
318 <tt/void UseSystemFont (void)/
319 <p>
320 This function forces GEOS to use built-in BSW font.
321
322 <sect2>Bitmap handling
323 <p>
324 I'm not quite sure how are these functions working (except <tt/BitmapUp/) so you should
325 probably look into library sources and compare it with your knowledge. Please let me know
326 if something is wrong or broken.
327
328 <sect3>BitmapUp
329 <p>
330 <tt/void BitmapUp (struct iconpic *myPic)/
331 <p>
332 This function unpacks the bitmap and places it on the screen - just as you set it in the
333 <tt/struct iconpic/ pointer to which you pass. See <tt/gstruct.h/ for description of this
334 structure. Note that you can only use packed GEOS bitmaps - simple Photo Scrap is in this format.
335
336 <sect3>BitmapClip
337 <p>
338 <tt/void BitmapClip (char skipLeft, char skipRight, int skipTop, struct iconpic *myPic)/
339 <p>
340 This function acts similar to <tt/BitmapUp/ but you can also define which parts of the bitmap are
341 to be drawn - you give the number of columns (8-pixel) to skip on the right and left of the bitmap,
342 and the number of rows to skip from the top if it.
343
344 <sect3>BitOtherClip
345 <p>
346 <tt/void BitOtherClip (void *proc1, void *proc2, char skipLeft, char skip Right, int skipTop,
347         struct iconpic *myPic)/
348 <p>
349 Similar to the previous one with some extension. <tt/proc1/ is called before reading a byte (it
350 returns in .A next value), and <tt/proc2/ is called every time the parser reads a byte which is
351 not a piece of pattern (byte of code greater than 219). Both procedures should be written
352 separately in assembler and declared as <tt/__fastcall__/ returning char.
353
354 <sect1>Menus and Icons
355 <p>
356 Here you will find information about functions related with menus and icons.
357
358 <sect2>Menus
359 <p>
360 Menus are essencial for GUI. GEOS can handle only one menu at a time, but each menu can call
361 another one, which results in submenu tree. There can be up to 8 menu levels, each one with up
362 to 32 items.
363 <p>
364 Menus are initialized with <tt/DoMenu/ and then Kernal takes care for everything. Your code
365 (called from event handler) should be a function without parameters, returning void. You should
366 use <tt/DoPreviousMenu/ or <tt/GotoFirstMenu/ at least once in its code to have the screen clean.
367
368 <sect3>DoMenu
369 <p>
370 <tt/void DoMenu (struct menu *myMenu)/
371 <p>
372 This function initializes GEOS menu processor and exits. See <tt/DoMenu structure/ for more
373 information about it. Know that many GEOS application just initializes the screen, menu and
374 exits to main Kernal loop, this proves the power of <tt/DoMenu/.
375
376 <sect3>ReDoMenu
377 <p>
378 <tt/void ReDoMenu (void)/
379 <p>
380 This simply redraws the menu at lowest level. It works like calling <tt/DoMenu/ again with
381 the same parameters.
382
383 <sect3>RecoverMenu
384 <p>
385 <tt/void RecoverMenu (void)/
386 <p>
387 This function erases current menu from the screen. It doesn't change the menu level.
388
389 <sect3>RecoverAllMenus
390 <p>
391 <tt/void RecoverAllMenus (void)/
392 <p>
393 This calls <tt/RecoverMenu/ and erases all menus from the screen. Then the menu level is
394 set to 0 (topmost).
395
396 <sect3>DoPreviousMenu
397 <p>
398 <tt/void DoPreviousMenu (void)/
399 <p>
400 This functions causes menu processor to go back one menu level. You should use it in menu
401 handler code to have the screen clean.
402
403 <sect3>GotoFirstMenu
404 <p>
405 <tt/void GotoFirstMenu (void)/
406 <p>
407 This one jumps back to the topmost menu. If there is only menu and submenu it works the
408 same as <tt/DoPreviousMenu/.
409
410 <sect2>Icons
411 <p>
412 Icons are working similar to menus except the fact that there is only one level. Icons are
413 defined as a screen area filled with a bitmap, but if you would setup icons and erase the
414 screen they are still working and cliking in the place where formerly an icon was will cause
415 an effect. Similary if you would setup icons and then turn them off with <tt/ClearMouseMode/
416 the bitmap will be still on the screen.
417 There is only one, but powerful icon function.
418
419 <sect3>DoIcons
420 <p>
421 <tt/void DoIcons (struct icontab *myIconTab)/
422 <p>
423 This function initializes all icons that are present on the screen at once. For more information
424 look at <tt/Icons/ chapter in this manual.
425
426 <sect1>DialogBoxes
427 <p>
428 This chapter covers the most powerful GEOS function - <tt/DoDlgBox/.
429
430 <sect2>GEOS standard
431
432 <sect3>DoDlgBox
433 <p>
434 <tt/char DoDlgBox (char *dialogString)/
435 <p>
436 DialogBox returns one byte. It can be the value of one of six standard icons (see <tt/gdlgbox.h/)
437 or whatever closing routine passes. Register <tt/r0L/ also contains this value.
438 <p>
439 Read structures chapter for the specs of the <tt/dialogString/.
440
441 <sect3>RstrFrmDialogue
442 <p>
443 <tt/char RstrFrmDialogue/
444 <p>
445 This function called from within DialogBox event immediately closes the DialogBox and returns
446 the owner ID (or whatever caller has in the .A register).
447
448 <sect2>GEOSLib extensions
449 <p>
450 To simplify usage of DoDlgBox from C I've wrote some help functions - wrappers for DoDlgBox,
451 with predefined data. In one word - these are standard DialogBoxes you can see in almost every
452 GEOS application.
453
454 <sect3>DlgBoxYesNo, DlgBoxOkCancel, DlgBoxOk
455 <p>
456 <tt/char DlgBoxYesNo (char *line1, char*line2)/
457 <p>
458 <tt/char DlgBoxOkCancel (char *line1, char*line2)/
459 <p>
460 <tt/void DlgBoxOk (char *line1, char*line2)/
461 <p>
462 These function show two lines of text in standard-sized DialogBox. You can read the code of
463 pressed icon from return value. E.g. for <tt/DlgBoxYesNo/ it can only be <tt/YES/ or <tt/NO/.
464
465 <sect3>DlgBoxGetString
466 <p>
467 <tt/char DlgBoxGetString (char *string, char strlen, char *line1, char *line2)/
468 <p>
469 This function prompts user for entering a string of at most <tt/strlen/ characters. It is returned
470 in <tt/string/. The two given lines of text are shown above the input line. Please remember
471 that there is also <tt/CANCEL/ icon in the DialogBox and you should test if user confirmed his
472 input or gave up. The <tt/string/ is also shown so you can place default input there or remember
473 to place <tt/NULL/ at start.
474
475 <sect3>DlgBoxFileSelect
476 <p>
477 <tt/char DlgBoxFileSelect (char *class, char filetype, char *filename)/
478 <p>
479 This routine is the standard file selector. It can return <tt/OPEN/, <tt/CANCEL/ or disk error
480 on reading the directory or opening the disk.
481 There is also <tt/DISK/ icon shown, but it is handled internally. You pass as input parameters
482 <tt/filetype/ and pointer to string containing the first part of file's class. If this string is
483 empty (<tt/NULL/ at the start), then all files with given filetype will be shown.
484 <p>
485 At present this file selector handles only first 16 files of given type and supports only one
486 (current) drive.
487
488 <sect1>Mouse, Sprites and Cursors
489 <p>
490 You will find here functions related to sprite and mouse drawing and handling.
491
492 <sect2>Mouse related functions
493 <p>
494 These cover mouse - as a general pointing device, but expect user to utilize as different devices
495 as digital or analog joystick, mouse, lightpen or koalapad (whatever it is).
496
497 <sect3>StartMouseMode
498 <p>
499 <tt/void StartMouseMode (void)/
500 <p>
501 This function initializes mouse vectors - <tt/mouseVector/ and <tt/mouseFaultVec/, and then
502 calls <tt/MouseUp/.
503
504 <sect3>ClearMouseMode
505 <p>
506 <tt/void ClearMouseMode (void)/
507 <p>
508 This function disables all mouse actitivies - icons and menus stop to respond to mouse events,
509 but they are not cleared from the screen.
510
511 <sect3>MouseUp and MouseOff
512 <p>
513 <tt/void MouseUp (void)/
514 <p>
515 <tt/void MouseOff (void)/
516 <p>
517 The fist function turns the mouse pointer on. It will appear on next IRQ. The second one does
518 the opposite - it turns off the pointer, but its position is still updated by input driver.
519
520 <sect3>IsMseInRegion
521 <p>
522 <tt/char IsMseInRegion (struct window *myWindow)/
523 <p>
524 This function tests if mouse pointer is actually in given range of screen. See <tt/gsprite.h/ for
525 possible return values - they describe the position in detail.
526
527 <sect2>Sprites
528 <p>
529 You are free to use any of the eight sprites, but keep in mind that sprite 0 is actually the mouse
530 pointer and sprite 1 can be overwritten when is used as text prompt.
531
532 <sect3>DrawSprite
533 <p>
534 <tt/void DrawSprite (char sprite, char *mySprite)/
535 <p>
536 This function initializes the sprite data. <tt/mySprite/ is a 63-byte table with bitmap data, which
537 is copied to system sprite area (at <tt/sprpic/ - see <tt/gsym.h/). Sprite visual registers are
538 not initialized and sprite is not yet visible.
539
540 <sect3>PosSprite
541 <p>
542 <tt/void PosSprite (char sprite, struct pixel *myPixel)/
543 <p>
544 This function positions the sprite on the screen. Given coordinates are screen ones - they are
545 converted to sprite coords by GEOS. Due to this you cannot use this function to position your
546 sprite off the left or top to the screen.
547
548 <sect3>EnablSprite and DisablSprite
549 <p>
550 <tt/void EnablSprite (char sprite)/
551 <p>
552 <tt/void DisablSprite (char sprite)/
553 <p>
554 These two functions are responsible for the fact if the sprite will or will not appear on the
555 screen.
556
557 <sect2>Cursors and Console
558
559 <sect3>InitTextPrompt
560 <p>
561 <tt/void InitTextPrompt (char height)/
562 <p>
563 This function initializes sprite 1 for text prompt with given <tt/height/. This parameter can be in
564 range 1-48.
565
566 <sect3>PromptOn and PromptOff
567 <p>
568 <tt/void PromptOn (struct pixel *myPixel)/
569 <p>
570 <tt/void PromptOff (void)/
571 <p>
572 The first function places text prompt in given place and enables it so it blinks and generally is
573 visible. The second function is pretty self-explanatory.
574
575 <sect3>GetNextChar
576 <p>
577 <tt/char GetNextChar (void)/
578 <p>
579 This function gets next character from the keyboard queue. If the queue is empty it returns
580 <tt/NULL/, otherwise you receive true ASCII code of a character or value of special (function)
581 key. See <tt/gsprite.h/ for list of them.
582
583 <sect1>Disk
584 <p>
585 This chapter covers slightly low-level disk routines. You should use them with care, because
586 you may easily corrupt data on disks. Also remember that contemporary GEOS supports many various
587 devices and sticking to 1541 track layout (e.g. expecting the directory on track 18) might be
588 dangerous.
589 <p>
590 All GEOS disk functions return error code in X register. In some cases this is returned by
591 GEOSLib function (if its type is <tt/char/), but in all cases last error is saved in <tt/errno/
592 location. If it is nonzero - an error occured. See <tt/gdisk.h/ for list of errorcodes.
593 <p>
594 Passing parameters use always e.g. <tt/ReadBuff (&amp;myTrSe)/.
595
596 <sect2>Buffer functions
597 <p>
598 These functions are taking single data sector (256 bytes) to read or write on a disk.
599
600 <sect3>ReadBuff and Writebuff
601 <p>
602 <tt/char ReadBuff (struct tr_se *myTrSe)/
603 <p>
604 <tt/char WriteBuff (struct tr_se *myTrSe)/
605 <p>
606 These functions are reading and writting sector placed at <tt/diskBlkBuf/.
607
608 <sect3>GetBlock and ReadBlock
609 <p>
610 <tt/char GetBlock (struct tr_se *myTrSe, char *buffer)/
611 <p>
612 <tt/char ReadBlock (struct tr_se *myTrSe, char *buffer)/
613 <p>
614 These two functions are reading a single block directly at 256 byte array placed at <tt/buffer/.
615 The difference between them is that <tt/GetBlock/ will initialize TurboDos in drive if it was not
616 enabled. <tt/ReadBlock/ assumes that it is already enabled thus being slightly faster.
617
618 <sect3>PutBlock, WriteBlock, VerWriteBlock
619 <p>
620 <tt/char PutBlock (struct tr_se *myTrSe, char *buffer)/
621 <p>
622 <tt/char WriteBlock (struct tr_se *myTrSe, char *buffer)/
623 <p>
624 <tt/char VerWriteBlock (struct tr_se *myTrSe, char *buffer)/
625 <p>
626 Similar to previous but needed for writting the disk. <tt/VerWriteBlock/ verifies the data after
627 writting. In case of error five tries are attempted before error code is returned.
628
629 <sect2>Directory header
630 <p>
631 Functions described here are operating on <tt/curDirHeader/ where current disk header is stored.
632 On larger capacity drives (than 1541) the second part of directory header in <tt/dir2Head/.
633
634 <sect3>GetPtrCurDkNm
635 <p>
636 <tt/void GetPtrCurDkNm (char *diskName)/
637 <p>
638 This function fills given character string with the name of current disk. It is converted to C
639 standard - string is terminated with <tt/NULL/ character instead of code 160 as in Commodore DOS.
640 Note that passed pointer must point to an array of at least 17 bytes.
641
642 <sect3>GetDirHead and PutDirHead
643 <p>
644 <tt/char GetDirHead (void)/
645 <p>
646 <tt/char PutDirHead (void)/
647 <p>
648 These functions are reading and writting the directory header. You should use <tt/GetDirHead/ before
649 using any functions described below, and you should use <tt/PutDirHead/ to save the changes on the
650 disk. Otherwise they will be lost. Operating area is the <tt/curDirHead/.
651
652 <sect3>CalcBlksFree
653 <p>
654 <tt/int CalcBlksFree (void)/
655 <p>
656 This function returns the number of free blocks on current disk. It is counted using data in
657 <tt/curDirHead/ so you must initialize the disk before calling it.
658
659 <sect3>ChkDskGEOS
660 <p>
661 <tt/char ChkDskGEOS (void)/
662 <p>
663 This functions checks <tt/curDirHead/ for GEOS Format identifier. It returns either true or false,
664 and also sets <tt/isGEOS/ properly. You must initialize the disk before using this.
665
666 <sect3>SetGEOSDisk
667 <p>
668 <tt/char SetGEOSDisk (void)/
669 <p>
670 This function initializes disk for use with GEOS. It sets indicator in directory header and
671 allocates a sector for the directory of border files. You don't need to initialize the disk before
672 using.
673
674 <sect3>FindBAMBit
675 <p>
676 <tt/char FindBAMBit (struct tr_se *myTrSe)/
677 <p>
678 This function returns the bit value from BAM (Block Allocation Map) for given sector. The bit is
679 set if the sector is free to use. Returned value is always zero if the sector is already allocated.
680 In fact, this function could be described as e.g. <tt/SectInUse/ and used in following way:
681 <tscreen><verb>
682 ...
683 if (!SectInUse(&amp;myTrSe)) &lcub;
684 ... block not allocated ...
685 &rcub;
686 </verb></tscreen>
687 <p>
688 Anyway, I feel that this function is slightly low-level, maybe too low-level.
689
690 <sect3>BlkAlloc and NxtBlkAlloc
691 <p>
692 <tt/char BlkAlloc (struct tr_se output&lsqb;&rsqb, int length)/
693 <p>
694 <tt/char NxtBlkAlloc (struct tr_se *myTrSe, struct tr_se output&lsqb;&rsqb, int length)/
695 <p>
696 Both functions are allocating enough disk sectors to fit the number of <tt/length/ in them. You
697 will find output in <tt/output/ which is table of <tt/struct tr_se/. The last entry will have the
698 number of track equal to 0 and sector equal to 255. The simpliest way of using them is to use
699 predefined space in GEOS data space and pass <tt/fileTrScTab/, which is a predefined table.
700 <p>
701 The difference between those two is that <tt/NextBlkAlloc/ will start allocating from given sector,
702 and <tt/BlkAlloc/ starts from first nonused sector.
703 <p>
704 You need to <tt/PutDirHead/ to save any changes in BAM.
705
706 <sect3>FreeBlock
707 <p>
708 <tt/char FreeBlock (struct tr_se *myTrSe)/
709 <p>
710 Simply deallocates a block in BAM. You need to update BAM with <tt/PutDirHead/.
711
712 <sect3>SetNextFree
713 <p>
714 <tt/struct tr_se SetNextFree (struct tr_se *myTrSe)/
715 <p>
716 This function finds first free sector starting from given track and sector. It might return the
717 same argument if the given block is not allocated. I wanted this function to be type-clean, but
718 it made usage a bit tricky. To assign a value to own <tt/struct tr_se/ you have to cast both
719 variables to <tt/int/. E.g.
720 <tscreen><verb>
721 struct tr_se myTrSe;
722 ...
723 (int)myTrSe=(int)SetNextFree(&amp;otherTrSe);
724 </verb></tscreen>
725 <p>
726 In this example <tt/otherTrSe/ can be replaced by <tt/myTrSe/.
727 <p>
728 NOTE that you <em/must/ use casting to have correct values.
729 <p>
730 <tt/SetNextFree/ finds next free sector and allocates it.
731
732 <sect2>Low-level disk IO
733 <p>
734 Functions described here are more usable in kernal or drivers code, less common in applications,
735 but who knows, maybe someone will need them.
736
737 <sect3>EnterTurbo, ExitTurbo, PurgeTurbo
738 <p>
739 <tt/void EnterTurbo (void)/
740 <p>
741 <tt/void ExitTurbo (void)/
742 <p>
743 <tt/void PurgeTurbo (void)/
744 <p>
745 These functions are interface to GEOS TurboDos feature which makes slow Commodore drives a bit
746 more usable. <tt/EnterTurbo/ enables TurboDos unless it is already enabled. If not, then you will
747 have to wait a bit to transfer TurboDos code into disk drive RAM. <tt/ExitTurbo/ disables TurboDos.
748 This is useful for sending some DOS commands for drive e.g. for formatting. Note that before any
749 interaction with Kernal in ROM you have to call <tt/InitForIO/. You don't have to worry about speed.
750 <tt/EnterTurbo/ will only enable TurboDos (no code transfer) if TurboDos was disabled with
751 <tt/ExitTurbo/. <tt/PurgeTurbo/ acts different from <tt/ExitTurbo/ - it not only disables TurboDos,
752 but also removes it from drive RAM (not quite true, but it works like that). After a <tt/PurgeTurbo/,
753 <tt/EnterTurbo/ will have to reload drive RAM.
754
755 <sect3>ChangeDiskDevice
756 <p>
757 <tt/char ChangeDiskDevice (char newDevice)/
758 <p>
759 This function changes logical number of current device (in fact drives only) with given one. It is
760 usable for swapping drives. There's no check if given <tt/newDevice/ already exist, so if you want
761 to change the logical number of drive 8 to 9 and you have drive number 9 then GEOS will probably
762 hung on disk access. Use safe, large numbers. Note that safe IEC range is 0-32, but devices with
763 numbers below 8 shouldn't be used (there is 'DiskDevice' in the name of this function and devices
764 0-7 are not 'DiskDevices' you know :-).
765
766 <sect2>Disk Initialization
767 <p>
768 GEOS has two functions for initialization ('logging' as they say on CP&bsol;M) the disk.
769 <sect3>OpenDisk
770 <p>
771 <tt/char OpenDisk (void)/
772 <p>
773 This function initializes everything for a new disk. It loads and enables TurboDos if needed.
774 Then the disk is initialized with <tt/NewDisk/. Next, <tt/GetDirHead/ initializes <tt/curDirHead/.
775 Disk names are compared and if they differ then disk cache on REU is cleared. Finally format is
776 checked with <tt/ChkDkGEOS/ and disk name is updated in internal tables.
777
778 <sect3>NewDisk
779 <p>
780 <tt/char NewDisk (void)/
781 <p>
782 This function is similar to DOS command I. It clears REU cache and enables TurboDos if needed.
783
784 <sect1>Files
785 <p>
786 This section cover GEOS file interface.
787
788 <sect2>Directory handling
789 <p>
790 Functions described here are common for SEQ and VLIR structures.
791
792 <sect3>Get1stDirEntry and GetNxtDirEntry
793 <p>
794 <tt/struct filehandle *Get1stDirEntry (void)/
795 <p>
796 <tt/struct filehandle *GetNxtDirEntry (void)/
797 <p>
798 These two functions are best suited for scanning whole directory for particular files. Note that
799 returned filehandles describe all file slots in directories - even those with deleted files.
800 The return value can be obtained by casting both sides to <tt/int/ - as in <tt/SetNextFree/
801 function, or read directly after call to those two functions from <tt/r5/. Current sector number
802 is in <tt/r1/ and sector data itself is in <tt/diskBlkBuf/.
803
804 <sect3>FindFile
805 <p>
806 <tt/char FindFile (char *fName)/
807 <p>
808 This function scans whole directory for given filename. It returns either 0 (success) or 5
809 (FILE_NOT_FOUND, defined in <tt/gdisk.h/) or any other fatal disk read error. After successful
810 <tt/FindFile/ you will have <tt/struct filehandle/ at <tt/dirEntryBuf/ filled with file's data and
811 other registers set as described in <tt/GetNxtDirEntry/.
812
813 <sect3>FindFTypes
814 <p>
815 <tt/char FindFTypes (char *buffer, char fType, char fMaxNum, char *classTxt)/
816 <p>
817 This function scans directory and fills a table at <tt/buffer/ with <tt/char &lsqb;17&rsqb;/ entries.
818 <tt/fType/ is GEOS type of searched files and <tt/classTxt/ is a string for Class field in file
819 header. Class will match if given will be shorter than that found in file's header block. This
820 way if you want just to find all files with given GEOS type you must pass empty string as
821 <tt/classTxt/. <tt/fMaxNum/ is the maximal number of found files, thus the <tt/buffer/ must
822 provide area of size equal to <tt/17 * fMaxNum/. This function returns errorcode. The number of
823 actually found files can be restored from <tt/r7H/.
824
825 <sect3>DeleteFile
826 <p>
827 <tt/char DeleteFile (char *fName)/
828 <p>
829 This function delets a file by its name. It works for SEQ and VLIR files.
830
831 <sect3>RenameFile
832 <p>
833 <tt/char RenameFile (char *oldName, char *newName)/
834 <p>
835 I think it is obvious...
836
837 <sect3>GetFHdrInfo
838 <p>
839 <tt/char GetFHdrInfo (struct filehandle *myFile)/
840 <p>
841 This function loads the file header into <tt/fileHeader/ buffer. Using after e.g. <tt/FindFile/
842 you can pass address of <tt/dirEntryBuf/.
843
844 <sect2>Common and SEQ structure
845 <p>
846 Functions described here are common for SEQ and VLIR structures because arguments passed are
847 starting track and sector which may point either to start of a chain for VLIR or data for SEQ.
848
849 <sect3>ReadFile
850 <p>
851 <tt/char ReadFile (struct tr_se *myTrSe, char *buffer, int fLength)/
852 <p>
853 This function reads at most <tt/fLength/ bytes into <tt/buffer/ from chained sectors starting at
854 <tt/myTrSe/.
855
856 <sect3>ReadByte
857 <p>
858 <tt/char ReadByte (void)/
859 <p>
860 This function returns next byte from file. Before first call to this function you must load the
861 first sector of file, easiest way by using <tt/GetBlock/ and set <tt/r5/ to the offset (you will
862 want to skip the link, so use the value of 2 here). Then you may call <tt/ReadByte/.
863 Remember to not modify <tt/r1/, <tt/r4/ and <tt/r5/.
864 <p>
865 Returned value is valid only if there wasn't any error. End of file is marked as <tt/BFR_OVERFLOW/
866 in <tt/errno/, this is set when trying to read one byte after the end of file.
867
868 <sect3>SaveFile
869 <p>
870 <tt/char SaveFile (struct fileheader *myHeader)/
871 <p>
872 <tt/SaveFile/ will take care of everything needed to create a GEOS file, no matter VLIR of SEQ
873 structure. All you need to do is to place data in proper place and prepare a header which will
874 contain all information about a file.
875
876 You have to declare a <tt/struct fileheader/ and fill it with proper values. There is only one
877 difference - the first two bytes which are link to nonexistant next sector are replaced by a
878 pointer to the DOS filename of the file.
879
880 When saving files two most important fields in <tt/struct fileheader/ are <tt/fileheader.load_address/
881 and <tt/fileheader.end_address/.
882
883 <sect3>FreeFile
884 <p>
885 <tt/char FreeFile (struct tr_se myTable&lsqb;&rsqb;)/
886 <p>
887 This function deallocates all sectors contained in passed table.
888
889 <sect3>FollowChain
890 <p>
891 <tt/char FollowChain(struct tr_se *myTrSe, char *buffer)/
892 <p>
893 This function fills a <tt/struct tr_se/ table at <tt/buffer/ with sector numbers for chain of
894 sectors starting with <tt/myTrSe/. You can pass such data (<tt/buffer/) to e.g. <tt/FreeFile/.
895
896 <sect2>VLIR structure
897 <p>
898 Here are informations about VLIR files (called later as RecordFile) and functions.
899 <p>
900 VLIR is a file which consists of up to 127 SEQ-like files called records. Each record is like one
901 SEQ structure file. Records are grouped together, described by common name - VLIR file name and
902 own number. Each record pointed by its number is described by starting track and sector numbers.
903 VLIR structures allow records to be empty (<tt/tr_se/ of such record is equal to <tt/&lcub;NULL,$ff&rcub;/),
904 or even non-exist (<tt/&lcub;NULL,NULL&rcub;/). Any other numbers represent starting track and sector of
905 particular file.
906 <p>
907 In GEOS there can be only one file opened at a time. Upon opening VLIR file some information
908 about it are copied into memory. You can retrieve records table at <tt/fileTrScTab/ (table of
909 128 <tt/struct tr_se/) and from <tt/VLIRInfo/ (<tt/struct VLIR_info/.
910 E.g. size of whole VLIR file can be retrieved by reading <tt/VLIRInfo.fileSize/.
911
912 <sect3>OpenRecordFile
913 <p>
914 <tt/char OpenRecordFile (char *fName)/
915 <p>
916 This function finds and opens given file. An error is returned if file is not found or it is not
917 in VLIR format. Information in <tt/VLIRInfo/ is initialized. VLIR track and sector table is
918 loaded at <tt/fileTrScTab/ and will be valid until call to <tt/CloseRecordFile/ so don't modify it.
919 You should <tt/PointRecord/ before trying to do something with file.
920
921 <sect3>CloseRecordFile
922 <p>
923 <tt/char CloseRecordFile (void)/
924 <p>
925 This function calls <tt/UpdateRecordFile/ and clears internal GEOS variables.
926
927 <sect3>UpdateRecordFile
928 <p>
929 <tt/char UpdateRecordFile (void)/
930 <p>
931 This function fill check <tt/VLIRInfo.fileWritten/ flag and if it is set, then <tt/curDirHead/ will
932 be updated along with size and date stamps in directory entry.
933
934 <sect3>PointRecord
935 <p>
936 <tt/char PointRecord (char recordNumber)/
937 <p>
938 This function will setup internal variables (and <tt/VLIRInfo.curRecord/) and return the track and
939 sector of given record in <tt/r1/. Note that the data may not be valid (if record is non-existing
940 you will get 0,0 and if it is empty - 255, 0).
941
942 <sect3>NextRecord and PreviousRecord
943 <p>
944 <tt/char NextRecord (void)/
945 <p>
946 <tt/char PreviousRecord (void)/
947 <p>
948 These two work like <tt/PointRecord/. Names are self-explanatory.
949
950 <sect3>AppendRecord
951 <p>
952 <tt/char AppendRecord (void)/
953 <p>
954 This function will append an empty record ( pair of 255,0 ) to current VLIR track and sector
955 table. It will also set <tt/VLIRInfo.curRecord/ to its number.
956
957 <sect3>DeleteRecord
958 <p>
959 <tt/char DeleteRecord (void)/
960 <p>
961 This function will remove current record from the table, and move all current+1 records one place
962 back (in the table). Note that there's no BAM update and you must call <tt/UpdateRecordFile/ to
963 commit changes.
964
965 <sect3>InsertRecord
966 <p>
967 <tt/char InsertRecord (void)/
968 <p>
969 This function will insert an empty record in place of <tt/VLIRInfo.curRecord/ and move all following
970 records in table one place forward (contents of <tt/VLIRInfo.curRecord/ after call to <tt/InsertRecord/
971 can be found in <tt/VLIRInfo.curRecord + 1/).
972
973 <sect3>ReadRecord and WriteRecord
974 <p>
975 <tt/char ReadRecord (char *buffer, int fLength)/
976 <p>
977 <tt/char WriteRecord (char *buffer, int fLength)/
978 <p>
979 This function will load or save at most <tt/fLength/ bytes from currently pointed record into or from
980 <tt/buffer/.
981
982 <sect1>Memory and Strings
983 <p>
984 Functions covered in this section are common for whole C world - copying memory parts and
985 strings is one of the main computer tasks. GEOS also has interface to do this. These functions
986 are replacement for those like <tt/memset, memcpy, strcpy/ etc. from standard libraries.
987
988 However they have slighty different calling convention (order of arguments to be specific), so
989 please check their syntax here before direct replacing.
990
991 Please note that the memory described as <tt/strings/ are up to 255 characters (without
992 counting the terminating <tt/NULL/), and <tt/regions/ cover whole 64K of memory.
993
994 <sect2>CopyString
995 <p>
996 <tt/void CopyString (char *dest, char *src)/
997 <p>
998 This function copies string from <tt/src/ to <tt/dest/, until it reaches <tt/NULL/. <tt/NULL/
999 is also copied.
1000
1001 <sect2>CmpString
1002 <p>
1003 <tt/char CmpString (char *s1, char *s2);/
1004 <p>
1005 This function compares string <tt/s1/ to <tt/s2/ for equality - this is case sensitive, and both
1006 strings have to have the same length. It returns either <tt/true/ or <tt/false/.
1007
1008 <sect2>CopyFString and CmpFString
1009 <p>
1010 <tt/void CopyFString (char length, char *dest, char *src)/
1011 <p>
1012 <tt/char CmpFString (char length, char *s1, char *s2)/
1013 <p>
1014 These two are similar to <tt/CopyString/ and <tt/CmpString/ except the fact, that you provide
1015 the length of copied or compared strings. The strings can also contain several <tt/NULL/
1016 characters - they are not treated as delimiters.
1017
1018 <sect2>CRC
1019 <p>
1020 <tt/int CRC (char *src, int length)/
1021 <p>
1022 This function calculates the CRC checksum for given memory range. I don't know if it is
1023 compatible with standard CRC routines.
1024
1025 <sect2>FillRam and ClearRam
1026 <p>
1027 <tt/void FillRam (char value, char *dest, int length)/
1028 <p>
1029 <tt/void ClearRam (char *dest, int length)/
1030 <p>
1031 Both functions are filling given memory range. <tt/ClearRam/ fills with <tt/NULLs/, while
1032 <tt/FillRam/ uses given <tt/value/.
1033
1034 <sect2>MoveData
1035 <p>
1036 <tt/void MoveData (char *src, char *dest, int length)/
1037 <p>
1038 This functions copies one memory region to another. There are checks for overlap and the
1039 non-destructive method is chosen.
1040
1041 <sect2>InitRam
1042 <p>
1043 <tt/void InitRam (char *table)/
1044 <p>
1045 This function allows to initialize multiple memory locations with single bytes or strings.
1046 This is done with <tt/table/ where everything is defined. See structures chapter for description of
1047 <tt/InitRam's/ command string.
1048
1049 <sect2>Stash, Fetch, Swap, and VerifyRAM
1050 <p>
1051 <tt/void StashRAM (char bank, int length, char *reuAddy, char *cpuAddy)/
1052 <p>
1053 <tt/void FetchRAM (char bank, int length, char *reuAddy, char *cpuAddy)/
1054 <p>
1055 <tt/void SwapRAM (char bank, int length, char *reuAddy, char *cpuAddy)/
1056 <p>
1057 <tt/ char VerifyRAM (char bank, int length, char *reuAddy, char *cpuAddy)/
1058 <p>
1059 These functions are interface to REU - Ram Expansion Unit. I think that they are self-explanatory.
1060
1061 <sect1>Processes and Multitasking
1062 <p>
1063 Weird? Not at all. GEOS has limited multitasking ability. You can set up a chain of functions
1064 called in specified intervals and you can sleep the main program without disturbing other
1065 tasks.
1066
1067 <sect2>InitProcesses
1068 <p>
1069 <tt/void InitProcesses (char number, struct process *processTab)/
1070 <p>
1071 This is the main initialization routine. After calling this processes are set up, but not
1072 enabled. The parameters for <tt/InitProcesses/ are:
1073 <itemize>
1074     <item><tt/number/ - number of processes
1075     <item><tt/processTab/ - table of <tt/struct process/, with size equal to <tt/number/
1076 </itemize>
1077 <p>
1078 Single task is described by entry in <tt/processTab/, it contains two values - <tt/pointer/ to
1079 task function and number of <tt/jiffies/ which describe the delay between calls to task. On PAL
1080 systems there are 50 jiffies per second, while on NTSC there are 60.
1081 <p>
1082 The maximum number of tasks is 20. Be warned that GEOS doesn't check if parameters are valid and
1083 if <tt/processTab/ would be too large it would overwrite existing data in GEOS space.
1084 <p>
1085 There's one important thing - last entry in <tt/processTab/ have to be <tt/NULL,NULL/, so the
1086 maximum size of <tt/processTab/ is equal to 21.
1087 <p>
1088 See description of <tt/process/ structure for more detailed discussion on this.
1089
1090 <sect2>RestartProcess and EnableProcess
1091 <p>
1092 <tt/void RestartProcess (char processNumber)/
1093 <p>
1094 <tt/void EnableProcess (char processNumber)/
1095 <p>
1096 These two functions start the task counter. <tt/RestartProcess/ for each process should be called
1097 after <tt/InitProcesses/, because it resets all flags and counters and it starts the counters.
1098 <p>
1099 <tt/RestartProcess/ enables counters and sets their initial value to that given in <tt/processTab/.
1100 <p>
1101 <tt/EnableProcess/ forces given process to execute by simulating the timer running out of time.
1102
1103 <sect2>BlockProcess and UnBlockProcess
1104 <p>
1105 <tt/void BlockProcess (char processNumber)/
1106 <p>
1107 <tt/void UnBlockProcess (char processNumber)/
1108 <p>
1109 <tt/BlockProcess/ disables the execution of given process, but this does not disable the timers.
1110 <p>
1111 <tt/UnBlockProcess/ does the opposite.
1112
1113 <sect2>FreezeProcess and UnFreezeProcess
1114 <p>
1115 <tt/void FreezeProcess (char processNumber)/
1116 <p>
1117 <tt/void UnFreezeProcess (char processNumber)/
1118 <p>
1119 <tt/FreezeProcess/ disables timer for given process. <tt/UnFreezeProcess/ does the opposite.
1120 This is not equal to <tt/RestartProcess/ as timers are not filled with initial value.
1121
1122 <sect2>Sleep
1123 <p>
1124 <tt/void Sleep (int jiffies)/
1125 <p>
1126 This function is multitasking sleep - the program is halted, but it doesn't block other functions.
1127 The only argument here is the number of jiffies to wait until app will wake up.
1128 <p>
1129 You can force to sleep not only the main application routine, but also processes-tasks. Be warned
1130 that the maximum number of sleeping functions is 20. If it would be larger it will overwrite
1131 parameters of already sleeping functions in GEOS kernal data space, leading to crash.
1132
1133 <sect1>System
1134
1135 <sect2>FirstInit
1136 <p>
1137 <tt/void FirstInit (void)/
1138 <p>
1139 This function initializes some GEOS variables and mouse parameters. This is called on GEOS boot
1140 up. You shouldn't use this unless you know what you are doing.
1141
1142 <sect2>InitForIO and DoneWithIO
1143 <p>
1144 <tt/void InitForIO (void)/
1145 <p>
1146 <tt/void DoneWithIO (void)/
1147 <p>
1148 These functions are called by some disk routines. You should call them only if you want to
1149 do something with IO registers or call one of Kernal's routines.
1150
1151 <sect2>MainLoop
1152 <p>
1153 <tt/void MainLoop (void)/
1154 <p>
1155 Your programs exits to MainLoop upon exiting from <tt/main/, but you might need this function in
1156 menu and icon code. When in <tt/MainLoop/ systems waits for your action - using icons, keyboard
1157 or menus to force some specific action from program.
1158
1159 <sect2>EnterDeskTop
1160 <p>
1161 <tt/void EnterDeskTop (void)/
1162 <p>
1163 This is default exit code of your application. It is finish of <tt/exit()/, but you may need it
1164 in other places of application.
1165
1166 <sect2>ToBASIC
1167 <p>
1168 <tt/void ToBASIC (void)/
1169 <p>
1170 This one is another way of finishing application - forcing GEOS to shutdown and exit to BASIC.
1171 I was considering whether to include it or not, but maybe someone will need it. Which is I doubt.
1172
1173 <sect2>Panic
1174 <p>
1175 <tt/void Panic (void)/
1176 <p>
1177 This calls system's <tt/Panic/ handler - it shows dialog box with message
1178 <tscreen><verb>
1179 System error at:xxxx
1180 </verb></tscreen>
1181 where <tt/xxxx/ is last known execution address (caller). By default this is binded to <tt/BRK/
1182 instruction, but it might be usable in debugging as kind of <tt/assert/.
1183 <p>
1184 System is halted after call to <tt/Panic/.
1185
1186 <sect2>CallRoutine
1187 <p>
1188 <tt/void CallRoutine (void &ast; myFunct)/
1189 <p>
1190 This is system caller routine. You need to provide pointer to a function and it will be immediately
1191 called, unless the pointer is equal to <tt/NULL/. This is the main functionality of this function -
1192 you need not to worry if the pointer is valid.
1193
1194 <sect2>GetSerialNumber
1195 <p>
1196 <tt/int GetSerialNumber (void)/
1197 <p>
1198 This function returns the serial number of system. It might be used for copy-protection, but you
1199 shouldn't do this. Please remember that the Free Software is a true power.
1200
1201 <sect2>GetRandom
1202 <p>
1203 <tt/char GetRandom (void)/
1204 <p>
1205 This function returns a random number. It can be also read from <tt/random/ e.g.
1206 <tscreen><verb>
1207 a=random;
1208 </verb></tscreen>
1209 but by calling this function you are sure that the results will be always different.
1210 <tt/random/ is updated once a frame (50Hz) and on every call to <tt/GetRandom/
1211
1212 <sect2>SetDevice
1213 <p>
1214 <tt/void SetDevice (char)/
1215 <p>
1216 This function sets current device to given. It might be used together with <tt/InitForIO/,
1217 <tt/DoneWithIO/ and some Kernal routines. Unless new device is a disk drive this only sets
1218 new value in <tt/curDevice/, in other case new disk driver is loaded from REU or internal RAM.
1219
1220 <sect>Library Structures
1221 <p>
1222 To simplify using and optimize passing parameters to functions I have declared several structures
1223 which describe most common objects. Some of these structures are binded to static addresses in
1224 GEOS data space ($8000-$8fff), so you can use their fields directly in optimized way.
1225 Please see <tt/gsym.h/ and find them. All structures are defined in <tt/gstruct.h/ and you may
1226 find also some comments there.
1227
1228 <sect1>Graphics
1229
1230 <sect2>pixel
1231 <p>
1232 One simple structure describing point on the screen.
1233
1234 <sect2>fontdesc
1235 <p>
1236 This structure describes font in one pointsize. There is current font - <tt/struct fontdesc/
1237 binded at <tt/curFontDesc/. You can also force GEOS to use your own font by calling
1238 <tt/LoadCharSet/. You just need to open a VLIR font file and load one record - one pointsize
1239 somewhere. At the start of this area you already have all data for <tt/fontdesc/ so you can
1240 pass a pointer to the load adress of that pointsize to <tt/LoadCharSet/.
1241
1242 <sect2>window
1243 <p>
1244 This widely used structure holds description of a region of the screen. It describes top-left and
1245 bottom-right corners of a window.
1246
1247 <sect2>iconpic
1248 <p>
1249 Maybe the name isn't the best - it has nothing with <tt/DoIcons/ but with bitmap functions -
1250 <tt/BitmapUp/ for example. This structure holds parameters needed to properly decode and show
1251 a bitmap on the screen. Bitmap has to be encoded - if you have some non-GEOS bitmaps simply
1252 convert them to Photo Scraps - this is the format used by all GEOS bitmap functions - <tt/DoIcons/
1253 too.
1254
1255 <sect1>Icons
1256 <p>
1257 These structures describe click boxes (icons) that can be placed on screen or in a dialog box.
1258
1259 <sect2>icondef
1260 <p>
1261 This is the definition of a single click box. Please see <tt/gstruct.h/ for description of its fields.
1262
1263 <sect2>icontab
1264 <p>
1265 This is toplevel description of icons to be placed and enabled on the screen. This structure
1266 has following fields:
1267 <itemize>
1268     <item><tt/char number/ - total number of icons declared here
1269     <item><tt/struct pixel mousepos/ - after finishing <tt/DoIcons/ mouse pointer will be placed in
1270         this point allowing you to have hint for user what is default action
1271     <item><tt/struct icondef tab&lsqb;&rsqb/ - this table of size equal to <tt/icontab.number/ contains
1272         descriptions for all icons
1273 </itemize>
1274
1275 <sect1>File and Disk
1276
1277 <sect2>tr_se
1278 <p>
1279 This simple structure holds track and sector number of something. Do not expect the track to be
1280 in range 1-35, as GEOS can support many various and weird devices. For example my C128 256K
1281 expansion is utilized as RAMDisk with layout of 4 tracks 128 sectors each.
1282
1283 <sect2>f_date
1284 <p>
1285 This is placeholder for file datestamp. This structure is also present in <tt/struct filehandle/.
1286 GEOS is not Y2K compliant, so if current file in <tt/filehandle.date.year/ value less than 86 you
1287 can safely assume that it is e.g. 2085 - not 2086.
1288
1289 <sect2>filehandle
1290 <p>
1291 This is main file descriptor. It is either entry in the directory (returned from file functions)
1292 or its copy in <tt/dirEntryBuf/. This is optimized so you can safely get to the file's year e.g.
1293 by testing <tt/dirEntryBuf.date.year/ - it will be compiled to simple <tt/LDA, STA/.
1294
1295 <sect2>fileheader
1296 <p>
1297 This structure holds fileheader description. You can load file's header into <tt/fileHeader/
1298 fixed area using <tt/GetFHdrInfo/. (note that <tt/fileHeader/ is a place in memory while
1299 <tt/fileheader/ is a structure).
1300 You will also need own fileheader for <tt/SaveFile/.
1301
1302 <sect1>System
1303
1304 <sect2>s_date
1305 <p>
1306 This structure is defined only for <tt/system_date/. It is slightly different from <tt/f_date/
1307 so I prepared this one. You can e.g. get or set current time using <tt/system_date.s_hour/ and
1308 <tt/system_date.s_minute/. Accesses to these will be optimized to simple <tt/LDA/ and <tt/STA/
1309 pair.
1310
1311 <sect2>process
1312 <p>
1313 You should declare a table of that type to prepare data for <tt/InitProcesses/. The maximum number
1314 of processes is 20, and the last entry has to be equal to <tt/&lcub;NULL,NULL&rcub;/, so this table may hold
1315 only 21 entries. The first member of this structure (<tt/pointer/) holds the pointer to called
1316 function (void returning void), you will probably have to cast that pointer into int. The second
1317 field <tt/jiffies/ holds the amount of time between calls to that function. On PAL systems there
1318 are 50 jiffies per second, while NTSC have 60 of them.
1319
1320 <sect1>Few thing in detail...
1321 <p>
1322 GEOSLib uses cc65 non-ANSI extensions to easily initialize data in memory. This is done with a
1323 kind of array of unspecified length and unspecified type. Here is how it goes:
1324 <tscreen><verb>
1325 void example = &lcub;
1326     (char)3, (unsigned)3, (char)0 &rcub;;
1327 </verb></tscreen>
1328 Which will be compiled to following string of bytes:
1329 <tscreen><verb>
1330 _example:
1331         .byte 3
1332         .word 3
1333         .byte 0
1334 </verb></tscreen>
1335 As you see this way it is possible to define data of any type in any order. You must remember to
1336 cast each member to proper type.
1337
1338 <sect2>DoMenu structure
1339 <p>
1340 <tt/DoMenu/ is responsible for everything concerned with menu processing. Many, many GEOS programs
1341 are just initializing screen and menu and exit to <tt/MainLoop/. In GEOSLib it is the same as
1342 returning from <tt/main/ function without using <tt/exit(0)/.
1343 <p>
1344 Menu is described by two types of data - menu descriptors and menu items. Descriptor contains
1345 information about following menu items, and items are containing names of entries and either
1346 pointers to functions to execute or, in case of nested menus, pointers to submenu descriptors.
1347 Note that submenu descriptor can be top-level descriptor, there's no difference in structure,
1348 just in the content.
1349 <p>
1350 Here is how single descriptor looks like:
1351 <tscreen><verb>
1352 void myMenu = &lcub;
1353         (char)top, (char)botom,                 // this is the size of the menubox
1354         (unsigned)left, (unsigned)right,        // counting all items in current descriptor
1355         (char)number_of_items | type_of_menu,   // number of following items ORed with
1356                                                 // type of this menu, it can be either
1357         // HORIZONTAL or VERTICAL if you will have also bit 6 set then menu won't be closed
1358         // after moving mouse pointer outside the menubox. You can have at most 31 items.
1359 </verb></tscreen>
1360 This is followed by <tt/number_of_items/ of following item description.
1361 <tscreen><verb>
1362         ...
1363         "menuitemname", (char)item_type, (unsigned)pointer,
1364         "nextitemname", (char)item_type, (unsigned)pointer,
1365         ...
1366         "lastitemname", (char)item_type, (unsigned)pointer &rcub;;
1367         // Note that there isn't ending <tt/NULL/ or something like that.
1368 </verb></tscreen>
1369 <tt/pointer/ is a pointer to something, what it points for depends from <tt/item_type/. This one
1370 can have following values:
1371 <p>
1372 <tt/MENU_ACTION/ - a function pointed by <tt/pointer/ will be called after clicking on menu item
1373 <p>
1374 <tt/SUB_MENU/ - <tt/pointer/ points to next menu descriptor - a submenu
1375 <p>
1376 Both of them can be ORed with <tt/DYN_SUB_MENU/ and then the <tt/pointer/ points to a function
1377 which will return in <tt/r0/ needed pointer (to function to execute or a submenu).
1378 <p>
1379 For creating nested menus (you can have at most 8 levels of submenus) you need to declare such
1380 structure for each submenu and top level menu.
1381
1382 <sect2>DoDlgBox command string
1383 <p>
1384 <tt/DoDlgBox/ is together with <tt/DoMenu/ one of the most powerful routines in GEOS. It is
1385 responsible for creating dialog boxes, that is windows which task is to interact with user.
1386 Format of the command string is following:
1387 <tscreen><verb>
1388     (window size and position)
1389     (commands and parameters)
1390     NULL
1391 </verb></tscreen>
1392 There is custom type defined for the command string: <tt/dlgBoxStr/.
1393
1394 <sect3>Size and position
1395 <p>
1396 The first element can be specified in two ways - by using default size and position or specifying
1397 own. The first case results in
1398 <tscreen><verb>
1399 const dlgBoxStr example = &lcub;
1400         DB_DEFPOS (pattern_of_shadow),
1401         ...             // commands
1402         DB_END &rcub;;
1403 </verb></tscreen>
1404 And the own size and position would be:
1405 <tscreen><verb>
1406 const dlgBoxStr example = &lcub;
1407         DB_SETPOS (pattern, top, bottom, left, right)
1408         ...             // commands
1409         DB_END &rcub;;
1410 </verb></tscreen>
1411
1412 <sect3>Commands
1413 <p>
1414 The next element of <tt/DoDlgBox/ command string are commands themselves. First six commands are
1415 default icons and the number of selected icon will be returned from window processor. The icons are
1416 <tt/OK, CANCEL, YES, NO, OPEN/, and <tt/DISK/. You can use predefined macros for use them, e.g.:
1417 <tscreen><verb>
1418         ...
1419         DB_ICON(OK, DBI_X_0, DBI_Y_0),
1420         ...
1421 </verb></tscreen>
1422 Note that position is counted from top left corner of window, not entire screen and that the 'x'
1423 position is counted in cards (8-pixel) and not in pixels. This is true also for all following commands.
1424 <tt/DBI_X_0/ and <tt/DBI_Y_0/ are predefined (see <tt/gdlgbox.h/ for more), default positions
1425 which will make icons to appear on default window directly in the place where you would expect them.
1426 <p>
1427 <tt/DB_TXTSTR (x, y, text)/ will cause to show given text in the window.
1428 <p>
1429 <tt/DB_VARSTR (x, y, ptr)/ works as above, but here you are passing a pointer to a zero page location
1430 where the address of text is stored. This is useful for information windows where only text content
1431 is variable. Consider following:
1432 <tscreen><verb>
1433 char text = "foo";
1434         ...
1435         r15=(int)text;          // in code just before call to DoDlgBox
1436         ...
1437         DB_VARSTR (TXT_LN_X, TXT_LN_1_Y, &amp;r15),
1438         ...
1439 </verb></tscreen>
1440 will cause to appear the word ``foo'' in the window, but you may store the pointer to any text in
1441 <tt/r15/ (in this case) before call to DoDlgBox.
1442 <p>
1443 <tt/DB_GETSTR(x, y, ptr, length)/ - will add input from keyboard feature. <tt/ptr/ works as in
1444 previous example and points to place where text is to be stored. Note that the contents of this
1445 place will be shown upon creating window. <tt/length/ is the maximum number of characters to input.
1446 <p>
1447 <tt/DB_SYSOPV(ptr)/ - this sets <tt/otherPressVec/ to given pointer. I'm not sure, what this really
1448 mean.
1449 <p>
1450 <tt/DB_GRPHSTR(ptr)/ - data for this command is the pointer for <tt/GraphicsString/ commands.
1451 <p>
1452 <tt/DB_GETFILES(x, y)/ - for standard window you should pass 4 for both x and y. This function
1453 draws file selection box and searches current drive for files. Before call to <tt/DoDlgBox/ you
1454 must load <tt/r7L/ with GEOS filetype of searched files and <tt/r10/ with class text. In <tt/r5/
1455 you have to load pointer to a <tt/char&lsqb;17&rsqb;/ where selected filename will be copied. It works
1456 like <tt/FindFTypes/ but is limited to first 16 files.
1457 <p>
1458 <tt/DB_OPVEC(ptr)/ - this sets the new pointer for button press function, if you pass
1459 <tt/RstrFrmDialogue/ here you will cause the window to close after pressing mouse button.
1460 <p>
1461 <tt/DB_USRICON(x, y, ptr)/ - places single user icon (click box) on window, <tt/ptr/ points at a
1462 <tt/struct icondef/ but fields <tt/x/ and <tt/y/ are not used here. You can have at most 8 click
1463 boxes in a window, this is internal limit of GEOS Kernal.
1464 <p>
1465 <tt/DB_USRROUT(ptr)/ - this command causes to immediately call user routine pointed by <tt/ptr/.
1466
1467 <sect2>GraphicsString command string
1468 <p>
1469 <tt/GraphicsString/ is a very powerful routine to initialize whole screen at once. There are
1470 predefined macros for all commands, names are self-explanatory, see them in <tt/ggraph.h/. Last
1471 command have to be <tt/GSTR_END/. There is custom type defined for the command string: <tt/graphicStr/.
1472 <p>
1473 Here is an example for clearing the screen:
1474 <tscreen><verb>
1475 const graphicStr example = &lcub;
1476         MOVEPENTO(0,0),
1477         NEWPATTERN(0),
1478         RECTANGLETO(319,199)
1479         GSTR_END &rcub;;
1480 </verb></tscreen>
1481
1482 <sect2>InitRam table
1483 <p>
1484 This type of data is used to initialize one or more bytes in many places at once. The format is
1485 as following:
1486 <tscreen><verb>
1487 void example = &lcub;
1488     (unsigned)address_to_store_values_at,
1489     (char)number_of_bytes_that_follow,
1490     (char)data,(char)data (...)
1491     (...) - more such definitions
1492     (unsigned)NULL - address of 0 ends the table
1493     &rcub;;
1494 </verb></tscreen>
1495
1496 </article>