mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-01-12 00:30:31 +00:00
tfv: draw bottom shoreline
This commit is contained in:
parent
57764239cc
commit
526da06078
6
tfv/TODO
6
tfv/TODO
@ -1,7 +1,9 @@
|
|||||||
short term:
|
short term:
|
||||||
finish drawing bottom ocean boundary
|
|
||||||
draw scatter/trees
|
draw scatter/trees
|
||||||
put screenshot of being on giant bird
|
put screenshot of being on giant bird
|
||||||
map
|
|
||||||
|
|
||||||
|
longer term:
|
||||||
|
map -- adjust x/y to better match real position
|
||||||
|
name entry screen
|
||||||
|
inventory screen
|
||||||
|
|
||||||
|
@ -631,6 +631,66 @@ draw_south_shore:
|
|||||||
cmp #12
|
cmp #12
|
||||||
bmi draw_mountains
|
bmi draw_mountains
|
||||||
|
|
||||||
|
ldx #COLOR_BOTH_DARKBLUE
|
||||||
|
stx COLOR
|
||||||
|
|
||||||
|
lda #40
|
||||||
|
sta V2
|
||||||
|
ldy #0
|
||||||
|
lda #38
|
||||||
|
|
||||||
|
jsr hlin_double ; hlin 0,39 at 38
|
||||||
|
|
||||||
|
ldx #COLOR_BOTH_LIGHTBLUE
|
||||||
|
stx COLOR
|
||||||
|
|
||||||
|
lda #40
|
||||||
|
sta V2
|
||||||
|
|
||||||
|
lda #15
|
||||||
|
cmp MAP_X
|
||||||
|
bne lblue_15
|
||||||
|
lda #35
|
||||||
|
sta V2
|
||||||
|
lblue_15:
|
||||||
|
|
||||||
|
ldy #0
|
||||||
|
lda #12
|
||||||
|
cmp MAP_X
|
||||||
|
bne lblue_12
|
||||||
|
ldy #6
|
||||||
|
lblue_12:
|
||||||
|
|
||||||
|
|
||||||
|
lda #36
|
||||||
|
|
||||||
|
jsr hlin_double ; hlin 0,39 at 36
|
||||||
|
|
||||||
|
ldx #COLOR_BOTH_YELLOW
|
||||||
|
stx COLOR
|
||||||
|
|
||||||
|
lda #40
|
||||||
|
sta V2
|
||||||
|
|
||||||
|
lda #15
|
||||||
|
cmp MAP_X
|
||||||
|
bne yellow_15
|
||||||
|
lda #32
|
||||||
|
sta V2
|
||||||
|
yellow_15:
|
||||||
|
|
||||||
|
ldy #0
|
||||||
|
lda #12
|
||||||
|
cmp MAP_X
|
||||||
|
bne yellow_12
|
||||||
|
ldy #8
|
||||||
|
yellow_12:
|
||||||
|
|
||||||
|
lda #34
|
||||||
|
|
||||||
|
jsr hlin_double ; hlin 0,39 at 34
|
||||||
|
|
||||||
|
|
||||||
;===============================
|
;===============================
|
||||||
; Draw Mountains
|
; Draw Mountains
|
||||||
;===============================
|
;===============================
|
||||||
|
Loading…
x
Reference in New Issue
Block a user