Compare commits

...

3 Commits

Author SHA1 Message Date
Devine Lu Linvega 2a582b7b6d (life.tal) Stop reading nbors at 4 2024-03-02 21:05:33 -08:00
Devine Lu Linvega 28da4f5dfc (life.tal)Faster drawing routine 2024-03-02 20:57:25 -08:00
Devine Lu Linvega a5e25d905a (life.tal) Optimizations 2024-03-02 20:44:47 -08:00
1 changed files with 53 additions and 54 deletions

View File

@ -48,7 +48,7 @@
[ LIT &f $1 ] INCk ,&f STR
( ) #03 AND #00 EQU ?{ BRK }
<run>
&paused BRK
BRK
@on-mouse ( -> )
[ LIT2 00 -Mouse/state ] DEI NEQ #42 ADD ;cursor-icn <update-cursor>
@ -58,7 +58,7 @@
( | paint )
.Mouse/x DEI2 .anchor/x LDZ2 SUB2 #01 SFT NIP
( ) .Mouse/y DEI2 .anchor/y LDZ2 SUB2 #01 SFT NIP <set-cell>
<draw-grid>
<redraw>
BRK
@on-control ( -> )
@ -66,33 +66,30 @@
( ) DUP #20 NEQ ?{
#0000 ;on-frame .Screen/vector DEI2 ORA ?{ SWP2 }
POP2 .Screen/vector DEO2 }
( ) #1b NEQ ?{ ;mmu/clear1 .System/expansion DEO2 }
( ) #1b NEQ ?{ ;MMU/clear1 .System/expansion DEO2 }
BRK
(
@|core )
@<run> ( -- )
( | clear buffer )
;mmu/clear2 .System/expansion DEO2
( | <run> grid )
;MMU/clear2 .System/expansion DEO2
#4000
&ver ( -- )
STHk #4000
DUP ,&y STR
#4000
&hor ( -- )
DUP STHkr <run-cell>
DUP [ LIT &y $1 ] <run-cell>
INC GTHk ?&hor
POP2 POPr INC GTHk ?&ver
POP2 INC GTHk ?&ver
POP2
( | move buffer )
;mmu/move21 .System/expansion DEO2
( | draw )
!<draw-grid>
( move ) ;MMU/move21 .System/expansion DEO2
!<redraw>
@<run-cell> ( x y -- )
( x y ) DUP2k
( x y ) DUP2 STH2k
( neighbours ) get-neighbours
( state ) ROT ROT get-cell #00 EQU ?&dead
( state ) STH2r get-index LDA #00 EQU ?&dead
DUP #02 LTH ?&dies
DUP #03 GTH ?&dies
POP !&save
@ -108,47 +105,59 @@
JMP2r
@get-index ( x y -- index* )
( y ) #3f AND #00 SWP #60 SFT2
( x ) ROT #3f AND #00 SWP ADD2 ;bank1 ADD2 JMP2r
( y ) #3f AND #00 SWP #60 SFT2 ROT
( x ) #3f AND #00 SWP ADD2 ;bank1 ADD2 JMP2r
@<set-cell> ( x y -- )
STH2
#01 STH2r get-index STA
get-index STH2
#01 STH2r STA
JMP2r
@get-cell ( x y -- cell )
get-index LDA JMP2r
@get-neighbours ( x y -- neighbours )
,&origin STR2
LITr 00 #0800
&loop ( -- )
#00 OVRk ADD2 ;&mask ADD2 LDA2 [ LIT2 &origin $2 ] ROT ADD STH
ADD STHr get-cell STH
ADDr INC GTHk ?&loop
POP2 STHr JMP2r
,&y STR
,&x STR
[ LITr 00 ] #0800
&l ( -- )
#00 OVRk ADD2 ;&mask ADD2 LDA2
( ) [ LIT &y $1 ] ADD SWP
( ) [ LIT &x $1 ] ADD SWP get-index LDA [ STH ADDr ]
( stop at 3 ) DUPr [ LITr 03 ] GTHr [ LITr _&end ] JCNr
( ) INC GTHk ?&l
&end POP2 STHr JMP2r
&mask [
ffff 00ff 01ff ff00 0100 ff01 0001 0101 ]
@within-rect ( x* y* rect -- flag )
STH
( y < rect.y1 ) DUP2 STHkr INC INC LDZ2 LTH2 ?&skip
( y > rect.y2 ) DUP2 STHkr #06 ADD LDZ2 GTH2 ?&skip
SWP2
( x < rect.x1 ) DUP2 STHkr LDZ2 LTH2 ?&skip
( x > rect.x2 ) DUP2 STHkr #04 ADD LDZ2 GTH2 ?&skip
POP2 POP2 POPr #01 JMP2r
&skip POP2 POP2 POPr #00 JMP2r
(
@|drawing )
@<draw-grid> ( -- )
( draw cell count ) .anchor/x LDZ2 .Screen/x DEO2
@<redraw> ( -- )
( | draw count )
.anchor/x LDZ2 .Screen/x DEO2
.anchor/y2 LDZ2 #0008 ADD2 .Screen/y DEO2
[ LIT2 01 -Screen/auto ] DEO
.world/count LDZ2 <draw-short>
[ LIT2 00 -Screen/auto ] DEO
#4000
&ver ( -- )
#00 OVRk ADD2 .anchor/y LDZ2 ADD2 .Screen/y DEO2
STHk #4000
&hor ( -- )
#00 OVRk ADD2 .anchor/x LDZ2 ADD2 .Screen/x DEO2
DUP STHkr get-cell INC .Screen/pixel DEO
INC GTHk ?&hor
POP2 POPr INC GTHk ?&ver
POP2 JMP2r
( | draw grid )
[ LIT2 01 -Screen/auto ] DEO
.anchor/y LDZ2 .Screen/y DEO2
;bank2 ;bank1
&l ( -- )
DUP #3f AND ?{
.Screen/y DEI2k INC2 INC2 ROT DEO2
.anchor/x LDZ2 .Screen/x DEO2 }
LDAk INC .Screen/pixel DEO
[ LIT2 00 -Screen/pixel ] DEO
INC2 GTH2k ?&l
POP2 POP2 JMP2r
@<draw-short> ( short* -- )
SWP <draw-byte>
@ -179,20 +188,10 @@
.Screen/sprite DEO
JMP2r
@within-rect ( x* y* rect -- flag )
STH
( y < rect.y1 ) DUP2 STHkr INC INC LDZ2 LTH2 ?&skip
( y > rect.y2 ) DUP2 STHkr #06 ADD LDZ2 GTH2 ?&skip
SWP2
( x < rect.x1 ) DUP2 STHkr LDZ2 LTH2 ?&skip
( x > rect.x2 ) DUP2 STHkr #04 ADD LDZ2 GTH2 ?&skip
POP2 POP2 POPr #01 JMP2r
&skip POP2 POP2 POPr #00 JMP2r
(
@|assets )
@mmu ( programs )
@MMU ( programs )
&clear1 [ 01 1000 0000 =bank3 0000 =bank1 ]
&clear2 [ 01 1000 0000 =bank3 0000 =bank2 ]
&move21 [ 01 1000 0000 =bank2 0000 =bank1 ]
@ -214,7 +213,7 @@
(
@|memory )
@bank1 $1000
|8000 @bank1 $1000
@bank2 $1000