Files
ac-decomp/configure.py
2024-08-12 06:46:50 -04:00

959 lines
26 KiB
Python

"""
Creates a build script for ninja
"""
from abc import ABC, abstractmethod
from collections import defaultdict
from dataclasses import dataclass
import json
import os
import pickle
import re
import subprocess
import yaml
from io import StringIO
from sys import executable as PYTHON, platform
from typing import List, Tuple
from ninja_syntax import Writer
import common as c
####################
# Setup Validation #
####################
# Rename main.dol to static.dol
if os.path.exists("dump/main.dol"):
os.rename("dump/main.dol", "dump/static.dol")
# Check CodeWarrior was added
assert os.path.exists("tools/1.3.2/mwcceppc.exe") and \
os.path.exists("tools/1.2.5n/mwcceppc.exe"), \
"Error: Codewarrior not found!"
# Check if foresta.rel.szs exists but not foresta.rel, and if so, decompress
if not os.path.exists(c.REL) and os.path.exists(c.REL_SZS):
print("Decompressing foresta.rel.szs to foresta.rel")
subprocess.call([f'./{c.ORTHRUS}', 'ncompress', 'yaz0', '-d', c.REL_SZS, c.REL])
# Check binaries were added
assert os.path.exists(c.DOL) and os.path.exists(c.REL), \
"Error: Base binaries not found!"
#Check if binaries are correct
dol_hash = c.get_file_sha1(c.DOL)
rel_hash = c.get_file_sha1(c.REL)
assert dol_hash == bytes.fromhex("2ae8f56e7791d37e165bd5900921f2269f9515bf") and rel_hash == bytes.fromhex("c59d278ad8542bb05d6cbb632f60a0db05bef203"), \
"Error: Base binaries hashes aren't correct!"
#Check submodules added
assert os.path.exists(c.PPCDIS), \
"Error: Git submodules not initialised!"
###############
# Ninja Setup #
###############
outbuf = StringIO()
n = Writer(outbuf)
n.variable("ninja_required_version", "1.3")
n.newline()
################
# Project Dirs #
################
n.variable("builddir", c.BUILDDIR)
n.variable("outdir", c.OUTDIR)
n.variable("dump", c.ORIG)
n.variable("tools", c.TOOLS)
n.variable("config", c.CONFIG)
n.newline()
os.makedirs(c.BUILDDIR, exist_ok=True)
#########
# Tools #
#########
n.variable("python", c.PYTHON)
n.variable("ppcdis", c.PPCDIS)
n.variable("relextern", c.RELEXTERN)
n.variable("analyser", c.ANALYSER)
n.variable("disassembler", c.DISASSEMBLER)
n.variable("orderstrings", c.ORDERSTRINGS)
n.variable("orderfloats", c.ORDERFLOATS)
n.variable("assetrip", c.ASSETRIP)
n.variable("assetinc", c.ASSETINC)
n.variable("forceactivegen", c.FORCEACTIVEGEN)
n.variable("elf2dol", c.ELF2DOL)
n.variable("elf2rel", c.ELF2REL)
n.variable("codewarrior", c.CODEWARRIOR)
n.variable("cc", c.CC_R)
n.variable("occ", c.OCC)
n.variable("align16", c.ALIGN16)
n.variable("ld", c.LD)
n.variable("devkitppc", c.DEVKITPPC)
n.variable("as", c.AS)
n.variable("cpp", c.CPP)
n.variable("forcefilesgen", c.FORCEFILESGEN)
n.variable("vtxdis", c.VTXDIS)
n.variable("pal16dis", c.PAL16DIS)
n.variable("arctool", c.ARC_TOOL)
n.variable("sjiswrap", c.SJISWRAP)
n.variable("batchassetrip", c.BATCHASSETRIP)
n.newline()
##############
# Tool Flags #
##############
n.variable("asflags", c.ASFLAGS)
n.variable("ldflags", c.LDFLAGS)
n.variable("cppflags", c.CPPFLAGS)
n.variable("cplflags", c.CPLFLAGS)
n.variable("ppcdis_analysis_flags", c.PPCDIS_ANALYSIS_FLAGS)
n.newline()
#########
# Rules #
#########
# Windows can't use && without this statement
ALLOW_CHAIN = "cmd /c " if os.name == "nt" else ""
mwcc_cmd = ALLOW_CHAIN + f"$cpp -M $in -MF $out.d $cppflags && $sjiswrap $cc $cflags -c $in -o $out"
n.rule(
"relextern",
command = "$relextern $out $in",
description = "ppcdis rel extern $in"
)
n.rule(
"analyse",
command = "$analyser $in $out $analysisflags",
description = "ppcdis analysis $in",
pool="console"
)
n.rule(
"disasm",
command = "$disassembler $in $out -q $disasmflags",
description = "ppcdis full disassembly $out"
)
n.rule(
"disasm_slice",
command = "$disassembler $in $out -q $disasmflags -s $slice",
description = "ppcdis disassembly $out"
)
n.rule(
"disasm_single",
command = "$disassembler $in $out -f $addr -q -i $disasmflags",
description = "ppcdis function disassembly $addr"
)
n.rule(
"jumptable",
command = "$disassembler $in $out -j $addr -q $disasmflags",
description = "Jumptable $addr"
)
n.rule(
"orderstrings",
command = "$orderstrings $in $addrs $out $flags --enc shift-jis --pool",
description = "Order strings $in $addrs"
)
n.rule(
"orderfloats",
command = "$orderfloats $in $addrs $out $flags",
description = "Order floats $in $addrs"
)
n.rule(
"assetrip",
command = "$assetrip $in $addrs $out",
description = "Asset rip $out"
)
n.rule(
"assetinc",
command = "$assetinc $in $out",
description = "Asset include generation $out"
)
n.rule(
"batchassetrip",
command = "$batchassetrip $in $asset_yml",
description="Batch asset rip $asset_yml"
)
n.rule(
"forceactivegen",
command = "$forceactivegen $in $out",
description = "LCF FORCEACTIVEGEN generation $in"
)
n.rule(
"elf2dol",
command = "$elf2dol $in -o $out",
description = "elf2dol $in"
)
n.rule(
"elf2rel",
command = "$elf2rel $in -o $out $flags",
description = "elf2rel $in"
)
n.rule(
"sha1sum",
command = ALLOW_CHAIN + "sha1sum -c $in && touch $out",
description ="Verify $in",
pool ="console"
)
n.rule(
"as",
command = f"$as $asflags -c $in -o $out",
description = "AS $in"
)
n.rule(
"cc",
command = mwcc_cmd,
description = "CC $in",
deps = "gcc",
depfile = "$out.d"
)
n.rule(
"ccs",
command = ALLOW_CHAIN + f"$cpp -M $in -MF $out.d $cppflags && $sjiswrap $cc $cflags -S $in -o $out",
description = "CC -S $in",
deps = "gcc",
depfile = "$out.d"
)
n.rule(
"ld",
command = "$ld $ldflags -map $map -lcf $lcf $in -o $out",
description = "LD $out",
)
n.rule(
"forcefiles",
command = "$forcefilesgen $in $out $forcefiles",
description = "LCF FORCEFILES generation $in"
)
n.rule(
"vtxdis",
command = "$vtxdis $in $out",
description = "vtxdis.py $in $out"
)
n.rule(
"pal16dis",
command = "$pal16dis $in $out",
description = "pal16dis.py $in $out"
)
n.rule(
"arctool",
command = "$arctool -v $in $out",
description = "$arctool -v $in $out"
)
n.rule(
"sjiswrap",
command = "$sjiswrap $in",
description = "sjiswrap $in",
)
##########
# Assets #
##########
@dataclass
class Asset:
binary: str
path: str
convtype: str
start: int
end: int
def load(yml_path: str):
return {
asset : Asset(binary, asset, adat.get("type", "u8"), *adat["addrs"])
for binary, bdat in c.load_from_yaml(yml_path).items()
for asset, adat in bdat.items()
}
assets = Asset.load(c.ASSETS_YML)
###########
# Sources #
###########
class GeneratedInclude(ABC):
def __init__(self, ctx: c.SourceContext, source_name: str, path: str):
self.ctx = ctx
self.source_name = source_name
self.path = path
@abstractmethod
def build(self):
raise NotImplementedError
def find(ctx: c.SourceContext, source_name: str, txt: str) -> List["GeneratedInclude"]:
return [
cl(ctx, source_name, match)
for cl in (
AsmInclude,
JumptableInclude,
StringInclude,
FloatInclude,
DoubleInclude,
AssetInclude
)
for match in re.findall(cl.REGEX, txt)
]
class AsmInclude(GeneratedInclude):
REGEX = r'#include "asm\/([0-9a-f]{8})\.s"'
def __init__(self, ctx: c.SourceContext, source_name: str, match: str):
self.addr = match
super().__init__(ctx, source_name, f"{c.BUILD_INCDIR}/asm/{self.addr}.s")
def build(includes: List["AsmInclude"]):
# Skip empty list
if len(includes) == 0:
return
# Get ctx from first include (all should be equal)
ctx = includes[0].ctx
# Sort by source name
batches = defaultdict(list)
for inc in includes:
batches[inc.source_name].append(inc)
# Compile by source name
for source_name, incs in batches.items():
n.build(
[inc.path for inc in incs],
rule="disasm_single",
inputs=[ctx.binary, ctx.labels, ctx.relocs],
implicit=[c.GAME_SYMBOLS, ctx.disasm_overrides],
variables={
"disasmflags" : f"-m {c.GAME_SYMBOLS} -o {ctx.disasm_overrides} -n {source_name}",
"addr" : ' '.join(inc.addr for inc in incs) }
)
def _repr__(self):
return f"AsmInclude({self.addr})"
class JumptableInclude(GeneratedInclude):
REGEX = r'#include "jumptable\/([0-9a-f]{8})\.inc"'
def __init__(self, ctx: c.SourceContext, source_name: str, match: str):
self.addr = match
super().__init__(ctx, source_name, f"{c.BUILD_INCDIR}/jumptable/{self.addr}.inc")
def build(includes: List["JumptableInclude"]):
# Skip empty list
if len(includes) == 0:
return
# Get context from first include (all should be equal)
ctx = includes[0].ctx
# Sort by source name
batches = defaultdict(list)
for inc in includes:
batches[inc.source_name].append(inc)
# Compile by source name
# TODO: subdivide large batches
for source_name, incs in batches.items():
n.build(
[inc.path for inc in incs],
rule="jumptable",
inputs=[ctx.binary, ctx.labels, ctx.relocs],
implicit=[c.GAME_SYMBOLS, ctx.disasm_overrides],
variables={
"disasmflags" : f"-m {c.GAME_SYMBOLS} -o {ctx.disasm_overrides} -n {source_name}",
"addr" : ' '.join(inc.addr for inc in incs)
}
)
def __repr__(self):
return f"JumptableInclude({self.addr})"
class StringInclude(GeneratedInclude):
REGEX = r'#include "orderstrings\/([0-9a-f]{8})_([0-9a-f]{8})\.inc"'
def __init__(self, ctx: c.SourceContext, source_name: str, match: Tuple[str]):
self.start, self.end = match
super().__init__(ctx, source_name,
f"{c.BUILD_INCDIR}/orderstrings/{self.start}_{self.end}.inc")
def build(includes: List["StringInclude"]):
# Skip empty list
if len(includes) == 0:
return
# Get context from first include (all should be equal)
ctx = includes[0].ctx
# Build
for inc in includes:
n.build(
inc.path,
rule="orderstrings",
inputs=ctx.binary,
variables={
"addrs" : f"{inc.start} {inc.end}"
}
)
def __repr__(self):
return f"StringInclude({self.start}, {self.end})"
class FloatInclude(GeneratedInclude):
REGEX = r'#include "(orderfloats(m?))\/([0-9a-f]{8})_([0-9a-f]{8})\.inc"'
def __init__(self, ctx: c.SourceContext, source_name: str, match: Tuple[str]):
folder, manual, self.start, self.end = match
self.manual = manual != ''
super().__init__(ctx, source_name,
f"{c.BUILD_INCDIR}/{folder}/{self.start}_{self.end}.inc")
def build(includes: List["FloatInclude"]):
# Skip empty list
if len(includes) == 0:
return
# Get context from first include (all should be equal)
ctx = includes[0].ctx
# Build
for inc in includes:
sda = "--sda " if ctx.sdata2_threshold >= 4 else ""
asm = "" if inc.manual else "" #--asm
n.build(
inc.path,
rule="orderfloats",
inputs=inc.ctx.binary,
variables={
"addrs" : f"{inc.start} {inc.end}",
"flags" : f"{sda} {asm}"
}
)
def __repr__(self):
return f"FloatInclude({self.start}, {self.end})"
class DoubleInclude(GeneratedInclude):
REGEX = r'#include "orderdoubles\/([0-9a-f]{8})_([0-9a-f]{8})\.inc"'
def __init__(self, ctx: c.SourceContext, source_name: str, match: Tuple[str]):
self.start, self.end = match
super().__init__(ctx, source_name,
f"{c.BUILD_INCDIR}/orderdoubles/{self.start}_{self.end}.inc")
def build(includes: List["DoubleInclude"]):
# Skip empty list
if len(includes) == 0:
return
# Get context from first include (all should be equal)
ctx = includes[0].ctx
# Build
for inc in includes:
n.build(
inc.path,
rule="orderfloats",
inputs=ctx.binary,
variables={
"addrs" : f"{inc.start} {inc.end}",
"flags" : f"--double"
}
)
def __repr__(self):
return f"DoubleInclude({self.start}, {self.end})"
class AssetInclude(GeneratedInclude):
REGEX = r'#include "assets\/(.+)\.inc"'
def __init__(self, ctx: c.SourceContext, source_name: str, match: Tuple[str]):
self.asset = assets[match]
self.asset_path = f"{c.ASSETS}/{self.asset.path}"
assert ctx.binary == self.asset.binary, f"Tried to include from other binary"
super().__init__(ctx, source_name, f"{c.BUILD_INCDIR}/assets/{self.asset.path}.inc")
def build(includes: List["AssetInclude"]):
# Skip empty list
if len(includes) == 0:
return
# Build
binary = None
asset_entries = {}
expected_files = []
for inc in includes:
if binary == None:
binary = inc.asset.binary
asset_entries[inc.asset_path] = [inc.asset.start, inc.asset.end]
expected_files.append(inc.asset_path)
with open(f"{c.BUILDDIR}/{binary[7:10]}_assetrip.yml", 'w') as asset_yml:
yaml.dump(asset_entries, asset_yml)
n.build(
outputs=expected_files,
rule = "batchassetrip",
inputs = binary,
variables = {
"asset_yml": f"{c.BUILDDIR}/{binary[7:10]}_assetrip.yml"
}
)
# Include
for inc in includes:
if inc.asset.convtype == "vtx":
n.build(
inc.path,
rule="vtxdis",
inputs=inc.asset_path
)
elif inc.asset.convtype == "pal16":
n.build(
inc.path,
rule="pal16dis",
inputs=inc.asset_path
)
else:
n.build(
inc.path,
rule="assetinc",
inputs=inc.asset_path
)
def __repr__(self):
return f"AssetInclude({self.asset})"
class Source(ABC):
def __init__(self, decompiled: bool, src_path: str, o_path: str,
gen_includes: List[GeneratedInclude] = []):
self.decompiled = decompiled
self.src_path = src_path
self.o_path = o_path
self.o_stem = o_path[:-2]
self.i_path = o_path[:-2] + ".i"
self.gen_includes = gen_includes
def build(self):
raise NotImplementedError
def make(ctx: c.SourceContext, source: c.SourceDesc):
if isinstance(source, str):
print(source)
ext = source.split('.')[-1].lower()
if ext in ("c", "cpp", "cxx", "cc"):
return CSource(ctx, source)
elif ext == "s":
return AsmSource(ctx, source)
else:
assert 0, f"Unknown source type .{ext}"
else:
return GenAsmSource(ctx, *source)
class GenAsmSource(Source):
def __init__(self, ctx: c.SourceContext, section: str, start: int, end: int):
self.start = start
self.end = end
self.ctx = ctx
name = f"{section}_{start:x}_{end:x}.s"
src_path = f"$builddir/asm/{name}"
super().__init__(False, src_path, src_path + ".o")
# Add ctors to forcefiles
if section == ".ctors":
forcefiles.append(name + ".o")
def build(self):
n.build(
self.src_path,
rule = "disasm_slice",
inputs = [self.ctx.binary, self.ctx.labels, self.ctx.relocs],
implicit = [c.GAME_SYMBOLS, self.ctx.disasm_overrides],
variables = {
"slice" : f"{self.start:x} {self.end:x}",
"disasmflags" : f"-m {c.GAME_SYMBOLS} -o {self.ctx.disasm_overrides}"
}
)
n.build(
self.o_path,
rule="as",
inputs=self.src_path
)
def batch_build(sources: List["GenAsmSource"], batch_size=20):
# TODO: configure batch size based on cpu core count
# Skip empty list
if len(sources) == 0:
return
# Get context from first include (all should be equal)
ctx = sources[0].ctx
for src in sources:
n.build(
src.o_path,
rule="as",
inputs=src.src_path
)
while len(sources) > 0:
batch, sources = sources[:batch_size], sources[batch_size:]
n.build(
[src.src_path for src in batch],
rule = "disasm_slice",
inputs = [ctx.binary, ctx.labels, ctx.relocs],
implicit = [c.GAME_SYMBOLS, ctx.disasm_overrides],
variables = {
"slice" : ' '.join(
f"{src.start:x} {src.end:x}"
for src in batch
),
"disasmflags" : f"-m {c.GAME_SYMBOLS} -o {ctx.disasm_overrides}"
}
)
class AsmSource(Source):
def __init__(self, ctx: c.SourceContext, path: str):
super().__init__(True, path, f"$builddir/{path}.o")
def build(self):
n.build(
self.o_path,
rule = "as",
inputs = self.src_path
)
class CSource(Source):
def __init__(self, ctx: c.SourceContext, path: str):
if path.startswith("src/static/dolphin/"):
self.cflags = c.SDK_FLAGS
self.cc = c.OCC
elif path.startswith("src/static/jaudio_NES/"):
if path.startswith("src/static/jaudio_NES/internal/"):
self.cflags = c.JAUDIO_FUNC_ALIGN_32_CFLAGS
elif path.startswith("src/static/jaudio_NES/game/"):
self.cflags = c.JAUDIO_USER_CFLAGS
else:
self.cflags = c.JAUDIO_CFLAGS
self.cc = c.CC
elif path.startswith("src/static/JSystem/JGadget/"):
self.cflags = c.JSYSTEM_JGADGET_CFLAGS
self.cc = c.CC
elif path.startswith("src/static/JSystem/"):
self.cflags = c.JSYSTEM_CFLAGS
self.cc = c.CC
elif path.startswith("src/static/Famicom/"):
self.cflags = c.FAMICOM_CLFAGS
if "ksNes" in path: # ksNes doesn't have rodata pooling off
self.cc = c.CC
else:
self.cc = c.CC_R
elif path.startswith("src/static/GBA2/"):
self.cflags = c.DOL_CFLAGS_SDATA0_CFLAGS
self.cc = c.CC
elif path.startswith("src/static/bootdata/") or path == "src/static/boot.c" or path == "src/static/initial_menu.c":
self.cflags = c.DOL_BOOT_CFLAGS
self.cc = c.CC
elif path == "src/static/dvderr.c":
self.cflags = c.DOL_DVDERR_CFLAGS
self.cc = c.CC
elif path.startswith("src/static/jaudio_NES"):
self.cc = c.CC
self.cflags = c.DOL_CPPFLAGS
elif path.startswith("src/static/TRK") and not path.startswith("src/static/TRK/init"):
self.cc = c.CC
self.cflags = c.DOL_TRK_CFLAGS
elif os.path.dirname(path).endswith("src/static"):
self.cflags = c.DOL_CFLAGS_SDATA0_CFLAGS
self.cc = c.CC
else:
self.cflags = ctx.cflags
self.cc = c.CC_R
# Find generated includes
with open(path, encoding="utf-8") as f:
gen_includes = GeneratedInclude.find(ctx, path, f.read())
self.s_path = f"$builddir/{path}.s"
super().__init__(True, path, f"$builddir/{os.path.splitext(path)[0]}.o", gen_includes)
def build(self):
n.build(
self.o_path,
rule = "cc",
inputs = self.src_path,
implicit = [inc.path for inc in self.gen_includes],
variables = {
"cc" : self.cc,
"cflags" : self.cflags
}
)
# Optional manual debug target
n.build(
self.s_path,
rule = "ccs",
inputs = self.src_path,
implicit = [inc.path for inc in self.gen_includes],
variables = {
"cflags" : self.cflags
}
)
def load_sources(ctx: c.SourceContext):
raw = c.get_cmd_stdout(
f"{c.SLICES} {ctx.binary} {ctx.slices} -o -p {ctx.srcdir}/"
)
return [Source.make(ctx, s) for s in json.loads(raw)]
def find_gen_includes(sources: List[Source]):
ret = defaultdict(list)
for source in sources:
if not isinstance(source, CSource):
continue
for inc in source.gen_includes:
ret[type(inc)].append(inc)
return ret
def make_asm_list(path: str, asm_includes: List[AsmInclude]):
with open(path, 'wb') as f:
pickle.dump(
[
int(inc.addr, 16)
for inc in asm_includes
],
f
)
forcefiles = []
def remove_prefix(text, prefix):
if text.startswith(prefix):
return text[len(prefix):]
return text
def make_objdiff_json(sources: List[Source]):
data = {
'min_version' : "0.4.3",
'custom_make' : "ninja",
'target_dir' : f"{c.EXPECTED}/build",
'base_dir' : f"{c.BUILDDIR}",
'build_target' : False,
'objects' : [
{
'path' : remove_prefix(src.o_path, "$builddir/"),
'name' : src.src_path,
}
for src in sources
if src.decompiled
]
}
with open("objdiff.json", 'w') as f:
json.dump(data, f, indent=4)
dol_sources = load_sources(c.DOL_CTX)
dol_gen_includes = find_gen_includes(dol_sources)
make_asm_list(c.DOL_ASM_LIST, dol_gen_includes[AsmInclude])
rel_sources = load_sources(c.REL_CTX)
rel_gen_includes = find_gen_includes(rel_sources)
make_asm_list(c.REL_ASM_LIST, rel_gen_includes[AsmInclude])
make_objdiff_json(dol_sources + rel_sources)
##########
# Builds #
##########
n.build(
c.EXTERNS,
rule = "relextern",
inputs = c.REL_YML
)
n.build(
f"{c.OUTDIR}/forest_1st.arc",
rule = "arctool",
inputs = f"{c.FOREST_1STDIR}"
)
n.build(
f"{c.OUTDIR}/forest_2nd.arc",
rule = "arctool",
inputs = f"{c.FOREST_2NDDIR}"
)
n.build(
[c.REL_LABELS, c.REL_RELOCS],
rule = "analyse",
inputs = c.REL_YML,
implicit = [c.ANALYSIS_OVERRIDES, c.EXTERNS],
variables = {
"analysisflags" : "$ppcdis_analysis_flags"
}
)
n.build(
[c.DOL_LABELS, c.DOL_RELOCS],
rule = "analyse",
inputs = c.DOL_YML,
implicit = [c.ANALYSIS_OVERRIDES, c.EXTERNS],
variables = {
"analysisflags" : f"$ppcdis_analysis_flags"
}
)
for cl, includes in dol_gen_includes.items():
cl.build(includes)
for cl, includes in rel_gen_includes.items():
cl.build(includes)
dol_gen_asm = []
for source in dol_sources:
if isinstance(source, GenAsmSource):
dol_gen_asm.append(source)
else:
source.build()
GenAsmSource.batch_build(dol_gen_asm)
rel_gen_asm = []
for source in rel_sources:
if isinstance(source, GenAsmSource):
rel_gen_asm.append(source)
else:
source.build()
GenAsmSource.batch_build(rel_gen_asm)
n.build(
c.DOL_LCF_TEMP,
rule="forceactivegen",
inputs=[c.DOL_LCF_TEMPLATE, c.DOL_YML, c.DOL_LABELS, c.GAME_SYMBOLS, c.EXTERNS]
)
n.build(
c.DOL_LCF,
rule="forcefiles",
inputs=c.DOL_LCF_TEMP,
variables={
"forcefiles" : ' '.join(forcefiles)
}
)
n.build(
c.DOL_ELF,
rule="ld",
inputs=[s.o_path for s in dol_sources],
implicit=c.DOL_LCF,
implicit_outputs=c.DOL_MAP,
variables={
"map" : c.DOL_MAP,
"lcf" : c.DOL_LCF,
"ldflags": c.DOL_LDFLAGS
}
)
n.build(
c.DOL_OUT,
rule="elf2dol",
inputs=c.DOL_ELF,
)
n.build(
c.DOL_OK,
rule = "sha1sum",
inputs = c.DOL_SHA,
implicit = [c.DOL_OUT]
)
n.default(c.DOL_OK)
n.build(
c.REL_PLF,
rule="ld",
inputs=[s.o_path for s in rel_sources],
implicit=c.REL_LCF,
implicit_outputs=c.REL_MAP,
variables={
"map" : c.REL_MAP,
"lcf" : c.REL_LCF,
"ldflags" : c.LDFLAGS + " -r1 -m _prolog"
}
)
n.build(
c.REL_OUT,
rule="elf2rel",
inputs=[c.REL_PLF, c.DOL_ELF],
variables={
"flags" : f"-n 20 --name-size 0x38 -v 2 -r {c.REL_YML}"
}
)
n.build(
c.REL_OK,
rule = "sha1sum",
inputs = c.REL_SHA,
implicit = [c.REL_OUT]
)
n.default(c.REL_OK)
# Optional full binary disassembly
n.build(
c.DOL_FULL,
rule = "disasm",
inputs=[c.DOL_YML, c.DOL_LABELS, c.DOL_RELOCS],
implicit=[c.GAME_SYMBOLS, c.DOL_DISASM_OVERRIDES],
variables={
"disasmflags" : f"-m {c.GAME_SYMBOLS} -o {c.REL_DISASM_OVERRIDES}"
}
)
n.build(
c.REL_FULL,
rule = "disasm",
inputs=[c.REL_YML, c.REL_LABELS, c.REL_RELOCS],
implicit=[c.GAME_SYMBOLS, c.REL_DISASM_OVERRIDES],
variables={
"disasmflags" : f"-m {c.GAME_SYMBOLS} -o {c.REL_DISASM_OVERRIDES}"
}
)
##########
# Ouptut #
##########
with open("build.ninja", 'w') as f:
f.write(outbuf.getvalue())
n.close()