Source code for eolib.protocol.net.server.character_stats_welcome
# Generated from the eo-protocol XML specification.
#
# This file should not be modified.
# Changes will be lost when code is regenerated.
from .character_secondary_stats import CharacterSecondaryStats
from .character_base_stats_welcome import CharacterBaseStatsWelcome
from ....serialization_error import SerializationError
from .....data.eo_writer import EoWriter
from .....data.eo_reader import EoReader
[docs]
class CharacterStatsWelcome:
"""
Character stats data.
Sent upon selecting a character and entering the game.
"""
_byte_size: int = 0
_hp: int
_max_hp: int
_tp: int
_max_tp: int
_max_sp: int
_stat_points: int
_skill_points: int
_karma: int
_secondary: CharacterSecondaryStats
_base: CharacterBaseStatsWelcome
[docs]
def __init__(self, *, hp: int, max_hp: int, tp: int, max_tp: int, max_sp: int, stat_points: int, skill_points: int, karma: int, secondary: CharacterSecondaryStats, base: CharacterBaseStatsWelcome):
"""
Create a new instance of CharacterStatsWelcome.
Args:
hp: (Value range is 0-64008.)
max_hp: (Value range is 0-64008.)
tp: (Value range is 0-64008.)
max_tp: (Value range is 0-64008.)
max_sp: (Value range is 0-64008.)
stat_points: (Value range is 0-64008.)
skill_points: (Value range is 0-64008.)
karma: (Value range is 0-64008.)
secondary:
base:
"""
self._hp = hp
self._max_hp = max_hp
self._tp = tp
self._max_tp = max_tp
self._max_sp = max_sp
self._stat_points = stat_points
self._skill_points = skill_points
self._karma = karma
self._secondary = secondary
self._base = base
@property
def byte_size(self) -> int:
"""
The size of the data that this was deserialized from.
"""
return self._byte_size
@property
def hp(self) -> int:
"""
The `hp` field.
"""
return self._hp
@property
def max_hp(self) -> int:
"""
The `max_hp` field.
"""
return self._max_hp
@property
def tp(self) -> int:
"""
The `tp` field.
"""
return self._tp
@property
def max_tp(self) -> int:
"""
The `max_tp` field.
"""
return self._max_tp
@property
def max_sp(self) -> int:
"""
The `max_sp` field.
"""
return self._max_sp
@property
def stat_points(self) -> int:
"""
The `stat_points` field.
"""
return self._stat_points
@property
def skill_points(self) -> int:
"""
The `skill_points` field.
"""
return self._skill_points
@property
def karma(self) -> int:
"""
The `karma` field.
"""
return self._karma
@property
def secondary(self) -> CharacterSecondaryStats:
"""
The `secondary` field.
"""
return self._secondary
@property
def base(self) -> CharacterBaseStatsWelcome:
"""
The `base` field.
"""
return self._base
[docs]
@staticmethod
def serialize(writer: EoWriter, data: "CharacterStatsWelcome") -> None:
"""
Serializes an instance of `CharacterStatsWelcome` to the provided `EoWriter`.
Args:
writer (EoWriter): The writer that the data will be serialized to.
data (CharacterStatsWelcome): The data to serialize.
"""
old_string_sanitization_mode: bool = writer.string_sanitization_mode
try:
if data._hp is None:
raise SerializationError("hp must be provided.")
writer.add_short(data._hp)
if data._max_hp is None:
raise SerializationError("max_hp must be provided.")
writer.add_short(data._max_hp)
if data._tp is None:
raise SerializationError("tp must be provided.")
writer.add_short(data._tp)
if data._max_tp is None:
raise SerializationError("max_tp must be provided.")
writer.add_short(data._max_tp)
if data._max_sp is None:
raise SerializationError("max_sp must be provided.")
writer.add_short(data._max_sp)
if data._stat_points is None:
raise SerializationError("stat_points must be provided.")
writer.add_short(data._stat_points)
if data._skill_points is None:
raise SerializationError("skill_points must be provided.")
writer.add_short(data._skill_points)
if data._karma is None:
raise SerializationError("karma must be provided.")
writer.add_short(data._karma)
if data._secondary is None:
raise SerializationError("secondary must be provided.")
CharacterSecondaryStats.serialize(writer, data._secondary)
if data._base is None:
raise SerializationError("base must be provided.")
CharacterBaseStatsWelcome.serialize(writer, data._base)
finally:
writer.string_sanitization_mode = old_string_sanitization_mode
[docs]
@staticmethod
def deserialize(reader: EoReader) -> "CharacterStatsWelcome":
"""
Deserializes an instance of `CharacterStatsWelcome` 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
hp = reader.get_short()
max_hp = reader.get_short()
tp = reader.get_short()
max_tp = reader.get_short()
max_sp = reader.get_short()
stat_points = reader.get_short()
skill_points = reader.get_short()
karma = reader.get_short()
secondary = CharacterSecondaryStats.deserialize(reader)
base = CharacterBaseStatsWelcome.deserialize(reader)
result = CharacterStatsWelcome(hp=hp, max_hp=max_hp, tp=tp, max_tp=max_tp, max_sp=max_sp, stat_points=stat_points, skill_points=skill_points, karma=karma, secondary=secondary, base=base)
result._byte_size = reader.position - reader_start_position
return result
finally:
reader.chunked_reading_mode = old_chunked_reading_mode
def __repr__(self):
return f"CharacterStatsWelcome(byte_size={repr(self._byte_size)}, hp={repr(self._hp)}, max_hp={repr(self._max_hp)}, tp={repr(self._tp)}, max_tp={repr(self._max_tp)}, max_sp={repr(self._max_sp)}, stat_points={repr(self._stat_points)}, skill_points={repr(self._skill_points)}, karma={repr(self._karma)}, secondary={repr(self._secondary)}, base={repr(self._base)})"