2023-10-23 22:16:25 +00:00
|
|
|
; Monochrome Bitmap pixel graphics routines for the Virtual Machine
|
|
|
|
; Using the full-screen 640x480 and 320x240 screen modes, but just black/white.
|
2023-11-05 15:39:36 +00:00
|
|
|
;
|
|
|
|
; NOTE: For sake of speed, NO BOUNDS CHECKING is performed in most routines!
|
|
|
|
; You'll have to make sure yourself that you're not writing outside of bitmap boundaries!
|
|
|
|
|
2023-10-23 22:16:25 +00:00
|
|
|
|
|
|
|
monogfx {
|
|
|
|
|
2023-12-29 21:21:44 +00:00
|
|
|
%option ignore_unused
|
2023-10-23 22:16:25 +00:00
|
|
|
|
|
|
|
; read-only control variables:
|
|
|
|
uword width = 0
|
|
|
|
uword height = 0
|
2024-03-03 21:35:54 +00:00
|
|
|
ubyte mode
|
|
|
|
const ubyte MODE_NORMAL = %00000000
|
|
|
|
const ubyte MODE_STIPPLE = %00000001
|
|
|
|
const ubyte MODE_INVERT = %00000010
|
2023-10-23 22:16:25 +00:00
|
|
|
|
|
|
|
sub lores() {
|
|
|
|
; enable 320*240 bitmap mode
|
|
|
|
sys.gfx_enable(0)
|
|
|
|
width = 320
|
|
|
|
height = 240
|
2024-03-03 21:35:54 +00:00
|
|
|
mode = MODE_NORMAL
|
2023-10-23 22:16:25 +00:00
|
|
|
clear_screen(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
sub hires() {
|
|
|
|
; enable 640*480 bitmap mode
|
|
|
|
sys.gfx_enable(1)
|
|
|
|
width = 640
|
|
|
|
height = 480
|
2024-03-03 21:35:54 +00:00
|
|
|
mode = MODE_NORMAL
|
2023-10-23 22:16:25 +00:00
|
|
|
clear_screen(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
sub textmode() {
|
|
|
|
; back to normal text mode
|
|
|
|
}
|
|
|
|
|
2024-03-03 21:35:54 +00:00
|
|
|
sub drawmode(ubyte dm) {
|
|
|
|
mode = dm
|
|
|
|
}
|
|
|
|
|
2023-10-23 22:16:25 +00:00
|
|
|
sub clear_screen(ubyte color) {
|
2024-02-04 22:22:43 +00:00
|
|
|
if color!=0
|
2023-10-23 22:16:25 +00:00
|
|
|
color=255
|
|
|
|
sys.gfx_clear(color)
|
|
|
|
}
|
|
|
|
|
|
|
|
sub rect(uword xx, uword yy, uword rwidth, uword rheight, bool draw) {
|
|
|
|
if rwidth==0 or rheight==0
|
|
|
|
return
|
|
|
|
horizontal_line(xx, yy, rwidth, draw)
|
|
|
|
if rheight==1
|
|
|
|
return
|
|
|
|
horizontal_line(xx, yy+rheight-1, rwidth, draw)
|
|
|
|
vertical_line(xx, yy+1, rheight-2, draw)
|
|
|
|
if rwidth==1
|
|
|
|
return
|
|
|
|
vertical_line(xx+rwidth-1, yy+1, rheight-2, draw)
|
|
|
|
}
|
|
|
|
|
|
|
|
sub fillrect(uword xx, uword yy, uword rwidth, uword rheight, bool draw) {
|
|
|
|
; Draw a filled rectangle of the given size and color.
|
|
|
|
; To fill the whole screen, use clear_screen(color) instead - it is much faster.
|
|
|
|
if rwidth==0
|
|
|
|
return
|
|
|
|
repeat rheight {
|
|
|
|
horizontal_line(xx, yy, rwidth, draw)
|
|
|
|
yy++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub horizontal_line(uword xx, uword yy, uword length, bool draw) {
|
|
|
|
uword xpos
|
|
|
|
for xpos in xx to xx+length-1
|
2024-01-08 23:57:02 +00:00
|
|
|
plot(xpos, yy, draw)
|
2023-10-23 22:16:25 +00:00
|
|
|
}
|
|
|
|
|
2023-11-05 15:39:36 +00:00
|
|
|
sub safe_horizontal_line(uword xx, uword yy, uword length, bool draw) {
|
|
|
|
; does bounds checking and clipping
|
|
|
|
if msb(yy)&$80!=0 or yy>=height
|
|
|
|
return
|
|
|
|
if msb(xx)&$80!=0 {
|
|
|
|
length += xx
|
|
|
|
xx = 0
|
|
|
|
}
|
|
|
|
if xx>=width
|
|
|
|
return
|
|
|
|
if xx+length>width
|
|
|
|
length = width-xx
|
|
|
|
if length>width
|
|
|
|
return
|
|
|
|
|
|
|
|
horizontal_line(xx, yy, length, draw)
|
|
|
|
}
|
|
|
|
|
2023-10-23 22:16:25 +00:00
|
|
|
sub vertical_line(uword xx, uword yy, uword lheight, bool draw) {
|
|
|
|
uword ypos
|
|
|
|
for ypos in yy to yy+lheight-1
|
2024-01-08 23:57:02 +00:00
|
|
|
plot(xx, ypos, draw)
|
2023-10-23 22:16:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sub line(uword @zp x1, uword @zp y1, uword @zp x2, uword @zp y2, bool draw) {
|
|
|
|
; Bresenham algorithm.
|
|
|
|
; This code special-cases various quadrant loops to allow simple ++ and -- operations.
|
|
|
|
if y1>y2 {
|
|
|
|
; make sure dy is always positive to have only 4 instead of 8 special cases
|
|
|
|
cx16.r0 = x1
|
|
|
|
x1 = x2
|
|
|
|
x2 = cx16.r0
|
|
|
|
cx16.r0 = y1
|
|
|
|
y1 = y2
|
|
|
|
y2 = cx16.r0
|
|
|
|
}
|
|
|
|
word @zp dx = (x2 as word)-x1
|
|
|
|
word @zp dy = (y2 as word)-y1
|
|
|
|
|
|
|
|
if dx==0 {
|
|
|
|
vertical_line(x1, y1, abs(dy) as uword +1, draw)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if dy==0 {
|
|
|
|
if x1>x2
|
|
|
|
x1=x2
|
|
|
|
horizontal_line(x1, y1, abs(dx) as uword +1, draw)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
word @zp d = 0
|
2024-02-04 22:22:43 +00:00
|
|
|
cx16.r1L = 1 ; true ; 'positive_ix'
|
2023-10-23 22:16:25 +00:00
|
|
|
if dx < 0 {
|
|
|
|
dx = -dx
|
2024-02-04 22:22:43 +00:00
|
|
|
cx16.r1L = 0 ; false
|
2023-10-23 22:16:25 +00:00
|
|
|
}
|
|
|
|
word @zp dx2 = dx*2
|
|
|
|
word @zp dy2 = dy*2
|
|
|
|
cx16.r14 = x1 ; internal plot X
|
|
|
|
|
|
|
|
if dx >= dy {
|
2024-02-04 22:22:43 +00:00
|
|
|
if cx16.r1L!=0 {
|
2023-10-23 22:16:25 +00:00
|
|
|
repeat {
|
|
|
|
plot(cx16.r14, y1, draw)
|
|
|
|
if cx16.r14==x2
|
|
|
|
return
|
|
|
|
cx16.r14++
|
|
|
|
d += dy2
|
|
|
|
if d > dx {
|
|
|
|
y1++
|
|
|
|
d -= dx2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
repeat {
|
|
|
|
plot(cx16.r14, y1, draw)
|
|
|
|
if cx16.r14==x2
|
|
|
|
return
|
|
|
|
cx16.r14--
|
|
|
|
d += dy2
|
|
|
|
if d > dx {
|
|
|
|
y1++
|
|
|
|
d -= dx2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2024-02-04 22:22:43 +00:00
|
|
|
if cx16.r1L!=0 {
|
2023-10-23 22:16:25 +00:00
|
|
|
repeat {
|
|
|
|
plot(cx16.r14, y1, draw)
|
|
|
|
if y1 == y2
|
|
|
|
return
|
|
|
|
y1++
|
|
|
|
d += dx2
|
|
|
|
if d > dy {
|
|
|
|
cx16.r14++
|
|
|
|
d -= dy2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
repeat {
|
|
|
|
plot(cx16.r14, y1, draw)
|
|
|
|
if y1 == y2
|
|
|
|
return
|
|
|
|
y1++
|
|
|
|
d += dx2
|
|
|
|
if d > dy {
|
|
|
|
cx16.r14--
|
|
|
|
d -= dy2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub circle(uword @zp xcenter, uword @zp ycenter, ubyte radius, bool draw) {
|
2023-11-05 15:39:36 +00:00
|
|
|
; Warning: NO BOUNDS CHECKS. Make sure circle fits in the screen.
|
2023-10-23 22:16:25 +00:00
|
|
|
; Midpoint algorithm.
|
|
|
|
if radius==0
|
|
|
|
return
|
|
|
|
|
|
|
|
ubyte @zp xx = radius
|
|
|
|
ubyte @zp yy = 0
|
|
|
|
word @zp decisionOver2 = (1 as word)-xx
|
|
|
|
; R14 = internal plot X
|
|
|
|
; R15 = internal plot Y
|
|
|
|
|
|
|
|
while xx>=yy {
|
|
|
|
cx16.r14 = xcenter + xx
|
|
|
|
cx16.r15 = ycenter + yy
|
2023-11-05 15:39:36 +00:00
|
|
|
plotq()
|
2023-10-23 22:16:25 +00:00
|
|
|
cx16.r14 = xcenter - xx
|
2023-11-05 15:39:36 +00:00
|
|
|
plotq()
|
2023-10-23 22:16:25 +00:00
|
|
|
cx16.r14 = xcenter + xx
|
|
|
|
cx16.r15 = ycenter - yy
|
2023-11-05 15:39:36 +00:00
|
|
|
plotq()
|
2023-10-23 22:16:25 +00:00
|
|
|
cx16.r14 = xcenter - xx
|
2023-11-05 15:39:36 +00:00
|
|
|
plotq()
|
2023-10-23 22:16:25 +00:00
|
|
|
cx16.r14 = xcenter + yy
|
|
|
|
cx16.r15 = ycenter + xx
|
2023-11-05 15:39:36 +00:00
|
|
|
plotq()
|
2023-10-23 22:16:25 +00:00
|
|
|
cx16.r14 = xcenter - yy
|
2023-11-05 15:39:36 +00:00
|
|
|
plotq()
|
2023-10-23 22:16:25 +00:00
|
|
|
cx16.r14 = xcenter + yy
|
|
|
|
cx16.r15 = ycenter - xx
|
2023-11-05 15:39:36 +00:00
|
|
|
plotq()
|
2023-10-23 22:16:25 +00:00
|
|
|
cx16.r14 = xcenter - yy
|
2023-11-05 15:39:36 +00:00
|
|
|
plotq()
|
|
|
|
|
|
|
|
yy++
|
|
|
|
if decisionOver2>=0 {
|
|
|
|
xx--
|
|
|
|
decisionOver2 -= xx*$0002
|
|
|
|
}
|
|
|
|
decisionOver2 += yy*$0002
|
|
|
|
decisionOver2++
|
|
|
|
}
|
|
|
|
|
|
|
|
sub plotq() {
|
|
|
|
; cx16.r14 = x, cx16.r15 = y, draw=draw
|
2023-10-23 22:16:25 +00:00
|
|
|
plot(cx16.r14, cx16.r15, draw)
|
2023-11-05 15:39:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub safe_circle(uword @zp xcenter, uword @zp ycenter, ubyte radius, bool draw) {
|
|
|
|
; Does bounds checking and clipping.
|
|
|
|
; Midpoint algorithm.
|
|
|
|
if radius==0
|
|
|
|
return
|
|
|
|
|
|
|
|
ubyte @zp xx = radius
|
|
|
|
ubyte @zp yy = 0
|
|
|
|
word @zp decisionOver2 = (1 as word)-xx
|
|
|
|
; R14 = internal plot X
|
|
|
|
; R15 = internal plot Y
|
|
|
|
|
|
|
|
while xx>=yy {
|
|
|
|
cx16.r14 = xcenter + xx
|
|
|
|
cx16.r15 = ycenter + yy
|
|
|
|
plotq()
|
|
|
|
cx16.r14 = xcenter - xx
|
|
|
|
plotq()
|
|
|
|
cx16.r14 = xcenter + xx
|
|
|
|
cx16.r15 = ycenter - yy
|
|
|
|
plotq()
|
|
|
|
cx16.r14 = xcenter - xx
|
|
|
|
plotq()
|
|
|
|
cx16.r14 = xcenter + yy
|
|
|
|
cx16.r15 = ycenter + xx
|
|
|
|
plotq()
|
|
|
|
cx16.r14 = xcenter - yy
|
|
|
|
plotq()
|
|
|
|
cx16.r14 = xcenter + yy
|
|
|
|
cx16.r15 = ycenter - xx
|
|
|
|
plotq()
|
|
|
|
cx16.r14 = xcenter - yy
|
|
|
|
plotq()
|
2023-10-23 22:16:25 +00:00
|
|
|
|
|
|
|
yy++
|
2023-11-05 15:39:36 +00:00
|
|
|
if decisionOver2>=0 {
|
2023-10-23 22:16:25 +00:00
|
|
|
xx--
|
2023-11-05 15:39:36 +00:00
|
|
|
decisionOver2 -= xx*$0002
|
2023-10-23 22:16:25 +00:00
|
|
|
}
|
2023-11-05 15:39:36 +00:00
|
|
|
decisionOver2 += yy*$0002
|
|
|
|
decisionOver2++
|
|
|
|
}
|
|
|
|
|
|
|
|
sub plotq() {
|
|
|
|
; cx16.r14 = x, cx16.r15 = y, draw=draw
|
|
|
|
safe_plot(cx16.r14, cx16.r15, draw)
|
2023-10-23 22:16:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub disc(uword @zp xcenter, uword @zp ycenter, ubyte @zp radius, bool draw) {
|
2023-11-05 15:39:36 +00:00
|
|
|
; Warning: NO BOUNDS CHECKS. Make sure circle fits in the screen.
|
2023-10-23 22:16:25 +00:00
|
|
|
; Midpoint algorithm, filled
|
|
|
|
if radius==0
|
|
|
|
return
|
|
|
|
ubyte @zp yy = 0
|
|
|
|
word @zp decisionOver2 = (1 as word)-radius
|
|
|
|
|
|
|
|
while radius>=yy {
|
|
|
|
horizontal_line(xcenter-radius, ycenter+yy, radius*$0002+1, draw)
|
|
|
|
horizontal_line(xcenter-radius, ycenter-yy, radius*$0002+1, draw)
|
|
|
|
horizontal_line(xcenter-yy, ycenter+radius, yy*$0002+1, draw)
|
|
|
|
horizontal_line(xcenter-yy, ycenter-radius, yy*$0002+1, draw)
|
|
|
|
yy++
|
2023-11-05 15:39:36 +00:00
|
|
|
if decisionOver2>=0 {
|
2023-10-23 22:16:25 +00:00
|
|
|
radius--
|
2023-11-05 15:39:36 +00:00
|
|
|
decisionOver2 -= radius*$0002
|
2023-10-23 22:16:25 +00:00
|
|
|
}
|
2023-11-05 15:39:36 +00:00
|
|
|
decisionOver2 += yy*$0002
|
|
|
|
decisionOver2++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub safe_disc(uword @zp xcenter, uword @zp ycenter, ubyte @zp radius, bool draw) {
|
|
|
|
; Warning: NO BOUNDS CHECKS. Make sure circle fits in the screen.
|
|
|
|
; Midpoint algorithm, filled
|
|
|
|
if radius==0
|
|
|
|
return
|
|
|
|
ubyte @zp yy = 0
|
|
|
|
word @zp decisionOver2 = (1 as word)-radius
|
|
|
|
|
|
|
|
while radius>=yy {
|
|
|
|
safe_horizontal_line(xcenter-radius, ycenter+yy, radius*$0002+1, draw)
|
|
|
|
safe_horizontal_line(xcenter-radius, ycenter-yy, radius*$0002+1, draw)
|
|
|
|
safe_horizontal_line(xcenter-yy, ycenter+radius, yy*$0002+1, draw)
|
|
|
|
safe_horizontal_line(xcenter-yy, ycenter-radius, yy*$0002+1, draw)
|
|
|
|
yy++
|
|
|
|
if decisionOver2>=0 {
|
|
|
|
radius--
|
|
|
|
decisionOver2 -= radius*$0002
|
|
|
|
}
|
|
|
|
decisionOver2 += yy*$0002
|
|
|
|
decisionOver2++
|
2023-10-23 22:16:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub plot(uword @zp xx, uword @zp yy, bool @zp draw) {
|
|
|
|
if draw {
|
2024-03-03 21:35:54 +00:00
|
|
|
when mode {
|
|
|
|
MODE_NORMAL -> {
|
2023-10-23 22:16:25 +00:00
|
|
|
sys.gfx_plot(xx, yy, 255)
|
2024-03-03 21:35:54 +00:00
|
|
|
}
|
|
|
|
MODE_STIPPLE -> {
|
2024-03-10 22:55:08 +00:00
|
|
|
if (xx ^ yy)&1 !=0
|
2024-03-03 21:35:54 +00:00
|
|
|
sys.gfx_plot(xx, yy, 255)
|
|
|
|
else
|
|
|
|
sys.gfx_plot(xx, yy, 0)
|
|
|
|
}
|
|
|
|
MODE_INVERT -> {
|
|
|
|
sys.gfx_plot(xx, yy, 255 ^ sys.gfx_getpixel(xx, yy))
|
|
|
|
}
|
2023-10-23 22:16:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
sys.gfx_plot(xx, yy, 0)
|
|
|
|
}
|
|
|
|
|
2023-11-05 15:39:36 +00:00
|
|
|
sub safe_plot(uword xx, uword yy, bool draw) {
|
|
|
|
; A plot that does bounds checks to see if the pixel is inside the screen.
|
|
|
|
if msb(xx)&$80!=0 or msb(yy)&$80!=0
|
|
|
|
return
|
|
|
|
if xx >= width or yy >= height
|
|
|
|
return
|
|
|
|
plot(xx, yy, draw)
|
|
|
|
}
|
|
|
|
|
2024-02-27 23:34:35 +00:00
|
|
|
sub pget(uword @zp xx, uword yy) -> bool {
|
|
|
|
return sys.gfx_getpixel(xx, yy) as bool
|
2023-10-23 22:16:25 +00:00
|
|
|
}
|
|
|
|
|
2023-11-04 12:51:18 +00:00
|
|
|
sub fill(uword x, uword y, bool draw) {
|
2023-10-23 22:16:25 +00:00
|
|
|
; Non-recursive scanline flood fill.
|
|
|
|
; based loosely on code found here https://www.codeproject.com/Articles/6017/QuickFill-An-efficient-flood-fill-algorithm
|
|
|
|
; with the fixes applied to the seedfill_4 routine as mentioned in the comments.
|
2023-11-11 20:59:12 +00:00
|
|
|
const ubyte MAXDEPTH = 64
|
2023-11-04 12:51:18 +00:00
|
|
|
word @zp xx = x as word
|
|
|
|
word @zp yy = y as word
|
2023-10-23 22:16:25 +00:00
|
|
|
word[MAXDEPTH] @split @shared stack_xl
|
|
|
|
word[MAXDEPTH] @split @shared stack_xr
|
|
|
|
word[MAXDEPTH] @split @shared stack_y
|
|
|
|
byte[MAXDEPTH] @shared stack_dy
|
|
|
|
cx16.r12L = 0 ; stack pointer
|
|
|
|
word x1
|
|
|
|
word x2
|
|
|
|
byte dy
|
|
|
|
cx16.r10L = draw as ubyte
|
|
|
|
sub push_stack(word sxl, word sxr, word sy, byte sdy) {
|
|
|
|
if cx16.r12L==MAXDEPTH
|
|
|
|
return
|
|
|
|
cx16.r0s = sy+sdy
|
|
|
|
if cx16.r0s>=0 and cx16.r0s<=height-1 {
|
|
|
|
stack_xl[cx16.r12L] = sxl
|
|
|
|
stack_xr[cx16.r12L] = sxr
|
|
|
|
stack_y[cx16.r12L] = sy
|
|
|
|
stack_dy[cx16.r12L] = sdy
|
|
|
|
cx16.r12L++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
sub pop_stack() {
|
|
|
|
cx16.r12L--
|
|
|
|
x1 = stack_xl[cx16.r12L]
|
|
|
|
x2 = stack_xr[cx16.r12L]
|
|
|
|
yy = stack_y[cx16.r12L]
|
|
|
|
dy = stack_dy[cx16.r12L]
|
|
|
|
yy+=dy
|
|
|
|
}
|
2024-03-12 22:27:15 +00:00
|
|
|
cx16.r11L = pget(xx as uword, yy as uword) as ubyte ; old_color
|
2023-10-23 22:16:25 +00:00
|
|
|
if cx16.r11L == cx16.r10L
|
|
|
|
return
|
|
|
|
if xx<0 or xx>width-1 or yy<0 or yy>height-1
|
|
|
|
return
|
|
|
|
push_stack(xx, xx, yy, 1)
|
|
|
|
push_stack(xx, xx, yy + 1, -1)
|
|
|
|
word left = 0
|
2024-02-04 22:22:43 +00:00
|
|
|
while cx16.r12L!=0 {
|
2023-10-23 22:16:25 +00:00
|
|
|
pop_stack()
|
|
|
|
xx = x1
|
2023-11-04 12:51:18 +00:00
|
|
|
while xx >= 0 {
|
2024-02-27 23:34:35 +00:00
|
|
|
if pget(xx as uword, yy as uword) as ubyte != cx16.r11L
|
2023-11-04 12:51:18 +00:00
|
|
|
break
|
2023-10-23 22:16:25 +00:00
|
|
|
xx--
|
2023-11-04 12:51:18 +00:00
|
|
|
}
|
2023-10-23 22:16:25 +00:00
|
|
|
if x1!=xx
|
2024-02-04 22:22:43 +00:00
|
|
|
horizontal_line(xx as uword+1, yy as uword, x1-xx as uword, cx16.r10L as bool)
|
2023-10-23 22:16:25 +00:00
|
|
|
else
|
|
|
|
goto skip
|
|
|
|
|
|
|
|
left = xx + 1
|
|
|
|
if left < x1
|
|
|
|
push_stack(left, x1 - 1, yy, -dy)
|
|
|
|
xx = x1 + 1
|
|
|
|
|
|
|
|
do {
|
2024-02-04 22:22:43 +00:00
|
|
|
cx16.r9 = xx as uword
|
2023-11-04 12:51:18 +00:00
|
|
|
while xx <= width-1 {
|
2024-02-27 23:34:35 +00:00
|
|
|
if pget(xx as uword, yy as uword) as ubyte != cx16.r11L
|
2023-11-04 12:51:18 +00:00
|
|
|
break
|
2023-10-23 22:16:25 +00:00
|
|
|
xx++
|
2023-11-04 12:51:18 +00:00
|
|
|
}
|
2023-10-23 22:16:25 +00:00
|
|
|
if cx16.r9!=xx
|
2024-02-04 22:22:43 +00:00
|
|
|
horizontal_line(cx16.r9, yy as uword, (xx as uword)-cx16.r9, cx16.r10L as bool)
|
2023-10-23 22:16:25 +00:00
|
|
|
|
|
|
|
push_stack(left, xx - 1, yy, dy)
|
|
|
|
if xx > x2 + 1
|
|
|
|
push_stack(x2 + 1, xx - 1, yy, -dy)
|
|
|
|
skip:
|
|
|
|
xx++
|
2023-11-04 12:51:18 +00:00
|
|
|
while xx <= x2 {
|
2024-02-27 23:34:35 +00:00
|
|
|
if pget(xx as uword, yy as uword) as ubyte == cx16.r11L
|
2023-11-04 12:51:18 +00:00
|
|
|
break
|
2023-10-23 22:16:25 +00:00
|
|
|
xx++
|
2023-11-04 12:51:18 +00:00
|
|
|
}
|
2023-10-23 22:16:25 +00:00
|
|
|
left = xx
|
|
|
|
} until xx>x2
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub text_charset(ubyte charset) {
|
|
|
|
; -- select the text charset to use with the text() routine
|
|
|
|
; the charset number is the same as for the cx16.screen_set_charset() ROM function.
|
|
|
|
; 1 = ISO charset, 2 = PETSCII uppercase+graphs, 3= PETSCII uppercase+lowercase.
|
2024-01-14 12:20:12 +00:00
|
|
|
; TODO vm bitmap charset
|
2023-10-23 22:16:25 +00:00
|
|
|
}
|
|
|
|
|
2024-03-05 21:38:34 +00:00
|
|
|
sub text(uword @zp xx, uword yy, bool draw, str sctextptr) {
|
2023-10-23 22:16:25 +00:00
|
|
|
; -- Write some text at the given pixel position. The text string must be in screencode encoding (not petscii!).
|
|
|
|
; You must also have called text_charset() first to select and prepare the character set to use.
|
2024-01-14 12:20:12 +00:00
|
|
|
; TODO vm bitmap charset
|
2023-10-23 22:16:25 +00:00
|
|
|
}
|
|
|
|
}
|