second: add sierzoom for the second interference part

This commit is contained in:
Vince Weaver 2023-11-01 15:22:31 -04:00
parent 9cbb2f3c25
commit 4a1ac9a061
7 changed files with 330 additions and 4 deletions

View File

@ -23,6 +23,7 @@ Interference (pink)
More interference
217 side wipe
gorilla slide = pattern offset 25 (17) ??
scrolls in right to left with flash and slight bounce
226 TV shutoff
= pattern offset 29 (20)
bit of pause

View File

@ -19,6 +19,7 @@ chess.o: chess.s \
../hgr_copy_fast.s \
interference.s \
circles.s \
sierzoom.s \
../irq_wait.s \
../zp.inc ../hardware.inc ../qload.inc \
graphics/chess_object2.hgr.zx02

View File

@ -309,7 +309,7 @@ main_tunnel_done:
;==================
;==================
;==================
; DO INTERFERENCE HERE
; DO INTERFERENCE #1 HERE
;==================
;==================
;==================
@ -326,12 +326,21 @@ main_tunnel_done:
jsr wait_ticks
;==================
;==================
;==================
; DO INTERFERENCE #2 HERE
;==================
;==================
;==================
; again until pattern 25
lda #25
sta interference_end_smc+1
jsr interference
; lda #25
; sta interference_end_smc+1
; jsr interference
jsr sier_zoom
main_interference_done:
@ -349,6 +358,7 @@ main_interference_done:
.include "interference.s"
.include "circles.s"
.include "sierzoom.s"
.include "../hgr_page_flip.s"
; wait A * 1/50s

View File

@ -0,0 +1,52 @@
;================================
; plot_setup
;================================
plot_setup:
lsr ; shift bottom bit into carry ; 2
tay
bcc do_plot_even ; 2nt/3
do_plot_odd:
lda #$f0 ; 2
bcs do_plot_c_done ; 2nt/3
do_plot_even:
lda #$0f ; 2
do_plot_c_done:
sta mask_smc2+1 ;
eor #$FF ; 2
sta mask_invert_smc1+1 ;
lda gr_offsets_l,Y ; lookup low-res memory address ; 4
sta gbasl_smc1+1
sta gbasl_smc2+1
lda gr_offsets_h,Y ; 4
clc
adc DRAW_PAGE ; add in draw page offset ; 3
sta gbasl_smc1+2
sta gbasl_smc2+2
;================================
; plot1
;================================
plot1:
mask_invert_smc1:
lda #$ff ; load mask ; 2
gbasl_smc1:
and $400,Y ; mask to preserve on-screen color ; 4+
sta COLOR_MASK ; save temporarily ; 3
color_smc:
lda #$FF ; load color ; 2
mask_smc2:
and #$FF ; mask so only hi/lo we want ; 2
ora COLOR_MASK ; combine with on-screen color ; 3
gbasl_smc2:
sta $400,Y ; save back out ; 5

View File

