mirror of https://github.com/pret/pokecrystal.git
Merge pull request #662 from Rangi42/master
Resolve miscellaneous issue #658
This commit is contained in:
commit
083d51fd58
1
Makefile
1
Makefile
|
@ -14,6 +14,7 @@ engine/movie/credits.o \
|
|||
engine/overworld/events.o \
|
||||
gfx/pics.o \
|
||||
gfx/sprites.o \
|
||||
gfx/tilesets.o \
|
||||
lib/mobile/main.o
|
||||
|
||||
crystal11_obj := $(crystal_obj:.o=11.o)
|
||||
|
|
|
@ -6,6 +6,8 @@ SECTION "Maps", ROMX
|
|||
INCLUDE "data/maps/maps.asm"
|
||||
INCLUDE "data/maps/attributes.asm"
|
||||
|
||||
|
||||
INCLUDE "data/maps/blocks.asm"
|
||||
|
||||
|
||||
INCLUDE "data/maps/scripts.asm"
|
||||
|
|
|
@ -811,10 +811,10 @@ This can bring Pokémon straight from level 1 to 100 by gaining just a few exper
|
|||
|
||||
([Video](https://www.youtube.com/watch?v=o54VjpAEoO8))
|
||||
|
||||
**Fix:** Edit `_ABoostedStringBuffer2ExpPointsText` and `_StringBuffer2ExpPointsText` in [data/text/common_2.asm](https://github.com/pret/pokecrystal/blob/master/data/text/common_2.asm):
|
||||
**Fix:** Edit `_BoostedExpPointsText` and `_ExpPointsText` in [data/text/common_2.asm](https://github.com/pret/pokecrystal/blob/master/data/text/common_2.asm):
|
||||
|
||||
```diff
|
||||
_ABoostedStringBuffer2ExpPointsText::
|
||||
_BoostedExpPointsText::
|
||||
text_start
|
||||
line "a boosted"
|
||||
cont "@"
|
||||
|
@ -823,7 +823,7 @@ This can bring Pokémon straight from level 1 to 100 by gaining just a few exper
|
|||
text " EXP. Points!"
|
||||
prompt
|
||||
|
||||
_StringBuffer2ExpPointsText::
|
||||
_ExpPointsText::
|
||||
text_start
|
||||
line "@"
|
||||
- text_decimal wStringBuffer2, 2, 4
|
||||
|
@ -1264,7 +1264,7 @@ Finally, edit [engine/battle/read_trainer_party.asm](https://github.com/pret/pok
|
|||
|
||||
([Video](https://www.youtube.com/watch?v=ojq3xqfRF6I))
|
||||
|
||||
**Fix:** Edit `Slots_PayoutAnim` in [engine/games/slot_machine.asm](https://github.com/pret/pokecrystal/blob/master/engine/games/slot_machine.asm):
|
||||
**Fix:** Edit `SlotsAction_PayoutAnim` in [engine/games/slot_machine.asm](https://github.com/pret/pokecrystal/blob/master/engine/games/slot_machine.asm):
|
||||
|
||||
```diff
|
||||
.okay
|
||||
|
|
|
@ -449,7 +449,7 @@ DisplayHOFMon:
|
|||
ld bc, MON_NAME_LENGTH - 1
|
||||
call CopyBytes
|
||||
ld a, "@"
|
||||
ld [wStringBuffer2 + 10], a
|
||||
ld [wStringBuffer2 + MON_NAME_LENGTH - 1], a
|
||||
hlcoord 0, 0
|
||||
ld bc, SCREEN_WIDTH * SCREEN_HEIGHT
|
||||
ld a, " "
|
||||
|
|
|
@ -148,7 +148,7 @@ CheckForLuckyNumberWinners:
|
|||
.done
|
||||
pop hl
|
||||
push hl
|
||||
ld de, -6
|
||||
ld de, MON_SPECIES - MON_ID
|
||||
add hl, de
|
||||
ld a, [hl]
|
||||
pop hl
|
||||
|
|
|
@ -261,7 +261,7 @@ CopyBoxmonToTempMon:
|
|||
call CloseSRAM
|
||||
ret
|
||||
|
||||
Unreferenced_Functione5d9:
|
||||
Unreferenced_LoadBoxMonListing:
|
||||
ld a, [wCurBox]
|
||||
cp b
|
||||
jr z, .same_box
|
||||
|
@ -284,11 +284,11 @@ Unreferenced_Functione5d9:
|
|||
.okay
|
||||
call GetSRAMBank
|
||||
ld a, [hl]
|
||||
ld bc, 1 + MONS_PER_BOX + 1
|
||||
ld bc, sBoxMons - sBox
|
||||
add hl, bc
|
||||
ld b, a
|
||||
ld c, $0
|
||||
ld de, wc608
|
||||
ld de, wBoxPartialData
|
||||
ld a, b
|
||||
and a
|
||||
jr z, .empty_box
|
||||
|
@ -296,7 +296,7 @@ Unreferenced_Functione5d9:
|
|||
push hl
|
||||
push bc
|
||||
ld a, c
|
||||
ld bc, 0
|
||||
ld bc, sBoxMon1Species - sBoxMons
|
||||
add hl, bc
|
||||
ld bc, BOXMON_STRUCT_LENGTH
|
||||
call AddNTimes
|
||||
|
@ -311,7 +311,7 @@ Unreferenced_Functione5d9:
|
|||
push hl
|
||||
push bc
|
||||
ld a, c
|
||||
ld bc, MONS_PER_BOX * (BOXMON_STRUCT_LENGTH + NAME_LENGTH)
|
||||
ld bc, sBoxMonNicknames - sBoxMons
|
||||
add hl, bc
|
||||
call SkipNames
|
||||
call CopyBytes
|
||||
|
|
|
@ -113,7 +113,7 @@ CheckOwnMonAnywhere:
|
|||
jr z, .loopbox
|
||||
|
||||
; Load the box.
|
||||
ld hl, BoxAddressTable1
|
||||
ld hl, BoxAddressTable
|
||||
ld b, 0
|
||||
add hl, bc
|
||||
add hl, bc
|
||||
|
@ -244,7 +244,7 @@ endr
|
|||
scf
|
||||
ret
|
||||
|
||||
BoxAddressTable1:
|
||||
BoxAddressTable:
|
||||
dba sBox1
|
||||
dba sBox2
|
||||
dba sBox3
|
||||
|
|
|
@ -117,7 +117,7 @@ FindThatSpecies:
|
|||
ret
|
||||
|
||||
RetroactivelyIgnoreEggs:
|
||||
ld e, -2
|
||||
ld e, %11111110
|
||||
ld hl, wPartySpecies
|
||||
.loop
|
||||
ld a, [hli]
|
||||
|
|
228
gfx/tilesets.asm
228
gfx/tilesets.asm
|
@ -1,3 +1,5 @@
|
|||
INCLUDE "constants.asm"
|
||||
|
||||
tilecoll: MACRO
|
||||
; used in data/tilesets/*_collision.asm
|
||||
db COLL_\1, COLL_\2, COLL_\3, COLL_\4
|
||||
|
@ -6,332 +8,332 @@ ENDM
|
|||
|
||||
SECTION "Tileset Data 1", ROMX
|
||||
|
||||
TilesetKantoGFX:
|
||||
TilesetKantoGFX::
|
||||
INCBIN "gfx/tilesets/kanto.2bpp.lz"
|
||||
|
||||
TilesetKantoMeta:
|
||||
TilesetKantoMeta::
|
||||
INCBIN "data/tilesets/kanto_metatiles.bin"
|
||||
|
||||
TilesetKantoColl:
|
||||
TilesetKantoColl::
|
||||
INCLUDE "data/tilesets/kanto_collision.asm"
|
||||
|
||||
Tileset0GFX:
|
||||
TilesetJohtoGFX:
|
||||
Tileset0GFX::
|
||||
TilesetJohtoGFX::
|
||||
INCBIN "gfx/tilesets/johto.2bpp.lz"
|
||||
|
||||
Tileset0Meta:
|
||||
TilesetJohtoMeta:
|
||||
Tileset0Meta::
|
||||
TilesetJohtoMeta::
|
||||
INCBIN "data/tilesets/johto_metatiles.bin"
|
||||
|
||||
Tileset0Coll:
|
||||
TilesetJohtoColl:
|
||||
Tileset0Coll::
|
||||
TilesetJohtoColl::
|
||||
INCLUDE "data/tilesets/johto_collision.asm"
|
||||
|
||||
TilesetIcePathGFX:
|
||||
TilesetIcePathGFX::
|
||||
INCBIN "gfx/tilesets/ice_path.2bpp.lz"
|
||||
|
||||
TilesetIcePathMeta:
|
||||
TilesetIcePathMeta::
|
||||
INCBIN "data/tilesets/ice_path_metatiles.bin"
|
||||
|
||||
TilesetIcePathColl:
|
||||
TilesetIcePathColl::
|
||||
INCLUDE "data/tilesets/ice_path_collision.asm"
|
||||
|
||||
TilesetPlayersRoomGFX:
|
||||
TilesetPlayersRoomGFX::
|
||||
INCBIN "gfx/tilesets/players_room.2bpp.lz"
|
||||
|
||||
TilesetPlayersRoomMeta:
|
||||
TilesetPlayersRoomMeta::
|
||||
INCBIN "data/tilesets/players_room_metatiles.bin"
|
||||
|
||||
TilesetPlayersRoomColl:
|
||||
TilesetPlayersRoomColl::
|
||||
INCLUDE "data/tilesets/players_room_collision.asm"
|
||||
|
||||
|
||||
SECTION "Tileset Data 2", ROMX
|
||||
|
||||
TilesetPokecenterGFX:
|
||||
TilesetPokecenterGFX::
|
||||
INCBIN "gfx/tilesets/pokecenter.2bpp.lz"
|
||||
|
||||
TilesetPokecenterMeta:
|
||||
TilesetPokecenterMeta::
|
||||
INCBIN "data/tilesets/pokecenter_metatiles.bin"
|
||||
|
||||
TilesetPokecenterColl:
|
||||
TilesetPokecenterColl::
|
||||
INCLUDE "data/tilesets/pokecenter_collision.asm"
|
||||
|
||||
TilesetPortGFX:
|
||||
TilesetPortGFX::
|
||||
INCBIN "gfx/tilesets/port.2bpp.lz"
|
||||
|
||||
TilesetPortMeta:
|
||||
TilesetPortMeta::
|
||||
INCBIN "data/tilesets/port_metatiles.bin"
|
||||
|
||||
TilesetPortColl:
|
||||
TilesetPortColl::
|
||||
INCLUDE "data/tilesets/port_collision.asm"
|
||||
|
||||
TilesetPlayersHouseGFX:
|
||||
TilesetPlayersHouseGFX::
|
||||
INCBIN "gfx/tilesets/players_house.2bpp.lz"
|
||||
|
||||
TilesetPlayersHouseMeta:
|
||||
TilesetPlayersHouseMeta::
|
||||
INCBIN "data/tilesets/players_house_metatiles.bin"
|
||||
|
||||
TilesetPlayersHouseColl:
|
||||
TilesetPlayersHouseColl::
|
||||
INCLUDE "data/tilesets/players_house_collision.asm"
|
||||
|
||||
TilesetMansionGFX:
|
||||
TilesetMansionGFX::
|
||||
INCBIN "gfx/tilesets/mansion.2bpp.lz"
|
||||
|
||||
TilesetMansionMeta:
|
||||
TilesetMansionMeta::
|
||||
INCBIN "data/tilesets/mansion_metatiles.bin"
|
||||
|
||||
TilesetMansionColl:
|
||||
TilesetMansionColl::
|
||||
INCLUDE "data/tilesets/mansion_collision.asm"
|
||||
|
||||
TilesetCaveGFX:
|
||||
TilesetCaveGFX::
|
||||
INCBIN "gfx/tilesets/cave.2bpp.lz"
|
||||
|
||||
TilesetCaveMeta:
|
||||
TilesetDarkCaveMeta:
|
||||
TilesetCaveMeta::
|
||||
TilesetDarkCaveMeta::
|
||||
INCBIN "data/tilesets/cave_metatiles.bin"
|
||||
|
||||
TilesetCaveColl:
|
||||
TilesetDarkCaveColl:
|
||||
TilesetCaveColl::
|
||||
TilesetDarkCaveColl::
|
||||
INCLUDE "data/tilesets/cave_collision.asm"
|
||||
|
||||
|
||||
SECTION "Tileset Data 3", ROMX
|
||||
|
||||
TilesetTowerGFX:
|
||||
TilesetTowerGFX::
|
||||
INCBIN "gfx/tilesets/tower.2bpp.lz"
|
||||
|
||||
TilesetTowerMeta:
|
||||
TilesetTowerMeta::
|
||||
INCBIN "data/tilesets/tower_metatiles.bin"
|
||||
|
||||
TilesetTowerColl:
|
||||
TilesetTowerColl::
|
||||
INCLUDE "data/tilesets/tower_collision.asm"
|
||||
|
||||
TilesetLabGFX:
|
||||
TilesetLabGFX::
|
||||
INCBIN "gfx/tilesets/lab.2bpp.lz"
|
||||
|
||||
TilesetLabMeta:
|
||||
TilesetLabMeta::
|
||||
INCBIN "data/tilesets/lab_metatiles.bin"
|
||||
|
||||
TilesetLabColl:
|
||||
TilesetLabColl::
|
||||
INCLUDE "data/tilesets/lab_collision.asm"
|
||||
|
||||
TilesetMartGFX:
|
||||
TilesetMartGFX::
|
||||
INCBIN "gfx/tilesets/mart.2bpp.lz"
|
||||
|
||||
TilesetMartMeta:
|
||||
TilesetMartMeta::
|
||||
INCBIN "data/tilesets/mart_metatiles.bin"
|
||||
|
||||
TilesetMartColl:
|
||||
TilesetMartColl::
|
||||
INCLUDE "data/tilesets/mart_collision.asm"
|
||||
|
||||
TilesetGameCornerGFX:
|
||||
TilesetGameCornerGFX::
|
||||
INCBIN "gfx/tilesets/game_corner.2bpp.lz"
|
||||
|
||||
TilesetGameCornerMeta:
|
||||
TilesetGameCornerMeta::
|
||||
INCBIN "data/tilesets/game_corner_metatiles.bin"
|
||||
|
||||
TilesetGameCornerColl:
|
||||
TilesetGameCornerColl::
|
||||
INCLUDE "data/tilesets/game_corner_collision.asm"
|
||||
|
||||
TilesetTrainStationGFX:
|
||||
TilesetTrainStationGFX::
|
||||
INCBIN "gfx/tilesets/train_station.2bpp.lz"
|
||||
|
||||
TilesetTrainStationMeta:
|
||||
TilesetTrainStationMeta::
|
||||
INCBIN "data/tilesets/train_station_metatiles.bin"
|
||||
|
||||
TilesetTrainStationColl:
|
||||
TilesetTrainStationColl::
|
||||
INCLUDE "data/tilesets/train_station_collision.asm"
|
||||
|
||||
TilesetForestMeta:
|
||||
TilesetForestMeta::
|
||||
INCBIN "data/tilesets/forest_metatiles.bin"
|
||||
|
||||
|
||||
SECTION "Tileset Data 4", ROMX
|
||||
|
||||
TilesetEliteFourRoomGFX:
|
||||
TilesetEliteFourRoomGFX::
|
||||
INCBIN "gfx/tilesets/elite_four_room.2bpp.lz"
|
||||
|
||||
TilesetEliteFourRoomMeta:
|
||||
TilesetEliteFourRoomMeta::
|
||||
INCBIN "data/tilesets/elite_four_room_metatiles.bin"
|
||||
|
||||
TilesetEliteFourRoomColl:
|
||||
TilesetEliteFourRoomColl::
|
||||
INCLUDE "data/tilesets/elite_four_room_collision.asm"
|
||||
|
||||
TilesetParkGFX:
|
||||
TilesetParkGFX::
|
||||
INCBIN "gfx/tilesets/park.2bpp.lz"
|
||||
|
||||
TilesetParkMeta:
|
||||
TilesetParkMeta::
|
||||
INCBIN "data/tilesets/park_metatiles.bin"
|
||||
|
||||
TilesetParkColl:
|
||||
TilesetParkColl::
|
||||
INCLUDE "data/tilesets/park_collision.asm"
|
||||
|
||||
TilesetRadioTowerGFX:
|
||||
TilesetRadioTowerGFX::
|
||||
INCBIN "gfx/tilesets/radio_tower.2bpp.lz"
|
||||
|
||||
TilesetRadioTowerMeta:
|
||||
TilesetRadioTowerMeta::
|
||||
INCBIN "data/tilesets/radio_tower_metatiles.bin"
|
||||
|
||||
TilesetRadioTowerColl:
|
||||
TilesetRadioTowerColl::
|
||||
INCLUDE "data/tilesets/radio_tower_collision.asm"
|
||||
|
||||
TilesetUndergroundGFX:
|
||||
TilesetUndergroundGFX::
|
||||
INCBIN "gfx/tilesets/underground.2bpp.lz"
|
||||
|
||||
TilesetUndergroundMeta:
|
||||
TilesetUndergroundMeta::
|
||||
INCBIN "data/tilesets/underground_metatiles.bin"
|
||||
|
||||
TilesetUndergroundColl:
|
||||
TilesetUndergroundColl::
|
||||
INCLUDE "data/tilesets/underground_collision.asm"
|
||||
|
||||
TilesetDarkCaveGFX:
|
||||
TilesetDarkCaveGFX::
|
||||
INCBIN "gfx/tilesets/dark_cave.2bpp.lz"
|
||||
|
||||
UnusedTilesetDarkCaveMeta:
|
||||
UnusedTilesetDarkCaveMeta::
|
||||
INCBIN "data/tilesets/unused_dark_cave_metatiles.bin"
|
||||
|
||||
UnusedTilesetDarkCaveColl:
|
||||
UnusedTilesetDarkCaveColl::
|
||||
INCLUDE "data/tilesets/unused_dark_cave_collision.asm"
|
||||
|
||||
|
||||
SECTION "Tileset Data 5", ROMX
|
||||
|
||||
TilesetPokeComCenterGFX:
|
||||
TilesetPokeComCenterGFX::
|
||||
INCBIN "gfx/tilesets/pokecom_center.2bpp.lz"
|
||||
|
||||
TilesetPokeComCenterMeta:
|
||||
TilesetPokeComCenterMeta::
|
||||
INCBIN "data/tilesets/pokecom_center_metatiles.bin"
|
||||
|
||||
TilesetPokeComCenterColl:
|
||||
TilesetPokeComCenterColl::
|
||||
INCLUDE "data/tilesets/pokecom_center_collision.asm"
|
||||
|
||||
TilesetBattleTowerInsideGFX:
|
||||
TilesetBattleTowerInsideGFX::
|
||||
INCBIN "gfx/tilesets/battle_tower_inside.2bpp.lz"
|
||||
|
||||
TilesetBattleTowerInsideMeta:
|
||||
TilesetBattleTowerInsideMeta::
|
||||
INCBIN "data/tilesets/battle_tower_inside_metatiles.bin"
|
||||
|
||||
TilesetBattleTowerInsideColl:
|
||||
TilesetBattleTowerInsideColl::
|
||||
INCLUDE "data/tilesets/battle_tower_inside_collision.asm"
|
||||
|
||||
TilesetGateGFX:
|
||||
TilesetGateGFX::
|
||||
INCBIN "gfx/tilesets/gate.2bpp.lz"
|
||||
|
||||
TilesetGateMeta:
|
||||
TilesetGateMeta::
|
||||
INCBIN "data/tilesets/gate_metatiles.bin"
|
||||
|
||||
TilesetGateColl:
|
||||
TilesetGateColl::
|
||||
INCLUDE "data/tilesets/gate_collision.asm"
|
||||
|
||||
TilesetJohtoModernGFX:
|
||||
TilesetBattleTowerOutsideGFX:
|
||||
TilesetJohtoModernGFX::
|
||||
TilesetBattleTowerOutsideGFX::
|
||||
INCBIN "gfx/tilesets/johto_modern.2bpp.lz"
|
||||
|
||||
TilesetJohtoModernMeta:
|
||||
TilesetJohtoModernMeta::
|
||||
INCBIN "data/tilesets/johto_modern_metatiles.bin"
|
||||
|
||||
TilesetJohtoModernColl:
|
||||
TilesetJohtoModernColl::
|
||||
INCLUDE "data/tilesets/johto_modern_collision.asm"
|
||||
|
||||
TilesetTraditionalHouseGFX:
|
||||
TilesetTraditionalHouseGFX::
|
||||
INCBIN "gfx/tilesets/traditional_house.2bpp.lz"
|
||||
|
||||
TilesetTraditionalHouseMeta:
|
||||
TilesetTraditionalHouseMeta::
|
||||
INCBIN "data/tilesets/traditional_house_metatiles.bin"
|
||||
|
||||
TilesetTraditionalHouseColl:
|
||||
TilesetTraditionalHouseColl::
|
||||
INCLUDE "data/tilesets/traditional_house_collision.asm"
|
||||
|
||||
|
||||
SECTION "Tileset Data 6", ROMX
|
||||
|
||||
TilesetForestGFX:
|
||||
TilesetForestGFX::
|
||||
INCBIN "gfx/tilesets/forest.2bpp.lz"
|
||||
|
||||
TilesetChampionsRoomGFX:
|
||||
TilesetChampionsRoomGFX::
|
||||
INCBIN "gfx/tilesets/champions_room.2bpp.lz"
|
||||
|
||||
TilesetChampionsRoomMeta:
|
||||
TilesetChampionsRoomMeta::
|
||||
INCBIN "data/tilesets/champions_room_metatiles.bin"
|
||||
|
||||
TilesetChampionsRoomColl:
|
||||
TilesetChampionsRoomColl::
|
||||
INCLUDE "data/tilesets/champions_room_collision.asm"
|
||||
|
||||
TilesetHouseGFX:
|
||||
TilesetHouseGFX::
|
||||
INCBIN "gfx/tilesets/house.2bpp.lz"
|
||||
|
||||
TilesetHouseMeta:
|
||||
TilesetHouseMeta::
|
||||
INCBIN "data/tilesets/house_metatiles.bin"
|
||||
|
||||
TilesetHouseColl:
|
||||
TilesetHouseColl::
|
||||
INCLUDE "data/tilesets/house_collision.asm"
|
||||
|
||||
TilesetLighthouseGFX:
|
||||
TilesetLighthouseGFX::
|
||||
INCBIN "gfx/tilesets/lighthouse.2bpp.lz"
|
||||
|
||||
TilesetLighthouseMeta:
|
||||
TilesetLighthouseMeta::
|
||||
INCBIN "data/tilesets/lighthouse_metatiles.bin"
|
||||
|
||||
TilesetLighthouseColl:
|
||||
TilesetLighthouseColl::
|
||||
INCLUDE "data/tilesets/lighthouse_collision.asm"
|
||||
|
||||
TilesetForestColl:
|
||||
TilesetForestColl::
|
||||
INCLUDE "data/tilesets/forest_collision.asm"
|
||||
|
||||
TilesetFacilityGFX:
|
||||
TilesetFacilityGFX::
|
||||
INCBIN "gfx/tilesets/facility.2bpp.lz"
|
||||
|
||||
TilesetFacilityMeta:
|
||||
TilesetFacilityMeta::
|
||||
INCBIN "data/tilesets/facility_metatiles.bin"
|
||||
|
||||
TilesetFacilityColl:
|
||||
TilesetFacilityColl::
|
||||
INCLUDE "data/tilesets/facility_collision.asm"
|
||||
|
||||
TilesetBattleTowerOutsideMeta:
|
||||
TilesetBattleTowerOutsideMeta::
|
||||
INCBIN "data/tilesets/battle_tower_outside_metatiles.bin"
|
||||
|
||||
TilesetBattleTowerOutsideColl:
|
||||
TilesetBattleTowerOutsideColl::
|
||||
INCLUDE "data/tilesets/battle_tower_outside_collision.asm"
|
||||
|
||||
TilesetBetaWordRoomMeta:
|
||||
TilesetBetaWordRoomMeta::
|
||||
INCBIN "data/tilesets/beta_word_room_metatiles.bin"
|
||||
|
||||
TilesetBetaWordRoomColl:
|
||||
TilesetHoOhWordRoomColl:
|
||||
TilesetKabutoWordRoomColl:
|
||||
TilesetOmanyteWordRoomColl:
|
||||
TilesetAerodactylWordRoomColl:
|
||||
TilesetBetaWordRoomColl::
|
||||
TilesetHoOhWordRoomColl::
|
||||
TilesetKabutoWordRoomColl::
|
||||
TilesetOmanyteWordRoomColl::
|
||||
TilesetAerodactylWordRoomColl::
|
||||
INCLUDE "data/tilesets/beta_word_room_collision.asm"
|
||||
|
||||
|
||||
SECTION "Tileset Data 7", ROMX
|
||||
|
||||
TilesetRuinsOfAlphGFX:
|
||||
TilesetBetaWordRoomGFX:
|
||||
TilesetHoOhWordRoomGFX:
|
||||
TilesetKabutoWordRoomGFX:
|
||||
TilesetOmanyteWordRoomGFX:
|
||||
TilesetAerodactylWordRoomGFX:
|
||||
TilesetRuinsOfAlphGFX::
|
||||
TilesetBetaWordRoomGFX::
|
||||
TilesetHoOhWordRoomGFX::
|
||||
TilesetKabutoWordRoomGFX::
|
||||
TilesetOmanyteWordRoomGFX::
|
||||
TilesetAerodactylWordRoomGFX::
|
||||
INCBIN "gfx/tilesets/ruins_of_alph.2bpp.lz"
|
||||
|
||||
TilesetRuinsOfAlphMeta:
|
||||
TilesetRuinsOfAlphMeta::
|
||||
INCBIN "data/tilesets/ruins_of_alph_metatiles.bin"
|
||||
|
||||
TilesetRuinsOfAlphColl:
|
||||
TilesetRuinsOfAlphColl::
|
||||
INCLUDE "data/tilesets/ruins_of_alph_collision.asm"
|
||||
|
||||
|
||||
SECTION "Tileset Data 8", ROMX
|
||||
|
||||
TilesetHoOhWordRoomMeta:
|
||||
TilesetHoOhWordRoomMeta::
|
||||
INCBIN "data/tilesets/ho_oh_word_room_metatiles.bin"
|
||||
|
||||
TilesetKabutoWordRoomMeta:
|
||||
TilesetKabutoWordRoomMeta::
|
||||
INCBIN "data/tilesets/kabuto_word_room_metatiles.bin"
|
||||
|
||||
TilesetOmanyteWordRoomMeta:
|
||||
TilesetOmanyteWordRoomMeta::
|
||||
INCBIN "data/tilesets/omanyte_word_room_metatiles.bin"
|
||||
|
||||
TilesetAerodactylWordRoomMeta:
|
||||
TilesetAerodactylWordRoomMeta::
|
||||
INCBIN "data/tilesets/aerodactyl_word_room_metatiles.bin"
|
||||
|
|
2
home.asm
2
home.asm
|
@ -5,8 +5,10 @@ SECTION "NULL", ROM0
|
|||
|
||||
NULL::
|
||||
|
||||
|
||||
INCLUDE "home/rst.asm"
|
||||
|
||||
|
||||
INCLUDE "home/interrupts.asm"
|
||||
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ FarCall_hl::
|
|||
push af
|
||||
ldh a, [hBuffer]
|
||||
rst Bankswitch
|
||||
call FarJump_hl
|
||||
call FarCall_JumpToHL
|
||||
|
||||
ReturnFarCall::
|
||||
; We want to retain the contents of f.
|
||||
|
@ -45,5 +45,5 @@ ReturnFarCall::
|
|||
ld c, a
|
||||
ret
|
||||
|
||||
FarJump_hl::
|
||||
FarCall_JumpToHL::
|
||||
jp hl
|
||||
|
|
|
@ -26,12 +26,10 @@ SECTION "rst28", ROM0 ; rst JumpTable
|
|||
add hl, de
|
||||
ld a, [hli]
|
||||
ld h, [hl]
|
||||
; SECTION "rst30", ROM0
|
||||
ld l, a
|
||||
pop de
|
||||
jp hl
|
||||
|
||||
; SECTION "rst30", ROM0
|
||||
; rst30 is midst rst28
|
||||
|
||||
SECTION "rst38", ROM0
|
||||
rst $38
|
||||
|
|
2
hram.asm
2
hram.asm
|
@ -4,7 +4,7 @@ hTransferVirtualOAM:: ds 10 ; ff80
|
|||
|
||||
hROMBankBackup:: db ; ff8a
|
||||
hBuffer:: db ; ff8b
|
||||
hFF8C:: db ; ff8c
|
||||
hSRAMBank:: db ; ff8c
|
||||
|
||||
hRTCDayHi:: db ; ff8d
|
||||
hRTCDayLo:: db ; ff8e
|
||||
|
|
20
main.asm
20
main.asm
|
@ -87,7 +87,6 @@ INCLUDE "engine/events/daycare.asm"
|
|||
INCLUDE "engine/events/print_unown.asm"
|
||||
INCLUDE "engine/events/print_photo.asm"
|
||||
INCLUDE "engine/pokemon/breeding.asm"
|
||||
INCLUDE "gfx/tilesets.asm"
|
||||
|
||||
|
||||
SECTION "Roofs", ROMX
|
||||
|
@ -518,6 +517,8 @@ INCLUDE "engine/events/npc_trade.asm"
|
|||
INCLUDE "engine/events/mom_phone.asm"
|
||||
|
||||
|
||||
SECTION "mobile40", ROMX
|
||||
|
||||
INCLUDE "mobile/mobile_40.asm"
|
||||
|
||||
|
||||
|
@ -532,7 +533,7 @@ INCLUDE "mobile/mobile_41.asm"
|
|||
INCLUDE "engine/gfx/load_overworld_font.asm"
|
||||
|
||||
|
||||
SECTION "Mobile 42", ROMX
|
||||
SECTION "mobile42", ROMX
|
||||
|
||||
INCLUDE "mobile/mobile_42.asm"
|
||||
|
||||
|
@ -549,8 +550,15 @@ INCLUDE "engine/movie/unused_title.asm"
|
|||
INCLUDE "engine/movie/title.asm"
|
||||
|
||||
|
||||
INCLUDE "mobile/mobile_45.asm"
|
||||
SECTION "mobile45", ROMX
|
||||
|
||||
INCLUDE "mobile/mobile_45.asm"
|
||||
INCLUDE "mobile/mobile_45_sprite_engine.asm"
|
||||
INCLUDE "mobile/mobile_45_2.asm"
|
||||
INCLUDE "mobile/mobile_45_stadium.asm"
|
||||
|
||||
|
||||
SECTION "mobile46", ROMX
|
||||
|
||||
INCLUDE "mobile/mobile_46.asm"
|
||||
|
||||
|
@ -566,7 +574,7 @@ INCLUDE "mobile/mobile_5b.asm"
|
|||
INCLUDE "engine/link/link_trade.asm"
|
||||
|
||||
|
||||
SECTION "Mobile 5C", ROMX
|
||||
SECTION "mobile5C", ROMX
|
||||
|
||||
INCLUDE "mobile/mobile_5c.asm"
|
||||
|
||||
|
@ -595,12 +603,12 @@ SECTION "UpdateBattleHUDs", ROMX
|
|||
INCLUDE "engine/battle/update_battle_huds.asm"
|
||||
|
||||
|
||||
SECTION "Mobile 5E", ROMX
|
||||
SECTION "mobile5E", ROMX
|
||||
|
||||
INCLUDE "mobile/mobile_5e.asm"
|
||||
|
||||
|
||||
SECTION "Mobile 5F", ROMX
|
||||
SECTION "mobile5F", ROMX
|
||||
|
||||
INCLUDE "mobile/mobile_5f.asm"
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ MobileCheckOwnMonAnywhere:
|
|||
ld bc, PARTYMON_STRUCT_LENGTH
|
||||
add hl, bc
|
||||
pop bc
|
||||
call .CopyName
|
||||
call .AdvanceOTName
|
||||
dec d
|
||||
jr nz, .asm_4a851
|
||||
ld a, BANK(sBoxCount)
|
||||
|
@ -39,7 +39,7 @@ MobileCheckOwnMonAnywhere:
|
|||
ld bc, BOXMON_STRUCT_LENGTH
|
||||
add hl, bc
|
||||
pop bc
|
||||
call .CopyName
|
||||
call .AdvanceOTName
|
||||
dec d
|
||||
jr nz, .asm_4a873
|
||||
|
||||
|
@ -90,7 +90,7 @@ MobileCheckOwnMonAnywhere:
|
|||
ld bc, BOXMON_STRUCT_LENGTH
|
||||
add hl, bc
|
||||
pop bc
|
||||
call .CopyName
|
||||
call .AdvanceOTName
|
||||
dec d
|
||||
jr nz, .asm_4a8ba
|
||||
pop bc
|
||||
|
@ -146,7 +146,7 @@ MobileCheckOwnMonAnywhere:
|
|||
dba sBox13
|
||||
dba sBox14
|
||||
|
||||
.CopyName:
|
||||
.AdvanceOTName:
|
||||
push hl
|
||||
ld hl, NAME_LENGTH
|
||||
add hl, bc
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
SECTION "mobile_40", ROMX
|
||||
|
||||
Function100000:
|
||||
; d: 1 or 2
|
||||
; e: bank
|
||||
|
|
2325
mobile/mobile_45.asm
2325
mobile/mobile_45.asm
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,823 @@
|
|||
GiveOddEgg:
|
||||
farcall _GiveOddEgg
|
||||
ret
|
||||
|
||||
Function11765d:
|
||||
ldh a, [hInMenu]
|
||||
push af
|
||||
ld a, $1
|
||||
ldh [hInMenu], a
|
||||
call Function11766b
|
||||
pop af
|
||||
ldh [hInMenu], a
|
||||
ret
|
||||
|
||||
Function11766b:
|
||||
call Function117699
|
||||
ldh a, [rSVBK]
|
||||
push af
|
||||
ld a, $5
|
||||
ldh [rSVBK], a
|
||||
call Function1176ee
|
||||
ld a, $5
|
||||
call GetSRAMBank
|
||||
ld hl, $b1f3
|
||||
ld de, wcd49
|
||||
ld bc, $8
|
||||
call CopyBytes
|
||||
ld de, $c708
|
||||
ld bc, $11
|
||||
call CopyBytes
|
||||
call CloseSRAM
|
||||
pop af
|
||||
ldh [rSVBK], a
|
||||
ret
|
||||
|
||||
Function117699:
|
||||
ld a, $5
|
||||
call GetSRAMBank
|
||||
ld hl, wcd49
|
||||
ld de, $b1f3
|
||||
ld bc, $8
|
||||
call CopyBytes
|
||||
ld hl, $c708
|
||||
ld bc, $11
|
||||
call CopyBytes
|
||||
call CloseSRAM
|
||||
xor a
|
||||
ld [wcd49], a
|
||||
ld [wcd4a], a
|
||||
ld [wcd4b], a
|
||||
ld [wcd4c], a
|
||||
ld [wcd4d], a
|
||||
ld [wcd4e], a
|
||||
ld [wcd4f], a
|
||||
ld hl, $c708
|
||||
ld bc, $11
|
||||
call ByteFill
|
||||
call ClearBGPalettes
|
||||
call ClearSprites
|
||||
farcall Function171c87
|
||||
farcall ReloadMapPart
|
||||
farcall ClearSpriteAnims
|
||||
ret
|
||||
|
||||
Function1176ee:
|
||||
.loop
|
||||
call JoyTextDelay
|
||||
ld a, [wcd49]
|
||||
bit 7, a
|
||||
jr nz, .quit
|
||||
call Function117719
|
||||
farcall PlaySpriteAnimations
|
||||
farcall ReloadMapPart
|
||||
jr .loop
|
||||
|
||||
.quit
|
||||
farcall ClearSpriteAnims
|
||||
call ClearBGPalettes
|
||||
call ClearScreen
|
||||
call ClearSprites
|
||||
ret
|
||||
|
||||
Function117719:
|
||||
ld a, [wcd49]
|
||||
ld e, a
|
||||
ld d, 0
|
||||
ld hl, Jumptable_117728
|
||||
add hl, de
|
||||
add hl, de
|
||||
ld a, [hli]
|
||||
ld h, [hl]
|
||||
ld l, a
|
||||
jp hl
|
||||
|
||||
Jumptable_117728:
|
||||
dw Function117738
|
||||
dw Function117764
|
||||
dw Function1178aa
|
||||
dw Function1178e8
|
||||
dw Function117942
|
||||
dw Function117976
|
||||
dw Function117984
|
||||
dw Function1179a7
|
||||
|
||||
Function117738:
|
||||
farcall Function171ccd
|
||||
depixel 6, 3
|
||||
ld a, $1d
|
||||
call _InitSpriteAnimStruct
|
||||
ld hl, $c
|
||||
add hl, bc
|
||||
ld a, $6
|
||||
ld [hl], a
|
||||
depixel 9, 4
|
||||
ld a, $1d
|
||||
call _InitSpriteAnimStruct
|
||||
ld hl, $c
|
||||
add hl, bc
|
||||
ld a, $7
|
||||
ld [hl], a
|
||||
ld a, $3
|
||||
ld [wcd23], a
|
||||
jp MobilePassword_IncrementJumptable
|
||||
|
||||
Function117764:
|
||||
ld a, [wcd4a]
|
||||
cp $10
|
||||
jr nz, .asm_11776f
|
||||
ld a, $1
|
||||
jr .asm_117770
|
||||
|
||||
.asm_11776f
|
||||
xor a
|
||||
.asm_117770
|
||||
ld [wcd24], a
|
||||
ld hl, hJoyPressed
|
||||
ld a, [hl]
|
||||
and SELECT
|
||||
jr nz, Function117764_select
|
||||
ld a, [hl]
|
||||
and START
|
||||
jr nz, Function117764_start
|
||||
ld a, [hl]
|
||||
and A_BUTTON
|
||||
jp nz, Function117764_a_button
|
||||
ld a, [hl]
|
||||
and B_BUTTON
|
||||
jr nz, Function117764_b_button
|
||||
ld hl, hJoyLast
|
||||
ld a, [hl]
|
||||
and D_UP
|
||||
jr nz, Function117764_d_up
|
||||
ld a, [hl]
|
||||
and D_DOWN
|
||||
jr nz, Function117764_d_down
|
||||
ld a, [hl]
|
||||
and D_LEFT
|
||||
jp nz, Function117764_d_left
|
||||
ld a, [hl]
|
||||
and D_RIGHT
|
||||
jp nz, Function117764_d_right
|
||||
ret
|
||||
|
||||
Function117764_select:
|
||||
farcall Function171cf0
|
||||
ret
|
||||
|
||||
Function117764_start:
|
||||
ld a, $2
|
||||
ld [wcd4c], a
|
||||
ld a, $4
|
||||
ld [wcd4d], a
|
||||
ret
|
||||
|
||||
Function1177b7:
|
||||
ld a, $3
|
||||
ld [wcd24], a
|
||||
ld a, [wcd4a]
|
||||
and a
|
||||
jr z, .asm_1177c5
|
||||
jp MobilePassword_IncrementJumptable
|
||||
|
||||
.asm_1177c5
|
||||
ld a, $6
|
||||
ld [wcd49], a
|
||||
ret
|
||||
|
||||
Function1177cb:
|
||||
ld a, $80
|
||||
ld [wcd49], a
|
||||
ld [wScriptVar], a
|
||||
jp MobilePassword_IncrementJumptable
|
||||
|
||||
Function117764_b_button:
|
||||
call PlayClickSFX
|
||||
ld a, [wcd4a]
|
||||
and a
|
||||
ret z
|
||||
dec a
|
||||
ld [wcd4a], a
|
||||
ld e, a
|
||||
ld d, $0
|
||||
ld hl, $c708
|
||||
add hl, de
|
||||
xor a
|
||||
ld [hl], a
|
||||
hlcoord 2, 4
|
||||
add hl, de
|
||||
ld [hl], a
|
||||
ret
|
||||
|
||||
Function117764_d_up:
|
||||
ld a, [wcd4d]
|
||||
and a
|
||||
ret z
|
||||
dec a
|
||||
ld [wcd4d], a
|
||||
cp $3
|
||||
ret nz
|
||||
ld a, [wcd4c]
|
||||
ld e, a
|
||||
sla a
|
||||
sla a
|
||||
add e
|
||||
Function117764_d_vertical_load:
|
||||
ld [wcd4c], a
|
||||
ret
|
||||
|
||||
Function117764_d_down:
|
||||
ld a, [wcd4d]
|
||||
cp $4
|
||||
ret z
|
||||
inc a
|
||||
ld [wcd4d], a
|
||||
cp $4
|
||||
ret nz
|
||||
ld a, [wcd4c]
|
||||
cp $a
|
||||
jr nc, .asm_117825
|
||||
cp $5
|
||||
jr nc, .asm_117829
|
||||
xor a
|
||||
jr Function117764_d_vertical_load
|
||||
|
||||
.asm_117825
|
||||
ld a, $2
|
||||
jr Function117764_d_vertical_load
|
||||
|
||||
.asm_117829
|
||||
ld a, $1
|
||||
jr Function117764_d_vertical_load
|
||||
|
||||
Function117764_d_left:
|
||||
ld a, [wcd4c]
|
||||
and a
|
||||
ret z
|
||||
dec a
|
||||
ld [wcd4c], a
|
||||
ret
|
||||
|
||||
Function117764_d_right:
|
||||
ld e, $d
|
||||
ld a, [wcd4d]
|
||||
cp $4
|
||||
jr nz, .wrap
|
||||
ld e, $2
|
||||
.wrap
|
||||
ld a, [wcd4c]
|
||||
cp e
|
||||
ret z
|
||||
inc a
|
||||
ld [wcd4c], a
|
||||
ret
|
||||
|
||||
Function117764_a_button:
|
||||
call PlayClickSFX
|
||||
ld a, [wcd4d]
|
||||
cp $4
|
||||
jr nz, .not_4
|
||||
ld a, [wcd4c]
|
||||
cp $2
|
||||
jp z, Function1177b7
|
||||
cp $1
|
||||
jp z, Function1177cb
|
||||
jp Function117764_select
|
||||
|
||||
.not_4
|
||||
ld a, [wcd4a]
|
||||
ld e, a
|
||||
cp $10
|
||||
jp z, Function117764_start
|
||||
inc a
|
||||
ld [wcd4a], a
|
||||
ld d, $0
|
||||
ld a, [wcd4b]
|
||||
and a
|
||||
jr nz, .ascii_symbols
|
||||
ld hl, Unknown_117a0f
|
||||
jr .got_ascii
|
||||
|
||||
.ascii_symbols
|
||||
ld hl, Unknown_117a47
|
||||
.got_ascii
|
||||
push de
|
||||
ld a, [wcd4c]
|
||||
ld b, a
|
||||
ld a, [wcd4d]
|
||||
ld c, $e
|
||||
call SimpleMultiply
|
||||
add b
|
||||
ld c, a
|
||||
ld b, $0
|
||||
add hl, bc
|
||||
ld a, [hl]
|
||||
ld hl, $c708
|
||||
add hl, de
|
||||
ld [hl], a
|
||||
pop de
|
||||
hlcoord 2, 4
|
||||
add hl, de
|
||||
sub $20
|
||||
ld [hl], a
|
||||
ld a, e
|
||||
cp $f
|
||||
ret nz
|
||||
jp Function117764_start
|
||||
|
||||
Function1178aa:
|
||||
ld hl, MenuHeader_1179b5
|
||||
call LoadMenuHeader
|
||||
call MenuBox
|
||||
call MenuBoxCoord2Tile
|
||||
ld hl, MenuHeader_1179bd
|
||||
call LoadMenuHeader
|
||||
call MenuBox
|
||||
call MenuBoxCoord2Tile
|
||||
farcall ReloadMapPart
|
||||
hlcoord 16, 8
|
||||
ld de, YessNoString_1179c5
|
||||
call PlaceString
|
||||
hlcoord 15, 10
|
||||
ld a, "▶"
|
||||
ld [hl], a
|
||||
hlcoord 1, 14
|
||||
ld de, AskSavePasswordString
|
||||
call PlaceString
|
||||
ld a, $1
|
||||
ld [wcd4e], a
|
||||
jp MobilePassword_IncrementJumptable
|
||||
|
||||
Function1178e8:
|
||||
ldh a, [hJoyPressed]
|
||||
cp B_BUTTON
|
||||
jr z, .b_button
|
||||
cp A_BUTTON
|
||||
jr z, .a_button
|
||||
cp D_DOWN
|
||||
jr z, .d_down
|
||||
cp D_UP
|
||||
ret nz
|
||||
ld a, [wcd4e]
|
||||
and a
|
||||
ret z
|
||||
dec a
|
||||
ld [wcd4e], a
|
||||
hlcoord 15, 8
|
||||
ld a, "▶"
|
||||
ld [hl], a
|
||||
hlcoord 15, 10
|
||||
ld a, " "
|
||||
ld [hl], a
|
||||
ret
|
||||
|
||||
.d_down
|
||||
ld a, [wcd4e]
|
||||
and a
|
||||
ret nz
|
||||
inc a
|
||||
ld [wcd4e], a
|
||||
hlcoord 15, 8
|
||||
ld a, " "
|
||||
ld [hl], a
|
||||
hlcoord 15, 10
|
||||
ld a, "▶"
|
||||
ld [hl], a
|
||||
ret
|
||||
|
||||
.a_button
|
||||
call PlayClickSFX
|
||||
ld a, [wcd4e]
|
||||
and a
|
||||
jr nz, .b_button
|
||||
call ExitMenu
|
||||
ld a, $1
|
||||
ld [wcd4f], a
|
||||
jp MobilePassword_IncrementJumptable
|
||||
|
||||
.b_button
|
||||
call ExitMenu
|
||||
call ExitMenu
|
||||
jp MobilePassword_IncrementJumptable
|
||||
|
||||
Function117942:
|
||||
call SpeechTextbox
|
||||
hlcoord 1, 14
|
||||
ld de, SavedPasswordString
|
||||
call PlaceString
|
||||
ld a, $1e
|
||||
ld [wcd4e], a
|
||||
ld a, BANK(sMobileLoginPassword)
|
||||
call GetSRAMBank
|
||||
ld a, [wcd4f]
|
||||
ld [sMobileLoginPassword], a
|
||||
ld hl, $c708
|
||||
ld de, sMobileLoginPassword + 1
|
||||
ld bc, MOBILE_LOGIN_PASSWORD_LENGTH
|
||||
call CopyBytes
|
||||
call CloseSRAM
|
||||
ld a, [wcd4f]
|
||||
and a
|
||||
jr z, asm_11797e
|
||||
call MobilePassword_IncrementJumptable
|
||||
|
||||
Function117976:
|
||||
ld hl, wcd4e
|
||||
dec [hl]
|
||||
ret nz
|
||||
call ExitMenu
|
||||
asm_11797e:
|
||||
ld a, $80
|
||||
ld [wcd49], a
|
||||
ret
|
||||
|
||||
Function117984:
|
||||
ld hl, MenuHeader_1179b5
|
||||
call LoadMenuHeader
|
||||
call MenuBox
|
||||
call MenuBoxCoord2Tile
|
||||
farcall ReloadMapPart
|
||||
hlcoord 1, 14
|
||||
ld de, NotAPokemonPasswordString
|
||||
call PlaceString
|
||||
ld a, $1e
|
||||
ld [wcd4e], a
|
||||
call MobilePassword_IncrementJumptable
|
||||
|
||||
Function1179a7:
|
||||
ld hl, wcd4e
|
||||
dec [hl]
|
||||
ret nz
|
||||
call ExitMenu
|
||||
ld a, $1
|
||||
ld [wcd49], a
|
||||
ret
|
||||
|
||||
MenuHeader_1179b5:
|
||||
db MENU_BACKUP_TILES ; flags
|
||||
menu_coords 0, 12, SCREEN_WIDTH - 1, SCREEN_HEIGHT - 1
|
||||
dw NULL
|
||||
db 0 ; default option
|
||||
|
||||
MenuHeader_1179bd:
|
||||
db MENU_BACKUP_TILES ; flags
|
||||
menu_coords 14, 7, SCREEN_WIDTH - 1, TEXTBOX_Y - 1
|
||||
dw NULL
|
||||
db 0 ; default option
|
||||
|
||||
YessNoString_1179c5:
|
||||
db "はい"
|
||||
next "いいえ@"
|
||||
|
||||
AskSavePasswordString:
|
||||
db "こ<NO>パスワード¯ほぞんして"
|
||||
line "おきますか?@"
|
||||
|
||||
NotAPokemonPasswordString:
|
||||
db "パスワード<PKMN>にゅうりょく"
|
||||
line "されていません!@"
|
||||
|
||||
SavedPasswordString:
|
||||
db "ログインパスワード¯ほぞん"
|
||||
line "しました@"
|
||||
|
||||
MobilePassword_IncrementJumptable:
|
||||
ld hl, wcd49
|
||||
inc [hl]
|
||||
ret
|
||||
|
||||
Unknown_117a0f:
|
||||
INCBIN "data/mobile/ascii-alpha.txt"
|
||||
|
||||
Unknown_117a47:
|
||||
INCBIN "data/mobile/ascii-sym.txt"
|
||||
|
||||
; everything from here to the end of the bank is related to the
|
||||
; Mobile Stadium option from the continue/newgame menu.
|
||||
; Needs better function names
|
||||
MobileStudium:
|
||||
ldh a, [hInMenu]
|
||||
push af
|
||||
ld a, $1
|
||||
ldh [hInMenu], a
|
||||
call Function117a8d
|
||||
pop af
|
||||
ldh [hInMenu], a
|
||||
ret
|
||||
|
||||
Function117a8d:
|
||||
call Function117a94
|
||||
call Function117acd
|
||||
ret
|
||||
|
||||
Function117a94:
|
||||
xor a
|
||||
ld [wJumptableIndex], a
|
||||
ld [wcf64], a
|
||||
ld [wcf65], a
|
||||
ld [wcf66], a
|
||||
call ClearBGPalettes
|
||||
call ClearSprites
|
||||
farcall Function172e78
|
||||
farcall HDMATransferAttrMapAndTileMapToWRAMBank3
|
||||
ret
|
||||
|
||||
Function117ab4:
|
||||
call ClearBGPalettes
|
||||
call ClearSprites
|
||||
farcall Function172e78
|
||||
farcall Function172eb9
|
||||
farcall ReloadMapPart
|
||||
ret
|
||||
|
||||
Function117acd:
|
||||
call JoyTextDelay
|
||||
ld a, [wJumptableIndex]
|
||||
bit 7, a
|
||||
jr nz, .asm_117ae2
|
||||
call Function117ae9
|
||||
farcall HDMATransferAttrMapAndTileMapToWRAMBank3
|
||||
jr Function117acd
|
||||
|
||||
.asm_117ae2
|
||||
call ClearBGPalettes
|
||||
call ClearSprites
|
||||
ret
|
||||
|
||||
Function117ae9:
|
||||
ld a, [wJumptableIndex]
|
||||
ld e, a
|
||||
ld d, $0
|
||||
ld hl, .Jumptable
|
||||
add hl, de
|
||||
add hl, de
|
||||
ld a, [hli]
|
||||
ld h, [hl]
|
||||
ld l, a
|
||||
jp hl
|
||||
|
||||
.Jumptable:
|
||||
dw Function117b06
|
||||
dw Function117b14
|
||||
dw Function117b28
|
||||
dw Function117b31
|
||||
dw Function117b4f
|
||||
dw Function117bb6
|
||||
dw Function117c4a
|
||||
|
||||
Function117b06:
|
||||
farcall Function172eb9
|
||||
ld a, $10
|
||||
ld [wcf64], a
|
||||
jp MobileStudium_JumptableIncrement
|
||||
|
||||
Function117b14:
|
||||
ld hl, wcf64
|
||||
dec [hl]
|
||||
ret nz
|
||||
ld hl, MenuHeader_117cbc
|
||||
call LoadMenuHeader
|
||||
call MenuBox
|
||||
call MenuBoxCoord2Tile
|
||||
jp MobileStudium_JumptableIncrement
|
||||
|
||||
Function117b28:
|
||||
ld hl, MobileStadiumEntryText
|
||||
call PrintText
|
||||
jp MobileStudium_JumptableIncrement
|
||||
|
||||
Function117b31:
|
||||
ld hl, MenuHeader_117cc4
|
||||
call LoadMenuHeader
|
||||
call MenuBox
|
||||
call MenuBoxCoord2Tile
|
||||
hlcoord 16, 8
|
||||
ld de, YesNo117ccc
|
||||
call PlaceString
|
||||
hlcoord 15, 8
|
||||
ld a, "▶"
|
||||
ld [hl], a
|
||||
jp MobileStudium_JumptableIncrement
|
||||
|
||||
Function117b4f:
|
||||
ldh a, [hJoyPressed]
|
||||
cp B_BUTTON
|
||||
jr z, .b_button
|
||||
cp A_BUTTON
|
||||
jr z, .a_button
|
||||
cp D_DOWN
|
||||
jr z, .d_down
|
||||
cp D_UP
|
||||
ret nz
|
||||
ld a, [wcf64]
|
||||
and a
|
||||
ret z
|
||||
dec a
|
||||
ld [wcf64], a
|
||||
hlcoord 15, 8
|
||||
ld a, "▶"
|
||||
ld [hl], a
|
||||
hlcoord 15, 10
|
||||
ld a, " "
|
||||
ld [hl], a
|
||||
ret
|
||||
|
||||
.d_down
|
||||
ld a, [wcf64]
|
||||
and a
|
||||
ret nz
|
||||
inc a
|
||||
ld [wcf64], a
|
||||
hlcoord 15, 8
|
||||
ld a, " "
|
||||
ld [hl], a
|
||||
hlcoord 15, 10
|
||||
ld a, "▶"
|
||||
ld [hl], a
|
||||
ret
|
||||
|
||||
.a_button
|
||||
call PlayClickSFX
|
||||
ld a, [wcf64]
|
||||
and a
|
||||
jr nz, .b_button
|
||||
call ExitMenu
|
||||
call ExitMenu
|
||||
farcall ReloadMapPart
|
||||
jp MobileStudium_JumptableIncrement
|
||||
|
||||
.b_button
|
||||
call ExitMenu
|
||||
call ExitMenu
|
||||
farcall ReloadMapPart
|
||||
ld a, $80
|
||||
ld [wJumptableIndex], a
|
||||
ret
|
||||
|
||||
Function117bb6:
|
||||
call Function117c89
|
||||
ld a, $1
|
||||
ldh [hBGMapMode], a
|
||||
farcall Function118284
|
||||
call ClearSprites
|
||||
ld a, [wMobileErrorCodeBuffer]
|
||||
and a
|
||||
jr z, .asm_117be7
|
||||
cp $a
|
||||
jr z, .asm_117be1
|
||||
.asm_117bd0
|
||||
ld a, $2
|
||||
ld [wc303], a
|
||||
farcall DisplayMobileError
|
||||
ld a, $80
|
||||
ld [wJumptableIndex], a
|
||||
ret
|
||||
|
||||
.asm_117be1
|
||||
ld a, $80
|
||||
ld [wJumptableIndex], a
|
||||
ret
|
||||
|
||||
.asm_117be7
|
||||
ldh a, [rSVBK]
|
||||
push af
|
||||
ld a, $3
|
||||
ldh [rSVBK], a
|
||||
ld a, [wcd89]
|
||||
and $1
|
||||
jr nz, .asm_117c16
|
||||
ld a, [w3_d000]
|
||||
cp $fe
|
||||
jr nz, .asm_117c16
|
||||
ld a, [w3_d001]
|
||||
cp $f
|
||||
jr nz, .asm_117c16
|
||||
ld hl, w3_dfec
|
||||
ld de, wcd69
|
||||
ld c, $10
|
||||
.asm_117c0b
|
||||
ld a, [de]
|
||||
inc de
|
||||
cp [hl]
|
||||
jr nz, .asm_117c16
|
||||
inc hl
|
||||
dec c
|
||||
jr nz, .asm_117c0b
|
||||
jr .asm_117c20
|
||||
|
||||
.asm_117c16
|
||||
pop af
|
||||
ldh [rSVBK], a
|
||||
ld a, $d3
|
||||
ld [wMobileErrorCodeBuffer], a
|
||||
jr .asm_117bd0
|
||||
|
||||
.asm_117c20
|
||||
pop af
|
||||
ldh [rSVBK], a
|
||||
farcall Function172eb9
|
||||
ldh a, [rSVBK]
|
||||
push af
|
||||
ld a, $3
|
||||
ldh [rSVBK], a
|
||||
ld a, $7
|
||||
call GetSRAMBank
|
||||
ld hl, w3_d002
|
||||
ld de, $b000
|
||||
ld bc, $1000
|
||||
call CopyBytes
|
||||
call CloseSRAM
|
||||
pop af
|
||||
ldh [rSVBK], a
|
||||
jp MobileStudium_JumptableIncrement
|
||||
|
||||
Function117c4a:
|
||||
ld hl, MenuHeader_117cbc
|
||||
call LoadMenuHeader
|
||||
call MenuBox
|
||||
call MenuBoxCoord2Tile
|
||||
farcall ReloadMapPart
|
||||
ld hl, MobileStadiumSuccessText
|
||||
call PrintText
|
||||
ldh a, [rSVBK]
|
||||
push af
|
||||
ld a, $5
|
||||
ldh [rSVBK], a
|
||||
ld hl, wBGPals1
|
||||
ld de, 1 palettes
|
||||
ld c, 8
|
||||
.loop
|
||||
push hl
|
||||
ld a, LOW(PALRGB_WHITE)
|
||||
ld [hli], a
|
||||
ld a, HIGH(PALRGB_WHITE)
|
||||
ld [hl], a
|
||||
pop hl
|
||||
add hl, de
|
||||
dec c
|
||||
jr nz, .loop
|
||||
call RotateThreePalettesRight
|
||||
pop af
|
||||
ldh [rSVBK], a
|
||||
ld a, $80
|
||||
ld [wJumptableIndex], a
|
||||
ret
|
||||
|
||||
Function117c89:
|
||||
ld a, $7
|
||||
call GetSRAMBank
|
||||
ld l, $0
|
||||
ld h, l
|
||||
ld de, $b000
|
||||
ld bc, $0ffc
|
||||
.asm_117c97
|
||||
push bc
|
||||
ld a, [de]
|
||||
inc de
|
||||
ld c, a
|
||||
ld b, $0
|
||||
add hl, bc
|
||||
pop bc
|
||||
dec bc
|
||||
ld a, b
|
||||
or c
|
||||
jr nz, .asm_117c97
|
||||
ld a, l
|
||||
ld [wcd83], a
|
||||
ld a, h
|
||||
ld [wcd84], a
|
||||
ld hl, $bfea
|
||||
ld de, wcd69
|
||||
ld bc, $10
|
||||
call CopyBytes
|
||||
call CloseSRAM
|
||||
ret
|
||||
|
||||
MenuHeader_117cbc:
|
||||
db MENU_BACKUP_TILES ; flags
|
||||
menu_coords 0, 12, SCREEN_WIDTH - 1, SCREEN_HEIGHT - 1
|
||||
dw NULL
|
||||
db 0 ; default option
|
||||
|
||||
MenuHeader_117cc4:
|
||||
db MENU_BACKUP_TILES ; flags
|
||||
menu_coords 14, 7, SCREEN_WIDTH - 1, TEXTBOX_Y - 1
|
||||
dw NULL
|
||||
db 0 ; default item
|
||||
|
||||
YesNo117ccc:
|
||||
db "はい"
|
||||
next "いいえ@"
|
||||
|
||||
MobileStadiumEntryText:
|
||||
text_far _MobileStadiumEntryText
|
||||
text_end
|
||||
|
||||
MobileStadiumSuccessText:
|
||||
text_far _MobileStadiumSuccessText
|
||||
text_end
|
||||
|
||||
MobileStudium_JumptableIncrement:
|
||||
ld hl, wJumptableIndex
|
||||
inc [hl]
|
||||
ret
|
|
@ -1,5 +1,3 @@
|
|||
SECTION "Mobile 46", ROMX
|
||||
|
||||
Function118000:
|
||||
ld a, $1
|
||||
ld [wcd38], a
|
||||
|
|
|
@ -166,11 +166,11 @@ ROMX $3e
|
|||
ROMX $3f
|
||||
"bank3F"
|
||||
ROMX $40
|
||||
"mobile_40"
|
||||
"mobile40"
|
||||
ROMX $41
|
||||
"bank41"
|
||||
ROMX $42
|
||||
"Mobile 42"
|
||||
"mobile42"
|
||||
"Intro Logo"
|
||||
"Credits"
|
||||
ROMX $43
|
||||
|
@ -178,10 +178,9 @@ ROMX $43
|
|||
ROMX $44
|
||||
"Mobile Adapter SDK"
|
||||
ROMX $45
|
||||
"Mobile 45"
|
||||
"Mobile Stadium"
|
||||
"mobile45"
|
||||
ROMX $46
|
||||
"Mobile 46"
|
||||
"mobile46"
|
||||
ROMX $47
|
||||
"Battle Tower"
|
||||
ROMX $48
|
||||
|
@ -231,7 +230,7 @@ ROMX $5b
|
|||
"bank5B"
|
||||
"Pics 20"
|
||||
ROMX $5c
|
||||
"Mobile 5C"
|
||||
"mobile5C"
|
||||
"Pics 21"
|
||||
ROMX $5d
|
||||
"Crystal Phone Text 2"
|
||||
|
@ -240,10 +239,10 @@ ROMX $5e
|
|||
"UpdateBattleHUDs"
|
||||
"Songs 5"
|
||||
"Crystal Sound Effects"
|
||||
"Mobile 5E"
|
||||
"mobile5E"
|
||||
"Pics 23"
|
||||
ROMX $5f
|
||||
"Mobile 5F"
|
||||
"mobile5F"
|
||||
"Pics 24"
|
||||
ROMX $60
|
||||
"Map Scripts 13"
|
||||
|
|
Loading…
Reference in New Issue