2018-02-18 17:01:15 +00:00
|
|
|
; Not quite a raster-bar, but why not
|
|
|
|
|
|
|
|
;===========
|
|
|
|
; CONSTANTS
|
|
|
|
;===========
|
|
|
|
|
|
|
|
ELEMENTS EQU 64
|
|
|
|
NUM_ROWS EQU 20
|
|
|
|
|
|
|
|
;=====================
|
|
|
|
; Rasterbars
|
|
|
|
;=====================
|
|
|
|
|
|
|
|
;===========================
|
|
|
|
;===========================
|
|
|
|
; Main Loop
|
|
|
|
;===========================
|
|
|
|
;===========================
|
|
|
|
draw_rasters:
|
|
|
|
|
|
|
|
; clear rows
|
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
ldy #(NUM_ROWS-1) ; 2
|
|
|
|
lda #0 ; 2
|
2018-02-18 17:01:15 +00:00
|
|
|
init_rows:
|
2018-02-25 21:01:01 +00:00
|
|
|
sta row_color,Y ; 5
|
|
|
|
dey ; 2
|
|
|
|
bpl init_rows ; 2nt/3
|
2018-02-26 00:02:00 +00:00
|
|
|
;==============
|
|
|
|
; 4+20*10 = 204
|
|
|
|
|
2018-02-18 17:01:15 +00:00
|
|
|
|
|
|
|
;================
|
|
|
|
; set colors
|
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
lda #COLOR_BOTH_AQUA ; aqua ; 2
|
|
|
|
ldy SCREEN_Y ; 3
|
|
|
|
jsr set_row_color ; 6+136
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
lda #COLOR_BOTH_MEDIUMBLUE ; medium blue ; 2
|
|
|
|
jsr set_row_color ; 6+136
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
lda #COLOR_BOTH_LIGHTGREEN ; light green ; 2
|
|
|
|
jsr set_row_color ; 6+136
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
lda #COLOR_BOTH_DARKGREEN ; green ; 2
|
|
|
|
jsr set_row_color ; 6+136
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
lda #COLOR_BOTH_YELLOW ; yellow ; 2
|
|
|
|
jsr set_row_color ; 6+136
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
lda #COLOR_BOTH_ORANGE ; orange ; 2
|
|
|
|
jsr set_row_color ; 6+136
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
lda #COLOR_BOTH_PINK ; pink ; 2
|
|
|
|
jsr set_row_color ; 6+136
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
lda #COLOR_BOTH_RED ; red ; 2
|
|
|
|
jsr set_row_color ; 6+136
|
2018-02-26 00:02:00 +00:00
|
|
|
;==============
|
|
|
|
; 8 * 144
|
|
|
|
; 1152
|
2018-02-18 17:01:15 +00:00
|
|
|
|
|
|
|
;=================
|
|
|
|
; draw rows
|
|
|
|
|
|
|
|
ldy #(NUM_ROWS-1) ; 2
|
|
|
|
draw_rows_loop:
|
|
|
|
lda row_color,Y ; 5
|
|
|
|
beq draw_rows_skip ; skip if black ; 2nt/3
|
|
|
|
|
|
|
|
sta COLOR ; 3
|
|
|
|
|
|
|
|
|
|
|
|
tya ; 2
|
|
|
|
pha ; 3
|
|
|
|
asl ; 2
|
|
|
|
|
|
|
|
ldy #39 ; 2
|
|
|
|
sty V2 ; 3
|
|
|
|
ldy #0 ; 2
|
2018-02-25 21:01:01 +00:00
|
|
|
jsr hlin_double ; hlin y,V2 at A ; 63+(40*16)
|
2018-02-18 17:01:15 +00:00
|
|
|
pla ; 4
|
|
|
|
tay ; 2
|
|
|
|
draw_rows_skip:
|
|
|
|
dey ; 2
|
2018-02-25 21:01:01 +00:00
|
|
|
bpl draw_rows_loop ; 3/2nt
|
2018-02-26 00:02:00 +00:00
|
|
|
;=============
|
|
|
|
; 20 * 741
|
|
|
|
; 14,820
|
2018-02-18 17:01:15 +00:00
|
|
|
;==================
|
|
|
|
; update y pointer
|
|
|
|
;==================
|
2018-02-25 21:01:01 +00:00
|
|
|
ldy SCREEN_Y ; 3
|
|
|
|
iny ; 2
|
|
|
|
cpy #ELEMENTS ; 2
|
|
|
|
bne not_there ; 3/2nt
|
|
|
|
ldy #0 ; 2
|
2018-02-18 17:01:15 +00:00
|
|
|
not_there:
|
2018-02-25 21:01:01 +00:00
|
|
|
sty SCREEN_Y ; 3
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
rts ; 6
|
2018-02-26 00:02:00 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
;===========
|
2018-02-26 00:02:00 +00:00
|
|
|
; 24
|
|
|
|
|
|
|
|
;=============================
|
|
|
|
; total= 16,200
|
|
|
|
|
2018-02-18 17:01:15 +00:00
|
|
|
;===================
|
|
|
|
;===================
|
|
|
|
; set_row_color
|
|
|
|
;===================
|
|
|
|
;===================
|
|
|
|
; color in A
|
|
|
|
; Y=offset
|
|
|
|
; Y incremented
|
|
|
|
; A, X trashed
|
|
|
|
|
|
|
|
set_row_color:
|
2018-02-25 21:01:01 +00:00
|
|
|
sta COLOR ; 3
|
|
|
|
tya ; wrap y offset ; 2
|
|
|
|
and #(ELEMENTS-1) ; 2
|
|
|
|
tax ; 2
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
lda fine_sine,X ; lookup sine value ; 4
|
2018-02-18 17:01:15 +00:00
|
|
|
; pre-shifted right by 4, sign-extended
|
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
clc ; 2
|
|
|
|
adc #18 ; add in 18 to center on screen ; 2
|
2018-02-18 17:01:15 +00:00
|
|
|
|
|
|
|
sin_no_more:
|
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
pha ; save row value ; 3
|
|
|
|
jsr put_color ; put color at row ; 6+44
|
|
|
|
pla ; restore row value ; 4
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
clc ; increment row value ; 2
|
|
|
|
adc #1 ; 2
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
jsr put_color ; put color at row ; 6+44
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
iny ; increment for next time ; 2
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
rts ; 6
|
|
|
|
;=============
|
|
|
|
; 136
|
2018-02-18 17:01:15 +00:00
|
|
|
|
|
|
|
;==================
|
|
|
|
; put_color
|
|
|
|
;==================
|
|
|
|
; A = row to set color of
|
|
|
|
; A trashed
|
|
|
|
put_color:
|
2018-02-25 21:01:01 +00:00
|
|
|
clc ; 2
|
|
|
|
ror ; row/2, with even/odd in carry ; 2
|
|
|
|
tax ; put row/2 in X ; 2
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
bcc even_line ; if even, skip to even ; 2nt/3
|
2018-02-18 17:01:15 +00:00
|
|
|
odd_line:
|
2018-02-25 21:01:01 +00:00
|
|
|
lda #$f0 ; load mask for odd ; 2
|
|
|
|
bcs finish_line ; 2nt/3
|
2018-02-18 17:01:15 +00:00
|
|
|
even_line:
|
2018-02-25 21:01:01 +00:00
|
|
|
lda #$0f ; load mask for even ; 2
|
2018-02-18 17:01:15 +00:00
|
|
|
finish_line:
|
2018-02-25 21:01:01 +00:00
|
|
|
sta MASK ; 3
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
and COLOR ; mask off color ; 3
|
|
|
|
sta COLOR2 ; store for later ; 3
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
lda MASK ; 3
|
|
|
|
eor #$ff ; invert mask ; 2
|
|
|
|
and row_color,X ; load existing color ; 4
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
ora COLOR2 ; combine ; 3
|
|
|
|
sta row_color,X ; store back ; 5
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
rts ; 6
|
2018-02-18 17:01:15 +00:00
|
|
|
|
2018-02-25 21:01:01 +00:00
|
|
|
;===========
|
|
|
|
; 44
|
2018-02-18 17:01:15 +00:00
|
|
|
;======================
|
|
|
|
; some arrays
|
|
|
|
;======================
|
|
|
|
|
|
|
|
row_color:
|
|
|
|
.byte $00,$00,$00,$00,$00, $00,$00,$00,$00,$00
|
|
|
|
.byte $00,$00,$00,$00,$00, $00,$00,$00,$00,$00
|
|
|
|
|
|
|
|
; arithmatically shifted right by 4
|
|
|
|
|
|
|
|
; FIXME: exploit symmetry and get rid of 3/4 of this table
|
|
|
|
; possibly not worth the extra code
|
|
|
|
fine_sine:
|
|
|
|
.byte $00 ; 0.000000
|
|
|
|
.byte $01 ; 0.098017
|
|
|
|
.byte $03 ; 0.195090
|
|
|
|
.byte $04 ; 0.290285
|
|
|
|
.byte $06 ; 0.382683
|
|
|
|
.byte $07 ; 0.471397
|
|
|
|
.byte $08 ; 0.555570
|
|
|
|
.byte $0A ; 0.634393
|
|
|
|
.byte $0B ; 0.707107
|
|
|
|
.byte $0C ; 0.773010
|
|
|
|
.byte $0D ; 0.831470
|
|
|
|
.byte $0E ; 0.881921
|
|
|
|
.byte $0E ; 0.923880
|
|
|
|
.byte $0F ; 0.956940
|
|
|
|
.byte $0F ; 0.980785
|
|
|
|
.byte $0F ; 0.995185
|
|
|
|
.byte $0F ; 1.000000
|
|
|
|
.byte $0F ; 0.995185
|
|
|
|
.byte $0F ; 0.980785
|
|
|
|
.byte $0F ; 0.956940
|
|
|
|
.byte $0E ; 0.923880
|
|
|
|
.byte $0E ; 0.881921
|
|
|
|
.byte $0D ; 0.831470
|
|
|
|
.byte $0C ; 0.773010
|
|
|
|
.byte $0B ; 0.707107
|
|
|
|
.byte $0A ; 0.634393
|
|
|
|
.byte $08 ; 0.555570
|
|
|
|
.byte $07 ; 0.471397
|
|
|
|
.byte $06 ; 0.382683
|
|
|
|
.byte $04 ; 0.290285
|
|
|
|
.byte $03 ; 0.195090
|
|
|
|
.byte $01 ; 0.098017
|
|
|
|
.byte $00 ; 0.000000
|
|
|
|
|
|
|
|
.byte $FE ; -0.098017
|
|
|
|
.byte $FC ; -0.195090
|
|
|
|
.byte $FB ; -0.290285
|
|
|
|
.byte $F9 ; -0.382683
|
|
|
|
.byte $F8 ; -0.471397
|
|
|
|
.byte $F7 ; -0.555570
|
|
|
|
.byte $F5 ; -0.634393
|
|
|
|
.byte $F4 ; -0.707107
|
|
|
|
.byte $F3 ; -0.773010
|
|
|
|
.byte $F2 ; -0.831470
|
|
|
|
.byte $F1 ; -0.881921
|
|
|
|
.byte $F1 ; -0.923880
|
|
|
|
.byte $F0 ; -0.956940
|
|
|
|
.byte $F0 ; -0.980785
|
|
|
|
.byte $F0 ; -0.995185
|
|
|
|
.byte $F0 ; -1.000000
|
|
|
|
.byte $F0 ; -0.995185
|
|
|
|
.byte $F0 ; -0.980785
|
|
|
|
.byte $F0 ; -0.956940
|
|
|
|
.byte $F1 ; -0.923880
|
|
|
|
.byte $F1 ; -0.881921
|
|
|
|
.byte $F2 ; -0.831470
|
|
|
|
.byte $F3 ; -0.773010
|
|
|
|
.byte $F4 ; -0.707107
|
|
|
|
.byte $F5 ; -0.634393
|
|
|
|
.byte $F7 ; -0.555570
|
|
|
|
.byte $F8 ; -0.471397
|
|
|
|
.byte $F9 ; -0.382683
|
|
|
|
.byte $FB ; -0.290285
|
|
|
|
.byte $FC ; -0.195090
|
|
|
|
.byte $FE ; -0.098017
|
|
|
|
|