2017-02-02 05:15:38 +01:00
# include "global.h"
2017-09-05 09:41:48 +02:00
# include "battle_ai.h"
2017-02-04 03:34:56 +01:00
# include "pokemon.h"
# include "battle.h"
# include "species.h"
# include "abilities.h"
2017-09-04 21:43:13 +02:00
# include "rng.h"
2017-09-05 09:41:48 +02:00
# include "item.h"
# include "battle_move_effects.h"
2017-02-02 05:15:38 +01:00
# define AIScriptRead32(ptr) ((ptr)[0] | (ptr)[1] << 8 | (ptr)[2] << 16 | (ptr)[3] << 24)
# define AIScriptRead16(ptr) ((ptr)[0] | (ptr)[1] << 8)
# define AIScriptRead8(ptr) ((ptr)[0])
# define AIScriptReadPtr(ptr) (u8*) AIScriptRead32(ptr)
2017-09-05 09:41:48 +02:00
# define AI_ACTION_DONE 0x0001
# define AI_ACTION_FLEE 0x0002
# define AI_ACTION_WATCH 0x0004
# define AI_ACTION_DO_NOT_ATTACK 0x0008
2017-02-04 03:34:56 +01:00
# define AI_ACTION_UNK5 0x0010
# define AI_ACTION_UNK6 0x0020
# define AI_ACTION_UNK7 0x0040
# define AI_ACTION_UNK8 0x0080
2017-09-05 09:41:48 +02:00
# define AI_THINKING_STRUCT ((struct AI_ThinkingStruct *)(gBattleResources->ai))
# define BATTLE_HISTORY ((struct BattleHistory *)(gBattleResources->battleHistory))
2017-02-04 03:34:56 +01:00
enum
{
2017-09-05 13:01:24 +02:00
AI_TARGET ,
AI_USER ,
AI_TARGET_PARTNER ,
AI_USER_PARTNER
2017-02-04 03:34:56 +01:00
} ;
// AI states
enum
{
AIState_SettingUp ,
AIState_Processing ,
AIState_FinishedProcessing ,
AIState_DoNotProcess
} ;
/*
gAIScriptPtr is a pointer to the next battle AI cmd command to read .
when a command finishes processing , gAIScriptPtr is incremented by
the number of bytes that the current command had reserved for arguments
in order to read the next command correctly . refer to battle_ai_scripts . s for the
AI scripts .
*/
2017-02-02 05:15:38 +01:00
extern u32 gBattleTypeFlags ;
2017-08-31 16:48:24 +02:00
extern u8 gActiveBank ;
2017-09-05 09:41:48 +02:00
extern struct BattlePokemon gBattleMons [ 4 ] ;
2017-08-31 16:48:24 +02:00
extern u16 gCurrentMove ;
extern u8 gBankTarget ;
extern u8 gAbsentBankFlags ;
2017-09-05 09:41:48 +02:00
extern u16 gLastUsedMovesByBanks [ 4 ] ;
extern u16 gTrainerBattleOpponent_A ;
extern u16 gTrainerBattleOpponent_B ;
extern u32 gStatuses3 [ 4 ] ;
extern u16 gSideAffecting [ 2 ] ;
extern u16 gBattlePartyID [ 4 ] ;
extern u16 gDynamicBasePower ;
2017-02-04 03:34:56 +01:00
extern u8 gBattleMoveFlags ;
2017-09-05 09:41:48 +02:00
extern s32 gBattleMoveDamage ;
2017-02-04 03:34:56 +01:00
extern u8 gCritMultiplier ;
extern u16 gBattleWeather ;
2017-09-05 09:41:48 +02:00
extern const struct BattleMove gBattleMoves [ ] ;
extern const struct BaseStats gBaseStats [ ] ;
extern const u32 gBitTable [ ] ;
extern u8 * const gBattleAI_ScriptsTable [ ] ;
2017-08-31 16:48:24 +02:00
extern u8 GetBankIdentity ( u8 ) ;
2017-02-04 03:34:56 +01:00
extern u8 b_first_side ( u8 , u8 , u8 ) ;
2017-08-31 16:48:24 +02:00
extern u8 GetBankByPlayerAI ( u8 ) ;
2017-09-05 09:41:48 +02:00
extern void TypeCalc ( u16 move , u8 bankAtk , u8 bankDef ) ;
extern void AI_CalcDmg ( u8 , u8 ) ;
extern u8 CheckMoveLimitations ( ) ;
extern u32 GetAiScriptsInRecordedBattle ( ) ;
extern u32 GetAiScriptsInBattleFactory ( ) ;
static u8 BattleAI_ChooseMoveOrAction_Singles ( void ) ;
static u8 BattleAI_ChooseMoveOrAction_Doubles ( void ) ;
static void RecordLastUsedMoveByTarget ( void ) ;
static void BattleAI_DoAIProcessing ( void ) ;
static void AIStackPushVar ( u8 * ) ;
static bool8 AIStackPop ( void ) ;
static void BattleAICmd_if_random_less_than ( void ) ;
static void BattleAICmd_if_random_greater_than ( void ) ;
static void BattleAICmd_if_random_equal ( void ) ;
static void BattleAICmd_if_random_not_equal ( void ) ;
static void BattleAICmd_score ( void ) ;
static void BattleAICmd_if_hp_less_than ( void ) ;
static void BattleAICmd_if_hp_more_than ( void ) ;
static void BattleAICmd_if_hp_equal ( void ) ;
static void BattleAICmd_if_hp_not_equal ( void ) ;
static void BattleAICmd_if_status ( void ) ;
static void BattleAICmd_if_not_status ( void ) ;
static void BattleAICmd_if_status2 ( void ) ;
static void BattleAICmd_if_not_status2 ( void ) ;
static void BattleAICmd_if_status3 ( void ) ;
static void BattleAICmd_if_not_status3 ( void ) ;
static void BattleAICmd_if_side_affecting ( void ) ;
static void BattleAICmd_if_not_side_affecting ( void ) ;
static void BattleAICmd_if_less_than ( void ) ;
static void BattleAICmd_if_more_than ( void ) ;
static void BattleAICmd_if_equal ( void ) ;
static void BattleAICmd_if_not_equal ( void ) ;
static void BattleAICmd_if_less_than_32 ( void ) ;
static void BattleAICmd_if_more_than_32 ( void ) ;
static void BattleAICmd_if_equal_32 ( void ) ;
static void BattleAICmd_if_not_equal_32 ( void ) ;
static void BattleAICmd_if_move ( void ) ;
static void BattleAICmd_if_not_move ( void ) ;
static void BattleAICmd_if_in_bytes ( void ) ;
static void BattleAICmd_if_not_in_bytes ( void ) ;
static void BattleAICmd_if_in_words ( void ) ;
static void BattleAICmd_if_not_in_words ( void ) ;
static void BattleAICmd_if_user_can_damage ( void ) ;
static void BattleAICmd_if_user_cant_damage ( void ) ;
static void BattleAICmd_get_turn_count ( void ) ;
static void BattleAICmd_get_type ( void ) ;
static void BattleAICmd_get_last_used_bank_move_power ( void ) ;
static void BattleAICmd_is_most_powerful_move ( void ) ;
static void BattleAICmd_get_last_used_bank_move ( void ) ;
static void BattleAICmd_if_arg_equal ( void ) ;
static void BattleAICmd_if_arg_not_equal ( void ) ;
static void BattleAICmd_if_would_go_first ( void ) ;
static void BattleAICmd_if_would_not_go_first ( void ) ;
static void BattleAICmd_nullsub_2A ( void ) ;
static void BattleAICmd_nullsub_2B ( void ) ;
static void BattleAICmd_count_alive_pokemon ( void ) ;
static void BattleAICmd_get_considered_move ( void ) ;
static void BattleAICmd_get_considered_move_effect ( void ) ;
static void BattleAICmd_get_ability ( void ) ;
static void BattleAICmd_get_highest_type_effectiveness ( void ) ;
static void BattleAICmd_if_type_effectiveness ( void ) ;
static void BattleAICmd_nullsub_32 ( void ) ;
static void BattleAICmd_nullsub_33 ( void ) ;
static void BattleAICmd_if_status_in_party ( void ) ;
static void BattleAICmd_if_status_not_in_party ( void ) ;
static void BattleAICmd_get_weather ( void ) ;
static void BattleAICmd_if_effect ( void ) ;
static void BattleAICmd_if_not_effect ( void ) ;
static void BattleAICmd_if_stat_level_less_than ( void ) ;
static void BattleAICmd_if_stat_level_more_than ( void ) ;
static void BattleAICmd_if_stat_level_equal ( void ) ;
static void BattleAICmd_if_stat_level_not_equal ( void ) ;
static void BattleAICmd_if_can_faint ( void ) ;
static void BattleAICmd_if_cant_faint ( void ) ;
static void BattleAICmd_if_has_move ( void ) ;
static void BattleAICmd_if_dont_have_move ( void ) ;
static void BattleAICmd_if_move_effect ( void ) ;
static void BattleAICmd_if_not_move_effect ( void ) ;
static void BattleAICmd_if_any_move_disabled_or_encored ( void ) ;
static void BattleAICmd_if_curr_move_disabled_or_encored ( void ) ;
static void BattleAICmd_flee ( void ) ;
static void BattleAICmd_if_random_100 ( void ) ;
static void BattleAICmd_watch ( void ) ;
static void BattleAICmd_get_hold_effect ( void ) ;
static void BattleAICmd_get_gender ( void ) ;
static void BattleAICmd_is_first_turn ( void ) ;
static void BattleAICmd_get_stockpile_count ( void ) ;
static void BattleAICmd_is_double_battle ( void ) ;
static void BattleAICmd_get_used_held_item ( void ) ;
static void BattleAICmd_get_move_type_from_result ( void ) ;
static void BattleAICmd_get_move_power_from_result ( void ) ;
static void BattleAICmd_get_move_effect_from_result ( void ) ;
static void BattleAICmd_get_protect_count ( void ) ;
static void BattleAICmd_nullsub_52 ( void ) ;
static void BattleAICmd_nullsub_53 ( void ) ;
static void BattleAICmd_nullsub_54 ( void ) ;
static void BattleAICmd_nullsub_55 ( void ) ;
static void BattleAICmd_nullsub_56 ( void ) ;
static void BattleAICmd_nullsub_57 ( void ) ;
static void BattleAICmd_call ( void ) ;
static void BattleAICmd_jump ( void ) ;
static void BattleAICmd_end ( void ) ;
static void BattleAICmd_if_level_cond ( void ) ;
static void BattleAICmd_if_target_taunted ( void ) ;
static void BattleAICmd_if_target_not_taunted ( void ) ;
static void BattleAICmd_check_ability ( void ) ;
static void BattleAICmd_is_of_type ( void ) ;
static void BattleAICmd_if_target_is_ally ( void ) ;
static void BattleAICmd_if_flash_fired ( void ) ;
static void BattleAICmd_if_holds_item ( void ) ;
// ewram
EWRAM_DATA u8 * gAIScriptPtr = NULL ;
EWRAM_DATA static u8 sBank_AI = 0 ;
// const rom data
2017-02-02 05:15:38 +01:00
typedef void ( * BattleAICmdFunc ) ( void ) ;
2017-09-05 09:41:48 +02:00
static const BattleAICmdFunc sBattleAICmdTable [ ] =
{
BattleAICmd_if_random_less_than , // 0x0
BattleAICmd_if_random_greater_than , // 0x1
BattleAICmd_if_random_equal , // 0x2
BattleAICmd_if_random_not_equal , // 0x3
BattleAICmd_score , // 0x4
BattleAICmd_if_hp_less_than , // 0x5
BattleAICmd_if_hp_more_than , // 0x6
BattleAICmd_if_hp_equal , // 0x7
BattleAICmd_if_hp_not_equal , // 0x8
BattleAICmd_if_status , // 0x9
BattleAICmd_if_not_status , // 0xA
BattleAICmd_if_status2 , // 0xB
BattleAICmd_if_not_status2 , // 0xC
BattleAICmd_if_status3 , // 0xD
BattleAICmd_if_not_status3 , // 0xE
BattleAICmd_if_side_affecting , // 0xF
BattleAICmd_if_not_side_affecting , // 0x10
BattleAICmd_if_less_than , // 0x11
BattleAICmd_if_more_than , // 0x12
BattleAICmd_if_equal , // 0x13
BattleAICmd_if_not_equal , // 0x14
BattleAICmd_if_less_than_32 , // 0x15
BattleAICmd_if_more_than_32 , // 0x16
BattleAICmd_if_equal_32 , // 0x17
BattleAICmd_if_not_equal_32 , // 0x18
BattleAICmd_if_move , // 0x19
BattleAICmd_if_not_move , // 0x1A
BattleAICmd_if_in_bytes , // 0x1B
BattleAICmd_if_not_in_bytes , // 0x1C
BattleAICmd_if_in_words , // 0x1D
BattleAICmd_if_not_in_words , // 0x1E
BattleAICmd_if_user_can_damage , // 0x1F
BattleAICmd_if_user_cant_damage , // 0x20
BattleAICmd_get_turn_count , // 0x21
BattleAICmd_get_type , // 0x22
BattleAICmd_get_last_used_bank_move_power , // 0x23
BattleAICmd_is_most_powerful_move , // 0x24
BattleAICmd_get_last_used_bank_move , // 0x25
BattleAICmd_if_arg_equal , // 0x26
BattleAICmd_if_arg_not_equal , // 0x27
BattleAICmd_if_would_go_first , // 0x28
BattleAICmd_if_would_not_go_first , // 0x29
BattleAICmd_nullsub_2A , // 0x2A
BattleAICmd_nullsub_2B , // 0x2B
BattleAICmd_count_alive_pokemon , // 0x2C
BattleAICmd_get_considered_move , // 0x2D
BattleAICmd_get_considered_move_effect , // 0x2E
BattleAICmd_get_ability , // 0x2F
BattleAICmd_get_highest_type_effectiveness , // 0x30
BattleAICmd_if_type_effectiveness , // 0x31
BattleAICmd_nullsub_32 , // 0x32
BattleAICmd_nullsub_33 , // 0x33
BattleAICmd_if_status_in_party , // 0x34
BattleAICmd_if_status_not_in_party , // 0x35
BattleAICmd_get_weather , // 0x36
BattleAICmd_if_effect , // 0x37
BattleAICmd_if_not_effect , // 0x38
BattleAICmd_if_stat_level_less_than , // 0x39
BattleAICmd_if_stat_level_more_than , // 0x3A
BattleAICmd_if_stat_level_equal , // 0x3B
BattleAICmd_if_stat_level_not_equal , // 0x3C
BattleAICmd_if_can_faint , // 0x3D
BattleAICmd_if_cant_faint , // 0x3E
BattleAICmd_if_has_move , // 0x3F
BattleAICmd_if_dont_have_move , // 0x40
BattleAICmd_if_move_effect , // 0x41
BattleAICmd_if_not_move_effect , // 0x42
BattleAICmd_if_any_move_disabled_or_encored , // 0x43
BattleAICmd_if_curr_move_disabled_or_encored , // 0x44
BattleAICmd_flee , // 0x45
BattleAICmd_if_random_100 , // 0x46
BattleAICmd_watch , // 0x47
BattleAICmd_get_hold_effect , // 0x48
BattleAICmd_get_gender , // 0x49
BattleAICmd_is_first_turn , // 0x4A
BattleAICmd_get_stockpile_count , // 0x4B
BattleAICmd_is_double_battle , // 0x4C
BattleAICmd_get_used_held_item , // 0x4D
BattleAICmd_get_move_type_from_result , // 0x4E
BattleAICmd_get_move_power_from_result , // 0x4F
BattleAICmd_get_move_effect_from_result , // 0x50
BattleAICmd_get_protect_count , // 0x51
BattleAICmd_nullsub_52 , // 0x52
BattleAICmd_nullsub_53 , // 0x53
BattleAICmd_nullsub_54 , // 0x54
BattleAICmd_nullsub_55 , // 0x55
BattleAICmd_nullsub_56 , // 0x56
BattleAICmd_nullsub_57 , // 0x57
BattleAICmd_call , // 0x58
BattleAICmd_jump , // 0x59
BattleAICmd_end , // 0x5A
BattleAICmd_if_level_cond , // 0x5B
BattleAICmd_if_target_taunted , // 0x5C
BattleAICmd_if_target_not_taunted , // 0x5D
BattleAICmd_if_target_is_ally , // 0x5E
BattleAICmd_is_of_type , // 0x5F
BattleAICmd_check_ability , // 0x60
BattleAICmd_if_flash_fired , // 0x61
BattleAICmd_if_holds_item , // 0x62
} ;
2017-02-02 05:15:38 +01:00
2017-09-05 09:41:48 +02:00
static const u16 sDiscouragedPowerfulMoveEffects [ ] =
{
EFFECT_EXPLOSION ,
EFFECT_DREAM_EATER ,
EFFECT_RAZOR_WIND ,
EFFECT_SKY_ATTACK ,
EFFECT_RECHARGE ,
EFFECT_SKULL_BASH ,
EFFECT_SOLARBEAM ,
EFFECT_SPIT_UP ,
EFFECT_FOCUS_PUNCH ,
EFFECT_SUPERPOWER ,
EFFECT_ERUPTION ,
EFFECT_OVERHEAT ,
0xFFFF
} ;
2017-02-02 05:15:38 +01:00
2017-09-05 09:41:48 +02:00
void BattleAI_HandleItemUseBeforeAISetup ( u8 defaultScoreMoves )
2017-02-02 05:15:38 +01:00
{
s32 i ;
2017-09-04 21:43:13 +02:00
u8 * data = ( u8 * ) gBattleResources - > battleHistory ;
2017-09-05 09:41:48 +02:00
for ( i = 0 ; i < sizeof ( struct BattleHistory ) ; i + + )
2017-02-02 05:15:38 +01:00
data [ i ] = 0 ;
2017-09-05 09:41:48 +02:00
// items are allowed to use in ONLY trainer battles
if ( ( gBattleTypeFlags &
( BATTLE_TYPE_LINK | BATTLE_TYPE_SAFARI | BATTLE_TYPE_BATTLE_TOWER |
BATTLE_TYPE_EREADER_TRAINER | BATTLE_TYPE_TRAINER | BATTLE_TYPE_FRONTIER
| BATTLE_TYPE_INGAME_PARTNER | BATTLE_TYPE_x2000000 | BATTLE_TYPE_SECRET_BASE ) )
= = BATTLE_TYPE_TRAINER )
2017-02-02 05:15:38 +01:00
{
for ( i = 0 ; i < 4 ; i + + )
{
2017-09-05 09:41:48 +02:00
if ( gTrainers [ gTrainerBattleOpponent_A ] . items [ i ] ! = 0 )
2017-02-02 05:15:38 +01:00
{
2017-09-05 09:41:48 +02:00
gBattleResources - > battleHistory - > TrainerItems [ gBattleResources - > battleHistory - > itemsNo ] = gTrainers [ gTrainerBattleOpponent_A ] . items [ i ] ;
gBattleResources - > battleHistory - > itemsNo + + ;
2017-02-02 05:15:38 +01:00
}
}
}
2017-09-04 21:43:13 +02:00
2017-09-05 09:41:48 +02:00
BattleAI_SetupAIData ( defaultScoreMoves ) ;
2017-02-02 05:15:38 +01:00
}
2017-09-05 09:41:48 +02:00
void BattleAI_SetupAIData ( u8 defaultScoreMoves )
2017-02-02 05:15:38 +01:00
{
s32 i ;
2017-02-04 03:34:56 +01:00
u8 * data = ( u8 * ) AI_THINKING_STRUCT ;
2017-09-05 09:41:48 +02:00
u8 moveLimitations ;
2017-02-04 03:34:56 +01:00
// clear AI data.
2017-09-05 09:41:48 +02:00
for ( i = 0 ; i < sizeof ( struct AI_ThinkingStruct ) ; i + + )
2017-02-02 05:15:38 +01:00
data [ i ] = 0 ;
2017-02-04 03:34:56 +01:00
// conditional score reset, unlike Ruby.
2017-02-02 05:15:38 +01:00
for ( i = 0 ; i < 4 ; i + + )
{
2017-09-05 09:41:48 +02:00
if ( defaultScoreMoves & 1 )
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > score [ i ] = 100 ;
2017-02-02 05:15:38 +01:00
else
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > score [ i ] = 0 ;
2017-09-05 09:41:48 +02:00
defaultScoreMoves > > = 1 ;
2017-02-02 05:15:38 +01:00
}
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
moveLimitations = CheckMoveLimitations ( gActiveBank , 0 , 0xFF ) ;
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
// ignore moves that aren't possible to use
2017-02-02 05:15:38 +01:00
for ( i = 0 ; i < 4 ; i + + )
{
2017-09-05 09:41:48 +02:00
if ( gBitTable [ i ] & moveLimitations )
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > score [ i ] = 0 ;
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > simulatedRNG [ i ] = 100 - ( Random ( ) % 16 ) ;
2017-02-02 05:15:38 +01:00
}
2017-09-04 21:43:13 +02:00
gBattleResources - > AI_ScriptsStack - > size = 0 ;
2017-09-05 09:41:48 +02:00
sBank_AI = gActiveBank ;
// decide a random target bank in doubles
if ( gBattleTypeFlags & BATTLE_TYPE_DOUBLE )
2017-02-02 05:15:38 +01:00
{
2017-09-05 09:41:48 +02:00
gBankTarget = ( Random ( ) & 2 ) + ( GetBankSide ( gActiveBank ) ^ 1 ) ;
2017-08-31 16:48:24 +02:00
if ( gAbsentBankFlags & gBitTable [ gBankTarget ] )
gBankTarget ^ = 2 ;
2017-02-02 05:15:38 +01:00
}
2017-09-05 09:41:48 +02:00
// in singles there's only one choice
2017-02-02 05:15:38 +01:00
else
2017-09-05 09:41:48 +02:00
gBankTarget = sBank_AI ^ 1 ;
if ( gBattleTypeFlags & BATTLE_TYPE_RECORDED )
AI_THINKING_STRUCT - > aiFlags = GetAiScriptsInRecordedBattle ( ) ;
else if ( gBattleTypeFlags & BATTLE_TYPE_SAFARI )
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > aiFlags = 0x40000000 ;
2017-09-05 09:41:48 +02:00
else if ( gBattleTypeFlags & BATTLE_TYPE_ROAMER )
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > aiFlags = 0x20000000 ;
2017-09-05 09:41:48 +02:00
else if ( gBattleTypeFlags & BATTLE_TYPE_FIRST_BATTLE )
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > aiFlags = 0x80000000 ;
2017-09-05 09:41:48 +02:00
else if ( gBattleTypeFlags & BATTLE_TYPE_FACTORY )
AI_THINKING_STRUCT - > aiFlags = GetAiScriptsInBattleFactory ( ) ;
else if ( gBattleTypeFlags & ( BATTLE_TYPE_FRONTIER | BATTLE_TYPE_EREADER_TRAINER | BATTLE_TYPE_x4000000 | BATTLE_TYPE_SECRET_BASE ) )
AI_THINKING_STRUCT - > aiFlags = 7 ; // the smartest possible set
else if ( gBattleTypeFlags & BATTLE_TYPE_TWO_OPPONENTS )
AI_THINKING_STRUCT - > aiFlags = gTrainers [ gTrainerBattleOpponent_A ] . aiFlags | gTrainers [ gTrainerBattleOpponent_B ] . aiFlags ;
else
AI_THINKING_STRUCT - > aiFlags = gTrainers [ gTrainerBattleOpponent_A ] . aiFlags ;
if ( gBattleTypeFlags & BATTLE_TYPE_DOUBLE )
AI_THINKING_STRUCT - > aiFlags | = 0x80 ; // act smart in doubles and don't attack your partner
2017-02-02 05:15:38 +01:00
}
2017-09-05 09:41:48 +02:00
u8 BattleAI_ChooseMoveOrAction ( void )
2017-02-02 05:15:38 +01:00
{
2017-09-05 09:41:48 +02:00
u16 savedCurrentMove = gCurrentMove ;
2017-02-02 05:15:38 +01:00
u8 ret ;
2017-09-04 21:43:13 +02:00
2017-09-05 09:41:48 +02:00
if ( ! ( gBattleTypeFlags & BATTLE_TYPE_DOUBLE ) )
ret = BattleAI_ChooseMoveOrAction_Singles ( ) ;
2017-02-02 05:15:38 +01:00
else
2017-09-05 09:41:48 +02:00
ret = BattleAI_ChooseMoveOrAction_Doubles ( ) ;
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
gCurrentMove = savedCurrentMove ;
2017-02-02 05:15:38 +01:00
return ret ;
}
2017-09-05 09:41:48 +02:00
static u8 BattleAI_ChooseMoveOrAction_Singles ( void )
2017-02-02 05:15:38 +01:00
{
2017-02-04 03:34:56 +01:00
u8 currentMoveArray [ 4 ] ;
u8 consideredMoveArray [ 4 ] ;
u8 numOfBestMoves ;
2017-02-02 05:15:38 +01:00
s32 i ;
2017-09-04 21:43:13 +02:00
2017-09-05 09:41:48 +02:00
RecordLastUsedMoveByTarget ( ) ;
2017-02-04 03:34:56 +01:00
while ( AI_THINKING_STRUCT - > aiFlags ! = 0 )
2017-02-02 05:15:38 +01:00
{
2017-02-04 03:34:56 +01:00
if ( AI_THINKING_STRUCT - > aiFlags & 1 )
2017-02-02 05:15:38 +01:00
{
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > aiState = AIState_SettingUp ;
2017-02-02 05:15:38 +01:00
BattleAI_DoAIProcessing ( ) ;
}
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > aiFlags > > = 1 ;
AI_THINKING_STRUCT - > aiLogicId + + ;
AI_THINKING_STRUCT - > movesetIndex = 0 ;
2017-02-02 05:15:38 +01:00
}
2017-02-04 03:34:56 +01:00
// special flags for safari watch/flee.
if ( AI_THINKING_STRUCT - > aiAction & 2 )
2017-02-02 05:15:38 +01:00
return 4 ;
2017-02-04 03:34:56 +01:00
if ( AI_THINKING_STRUCT - > aiAction & 4 )
2017-02-02 05:15:38 +01:00
return 5 ;
2017-02-04 03:34:56 +01:00
numOfBestMoves = 1 ;
currentMoveArray [ 0 ] = AI_THINKING_STRUCT - > score [ 0 ] ;
consideredMoveArray [ 0 ] = 0 ;
2017-02-02 05:15:38 +01:00
for ( i = 1 ; i < 4 ; i + + )
{
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ sBank_AI ] . moves [ i ] ! = 0 ) // emerald adds an extra move ID check for some reason.
2017-02-02 05:15:38 +01:00
{
2017-02-04 03:34:56 +01:00
// in ruby, the order of these if statements are reversed.
if ( currentMoveArray [ 0 ] = = AI_THINKING_STRUCT - > score [ i ] )
2017-02-02 05:15:38 +01:00
{
2017-02-04 03:34:56 +01:00
currentMoveArray [ numOfBestMoves ] = AI_THINKING_STRUCT - > score [ i ] ;
consideredMoveArray [ numOfBestMoves + + ] = i ;
2017-02-02 05:15:38 +01:00
}
2017-02-04 03:34:56 +01:00
if ( currentMoveArray [ 0 ] < AI_THINKING_STRUCT - > score [ i ] )
2017-02-02 05:15:38 +01:00
{
2017-02-04 03:34:56 +01:00
numOfBestMoves = 1 ;
currentMoveArray [ 0 ] = AI_THINKING_STRUCT - > score [ i ] ;
consideredMoveArray [ 0 ] = i ;
2017-02-02 05:15:38 +01:00
}
}
}
2017-02-04 03:34:56 +01:00
return consideredMoveArray [ Random ( ) % numOfBestMoves ] ;
2017-02-02 05:15:38 +01:00
}
# ifdef NONMATCHING
2017-09-05 09:41:48 +02:00
static u8 BattleAI_ChooseMoveOrAction_Doubles ( void )
2017-02-02 05:15:38 +01:00
{
s32 i ;
s32 j ;
//s32 r4_2;
# define r4_2 r4
s32 r5 ;
s16 r5_2 ;
s32 r4 ;
s16 sp0 [ 4 ] ;
s8 sp8 [ 4 ] ;
s8 spC [ 4 ] ;
u8 sp10 [ 4 ] ; // definitely unsigned
u8 sp14 [ 4 ] ;
//u8 *sp1C = spC;
//u8 *sp18 = sp8;
//u8 *sp20 = spC;
2017-09-04 21:43:13 +02:00
2017-02-02 05:15:38 +01:00
for ( i = 0 ; i < 4 ; i + + ) //_08130D14
{
2017-09-05 09:41:48 +02:00
if ( i = = sBank_AI | | gBattleMons [ i ] . hp = = 0 )
2017-02-02 05:15:38 +01:00
{
//_08130D2E
spC [ i ] = - 1 ;
sp0 [ i ] = - 1 ;
}
//_08130D48
else
{
if ( gBattleTypeFlags & 0x20000 )
2017-08-31 16:48:24 +02:00
BattleAI_SetupAIData ( gBattleStruct [ 0x92 ] > > 4 ) ;
2017-02-02 05:15:38 +01:00
else
BattleAI_SetupAIData ( 0xF ) ;
//_08130D76
2017-08-31 16:48:24 +02:00
gBankTarget = i ;
2017-09-05 09:41:48 +02:00
if ( ( i & 1 ) ! = ( sBank_AI & 1 ) )
RecordLastUsedMoveByTarget ( ) ;
2017-02-02 05:15:38 +01:00
//_08130D90
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > unk11 = 0 ;
AI_THINKING_STRUCT - > unk1 = 0 ;
r4 = AI_THINKING_STRUCT - > aiFlags ;
2017-02-02 05:15:38 +01:00
while ( r4 ! = 0 )
{
if ( r4 & 1 )
{
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > aiState = AIState_SettingUp ;
2017-02-02 05:15:38 +01:00
BattleAI_DoAIProcessing ( ) ;
}
r4 > > = 1 ;
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > unk11 + + ;
AI_THINKING_STRUCT - > unk1 = 0 ;
2017-02-02 05:15:38 +01:00
}
//_08130DD8
2017-02-04 03:34:56 +01:00
if ( AI_THINKING_STRUCT - > unk10 & 2 )
2017-02-02 05:15:38 +01:00
spC [ i ] = 4 ;
2017-02-04 03:34:56 +01:00
else if ( AI_THINKING_STRUCT - > unk10 & 4 )
2017-02-02 05:15:38 +01:00
spC [ i ] = 5 ;
else
{
//_08130E10
2017-02-04 03:34:56 +01:00
sp10 [ 0 ] = AI_THINKING_STRUCT - > score [ 0 ] ;
2017-02-02 05:15:38 +01:00
sp14 [ 0 ] = 0 ;
r5 = 1 ;
for ( j = 1 ; j < 4 ; j + + )
{
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ sBank_AI ] . moves [ j ] ! = 0 )
2017-02-02 05:15:38 +01:00
{
2017-02-04 03:34:56 +01:00
if ( sp10 [ 0 ] = = AI_THINKING_STRUCT - > score [ j ] )
2017-02-02 05:15:38 +01:00
{
2017-02-04 03:34:56 +01:00
sp10 [ r5 ] = AI_THINKING_STRUCT - > score [ j ] ;
2017-02-02 05:15:38 +01:00
sp14 [ r5 ] = j ;
r5 + + ;
}
2017-02-04 03:34:56 +01:00
if ( sp10 [ 0 ] < AI_THINKING_STRUCT - > score [ j ] )
2017-02-02 05:15:38 +01:00
{
2017-02-04 03:34:56 +01:00
sp10 [ 0 ] = AI_THINKING_STRUCT - > score [ j ] ;
2017-02-02 05:15:38 +01:00
sp14 [ 0 ] = j ;
r5 = 1 ;
}
}
//_08130E72
}
spC [ i ] = sp14 [ Random ( ) % r5 ] ;
//asm("":::"r3");
sp0 [ i ] = sp10 [ 0 ] ;
2017-09-05 09:41:48 +02:00
if ( i = = ( sBank_AI ^ 2 ) & & sp0 [ i ] < 100 )
2017-02-02 05:15:38 +01:00
sp0 [ i ] = - 1 ;
}
}
//_08130EAE
}
2017-09-04 21:43:13 +02:00
2017-02-02 05:15:38 +01:00
//#define i r5
2017-09-04 21:43:13 +02:00
2017-02-02 05:15:38 +01:00
//_08130EC4
r5_2 = sp0 [ 0 ] ;
sp8 [ 0 ] = 0 ;
r4_2 = 1 ;
for ( i = 1 ; i < 4 ; i + + )
{
//_08130EDA
if ( r5_2 = = sp0 [ i ] )
{
sp8 [ r4_2 ] = i ;
r4_2 + + ;
}
//_08130EEE
if ( r5_2 < sp0 [ i ] )
{
r5_2 = sp0 [ i ] ;
sp8 [ 0 ] = i ;
r4_2 = 1 ;
}
}
2017-08-31 16:48:24 +02:00
gBankTarget = sp8 [ Random ( ) % r4_2 ] ;
return spC [ gBankTarget ] ;
2017-02-02 05:15:38 +01:00
}
# else
__attribute__ ( ( naked ) )
2017-09-05 09:41:48 +02:00
static u8 BattleAI_ChooseMoveOrAction_Doubles ( void )
2017-02-02 05:15:38 +01:00
{
asm ( " .syntax unified \n \
push { r4 - r7 , lr } \ n \
mov r7 , r10 \ n \
mov r6 , r9 \ n \
mov r5 , r8 \ n \
push { r5 - r7 } \ n \
sub sp , 0x24 \ n \
movs r0 , 0 \ n \
mov r8 , r0 \ n \
mov r1 , sp \ n \
adds r1 , 0xC \ n \
str r1 , [ sp , 0x1C ] \ n \
mov r2 , sp \ n \
adds r2 , 0x8 \ n \
str r2 , [ sp , 0x18 ] \ n \
str r1 , [ sp , 0x20 ] \ n \
mov r10 , sp \ n \
_08130D14 : \ n \
2017-09-05 09:41:48 +02:00
ldr r0 , = sBank_AI \ n \
2017-02-02 05:15:38 +01:00
ldrb r0 , [ r0 ] \ n \
cmp r8 , r0 \ n \
beq _08130D2E \ n \
movs r0 , 0x58 \ n \
mov r7 , r8 \ n \
muls r7 , r0 \ n \
adds r0 , r7 , 0 \ n \
ldr r1 , = gBattleMons \ n \
adds r0 , r1 \ n \
ldrh r0 , [ r0 , 0x28 ] \ n \
cmp r0 , 0 \ n \
bne _08130D48 \ n \
_08130D2E : \ n \
movs r0 , 0xFF \ n \
ldr r2 , [ sp , 0x20 ] \ n \
strb r0 , [ r2 ] \ n \
ldr r0 , = 0x0000ffff \ n \
mov r7 , r10 \ n \
strh r0 , [ r7 ] \ n \
b _08130EAE \ n \
. pool \ n \
_08130D48 : \ n \
ldr r0 , = gBattleTypeFlags \ n \
ldr r0 , [ r0 ] \ n \
movs r1 , 0x80 \ n \
lsls r1 , 10 \ n \
ands r0 , r1 \ n \
cmp r0 , 0 \ n \
beq _08130D70 \ n \
2017-08-31 16:48:24 +02:00
ldr r0 , = gBattleStruct \ n \
2017-02-02 05:15:38 +01:00
ldr r0 , [ r0 ] \ n \
adds r0 , 0x92 \ n \
ldrb r0 , [ r0 ] \ n \
lsrs r0 , 4 \ n \
bl BattleAI_SetupAIData \ n \
b _08130D76 \ n \
. pool \ n \
_08130D70 : \ n \
movs r0 , 0xF \ n \
bl BattleAI_SetupAIData \ n \
_08130D76 : \ n \
2017-08-31 16:48:24 +02:00
ldr r0 , = gBankTarget \ n \
2017-02-02 05:15:38 +01:00
mov r1 , r8 \ n \
strb r1 , [ r0 ] \ n \
movs r1 , 0x1 \ n \
mov r2 , r8 \ n \
ands r2 , r1 \ n \
2017-09-05 09:41:48 +02:00
ldr r0 , = sBank_AI \ n \
2017-02-02 05:15:38 +01:00
ldrb r0 , [ r0 ] \ n \
ands r1 , r0 \ n \
cmp r2 , r1 \ n \
beq _08130D90 \ n \
2017-09-05 09:41:48 +02:00
bl RecordLastUsedMoveByTarget \ n \
2017-02-02 05:15:38 +01:00
_08130D90 : \ n \
2017-08-31 16:48:24 +02:00
ldr r2 , = gBattleResources \ n \
2017-02-02 05:15:38 +01:00
ldr r0 , [ r2 ] \ n \
ldr r0 , [ r0 , 0x14 ] \ n \
movs r1 , 0 \ n \
strb r1 , [ r0 , 0x11 ] \ n \
ldr r0 , [ r2 ] \ n \
ldr r0 , [ r0 , 0x14 ] \ n \
strb r1 , [ r0 , 0x1 ] \ n \
ldr r0 , [ r2 ] \ n \
ldr r0 , [ r0 , 0x14 ] \ n \
ldr r4 , [ r0 , 0xC ] \ n \
mov r9 , r2 \ n \
cmp r4 , 0 \ n \
beq _08130DD8 \ n \
mov r5 , r9 \ n \
movs r6 , 0 \ n \
_08130DB0 : \ n \
movs r0 , 0x1 \ n \
ands r0 , r4 \ n \
cmp r0 , 0 \ n \
beq _08130DC2 \ n \
ldr r0 , [ r5 ] \ n \
ldr r0 , [ r0 , 0x14 ] \ n \
strb r6 , [ r0 ] \ n \
bl BattleAI_DoAIProcessing \ n \
_08130DC2 : \ n \
asrs r4 , 1 \ n \
ldr r0 , [ r5 ] \ n \
ldr r1 , [ r0 , 0x14 ] \ n \
ldrb r0 , [ r1 , 0x11 ] \ n \
adds r0 , 0x1 \ n \
strb r0 , [ r1 , 0x11 ] \ n \
ldr r0 , [ r5 ] \ n \
ldr r0 , [ r0 , 0x14 ] \ n \
strb r6 , [ r0 , 0x1 ] \ n \
cmp r4 , 0 \ n \
bne _08130DB0 \ n \
_08130DD8 : \ n \
mov r2 , r9 \ n \
ldr r0 , [ r2 ] \ n \
ldr r3 , [ r0 , 0x14 ] \ n \
ldrb r1 , [ r3 , 0x10 ] \ n \
movs r0 , 0x2 \ n \
ands r0 , r1 \ n \
cmp r0 , 0 \ n \
beq _08130DFC \ n \
movs r0 , 0x4 \ n \
ldr r7 , [ sp , 0x20 ] \ n \
strb r0 , [ r7 ] \ n \
b _08130EAE \ n \
. pool \ n \
_08130DFC : \ n \
movs r0 , 0x4 \ n \
ands r0 , r1 \ n \
lsls r0 , 24 \ n \
lsrs r2 , r0 , 24 \ n \
cmp r2 , 0 \ n \
beq _08130E10 \ n \
movs r0 , 0x5 \ n \
ldr r1 , [ sp , 0x20 ] \ n \
strb r0 , [ r1 ] \ n \
b _08130EAE \ n \
_08130E10 : \ n \
add r1 , sp , 0x10 \ n \
ldrb r0 , [ r3 , 0x4 ] \ n \
strb r0 , [ r1 ] \ n \
add r0 , sp , 0x14 \ n \
strb r2 , [ r0 ] \ n \
movs r5 , 0x1 \ n \
movs r3 , 0x1 \ n \
adds r6 , r1 , 0 \ n \
2017-09-05 09:41:48 +02:00
ldr r0 , = sBank_AI \ n \
2017-02-02 05:15:38 +01:00
ldrb r1 , [ r0 ] \ n \
movs r0 , 0x58 \ n \
muls r0 , r1 \ n \
ldr r2 , = gUnknown_02024090 \ n \
adds r0 , r2 \ n \
adds r4 , r0 , 0x2 \ n \
add r7 , sp , 0x14 \ n \
_08130E30 : \ n \
ldrh r0 , [ r4 ] \ n \
cmp r0 , 0 \ n \
beq _08130E72 \ n \
ldrb r1 , [ r6 ] \ n \
mov r2 , r9 \ n \
ldr r0 , [ r2 ] \ n \
ldr r0 , [ r0 , 0x14 ] \ n \
adds r0 , 0x4 \ n \
adds r2 , r0 , r3 \ n \
movs r0 , 0 \ n \
ldrsb r0 , [ r2 , r0 ] \ n \
cmp r1 , r0 \ n \
bne _08130E56 \ n \
adds r0 , r6 , r5 \ n \
ldrb r1 , [ r2 ] \ n \
strb r1 , [ r0 ] \ n \
adds r0 , r7 , r5 \ n \
strb r3 , [ r0 ] \ n \
adds r5 , 0x1 \ n \
_08130E56 : \ n \
ldrb r1 , [ r6 ] \ n \
mov r2 , r9 \ n \
ldr r0 , [ r2 ] \ n \
ldr r0 , [ r0 , 0x14 ] \ n \
adds r0 , 0x4 \ n \
adds r2 , r0 , r3 \ n \
movs r0 , 0 \ n \
ldrsb r0 , [ r2 , r0 ] \ n \
cmp r1 , r0 \ n \
bge _08130E72 \ n \
ldrb r0 , [ r2 ] \ n \
strb r0 , [ r6 ] \ n \
strb r3 , [ r7 ] \ n \
movs r5 , 0x1 \ n \
_08130E72 : \ n \
adds r4 , 0x2 \ n \
adds r3 , 0x1 \ n \
cmp r3 , 0x3 \ n \
ble _08130E30 \ n \
bl Random \ n \
lsls r0 , 16 \ n \
lsrs r0 , 16 \ n \
adds r1 , r5 , 0 \ n \
bl __modsi3 \ n \
add r0 , sp \ n \
adds r0 , 0x14 \ n \
ldrb r0 , [ r0 ] \ n \
ldr r7 , [ sp , 0x20 ] \ n \
strb r0 , [ r7 ] \ n \
ldrb r2 , [ r6 ] \ n \
mov r0 , r10 \ n \
strh r2 , [ r0 ] \ n \
2017-09-05 09:41:48 +02:00
ldr r0 , = sBank_AI \ n \
2017-02-02 05:15:38 +01:00
ldrb r1 , [ r0 ] \ n \
movs r0 , 0x2 \ n \
eors r0 , r1 \ n \
cmp r8 , r0 \ n \
bne _08130EAE \ n \
cmp r2 , 0x63 \ n \
bgt _08130EAE \ n \
ldr r0 , = 0x0000ffff \ n \
mov r1 , r10 \ n \
strh r0 , [ r1 ] \ n \
_08130EAE : \ n \
ldr r2 , [ sp , 0x20 ] \ n \
adds r2 , 0x1 \ n \
str r2 , [ sp , 0x20 ] \ n \
movs r7 , 0x2 \ n \
add r10 , r7 \ n \
movs r0 , 0x1 \ n \
add r8 , r0 \ n \
mov r1 , r8 \ n \
cmp r1 , 0x3 \ n \
bgt _08130EC4 \ n \
b _08130D14 \ n \
_08130EC4 : \ n \
mov r0 , sp \ n \
ldrh r5 , [ r0 ] \ n \
movs r0 , 0 \ n \
ldr r2 , [ sp , 0x18 ] \ n \
strb r0 , [ r2 ] \ n \
movs r4 , 0x1 \ n \
mov r8 , r4 \ n \
2017-08-31 16:48:24 +02:00
ldr r6 , = gBankTarget \ n \
2017-02-02 05:15:38 +01:00
ldr r3 , [ sp , 0x18 ] \ n \
mov r1 , sp \ n \
adds r1 , 0x2 \ n \
_08130EDA : \ n \
lsls r0 , r5 , 16 \ n \
asrs r2 , r0 , 16 \ n \
movs r7 , 0 \ n \
ldrsh r0 , [ r1 , r7 ] \ n \
cmp r2 , r0 \ n \
bne _08130EEE \ n \
adds r0 , r3 , r4 \ n \
mov r7 , r8 \ n \
strb r7 , [ r0 ] \ n \
adds r4 , 0x1 \ n \
_08130EEE : \ n \
movs r7 , 0 \ n \
ldrsh r0 , [ r1 , r7 ] \ n \
cmp r2 , r0 \ n \
bge _08130EFE \ n \
ldrh r5 , [ r1 ] \ n \
mov r0 , r8 \ n \
strb r0 , [ r3 ] \ n \
movs r4 , 0x1 \ n \
_08130EFE : \ n \
adds r1 , 0x2 \ n \
movs r2 , 0x1 \ n \
add r8 , r2 \ n \
mov r7 , r8 \ n \
cmp r7 , 0x3 \ n \
ble _08130EDA \ n \
bl Random \ n \
lsls r0 , 16 \ n \
lsrs r0 , 16 \ n \
adds r1 , r4 , 0 \ n \
bl __modsi3 \ n \
ldr r1 , [ sp , 0x18 ] \ n \
adds r0 , r1 , r0 \ n \
ldrb r0 , [ r0 ] \ n \
strb r0 , [ r6 ] \ n \
ldrb r0 , [ r6 ] \ n \
ldr r2 , [ sp , 0x1C ] \ n \
adds r0 , r2 , r0 \ n \
ldrb r0 , [ r0 ] \ n \
add sp , 0x24 \ n \
pop { r3 - r5 } \ n \
mov r8 , r3 \ n \
mov r9 , r4 \ n \
mov r10 , r5 \ n \
pop { r4 - r7 } \ n \
pop { r1 } \ n \
bx r1 \ n \
. pool \ n \
. syntax divided \ n " );
}
# endif
2017-09-05 09:41:48 +02:00
static void BattleAI_DoAIProcessing ( void )
2017-02-02 05:15:38 +01:00
{
2017-02-04 03:34:56 +01:00
while ( AI_THINKING_STRUCT - > aiState ! = AIState_FinishedProcessing )
2017-02-02 05:15:38 +01:00
{
2017-02-04 03:34:56 +01:00
switch ( AI_THINKING_STRUCT - > aiState )
2017-02-02 05:15:38 +01:00
{
2017-02-04 03:34:56 +01:00
case AIState_DoNotProcess : //Needed to match.
2017-02-02 05:15:38 +01:00
break ;
2017-02-04 03:34:56 +01:00
case AIState_SettingUp :
2017-09-05 09:41:48 +02:00
gAIScriptPtr = gBattleAI_ScriptsTable [ AI_THINKING_STRUCT - > aiLogicId ] ; // set AI ptr to logic ID.
if ( gBattleMons [ sBank_AI ] . pp [ AI_THINKING_STRUCT - > movesetIndex ] = = 0 )
2017-02-02 05:15:38 +01:00
{
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > moveConsidered = 0 ;
2017-02-02 05:15:38 +01:00
}
else
{
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > moveConsidered = gBattleMons [ sBank_AI ] . moves [ AI_THINKING_STRUCT - > movesetIndex ] ;
2017-02-02 05:15:38 +01:00
}
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > aiState + + ;
2017-02-02 05:15:38 +01:00
break ;
2017-02-04 03:34:56 +01:00
case AIState_Processing :
if ( AI_THINKING_STRUCT - > moveConsidered ! = 0 )
2017-03-05 08:35:03 +01:00
sBattleAICmdTable [ * gAIScriptPtr ] ( ) ; // run AI command.
2017-02-02 05:15:38 +01:00
else
{
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > score [ AI_THINKING_STRUCT - > movesetIndex ] = 0 ;
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > aiAction | = AI_ACTION_DONE ;
2017-02-02 05:15:38 +01:00
}
2017-09-05 09:41:48 +02:00
if ( AI_THINKING_STRUCT - > aiAction & AI_ACTION_DONE )
2017-02-02 05:15:38 +01:00
{
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > movesetIndex + + ;
2017-09-05 09:41:48 +02:00
if ( AI_THINKING_STRUCT - > movesetIndex < 4 & & ! ( AI_THINKING_STRUCT - > aiAction & AI_ACTION_DO_NOT_ATTACK ) )
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > aiState = AIState_SettingUp ;
2017-02-02 05:15:38 +01:00
else
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > aiState + + ;
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > aiAction & = ~ ( AI_ACTION_DONE ) ;
2017-02-02 05:15:38 +01:00
}
break ;
}
}
}
2017-09-05 09:41:48 +02:00
static void RecordLastUsedMoveByTarget ( void )
2017-02-02 05:15:38 +01:00
{
s32 i ;
2017-09-04 21:43:13 +02:00
2017-02-02 05:15:38 +01:00
for ( i = 0 ; i < 4 ; i + + )
{
2017-09-05 09:41:48 +02:00
if ( gBattleResources - > battleHistory - > usedMoves [ gBankTarget ] . moves [ i ] = = gLastUsedMovesByBanks [ gBankTarget ] )
2017-02-02 05:15:38 +01:00
break ;
2017-09-05 09:41:48 +02:00
if ( gBattleResources - > battleHistory - > usedMoves [ gBankTarget ] . moves [ i ] ! = gLastUsedMovesByBanks [ gBankTarget ] //HACK: This redundant condition is a hack to make the asm match.
2017-09-04 21:43:13 +02:00
& & gBattleResources - > battleHistory - > usedMoves [ gBankTarget ] . moves [ i ] = = 0 )
2017-02-02 05:15:38 +01:00
{
2017-09-05 09:41:48 +02:00
gBattleResources - > battleHistory - > usedMoves [ gBankTarget ] . moves [ i ] = gLastUsedMovesByBanks [ gBankTarget ] ;
2017-02-02 05:15:38 +01:00
break ;
}
}
}
2017-09-05 09:41:48 +02:00
void ClearBankMoveHistory ( u8 bank )
2017-02-02 05:15:38 +01:00
{
s32 i ;
2017-09-04 21:43:13 +02:00
2017-02-02 05:15:38 +01:00
for ( i = 0 ; i < 4 ; i + + )
2017-09-05 09:41:48 +02:00
gBattleResources - > battleHistory - > usedMoves [ bank ] . moves [ i ] = 0 ;
2017-02-02 05:15:38 +01:00
}
2017-09-05 09:41:48 +02:00
void RecordAbilityBattle ( u8 bank , u8 abilityId )
2017-02-02 05:15:38 +01:00
{
2017-09-05 09:41:48 +02:00
gBattleResources - > battleHistory - > abilities [ bank ] = abilityId ;
2017-02-02 05:15:38 +01:00
}
2017-09-05 09:41:48 +02:00
void ClearBankAbilityHistory ( u8 bank )
2017-02-02 05:15:38 +01:00
{
2017-09-05 09:41:48 +02:00
gBattleResources - > battleHistory - > abilities [ bank ] = 0 ;
2017-02-02 05:15:38 +01:00
}
2017-09-05 09:41:48 +02:00
void RecordItemEffectBattle ( u8 bank , u8 itemEffect )
2017-02-02 05:15:38 +01:00
{
2017-09-05 09:41:48 +02:00
gBattleResources - > battleHistory - > itemEffects [ bank ] = itemEffect ;
2017-02-02 05:15:38 +01:00
}
2017-09-05 09:41:48 +02:00
void ClearBankItemEffectHistory ( u8 bank )
2017-02-02 05:15:38 +01:00
{
2017-09-05 09:41:48 +02:00
gBattleResources - > battleHistory - > itemEffects [ bank ] = 0 ;
2017-02-02 05:15:38 +01:00
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_random_less_than ( void )
2017-02-02 05:15:38 +01:00
{
u16 random = Random ( ) ;
2017-02-04 03:34:56 +01:00
if ( random % 256 < gAIScriptPtr [ 1 ] )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
else
gAIScriptPtr + = 6 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_random_greater_than ( void )
2017-02-04 03:34:56 +01:00
{
u16 random = Random ( ) ;
if ( random % 256 > gAIScriptPtr [ 1 ] )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
else
gAIScriptPtr + = 6 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_random_equal ( void )
2017-02-04 03:34:56 +01:00
{
u16 random = Random ( ) ;
if ( random % 256 = = gAIScriptPtr [ 1 ] )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
else
gAIScriptPtr + = 6 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_random_not_equal ( void )
2017-02-04 03:34:56 +01:00
{
u16 random = Random ( ) ;
if ( random % 256 ! = gAIScriptPtr [ 1 ] )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
else
gAIScriptPtr + = 6 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_score ( void )
2017-02-04 03:34:56 +01:00
{
AI_THINKING_STRUCT - > score [ AI_THINKING_STRUCT - > movesetIndex ] + = gAIScriptPtr [ 1 ] ; // add the result to the array of the move consider's score.
if ( AI_THINKING_STRUCT - > score [ AI_THINKING_STRUCT - > movesetIndex ] < 0 ) // if the score is negative, flatten it to 0.
AI_THINKING_STRUCT - > score [ AI_THINKING_STRUCT - > movesetIndex ] = 0 ;
gAIScriptPtr + = 2 ; // AI return.
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_hp_less_than ( void )
2017-02-04 03:34:56 +01:00
{
u16 index ;
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
index = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-08-31 16:48:24 +02:00
index = gBankTarget ;
2017-02-04 03:34:56 +01:00
if ( ( u32 ) ( 100 * gBattleMons [ index ] . hp / gBattleMons [ index ] . maxHP ) < gAIScriptPtr [ 2 ] )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 3 ) ;
else
gAIScriptPtr + = 7 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_hp_more_than ( void )
2017-02-04 03:34:56 +01:00
{
u16 index ;
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
index = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-08-31 16:48:24 +02:00
index = gBankTarget ;
2017-02-04 03:34:56 +01:00
if ( ( u32 ) ( 100 * gBattleMons [ index ] . hp / gBattleMons [ index ] . maxHP ) > gAIScriptPtr [ 2 ] )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 3 ) ;
else
gAIScriptPtr + = 7 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_hp_equal ( void )
2017-02-04 03:34:56 +01:00
{
u16 index ;
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
index = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-08-31 16:48:24 +02:00
index = gBankTarget ;
2017-02-04 03:34:56 +01:00
if ( ( u32 ) ( 100 * gBattleMons [ index ] . hp / gBattleMons [ index ] . maxHP ) = = gAIScriptPtr [ 2 ] )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 3 ) ;
else
gAIScriptPtr + = 7 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_hp_not_equal ( void )
2017-02-04 03:34:56 +01:00
{
u16 index ;
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
index = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-08-31 16:48:24 +02:00
index = gBankTarget ;
2017-02-04 03:34:56 +01:00
if ( ( u32 ) ( 100 * gBattleMons [ index ] . hp / gBattleMons [ index ] . maxHP ) ! = gAIScriptPtr [ 2 ] )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 3 ) ;
else
gAIScriptPtr + = 7 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_status ( void )
2017-02-04 03:34:56 +01:00
{
u16 index ;
u32 arg ;
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
index = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-08-31 16:48:24 +02:00
index = gBankTarget ;
2017-02-04 03:34:56 +01:00
arg = AIScriptRead32 ( gAIScriptPtr + 2 ) ;
if ( ( gBattleMons [ index ] . status1 & arg ) ! = 0 )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 6 ) ;
else
gAIScriptPtr + = 10 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_not_status ( void )
2017-02-04 03:34:56 +01:00
{
u16 index ;
u32 arg ;
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
index = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-08-31 16:48:24 +02:00
index = gBankTarget ;
2017-02-04 03:34:56 +01:00
arg = AIScriptRead32 ( gAIScriptPtr + 2 ) ;
if ( ( gBattleMons [ index ] . status1 & arg ) = = 0 )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 6 ) ;
else
gAIScriptPtr + = 10 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_status2 ( void )
2017-02-04 03:34:56 +01:00
{
u16 index ;
u32 arg ;
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
index = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-08-31 16:48:24 +02:00
index = gBankTarget ;
2017-02-04 03:34:56 +01:00
arg = AIScriptRead32 ( gAIScriptPtr + 2 ) ;
if ( ( gBattleMons [ index ] . status2 & arg ) ! = 0 )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 6 ) ;
else
gAIScriptPtr + = 10 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_not_status2 ( void )
2017-02-04 03:34:56 +01:00
{
u16 index ;
u32 arg ;
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
index = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-08-31 16:48:24 +02:00
index = gBankTarget ;
2017-02-04 03:34:56 +01:00
arg = AIScriptRead32 ( gAIScriptPtr + 2 ) ;
if ( ( gBattleMons [ index ] . status2 & arg ) = = 0 )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 6 ) ;
else
gAIScriptPtr + = 10 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_status3 ( void )
2017-02-04 03:34:56 +01:00
{
u16 index ;
u32 arg ;
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
index = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-08-31 16:48:24 +02:00
index = gBankTarget ;
2017-02-04 03:34:56 +01:00
arg = AIScriptRead32 ( gAIScriptPtr + 2 ) ;
2017-08-31 16:48:24 +02:00
if ( ( gStatuses3 [ index ] & arg ) ! = 0 )
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 6 ) ;
else
gAIScriptPtr + = 10 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_not_status3 ( void )
2017-02-04 03:34:56 +01:00
{
u16 index ;
u32 arg ;
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
index = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-08-31 16:48:24 +02:00
index = gBankTarget ;
2017-02-04 03:34:56 +01:00
arg = AIScriptRead32 ( gAIScriptPtr + 2 ) ;
2017-08-31 16:48:24 +02:00
if ( ( gStatuses3 [ index ] & arg ) = = 0 )
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 6 ) ;
else
gAIScriptPtr + = 10 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_side_affecting ( void )
2017-02-04 03:34:56 +01:00
{
u16 index ;
u32 arg1 , arg2 ;
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
index = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-08-31 16:48:24 +02:00
index = gBankTarget ;
2017-02-04 03:34:56 +01:00
2017-08-31 16:48:24 +02:00
arg1 = GetBankIdentity ( index ) & 1 ;
2017-02-04 03:34:56 +01:00
arg2 = AIScriptRead32 ( gAIScriptPtr + 2 ) ;
2017-09-05 09:41:48 +02:00
if ( ( gSideAffecting [ arg1 ] & arg2 ) ! = 0 )
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 6 ) ;
else
gAIScriptPtr + = 10 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_not_side_affecting ( void )
2017-02-04 03:34:56 +01:00
{
u16 index ;
u32 arg1 , arg2 ;
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
index = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-08-31 16:48:24 +02:00
index = gBankTarget ;
2017-02-04 03:34:56 +01:00
2017-08-31 16:48:24 +02:00
arg1 = GetBankIdentity ( index ) & 1 ;
2017-02-04 03:34:56 +01:00
arg2 = AIScriptRead32 ( gAIScriptPtr + 2 ) ;
2017-09-05 09:41:48 +02:00
if ( ( gSideAffecting [ arg1 ] & arg2 ) = = 0 )
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 6 ) ;
else
gAIScriptPtr + = 10 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_less_than ( void )
2017-02-04 03:34:56 +01:00
{
if ( AI_THINKING_STRUCT - > funcResult < gAIScriptPtr [ 1 ] )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
else
gAIScriptPtr + = 6 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_more_than ( void )
2017-02-04 03:34:56 +01:00
{
if ( AI_THINKING_STRUCT - > funcResult > gAIScriptPtr [ 1 ] )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
else
gAIScriptPtr + = 6 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_equal ( void )
2017-02-04 03:34:56 +01:00
{
if ( AI_THINKING_STRUCT - > funcResult = = gAIScriptPtr [ 1 ] )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
else
gAIScriptPtr + = 6 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_not_equal ( void )
2017-02-04 03:34:56 +01:00
{
if ( AI_THINKING_STRUCT - > funcResult ! = gAIScriptPtr [ 1 ] )
2017-02-02 05:15:38 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
else
gAIScriptPtr + = 6 ;
}
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_less_than_32 ( void )
2017-02-04 03:34:56 +01:00
{
u8 * temp = AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
if ( AI_THINKING_STRUCT - > funcResult < * temp )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 5 ) ;
else
gAIScriptPtr + = 9 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_more_than_32 ( void )
2017-02-04 03:34:56 +01:00
{
u8 * temp = AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
if ( AI_THINKING_STRUCT - > funcResult > * temp )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 5 ) ;
else
gAIScriptPtr + = 9 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_equal_32 ( void )
2017-02-04 03:34:56 +01:00
{
u8 * temp = AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
if ( AI_THINKING_STRUCT - > funcResult = = * temp )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 5 ) ;
else
gAIScriptPtr + = 9 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_not_equal_32 ( void )
2017-02-04 03:34:56 +01:00
{
u8 * temp = AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
if ( AI_THINKING_STRUCT - > funcResult ! = * temp )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 5 ) ;
else
gAIScriptPtr + = 9 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_move ( void )
2017-02-04 03:34:56 +01:00
{
u16 move = AIScriptRead16 ( gAIScriptPtr + 1 ) ;
if ( AI_THINKING_STRUCT - > moveConsidered = = move )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 3 ) ;
else
gAIScriptPtr + = 7 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_not_move ( void )
2017-02-04 03:34:56 +01:00
{
u16 move = AIScriptRead16 ( gAIScriptPtr + 1 ) ;
if ( AI_THINKING_STRUCT - > moveConsidered ! = move )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 3 ) ;
else
gAIScriptPtr + = 7 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_in_bytes ( void )
2017-02-04 03:34:56 +01:00
{
u8 * ptr = AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
while ( * ptr ! = 0xFF )
{
if ( AI_THINKING_STRUCT - > funcResult = = * ptr )
{
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 5 ) ;
return ;
}
ptr + + ;
}
gAIScriptPtr + = 9 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_not_in_bytes ( void )
2017-02-04 03:34:56 +01:00
{
u8 * ptr = AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
while ( * ptr ! = 0xFF )
{
if ( AI_THINKING_STRUCT - > funcResult = = * ptr )
{
gAIScriptPtr + = 9 ;
return ;
}
ptr + + ;
}
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 5 ) ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_in_words ( void )
2017-02-04 03:34:56 +01:00
{
u16 * ptr = ( u16 * ) AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
while ( * ptr ! = 0xFFFF )
{
if ( AI_THINKING_STRUCT - > funcResult = = * ptr )
{
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 5 ) ;
return ;
}
ptr + + ;
}
gAIScriptPtr + = 9 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_not_in_words ( void )
2017-02-04 03:34:56 +01:00
{
u16 * ptr = ( u16 * ) AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
while ( * ptr ! = 0xFFFF )
{
if ( AI_THINKING_STRUCT - > funcResult = = * ptr )
{
gAIScriptPtr + = 9 ;
return ;
}
ptr + + ;
}
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 5 ) ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_user_can_damage ( void )
2017-02-04 03:34:56 +01:00
{
s32 i ;
for ( i = 0 ; i < 4 ; i + + )
{
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ sBank_AI ] . moves [ i ] ! = 0
& & gBattleMoves [ gBattleMons [ sBank_AI ] . moves [ i ] ] . power ! = 0 )
2017-02-04 03:34:56 +01:00
break ;
}
if ( i = = 4 )
gAIScriptPtr + = 5 ;
else
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_user_cant_damage ( void )
2017-02-04 03:34:56 +01:00
{
s32 i ;
for ( i = 0 ; i < 4 ; i + + )
{
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ sBank_AI ] . moves [ i ] ! = 0
& & gBattleMoves [ gBattleMons [ sBank_AI ] . moves [ i ] ] . power ! = 0 )
2017-02-04 03:34:56 +01:00
break ;
}
if ( i ! = 4 )
gAIScriptPtr + = 5 ;
else
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_get_turn_count ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > funcResult = gBattleResults . battleTurnCounter ;
2017-02-04 03:34:56 +01:00
gAIScriptPtr + = 1 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_get_type ( void )
2017-02-04 03:34:56 +01:00
{
u8 typeVar = gAIScriptPtr [ 1 ] ;
switch ( typeVar )
{
case 1 : // player primary type
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > funcResult = gBattleMons [ sBank_AI ] . type1 ;
2017-02-04 03:34:56 +01:00
break ;
case 0 : // enemy primary type
2017-08-31 16:48:24 +02:00
AI_THINKING_STRUCT - > funcResult = gBattleMons [ gBankTarget ] . type1 ;
2017-02-04 03:34:56 +01:00
break ;
case 3 : // player secondary type
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > funcResult = gBattleMons [ sBank_AI ] . type2 ;
2017-02-04 03:34:56 +01:00
break ;
case 2 : // enemy secondary type
2017-08-31 16:48:24 +02:00
AI_THINKING_STRUCT - > funcResult = gBattleMons [ gBankTarget ] . type2 ;
2017-02-04 03:34:56 +01:00
break ;
case 4 : // type of move being pointed to
AI_THINKING_STRUCT - > funcResult = gBattleMoves [ AI_THINKING_STRUCT - > moveConsidered ] . type ;
break ;
}
gAIScriptPtr + = 2 ;
}
2017-09-05 09:41:48 +02:00
static u8 BattleAI_GetWantedBank ( u8 index )
2017-02-04 03:34:56 +01:00
{
switch ( index )
{
2017-09-05 13:01:24 +02:00
case AI_USER :
2017-09-05 09:41:48 +02:00
return sBank_AI ;
2017-09-05 13:01:24 +02:00
case AI_TARGET :
2017-02-04 03:34:56 +01:00
default :
2017-08-31 16:48:24 +02:00
return gBankTarget ;
2017-09-05 13:01:24 +02:00
case AI_USER_PARTNER :
2017-09-05 09:41:48 +02:00
return sBank_AI ^ 2 ;
2017-09-05 13:01:24 +02:00
case AI_TARGET_PARTNER :
2017-08-31 16:48:24 +02:00
return gBankTarget ^ 2 ;
2017-02-04 03:34:56 +01:00
}
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_is_of_type ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
u8 bank = BattleAI_GetWantedBank ( gAIScriptPtr [ 1 ] ) ;
2017-09-04 21:43:13 +02:00
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ bank ] . type1 = = gAIScriptPtr [ 2 ] | | gBattleMons [ bank ] . type2 = = gAIScriptPtr [ 2 ] )
2017-02-04 03:34:56 +01:00
{
AI_THINKING_STRUCT - > funcResult = 1 ;
}
else
{
AI_THINKING_STRUCT - > funcResult = 0 ;
}
gAIScriptPtr + = 3 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_get_last_used_bank_move_power ( void )
2017-02-04 03:34:56 +01:00
{
AI_THINKING_STRUCT - > funcResult = gBattleMoves [ AI_THINKING_STRUCT - > moveConsidered ] . power ;
gAIScriptPtr + = 1 ;
}
__attribute__ ( ( naked ) ) // not even going to try. if it doesnt match in ruby, it wont match in emerald (yet).
2017-09-05 09:41:48 +02:00
static void BattleAICmd_is_most_powerful_move ( void )
2017-02-04 03:34:56 +01:00
{
asm ( " .syntax unified \n \
push { r4 - r7 , lr } \ n \
mov r7 , r10 \ n \
mov r6 , r9 \ n \
mov r5 , r8 \ n \
push { r5 - r7 } \ n \
sub sp , 0x14 \ n \
movs r3 , 0 \ n \
2017-09-05 09:41:48 +02:00
ldr r0 , = sDiscouragedPowerfulMoveEffects \ n \
2017-02-04 03:34:56 +01:00
ldrh r1 , [ r0 ] \ n \
ldr r5 , = 0x0000ffff \ n \
ldr r6 , = gBattleMoves \ n \
2017-08-31 16:48:24 +02:00
ldr r2 , = gBattleResources \ n \
2017-02-04 03:34:56 +01:00
cmp r1 , r5 \ n \
beq _08131F86 \ n \
ldr r0 , [ r2 ] \ n \
ldr r0 , [ r0 , 0x14 ] \ n \
ldrh r1 , [ r0 , 0x2 ] \ n \
lsls r0 , r1 , 1 \ n \
adds r0 , r1 \ n \
lsls r0 , 2 \ n \
adds r0 , r6 \ n \
ldrb r4 , [ r0 ] \ n \
2017-09-05 09:41:48 +02:00
ldr r1 , = sDiscouragedPowerfulMoveEffects \ n \
2017-02-04 03:34:56 +01:00
_08131F76 : \ n \
ldrh r0 , [ r1 ] \ n \
cmp r4 , r0 \ n \
beq _08131F86 \ n \
adds r1 , 0x2 \ n \
adds r3 , 0x1 \ n \
ldrh r0 , [ r1 ] \ n \
cmp r0 , r5 \ n \
bne _08131F76 \ n \
_08131F86 : \ n \
ldr r0 , [ r2 ] \ n \
ldr r0 , [ r0 , 0x14 ] \ n \
ldrh r1 , [ r0 , 0x2 ] \ n \
lsls r0 , r1 , 1 \ n \
adds r0 , r1 \ n \
lsls r0 , 2 \ n \
adds r0 , r6 \ n \
ldrb r0 , [ r0 , 0x1 ] \ n \
cmp r0 , 0x1 \ n \
bhi _08131F9C \ n \
b _08132126 \ n \
_08131F9C : \ n \
lsls r0 , r3 , 1 \ n \
2017-09-05 09:41:48 +02:00
ldr r1 , = sDiscouragedPowerfulMoveEffects \ n \
2017-02-04 03:34:56 +01:00
adds r0 , r1 \ n \
ldrh r3 , [ r0 ] \ n \
ldr r0 , = 0x0000ffff \ n \
cmp r3 , r0 \ n \
beq _08131FAC \ n \
b _08132126 \ n \
_08131FAC : \ n \
2017-09-05 09:41:48 +02:00
ldr r0 , = gDynamicBasePower \ n \
2017-02-04 03:34:56 +01:00
movs r1 , 0 \ n \
strh r1 , [ r0 ] \ n \
2017-08-31 16:48:24 +02:00
ldr r0 , = gBattleStruct \ n \
2017-02-04 03:34:56 +01:00
ldr r0 , [ r0 ] \ n \
strb r1 , [ r0 , 0x13 ] \ n \
2017-08-31 16:48:24 +02:00
ldr r0 , = gBattleScripting \ n \
2017-02-04 03:34:56 +01:00
movs r2 , 0x1 \ n \
strb r2 , [ r0 , 0xE ] \ n \
ldr r0 , = gBattleMoveFlags \ n \
strb r1 , [ r0 ] \ n \
ldr r0 , = gCritMultiplier \ n \
strb r2 , [ r0 ] \ n \
movs r6 , 0 \ n \
mov r9 , r3 \ n \
2017-09-05 09:41:48 +02:00
ldr r2 , = sDiscouragedPowerfulMoveEffects \ n \
2017-02-04 03:34:56 +01:00
ldrh r2 , [ r2 ] \ n \
str r2 , [ sp , 0x10 ] \ n \
_08131FD0 : \ n \
movs r3 , 0 \ n \
ldr r5 , = gBattleMons \ n \
lsls r4 , r6 , 1 \ n \
2017-09-05 09:41:48 +02:00
ldr r7 , = sBank_AI \ n \
2017-02-04 03:34:56 +01:00
lsls r0 , r6 , 2 \ n \
mov r8 , r0 \ n \
adds r1 , r6 , 0x1 \ n \
mov r10 , r1 \ n \
ldr r2 , [ sp , 0x10 ] \ n \
cmp r2 , r9 \ n \
beq _08132014 \ n \
ldr r2 , = gBattleMoves \ n \
ldrb r1 , [ r7 ] \ n \
movs r0 , 0x58 \ n \
muls r0 , r1 \ n \
adds r0 , r4 , r0 \ n \
adds r1 , r5 , 0 \ n \
adds r1 , 0xC \ n \
adds r0 , r1 \ n \
ldrh r1 , [ r0 ] \ n \
lsls r0 , r1 , 1 \ n \
adds r0 , r1 \ n \
lsls r0 , 2 \ n \
adds r0 , r2 \ n \
ldrb r2 , [ r0 ] \ n \
2017-09-05 09:41:48 +02:00
ldr r1 , = sDiscouragedPowerfulMoveEffects \ n \
2017-02-04 03:34:56 +01:00
_08132004 : \ n \
ldrh r0 , [ r1 ] \ n \
cmp r2 , r0 \ n \
beq _08132014 \ n \
adds r1 , 0x2 \ n \
adds r3 , 0x1 \ n \
ldrh r0 , [ r1 ] \ n \
cmp r0 , r9 \ n \
bne _08132004 \ n \
_08132014 : \ n \
ldrb r1 , [ r7 ] \ n \
movs r0 , 0x58 \ n \
muls r0 , r1 \ n \
adds r0 , r4 , r0 \ n \
adds r1 , r5 , 0 \ n \
adds r1 , 0xC \ n \
adds r1 , r0 , r1 \ n \
ldrh r0 , [ r1 ] \ n \
cmp r0 , 0 \ n \
beq _081320C0 \ n \
lsls r0 , r3 , 1 \ n \
2017-09-05 09:41:48 +02:00
ldr r2 , = sDiscouragedPowerfulMoveEffects \ n \
2017-02-04 03:34:56 +01:00
adds r0 , r2 \ n \
ldrh r0 , [ r0 ] \ n \
cmp r0 , r9 \ n \
bne _081320C0 \ n \
ldr r0 , = gBattleMoves \ n \
ldrh r2 , [ r1 ] \ n \
lsls r1 , r2 , 1 \ n \
adds r1 , r2 \ n \
lsls r1 , 2 \ n \
adds r1 , r0 \ n \
ldrb r0 , [ r1 , 0x1 ] \ n \
cmp r0 , 0x1 \ n \
bls _081320C0 \ n \
2017-08-31 16:48:24 +02:00
ldr r5 , = gCurrentMove \ n \
2017-02-04 03:34:56 +01:00
strh r2 , [ r5 ] \ n \
ldrb r0 , [ r7 ] \ n \
2017-08-31 16:48:24 +02:00
ldr r4 , = gBankTarget \ n \
2017-02-04 03:34:56 +01:00
ldrb r1 , [ r4 ] \ n \
2017-09-05 09:41:48 +02:00
bl AI_CalcDmg \ n \
2017-02-04 03:34:56 +01:00
ldrh r0 , [ r5 ] \ n \
ldrb r1 , [ r7 ] \ n \
ldrb r2 , [ r4 ] \ n \
2017-09-05 09:41:48 +02:00
bl TypeCalc \ n \
2017-02-04 03:34:56 +01:00
mov r4 , sp \ n \
add r4 , r8 \ n \
ldr r2 , = gBattleMoveDamage \ n \
2017-08-31 16:48:24 +02:00
ldr r0 , = gBattleResources \ n \
2017-02-04 03:34:56 +01:00
ldr r0 , [ r0 ] \ n \
ldr r0 , [ r0 , 0x14 ] \ n \
adds r0 , 0x18 \ n \
adds r0 , r6 \ n \
ldrb r1 , [ r0 ] \ n \
ldr r0 , [ r2 ] \ n \
muls r0 , r1 \ n \
movs r1 , 0x64 \ n \
bl __divsi3 \ n \
str r0 , [ r4 ] \ n \
cmp r0 , 0 \ n \
bne _081320C8 \ n \
movs r0 , 0x1 \ n \
str r0 , [ r4 ] \ n \
b _081320C8 \ n \
. pool \ n \
_081320C0 : \ n \
mov r1 , sp \ n \
add r1 , r8 \ n \
movs r0 , 0 \ n \
str r0 , [ r1 ] \ n \
_081320C8 : \ n \
mov r6 , r10 \ n \
cmp r6 , 0x3 \ n \
bgt _081320D0 \ n \
b _08131FD0 \ n \
_081320D0 : \ n \
movs r6 , 0 \ n \
2017-08-31 16:48:24 +02:00
ldr r2 , = gBattleResources \ n \
2017-02-04 03:34:56 +01:00
ldr r0 , [ r2 ] \ n \
ldr r0 , [ r0 , 0x14 ] \ n \
ldrb r0 , [ r0 , 0x1 ] \ n \
lsls r0 , 2 \ n \
add r0 , sp \ n \
ldr r1 , [ sp ] \ n \
ldr r0 , [ r0 ] \ n \
ldr r5 , = gAIScriptPtr \ n \
cmp r1 , r0 \ n \
bgt _08132106 \ n \
adds r4 , r2 , 0 \ n \
mov r3 , sp \ n \
_081320EC : \ n \
adds r3 , 0x4 \ n \
adds r6 , 0x1 \ n \
cmp r6 , 0x3 \ n \
bgt _08132106 \ n \
ldr r0 , [ r4 ] \ n \
ldr r0 , [ r0 , 0x14 ] \ n \
ldrb r0 , [ r0 , 0x1 ] \ n \
lsls r0 , 2 \ n \
add r0 , sp \ n \
ldr r1 , [ r3 ] \ n \
ldr r0 , [ r0 ] \ n \
cmp r1 , r0 \ n \
ble _081320EC \ n \
_08132106 : \ n \
cmp r6 , 0x4 \ n \
bne _0813211C \ n \
ldr r0 , [ r2 ] \ n \
ldr r1 , [ r0 , 0x14 ] \ n \
movs r0 , 0x2 \ n \
str r0 , [ r1 , 0x8 ] \ n \
b _08132130 \ n \
. pool \ n \
_0813211C : \ n \
ldr r0 , [ r2 ] \ n \
ldr r1 , [ r0 , 0x14 ] \ n \
movs r0 , 0x1 \ n \
str r0 , [ r1 , 0x8 ] \ n \
b _08132130 \ n \
_08132126 : \ n \
ldr r0 , [ r2 ] \ n \
ldr r1 , [ r0 , 0x14 ] \ n \
movs r0 , 0 \ n \
str r0 , [ r1 , 0x8 ] \ n \
ldr r5 , = gAIScriptPtr \ n \
_08132130 : \ n \
ldr r0 , [ r5 ] \ n \
adds r0 , 0x1 \ n \
str r0 , [ r5 ] \ n \
add sp , 0x14 \ n \
pop { r3 - r5 } \ n \
mov r8 , r3 \ n \
mov r9 , r4 \ n \
mov r10 , r5 \ n \
pop { r4 - r7 } \ n \
pop { r0 } \ n \
bx r0 \ n \
. pool \ n \
. syntax divided " );
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_get_last_used_bank_move ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > funcResult = gLastUsedMovesByBanks [ sBank_AI ] ;
2017-02-04 03:34:56 +01:00
else
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > funcResult = gLastUsedMovesByBanks [ gBankTarget ] ;
2017-02-04 03:34:56 +01:00
gAIScriptPtr + = 2 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_arg_equal ( void )
2017-02-04 03:34:56 +01:00
{
if ( gAIScriptPtr [ 1 ] = = AI_THINKING_STRUCT - > funcResult )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
else
gAIScriptPtr + = 6 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_arg_not_equal ( void )
2017-02-04 03:34:56 +01:00
{
if ( gAIScriptPtr [ 1 ] ! = AI_THINKING_STRUCT - > funcResult )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
else
gAIScriptPtr + = 6 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_would_go_first ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
if ( b_first_side ( sBank_AI , gBankTarget , 1 ) = = gAIScriptPtr [ 1 ] )
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
else
gAIScriptPtr + = 6 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_would_not_go_first ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
if ( b_first_side ( sBank_AI , gBankTarget , 1 ) ! = gAIScriptPtr [ 1 ] )
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
else
gAIScriptPtr + = 6 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_nullsub_2A ( void )
2017-02-04 03:34:56 +01:00
{
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_nullsub_2B ( void )
2017-02-04 03:34:56 +01:00
{
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_count_alive_pokemon ( void )
2017-02-04 03:34:56 +01:00
{
u8 index ;
2017-09-05 09:41:48 +02:00
u8 bankOnField1 , bankOnField2 ;
2017-02-04 03:34:56 +01:00
struct Pokemon * party ;
int i ;
AI_THINKING_STRUCT - > funcResult = 0 ;
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
index = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-08-31 16:48:24 +02:00
index = gBankTarget ;
2017-02-04 03:34:56 +01:00
2017-08-31 16:48:24 +02:00
if ( GetBankSide ( index ) = = 0 )
2017-02-04 03:34:56 +01:00
party = gPlayerParty ;
else
party = gEnemyParty ;
if ( gBattleTypeFlags & BATTLE_TYPE_DOUBLE )
{
u32 status ;
2017-09-05 09:41:48 +02:00
bankOnField1 = gBattlePartyID [ index ] ;
2017-08-31 16:48:24 +02:00
status = GetBankIdentity ( index ) ^ 2 ;
2017-09-05 09:41:48 +02:00
bankOnField2 = gBattlePartyID [ GetBankByPlayerAI ( status ) ] ;
2017-02-04 03:34:56 +01:00
}
2017-09-05 09:41:48 +02:00
else // in singles there's only one bank by side
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
bankOnField1 = gBattlePartyID [ index ] ;
bankOnField2 = gBattlePartyID [ index ] ;
2017-02-04 03:34:56 +01:00
}
for ( i = 0 ; i < 6 ; i + + )
{
2017-09-05 09:41:48 +02:00
if ( i ! = bankOnField1 & & i ! = bankOnField2
2017-02-04 03:34:56 +01:00
& & GetMonData ( & party [ i ] , MON_DATA_HP ) ! = 0
& & GetMonData ( & party [ i ] , MON_DATA_SPECIES2 ) ! = SPECIES_NONE
& & GetMonData ( & party [ i ] , MON_DATA_SPECIES2 ) ! = SPECIES_EGG )
{
AI_THINKING_STRUCT - > funcResult + + ;
}
}
gAIScriptPtr + = 2 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_get_considered_move ( void )
2017-02-04 03:34:56 +01:00
{
AI_THINKING_STRUCT - > funcResult = AI_THINKING_STRUCT - > moveConsidered ;
gAIScriptPtr + = 1 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_get_considered_move_effect ( void )
2017-02-04 03:34:56 +01:00
{
AI_THINKING_STRUCT - > funcResult = gBattleMoves [ AI_THINKING_STRUCT - > moveConsidered ] . effect ;
gAIScriptPtr + = 1 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_get_ability ( void )
2017-02-04 03:34:56 +01:00
{
u8 index ;
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
index = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-08-31 16:48:24 +02:00
index = gBankTarget ;
2017-02-04 03:34:56 +01:00
2017-08-31 16:48:24 +02:00
if ( gActiveBank ! = index )
2017-02-04 03:34:56 +01:00
{
2017-09-04 21:43:13 +02:00
if ( BATTLE_HISTORY - > abilities [ index ] ! = 0 )
2017-02-04 03:34:56 +01:00
{
2017-09-04 21:43:13 +02:00
AI_THINKING_STRUCT - > funcResult = BATTLE_HISTORY - > abilities [ index ] ;
2017-02-04 03:34:56 +01:00
gAIScriptPtr + = 2 ;
return ;
}
2017-09-04 21:43:13 +02:00
2017-02-04 03:34:56 +01:00
// abilities that prevent fleeing.
2017-09-04 21:43:13 +02:00
if ( gBattleMons [ index ] . ability = = ABILITY_SHADOW_TAG
| | gBattleMons [ index ] . ability = = ABILITY_MAGNET_PULL
2017-02-04 03:34:56 +01:00
| | gBattleMons [ index ] . ability = = ABILITY_ARENA_TRAP )
{
AI_THINKING_STRUCT - > funcResult = gBattleMons [ index ] . ability ;
gAIScriptPtr + = 2 ;
return ;
}
if ( gBaseStats [ gBattleMons [ index ] . species ] . ability1 ! = ABILITY_NONE )
{
if ( gBaseStats [ gBattleMons [ index ] . species ] . ability2 ! = ABILITY_NONE )
{
// AI has no knowledge of opponent, so it guesses which ability.
2017-09-05 09:41:48 +02:00
if ( Random ( ) & 1 )
2017-02-04 03:34:56 +01:00
{
AI_THINKING_STRUCT - > funcResult = gBaseStats [ gBattleMons [ index ] . species ] . ability1 ;
}
else
{
AI_THINKING_STRUCT - > funcResult = gBaseStats [ gBattleMons [ index ] . species ] . ability2 ;
}
2017-09-04 21:43:13 +02:00
}
2017-02-04 03:34:56 +01:00
else
{
AI_THINKING_STRUCT - > funcResult = gBaseStats [ gBattleMons [ index ] . species ] . ability1 ; // it's definitely ability 1.
}
}
else
{
AI_THINKING_STRUCT - > funcResult = gBaseStats [ gBattleMons [ index ] . species ] . ability2 ; // AI cant actually reach this part since every mon has at least 1 ability.
}
}
else
{
// The AI knows its own ability.
AI_THINKING_STRUCT - > funcResult = gBattleMons [ index ] . ability ;
}
gAIScriptPtr + = 2 ;
}
# ifdef NONMATCHING
2017-09-05 09:41:48 +02:00
static void BattleAICmd_check_ability ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
u8 bank = BattleAI_GetWantedBank ( gAIScriptPtr [ 1 ] ) ;
u8 ability = gAIScriptPtr [ 2 ] ;
2017-09-04 21:43:13 +02:00
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_TARGET | | gAIScriptPtr [ 1 ] = = AI_TARGET_PARTNER )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
if ( BATTLE_HISTORY - > abilities [ bank ] ! = 0 )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
ability = BATTLE_HISTORY - > abilities [ bank ] ;
AI_THINKING_STRUCT - > funcResult = ability ;
2017-02-04 03:34:56 +01:00
}
2017-09-05 09:41:48 +02:00
// abilities that prevent fleeing.
else if ( gBattleMons [ bank ] . ability = = ABILITY_SHADOW_TAG
| | gBattleMons [ bank ] . ability = = ABILITY_MAGNET_PULL
| | gBattleMons [ bank ] . ability = = ABILITY_ARENA_TRAP )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
ability = gBattleMons [ bank ] . ability ;
}
else if ( gBaseStats [ gBattleMons [ bank ] . species ] . ability1 ! = ABILITY_NONE )
{
if ( gBaseStats [ gBattleMons [ bank ] . species ] . ability2 ! = ABILITY_NONE )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
if ( gBaseStats [ gBattleMons [ bank ] . species ] . ability1 ! = ability
& & gBaseStats [ gBattleMons [ bank ] . species ] . ability2 ! = ability )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
ability = gBaseStats [ gBattleMons [ bank ] . species ] . ability1 ;
2017-02-04 03:34:56 +01:00
}
else
2017-09-05 09:41:48 +02:00
ability = 0 ;
}
else
{
ability = gBaseStats [ gBattleMons [ bank ] . species ] . ability1 ;
2017-02-04 03:34:56 +01:00
}
}
2017-09-05 09:41:48 +02:00
else
{
ability = gBaseStats [ gBattleMons [ bank ] . species ] . ability2 ; // AI cant actually reach this part since every mon has at least 1 ability.
}
2017-02-04 03:34:56 +01:00
}
else
{
2017-09-05 09:41:48 +02:00
// The AI knows its own or partner's ability.
ability = gBattleMons [ bank ] . ability ;
2017-02-04 03:34:56 +01:00
}
2017-09-05 09:41:48 +02:00
if ( ability = = 0 )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > funcResult = 2 ; // unable to answer
2017-02-04 03:34:56 +01:00
}
2017-09-05 09:41:48 +02:00
else if ( ability = = gAIScriptPtr [ 2 ] )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > funcResult = 1 ; // pokemon has the ability we wanted to check
2017-02-04 03:34:56 +01:00
}
else
{
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > funcResult = 0 ; // pokemon doesn't have the ability we wanted to check
2017-02-04 03:34:56 +01:00
}
gAIScriptPtr + = 3 ;
}
# else
__attribute__ ( ( naked ) )
2017-09-05 09:41:48 +02:00
static void BattleAICmd_check_ability ( void )
2017-02-04 03:34:56 +01:00
{
asm ( " .syntax unified \n \
push { r4 - r6 , lr } \ n \
ldr r4 , = gAIScriptPtr \ n \
ldr r0 , [ r4 ] \ n \
ldrb r0 , [ r0 , 0x1 ] \ n \
2017-09-05 09:41:48 +02:00
bl BattleAI_GetWantedBank \ n \
2017-02-04 03:34:56 +01:00
lsls r0 , 24 \ n \
lsrs r5 , r0 , 24 \ n \
ldr r0 , [ r4 ] \ n \
ldrb r3 , [ r0 , 0x2 ] \ n \
ldrb r0 , [ r0 , 0x1 ] \ n \
cmp r0 , 0 \ n \
beq _0813253A \ n \
cmp r0 , 0x2 \ n \
bne _081325BC \ n \
_0813253A : \ n \
2017-08-31 16:48:24 +02:00
ldr r0 , = gBattleResources \ n \
2017-02-04 03:34:56 +01:00
ldr r4 , [ r0 ] \ n \
ldr r1 , [ r4 , 0x18 ] \ n \
adds r1 , 0x40 \ n \
adds r2 , r1 , r5 \ n \
ldrb r1 , [ r2 ] \ n \
adds r6 , r0 , 0 \ n \
cmp r1 , 0 \ n \
beq _0813255C \ n \
adds r3 , r1 , 0 \ n \
ldr r0 , [ r4 , 0x14 ] \ n \
str r3 , [ r0 , 0x8 ] \ n \
b _081325CA \ n \
. pool \ n \
_0813255C : \ n \
ldr r1 , = gBattleMons \ n \
movs r0 , 0x58 \ n \
muls r0 , r5 \ n \
adds r4 , r0 , r1 \ n \
adds r0 , r4 , 0 \ n \
adds r0 , 0x20 \ n \
ldrb r0 , [ r0 ] \ n \
cmp r0 , 0x17 \ n \
beq _08132576 \ n \
cmp r0 , 0x2A \ n \
beq _08132576 \ n \
cmp r0 , 0x47 \ n \
bne _08132588 \ n \
_08132576 : \ n \
movs r0 , 0x58 \ n \
muls r0 , r5 \ n \
adds r0 , r1 \ n \
adds r0 , 0x20 \ n \
ldrb r3 , [ r0 ] \ n \
b _081325CA \ n \
. pool \ n \
_08132588 : \ n \
ldr r2 , = gBaseStats \ n \
ldrh r1 , [ r4 ] \ n \
lsls r0 , r1 , 3 \ n \
subs r0 , r1 \ n \
lsls r0 , 2 \ n \
adds r1 , r0 , r2 \ n \
ldrb r4 , [ r1 , 0x16 ] \ n \
cmp r4 , 0 \ n \
beq _081325B8 \ n \
ldrb r2 , [ r1 , 0x17 ] \ n \
cmp r2 , 0 \ n \
beq _081325B4 \ n \
adds r0 , r3 , 0 \ n \
cmp r4 , r0 \ n \
beq _081325CE \ n \
cmp r2 , r0 \ n \
beq _081325CE \ n \
adds r3 , r4 , 0 \ n \
b _081325CA \ n \
. pool \ n \
_081325B4 : \ n \
ldrb r3 , [ r1 , 0x16 ] \ n \
b _081325CA \ n \
_081325B8 : \ n \
ldrb r3 , [ r1 , 0x17 ] \ n \
b _081325CA \ n \
_081325BC : \ n \
ldr r1 , = gBattleMons \ n \
movs r0 , 0x58 \ n \
muls r0 , r5 \ n \
adds r0 , r1 \ n \
adds r0 , 0x20 \ n \
ldrb r3 , [ r0 ] \ n \
2017-08-31 16:48:24 +02:00
ldr r6 , = gBattleResources \ n \
2017-02-04 03:34:56 +01:00
_081325CA : \ n \
cmp r3 , 0 \ n \
bne _081325E8 \ n \
_081325CE : \ n \
ldr r0 , [ r6 ] \ n \
ldr r1 , [ r0 , 0x14 ] \ n \
movs r0 , 0x2 \ n \
str r0 , [ r1 , 0x8 ] \ n \
ldr r2 , = gAIScriptPtr \ n \
b _08132608 \ n \
. pool \ n \
_081325E8 : \ n \
ldr r0 , = gAIScriptPtr \ n \
ldr r1 , [ r0 ] \ n \
adds r2 , r0 , 0 \ n \
ldrb r1 , [ r1 , 0x2 ] \ n \
cmp r3 , r1 \ n \
bne _08132600 \ n \
ldr r0 , [ r6 ] \ n \
ldr r1 , [ r0 , 0x14 ] \ n \
movs r0 , 0x1 \ n \
b _08132606 \ n \
. pool \ n \
_08132600 : \ n \
ldr r0 , [ r6 ] \ n \
ldr r1 , [ r0 , 0x14 ] \ n \
movs r0 , 0 \ n \
_08132606 : \ n \
str r0 , [ r1 , 0x8 ] \ n \
_08132608 : \ n \
ldr r0 , [ r2 ] \ n \
adds r0 , 0x3 \ n \
str r0 , [ r2 ] \ n \
pop { r4 - r6 } \ n \
pop { r0 } \ n \
bx r0 \ n \
. pool \ n \
. syntax divided " );
}
# endif
2017-09-05 09:41:48 +02:00
static void BattleAICmd_get_highest_type_effectiveness ( void )
2017-02-04 03:34:56 +01:00
{
s32 i ;
2017-09-05 09:41:48 +02:00
u8 * dynamicMoveType ;
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
gDynamicBasePower = 0 ;
dynamicMoveType = & gBattleStruct - > dynamicMoveType ;
* dynamicMoveType = 0 ;
gBattleScripting . dmgMultiplier = 1 ;
2017-02-04 03:34:56 +01:00
gBattleMoveFlags = 0 ;
gCritMultiplier = 1 ;
AI_THINKING_STRUCT - > funcResult = 0 ;
for ( i = 0 ; i < 4 ; i + + )
{
gBattleMoveDamage = 40 ;
2017-09-05 09:41:48 +02:00
gCurrentMove = gBattleMons [ sBank_AI ] . moves [ i ] ;
2017-02-04 03:34:56 +01:00
2017-08-31 16:48:24 +02:00
if ( gCurrentMove )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
TypeCalc ( gCurrentMove , sBank_AI , gBankTarget ) ;
2017-02-04 03:34:56 +01:00
// reduce by 1/3.
if ( gBattleMoveDamage = = 120 )
gBattleMoveDamage = 80 ;
if ( gBattleMoveDamage = = 240 )
gBattleMoveDamage = 160 ;
if ( gBattleMoveDamage = = 30 )
gBattleMoveDamage = 20 ;
if ( gBattleMoveDamage = = 15 )
gBattleMoveDamage = 10 ;
2017-09-05 09:41:48 +02:00
if ( gBattleMoveFlags & MOVESTATUS_NOTAFFECTED )
2017-02-04 03:34:56 +01:00
gBattleMoveDamage = 0 ;
if ( AI_THINKING_STRUCT - > funcResult < gBattleMoveDamage )
AI_THINKING_STRUCT - > funcResult = gBattleMoveDamage ;
}
}
gAIScriptPtr + = 1 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_type_effectiveness ( void )
2017-02-04 03:34:56 +01:00
{
u8 damageVar ;
2017-09-05 09:41:48 +02:00
gDynamicBasePower = 0 ;
gBattleStruct - > dynamicMoveType = 0 ;
gBattleScripting . dmgMultiplier = 1 ;
2017-02-04 03:34:56 +01:00
gBattleMoveFlags = 0 ;
gCritMultiplier = 1 ;
gBattleMoveDamage = 40 ;
2017-08-31 16:48:24 +02:00
gCurrentMove = AI_THINKING_STRUCT - > moveConsidered ;
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
TypeCalc ( gCurrentMove , sBank_AI , gBankTarget ) ;
2017-02-04 03:34:56 +01:00
if ( gBattleMoveDamage = = 120 )
gBattleMoveDamage = 80 ;
if ( gBattleMoveDamage = = 240 )
gBattleMoveDamage = 160 ;
if ( gBattleMoveDamage = = 30 )
gBattleMoveDamage = 20 ;
if ( gBattleMoveDamage = = 15 )
gBattleMoveDamage = 10 ;
2017-09-05 09:41:48 +02:00
if ( gBattleMoveFlags & MOVESTATUS_NOTAFFECTED )
2017-02-04 03:34:56 +01:00
gBattleMoveDamage = 0 ;
// store gBattleMoveDamage in a u8 variable because gAIScriptPtr[1] is a u8.
damageVar = gBattleMoveDamage ;
if ( damageVar = = gAIScriptPtr [ 1 ] )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
else
gAIScriptPtr + = 6 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_nullsub_32 ( void )
2017-02-04 03:34:56 +01:00
{
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_nullsub_33 ( void )
2017-02-04 03:34:56 +01:00
{
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_status_in_party ( void )
2017-02-04 03:34:56 +01:00
{
struct Pokemon * party ;
int i ;
u32 statusToCompareTo ;
u8 index ;
switch ( gAIScriptPtr [ 1 ] )
{
case 1 :
2017-09-05 09:41:48 +02:00
index = sBank_AI ;
2017-02-04 03:34:56 +01:00
break ;
default :
2017-08-31 16:48:24 +02:00
index = gBankTarget ;
2017-02-04 03:34:56 +01:00
break ;
}
2017-08-31 16:48:24 +02:00
party = ( GetBankSide ( index ) = = 0 ) ? gPlayerParty : gEnemyParty ;
2017-02-04 03:34:56 +01:00
statusToCompareTo = AIScriptRead32 ( gAIScriptPtr + 2 ) ;
for ( i = 0 ; i < 6 ; i + + )
{
u16 species = GetMonData ( & party [ i ] , MON_DATA_SPECIES ) ;
u16 hp = GetMonData ( & party [ i ] , MON_DATA_HP ) ;
u32 status = GetMonData ( & party [ i ] , MON_DATA_STATUS ) ;
if ( species ! = SPECIES_NONE & & species ! = SPECIES_EGG & & hp ! = 0 & & status = = statusToCompareTo )
{
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 6 ) ;
return ;
}
}
gAIScriptPtr + = 10 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_status_not_in_party ( void )
2017-02-04 03:34:56 +01:00
{
struct Pokemon * party ;
int i ;
u32 statusToCompareTo ;
u8 index ;
switch ( gAIScriptPtr [ 1 ] )
{
case 1 :
2017-09-05 09:41:48 +02:00
index = sBank_AI ;
2017-02-04 03:34:56 +01:00
break ;
default :
2017-08-31 16:48:24 +02:00
index = gBankTarget ;
2017-02-04 03:34:56 +01:00
break ;
}
2017-08-31 16:48:24 +02:00
party = ( GetBankSide ( index ) = = 0 ) ? gPlayerParty : gEnemyParty ;
2017-02-04 03:34:56 +01:00
statusToCompareTo = AIScriptRead32 ( gAIScriptPtr + 2 ) ;
for ( i = 0 ; i < 6 ; i + + )
{
u16 species = GetMonData ( & party [ i ] , MON_DATA_SPECIES ) ;
u16 hp = GetMonData ( & party [ i ] , MON_DATA_HP ) ;
u32 status = GetMonData ( & party [ i ] , MON_DATA_STATUS ) ;
if ( species ! = SPECIES_NONE & & species ! = SPECIES_EGG & & hp ! = 0 & & status = = statusToCompareTo )
{
gAIScriptPtr + = 10 ; // still bugged in Emerald
}
}
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 6 ) ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_get_weather ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
if ( gBattleWeather & WEATHER_RAIN_ANY )
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > funcResult = 1 ;
2017-09-05 09:41:48 +02:00
if ( gBattleWeather & WEATHER_SANDSTORM_ANY )
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > funcResult = 2 ;
2017-09-05 09:41:48 +02:00
if ( gBattleWeather & WEATHER_SUN_ANY )
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > funcResult = 0 ;
2017-09-05 09:41:48 +02:00
if ( gBattleWeather & WEATHER_HAIL_ANY )
2017-02-04 03:34:56 +01:00
AI_THINKING_STRUCT - > funcResult = 3 ;
gAIScriptPtr + = 1 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_effect ( void )
2017-02-04 03:34:56 +01:00
{
if ( gBattleMoves [ AI_THINKING_STRUCT - > moveConsidered ] . effect = = gAIScriptPtr [ 1 ] )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
else
gAIScriptPtr + = 6 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_not_effect ( void )
2017-02-04 03:34:56 +01:00
{
if ( gBattleMoves [ AI_THINKING_STRUCT - > moveConsidered ] . effect ! = gAIScriptPtr [ 1 ] )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
else
gAIScriptPtr + = 6 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_stat_level_less_than ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
u32 bank ;
2017-02-04 03:34:56 +01:00
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
bank = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-09-05 09:41:48 +02:00
bank = gBankTarget ;
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ bank ] . statStages [ gAIScriptPtr [ 2 ] ] < gAIScriptPtr [ 3 ] )
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 4 ) ;
else
gAIScriptPtr + = 8 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_stat_level_more_than ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
u32 bank ;
2017-02-04 03:34:56 +01:00
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
bank = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-09-05 09:41:48 +02:00
bank = gBankTarget ;
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ bank ] . statStages [ gAIScriptPtr [ 2 ] ] > gAIScriptPtr [ 3 ] )
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 4 ) ;
else
gAIScriptPtr + = 8 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_stat_level_equal ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
u32 bank ;
2017-02-04 03:34:56 +01:00
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
bank = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-09-05 09:41:48 +02:00
bank = gBankTarget ;
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ bank ] . statStages [ gAIScriptPtr [ 2 ] ] = = gAIScriptPtr [ 3 ] )
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 4 ) ;
else
gAIScriptPtr + = 8 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_stat_level_not_equal ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
u32 bank ;
2017-02-04 03:34:56 +01:00
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
bank = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-09-05 09:41:48 +02:00
bank = gBankTarget ;
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ bank ] . statStages [ gAIScriptPtr [ 2 ] ] ! = gAIScriptPtr [ 3 ] )
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 4 ) ;
else
gAIScriptPtr + = 8 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_can_faint ( void )
2017-02-04 03:34:56 +01:00
{
if ( gBattleMoves [ AI_THINKING_STRUCT - > moveConsidered ] . power < 2 )
{
gAIScriptPtr + = 5 ;
return ;
}
2017-09-05 09:41:48 +02:00
gDynamicBasePower = 0 ;
gBattleStruct - > dynamicMoveType = 0 ;
gBattleScripting . dmgMultiplier = 1 ;
2017-02-04 03:34:56 +01:00
gBattleMoveFlags = 0 ;
gCritMultiplier = 1 ;
2017-08-31 16:48:24 +02:00
gCurrentMove = AI_THINKING_STRUCT - > moveConsidered ;
2017-09-05 09:41:48 +02:00
AI_CalcDmg ( sBank_AI , gBankTarget ) ;
TypeCalc ( gCurrentMove , sBank_AI , gBankTarget ) ;
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
gBattleMoveDamage = gBattleMoveDamage * AI_THINKING_STRUCT - > simulatedRNG [ AI_THINKING_STRUCT - > movesetIndex ] / 100 ;
2017-02-04 03:34:56 +01:00
// moves always do at least 1 damage.
if ( gBattleMoveDamage = = 0 )
gBattleMoveDamage = 1 ;
2017-08-31 16:48:24 +02:00
if ( gBattleMons [ gBankTarget ] . hp < = gBattleMoveDamage )
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
else
gAIScriptPtr + = 5 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_cant_faint ( void )
2017-02-04 03:34:56 +01:00
{
if ( gBattleMoves [ AI_THINKING_STRUCT - > moveConsidered ] . power < 2 )
{
gAIScriptPtr + = 5 ;
return ;
}
2017-09-05 09:41:48 +02:00
gDynamicBasePower = 0 ;
gBattleStruct - > dynamicMoveType = 0 ;
gBattleScripting . dmgMultiplier = 1 ;
2017-02-04 03:34:56 +01:00
gBattleMoveFlags = 0 ;
gCritMultiplier = 1 ;
2017-08-31 16:48:24 +02:00
gCurrentMove = AI_THINKING_STRUCT - > moveConsidered ;
2017-09-05 09:41:48 +02:00
AI_CalcDmg ( sBank_AI , gBankTarget ) ;
TypeCalc ( gCurrentMove , sBank_AI , gBankTarget ) ;
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
gBattleMoveDamage = gBattleMoveDamage * AI_THINKING_STRUCT - > simulatedRNG [ AI_THINKING_STRUCT - > movesetIndex ] / 100 ;
2017-02-04 03:34:56 +01:00
// this macro is missing the damage 0 = 1 assumption.
2017-08-31 16:48:24 +02:00
if ( gBattleMons [ gBankTarget ] . hp > gBattleMoveDamage )
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
else
gAIScriptPtr + = 5 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_has_move ( void )
2017-02-04 03:34:56 +01:00
{
int i ;
u16 * temp_ptr = ( u16 * ) ( gAIScriptPtr + 2 ) ;
2017-09-04 21:43:13 +02:00
2017-02-04 03:34:56 +01:00
switch ( gAIScriptPtr [ 1 ] )
{
2017-09-05 13:01:24 +02:00
case AI_USER :
2017-02-04 03:34:56 +01:00
for ( i = 0 ; i < 4 ; i + + )
{
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ sBank_AI ] . moves [ i ] = = * temp_ptr )
2017-02-04 03:34:56 +01:00
break ;
}
if ( i = = 4 )
{
gAIScriptPtr + = 8 ;
return ;
}
else
{
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 4 ) ;
return ;
2017-09-04 21:43:13 +02:00
}
2017-09-05 13:01:24 +02:00
case AI_USER_PARTNER :
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ sBank_AI ^ 2 ] . hp = = 0 )
2017-02-04 03:34:56 +01:00
{
gAIScriptPtr + = 8 ;
return ;
}
else
{
for ( i = 0 ; i < 4 ; i + + )
{
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ sBank_AI ^ 2 ] . moves [ i ] = = * temp_ptr )
2017-02-04 03:34:56 +01:00
break ;
}
}
if ( i = = 4 )
{
gAIScriptPtr + = 8 ;
return ;
}
else
{
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 4 ) ;
return ;
2017-09-04 21:43:13 +02:00
}
2017-09-05 13:01:24 +02:00
case AI_TARGET :
case AI_TARGET_PARTNER :
2017-02-04 03:34:56 +01:00
for ( i = 0 ; i < 4 ; i + + )
{
2017-09-04 21:43:13 +02:00
if ( BATTLE_HISTORY - > usedMoves [ gBankTarget ] . moves [ i ] = = * temp_ptr )
2017-02-04 03:34:56 +01:00
break ;
}
if ( i = = 4 )
{
gAIScriptPtr + = 8 ;
return ;
}
else
{
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 4 ) ;
return ;
}
}
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_dont_have_move ( void )
2017-02-04 03:34:56 +01:00
{
int i ;
u16 * temp_ptr = ( u16 * ) ( gAIScriptPtr + 2 ) ;
2017-09-04 21:43:13 +02:00
2017-02-04 03:34:56 +01:00
switch ( gAIScriptPtr [ 1 ] )
{
2017-09-05 13:01:24 +02:00
case AI_USER :
case AI_USER_PARTNER : // UB: no separate check for user partner
2017-02-04 03:34:56 +01:00
for ( i = 0 ; i < 4 ; i + + )
{
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ sBank_AI ] . moves [ i ] = = * temp_ptr )
2017-02-04 03:34:56 +01:00
break ;
}
if ( i ! = 4 )
{
gAIScriptPtr + = 8 ;
return ;
}
else
{
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 4 ) ;
return ;
}
2017-09-05 13:01:24 +02:00
case AI_TARGET :
case AI_TARGET_PARTNER :
2017-02-04 03:34:56 +01:00
for ( i = 0 ; i < 4 ; i + + )
{
2017-09-04 21:43:13 +02:00
if ( BATTLE_HISTORY - > usedMoves [ gBankTarget ] . moves [ i ] = = * temp_ptr )
2017-02-04 03:34:56 +01:00
break ;
}
if ( i ! = 4 )
{
gAIScriptPtr + = 8 ;
return ;
}
else
{
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 4 ) ;
return ;
}
}
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_move_effect ( void )
2017-02-04 03:34:56 +01:00
{
int i ;
switch ( gAIScriptPtr [ 1 ] )
{
2017-09-05 13:01:24 +02:00
case AI_USER :
case AI_USER_PARTNER :
2017-09-05 09:41:48 +02:00
for ( i = 0 ; i < 4 ; i + + )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ sBank_AI ] . moves [ i ] ! = 0 & & gBattleMoves [ gBattleMons [ sBank_AI ] . moves [ i ] ] . effect = = gAIScriptPtr [ 2 ] )
2017-02-04 03:34:56 +01:00
break ;
}
if ( i = = 4 )
gAIScriptPtr + = 7 ;
else
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 3 ) ;
break ;
2017-09-05 13:01:24 +02:00
case AI_TARGET :
case AI_TARGET_PARTNER :
2017-02-04 03:34:56 +01:00
for ( i = 0 ; i < 4 ; i + + )
{
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ sBank_AI ] . moves [ i ] ! = 0 & & gBattleMoves [ BATTLE_HISTORY - > usedMoves [ gBankTarget ] . moves [ i ] ] . effect = = gAIScriptPtr [ 2 ] )
2017-02-04 03:34:56 +01:00
break ;
}
if ( i = = 4 )
gAIScriptPtr + = 7 ;
else
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 3 ) ;
break ;
}
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_not_move_effect ( void )
2017-02-04 03:34:56 +01:00
{
int i ;
switch ( gAIScriptPtr [ 1 ] )
{
2017-09-05 13:01:24 +02:00
case AI_USER :
case AI_USER_PARTNER :
2017-09-05 09:41:48 +02:00
for ( i = 0 ; i < 4 ; i + + )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ sBank_AI ] . moves [ i ] ! = 0 & & gBattleMoves [ gBattleMons [ sBank_AI ] . moves [ i ] ] . effect = = gAIScriptPtr [ 2 ] )
2017-02-04 03:34:56 +01:00
break ;
}
if ( i ! = 4 )
gAIScriptPtr + = 7 ;
else
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 3 ) ;
break ;
2017-09-05 13:01:24 +02:00
case AI_TARGET :
case AI_TARGET_PARTNER :
2017-02-04 03:34:56 +01:00
for ( i = 0 ; i < 4 ; i + + )
{
2017-09-04 21:43:13 +02:00
if ( BATTLE_HISTORY - > usedMoves [ gBankTarget ] . moves [ i ] & & gBattleMoves [ BATTLE_HISTORY - > usedMoves [ gBankTarget ] . moves [ i ] ] . effect = = gAIScriptPtr [ 2 ] )
2017-02-04 03:34:56 +01:00
break ;
}
if ( i ! = 4 )
gAIScriptPtr + = 7 ;
else
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 3 ) ;
break ;
}
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_any_move_disabled_or_encored ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
u8 bank ;
2017-02-04 03:34:56 +01:00
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
bank = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-09-05 09:41:48 +02:00
bank = gBankTarget ;
2017-02-04 03:34:56 +01:00
if ( gAIScriptPtr [ 2 ] = = 0 )
{
2017-09-05 09:41:48 +02:00
if ( gDisableStructs [ bank ] . disabledMove = = 0 )
2017-02-04 03:34:56 +01:00
{
gAIScriptPtr + = 7 ;
return ;
}
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 3 ) ;
return ;
}
else if ( gAIScriptPtr [ 2 ] ! = 1 ) // ignore the macro if its not 0 or 1.
{
gAIScriptPtr + = 7 ;
return ;
}
2017-09-05 09:41:48 +02:00
else if ( gDisableStructs [ bank ] . encoredMove ! = 0 )
2017-02-04 03:34:56 +01:00
{
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 3 ) ;
return ;
}
gAIScriptPtr + = 7 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_curr_move_disabled_or_encored ( void )
2017-02-04 03:34:56 +01:00
{
switch ( gAIScriptPtr [ 1 ] )
{
2017-09-05 09:41:48 +02:00
case 0 :
2017-09-04 21:43:13 +02:00
if ( gDisableStructs [ gActiveBank ] . disabledMove = = AI_THINKING_STRUCT - > moveConsidered )
2017-02-04 03:34:56 +01:00
{
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
return ;
}
gAIScriptPtr + = 6 ;
return ;
2017-09-05 09:41:48 +02:00
case 1 :
2017-09-04 21:43:13 +02:00
if ( gDisableStructs [ gActiveBank ] . encoredMove = = AI_THINKING_STRUCT - > moveConsidered )
2017-02-04 03:34:56 +01:00
{
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
return ;
}
gAIScriptPtr + = 6 ;
return ;
default :
gAIScriptPtr + = 6 ;
return ;
}
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_flee ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > aiAction | = ( AI_ACTION_DONE | AI_ACTION_FLEE | AI_ACTION_DO_NOT_ATTACK ) ; // what matters is UNK2 being enabled.
2017-02-04 03:34:56 +01:00
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_random_100 ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
u8 safariFleeRate = gBattleStruct - > field_7B * 5 ; // safari flee rate, from 0-20
2017-02-04 03:34:56 +01:00
if ( ( u8 ) ( Random ( ) % 100 ) < safariFleeRate )
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
else
gAIScriptPtr + = 5 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_watch ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > aiAction | = ( AI_ACTION_DONE | AI_ACTION_WATCH | AI_ACTION_DO_NOT_ATTACK ) ; // what matters is UNK3 being enabled.
2017-02-04 03:34:56 +01:00
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_get_hold_effect ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
u8 bank ;
2017-02-04 03:34:56 +01:00
u16 status ;
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
bank = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-09-05 09:41:48 +02:00
bank = gBankTarget ;
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
if ( gActiveBank ! = bank )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > funcResult = ItemId_GetHoldEffect ( BATTLE_HISTORY - > itemEffects [ bank ] ) ;
2017-02-04 03:34:56 +01:00
}
else
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > funcResult = ItemId_GetHoldEffect ( gBattleMons [ bank ] . item ) ;
2017-02-04 03:34:56 +01:00
gAIScriptPtr + = 2 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_holds_item ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
u8 bank = BattleAI_GetWantedBank ( gAIScriptPtr [ 1 ] ) ;
2017-02-04 03:34:56 +01:00
u16 item ;
u8 var1 , var2 ;
2017-09-04 21:43:13 +02:00
2017-09-05 09:41:48 +02:00
if ( ( bank & 1 ) = = ( sBank_AI & 1 ) )
item = gBattleMons [ bank ] . item ;
2017-02-04 03:34:56 +01:00
else
2017-09-05 09:41:48 +02:00
item = BATTLE_HISTORY - > itemEffects [ bank ] ;
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
// UB: doesn't properly read an unaligned u16
2017-02-04 03:34:56 +01:00
var2 = gAIScriptPtr [ 2 ] ;
var1 = gAIScriptPtr [ 3 ] ;
2017-09-04 21:43:13 +02:00
2017-09-05 09:41:48 +02:00
if ( ( var1 | var2 ) = = item )
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 4 ) ;
else
gAIScriptPtr + = 8 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_get_gender ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
u8 bank ;
2017-02-04 03:34:56 +01:00
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
bank = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-09-05 09:41:48 +02:00
bank = gBankTarget ;
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > funcResult = GetGenderFromSpeciesAndPersonality ( gBattleMons [ bank ] . species , gBattleMons [ bank ] . personality ) ;
2017-02-04 03:34:56 +01:00
gAIScriptPtr + = 2 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_is_first_turn ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
u8 bank ;
2017-02-04 03:34:56 +01:00
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
bank = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-09-05 09:41:48 +02:00
bank = gBankTarget ;
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > funcResult = gDisableStructs [ bank ] . isFirstTurn ;
2017-02-04 03:34:56 +01:00
gAIScriptPtr + = 2 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_get_stockpile_count ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
u8 bank ;
2017-02-04 03:34:56 +01:00
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
bank = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-09-05 09:41:48 +02:00
bank = gBankTarget ;
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > funcResult = gDisableStructs [ bank ] . stockpileCounter ;
2017-02-04 03:34:56 +01:00
gAIScriptPtr + = 2 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_is_double_battle ( void )
2017-02-04 03:34:56 +01:00
{
AI_THINKING_STRUCT - > funcResult = gBattleTypeFlags & BATTLE_TYPE_DOUBLE ;
gAIScriptPtr + = 1 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_get_used_held_item ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
u8 bank ;
2017-02-04 03:34:56 +01:00
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
bank = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-09-05 09:41:48 +02:00
bank = gBankTarget ;
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
// This is likely a leftover from Ruby's code and its ugly ewram access
# ifdef NONMATCHING
AI_THINKING_STRUCT - > funcResult = gBattleStruct - > usedHeldItems [ bank ] ;
# else
AI_THINKING_STRUCT - > funcResult = * ( u8 * ) ( ( u8 * ) ( gBattleStruct ) + 0xB8 + ( bank * 2 ) ) ;
# endif // NONMATCHING
2017-02-04 03:34:56 +01:00
gAIScriptPtr + = 2 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_get_move_type_from_result ( void )
2017-02-04 03:34:56 +01:00
{
AI_THINKING_STRUCT - > funcResult = gBattleMoves [ AI_THINKING_STRUCT - > funcResult ] . type ;
gAIScriptPtr + = 1 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_get_move_power_from_result ( void )
2017-02-04 03:34:56 +01:00
{
AI_THINKING_STRUCT - > funcResult = gBattleMoves [ AI_THINKING_STRUCT - > funcResult ] . power ;
gAIScriptPtr + = 1 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_get_move_effect_from_result ( void )
2017-02-04 03:34:56 +01:00
{
AI_THINKING_STRUCT - > funcResult = gBattleMoves [ AI_THINKING_STRUCT - > funcResult ] . effect ;
gAIScriptPtr + = 1 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_get_protect_count ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
u8 bank ;
2017-02-04 03:34:56 +01:00
2017-09-05 13:01:24 +02:00
if ( gAIScriptPtr [ 1 ] = = AI_USER )
2017-09-05 09:41:48 +02:00
bank = sBank_AI ;
2017-02-04 03:34:56 +01:00
else
2017-09-05 09:41:48 +02:00
bank = gBankTarget ;
2017-02-04 03:34:56 +01:00
2017-09-05 09:41:48 +02:00
AI_THINKING_STRUCT - > funcResult = gDisableStructs [ bank ] . protectUses ;
2017-02-04 03:34:56 +01:00
gAIScriptPtr + = 2 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_nullsub_52 ( void )
2017-02-04 03:34:56 +01:00
{
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_nullsub_53 ( void )
2017-02-04 03:34:56 +01:00
{
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_nullsub_54 ( void )
2017-02-04 03:34:56 +01:00
{
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_nullsub_55 ( void )
2017-02-04 03:34:56 +01:00
{
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_nullsub_56 ( void )
2017-02-04 03:34:56 +01:00
{
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_nullsub_57 ( void )
2017-02-04 03:34:56 +01:00
{
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_call ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
AIStackPushVar ( gAIScriptPtr + 5 ) ;
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_jump ( void )
2017-02-04 03:34:56 +01:00
{
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_end ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
if ( AIStackPop ( ) = = 0 )
AI_THINKING_STRUCT - > aiAction | = AI_ACTION_DONE ;
2017-02-04 03:34:56 +01:00
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_level_cond ( void )
2017-02-04 03:34:56 +01:00
{
switch ( gAIScriptPtr [ 1 ] )
{
case 0 : // greater than
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ sBank_AI ] . level > gBattleMons [ gBankTarget ] . level )
2017-02-04 03:34:56 +01:00
{
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
return ;
}
gAIScriptPtr + = 6 ;
return ;
case 1 : // less than
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ sBank_AI ] . level < gBattleMons [ gBankTarget ] . level )
2017-02-04 03:34:56 +01:00
{
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
return ;
}
gAIScriptPtr + = 6 ;
return ;
case 2 : // equal
2017-09-05 09:41:48 +02:00
if ( gBattleMons [ sBank_AI ] . level = = gBattleMons [ gBankTarget ] . level )
2017-02-04 03:34:56 +01:00
{
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
return ;
}
gAIScriptPtr + = 6 ;
return ;
}
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_target_taunted ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-04 21:43:13 +02:00
if ( gDisableStructs [ gBankTarget ] . tauntTimer1 ! = 0 )
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
else
gAIScriptPtr + = 5 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_target_not_taunted ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-04 21:43:13 +02:00
if ( gDisableStructs [ gBankTarget ] . tauntTimer1 = = 0 )
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
else
gAIScriptPtr + = 5 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_target_is_ally ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
if ( ( sBank_AI & 1 ) = = ( gBankTarget & 1 ) )
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 1 ) ;
else
gAIScriptPtr + = 5 ;
}
2017-09-05 09:41:48 +02:00
static void BattleAICmd_if_flash_fired ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-05 09:41:48 +02:00
u8 index = BattleAI_GetWantedBank ( gAIScriptPtr [ 1 ] ) ;
2017-09-04 21:43:13 +02:00
2017-09-05 09:41:48 +02:00
if ( gBattleResources - > flags - > flags [ index ] & UNKNOWN_FLAG_FLASH_FIRE )
2017-02-04 03:34:56 +01:00
gAIScriptPtr = AIScriptReadPtr ( gAIScriptPtr + 2 ) ;
else
gAIScriptPtr + = 6 ;
}
2017-09-05 09:41:48 +02:00
static void AIStackPushVar ( u8 * var )
2017-02-04 03:34:56 +01:00
{
2017-09-04 21:43:13 +02:00
gBattleResources - > AI_ScriptsStack - > ptr [ gBattleResources - > AI_ScriptsStack - > size + + ] = var ;
2017-02-04 03:34:56 +01:00
}
2017-09-05 09:41:48 +02:00
static void AIStackPushVar_cursor ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-04 21:43:13 +02:00
gBattleResources - > AI_ScriptsStack - > ptr [ gBattleResources - > AI_ScriptsStack - > size + + ] = gAIScriptPtr ;
2017-02-04 03:34:56 +01:00
}
2017-09-05 09:41:48 +02:00
static bool8 AIStackPop ( void )
2017-02-04 03:34:56 +01:00
{
2017-09-04 21:43:13 +02:00
if ( gBattleResources - > AI_ScriptsStack - > size ! = 0 )
2017-02-04 03:34:56 +01:00
{
2017-09-04 21:43:13 +02:00
- - gBattleResources - > AI_ScriptsStack - > size ;
gAIScriptPtr = gBattleResources - > AI_ScriptsStack - > ptr [ gBattleResources - > AI_ScriptsStack - > size ] ;
2017-02-04 03:34:56 +01:00
return TRUE ;
}
else
return FALSE ;
}