diff options
Diffstat (limited to 'src/dungeon_ai_attack_1.c')
-rw-r--r-- | src/dungeon_ai_attack_1.c | 175 |
1 files changed, 0 insertions, 175 deletions
diff --git a/src/dungeon_ai_attack_1.c b/src/dungeon_ai_attack_1.c deleted file mode 100644 index 023df14..0000000 --- a/src/dungeon_ai_attack_1.c +++ /dev/null @@ -1,175 +0,0 @@ -#include "global.h" -#include "dungeon_ai_attack_1.h" - -#include "constants/direction.h" -#include "constants/targeting.h" -#include "constants/type.h" -#include "dungeon_ai_targeting_2.h" -#include "dungeon_pokemon_attributes.h" -#include "dungeon_random.h" -#include "moves.h" -#include "position_util.h" -#include "status_checks_1.h" - -extern bool8 gCanAttackInDirection[NUM_DIRECTIONS]; -extern s32 gPotentialAttackTargetWeights[NUM_DIRECTIONS]; -extern u8 gPotentialAttackTargetDirections[NUM_DIRECTIONS]; -extern struct DungeonEntity *gPotentialTargets[NUM_DIRECTIONS]; - -extern s32 WeightMove(struct DungeonEntity*, s32, struct DungeonEntity*, u8); -extern bool8 CanUseOnTargetWithStatusChecker(struct DungeonEntity*, struct DungeonEntity*, struct PokemonMove*); - -s32 WeightMoveIfUsable(s32 numPotentialTargets, s32 targetingFlags, struct DungeonEntity *user, struct DungeonEntity *target, struct PokemonMove *move, bool32 hasStatusChecker) -{ - s32 facingDir; - s32 targetingFlags2 = (s16) targetingFlags; - bool8 hasStatusChecker2 = hasStatusChecker; - struct DungeonEntityData *userData = user->entityData; - if ((user->posWorld.x == target->posWorld.x && user->posWorld.y == target->posWorld.y) || - (targetingFlags2 & 0xF0) == TARGETING_FLAG_TARGET_ROOM || - (targetingFlags2 & 0xF0) == TARGETING_FLAG_TARGET_FLOOR || - (targetingFlags2 & 0xF0) == TARGETING_FLAG_TARGET_SELF) - { - facingDir = userData->action.facingDir; - } - else - { - facingDir = CalculateFacingDir(&user->posWorld, &target->posWorld); - } - if (!gCanAttackInDirection[facingDir] && - CanUseStatusMove(targetingFlags2, user, target, move, hasStatusChecker2)) - { - gCanAttackInDirection[facingDir] = TRUE; - do { gPotentialAttackTargetDirections[numPotentialTargets] = facingDir; } while (0); - gPotentialAttackTargetWeights[numPotentialTargets] = WeightMove(user, targetingFlags2, target, GetMoveTypeForPokemon(user, move)); - gPotentialTargets[numPotentialTargets] = target; - numPotentialTargets++; - } - return numPotentialTargets; -} - -bool8 CanUseStatusMove(s32 targetingFlags, struct DungeonEntity *user, struct DungeonEntity *target, struct PokemonMove *move, bool32 hasStatusChecker) -{ - struct DungeonEntityData *targetData; - s32 targetingFlags2 = (s16) targetingFlags; - bool8 hasStatusChecker2 = hasStatusChecker; - bool8 hasTarget = FALSE; - u32 categoryTargetingFlags = targetingFlags2 & 0xF; - u32 *categoryTargetingFlags2 = &categoryTargetingFlags; // Fixes a regswap. - if (*categoryTargetingFlags2 == TARGETING_FLAG_TARGET_OTHER) - { - if (CanTarget(user, target, FALSE, TRUE) == TARGET_CAPABILITY_CAN_TARGET) - { - hasTarget = TRUE; - } - } - else if (categoryTargetingFlags == TARGETING_FLAG_HEAL_TEAM) - { - goto checkCanTarget; - } - else if (categoryTargetingFlags == TARGETING_FLAG_LONG_RANGE) - { - targetData = target->entityData; - goto checkThirdParty; - } - else if (categoryTargetingFlags == TARGETING_FLAG_ATTACK_ALL) - { - targetData = target->entityData; - if (user == target) - { - goto returnFalse; - } - checkThirdParty: - hasTarget = TRUE; - if (targetData->shopkeeperMode == SHOPKEEPER_FRIENDLY || - targetData->clientType == CLIENT_TYPE_DONT_MOVE || - targetData->clientType == CLIENT_TYPE_CLIENT) - { - returnFalse: - return FALSE; - } - } - else if (categoryTargetingFlags == TARGETING_FLAG_BOOST_TEAM) - { - if (user == target) - { - goto returnFalse; - } - checkCanTarget: - if (CanTarget(user, target, FALSE, TRUE) == TARGET_CAPABILITY_CANNOT_ATTACK) - { - hasTarget = TRUE; - } - } - else if ((u16) (categoryTargetingFlags - 3) <= 1) // categoryTargetingFlags == TARGETING_FLAG_ITEM - { - hasTarget = TRUE; - } - - if (hasTarget) - { - if (hasStatusChecker2) - { - if (!CanUseOnTargetWithStatusChecker(user, target, move)) - { - goto returnFalse; - } - if ((targetingFlags2 & 0xF00) == TARGETING_FLAG_SET_TRAP) - { - goto rollMoveUseChance; - } - else if ((targetingFlags2 & 0xF00) == TARGETING_FLAG_HEAL_HP) - { - if (!HasQuarterHPOrLess(target)) - { - if (*categoryTargetingFlags2); - goto returnFalse; - } - } - else if ((targetingFlags2 & 0xF00) == TARGETING_FLAG_HEAL_STATUS) - { - if (!HasNegativeStatus(target)) - { - if (*categoryTargetingFlags2); // Flips the conditional. - goto returnFalse; - } - } - else if ((targetingFlags2 & 0xF00) == TARGETING_FLAG_DREAM_EATER) - { - if (!IsSleeping(target)) - { - if (*categoryTargetingFlags2); // Flips the conditional. - goto returnFalse; - } - } - else if ((targetingFlags2 & 0xF00) == TARGETING_FLAG_EXPOSE) - { - targetData = target->entityData; - if ((targetData->type1 != TYPE_GHOST && targetData->type2 != TYPE_GHOST) || targetData->exposedStatus) - { - if (*categoryTargetingFlags2); // Flips the conditional. - goto returnFalse; - } - } - else if ((targetingFlags2 & 0xF00) == TARGETING_FLAG_HEAL_ALL) - { - if (!HasNegativeStatus(target) && !HasQuarterHPOrLess(target)) - { - if (*categoryTargetingFlags2); // Flips the conditional. - goto returnFalse; - } - } - } - else if ((targetingFlags2 & 0xF00) == TARGETING_FLAG_SET_TRAP) - { - s32 useChance; - rollMoveUseChance: - useChance = GetMoveAccuracy(move, ACCURACY_TYPE_USE_CHANCE); - if (DungeonRandomCapped(100) >= useChance) - { - goto returnFalse; - } - } - } - return hasTarget; -} |