From 333fc803ce8ab014b51f01ac20f494e3a367fa70 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Mon, 3 Oct 2022 11:20:40 -0700 Subject: [PATCH] more ep3 notes in CommandFormats --- src/Episode3.hh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/Episode3.hh b/src/Episode3.hh index 752c67d1..ecb77ba2 100644 --- a/src/Episode3.hh +++ b/src/Episode3.hh @@ -64,13 +64,13 @@ struct Ep3CardStats { } __attribute__((packed)); struct Effect { - uint8_t command; + uint8_t command; // See name_for_effect_command in Episode3.cc for details ptext expr; // May be blank if the command doesn't use it - uint8_t when; + uint8_t when; // See description_for_when in Episode3.cc for details ptext arg1; ptext arg2; ptext arg3; - parray unknown_a3; + parray unknown_a3; // Possibly completely unused bool is_empty() const; static std::string str_for_arg(const std::string& arg); @@ -207,8 +207,6 @@ struct Ep3MapList { be_uint32_t total_size; // Including header, entries, and strings struct Entry { // Should be 0x220 bytes in total - // These 3 fields probably include the location ID (scenery to load) and the - // music ID be_uint16_t map_x; be_uint16_t map_y; be_uint16_t scene_data2;