Source code for eolib.protocol.net.server.character_secondary_stats
# 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 CharacterSecondaryStats:
"""
The 5 secondary character stats
"""
_byte_size: int = 0
_min_damage: int
_max_damage: int
_accuracy: int
_evade: int
_armor: int
[docs]
def __init__(self, *, min_damage: int, max_damage: int, accuracy: int, evade: int, armor: int):
"""
Create a new instance of CharacterSecondaryStats.
Args:
min_damage: (Value range is 0-64008.)
max_damage: (Value range is 0-64008.)
accuracy: (Value range is 0-64008.)
evade: (Value range is 0-64008.)
armor: (Value range is 0-64008.)
"""
self._min_damage = min_damage
self._max_damage = max_damage
self._accuracy = accuracy
self._evade = evade
self._armor = armor
@property
def byte_size(self) -> int:
"""
The size of the data that this was deserialized from.
"""
return self._byte_size
@property
def min_damage(self) -> int:
"""
The `min_damage` field.
"""
return self._min_damage
@property
def max_damage(self) -> int:
"""
The `max_damage` field.
"""
return self._max_damage
@property
def accuracy(self) -> int:
"""
The `accuracy` field.
"""
return self._accuracy
@property
def evade(self) -> int:
"""
The `evade` field.
"""
return self._evade
@property
def armor(self) -> int:
"""
The `armor` field.
"""
return self._armor
[docs]
@staticmethod
def serialize(writer: EoWriter, data: "CharacterSecondaryStats") -> None:
"""
Serializes an instance of `CharacterSecondaryStats` to the provided `EoWriter`.
Args:
writer (EoWriter): The writer that the data will be serialized to.
data (CharacterSecondaryStats): The data to serialize.
"""
old_string_sanitization_mode: bool = writer.string_sanitization_mode
try:
if data._min_damage is None:
raise SerializationError("min_damage must be provided.")
writer.add_short(data._min_damage)
if data._max_damage is None:
raise SerializationError("max_damage must be provided.")
writer.add_short(data._max_damage)
if data._accuracy is None:
raise SerializationError("accuracy must be provided.")
writer.add_short(data._accuracy)
if data._evade is None:
raise SerializationError("evade must be provided.")
writer.add_short(data._evade)
if data._armor is None:
raise SerializationError("armor must be provided.")
writer.add_short(data._armor)
finally:
writer.string_sanitization_mode = old_string_sanitization_mode
[docs]
@staticmethod
def deserialize(reader: EoReader) -> "CharacterSecondaryStats":
"""
Deserializes an instance of `CharacterSecondaryStats` 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
min_damage = reader.get_short()
max_damage = reader.get_short()
accuracy = reader.get_short()
evade = reader.get_short()
armor = reader.get_short()
result = CharacterSecondaryStats(min_damage=min_damage, max_damage=max_damage, accuracy=accuracy, evade=evade, armor=armor)
result._byte_size = reader.position - reader_start_position
return result
finally:
reader.chunked_reading_mode = old_chunked_reading_mode
def __repr__(self):
return f"CharacterSecondaryStats(byte_size={repr(self._byte_size)}, min_damage={repr(self._min_damage)}, max_damage={repr(self._max_damage)}, accuracy={repr(self._accuracy)}, evade={repr(self._evade)}, armor={repr(self._armor)})"