@ -0,0 +1,248 @@
; 122 byte sierpinski-like rotozoomer intro
; for Apple II lo-res 40x48 mode
; based on the code from Hellmood's Memories demo
; by Vince `deater` Weaver <vince@deater.net>
; for Lovebyte 2021
; for a simple sierpinski you more or less just plot
; X AND Y
; Hellmood's you plot something more or less like
; COLOR = ( (Y-(X*T)) & (X+(Y*T) ) & 0xf0
; where T is an incrementing frame value
; to get speed on 6502/Apple II we change the multiplies to
; a series of 16-bit 8.8 fixed point adds
; instead of multiplying X*T and Y*T you know that since you start at 0,0
; they both start at 0, and you can find X*T by just having an XT
; value that starts at 0 and add T to it as you move across the
; screen which is the same result as calculating X*T over and over
; you can do the same thing with Y*T
; t=0;
;
; draw_frame:
;
; y_t=0;
; for(y=0;y<48;y++) {
; y_t+=t;
; x_t=0;
; for(x=0;x<40;x++) {
; color= ((x+y_t) & (y-x_t))&0xf0;
; plot(x,y);
; x_t+=t;
; }
; }
; t++;
; goto draw_frame;
;================================
; Clear screen and setup graphics
;================================
sier_zoom:
; bit LORES ; drop down to lo-res
; lda #0 ; start with multiplier 0
; sta T_L ; since we are executing in zero page we
; sta T_H ; don't need to init these
lda #$D3
sta T_L
lda #$2C
sta T_H
; NOTE: start at D3/2C to make it less obvious?
sier_outer:
ldx #0 ; YY starts at 0
stx YY_TL ; YY_T also starts at 0
stx YY_TH
sier_yloop:
; calc YY_T (8.8 fixed point add)
; clc ; save byte by ignoring carry (slightly
; changes results but not by much)
lda YY_TL
adc T_L
sta YY_TL
lda YY_TH
adc T_H
sta YY_TH
txa ; YY ; plot call needs Y/2
lsr
; php ; save the bit we shifted into carry
;================================
; plot_setup
;================================
; vaguely GBASCALC compatible
; take Y-coord/2 in A, put address in GBASL/H
; ( A, Y trashed)
splot_setup:
; lsr ; shift bottom bit into carry ; 2
tay
bcc do_splot_even ; 2nt/3
do_splot_odd:
lda #$f0 ; 2
bcs do_splot_c_done ; 2nt/3
do_splot_even:
lda #$0f ; 2
do_splot_c_done:
sta smask_smc2+1 ;
eor #$FF ; 2
sta smask_invert_smc1+1 ;
lda gr_offsets_l,Y ; lookup low-res memory address ; 4
sta sgbasl_smc1+1
sta sgbasl_smc2+1
lda gr_offsets_h,Y ; 4
clc
adc DRAW_PAGE ; add in draw page offset ; 3
sta sgbasl_smc1+2
sta sgbasl_smc2+2
;=============================
; plp
; jsr $f806 ; trick to calculate MASK by jumping
; into middle of PLOT routine
; reset XX to 0
ldy #0 ; XX=0
sty XX_TL ; XX_T also 0
sty XX_TH
sier_xloop:
; want (YY-(XX*T)) & (XX+(YY*T)
; SAVED = XX+(Y*T)
; clc ; skip setting carry to save byte
tya ; XX lives in Y
adc YY_TH
sta SAVED ; save XX+YY_T
; calc XX*T
; clc ; skip setting carry to save byte
lda XX_TL ; XX_T=XX_T+T
adc T_L
sta XX_TL
lda XX_TH
adc T_H
sta XX_TH
; calc (YY-X_T)
txa ; YY lives in X
sec
sbc XX_TH
; want (YY-(XX*T)) & (XX+(YY*T)
and SAVED
and #$f0
beq pink
black:
lda #00 ; black
.byte $2C ; bit trick
pink:
lda #$BB ; pink
sta scolor_smc+1
; XX value already in Y
;================================
; plot1
;================================
; roughly compatible with PLOT1
; ; PLOT AT (GBASL),Y
splot1:
smask_invert_smc1:
lda #$ff ; load mask ; 2
sgbasl_smc1:
and $400,Y ; mask to preserve on-screen color ; 4+
sta COLOR_MASK ; save temporarily ; 3
scolor_smc:
lda #$FF ; load color ; 2
smask_smc2:
and #$FF ; mask so only hi/lo we want ; 2
ora COLOR_MASK ; combine with on-screen color ; 3
sgbasl_smc2:
sta $400,Y ; save back out ; 5
;====================================
iny ; XX
cpy #40
bne sier_xloop
inx ; YY
cpx #48
bne sier_yloop
; inc T
; clc
lda T_L
; SPEED is HERE!
blah_smc:
adc #$60
sta T_L
bcc no_carry
inc T_H
no_carry:
; speed up the zoom as time goes on
; inc blah_smc+1
; x is 48
flip_pages:
lda DRAW_PAGE
beq done_page
inx
done_page:
; X=48 ($30) PAGE1=$C054-$30=$C024
ldy $C024,X ; set display page to PAGE1 or PAGE2
eor #$4 ; flip draw page between $400/$800
sta DRAW_PAGE
; jmp sier_outer ; can't guarantee a flag value for a 2-byte
; branch :(
sierzoom_end_smc:
lda #25
jsr wait_for_pattern
bcs done_sierzoom
jmp sier_outer
done_sierzoom:
rts

View File

@ -185,6 +185,7 @@ final_credits:
.byte 15,"K. Savetz",0
.byte 15,"Boo Atari",0
.byte 15,"textfiles",0
.byte 13,"Stealth Susie",0
.byte 17,"wiz21b",0
.byte 17,"Trixter",0
.byte 18,"LGR",0

View File

@ -187,6 +187,19 @@ ANGLE = $FA
; credits
SCROLL_X = $F0
; sierzoom
;XX = $F0
XX_TH = $F1
XX_TL = $F2
;YY = $F3
YY_TH = $F4
YY_TL = $F5
T_L = $F6
T_H = $F7
SAVED = $F8
;==============================================
; $FC-$FF we use for in/out pointers
;==============================================