summaryrefslogtreecommitdiff
path: root/tools/splat_ext/evw_colenv.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/splat_ext/evw_colenv.py')
-rw-r--r--tools/splat_ext/evw_colenv.py43
1 files changed, 43 insertions, 0 deletions
diff --git a/tools/splat_ext/evw_colenv.py b/tools/splat_ext/evw_colenv.py
new file mode 100644
index 0000000..3d0c345
--- /dev/null
+++ b/tools/splat_ext/evw_colenv.py
@@ -0,0 +1,43 @@
+import struct
+from typing import Optional
+from splat.util import options, log
+from splat.segtypes.common.codesubsegment import CommonSegCodeSubsegment
+
+class N64SegEvw_colenv(CommonSegCodeSubsegment):
+ def __init__(self, rom_start, rom_end, type, name, vram_start, args, yaml):
+ super().__init__(rom_start, rom_end, type, name, vram_start, args=args, yaml=yaml),
+
+ self.file_text: Optional[str] = None
+ self.data_only = isinstance(yaml, dict) and yaml.get("data_only", False)
+
+ def scan(self, rom_bytes: bytes):
+ data = rom_bytes[self.rom_start : self.rom_end]
+ symbol = self.create_symbol(addr=self.vram_start, in_segment=True, type="data", define=True)
+ count = len(data) // 4
+ lines = []
+
+ if (len(data)) % 4 != 0:
+ log.error(f"Error: evw_colenv segment {self.name} length ({len(data)}) is not a multiple of 4!")
+
+ if not self.data_only:
+ lines.append(options.opts.generated_c_preamble)
+ lines.append("")
+ lines.append(f"EvwAnimeColEnv {symbol.name}[{count}] = {{")
+
+ for EvwAnimeColEnv in struct.iter_unpack(">bbbb", data):
+ r, g, b, a = EvwAnimeColEnv
+ lines.append(f" {{ {r}, {g}, {b}, {a} }},")
+
+ if not self.data_only:
+ lines.append("};")
+
+ lines.append("")
+ self.file_text = "\n".join(lines)
+
+ def split(self, rom_bytes: bytes):
+ path = options.opts.asset_path / self.dir / f"{self.name}.inc.c"
+
+ if self.file_text and path:
+ path.parent.mkdir(parents=True, exist_ok=True)
+ with open(path, "w", newline="\n") as f:
+ f.write(self.file_text)