File size: 22,514 Bytes
6c7a453 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 | from typing import List, Tuple, Optional, Dict, Any
from dataclasses import dataclass
import random
# Priority level constants based on official Pokemon mechanics
class PriorityLevels:
HELPING_HAND = 5 # Helping Hand (not implemented yet)
PROTECT = 4 # Protect, Detect, Baneful Bunker
FAKE_OUT = 3 # Fake Out, Quick Guard (not implemented yet)
EXTREME_SPEED = 2 # Extreme Speed, Feint
QUICK_ATTACK = 1 # Quick Attack, Aqua Jet, Sucker Punch, Baby-Doll Eyes
NORMAL = 0 # Normal moves
VITAL_THROW = -1 # Vital Throw (not implemented yet)
BEAK_BLAST = -3 # Beak Blast
AVALANCHE = -4 # Avalanche, Revenge
ROAR = -6 # Roar, Whirlwind (not implemented yet)
MIN_PRIORITY = -6
MAX_PRIORITY = 5
@classmethod
def validate_priority(cls, priority: int) -> int:
return max(cls.MIN_PRIORITY, min(cls.MAX_PRIORITY, priority))
@dataclass
class BattleAction:
pokemon: Any # Pokemon object
move: Any # Move object
target: Any # Target Pokemon object
effective_priority: float
is_priority_counter: bool = False
counter_target_move: Optional[Any] = None
def __post_init__(self):
pass
def to_dict(self) -> Dict[str, Any]:
return {
'pokemon_name': getattr(self.pokemon, 'name', 'Unknown'),
'move_name': getattr(self.move, 'name', 'Unknown'),
'target_name': getattr(self.target, 'name', 'Unknown'),
'effective_priority': self.effective_priority,
'is_priority_counter': self.is_priority_counter,
'counter_target_move_name': getattr(self.counter_target_move, 'name', None) if self.counter_target_move else None
}
def can_execute(self) -> bool:
"""Check if this action can be executed (Pokemon not fainted, move has PP, etc.)"""
# Check if Pokemon is fainted
if hasattr(self.pokemon, 'is_fainted') and self.pokemon.is_fainted():
return False
# Check if Pokemon has current_hp <= 0
if hasattr(self.pokemon, 'current_hp') and self.pokemon.current_hp <= 0:
return False
# Check if move has PP
if hasattr(self.move, 'pp') and self.move.pp <= 0:
return False
# Check if this is a failed priority counter
if self.effective_priority == -999:
return False
return True
def get_speed_for_tiebreaker(self) -> int:
return getattr(self.pokemon, 'speed', 0)
class PriorityResolver:
def __init__(self):
self.debug_enabled = True
self.sucker_punch_handler = SuckerPunchHandler()
def resolve_turn_order(self, player_action: BattleAction, opponent_action: BattleAction) -> List[BattleAction]:
if self.debug_enabled:
print(f"DEBUG: Resolving turn order - Player: {player_action.move.name} (priority {player_action.effective_priority}), "
f"Opponent: {opponent_action.move.name} (priority {opponent_action.effective_priority})")
# Check for priority counters first
actions_with_counters = self.check_priority_counters([player_action, opponent_action])
# Sort actions by effective priority (descending) and speed (descending)
sorted_actions = sorted(actions_with_counters, key=self._get_sort_key, reverse=True)
if self.debug_enabled:
for i, action in enumerate(sorted_actions):
print(f"DEBUG: Turn order {i+1}: {action.pokemon.name}'s {action.move.name} "
f"(priority: {action.effective_priority}, speed: {action.pokemon.speed})")
return sorted_actions
def check_priority_counters(self, actions: List[BattleAction]) -> List[BattleAction]:
if len(actions) != 2:
return actions
action1, action2 = actions
# Check if either move is a priority counter
action1_is_counter = self._is_priority_counter_move(action1.move)
action2_is_counter = self._is_priority_counter_move(action2.move)
if not action1_is_counter and not action2_is_counter:
return actions
# Handle priority counter logic
updated_actions = []
for action in actions:
other_action = action2 if action == action1 else action1
if self._is_priority_counter_move(action.move):
# Check if the priority counter can succeed
if self._can_priority_counter_succeed(action.move, other_action.move):
# Priority counter succeeds - gets highest priority
action.is_priority_counter = True
action.counter_target_move = other_action.move
action.effective_priority = self._get_counter_priority(action.move)
if self.debug_enabled:
print(f"DEBUG: {action.pokemon.name}'s {action.move.name} priority counter succeeded! "
f"New priority: {action.effective_priority}")
else:
# Priority counter fails - move fails completely
action.effective_priority = -999 # Ensure it goes last and fails
if self.debug_enabled:
print(f"DEBUG: {action.pokemon.name}'s {action.move.name} priority counter failed!")
updated_actions.append(action)
return updated_actions
def calculate_effective_priority(self, pokemon: Any, move: Any) -> int:
base_priority = getattr(move, 'priority', 0)
# Apply any priority modifiers from abilities, items, etc.
effective_priority = base_priority
# Check for ability-based priority modification (e.g. Stall)
if hasattr(pokemon, 'ability') and hasattr(pokemon.ability, 'get_priority_modification'):
# Stall has -0.1 priority, which makes it go last in its priority bracket
# We add this to the base priority for sorting
effective_priority += pokemon.ability.get_priority_modification()
# Validate and clamp priority (preserve float for sorting)
clamped = PriorityLevels.validate_priority(int(effective_priority))
# Add back the fractional part
effective_priority = clamped + (effective_priority - int(effective_priority))
if self.debug_enabled:
print(f"DEBUG: {pokemon.name}'s {move.name} effective priority: {effective_priority}")
return effective_priority
def _get_sort_key(self, action: BattleAction) -> Tuple[int, int, float]:
return (
action.effective_priority,
getattr(action.pokemon, 'speed', 0),
random.random() # Random tiebreaker for equal priority and speed
)
def _is_priority_counter_move(self, move: Any) -> bool:
# Use SuckerPunchHandler to check for Sucker Punch
return self.sucker_punch_handler.is_sucker_punch(move)
def _can_priority_counter_succeed(self, counter_move: Any, target_move: Any) -> bool:
if self.sucker_punch_handler.is_sucker_punch(counter_move):
return self.sucker_punch_handler.check_success_condition(target_move)
# Future priority counters can be added here
return False
def _get_counter_priority(self, counter_move: Any) -> int:
if self.sucker_punch_handler.is_sucker_punch(counter_move):
return self.sucker_punch_handler.priority_when_successful
# Default to normal priority for unknown counters
return PriorityLevels.NORMAL
def get_priority_counter_failure_message(self, counter_move: Any) -> str:
if self.sucker_punch_handler.is_sucker_punch(counter_move):
return self.sucker_punch_handler.get_failure_message()
return "The move failed!"
def get_priority_counter_success_message(self, counter_move: Any, attacker_name: str, target_name: str, target_move_name: str) -> str:
if self.sucker_punch_handler.is_sucker_punch(counter_move):
return self.sucker_punch_handler.get_success_message(attacker_name, target_name, target_move_name)
return f"{attacker_name} intercepted {target_name}'s {target_move_name}!"
def set_debug_mode(self, enabled: bool):
"""Enable or disable debug logging"""
self.debug_enabled = enabled
class PriorityCounterConditions:
SUCKER_PUNCH = {
'name': 'sucker_punch',
'counters': ['physical', 'special'], # Move categories that can be countered
'fails_against': ['status'], # Move categories that cause failure
'priority_when_successful': PriorityLevels.QUICK_ATTACK,
'failure_message': "But it failed!"
}
@classmethod
def get_counter_config(cls, move_name: str) -> Optional[Dict[str, Any]]:
move_name_normalized = move_name.lower().replace(' ', '_').replace('-', '_')
# Check all defined counter configurations
for attr_name in dir(cls):
if not attr_name.startswith('_') and attr_name.isupper():
config = getattr(cls, attr_name)
if isinstance(config, dict) and config.get('name') == move_name_normalized:
return config
return None
class SuckerPunchHandler:
def __init__(self):
"""Initialize the Sucker Punch handler"""
self.move_name = "sucker punch"
self.priority_when_successful = PriorityLevels.QUICK_ATTACK
self.failure_message = "But it failed!"
self.success_message_template = "{attacker} intercepted {target}'s {target_move}!"
def check_success_condition(self, target_move: Any) -> bool:
if not target_move:
return False
# Get the target move's category
target_category = getattr(target_move, 'category', '').lower()
# Sucker Punch succeeds against attacking moves (physical and special)
return target_category in ['physical', 'special']
def check_failure_condition(self, target_move: Any) -> bool:
if not target_move:
return True # Fail if no target move (e.g., switching)
# Get the target move's category
target_category = getattr(target_move, 'category', '').lower()
# Sucker Punch fails against status moves
return target_category == 'status'
def get_success_message(self, attacker_name: str, target_name: str, target_move_name: str) -> str:
# Capitalize Pokémon names and provide more detailed success messages based on the target move
attacker_name = attacker_name.capitalize()
target_name = target_name.capitalize()
if target_move_name.lower() in ['quick-attack', 'aqua-jet', 'bullet-punch', 'mach-punch']:
return f"{attacker_name} anticipated {target_name}'s priority move and struck first with Sucker Punch!"
elif target_move_name.lower() in ['extreme-speed']:
return f"{attacker_name} intercepted {target_name}'s Extreme Speed with a perfectly timed Sucker Punch!"
else:
return f"{attacker_name} read {target_name}'s attack and countered with Sucker Punch!"
def get_failure_message(self) -> str:
return self.failure_message
def get_effective_priority(self, target_move: Any) -> int:
if self.check_success_condition(target_move):
return self.priority_when_successful
else:
# Return very low priority to ensure failed Sucker Punch goes last
return -999
def validate_target_move_category(self, target_move: Any) -> Tuple[bool, str]:
if not target_move:
return False, self.get_failure_message()
if self.check_success_condition(target_move):
# Don't return success message here - it will be handled during move execution
return True, ""
else:
return False, self.get_failure_message()
def is_sucker_punch(self, move: Any) -> bool:
if not move:
return False
move_name = getattr(move, 'name', '').lower()
return move_name == self.move_name
class ActionQueue:
def __init__(self, priority_resolver: PriorityResolver):
"""
Initialize the action queue.
Args:
priority_resolver: The priority resolver to use for action processing
"""
self.priority_resolver = priority_resolver
self.actions: List[BattleAction] = []
self.executed_actions: List[BattleAction] = []
self.debug_enabled = True
def add_action(self, pokemon: Any, move: Any, target: Any) -> BattleAction:
"""
Add a battle action to the queue.
Args:
pokemon: The Pokemon using the move
move: The move being used
target: The target Pokemon
Returns:
BattleAction: The created battle action
"""
action = create_battle_action(pokemon, move, target, self.priority_resolver)
self.actions.append(action)
if self.debug_enabled:
print(f"DEBUG: Added action - {pokemon.name}'s {move.name} (priority: {action.effective_priority})")
return action
def add_actions_from_moves(self, move_pairs: List[Tuple[Any, Any, Any]]) -> List[BattleAction]:
"""
Add multiple battle actions from a list of (pokemon, move, target) tuples.
Args:
move_pairs: List of (pokemon, move, target) tuples
Returns:
List[BattleAction]: The created battle actions
"""
created_actions = []
for pokemon, move, target in move_pairs:
action = self.add_action(pokemon, move, target)
created_actions.append(action)
return created_actions
def sort_by_priority(self) -> List[BattleAction]:
"""
Sort actions by priority and speed, applying priority counter logic.
Returns:
List[BattleAction]: Actions sorted by execution order (first to last)
"""
if len(self.actions) == 0:
return []
# Apply priority counter logic if there are exactly 2 actions
if len(self.actions) == 2:
processed_actions = self.priority_resolver.check_priority_counters(self.actions.copy())
else:
processed_actions = self.actions.copy()
# Sort actions by priority (descending), then speed (descending), then random tiebreaker
sorted_actions = sorted(
processed_actions,
key=lambda action: (
action.effective_priority,
action.get_speed_for_tiebreaker(),
random.random()
),
reverse=True
)
if self.debug_enabled:
print("DEBUG: Action queue sorted by priority:")
for i, action in enumerate(sorted_actions):
print(f" {i+1}. {action.pokemon.name}'s {action.move.name} "
f"(priority: {action.effective_priority}, speed: {action.get_speed_for_tiebreaker()})")
return sorted_actions
def get_executable_actions(self) -> List[BattleAction]:
"""
Get actions that can be executed (Pokemon not fainted, move has PP, etc.).
Returns:
List[BattleAction]: Actions that can be executed
"""
executable = []
for action in self.actions:
if action.can_execute():
executable.append(action)
elif self.debug_enabled:
print(f"DEBUG: Action {action.pokemon.name}'s {action.move.name} cannot be executed")
return executable
def execute_next_action(self) -> Optional[BattleAction]:
"""
Execute the next action in priority order.
Returns:
Optional[BattleAction]: The executed action, or None if no actions available
"""
if not self.actions:
return None
# Get sorted actions
sorted_actions = self.sort_by_priority()
# Find the first executable action
for action in sorted_actions:
if action.can_execute() and action not in self.executed_actions:
self.executed_actions.append(action)
if self.debug_enabled:
print(f"DEBUG: Executing action - {action.pokemon.name}'s {action.move.name}")
return action
return None
def execute_all_actions(self) -> List[BattleAction]:
"""
Execute all actions in priority order.
Returns:
List[BattleAction]: List of executed actions in execution order
"""
executed = []
while True:
action = self.execute_next_action()
if action is None:
break
executed.append(action)
return executed
def clear(self):
"""Clear all actions from the queue"""
self.actions.clear()
self.executed_actions.clear()
if self.debug_enabled:
print("DEBUG: Action queue cleared")
def get_action_summary(self) -> Dict[str, Any]:
"""
Get a summary of the current action queue state.
Returns:
Dict: Summary information about the queue
"""
return {
'total_actions': len(self.actions),
'executed_actions': len(self.executed_actions),
'remaining_actions': len(self.actions) - len(self.executed_actions),
'actions': [action.to_dict() for action in self.actions],
'executed': [action.to_dict() for action in self.executed_actions]
}
def set_debug_mode(self, enabled: bool):
"""Enable or disable debug logging"""
self.debug_enabled = enabled
def create_battle_action(pokemon: Any, move: Any, target: Any, priority_resolver: PriorityResolver) -> BattleAction:
"""
Factory function to create a BattleAction with calculated priority.
Args:
pokemon: The Pokemon using the move
move: The move being used
target: The target Pokemon
priority_resolver: The priority resolver to use for calculations
Returns:
BattleAction: A battle action with calculated effective priority
"""
effective_priority = priority_resolver.calculate_effective_priority(pokemon, move)
return BattleAction(
pokemon=pokemon,
move=move,
target=target,
effective_priority=effective_priority
)
def create_battle_actions_from_pokemon_moves(
pokemon_move_pairs: List[Tuple[Any, str, Any]],
priority_resolver: PriorityResolver
) -> List[BattleAction]:
"""
Create battle actions from a list of Pokemon and move name pairs.
Args:
pokemon_move_pairs: List of (pokemon, move_name, target) tuples
priority_resolver: The priority resolver to use for calculations
Returns:
List[BattleAction]: List of created battle actions
"""
actions = []
for pokemon, move_name, target in pokemon_move_pairs:
# Get the move object from the Pokemon's moveset
move = None
if hasattr(pokemon, 'moves') and isinstance(pokemon.moves, dict):
move = pokemon.moves.get(move_name)
if move is None:
print(f"WARNING: Move '{move_name}' not found for {getattr(pokemon, 'name', 'Unknown')}")
continue
# Create the battle action
action = create_battle_action(pokemon, move, target, priority_resolver)
actions.append(action)
return actions
def sort_actions_by_priority(actions: List[BattleAction]) -> List[BattleAction]:
"""
Sort battle actions by priority and speed.
Args:
actions: List of battle actions to sort
Returns:
List[BattleAction]: Actions sorted by execution order (first to last)
"""
return sorted(
actions,
key=lambda action: (
action.effective_priority,
action.get_speed_for_tiebreaker(),
random.random() # Random tiebreaker
),
reverse=True
)
def filter_executable_actions(actions: List[BattleAction]) -> List[BattleAction]:
"""
Filter battle actions to only include those that can be executed.
Args:
actions: List of battle actions to filter
Returns:
List[BattleAction]: Actions that can be executed
"""
return [action for action in actions if action.can_execute()]
def create_action_queue_for_turn(
player_pokemon: Any,
player_move_name: str,
opponent_pokemon: Any,
opponent_move_name: str,
priority_resolver: PriorityResolver
) -> ActionQueue:
"""
Create an action queue for a battle turn with player and opponent moves.
Args:
player_pokemon: The player's Pokemon
player_move_name: Name of the player's selected move
opponent_pokemon: The opponent's Pokemon
opponent_move_name: Name of the opponent's selected move
priority_resolver: The priority resolver to use
Returns:
ActionQueue: Configured action queue for the turn
"""
queue = ActionQueue(priority_resolver)
# Add player action
player_move = player_pokemon.moves.get(player_move_name) if hasattr(player_pokemon, 'moves') else None
if player_move:
queue.add_action(player_pokemon, player_move, opponent_pokemon)
# Add opponent action
opponent_move = opponent_pokemon.moves.get(opponent_move_name) if hasattr(opponent_pokemon, 'moves') else None
if opponent_move:
queue.add_action(opponent_pokemon, opponent_move, player_pokemon)
return queue |