Source code for eolib.protocol.net.server.skill_stat_requirements

# Generated from the eo-protocol XML specification.
#
# This file should not be modified.
# Changes will be lost when code is regenerated.

from ....serialization_error import SerializationError
from .....data.eo_writer import EoWriter
from .....data.eo_reader import EoReader

[docs] class SkillStatRequirements: """ Stat requirements to learn a skill from a skill master NPC """ _byte_size: int = 0 _str: int _wis: int _intl: int _agi: int _con: int _cha: int
[docs] def __init__(self, *, str: int, wis: int, intl: int, agi: int, con: int, cha: int): """ Create a new instance of SkillStatRequirements. Args: str: (Value range is 0-64008.) wis: (Value range is 0-64008.) intl: (Value range is 0-64008.) agi: (Value range is 0-64008.) con: (Value range is 0-64008.) cha: (Value range is 0-64008.) """ self._str = str self._wis = wis self._intl = intl self._agi = agi self._con = con self._cha = cha
@property def byte_size(self) -> int: """ The size of the data that this was deserialized from. """ return self._byte_size @property def str(self) -> int: """ The `str` field. """ return self._str @property def wis(self) -> int: """ The `wis` field. """ return self._wis @property def intl(self) -> int: """ The `intl` field. """ return self._intl @property def agi(self) -> int: """ The `agi` field. """ return self._agi @property def con(self) -> int: """ The `con` field. """ return self._con @property def cha(self) -> int: """ The `cha` field. """ return self._cha
[docs] @staticmethod def serialize(writer: EoWriter, data: "SkillStatRequirements") -> None: """ Serializes an instance of `SkillStatRequirements` to the provided `EoWriter`. Args: writer (EoWriter): The writer that the data will be serialized to. data (SkillStatRequirements): The data to serialize. """ old_string_sanitization_mode: bool = writer.string_sanitization_mode try: if data._str is None: raise SerializationError("str must be provided.") writer.add_short(data._str) if data._wis is None: raise SerializationError("wis must be provided.") writer.add_short(data._wis) if data._intl is None: raise SerializationError("intl must be provided.") writer.add_short(data._intl) if data._agi is None: raise SerializationError("agi must be provided.") writer.add_short(data._agi) if data._con is None: raise SerializationError("con must be provided.") writer.add_short(data._con) if data._cha is None: raise SerializationError("cha must be provided.") writer.add_short(data._cha) finally: writer.string_sanitization_mode = old_string_sanitization_mode
[docs] @staticmethod def deserialize(reader: EoReader) -> "SkillStatRequirements": """ Deserializes an instance of `SkillStatRequirements` from the provided `EoReader`. Args: reader (EoReader): The writer that the data will be serialized to. Returns: The data to serialize. """ old_chunked_reading_mode: bool = reader.chunked_reading_mode try: reader_start_position: int = reader.position str = reader.get_short() wis = reader.get_short() intl = reader.get_short() agi = reader.get_short() con = reader.get_short() cha = reader.get_short() result = SkillStatRequirements(str=str, wis=wis, intl=intl, agi=agi, con=con, cha=cha) result._byte_size = reader.position - reader_start_position return result finally: reader.chunked_reading_mode = old_chunked_reading_mode
def __repr__(self): return f"SkillStatRequirements(byte_size={repr(self._byte_size)}, str={repr(self._str)}, wis={repr(self._wis)}, intl={repr(self._intl)}, agi={repr(self._agi)}, con={repr(self._con)}, cha={repr(self._cha)})"