mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2025-01-16 08:32:10 +01:00
commit
f5e18718d9
4
Makefile
4
Makefile
@ -165,6 +165,10 @@ ifeq ($(MODERN),0)
|
||||
@$(MAKE) tidy MODERN=1
|
||||
endif
|
||||
|
||||
ifneq ($(MODERN),0)
|
||||
$(C_BUILDDIR)/berry_crush.o: override CFLAGS += -Wno-address-of-packed-member
|
||||
endif
|
||||
|
||||
include graphics_file_rules.mk
|
||||
include map_data_rules.mk
|
||||
include spritesheet_rules.mk
|
||||
|
@ -5,9 +5,6 @@
|
||||
|
||||
.text
|
||||
|
||||
|
||||
|
||||
|
||||
thumb_func_start sub_8021A28
|
||||
sub_8021A28: @ 8021A28
|
||||
push {r4-r7,lr}
|
||||
|
2239
asm/pokenav_unk_2.s
2239
asm/pokenav_unk_2.s
File diff suppressed because it is too large
Load Diff
@ -19,16 +19,23 @@
|
||||
#if defined (__APPLE__) || defined (__CYGWIN__) || defined (_MSC_VER)
|
||||
#define _(x) x
|
||||
#define __(x) x
|
||||
#define INCBIN_U8 {0}
|
||||
#define INCBIN_U16 {0}
|
||||
#define INCBIN_U32 {0}
|
||||
#define INCBIN_S8 {0}
|
||||
#define INCBIN_S16 {0}
|
||||
#define INCBIN_S32 {0}
|
||||
|
||||
// Fool CLion IDE
|
||||
#define INCBIN(x) {0}
|
||||
#define INCBIN_U8 INCBIN
|
||||
#define INCBIN_U16 INCBIN
|
||||
#define INCBIN_U32 INCBIN
|
||||
#define INCBIN_S8 INCBIN
|
||||
#define INCBIN_S16 INCBIN
|
||||
#define INCBIN_S32 INCBIN
|
||||
#endif // IDE support
|
||||
|
||||
#define ARRAY_COUNT(array) (size_t)(sizeof(array) / sizeof((array)[0]))
|
||||
|
||||
// GameFreak used a macro called "NELEMS", as evidenced by
|
||||
// AgbAssert calls.
|
||||
#define NELEMS(arr) (sizeof(arr)/sizeof(*(arr)))
|
||||
|
||||
#define SWAP(a, b, temp) \
|
||||
{ \
|
||||
temp = a; \
|
||||
|
@ -4950,4 +4950,11 @@ extern const u16 gUsePokeblockCondition_Pal[];
|
||||
extern const u32 gUnknown_08DE34B8[];
|
||||
extern const u16 gUnknown_08DE3398[];
|
||||
|
||||
// Pokenav
|
||||
extern const u32 gPokenavMessageBox_Gfx[];
|
||||
extern const u32 gPokenavMessageBox_Tilemap[];
|
||||
extern const u16 gPokenavMessageBox_Pal[];
|
||||
extern const u32 gPokenavOptions_Gfx[];
|
||||
extern const u16 gPokenavOptions_Pal[];
|
||||
|
||||
#endif //GUARD_GRAPHICS_H
|
||||
|
@ -138,6 +138,8 @@ void sub_81C7B40(void);
|
||||
struct Sprite *PauseSpinningPokenavSprite(void);
|
||||
void ResumeSpinningPokenavSprite(void);
|
||||
void sub_81C7E14(u32 arg0);
|
||||
void sub_81C7FC4(u32 arg0, bool32 arg1);
|
||||
void sub_81C7880(void);
|
||||
void sub_81C7990(u32 a0, u16 a1);
|
||||
|
||||
// pokenav_unk_1.c
|
||||
@ -150,8 +152,15 @@ u32 sub_81C941C(void);
|
||||
void sub_81C9430(void);
|
||||
int sub_81C9894(void);
|
||||
const u8 *sub_81CAF78(int index, u8 *arg1);
|
||||
int sub_81C98A4(void);
|
||||
int sub_81C98B4(void);
|
||||
u16 sub_81C98C4(void);
|
||||
|
||||
// pokenav_unk_2.c
|
||||
bool32 sub_81C9924(void);
|
||||
bool32 sub_81C9940(void);
|
||||
void sub_81C9990(s32 ltIdx);
|
||||
bool32 sub_81C99C0(void);
|
||||
void sub_81C99D4(void);
|
||||
void sub_81CAADC(void);
|
||||
|
||||
|
@ -2766,6 +2766,7 @@ extern const u8 gUnknown_085EBE06[];
|
||||
extern const u8 gUnknown_085EBE19[];
|
||||
extern const u8 gUnknown_085EBE2D[];
|
||||
extern const u8 gUnknown_085EBE41[];
|
||||
extern const u8 gText_NoRibbonWinners[];
|
||||
|
||||
// pokenav_unk_4
|
||||
extern const u8 gUnknown_085EC017[];
|
||||
|
@ -24,7 +24,7 @@ const struct WarpEvent* sub_81D6134(u8 warpEventId);
|
||||
u16 LocalIdToHillTrainerId(u8 localId);
|
||||
bool8 GetHillTrainerFlag(u8 eventObjectId);
|
||||
void SetHillTrainerFlag(void);
|
||||
const u8 *sub_81D62AC(void);
|
||||
const u8 *GetTrainerHillTrainerScript(void);
|
||||
void FillHillTrainerParty(void);
|
||||
void FillHillTrainersParties(void);
|
||||
u32 sub_81D63C4(void);
|
||||
|
700
ld_script.txt
700
ld_script.txt
@ -47,292 +47,291 @@ SECTIONS {
|
||||
.text :
|
||||
ALIGN(4)
|
||||
{
|
||||
asm/crt0.o(.text*);
|
||||
src/main.o(.text*);
|
||||
src/alloc.o(.text*);
|
||||
src/dma3_manager.o(.text*);
|
||||
src/gpu_regs.o(.text*);
|
||||
src/bg.o(.text*);
|
||||
src/blit.o(.text*);
|
||||
src/window.o(.text*);
|
||||
src/text.o(.text*);
|
||||
src/sprite.o(.text*);
|
||||
src/string_util.o(.text*);
|
||||
src/link.o(.text*);
|
||||
src/link_rfu.o(.text*);
|
||||
src/union_room.o(.text*);
|
||||
src/mystery_gift.o(.text*);
|
||||
src/union_room_player_avatar.o(.text*);
|
||||
src/union_room_battle.o(.text*);
|
||||
src/mevent2.o(.text*);
|
||||
src/mevent_801BAAC.o(.text*);
|
||||
src/mevent_server.o(.text*);
|
||||
src/mevent_client.o(.text*);
|
||||
src/mevent_server_helpers.o(.text*);
|
||||
src/mevent_news.o(.text*);
|
||||
src/union_room_chat.o(.text*);
|
||||
src/berry_crush.o(.text*);
|
||||
asm/berry_crush.o(.text*);
|
||||
src/berry_powder.o(.text*);
|
||||
src/dodrio_berry_picking.o(.text*);
|
||||
src/pokemon_jump.o(.text*);
|
||||
src/rtc.o(.text*);
|
||||
src/main_menu.o(.text*);
|
||||
src/battle_controllers.o(.text*);
|
||||
src/decompress.o(.text*);
|
||||
src/rom_8034C54.o(.text*);
|
||||
src/battle_bg.o(.text*);
|
||||
src/battle_main.o(.text*);
|
||||
src/battle_util.o(.text*);
|
||||
src/battle_script_commands.o(.text*);
|
||||
src/battle_util2.o(.text*);
|
||||
src/battle_controller_player.o(.text*);
|
||||
src/battle_gfx_sfx_util.o(.text*);
|
||||
src/battle_controller_opponent.o(.text*);
|
||||
src/battle_ai_switch_items.o(.text*);
|
||||
src/battle_controller_link_opponent.o(.text*);
|
||||
src/pokemon.o(.text*);
|
||||
src/trig.o(.text*);
|
||||
src/random.o(.text*);
|
||||
src/util.o(.text*);
|
||||
src/daycare.o(.text*);
|
||||
src/egg_hatch.o(.text*);
|
||||
src/battle_interface.o(.text*);
|
||||
src/smokescreen.o(.text*);
|
||||
src/pokeball.o(.text*);
|
||||
src/load_save.o(.text*);
|
||||
src/trade.o(.text*);
|
||||
src/berry_blender.o(.text*);
|
||||
src/play_time.o(.text*);
|
||||
src/new_game.o(.text*);
|
||||
src/overworld.o(.text*);
|
||||
src/fieldmap.o(.text*);
|
||||
src/metatile_behavior.o(.text*);
|
||||
src/field_camera.o(.text*);
|
||||
src/field_door.o(.text*);
|
||||
src/field_player_avatar.o(.text*);
|
||||
src/event_object_movement.o(.text*);
|
||||
src/field_message_box.o(.text*);
|
||||
src/event_obj_lock.o(.text*);
|
||||
src/text_window.o(.text*);
|
||||
src/script.o(.text*);
|
||||
src/scrcmd.o(.text*);
|
||||
src/field_control_avatar.o(.text*);
|
||||
src/event_data.o(.text*);
|
||||
src/coord_event_weather.o(.text*);
|
||||
src/field_tasks.o(.text*);
|
||||
src/clock.o(.text*);
|
||||
src/reset_rtc_screen.o(.text*);
|
||||
src/start_menu.o(.text*);
|
||||
src/tileset_anims.o(.text*);
|
||||
src/palette.o(.text*);
|
||||
src/sound.o(.text*);
|
||||
src/battle_anim.o(.text*);
|
||||
src/battle_anim_mons.o(.text*);
|
||||
src/task.o(.text*);
|
||||
src/reshow_battle_screen.o(.text*);
|
||||
src/battle_anim_status_effects.o(.text*);
|
||||
src/title_screen.o(.text*);
|
||||
src/field_weather.o(.text*);
|
||||
src/field_weather_effect.o(.text*);
|
||||
src/field_screen_effect.o(.text*);
|
||||
src/battle_setup.o(.text*);
|
||||
src/cable_club.o(.text*);
|
||||
src/trainer_see.o(.text*);
|
||||
src/wild_encounter.o(.text*);
|
||||
src/field_effect.o(.text*);
|
||||
src/scanline_effect.o(.text*);
|
||||
src/option_menu.o(.text*);
|
||||
src/pokedex.o(.text*);
|
||||
src/trainer_card.o(.text*);
|
||||
src/frontier_pass.o(.text*);
|
||||
src/pokemon_storage_system.o(.text*);
|
||||
src/pokemon_icon.o(.text*);
|
||||
src/script_movement.o(.text*);
|
||||
src/fldeff_cut.o(.text*);
|
||||
src/mail_data.o(.text*);
|
||||
src/map_name_popup.o(.text*);
|
||||
src/item_menu_icons.o(.text*);
|
||||
src/battle_anim_mon_movement.o(.text*);
|
||||
src/item.o(.text*);
|
||||
src/contest.o(.text*);
|
||||
src/shop.o(.text*);
|
||||
src/fldeff_escalator.o(.text*);
|
||||
src/berry.o(.text*);
|
||||
src/script_menu.o(.text*);
|
||||
src/naming_screen.o(.text*);
|
||||
src/money.o(.text*);
|
||||
src/contest_effect.o(.text*);
|
||||
src/record_mixing.o(.text*);
|
||||
src/secret_base.o(.text*);
|
||||
src/tv.o(.text*);
|
||||
src/contest_link_80F57C4.o(.text*);
|
||||
src/script_pokemon_util_80F87D8.o(.text*);
|
||||
src/field_poison.o(.text*);
|
||||
src/pokemon_size_record.o(.text*);
|
||||
src/fldeff_misc.o(.text*);
|
||||
src/field_special_scene.o(.text*);
|
||||
src/rotating_gate.o(.text*);
|
||||
src/safari_zone.o(.text*);
|
||||
src/contest_link_80FC4F4.o(.text*);
|
||||
src/item_use.o(.text*);
|
||||
src/battle_anim_effects_1.o(.text*);
|
||||
src/battle_anim_effects_2.o(.text*);
|
||||
src/water.o(.text*);
|
||||
src/fire.o(.text*);
|
||||
src/electric.o(.text*);
|
||||
src/ice.o(.text*);
|
||||
src/fight.o(.text*);
|
||||
src/poison.o(.text*);
|
||||
src/flying.o(.text*);
|
||||
src/psychic.o(.text*);
|
||||
src/bug.o(.text*);
|
||||
src/rock.o(.text*);
|
||||
src/ghost.o(.text*);
|
||||
src/dragon.o(.text*);
|
||||
src/dark.o(.text*);
|
||||
src/ground.o(.text*);
|
||||
src/normal.o(.text*);
|
||||
src/battle_anim_utility_funcs.o(.text*);
|
||||
src/battle_intro.o(.text*);
|
||||
src/bike.o(.text*);
|
||||
src/easy_chat.o(.text*);
|
||||
src/mon_markings.o(.text*);
|
||||
src/mauville_old_man.o(.text*);
|
||||
src/mail.o(.text*);
|
||||
src/menu_helpers.o(.text*);
|
||||
src/dewford_trend.o(.text*);
|
||||
src/heal_location.o(.text*);
|
||||
src/region_map.o(.text*);
|
||||
src/contest_painting_effects.o(.text*);
|
||||
src/decoration.o(.text*);
|
||||
src/slot_machine.o(.text*);
|
||||
src/contest_painting.o(.text*);
|
||||
src/battle_ai_script_commands.o(.text*);
|
||||
src/trader.o(.text*);
|
||||
src/starter_choose.o(.text*);
|
||||
src/wallclock.o(.text*);
|
||||
src/fldeff_rocksmash.o(.text*);
|
||||
src/fldeff_dig.o(.text*);
|
||||
src/pokeblock.o(.text*);
|
||||
src/fldeff_flash.o(.text*);
|
||||
src/post_battle_event_funcs.o(.text*);
|
||||
src/time_events.o(.text*);
|
||||
src/birch_pc.o(.text*);
|
||||
src/hof_pc.o(.text*);
|
||||
src/field_specials.o(.text*);
|
||||
src/battle_records.o(.text*);
|
||||
src/pokedex_area_screen.o(.text*);
|
||||
src/evolution_scene.o(.text*);
|
||||
src/roulette.o(.text*);
|
||||
src/pokedex_cry_screen.o(.text*);
|
||||
src/coins.o(.text*);
|
||||
src/landmark.o(.text*);
|
||||
src/fldeff_strength.o(.text*);
|
||||
src/battle_transition.o(.text*);
|
||||
src/battle_controller_link_partner.o(.text*);
|
||||
src/battle_message.o(.text*);
|
||||
src/cable_car.o(.text*);
|
||||
src/math_util.o(.text*);
|
||||
src/roulette_util.o(.text*);
|
||||
src/rom_81520A8.o(.text*);
|
||||
src/save.o(.text*);
|
||||
src/mystery_event_script.o(.text*);
|
||||
src/field_effect_helpers.o(.text*);
|
||||
src/contest_ai.o(.text*);
|
||||
src/battle_anim_sound_tasks.o(.text*);
|
||||
src/battle_controller_safari.o(.text*);
|
||||
src/fldeff_sweetscent.o(.text*);
|
||||
src/battle_anim_effects_3.o(.text*);
|
||||
src/move_relearner.o(.text*);
|
||||
src/fldeff_softboiled.o(.text*);
|
||||
src/decoration_inventory.o(.text*);
|
||||
src/roamer.o(.text*);
|
||||
src/battle_tower.o(.text*);
|
||||
src/use_pokeblock.o(.text*);
|
||||
src/battle_controller_wally.o(.text*);
|
||||
src/player_pc.o(.text*);
|
||||
src/intro.o(.text*);
|
||||
src/reset_save_heap.o(.text*);
|
||||
src/field_region_map.o(.text*);
|
||||
src/battle_anim_special.o(.text*);
|
||||
src/hall_of_fame.o(.text*);
|
||||
src/credits.o(.text*);
|
||||
src/lottery_corner.o(.text*);
|
||||
src/diploma.o(.text*);
|
||||
src/berry_tag_screen.o(.text*);
|
||||
src/mystery_event_menu.o(.text*);
|
||||
src/save_failed_screen.o(.text*);
|
||||
src/braille_puzzles.o(.text*);
|
||||
src/pokeblock_feed.o(.text*);
|
||||
src/clear_save_data_screen.o(.text*);
|
||||
src/intro_credits_graphics.o(.text*);
|
||||
src/evolution_graphics.o(.text*);
|
||||
src/bard_music.o(.text*);
|
||||
src/fldeff_teleport.o(.text*);
|
||||
src/battle_tv.o(.text*);
|
||||
src/pokemon_animation.o(.text*);
|
||||
src/recorded_battle.o(.text*);
|
||||
src/battle_controller_recorded_opponent.o(.text*);
|
||||
src/battle_controller_recorded_player.o(.text*);
|
||||
src/trainer_pokemon_sprites.o(.text*);
|
||||
src/lilycove_lady.o(.text*);
|
||||
src/battle_dome.o(.text*);
|
||||
src/battle_palace.o(.text*);
|
||||
src/match_call.o(.text*);
|
||||
src/menu.o(.text*);
|
||||
src/battle_factory_screen.o(.text*);
|
||||
src/apprentice.o(.text*);
|
||||
src/frontier_util.o(.text*);
|
||||
src/battle_arena.o(.text*);
|
||||
src/battle_factory.o(.text*);
|
||||
src/battle_pike.o(.text*);
|
||||
src/mossdeep_gym.o(.text*);
|
||||
src/battle_pyramid.o(.text*);
|
||||
src/item_menu.o(.text*);
|
||||
src/list_menu.o(.text*);
|
||||
src/dynamic_placeholder_text_util.o(.text*);
|
||||
src/save_location.o(.text*);
|
||||
src/item_icon.o(.text*);
|
||||
src/party_menu.o(.text*);
|
||||
src/battle_tent.o(.text*);
|
||||
src/unk_text_util_2.o(.text*);
|
||||
src/multiboot.o(.text*);
|
||||
src/unk_81BAD84.o(.text*);
|
||||
src/battle_controller_player_partner.o(.text*);
|
||||
src/mirage_tower.o(.text*);
|
||||
src/berry_fix_program.o(.text*);
|
||||
src/pokemon_summary_screen.o(.text*);
|
||||
src/unk_pokedex_area_screen_helper.o(.text*);
|
||||
src/battle_pyramid_bag.o(.text*);
|
||||
src/pokenav.o(.text*);
|
||||
src/pokenav_main_menu.o(.text*);
|
||||
src/pokenav_match_call_ui.o(.text*);
|
||||
src/pokenav_unk_1.o(.text*);
|
||||
src/pokenav_unk_2.o(.text*);
|
||||
asm/pokenav_unk_2.o(.text*);
|
||||
src/pokenav_unk_3.o(.text*);
|
||||
src/pokenav_unk_4.o(.text*);
|
||||
src/pokenav_unk_5.o(.text*);
|
||||
src/pokenav_unk_6.o(.text*);
|
||||
src/pokenav_unk_7.o(.text*);
|
||||
src/pokenav_unk_8.o(.text*);
|
||||
asm/pokenav_unk_8.o(.text*);
|
||||
src/pokenav_unk_9.o(.text*);
|
||||
asm/pokenav_unk_9.o(.text*);
|
||||
src/pokenav_unk_10.o(.text*);
|
||||
src/pokenav_match_call_data.o(.text*);
|
||||
src/menu_specialized.o(.text*);
|
||||
src/ereader_helpers.o(.text*);
|
||||
src/faraway_island.o(.text*);
|
||||
src/ereader_screen.o(.text*);
|
||||
src/trainer_hill.o(.text*);
|
||||
src/rayquaza_scene.o(.text*);
|
||||
src/walda_phrase.o(.text*);
|
||||
src/contest_link_81D9DE4.o(.text*);
|
||||
src/gym_leader_rematch.o(.text*);
|
||||
src/unk_transition.o(.text*);
|
||||
src/international_string_util.o(.text*);
|
||||
asm/crt0.o(.text);
|
||||
src/main.o(.text);
|
||||
src/alloc.o(.text);
|
||||
src/dma3_manager.o(.text);
|
||||
src/gpu_regs.o(.text);
|
||||
src/bg.o(.text);
|
||||
src/blit.o(.text);
|
||||
src/window.o(.text);
|
||||
src/text.o(.text);
|
||||
src/sprite.o(.text);
|
||||
src/string_util.o(.text);
|
||||
src/link.o(.text);
|
||||
src/link_rfu.o(.text);
|
||||
src/union_room.o(.text);
|
||||
src/mystery_gift.o(.text);
|
||||
src/union_room_player_avatar.o(.text);
|
||||
src/union_room_battle.o(.text);
|
||||
src/mevent2.o(.text);
|
||||
src/mevent_801BAAC.o(.text);
|
||||
src/mevent_server.o(.text);
|
||||
src/mevent_client.o(.text);
|
||||
src/mevent_server_helpers.o(.text);
|
||||
src/mevent_news.o(.text);
|
||||
src/union_room_chat.o(.text);
|
||||
src/berry_crush.o(.text);
|
||||
asm/berry_crush.o(.text);
|
||||
src/berry_powder.o(.text);
|
||||
src/dodrio_berry_picking.o(.text);
|
||||
src/pokemon_jump.o(.text);
|
||||
src/rtc.o(.text);
|
||||
src/main_menu.o(.text);
|
||||
src/battle_controllers.o(.text);
|
||||
src/decompress.o(.text);
|
||||
src/rom_8034C54.o(.text);
|
||||
src/battle_bg.o(.text);
|
||||
src/battle_main.o(.text);
|
||||
src/battle_util.o(.text);
|
||||
src/battle_script_commands.o(.text);
|
||||
src/battle_util2.o(.text);
|
||||
src/battle_controller_player.o(.text);
|
||||
src/battle_gfx_sfx_util.o(.text);
|
||||
src/battle_controller_opponent.o(.text);
|
||||
src/battle_ai_switch_items.o(.text);
|
||||
src/battle_controller_link_opponent.o(.text);
|
||||
src/pokemon.o(.text);
|
||||
src/trig.o(.text);
|
||||
src/random.o(.text);
|
||||
src/util.o(.text);
|
||||
src/daycare.o(.text);
|
||||
src/egg_hatch.o(.text);
|
||||
src/battle_interface.o(.text);
|
||||
src/smokescreen.o(.text);
|
||||
src/pokeball.o(.text);
|
||||
src/load_save.o(.text);
|
||||
src/trade.o(.text);
|
||||
src/berry_blender.o(.text);
|
||||
src/play_time.o(.text);
|
||||
src/new_game.o(.text);
|
||||
src/overworld.o(.text);
|
||||
src/fieldmap.o(.text);
|
||||
src/metatile_behavior.o(.text);
|
||||
src/field_camera.o(.text);
|
||||
src/field_door.o(.text);
|
||||
src/field_player_avatar.o(.text);
|
||||
src/event_object_movement.o(.text);
|
||||
src/field_message_box.o(.text);
|
||||
src/event_obj_lock.o(.text);
|
||||
src/text_window.o(.text);
|
||||
src/script.o(.text);
|
||||
src/scrcmd.o(.text);
|
||||
src/field_control_avatar.o(.text);
|
||||
src/event_data.o(.text);
|
||||
src/coord_event_weather.o(.text);
|
||||
src/field_tasks.o(.text);
|
||||
src/clock.o(.text);
|
||||
src/reset_rtc_screen.o(.text);
|
||||
src/start_menu.o(.text);
|
||||
src/tileset_anims.o(.text);
|
||||
src/palette.o(.text);
|
||||
src/sound.o(.text);
|
||||
src/battle_anim.o(.text);
|
||||
src/battle_anim_mons.o(.text);
|
||||
src/task.o(.text);
|
||||
src/reshow_battle_screen.o(.text);
|
||||
src/battle_anim_status_effects.o(.text);
|
||||
src/title_screen.o(.text);
|
||||
src/field_weather.o(.text);
|
||||
src/field_weather_effect.o(.text);
|
||||
src/field_screen_effect.o(.text);
|
||||
src/battle_setup.o(.text);
|
||||
src/cable_club.o(.text);
|
||||
src/trainer_see.o(.text);
|
||||
src/wild_encounter.o(.text);
|
||||
src/field_effect.o(.text);
|
||||
src/scanline_effect.o(.text);
|
||||
src/option_menu.o(.text);
|
||||
src/pokedex.o(.text);
|
||||
src/trainer_card.o(.text);
|
||||
src/frontier_pass.o(.text);
|
||||
src/pokemon_storage_system.o(.text);
|
||||
src/pokemon_icon.o(.text);
|
||||
src/script_movement.o(.text);
|
||||
src/fldeff_cut.o(.text);
|
||||
src/mail_data.o(.text);
|
||||
src/map_name_popup.o(.text);
|
||||
src/item_menu_icons.o(.text);
|
||||
src/battle_anim_mon_movement.o(.text);
|
||||
src/item.o(.text);
|
||||
src/contest.o(.text);
|
||||
src/shop.o(.text);
|
||||
src/fldeff_escalator.o(.text);
|
||||
src/berry.o(.text);
|
||||
src/script_menu.o(.text);
|
||||
src/naming_screen.o(.text);
|
||||
src/money.o(.text);
|
||||
src/contest_effect.o(.text);
|
||||
src/record_mixing.o(.text);
|
||||
src/secret_base.o(.text);
|
||||
src/tv.o(.text);
|
||||
src/contest_link_80F57C4.o(.text);
|
||||
src/script_pokemon_util_80F87D8.o(.text);
|
||||
src/field_poison.o(.text);
|
||||
src/pokemon_size_record.o(.text);
|
||||
src/fldeff_misc.o(.text);
|
||||
src/field_special_scene.o(.text);
|
||||
src/rotating_gate.o(.text);
|
||||
src/safari_zone.o(.text);
|
||||
src/contest_link_80FC4F4.o(.text);
|
||||
src/item_use.o(.text);
|
||||
src/battle_anim_effects_1.o(.text);
|
||||
src/battle_anim_effects_2.o(.text);
|
||||
src/water.o(.text);
|
||||
src/fire.o(.text);
|
||||
src/electric.o(.text);
|
||||
src/ice.o(.text);
|
||||
src/fight.o(.text);
|
||||
src/poison.o(.text);
|
||||
src/flying.o(.text);
|
||||
src/psychic.o(.text);
|
||||
src/bug.o(.text);
|
||||
src/rock.o(.text);
|
||||
src/ghost.o(.text);
|
||||
src/dragon.o(.text);
|
||||
src/dark.o(.text);
|
||||
src/ground.o(.text);
|
||||
src/normal.o(.text);
|
||||
src/battle_anim_utility_funcs.o(.text);
|
||||
src/battle_intro.o(.text);
|
||||
src/bike.o(.text);
|
||||
src/easy_chat.o(.text);
|
||||
src/mon_markings.o(.text);
|
||||
src/mauville_old_man.o(.text);
|
||||
src/mail.o(.text);
|
||||
src/menu_helpers.o(.text);
|
||||
src/dewford_trend.o(.text);
|
||||
src/heal_location.o(.text);
|
||||
src/region_map.o(.text);
|
||||
src/contest_painting_effects.o(.text);
|
||||
src/decoration.o(.text);
|
||||
src/slot_machine.o(.text);
|
||||
src/contest_painting.o(.text);
|
||||
src/battle_ai_script_commands.o(.text);
|
||||
src/trader.o(.text);
|
||||
src/starter_choose.o(.text);
|
||||
src/wallclock.o(.text);
|
||||
src/fldeff_rocksmash.o(.text);
|
||||
src/fldeff_dig.o(.text);
|
||||
src/pokeblock.o(.text);
|
||||
src/fldeff_flash.o(.text);
|
||||
src/post_battle_event_funcs.o(.text);
|
||||
src/time_events.o(.text);
|
||||
src/birch_pc.o(.text);
|
||||
src/hof_pc.o(.text);
|
||||
src/field_specials.o(.text);
|
||||
src/battle_records.o(.text);
|
||||
src/pokedex_area_screen.o(.text);
|
||||
src/evolution_scene.o(.text);
|
||||
src/roulette.o(.text);
|
||||
src/pokedex_cry_screen.o(.text);
|
||||
src/coins.o(.text);
|
||||
src/landmark.o(.text);
|
||||
src/fldeff_strength.o(.text);
|
||||
src/battle_transition.o(.text);
|
||||
src/battle_controller_link_partner.o(.text);
|
||||
src/battle_message.o(.text);
|
||||
src/cable_car.o(.text);
|
||||
src/math_util.o(.text);
|
||||
src/roulette_util.o(.text);
|
||||
src/rom_81520A8.o(.text);
|
||||
src/save.o(.text);
|
||||
src/mystery_event_script.o(.text);
|
||||
src/field_effect_helpers.o(.text);
|
||||
src/contest_ai.o(.text);
|
||||
src/battle_anim_sound_tasks.o(.text);
|
||||
src/battle_controller_safari.o(.text);
|
||||
src/fldeff_sweetscent.o(.text);
|
||||
src/battle_anim_effects_3.o(.text);
|
||||
src/move_relearner.o(.text);
|
||||
src/fldeff_softboiled.o(.text);
|
||||
src/decoration_inventory.o(.text);
|
||||
src/roamer.o(.text);
|
||||
src/battle_tower.o(.text);
|
||||
src/use_pokeblock.o(.text);
|
||||
src/battle_controller_wally.o(.text);
|
||||
src/player_pc.o(.text);
|
||||
src/intro.o(.text);
|
||||
src/reset_save_heap.o(.text);
|
||||
src/field_region_map.o(.text);
|
||||
src/battle_anim_special.o(.text);
|
||||
src/hall_of_fame.o(.text);
|
||||
src/credits.o(.text);
|
||||
src/lottery_corner.o(.text);
|
||||
src/diploma.o(.text);
|
||||
src/berry_tag_screen.o(.text);
|
||||
src/mystery_event_menu.o(.text);
|
||||
src/save_failed_screen.o(.text);
|
||||
src/braille_puzzles.o(.text);
|
||||
src/pokeblock_feed.o(.text);
|
||||
src/clear_save_data_screen.o(.text);
|
||||
src/intro_credits_graphics.o(.text);
|
||||
src/evolution_graphics.o(.text);
|
||||
src/bard_music.o(.text);
|
||||
src/fldeff_teleport.o(.text);
|
||||
src/battle_tv.o(.text);
|
||||
src/pokemon_animation.o(.text);
|
||||
src/recorded_battle.o(.text);
|
||||
src/battle_controller_recorded_opponent.o(.text);
|
||||
src/battle_controller_recorded_player.o(.text);
|
||||
src/trainer_pokemon_sprites.o(.text);
|
||||
src/lilycove_lady.o(.text);
|
||||
src/battle_dome.o(.text);
|
||||
src/battle_palace.o(.text);
|
||||
src/match_call.o(.text);
|
||||
src/menu.o(.text);
|
||||
src/battle_factory_screen.o(.text);
|
||||
src/apprentice.o(.text);
|
||||
src/frontier_util.o(.text);
|
||||
src/battle_arena.o(.text);
|
||||
src/battle_factory.o(.text);
|
||||
src/battle_pike.o(.text);
|
||||
src/mossdeep_gym.o(.text);
|
||||
src/battle_pyramid.o(.text);
|
||||
src/item_menu.o(.text);
|
||||
src/list_menu.o(.text);
|
||||
src/dynamic_placeholder_text_util.o(.text);
|
||||
src/save_location.o(.text);
|
||||
src/item_icon.o(.text);
|
||||
src/party_menu.o(.text);
|
||||
src/battle_tent.o(.text);
|
||||
src/unk_text_util_2.o(.text);
|
||||
src/multiboot.o(.text);
|
||||
src/unk_81BAD84.o(.text);
|
||||
src/battle_controller_player_partner.o(.text);
|
||||
src/mirage_tower.o(.text);
|
||||
src/berry_fix_program.o(.text);
|
||||
src/pokemon_summary_screen.o(.text);
|
||||
src/unk_pokedex_area_screen_helper.o(.text);
|
||||
src/battle_pyramid_bag.o(.text);
|
||||
src/pokenav.o(.text);
|
||||
src/pokenav_main_menu.o(.text);
|
||||
src/pokenav_match_call_ui.o(.text);
|
||||
src/pokenav_unk_1.o(.text);
|
||||
src/pokenav_unk_2.o(.text);
|
||||
src/pokenav_unk_3.o(.text);
|
||||
src/pokenav_unk_4.o(.text);
|
||||
src/pokenav_unk_5.o(.text);
|
||||
src/pokenav_unk_6.o(.text);
|
||||
src/pokenav_unk_7.o(.text);
|
||||
src/pokenav_unk_8.o(.text);
|
||||
asm/pokenav_unk_8.o(.text);
|
||||
src/pokenav_unk_9.o(.text);
|
||||
asm/pokenav_unk_9.o(.text);
|
||||
src/pokenav_unk_10.o(.text);
|
||||
src/pokenav_match_call_data.o(.text);
|
||||
src/menu_specialized.o(.text);
|
||||
src/ereader_helpers.o(.text);
|
||||
src/faraway_island.o(.text);
|
||||
src/ereader_screen.o(.text);
|
||||
src/trainer_hill.o(.text);
|
||||
src/rayquaza_scene.o(.text);
|
||||
src/walda_phrase.o(.text);
|
||||
src/contest_link_81D9DE4.o(.text);
|
||||
src/gym_leader_rematch.o(.text);
|
||||
src/unk_transition.o(.text);
|
||||
src/international_string_util.o(.text);
|
||||
} =0
|
||||
|
||||
script_data :
|
||||
@ -351,71 +350,70 @@ SECTIONS {
|
||||
lib_text :
|
||||
ALIGN(4)
|
||||
{
|
||||
asm/libgcnmultiboot.o(.text*);
|
||||
asm/m4a_1.o(.text*);
|
||||
src/m4a.o(.text*);
|
||||
src/agb_flash.o(.text*);
|
||||
src/agb_flash_1m.o(.text*);
|
||||
src/agb_flash_mx.o(.text*);
|
||||
src/siirtc.o(.text*);
|
||||
src/librfu_stwi.o(.text*);
|
||||
src/librfu_intr.o(.text*);
|
||||
asm/librfu_intr.o(.text*);
|
||||
src/librfu_rfu.o(.text*);
|
||||
src/librfu.o(.text*);
|
||||
asm/librfu.o(.text*);
|
||||
asm/libagbsyscall.o(.text*);
|
||||
*libgcc.a:_call_via_rX.o(.text*);
|
||||
*libgcc.a:_divdi3.o(.text*);
|
||||
*libgcc.a:_divsi3.o(.text*);
|
||||
*libgcc.a:_dvmd_tls.o(.text*);
|
||||
*libgcc.a:_fixunsdfsi.o(.text*);
|
||||
*libgcc.a:_fixunssfsi.o(.text*);
|
||||
*libgcc.a:_modsi3.o(.text*);
|
||||
*libgcc.a:_muldi3.o(.text*);
|
||||
*libgcc.a:_udivdi3.o(.text*);
|
||||
*libgcc.a:_udivsi3.o(.text*);
|
||||
*libgcc.a:_umodsi3.o(.text*);
|
||||
*libgcc.a:dp-bit.o(.text*);
|
||||
*libgcc.a:fp-bit.o(.text*);
|
||||
*libgcc.a:_lshrdi3.o(.text*);
|
||||
*libgcc.a:_negdi2.o(.text*);
|
||||
*libc.a:memcpy.o(.text*);
|
||||
*libc.a:memset.o(.text*);
|
||||
*libc.a:strcmp.o(.text*);
|
||||
*libc.a:strcpy.o(.text*);
|
||||
*libc.a:vfprintf.o(.text*);
|
||||
*libc.a:vsprintf.o(.text*);
|
||||
*libc.a:fvwrite.o(.text*);
|
||||
*libc.a:locale.o(.text*);
|
||||
*libc.a:findfp.o(.text*);
|
||||
*libc.a:fflush.o(.text*);
|
||||
*libc.a:wsetup.o(.text*);
|
||||
*libc.a:mbtowc_r.o(.text*);
|
||||
*libc.a:s_isinf.o(.text*);
|
||||
*libc.a:s_isnan.o(.text*);
|
||||
*libc.a:memchr.o(.text*);
|
||||
*libc.a:strlen.o(.text*);
|
||||
*libc.a:dtoa.o(.text*);
|
||||
*libc.a:memmove.o(.text*);
|
||||
*libc.a:stdio.o(.text*);
|
||||
*libc.a:mprec.o(.text*);
|
||||
*libc.a:mallocr.o(.text*);
|
||||
*libc.a:fwalk.o(.text*);
|
||||
*libc.a:freer.o(.text*);
|
||||
*libc.a:makebuf.o(.text*);
|
||||
*libc.a:readr.o(.text*);
|
||||
*libc.a:writer.o(.text*);
|
||||
*libc.a:lseekr.o(.text*);
|
||||
*libc.a:closer.o(.text*);
|
||||
*libc.a:callocr.o(.text*);
|
||||
*libc.a:sbrkr.o(.text*);
|
||||
*libc.a:mlock.o(.text*);
|
||||
*libc.a:fstatr.o(.text*);
|
||||
*libc.a:libcfunc.o(.text*);
|
||||
*libc.a:syscalls.o(.text*);
|
||||
*libc.a:errno.o(.text*);
|
||||
src/libisagbprn.o(.text*);
|
||||
asm/libgcnmultiboot.o(.text);
|
||||
asm/m4a_1.o(.text);
|
||||
src/m4a.o(.text);
|
||||
src/agb_flash.o(.text);
|
||||
src/agb_flash_1m.o(.text);
|
||||
src/agb_flash_mx.o(.text);
|
||||
src/siirtc.o(.text);
|
||||
src/librfu_stwi.o(.text);
|
||||
src/librfu_intr.o(.text);
|
||||
asm/librfu_intr.o(.text);
|
||||
src/librfu_rfu.o(.text);
|
||||
asm/librfu.o(.text);
|
||||
asm/libagbsyscall.o(.text);
|
||||
*libgcc.a:_call_via_rX.o(.text);
|
||||
*libgcc.a:_divdi3.o(.text);
|
||||
*libgcc.a:_divsi3.o(.text);
|
||||
*libgcc.a:_dvmd_tls.o(.text);
|
||||
*libgcc.a:_fixunsdfsi.o(.text);
|
||||
*libgcc.a:_fixunssfsi.o(.text);
|
||||
*libgcc.a:_modsi3.o(.text);
|
||||
*libgcc.a:_muldi3.o(.text);
|
||||
*libgcc.a:_udivdi3.o(.text);
|
||||
*libgcc.a:_udivsi3.o(.text);
|
||||
*libgcc.a:_umodsi3.o(.text);
|
||||
*libgcc.a:dp-bit.o(.text);
|
||||
*libgcc.a:fp-bit.o(.text);
|
||||
*libgcc.a:_lshrdi3.o(.text);
|
||||
*libgcc.a:_negdi2.o(.text);
|
||||
*libc.a:memcpy.o(.text);
|
||||
*libc.a:memset.o(.text);
|
||||
*libc.a:strcmp.o(.text);
|
||||
*libc.a:strcpy.o(.text);
|
||||
*libc.a:vfprintf.o(.text);
|
||||
*libc.a:vsprintf.o(.text);
|
||||
*libc.a:fvwrite.o(.text);
|
||||
*libc.a:locale.o(.text);
|
||||
*libc.a:findfp.o(.text);
|
||||
*libc.a:fflush.o(.text);
|
||||
*libc.a:wsetup.o(.text);
|
||||
*libc.a:mbtowc_r.o(.text);
|
||||
*libc.a:s_isinf.o(.text);
|
||||
*libc.a:s_isnan.o(.text);
|
||||
*libc.a:memchr.o(.text);
|
||||
*libc.a:strlen.o(.text);
|
||||
*libc.a:dtoa.o(.text);
|
||||
*libc.a:memmove.o(.text);
|
||||
*libc.a:stdio.o(.text);
|
||||
*libc.a:mprec.o(.text);
|
||||
*libc.a:mallocr.o(.text);
|
||||
*libc.a:fwalk.o(.text);
|
||||
*libc.a:freer.o(.text);
|
||||
*libc.a:makebuf.o(.text);
|
||||
*libc.a:readr.o(.text);
|
||||
*libc.a:writer.o(.text);
|
||||
*libc.a:lseekr.o(.text);
|
||||
*libc.a:closer.o(.text);
|
||||
*libc.a:callocr.o(.text);
|
||||
*libc.a:sbrkr.o(.text);
|
||||
*libc.a:mlock.o(.text);
|
||||
*libc.a:fstatr.o(.text);
|
||||
*libc.a:libcfunc.o(.text);
|
||||
*libc.a:syscalls.o(.text);
|
||||
*libc.a:errno.o(.text);
|
||||
src/libisagbprn.o(.text);
|
||||
} =0
|
||||
|
||||
.rodata :
|
||||
|
@ -304,7 +304,7 @@ static const u8 *GetInteractedEventObjectScript(struct MapPosition *position, u8
|
||||
gSpecialVar_Facing = direction;
|
||||
|
||||
if (InTrainerHill() == TRUE)
|
||||
script = sub_81D62AC();
|
||||
script = GetTrainerHillTrainerScript();
|
||||
else
|
||||
script = GetEventObjectScriptPointerByEventObjectId(eventObjectId);
|
||||
|
||||
|
@ -37,21 +37,22 @@ struct UnknownPokenavCallbackStruct
|
||||
void (*unk18)(void);
|
||||
};
|
||||
|
||||
// TODO: Move these to pokenav.h
|
||||
extern bool32 sub_81C9924(void);
|
||||
extern u32 sub_81C99C0(void);
|
||||
extern void sub_81C9990(int);
|
||||
extern void sub_81C9990(s32);
|
||||
extern bool32 sub_81C9940(void);
|
||||
extern u32 sub_81CCFD8(void);
|
||||
extern u32 sub_81CD070(void);
|
||||
extern bool32 sub_81CDDD4(void);
|
||||
extern void sub_81CDE2C(int);
|
||||
extern void sub_81CDE2C(s32);
|
||||
extern u32 sub_81CDE64(void);
|
||||
extern void sub_81CD1C0(void);
|
||||
extern void sub_81CECA0(void);
|
||||
extern u32 sub_81CEF3C(void);
|
||||
extern u32 sub_81CEFDC(void);
|
||||
extern bool32 sub_81CF330(void);
|
||||
extern void sub_81CF3A0(int);
|
||||
extern void sub_81CF3A0(s32);
|
||||
extern u32 sub_81CF3D0(void);
|
||||
extern void sub_81CEFF0(void);
|
||||
extern void sub_81CF3F8(void);
|
||||
|
@ -459,7 +459,7 @@ int sub_81C98B4(void)
|
||||
return state->descriptionId;
|
||||
}
|
||||
|
||||
int sub_81C98C4(void)
|
||||
u16 sub_81C98C4(void)
|
||||
{
|
||||
struct Pokenav1Struct *state = GetSubstructPtr(1);
|
||||
return state->helpBarIndex;
|
||||
|
1138
src/pokenav_unk_2.c
1138
src/pokenav_unk_2.c
File diff suppressed because it is too large
Load Diff
@ -915,7 +915,7 @@ void SetHillTrainerFlag(void)
|
||||
}
|
||||
}
|
||||
|
||||
const u8 *sub_81D62AC(void)
|
||||
const u8 *GetTrainerHillTrainerScript(void)
|
||||
{
|
||||
return EventScript_2C83F0;
|
||||
}
|
||||
|
@ -235,7 +235,7 @@ static u8 CheckTrainer(u8 eventObjectId)
|
||||
u8 approachDistance;
|
||||
|
||||
if (InTrainerHill() == TRUE)
|
||||
scriptPtr = sub_81D62AC();
|
||||
scriptPtr = GetTrainerHillTrainerScript();
|
||||
else
|
||||
scriptPtr = GetEventObjectScriptPointerByEventObjectId(eventObjectId);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user