prog8/examples/turtle-gfx.p8

121 lines
3.1 KiB
Plaintext
Raw Normal View History

2020-03-28 13:17:35 +00:00
%import c64lib
%import c64flt
%import c64graphics
%option enable_floats
2020-07-01 20:31:38 +00:00
; TODO fix compiler errors when compiling without optimizations
2020-03-28 13:17:35 +00:00
main {
sub start() {
graphics.enable_bitmap_mode()
turtle.init()
ubyte i
for i in 0 to 255 {
while c64.RASTER {
}
}
for i in 0 to 100 {
turtle.fd(i+20)
turtle.rt(94)
}
repeat {
2020-03-28 13:17:35 +00:00
}
}
}
turtle {
float xpos
float ypos
float angle
ubyte pendown
sub init() {
xpos = 160.0
ypos = 100.0
angle = 0.0
pendown = true
c64.SPRPTR[0] = $0d00 / 64
c64.SPENA = 1
c64.SP0COL = 5
update_turtle_sprite()
2020-03-28 13:17:35 +00:00
}
sub update_turtle_sprite() {
2020-03-28 13:17:35 +00:00
uword xx = xpos as uword
c64.SPXY[0] = lsb(xx) + 12
c64.MSIGX = msb(xx) > 0
2020-03-28 13:17:35 +00:00
c64.SPXY[1] = lsb(ypos) + 40
}
sub pos(float x, float y) {
if pendown {
graphics.line(xpos as uword, ypos as ubyte, x as uword, y as ubyte)
}
xpos = x
ypos = y
update_turtle_sprite()
}
2020-03-28 13:17:35 +00:00
sub fd(uword length) {
float flen = length as float
float sx = xpos
float sy = ypos
xpos += flen * sin(angle)
ypos -= flen * cos(angle)
update_turtle_sprite()
2020-03-28 13:17:35 +00:00
if pendown {
graphics.line(sx as uword, lsb(sy), xpos as uword, lsb(ypos))
}
}
sub rt(uword degrees) {
angle += rad(degrees as float)
}
sub lt(uword degrees) {
angle -= rad(degrees as float)
}
sub pu() {
pendown = false
}
sub pd() {
pendown = true
}
}
spritedata $0d00 {
; this memory block contains the sprite data
; it must start on an address aligned to 64 bytes.
%option force_output ; make sure the data in this block appears in the resulting program
ubyte[] balloonsprite = [ %00000000,%00000000,%00000000,
%00000000,%00000000,%00000000,
%00000000,%00000000,%00000000,
%00000000,%00000000,%00000000,
%00000000,%00000000,%00000000,
%00000000,%00000000,%00000000,
%00000000,%00000000,%00000000,
%00000000,%00000000,%00000000,
%00000000,%01111110,%00000000,
%00000000,%11000011,%00000000,
%00000000,%11000011,%00000000,
%00000000,%11000011,%00000000,
%00000000,%01111110,%00000000,
%00000000,%00000000,%00000000,
%00000000,%00000000,%00000000,
%00000000,%00000000,%00000000,
%00000000,%00000000,%00000000,
%00000000,%00000000,%00000000,
%00000000,%00000000,%00000000,
%00000000,%00000000,%00000000,
%00000000,%00000000,%00000000 ]
}