1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-06-12 22:29:33 +00:00
millfork/examples/a8/landscape.mfk

43 lines
768 B
Plaintext
Raw Normal View History

2020-09-25 01:08:33 +00:00
// idea @ilmenit
2020-09-28 17:19:25 +00:00
// https://demozoo.org/productions/280623
// for 8bit AtariXL, OS Rev 2
2020-09-25 01:08:33 +00:00
2020-09-25 23:14:08 +00:00
alias prev_x = os_OLDCOL.lo
alias cursor_x = os_COLCRS.lo
2020-09-25 01:08:33 +00:00
alias prev_y = os_OLDROW
alias cursor_y = os_ROWCRS
alias color = os_ATACHR
2020-09-25 09:20:16 +00:00
byte i
2020-09-25 01:08:33 +00:00
array(byte) color_height = [
170,150,144,144,122,122,110,110,94,94,86,86,82,80
]
asm void openmode(byte register(a) m) @ $ef9c extern
asm void drawto() @ $f9c2 extern
void main(){
openmode(9)
os_COLOR4 = $b0
for i,0,to,79 {
cursor_x = i
prev_x = i
2020-09-25 07:45:48 +00:00
prev_y = 1
2020-09-25 01:08:33 +00:00
2020-09-28 17:19:25 +00:00
for color,13,downto,0 {
2020-09-25 01:08:33 +00:00
cursor_y = color_height[color]
2020-09-28 17:19:25 +00:00
if pokey_random < $80 {
color_height[color] -= 1
}
if pokey_random < $80 {
2020-09-25 09:20:16 +00:00
color_height[color] += 1
2020-09-25 01:08:33 +00:00
}
drawto()
}
}
while true {}
}