PokéLLMon 源码解析(一)(4)

本文涉及的产品
全局流量管理 GTM,标准版 1个月
云解析 DNS,旗舰版 1个月
公共DNS(含HTTPDNS解析),每月1000万次HTTP解析
简介: PokéLLMon 源码解析(一)(4)

 PokéLLMon 源码解析(一)(3)https://developer.aliyun.com/article/1483589

.\PokeLLMon\poke_env\environment\battle.py

# 导入所需模块
from logging import Logger
from typing import Any, Dict, List, Optional, Union
# 导入自定义模块
from poke_env.environment.abstract_battle import AbstractBattle
from poke_env.environment.move import Move
from poke_env.environment.pokemon import Pokemon
from poke_env.environment.pokemon_type import PokemonType
# 定义 Battle 类,继承自 AbstractBattle 类
class Battle(AbstractBattle):
    # 初始化方法
    def __init__(
        self,
        battle_tag: str,
        username: str,
        logger: Logger,
        gen: int,
        save_replays: Union[str, bool] = False,
    ):
        # 调用父类的初始化方法
        super(Battle, self).__init__(battle_tag, username, logger, save_replays, gen)
        # 初始化回合选择属性
        self._available_moves: List[Move] = []
        self._available_switches: List[Pokemon] = []
        self._can_dynamax: bool = False
        self._can_mega_evolve: bool = False
        self._can_tera: Optional[PokemonType] = None
        self._can_z_move: bool = False
        self._opponent_can_dynamax = True
        self._opponent_can_mega_evolve = True
        self._opponent_can_z_move = True
        self._opponent_can_tera: bool = False
        self._force_switch: bool = False
        self._maybe_trapped: bool = False
        self._trapped: bool = False
        # 初始化属性
        self.battle_msg_history = ""
        self.pokemon_hp_log_dict = {}
        self.speed_list = []
    # 清除所有属性提升
    def clear_all_boosts(self):
        if self.active_pokemon is not None:
            self.active_pokemon.clear_boosts()
        if self.opponent_active_pokemon is not None:
            self.opponent_active_pokemon.clear_boosts()
    # 结束幻象状态
    def end_illusion(self, pokemon_name: str, details: str):
        # 根据角色名判断幻象状态的 Pokemon
        if pokemon_name[:2] == self._player_role:
            active = self.active_pokemon
        else:
            active = self.opponent_active_pokemon
        # 如果没有活跃的 Pokemon,则抛出异常
        if active is None:
            raise ValueError("Cannot end illusion without an active pokemon.")
        # 结束幻象状态
        self._end_illusion_on(
            illusioned=active, illusionist=pokemon_name, details=details
        )
    def switch(self, pokemon_str: str, details: str, hp_status: str):
        # 从传入的字符串中提取精灵标识符
        identifier = pokemon_str.split(":")[0][:2]
        # 如果标识符与玩家角色相同
        if identifier == self._player_role:
            # 如果存在活跃的精灵,让其退出战斗
            if self.active_pokemon:
                self.active_pokemon.switch_out()
        else:
            # 如果对手存在活跃的精灵,让其退出战斗
            if self.opponent_active_pokemon:
                self.opponent_active_pokemon.switch_out()
        # 获取指定的精灵对象
        pokemon = self.get_pokemon(pokemon_str, details=details)
        # 让指定的精灵进入战斗,并设置其血量状态
        pokemon.switch_in(details=details)
        pokemon.set_hp_status(hp_status)
    @property
    def active_pokemon(self) -> Optional[Pokemon]:
        """
        :return: 活跃的精灵
        :rtype: Optional[Pokemon]
        """
        # 返回队伍中活跃的精灵
        for pokemon in self.team.values():
            if pokemon.active:
                return pokemon
    @property
    def all_active_pokemons(self) -> List[Optional[Pokemon]]:
        """
        :return: 包含所有活跃精灵和/或 None 的列表
        :rtype: List[Optional[Pokemon]
        """
        # 返回包含玩家和对手活跃精灵的列表
        return [self.active_pokemon, self.opponent_active_pokemon]
    @property
    def available_moves(self) -> List[Move]:
        """
        :return: 玩家可以在当前回合使用的招式列表
        :rtype: List[Move]
        """
        # 返回玩家可以使用的招式列表
        return self._available_moves
    @property
    def available_switches(self) -> List[Pokemon]:
        """
        :return: 玩家可以在当前回合进行的替换列表
        :rtype: List[Pokemon]
        """
        # 返回玩家可以进行的替换列表
        return self._available_switches
    @property
    def can_dynamax(self) -> bool:
        """
        :return: 当前活跃精灵是否可以极巨化
        :rtype: bool
        """
        # 返回当前活跃精灵是否可以进行极巨化
        return self._can_dynamax
    @property
    def can_mega_evolve(self) -> bool:
        """
        :return: 当前活跃精灵是否可以超级进化
        :rtype: bool
        """
        # 返回当前活跃精灵是否可以进行超级进化
        return self._can_mega_evolve
    @property
    def can_tera(self) -> Optional[PokemonType]:
        """
        :return: None, or the type the active pokemon can terastallize into.
        :rtype: PokemonType, optional
        """
        # 返回当前活跃宝可梦可以转变成的类型,如果不能则返回 None
        return self._can_tera
    @property
    def can_z_move(self) -> bool:
        """
        :return: Whether or not the current active pokemon can z-move.
        :rtype: bool
        """
        # 返回当前活跃宝可梦是否可以使用 Z 招式
        return self._can_z_move
    @property
    def force_switch(self) -> bool:
        """
        :return: A boolean indicating whether the active pokemon is forced to switch
            out.
        :rtype: Optional[bool]
        """
        # 返回一个布尔值,指示当前活跃宝可梦是否被迫交换出场
        return self._force_switch
    @property
    def maybe_trapped(self) -> bool:
        """
        :return: A boolean indicating whether the active pokemon is maybe trapped by the
            opponent.
        :rtype: bool
        """
        # 返回一个布尔值,指示当前活跃宝可梦是否可能被对手困住
        return self._maybe_trapped
    @property
    def opponent_active_pokemon(self) -> Optional[Pokemon]:
        """
        :return: The opponent active pokemon
        :rtype: Pokemon
        """
        # 返回对手当前活跃的宝可梦
        for pokemon in self.opponent_team.values():
            if pokemon.active:
                return pokemon
        return None
    @property
    def opponent_can_dynamax(self) -> bool:
        """
        :return: Whether or not opponent's current active pokemon can dynamax
        :rtype: bool
        """
        # 返回对手当前活跃的宝可梦是否可以极巨化
        return self._opponent_can_dynamax
    @opponent_can_dynamax.setter
    def opponent_can_dynamax(self, value: bool):
        self._opponent_can_dynamax = value
    @property
    def opponent_can_mega_evolve(self) -> bool:
        """
        :return: Whether or not opponent's current active pokemon can mega-evolve
        :rtype: bool
        """
        # 返回对手当前活跃的宝可梦是否可以超级进化
        return self._opponent_can_mega_evolve
    @opponent_can_mega_evolve.setter
    def opponent_can_mega_evolve(self, value: bool):
        self._opponent_can_mega_evolve = value
    def opponent_can_tera(self) -> bool:
        """
        :return: Whether or not opponent's current active pokemon can terastallize
        :rtype: bool
        """
        # 返回对手当前激活的宝可梦是否可以使用 terastallize
        return self._opponent_can_tera
    @property
    def opponent_can_z_move(self) -> bool:
        """
        :return: Whether or not opponent's current active pokemon can z-move
        :rtype: bool
        """
        # 返回对手当前激活的宝可梦是否可以使用 z-move
        return self._opponent_can_z_move
    @opponent_can_z_move.setter
    def opponent_can_z_move(self, value: bool):
        # 设置对手当前激活的宝可梦是否可以使用 z-move
        self._opponent_can_z_move = value
    @property
    def trapped(self) -> bool:
        """
        :return: A boolean indicating whether the active pokemon is trapped, either by
            the opponent or as a side effect of one your moves.
        :rtype: bool
        """
        # 返回一个布尔值,指示激活的宝可梦是否被困住,无论是被对手困住还是作为你的招式的副作用
        return self._trapped
    @trapped.setter
    def trapped(self, value: bool):
        # 设置激活的宝可梦是否被困住
        self._trapped = value


