Source code for eolib.protocol.net.weight

# 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 Weight: """ Current carry weight and maximum carry capacity of a player """ _byte_size: int = 0 _current: int _max: int
[docs] def __init__(self, *, current: int, max: int): """ Create a new instance of Weight. Args: current: (Value range is 0-252.) max: (Value range is 0-252.) """ self._current = current self._max = max
@property def byte_size(self) -> int: """ The size of the data that this was deserialized from. """ return self._byte_size @property def current(self) -> int: """ The `current` field. """ return self._current @property def max(self) -> int: """ The `max` field. """ return self._max
[docs] @staticmethod def serialize(writer: EoWriter, data: "Weight") -> None: """ Serializes an instance of `Weight` to the provided `EoWriter`. Args: writer (EoWriter): The writer that the data will be serialized to. data (Weight): The data to serialize. """ old_string_sanitization_mode: bool = writer.string_sanitization_mode try: if data._current is None: raise SerializationError("current must be provided.") writer.add_char(data._current) if data._max is None: raise SerializationError("max must be provided.") writer.add_char(data._max) finally: writer.string_sanitization_mode = old_string_sanitization_mode
[docs] @staticmethod def deserialize(reader: EoReader) -> "Weight": """ Deserializes an instance of `Weight` 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 current = reader.get_char() max = reader.get_char() result = Weight(current=current, max=max) result._byte_size = reader.position - reader_start_position return result finally: reader.chunked_reading_mode = old_chunked_reading_mode
def __repr__(self): return f"Weight(byte_size={repr(self._byte_size)}, current={repr(self._current)}, max={repr(self._max)})"