2002-06-21 13:28:51 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 21.06.2002
|
|
|
|
;
|
2002-12-29 20:57:57 +00:00
|
|
|
; void __fastcall__ tgi_init (void);
|
|
|
|
; /* Initialize the already loaded graphics driver */
|
2002-06-21 13:28:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
.include "tgi-kernel.inc"
|
|
|
|
.include "tgi-error.inc"
|
|
|
|
|
2002-07-07 10:30:31 +00:00
|
|
|
.importzp ptr1
|
2002-06-21 13:28:51 +00:00
|
|
|
|
2003-02-11 12:37:46 +00:00
|
|
|
.proc _tgi_init
|
|
|
|
|
2002-06-21 13:28:51 +00:00
|
|
|
jsr _tgi_done ; Switch off graphics if needed
|
2002-06-21 16:25:56 +00:00
|
|
|
jsr tgi_init ; Go into graphics mode
|
2002-07-07 10:30:31 +00:00
|
|
|
jsr tgi_geterror ; Get the error code
|
|
|
|
sta _tgi_error ; Save for later reference
|
|
|
|
cmp #TGI_ERR_OK
|
|
|
|
bne @L9 ; Jump on error
|
|
|
|
|
2002-12-29 20:57:57 +00:00
|
|
|
inc _tgi_gmode ; Remember that graph mode is active
|
|
|
|
|
2004-11-03 18:33:23 +00:00
|
|
|
; Do driver initialization. Set draw and view pages.
|
|
|
|
|
|
|
|
lda #0
|
|
|
|
jsr tgi_setviewpage
|
|
|
|
lda #0
|
|
|
|
jsr tgi_setdrawpage
|
|
|
|
|
|
|
|
; Set the default palette.
|
2002-07-07 10:30:31 +00:00
|
|
|
|
|
|
|
jsr tgi_getdefpalette ; Get the default palette into A/X
|
|
|
|
sta ptr1
|
2003-10-21 10:03:09 +00:00
|
|
|
stx ptr1+1 ; Save it
|
2003-10-23 09:28:01 +00:00
|
|
|
jsr tgi_setpalette ; Set the default palette.
|
|
|
|
jsr tgi_geterror ; Clear a possible error code
|
2002-07-07 10:30:31 +00:00
|
|
|
|
|
|
|
; Set the drawing color to the maximum color
|
|
|
|
|
|
|
|
@L1: ldx _tgi_colorcount
|
2002-06-22 21:40:24 +00:00
|
|
|
dex
|
|
|
|
txa
|
2002-07-07 10:30:31 +00:00
|
|
|
jsr _tgi_setcolor ; tgi_setcolor (tgi_getmaxcolor ());
|
|
|
|
|
2002-10-03 11:18:23 +00:00
|
|
|
; Set the text style
|
|
|
|
|
|
|
|
lda #TGI_TEXT_HORIZONTAL
|
|
|
|
sta _tgi_textdir
|
|
|
|
ldx #1
|
|
|
|
stx _tgi_textmagx
|
|
|
|
ldy #1
|
|
|
|
sty _tgi_textmagy
|
|
|
|
jsr tgi_textstyle ; Tell the driver about the text style
|
|
|
|
|
2002-07-07 10:30:31 +00:00
|
|
|
; Clear the screen
|
|
|
|
|
|
|
|
jmp tgi_clear
|
|
|
|
|
|
|
|
; Error exit
|
2002-06-22 21:40:24 +00:00
|
|
|
|
2002-12-29 20:57:57 +00:00
|
|
|
@L9: rts
|
2002-06-21 13:28:51 +00:00
|
|
|
|
2003-02-11 12:37:46 +00:00
|
|
|
.endproc
|
|
|
|
|
|
|
|
|