Source code for eolib.protocol.net.client.byte_coords
# 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 ByteCoords:
"""
Map coordinates with raw 1-byte values
"""
_byte_size: int = 0
_x: int
_y: int
[docs]
def __init__(self, *, x: int, y: int):
"""
Create a new instance of ByteCoords.
Args:
x: (Value range is 0-255.)
y: (Value range is 0-255.)
"""
self._x = x
self._y = y
@property
def byte_size(self) -> int:
"""
The size of the data that this was deserialized from.
"""
return self._byte_size
@property
def x(self) -> int:
"""
The `x` field.
"""
return self._x
@property
def y(self) -> int:
"""
The `y` field.
"""
return self._y
[docs]
@staticmethod
def serialize(writer: EoWriter, data: "ByteCoords") -> None:
"""
Serializes an instance of `ByteCoords` to the provided `EoWriter`.
Args:
writer (EoWriter): The writer that the data will be serialized to.
data (ByteCoords): The data to serialize.
"""
old_string_sanitization_mode: bool = writer.string_sanitization_mode
try:
if data._x is None:
raise SerializationError("x must be provided.")
writer.add_byte(data._x)
if data._y is None:
raise SerializationError("y must be provided.")
writer.add_byte(data._y)
finally:
writer.string_sanitization_mode = old_string_sanitization_mode
[docs]
@staticmethod
def deserialize(reader: EoReader) -> "ByteCoords":
"""
Deserializes an instance of `ByteCoords` 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
x = reader.get_byte()
y = reader.get_byte()
result = ByteCoords(x=x, y=y)
result._byte_size = reader.position - reader_start_position
return result
finally:
reader.chunked_reading_mode = old_chunked_reading_mode
def __repr__(self):
return f"ByteCoords(byte_size={repr(self._byte_size)}, x={repr(self._x)}, y={repr(self._y)})"