2013-01-07 19:37:18 +00:00
|
|
|
;
|
|
|
|
; Graphics driver for the 228x200x3 palette mode on the Atmos
|
|
|
|
;
|
|
|
|
; Stefan Haubenthal <polluks@sdf.lonestar.org>
|
2014-09-10 23:15:07 +00:00
|
|
|
; 2014-09-10, Greg King <gregdk@users.sf.net>
|
2013-01-07 19:37:18 +00:00
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.include "zeropage.inc"
|
2013-01-07 19:37:18 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.include "tgi-kernel.inc"
|
|
|
|
.include "tgi-error.inc"
|
|
|
|
.include "atmos.inc"
|
2013-01-07 19:37:18 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.macpack generic
|
2014-06-04 21:50:18 +00:00
|
|
|
.macpack module
|
2013-01-07 19:37:18 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
XSIZE = 6 ; System font width
|
|
|
|
YSIZE = 8 ; System font height
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Header. Includes jump table and constants.
|
|
|
|
|
2014-06-04 21:50:18 +00:00
|
|
|
module_header _atmos_228_200_3_tgi
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; The first part of the header is a structure that has a signature,
|
|
|
|
; and defines the capabilities of the driver.
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.byte "tgi"
|
|
|
|
.byte TGI_API_VERSION ; TGI API version number
|
2013-06-01 10:42:00 +00:00
|
|
|
.addr $0000 ; Library reference
|
2013-05-09 11:56:54 +00:00
|
|
|
.word 228 ; x resolution
|
|
|
|
.word 200 ; y resolution
|
|
|
|
.byte 3 ; Number of drawing colors
|
|
|
|
.byte 1 ; Number of screens available
|
|
|
|
.byte XSIZE ; System font x size
|
|
|
|
.byte YSIZE ; System font y size
|
|
|
|
.word $011C ; Aspect ratio (based on 4/3 display)
|
|
|
|
.byte 0 ; TGI driver flags
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; Next comes the jump table. Currently, all entries must be valid;
|
|
|
|
; and, may point to an RTS, for test versions (function not implemented).
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.addr INSTALL
|
|
|
|
.addr UNINSTALL
|
|
|
|
.addr INIT
|
|
|
|
.addr DONE
|
|
|
|
.addr GETERROR
|
|
|
|
.addr CONTROL
|
|
|
|
.addr CLEAR
|
|
|
|
.addr SETVIEWPAGE
|
|
|
|
.addr SETDRAWPAGE
|
|
|
|
.addr SETCOLOR
|
|
|
|
.addr SETPALETTE
|
|
|
|
.addr GETPALETTE
|
|
|
|
.addr GETDEFPALETTE
|
|
|
|
.addr SETPIXEL
|
|
|
|
.addr GETPIXEL
|
|
|
|
.addr LINE
|
|
|
|
.addr BAR
|
|
|
|
.addr TEXTSTYLE
|
|
|
|
.addr OUTTEXT
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; Data.
|
|
|
|
|
|
|
|
; Variables mapped to the zero-page segment variables. These are
|
|
|
|
; used for passing parameters to the driver.
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
X1 := ptr1
|
|
|
|
Y1 := ptr2
|
|
|
|
X2 := ptr3
|
|
|
|
Y2 := ptr4
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; Absolute variables used in the code
|
|
|
|
|
|
|
|
.bss
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
ERROR: .res 1 ; Error code
|
|
|
|
MODE: .res 1 ; Graphics mode
|
|
|
|
PALETTE: .res 2
|
2013-01-07 19:37:18 +00:00
|
|
|
|
2013-07-16 04:30:56 +00:00
|
|
|
; Constant table
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
.rodata
|
|
|
|
|
|
|
|
; Default colors: black background, white foreground
|
|
|
|
; (The third "color" actually flips a pixel
|
|
|
|
; between the foreground and background colors.)
|
|
|
|
;
|
2013-05-09 11:56:54 +00:00
|
|
|
DEFPALETTE: .byte 0, 1
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
.code
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; INIT: Changes an already installed device from text mode to graphics mode.
|
|
|
|
; Note that INIT/DONE may be called multiple times while the driver
|
|
|
|
; is loaded, while INSTALL is called only once. So, any code that is needed
|
|
|
|
; to initialize variables and so on must go here. Setting palette and
|
|
|
|
; clearing the screen are not needed because they are called by the graphics
|
|
|
|
; kernel later.
|
|
|
|
; The graphics kernel never will call INIT when a graphics mode is already
|
|
|
|
; active, so there is no need to protect against that.
|
|
|
|
;
|
|
|
|
; Must set an error code: YES
|
|
|
|
;
|
|
|
|
|
|
|
|
INIT:
|
|
|
|
|
|
|
|
; Switch into graphics mode.
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
jsr HIRES
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; Done, reset the error code.
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; GETERROR: Return the error code in A, and clear it.
|
|
|
|
|
|
|
|
GETERROR:
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx #TGI_ERR_OK
|
|
|
|
lda ERROR
|
|
|
|
stx ERROR
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; INSTALL routine. Is called after the driver is loaded into memory. May
|
|
|
|
; initialize anything that has to be done just once. Is probably empty
|
|
|
|
; most of the time.
|
|
|
|
;
|
|
|
|
; Must set an error code: NO
|
|
|
|
;
|
|
|
|
|
|
|
|
INSTALL:
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; UNINSTALL routine. Is called before the driver is removed from memory. May
|
|
|
|
; clean up anything done by INSTALL, but probably is empty most of the time.
|
|
|
|
;
|
|
|
|
; Must set an error code: NO
|
|
|
|
;
|
|
|
|
|
|
|
|
UNINSTALL:
|
2013-05-09 11:56:54 +00:00
|
|
|
rts
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; DONE: Will be called to switch the graphics device back into text mode.
|
|
|
|
; The graphics kernel never will call DONE when no graphics mode is active,
|
|
|
|
; so there is no need to protect against that.
|
|
|
|
;
|
|
|
|
; Must set an error code: NO
|
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
DONE := TEXT
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; CONTROL: Platform-/driver-specific entry point.
|
|
|
|
;
|
|
|
|
; Must set an error code: YES
|
|
|
|
;
|
|
|
|
|
|
|
|
CONTROL:
|
2013-05-09 11:56:54 +00:00
|
|
|
sta PATTERN
|
|
|
|
lda #TGI_ERR_OK
|
|
|
|
sta ERROR
|
|
|
|
rts
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; CLEAR: Clears the screen.
|
|
|
|
;
|
|
|
|
; Must set an error code: NO
|
|
|
|
;
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
CLEAR := HIRES
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; SETVIEWPAGE: Set the visible page. Called with the new page in A (0..n).
|
|
|
|
; The page number already is checked to be valid, by the graphics kernel.
|
|
|
|
;
|
|
|
|
; Must set an error code: NO (will be called only if page OK)
|
|
|
|
;
|
|
|
|
|
|
|
|
SETVIEWPAGE:
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; SETDRAWPAGE: Set the drawable page. Called with the new page in A (0..n).
|
|
|
|
; The page number already is checked to be valid, by the graphics kernel.
|
|
|
|
;
|
|
|
|
; Must set an error code: NO (will be called only if page OK)
|
|
|
|
;
|
|
|
|
|
|
|
|
SETDRAWPAGE:
|
2013-05-09 11:56:54 +00:00
|
|
|
rts
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; SETCOLOR: Set the drawing color (in A). The new color already is checked
|
|
|
|
; to be in a valid range (0..maxcolor-1).
|
|
|
|
;
|
|
|
|
; Must set an error code: NO (will be called only if color OK)
|
|
|
|
;
|
|
|
|
|
|
|
|
SETCOLOR:
|
2013-05-09 11:56:54 +00:00
|
|
|
sta MODE
|
|
|
|
rts
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; SETPALETTE: Set the palette (not available with all drivers/hardware).
|
|
|
|
; A pointer to the palette is passed in ptr1. Must set an error if palettes
|
|
|
|
; are not supported.
|
|
|
|
;
|
|
|
|
; Must set an error code: YES
|
|
|
|
;
|
|
|
|
|
|
|
|
SETPALETTE:
|
2013-05-09 11:56:54 +00:00
|
|
|
ldy #0
|
|
|
|
jsr flipcolor
|
|
|
|
sty PARAM1+1
|
|
|
|
jsr PAPER
|
|
|
|
ldy #1
|
|
|
|
jsr flipcolor
|
|
|
|
dey ; TGI_ERR_OK
|
|
|
|
sty ERROR
|
|
|
|
sty PARAM1+1
|
|
|
|
jmp INK
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
flipcolor:
|
2013-05-09 11:56:54 +00:00
|
|
|
lda (ptr1),y
|
|
|
|
sta PALETTE,y
|
|
|
|
cmp #1
|
|
|
|
beq @flip
|
|
|
|
cmp #7
|
|
|
|
bne @keep
|
|
|
|
@flip: eor #1 ^ 7
|
|
|
|
@keep: sta PARAM1
|
|
|
|
rts
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; GETPALETTE: Return the current palette in A/X. Even drivers that cannot
|
|
|
|
; set the palette should return the default palette here, so there's no
|
|
|
|
; way for this function to fail.
|
|
|
|
;
|
|
|
|
; Must set an error code: NO
|
|
|
|
;
|
|
|
|
|
|
|
|
GETPALETTE:
|
2013-05-09 11:56:54 +00:00
|
|
|
lda #<PALETTE
|
|
|
|
ldx #>PALETTE
|
|
|
|
rts
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; GETDEFPALETTE: Return the default palette for the driver in A/X. All
|
|
|
|
; drivers should return something reasonable here, even drivers that don't
|
|
|
|
; support palettes; otherwise, the caller has no way to determine the colors
|
|
|
|
; of the (not changeable) palette.
|
|
|
|
;
|
|
|
|
; Must set an error code: NO (all drivers must have a default palette)
|
|
|
|
;
|
|
|
|
|
|
|
|
GETDEFPALETTE:
|
2013-05-09 11:56:54 +00:00
|
|
|
lda #<DEFPALETTE
|
|
|
|
ldx #>DEFPALETTE
|
|
|
|
rts
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; SETPIXEL: Draw one pixel at X1/Y1 = ptr1/ptr2 with the current drawing
|
|
|
|
; color. The co-ordinates passed to this function are never outside the
|
|
|
|
; visible screen area, so there is no need for clipping inside this function.
|
|
|
|
;
|
|
|
|
; Must set an error code: NO
|
|
|
|
;
|
|
|
|
|
|
|
|
SETPIXEL:
|
2013-05-09 11:56:54 +00:00
|
|
|
lda Y1
|
|
|
|
sta PARAM2
|
|
|
|
lda MODE
|
|
|
|
mymode: sta PARAM3
|
|
|
|
lda X1
|
|
|
|
add #2 * XSIZE ; Skip screen attribute columns
|
|
|
|
sta PARAM1
|
2014-09-10 23:15:07 +00:00
|
|
|
lda #>$0000
|
2013-05-09 11:56:54 +00:00
|
|
|
sta PARAM1+1
|
|
|
|
sta PARAM2+1
|
|
|
|
sta PARAM3+1
|
|
|
|
jmp CURSET
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; GETPIXEL: Read the color value of a pixel, and return it in A/X. The
|
|
|
|
; co-ordinates passed to this function are never outside the visible screen
|
|
|
|
; area, so there is no need for clipping inside this function.
|
|
|
|
|
|
|
|
GETPIXEL:
|
2013-05-09 11:56:54 +00:00
|
|
|
lda X1
|
|
|
|
sta PARAM1
|
|
|
|
lda Y1
|
|
|
|
sta PARAM2
|
2014-09-10 23:15:07 +00:00
|
|
|
lda #>$0000
|
2013-05-09 11:56:54 +00:00
|
|
|
sta PARAM1+1
|
|
|
|
sta PARAM2+1
|
|
|
|
jsr POINT
|
|
|
|
lda PARAM1
|
|
|
|
and #%00000001
|
2014-09-10 23:15:07 +00:00
|
|
|
ldx #>$0000
|
2013-05-09 11:56:54 +00:00
|
|
|
rts
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; LINE: Draw a line from X1/Y1 to X2/Y2, where X1/Y1 = ptr1/ptr2 and
|
|
|
|
; X2/Y2 = ptr3/ptr4, using the current drawing color.
|
|
|
|
;
|
|
|
|
; Must set an error code: NO
|
|
|
|
;
|
|
|
|
|
|
|
|
LINE:
|
2013-05-09 11:56:54 +00:00
|
|
|
jsr SETPIXEL
|
|
|
|
lda X2
|
|
|
|
sub X1
|
|
|
|
sta PARAM1
|
|
|
|
lda X2+1
|
|
|
|
sbc X1+1
|
|
|
|
sta PARAM1+1
|
|
|
|
lda Y2
|
|
|
|
sub Y1
|
|
|
|
sta PARAM2
|
|
|
|
lda Y2+1
|
|
|
|
sbc Y1+1
|
|
|
|
sta PARAM2+1
|
|
|
|
lda MODE
|
|
|
|
sta PARAM3
|
2014-09-10 23:15:07 +00:00
|
|
|
ldx #>$0000
|
2013-05-09 11:56:54 +00:00
|
|
|
stx PARAM3+1
|
|
|
|
jmp DRAW
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; BAR: Draw a filled rectangle with the corners X1/Y1, X2/Y2, where
|
|
|
|
; X1/Y1 = ptr1/ptr2 and X2/Y2 = ptr3/ptr4, using the current drawing color.
|
|
|
|
; Contrary to most other functions, the graphics kernel will sort and clip
|
|
|
|
; the co-ordinates before calling the driver; so, on entry, the following
|
|
|
|
; conditions are valid:
|
2013-05-09 11:56:54 +00:00
|
|
|
; X1 <= X2
|
|
|
|
; Y1 <= Y2
|
|
|
|
; (X1 >= 0) && (X1 < XRES)
|
|
|
|
; (X2 >= 0) && (X2 < XRES)
|
|
|
|
; (Y1 >= 0) && (Y1 < YRES)
|
|
|
|
; (Y2 >= 0) && (Y2 < YRES)
|
2013-01-07 19:37:18 +00:00
|
|
|
;
|
|
|
|
; Must set an error code: NO
|
|
|
|
;
|
|
|
|
|
|
|
|
BAR:
|
2013-05-09 11:56:54 +00:00
|
|
|
inc Y2
|
|
|
|
@L1: lda Y2
|
|
|
|
pha
|
|
|
|
lda Y1
|
|
|
|
sta Y2
|
|
|
|
jsr LINE
|
|
|
|
pla
|
|
|
|
sta Y2
|
|
|
|
inc Y1
|
|
|
|
cmp Y1
|
|
|
|
bne @L1
|
|
|
|
rts
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
|
|
|
; TEXTSTYLE: Set the style used when calling OUTTEXT. Text scaling in the x
|
2014-09-10 23:15:07 +00:00
|
|
|
; and y directions is passed in X/Y, the text direction is passed in A.
|
2013-01-07 19:37:18 +00:00
|
|
|
;
|
|
|
|
; Must set an error code: NO
|
|
|
|
;
|
|
|
|
|
|
|
|
TEXTSTYLE:
|
2013-05-09 11:56:54 +00:00
|
|
|
rts
|
2013-01-07 19:37:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
; ------------------------------------------------------------------------
|
2014-09-10 23:15:07 +00:00
|
|
|
; OUTTEXT: Output text at x/y = ptr1/ptr2, using the current color and the
|
2013-01-07 19:37:18 +00:00
|
|
|
; current text style. The text to output is given as a zero-terminated
|
|
|
|
; string with its address in ptr3.
|
|
|
|
;
|
|
|
|
; Must set an error code: NO
|
|
|
|
;
|
|
|
|
|
|
|
|
OUTTEXT:
|
2013-05-09 11:56:54 +00:00
|
|
|
lda Y1
|
|
|
|
sub #(YSIZE - 1)
|
|
|
|
sta PARAM2
|
|
|
|
lda #3 ; (Move graphics cursor; don't draw)
|
|
|
|
jsr mymode
|
|
|
|
|
|
|
|
ldy #0
|
|
|
|
@next: lda (ptr3),y
|
|
|
|
beq @end
|
|
|
|
sta PARAM1
|
|
|
|
lda #0
|
|
|
|
sta PARAM2
|
|
|
|
sta PARAM1+1
|
|
|
|
sta PARAM2+1
|
|
|
|
sta PARAM3+1
|
|
|
|
lda MODE
|
|
|
|
sta PARAM3
|
|
|
|
tya
|
|
|
|
pha
|
|
|
|
jsr CHAR
|
|
|
|
lda #XSIZE
|
|
|
|
sta PARAM1
|
|
|
|
lda #0
|
|
|
|
sta PARAM2
|
|
|
|
sta PARAM1+1
|
|
|
|
sta PARAM2+1
|
|
|
|
sta PARAM3+1
|
|
|
|
lda #3
|
|
|
|
sta PARAM3
|
|
|
|
jsr CURMOV
|
|
|
|
pla
|
|
|
|
tay
|
|
|
|
iny
|
|
|
|
bne @next
|
|
|
|
@end: rts
|