prog8/examples/mandelbrot.p8
2020-09-26 19:14:06 +02:00

62 lines
1.5 KiB
Lua

%import textio
%import floats
%zeropage basicsafe
; Note: this program is compatible with C64 and CX16.
main {
const uword width = 30
const uword height = 20
const ubyte max_iter = 16
sub start() {
txt.print("calculating mandelbrot fractal...")
c64.SETTIM(0, 0, 0)
ubyte pixelx
ubyte pixely
for pixely in 0 to height-1 {
float yy = (pixely as float)/0.4/height - 1.0
for pixelx in 0 to width-1 {
float xx = (pixelx as float)/0.3/width - 2.2
float xsquared = 0.0
float ysquared = 0.0
float x = 0.0
float y = 0.0
ubyte iter = 0
while iter<max_iter and xsquared+ysquared<4.0 {
y = x*y*2.0 + yy
x = xsquared - ysquared + xx
xsquared = x*x
ysquared = y*y
iter++
}
txt.setcc(pixelx+4, pixely+1, 160, max_iter-iter)
}
}
ubyte time_lo
ubyte time_mid
ubyte time_hi
%asm {{
stx P8ZP_SCRATCH_REG
jsr c64.RDTIM ; A/X/Y
sta time_lo
stx time_mid
sty time_hi
ldx P8ZP_SCRATCH_REG
}}
float duration = ((mkword(time_mid, time_lo) as float) + (time_hi as float)*65536.0) / 60
txt.plot(0, 21)
txt.print("finished in ")
floats.print_f(duration)
txt.print(" seconds!\n")
}
}