目录
打赏
0
0
0
0
260
分享
相关文章
深入理解HTTP/2:nghttp2库源码解析及客户端实现示例
通过解析nghttp2库的源码和实现一个简单的HTTP/2客户端示例,本文详细介绍了HTTP/2的关键特性和nghttp2的核心实现。了解这些内容可以帮助开发者更好地理解HTTP/2协议,提高Web应用的性能和用户体验。对于实际开发中的应用,可以根据需要进一步优化和扩展代码,以满足具体需求。
88 29
JS数组操作方法全景图,全网最全构建完整知识网络!js数组操作方法全集(实现筛选转换、随机排序洗牌算法、复杂数据处理统计等情景详解,附大量源码和易错点解析)
这些方法提供了对数组的全面操作,包括搜索、遍历、转换和聚合等。通过分为原地操作方法、非原地操作方法和其他方法便于您理解和记忆,并熟悉他们各自的使用方法与使用范围。详细的案例与进阶使用,方便您理解数组操作的底层原理。链式调用的几个案例,让您玩转数组操作。 只有锻炼思维才能可持续地解决问题,只有思维才是真正值得学习和分享的核心要素。如果这篇博客能给您带来一点帮助,麻烦您点个赞支持一下,还可以收藏起来以备不时之需,有疑问和错误欢迎在评论区指出~
从入门到精通:H5游戏源码开发技术全解析与未来趋势洞察
H5游戏凭借其跨平台、易传播和开发成本低的优势,近年来发展迅猛。接下来,让我们深入了解 H5 游戏源码开发的技术教程以及未来的发展趋势。
分片上传技术全解析:原理、优势与应用(含简单实现源码)
分片上传通过将大文件分割成多个小的片段或块,然后并行或顺序地上传这些片段,从而提高上传效率和可靠性,特别适用于大文件的上传场景,尤其是在网络环境不佳时,分片上传能有效提高上传体验。 博客不应该只有代码和解决方案,重点应该在于给出解决方案的同时分享思维模式,只有思维才能可持续地解决问题,只有思维才是真正值得学习和分享的核心要素。如果这篇博客能给您带来一点帮助,麻烦您点个赞支持一下,还可以收藏起来以备不时之需,有疑问和错误欢迎在评论区指出~
在线教育网课系统源码开发指南:功能设计与技术实现深度解析
在线教育网课系统是近年来发展迅猛的教育形式的核心载体,具备用户管理、课程管理、教学互动、学习评估等功能。本文从功能和技术两方面解析其源码开发,涵盖前端(HTML5、CSS3、JavaScript等)、后端(Java、Python等)、流媒体及云计算技术,并强调安全性、稳定性和用户体验的重要性。
高级java面试---spring.factories文件的解析源码API机制
【11月更文挑战第20天】Spring Boot是一个用于快速构建基于Spring框架的应用程序的开源框架。它通过自动配置、起步依赖和内嵌服务器等特性,极大地简化了Spring应用的开发和部署过程。本文将深入探讨Spring Boot的背景历史、业务场景、功能点以及底层原理,并通过Java代码手写模拟Spring Boot的启动过程,特别是spring.factories文件的解析源码API机制。
153 2
【23种设计模式·全精解析 | 创建型模式篇】5种创建型模式的结构概述、实现、优缺点、扩展、使用场景、源码解析
创建型模式的主要关注点是“怎样创建对象?”,它的主要特点是"将对象的创建与使用分离”。这样可以降低系统的耦合度,使用者不需要关注对象的创建细节。创建型模式分为5种:单例模式、工厂方法模式抽象工厂式、原型模式、建造者模式。
【23种设计模式·全精解析 | 创建型模式篇】5种创建型模式的结构概述、实现、优缺点、扩展、使用场景、源码解析
【23种设计模式·全精解析 | 行为型模式篇】11种行为型模式的结构概述、案例实现、优缺点、扩展对比、使用场景、源码解析
行为型模式用于描述程序在运行时复杂的流程控制,即描述多个类或对象之间怎样相互协作共同完成单个对象都无法单独完成的任务,它涉及算法与对象间职责的分配。行为型模式分为类行为模式和对象行为模式,前者采用继承机制来在类间分派行为,后者采用组合或聚合在对象间分配行为。由于组合关系或聚合关系比继承关系耦合度低,满足“合成复用原则”,所以对象行为模式比类行为模式具有更大的灵活性。 行为型模式分为: • 模板方法模式 • 策略模式 • 命令模式 • 职责链模式 • 状态模式 • 观察者模式 • 中介者模式 • 迭代器模式 • 访问者模式 • 备忘录模式 • 解释器模式
【23种设计模式·全精解析 | 行为型模式篇】11种行为型模式的结构概述、案例实现、优缺点、扩展对比、使用场景、源码解析

热门文章

最新文章

推荐镜像

更多
AI助理

你好,我是AI助理

可以解答问题、推荐解决方案等