Module nari.io.reader.actlogutils.updatehpmp
Parse HP and MP updates from ACT log line
Expand source code
"""Parse HP and MP updates from ACT log line"""
from nari.types import Timestamp
from nari.types.event.updatehpmp import UpdateHpMp
from nari.types.actor import Actor
def updatehpmp_from_logline(timestamp: Timestamp, params: list[str]) -> UpdateHpMp:
"""Parses an UpdateHpMp event from an ACT log line
ACT Event ID (decimal): 39
## Param layout from ACT
The first two params in every event is the ACT event ID and the timestamp it was parsed; the following table documents all the other fields.
The max values are not parsed as they're injected by ACT from memory and don't exist in the underlying packet.
|Index|Type|Description|
|----:|----|:----------|
|0 |int|Actor ID|
|1 |string|Actor name|
|2 |int|Current HP|
|3 |int|Max HP|
|4 |int|Current MP|
|5 |int|Max MP|
|6 |int|Current TP|
|7 |int|Max TP|
|8 |float|Actor X position|
|9 |float|Actor Y position|
|10 |float|Actor Z position|
|11 |float|Actor bearing|
|12 |string|Blank because ACT|
"""
actor = Actor(*params[0:2])
if params[6] != '':
sp = int(params[6])
else:
sp = 0
return UpdateHpMp(
timestamp=timestamp,
actor=actor,
hp=int(params[2]),
mp=int(params[4]),
sp=sp
)
Functions
def updatehpmp_from_logline(timestamp: int, params: list[str]) ‑> UpdateHpMp
-
Parses an UpdateHpMp event from an ACT log line
ACT Event ID (decimal): 39
Param layout from ACT
The first two params in every event is the ACT event ID and the timestamp it was parsed; the following table documents all the other fields.
The max values are not parsed as they're injected by ACT from memory and don't exist in the underlying packet.
Index Type Description 0 int Actor ID 1 string Actor name 2 int Current HP 3 int Max HP 4 int Current MP 5 int Max MP 6 int Current TP 7 int Max TP 8 float Actor X position 9 float Actor Y position 10 float Actor Z position 11 float Actor bearing 12 string Blank because ACT Expand source code
def updatehpmp_from_logline(timestamp: Timestamp, params: list[str]) -> UpdateHpMp: """Parses an UpdateHpMp event from an ACT log line ACT Event ID (decimal): 39 ## Param layout from ACT The first two params in every event is the ACT event ID and the timestamp it was parsed; the following table documents all the other fields. The max values are not parsed as they're injected by ACT from memory and don't exist in the underlying packet. |Index|Type|Description| |----:|----|:----------| |0 |int|Actor ID| |1 |string|Actor name| |2 |int|Current HP| |3 |int|Max HP| |4 |int|Current MP| |5 |int|Max MP| |6 |int|Current TP| |7 |int|Max TP| |8 |float|Actor X position| |9 |float|Actor Y position| |10 |float|Actor Z position| |11 |float|Actor bearing| |12 |string|Blank because ACT| """ actor = Actor(*params[0:2]) if params[6] != '': sp = int(params[6]) else: sp = 0 return UpdateHpMp( timestamp=timestamp, actor=actor, hp=int(params[2]), mp=int(params[4]), sp=sp )