From 8237e29a164211eb2ec4cd161eb4183cc1947fee Mon Sep 17 00:00:00 2001 From: Cheng Hann Gan Date: Thu, 9 Sep 2021 19:22:48 -0400 Subject: Defined more in-dungeon structs and enums (#53) * Defined DungeonEntity * Rename EntityType enums * Revert EntityType rename * Defined more in-dungeon structs and enums * Added more dungeon global structs/enums * Prefixed dungeonGlobalData with g * Fixed compile errors * Removed some CRLFs * Fixed compile after merge * Revert Makefile * Rename DungeonEntityData.entityType Co-authored-by: Seth Barberee * Renamed symbols per PR comments Co-authored-by: Cheng Hann Gan Co-authored-by: Seth Barberee --- include/constants/dungeon_action.h | 44 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 include/constants/dungeon_action.h (limited to 'include/constants/dungeon_action.h') diff --git a/include/constants/dungeon_action.h b/include/constants/dungeon_action.h new file mode 100644 index 0000000..f5e0290 --- /dev/null +++ b/include/constants/dungeon_action.h @@ -0,0 +1,44 @@ +#ifndef GUARD_CONSTANTS_DUNGEON_ACTION_H +#define GUARD_CONSTANTS_DUNGEON_ACTION_H + +enum DungeonAction +{ + DUNGEON_ACTION_WAIT = 0x1, + DUNGEON_ACTION_WALK = 0x2, + // Switching between Pokémon in the moves menu. + DUNGEON_ACTION_NEXT_POKEMON_MOVES = 0x6, + DUNGEON_ACTION_PREVIOUS_POKEMON_MOVES = 0x7, + DUNGEON_ACTION_PLACE_ITEM = 0x8, + // Some actions are different between the leader and AI-controlled Pokémon. + DUNGEON_ACTION_TAKE_ITEM_LEADER = 0x9, // Picking up an item underfoot. + DUNGEON_ACTION_THROW_ITEM_LEADER = 0xB, + DUNGEON_ACTION_CONSUME_ITEM_LEADER = 0xD, + DUNGEON_ACTION_USE_ITEM_LEADER = 0x12, + DUNGEON_ACTION_TALK_FIELD = 0x13, // Talking to another Pokémon by facing them and interacting. + DUNGEON_ACTION_USE_MOVE_LEADER = 0x14, + DUNGEON_ACTION_USE_MOVE_AI = 0x15, + DUNGEON_ACTION_STRUGGLE = 0x17, // Using the Struggle move. + DUNGEON_ACTION_CHECK_MOVES = 0x19, + DUNGEON_ACTION_CHANGE_TACTICS = 0x1A, + DUNGEON_ACTION_CHECK_POKEMON_SUMMARY = 0x1B, + DUNGEON_ACTION_TALK_MENU = 0x1C, // Talking to another Pokémon via the menu. + DUNGEON_ACTION_SET_MOVE = 0x1E, // Registering a move. + DUNGEON_ACTION_CONSUME_ITEM_AI = 0x23, + DUNGEON_ACTION_THROW_ITEM_AI = 0x24, + DUNGEON_ACTION_THROW_STRAIGHT_THROWN_ITEM_LEADER = 0x27, + DUNGEON_ACTION_USE_LINK_BOX = 0x2C, + DUNGEON_ACTION_GIVE_UP = 0x2E, + DUNGEON_ACTION_CHANGE_IQ_SKILLS = 0x30, + DUNGEON_ACTION_USE_ORB = 0x31, + DUNGEON_ACTION_REGULAR_ATTACK = 0x32, + DUNGEON_ACTION_UNSET_MOVE = 0x33, + DUNGEON_ACTION_GIVE_HELD_ITEM = 0x36, + DUNGEON_ACTION_TAKE_HELD_ITEM = 0x37, + DUNGEON_ACTION_HAVE_SECOND_THOUGHTS = 0x39, // Happens with invalid actions, like attempting to eat a non-consumable item. + DUNGEON_ACTION_SET_ITEM = 0x3C, + DUNGEON_ACTION_UNSET_ITEM = 0x3D, + DUNGEON_ACTION_TAKE_ITEM_AI = 0x3F, + DUNGEON_ACTION_THROW_ARC_THROWN_ITEM_LEADER = 0x41, // Throwing Gravelerocks and Geo Pebbles. +}; + +#endif -- cgit v1.2.3