Add ROOF_ constants

This commit is contained in:
Rangi 2018-02-04 21:39:46 -05:00
parent bc3cc69749
commit f8f3294130
3 changed files with 39 additions and 38 deletions

View File

@ -9,7 +9,7 @@ EnvironmentColorsPointers:
dw .IndoorColors ; GATE dw .IndoorColors ; GATE
dw .DungeonColors ; DUNGEON dw .DungeonColors ; DUNGEON
; Valid indices: $00 - $29 ; Valid indices: $00 - $29 (see gfx/tilesets/bg_tiles.pal)
.OutdoorColors: .OutdoorColors:
db $00, $01, $02, $28, $04, $05, $06, $07 ; morn db $00, $01, $02, $28, $04, $05, $06, $07 ; morn
db $08, $09, $0a, $28, $0c, $0d, $0e, $0f ; day db $08, $09, $0a, $28, $0c, $0d, $0e, $0f ; day

View File

@ -1,36 +1,45 @@
; MapGroupRoofs values; Roofs indexes
const_def
const ROOF_NEW_BARK ; 0
const ROOF_VIOLET ; 1
const ROOF_AZALEA ; 2
const ROOF_OLIVINE ; 3
const ROOF_GOLDENROD ; 4
MapGroupRoofs: ; 1c021i MapGroupRoofs: ; 1c021i
; entries correspond to map groups ; entries correspond to map groups
; values are indexes for Roofs (see below) ; values are indexes for Roofs (see below)
db -1 ; group 0 (unused) db -1 ; 0
db 3 ; group 1 (Olivine) db ROOF_OLIVINE ; 1 (Olivine)
db 2 ; group 2 (Mahogany) db ROOF_AZALEA ; 2 (Mahogany)
db -1 ; group 3 db -1 ; 3
db 1 ; group 4 (Ecruteak) db ROOF_VIOLET ; 4 (Ecruteak)
db 2 ; group 5 (Blackthorn) db ROOF_AZALEA ; 5 (Blackthorn)
db -1 ; group 6 db -1 ; 6
db -1 ; group 7 db -1 ; 7
db 2 ; group 8 (Azalea) db ROOF_AZALEA ; 8 (Azalea)
db 2 ; group 9 (Lake of Rage) db ROOF_AZALEA ; 9 (Lake of Rage)
db 1 ; group 10 (Violet) db ROOF_VIOLET ; 10 (Violet)
db 4 ; group 11 (Goldenrod) db ROOF_GOLDENROD ; 11 (Goldenrod)
db -1 ; group 12 db -1 ; 12
db -1 ; group 13 db -1 ; 13
db -1 ; group 14 db -1 ; 14
db -1 ; group 15 db -1 ; 15
db -1 ; group 16 db -1 ; 16
db -1 ; group 17 db -1 ; 17
db -1 ; group 18 db -1 ; 18
db 0 ; group 19 (Silver Cave) db ROOF_NEW_BARK ; 19 (Silver Cave)
db -1 ; group 20 db -1 ; 20
db -1 ; group 21 db -1 ; 21
db 3 ; group 22 (Cianwood) db ROOF_OLIVINE ; 22 (Cianwood)
db -1 ; group 23 db -1 ; 23
db 0 ; group 24 (New Bark) db ROOF_NEW_BARK ; 24 (New Bark)
db -1 ; group 25 db -1 ; 25
db 0 ; group 26 (Cherrygrove) db ROOF_NEW_BARK ; 26 (Cherrygrove)
; 1c03c ; 1c03c
Roofs: ; 1c03c Roofs: ; 1c03c
; entries correspond to ROOF_* constants
INCBIN "gfx/tilesets/roofs/0.2bpp" INCBIN "gfx/tilesets/roofs/0.2bpp"
INCBIN "gfx/tilesets/roofs/1.2bpp" INCBIN "gfx/tilesets/roofs/1.2bpp"
INCBIN "gfx/tilesets/roofs/2.2bpp" INCBIN "gfx/tilesets/roofs/2.2bpp"

View File

@ -49,13 +49,5 @@
RGB 31,31,16, 31,31,16, 14,09,00, 00,00,00 ; text RGB 31,31,16, 31,31,16, 14,09,00, 00,00,00 ; text
; overworld water ; overworld water
; morn/day RGB 23,23,31, 18,19,31, 13,12,31, 07,07,07 ; morn/day
RGB 23, 23, 31 RGB 15,13,27, 10,09,20, 04,03,18, 00,00,00 ; nite
RGB 18, 19, 31
RGB 13, 12, 31
RGB 07, 07, 07
; nite
RGB 15, 13, 27
RGB 10, 09, 20
RGB 04, 03, 18
RGB 00, 00, 00