2023-08-12 21:24:41 +00:00
|
|
|
; Prog8 definitions for the Text I/O and Screen routines for the Commodore PET
|
2023-11-06 22:18:24 +00:00
|
|
|
; All routines work with Screencode character encoding, except `print`, `chrout` and `input_chars`,
|
|
|
|
; these work with PETSCII encoding instead.
|
2023-08-12 21:24:41 +00:00
|
|
|
|
|
|
|
%import syslib
|
|
|
|
%import conv
|
2024-03-27 23:04:49 +00:00
|
|
|
%import shared_cbm_textio_functions
|
2023-08-12 21:24:41 +00:00
|
|
|
|
|
|
|
txt {
|
2023-12-26 22:37:59 +00:00
|
|
|
%option no_symbol_prefixing, ignore_unused
|
2023-08-12 21:24:41 +00:00
|
|
|
|
|
|
|
const ubyte DEFAULT_WIDTH = 40
|
|
|
|
const ubyte DEFAULT_HEIGHT = 25
|
|
|
|
|
2024-03-27 23:04:49 +00:00
|
|
|
romsub $FFD2 = chrout(ubyte character @ A) ; for consistency. You can also use cbm.CHROUT directly ofcourse. Note: takes a PETSCII encoded character.
|
|
|
|
|
2023-08-12 21:24:41 +00:00
|
|
|
|
|
|
|
sub clear_screen() {
|
2024-02-21 16:35:37 +00:00
|
|
|
chrout(147)
|
2023-08-12 21:24:41 +00:00
|
|
|
}
|
|
|
|
|
2024-04-07 17:32:44 +00:00
|
|
|
sub cls() {
|
|
|
|
chrout(147)
|
|
|
|
}
|
|
|
|
|
2023-08-12 21:24:41 +00:00
|
|
|
sub home() {
|
2024-02-21 16:35:37 +00:00
|
|
|
chrout(19)
|
2023-08-12 21:24:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub nl() {
|
2024-02-21 16:35:37 +00:00
|
|
|
chrout('\n')
|
2023-08-12 21:24:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub spc() {
|
2024-02-21 16:35:37 +00:00
|
|
|
chrout(' ')
|
2023-08-12 21:24:41 +00:00
|
|
|
}
|
|
|
|
|
2024-02-21 16:35:37 +00:00
|
|
|
sub bell() {
|
|
|
|
chrout(7)
|
|
|
|
}
|
2023-08-12 21:24:41 +00:00
|
|
|
|
2023-11-07 21:19:16 +00:00
|
|
|
|
2023-08-28 15:35:53 +00:00
|
|
|
asmsub fill_screen (ubyte character @ A, ubyte color @ Y) clobbers(A) {
|
2023-08-14 11:51:15 +00:00
|
|
|
; ---- fill the character screen with the given fill character. color is ignored on PET
|
2023-08-12 21:24:41 +00:00
|
|
|
%asm {{
|
|
|
|
jmp clear_screenchars
|
2024-03-16 15:47:40 +00:00
|
|
|
}}
|
2023-08-12 21:24:41 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-08-28 15:35:53 +00:00
|
|
|
asmsub clear_screenchars (ubyte character @ A) clobbers(Y) {
|
2023-08-14 11:51:15 +00:00
|
|
|
; ---- clear the character screen with the given fill character
|
2023-08-12 21:24:41 +00:00
|
|
|
; (assumes screen matrix is at the default address)
|
|
|
|
%asm {{
|
|
|
|
ldy #250
|
|
|
|
- sta cbm.Screen+250*0-1,y
|
|
|
|
sta cbm.Screen+250*1-1,y
|
|
|
|
sta cbm.Screen+250*2-1,y
|
|
|
|
sta cbm.Screen+250*3-1,y
|
|
|
|
dey
|
|
|
|
bne -
|
|
|
|
rts
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
2023-08-14 11:51:15 +00:00
|
|
|
sub clear_screencolors (ubyte color) {
|
|
|
|
; --- dummy function on PET
|
|
|
|
}
|
|
|
|
|
|
|
|
sub color (ubyte txtcol) {
|
|
|
|
; --- dummy function on PET
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-08-12 21:24:41 +00:00
|
|
|
sub lowercase() {
|
|
|
|
txt.chrout(14)
|
|
|
|
}
|
|
|
|
|
|
|
|
sub uppercase() {
|
|
|
|
txt.chrout(142)
|
|
|
|
}
|
|
|
|
|
|
|
|
asmsub scroll_left () clobbers(A, X, Y) {
|
|
|
|
; ---- scroll the whole screen 1 character to the left
|
|
|
|
; contents of the rightmost column are unchanged, you should clear/refill this yourself
|
|
|
|
|
|
|
|
%asm {{
|
|
|
|
ldx #0
|
|
|
|
ldy #38
|
|
|
|
-
|
|
|
|
.for row=0, row<=24, row+=1
|
|
|
|
lda cbm.Screen + 40*row + 1,x
|
|
|
|
sta cbm.Screen + 40*row + 0,x
|
|
|
|
.next
|
|
|
|
inx
|
|
|
|
dey
|
|
|
|
bpl -
|
|
|
|
|
|
|
|
rts
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
|
|
|
asmsub scroll_right () clobbers(A,X) {
|
|
|
|
; ---- scroll the whole screen 1 character to the right
|
|
|
|
; contents of the leftmost column are unchanged, you should clear/refill this yourself
|
|
|
|
%asm {{
|
|
|
|
ldx #38
|
|
|
|
-
|
|
|
|
.for row=0, row<=24, row+=1
|
|
|
|
lda cbm.Screen + 40*row + 0,x
|
|
|
|
sta cbm.Screen + 40*row + 1,x
|
|
|
|
.next
|
|
|
|
dex
|
|
|
|
bpl -
|
|
|
|
|
|
|
|
rts
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
|
|
|
asmsub scroll_up () clobbers(A,X) {
|
|
|
|
; ---- scroll the whole screen 1 character up
|
|
|
|
; contents of the bottom row are unchanged, you should refill/clear this yourself
|
|
|
|
%asm {{
|
|
|
|
ldx #39
|
|
|
|
-
|
|
|
|
.for row=1, row<=24, row+=1
|
|
|
|
lda cbm.Screen + 40*row,x
|
|
|
|
sta cbm.Screen + 40*(row-1),x
|
|
|
|
.next
|
|
|
|
dex
|
|
|
|
bpl -
|
|
|
|
|
|
|
|
rts
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
|
|
|
asmsub scroll_down () clobbers(A,X) {
|
|
|
|
; ---- scroll the whole screen 1 character down
|
|
|
|
; contents of the top row are unchanged, you should refill/clear this yourself
|
|
|
|
%asm {{
|
|
|
|
ldx #39
|
|
|
|
-
|
|
|
|
.for row=23, row>=0, row-=1
|
|
|
|
lda cbm.Screen + 40*row,x
|
|
|
|
sta cbm.Screen + 40*(row+1),x
|
|
|
|
.next
|
|
|
|
dex
|
|
|
|
bpl -
|
|
|
|
|
|
|
|
rts
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
|
|
|
asmsub setchr (ubyte col @X, ubyte row @Y, ubyte character @A) clobbers(A, Y) {
|
|
|
|
; ---- sets the character in the screen matrix at the given position
|
|
|
|
%asm {{
|
|
|
|
pha
|
|
|
|
tya
|
|
|
|
asl a
|
|
|
|
tay
|
|
|
|
lda _screenrows+1,y
|
|
|
|
sta _mod+2
|
|
|
|
txa
|
|
|
|
clc
|
|
|
|
adc _screenrows,y
|
|
|
|
sta _mod+1
|
|
|
|
bcc +
|
|
|
|
inc _mod+2
|
|
|
|
+ pla
|
|
|
|
_mod sta $ffff ; modified
|
|
|
|
rts
|
|
|
|
|
2023-08-14 11:51:15 +00:00
|
|
|
_screenrows .word cbm.Screen + range(0, 1000, 40)
|
2023-08-12 21:24:41 +00:00
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
|
|
|
asmsub getchr (ubyte col @A, ubyte row @Y) clobbers(Y) -> ubyte @ A {
|
|
|
|
; ---- get the character in the screen matrix at the given location
|
|
|
|
%asm {{
|
|
|
|
pha
|
|
|
|
tya
|
|
|
|
asl a
|
|
|
|
tay
|
|
|
|
lda setchr._screenrows+1,y
|
|
|
|
sta _mod+2
|
|
|
|
pla
|
|
|
|
clc
|
|
|
|
adc setchr._screenrows,y
|
|
|
|
sta _mod+1
|
|
|
|
bcc _mod
|
|
|
|
inc _mod+2
|
|
|
|
_mod lda $ffff ; modified
|
|
|
|
rts
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
2023-08-14 11:51:15 +00:00
|
|
|
sub setclr (ubyte col, ubyte row, ubyte color) {
|
|
|
|
; --- dummy function on PET
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2023-08-28 15:35:53 +00:00
|
|
|
sub setcc (ubyte col, ubyte row, ubyte character, ubyte charcolor) {
|
2023-08-14 11:51:15 +00:00
|
|
|
; ---- set char at the given position on the screen. charcolor is ignored on PET
|
2023-08-12 21:24:41 +00:00
|
|
|
%asm {{
|
|
|
|
lda row
|
|
|
|
asl a
|
|
|
|
tay
|
|
|
|
lda setchr._screenrows+1,y
|
|
|
|
sta _charmod+2
|
|
|
|
lda setchr._screenrows,y
|
|
|
|
clc
|
2023-08-28 15:35:53 +00:00
|
|
|
adc col
|
2023-08-12 21:24:41 +00:00
|
|
|
sta _charmod+1
|
|
|
|
bcc +
|
|
|
|
inc _charmod+2
|
2023-08-28 15:35:53 +00:00
|
|
|
+ lda character
|
2023-08-12 21:24:41 +00:00
|
|
|
_charmod sta $ffff ; modified
|
|
|
|
rts
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
|
|
|
asmsub plot (ubyte col @ Y, ubyte row @ X) {
|
|
|
|
%asm {{
|
2023-08-14 11:51:15 +00:00
|
|
|
jsr home
|
|
|
|
cpy #0
|
|
|
|
beq +
|
|
|
|
- lda #17
|
|
|
|
jsr chrout
|
|
|
|
dey
|
|
|
|
bne -
|
|
|
|
+ cpx #0
|
|
|
|
beq +
|
|
|
|
- lda #29
|
|
|
|
jsr chrout
|
|
|
|
dex
|
|
|
|
bne -
|
|
|
|
+ rts
|
2023-08-12 21:24:41 +00:00
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
|
|
|
asmsub width() clobbers(X,Y) -> ubyte @A {
|
|
|
|
; -- returns the text screen width (number of columns)
|
|
|
|
%asm {{
|
|
|
|
lda $d5
|
2023-08-14 11:51:15 +00:00
|
|
|
clc
|
|
|
|
adc #1
|
2023-08-12 21:24:41 +00:00
|
|
|
rts
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
|
|
|
asmsub height() clobbers(X, Y) -> ubyte @A {
|
|
|
|
; -- returns the text screen height (number of rows)
|
|
|
|
%asm {{
|
|
|
|
lda #25
|
|
|
|
rts
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
2023-11-17 19:30:50 +00:00
|
|
|
asmsub waitkey() -> ubyte @A {
|
2023-11-07 21:19:16 +00:00
|
|
|
%asm {{
|
|
|
|
- jsr cbm.GETIN
|
|
|
|
beq -
|
|
|
|
rts
|
|
|
|
}}
|
|
|
|
}
|
2023-08-12 21:24:41 +00:00
|
|
|
}
|