2018-02-19 19:33:13 +00:00
|
|
|
# DeskTop APIs
|
|
|
|
|
|
|
|
There are three distinct API classes that need to be used:
|
|
|
|
|
2018-02-21 16:06:38 +00:00
|
|
|
* MouseGraphics ToolKit - graphics primitives, windowing and events
|
2018-02-19 19:33:13 +00:00
|
|
|
* DeskTop Jump Table - simple JSR calls starting at $4003 MAIN, no arguments
|
|
|
|
* DeskTop API - another MLI-style interface starting at $8E00 AUX
|
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
In addition, some DeskTop data structures can be accessed directly.
|
|
|
|
|
|
|
|
|
|
|
|
<!-- ============================================================ -->
|
|
|
|
|
2018-02-21 16:06:38 +00:00
|
|
|
## MouseGraphics ToolKit
|
2018-02-19 19:33:13 +00:00
|
|
|
|
|
|
|
This is a complex API library written by Apple circa 1985. It consists of:
|
|
|
|
|
|
|
|
* Graphics Primitives - screen management, lines, rects, polys, text, patterns, pens
|
|
|
|
* Mouse Graphics - windows, menus, events, cursors
|
|
|
|
|
|
|
|
Entry point is fixed at $4000 AUX, called MLI-style (JSR followed by command type and address of param block).
|
|
|
|
|
|
|
|
See [MGTK.md](MGTK.md) for further documentation.
|
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
<!-- ============================================================ -->
|
2018-02-19 19:33:13 +00:00
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
## DeskTop Jump Table
|
2018-02-19 19:33:13 +00:00
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
Call from MAIN (RAMRDOFF/RAMWRTOFF); AUX language card RAM must be banked in. Call style:
|
2018-02-19 19:33:13 +00:00
|
|
|
```
|
|
|
|
jsr $xxxx
|
|
|
|
```
|
2018-04-28 03:40:39 +00:00
|
|
|
Some calls take parameters in registers.
|
|
|
|
|
|
|
|
> NOTE: Not all of the calls have been identified.
|
|
|
|
> Routines marked with * are used by Desk Accessories.
|
|
|
|
|
|
|
|
#### `JUMP_TABLE_MAIN_LOOP` ($4000)
|
|
|
|
|
|
|
|
Enter DeskTop main loop
|
|
|
|
|
|
|
|
#### `JUMP_TABLE_MGTK_RELAY` ($4003)
|
|
|
|
|
|
|
|
MGTK relay call (main>aux)
|
|
|
|
|
|
|
|
#### `JUMP_TABLE_SIZE_STRING` ($4006)
|
|
|
|
|
|
|
|
Compose "nnn Blocks" string into internal buffer
|
|
|
|
|
|
|
|
#### `JUMP_TABLE_DATE_STRING` ($4009)
|
|
|
|
|
|
|
|
Compose date string into internal buffer
|
2018-02-19 19:33:13 +00:00
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
#### `JUMP_TABLE_0C` ($400C)
|
2018-02-19 19:33:13 +00:00
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
???
|
2018-02-19 19:33:13 +00:00
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
#### `JUMP_TABLE_0F` ($400F)
|
2018-02-19 19:33:13 +00:00
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
Auxload
|
|
|
|
|
|
|
|
#### `JUMP_TABLE_EJECT` ($4012)
|
|
|
|
|
|
|
|
Eject command
|
|
|
|
|
|
|
|
#### `JUMP_TABLE_REDRAW_ALL` ($4015) *
|
|
|
|
|
|
|
|
Redraws all DeskTop windows. Required after a drag or resize.
|
|
|
|
Follow with `DT_REDRAW_ICONS` call.
|
|
|
|
|
|
|
|
#### `JUMP_TABLE_DESKTOP_RELAY` ($4018)
|
|
|
|
|
|
|
|
DESKTOP relay call (main>aux)
|
|
|
|
|
|
|
|
#### `JUMP_TABLE_LOAD_OVL` ($401B)
|
|
|
|
|
|
|
|
Load overlay routine
|
|
|
|
|
|
|
|
#### `JUMP_TABLE_CLEAR_SEL` ($401E) *
|
2018-02-19 19:33:13 +00:00
|
|
|
|
|
|
|
Deselect all DeskTop icons (volumes/files).
|
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
#### `JUMP_TABLE_MLI` ($4021)
|
|
|
|
|
|
|
|
ProDOS MLI call (Y=call, X,A=params addr) *
|
|
|
|
|
|
|
|
#### `JUMP_TABLE_COPY_TO_BUF` ($4024)
|
|
|
|
|
|
|
|
Copy to buffer
|
|
|
|
|
|
|
|
#### `JUMP_TABLE_COPY_FROM_BUF:=` ($4027)
|
|
|
|
|
|
|
|
Copy from buffer
|
2018-02-19 19:33:13 +00:00
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
#### `JUMP_TABLE_NOOP` ($402A)
|
2018-02-19 19:33:13 +00:00
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
No-Op command (RTS)
|
2018-02-19 19:33:13 +00:00
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
#### `JUMP_TABLE_2D` ($402D)
|
|
|
|
|
|
|
|
??? (Draw type/size/date in non-icon views?)
|
|
|
|
|
|
|
|
#### `JUMP_TABLE_ALERT_0` ($4030)
|
|
|
|
|
|
|
|
Show alert 0
|
|
|
|
|
|
|
|
#### `JUMP_TABLE_ALERT_X` ($4033)
|
|
|
|
|
|
|
|
Show alert X
|
|
|
|
|
|
|
|
#### `JUMP_TABLE_LAUNCH_FILE` ($4036)
|
|
|
|
|
|
|
|
Launch file
|
|
|
|
|
|
|
|
#### `JUMP_TABLE_CUR_POINTER` ($4039) *
|
|
|
|
|
|
|
|
Changes mouse cursor to pointer.
|
|
|
|
|
|
|
|
#### `JUMP_TABLE_CUR_WATCH` ($403C)
|
|
|
|
|
|
|
|
Changes mouse cursor to watch.
|
|
|
|
|
|
|
|
#### `JUMP_TABLE_RESTORE_OVL` ($403F)
|
|
|
|
|
|
|
|
Restore from overlay routine
|
|
|
|
|
|
|
|
<!-- ============================================================ -->
|
2018-02-19 19:33:13 +00:00
|
|
|
|
|
|
|
## DeskTop API
|
|
|
|
|
|
|
|
Call from AUX (RAMRDON/RAMWRTON). Call style:
|
|
|
|
```
|
|
|
|
jsr $8E00
|
|
|
|
.byte command
|
|
|
|
.addr params
|
|
|
|
```
|
|
|
|
|
2018-05-26 07:48:38 +00:00
|
|
|
Return value in A, 0=success.
|
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
> NOTE: Only some of the calls have been identified.
|
2018-02-19 19:33:13 +00:00
|
|
|
|
|
|
|
Commands:
|
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
### `DT_ADD_ICON` ($01)
|
|
|
|
|
|
|
|
Parameters: { addr icondata }
|
|
|
|
|
2018-05-26 07:48:38 +00:00
|
|
|
Inserts an icon record into the table.
|
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
### `DT_HIGHLIGHT_ICON` ($02)
|
|
|
|
|
|
|
|
Parameters: { byte icon }
|
|
|
|
|
2018-05-26 07:48:38 +00:00
|
|
|
Highlights (selects) an icon by number.
|
|
|
|
|
|
|
|
### `DT_REDRAW_ICON` ($03)
|
|
|
|
|
|
|
|
Parameters: { byte icon }
|
|
|
|
|
|
|
|
Redraws an icon by number.
|
|
|
|
|
2018-05-27 16:31:43 +00:00
|
|
|
### `DT_REMOVE_ICON` ($04)
|
2018-04-28 03:40:39 +00:00
|
|
|
|
|
|
|
Parameters: { byte icon }
|
|
|
|
|
2018-05-27 16:31:43 +00:00
|
|
|
Removes an icon by number.
|
2018-05-26 07:48:38 +00:00
|
|
|
|
|
|
|
### `DT_HIGHLIGHT_ALL` ($05)
|
|
|
|
|
|
|
|
Parameters: { byte window_id }
|
|
|
|
|
|
|
|
Highlights (selects) all icons in a window.
|
|
|
|
|
|
|
|
### `DT_UNHIGHLIGHT_ALL` ($06)
|
|
|
|
|
|
|
|
Parameters: _N/A_
|
|
|
|
|
|
|
|
Unhighlights (deselects) all icons.
|
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
### `DT_CLOSE_WINDOW` ($07)
|
|
|
|
|
|
|
|
Parameters: { byte window_id }
|
|
|
|
|
2018-05-26 07:48:38 +00:00
|
|
|
Closes the specified window.
|
|
|
|
|
|
|
|
### `DT_GET_HIGHLIGHTED` ($08)
|
|
|
|
|
|
|
|
Parameters: { .res 20 }
|
|
|
|
|
|
|
|
Copies the numbers of the first 20 selected icons to the given buffer.
|
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
### `DT_FIND_ICON` ($09)
|
|
|
|
|
|
|
|
Parameters: { word mousex, word mousey, (out) byte result }
|
|
|
|
|
2018-05-26 07:48:38 +00:00
|
|
|
Find the icon number at the given coordinates.
|
|
|
|
|
2018-05-27 16:31:43 +00:00
|
|
|
### `DT_UNHIGHLIGHT_ICON` ($0B)
|
|
|
|
|
|
|
|
Parameters: { addr iconentry }
|
|
|
|
|
|
|
|
Unhighlights the specified icon. Note that the address of the icon
|
|
|
|
entry is passed, not the number.
|
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
### `DT_REDRAW_ICONS` ($0C)
|
2018-02-19 19:33:13 +00:00
|
|
|
|
|
|
|
Parameters: none (pass $0000 as address)
|
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
Redraws the icons on the desktop (mounted volumes, trash). This call
|
2018-05-26 07:48:38 +00:00
|
|
|
is required after destroying, moving, or resizing a desk accessory window.
|
2018-04-28 03:40:39 +00:00
|
|
|
|
|
|
|
### `DT_ICON_IN_RECT` ($0D)
|
|
|
|
|
|
|
|
Parameters: { byte icon, rect bounds }
|
2018-02-19 19:33:13 +00:00
|
|
|
|
2018-05-26 07:48:38 +00:00
|
|
|
Tests to see if the given icon (by number) overlaps the passed rect.
|
|
|
|
|
|
|
|
### `DT_REDRAW_ICON_IDX` ($0E)
|
|
|
|
|
|
|
|
Parameters: { byte icon_index }
|
|
|
|
|
|
|
|
Redraws the icon at the given index in the icon list. Note that this
|
|
|
|
is not the same as the icon number.
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
<!-- ============================================================ -->
|
2018-02-19 19:33:13 +00:00
|
|
|
|
|
|
|
## DeskTop Data Structures
|
|
|
|
|
2018-04-28 03:40:39 +00:00
|
|
|
DeskTop's state - selection, windows, icons - is only partially accessible
|
|
|
|
via APIs. Operations such as opening the selected file requires accessing
|
|
|
|
internal data structures directly.
|
2018-02-19 19:33:13 +00:00
|
|
|
|
|
|
|
### Selection
|
|
|
|
|
|
|
|
* `path_index` (byte) - id of active window in `path_table`
|
|
|
|
|
|
|
|
* `selected_file_count` (byte) - number of selected icons
|
|
|
|
* `selected_file_list` (array of bytes) - ids of selected icons
|
|
|
|
|
|
|
|
### Window - representing an open directory
|
|
|
|
|
|
|
|
* `path_table` (array of addrs) - maps window id to window record address
|
|
|
|
|
|
|
|
Window record: 65-byte pathname buffer; it is a length-prefixed
|
|
|
|
absolute path (e.g. `/HD/GAMES`)
|
|
|
|
|
|
|
|
### Icon - representing a file (in a window) or volume (on the desktop)
|
|
|
|
|
|
|
|
* `file_table` (array of addrs) - maps icon id to icon record address
|
|
|
|
|
|
|
|
Icon record: 27-byte structure optimized for rendering the file/volume icon.
|
|
|
|
|
|
|
|
```
|
2018-02-20 03:21:10 +00:00
|
|
|
.byte icon icon index
|
|
|
|
.byte ??
|
|
|
|
.byte type/window_id
|
|
|
|
(bits 0-3 window_id)
|
|
|
|
(bits 4,5,6)
|
|
|
|
000 = directory
|
|
|
|
001 = system
|
|
|
|
010 = binary
|
|
|
|
011 = basic
|
|
|
|
100 = (unused)
|
|
|
|
101 = text/generic
|
|
|
|
110 = (unused)
|
|
|
|
111 = trash
|
|
|
|
(bit 7 = open flag)
|
|
|
|
.word iconx (pixels)
|
|
|
|
.word icony (pixels)
|
|
|
|
.addr iconbits (addr of {mapbits, mapwidth, reserved, maprect})
|
|
|
|
.byte len (name length + 2)
|
|
|
|
.res 17 name (name, with a space before and after)
|
2018-02-19 19:33:13 +00:00
|
|
|
```
|