mirror of
https://github.com/pmret/papermario.git
synced 2024-11-10 04:52:34 +01:00
bae34c46ed
* changes for splat 0.9.0 * wip * git subrepo pull --branch=develop --force tools/splat subrepo: subdir: "tools/splat" merged: "2ff7357501" upstream: origin: "https://github.com/ethteck/splat.git" branch: "develop" commit: "2ff7357501" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo" commit: "2f68596" * OK * big_snowflakes gfx data * Jenkins? * cleanup * debuff effect gfx data * fix * more effect gfx data * dlabel * git subrepo pull --branch=experiment --force tools/splat subrepo: subdir: "tools/splat" merged: "1365775e09" upstream: origin: "https://github.com/ethteck/splat.git" branch: "experiment" commit: "1365775e09" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo" commit: "2f68596" * . * git subrepo pull --branch=experiment --force tools/splat subrepo: subdir: "tools/splat" merged: "6bd9fe1c4e" upstream: origin: "https://github.com/ethteck/splat.git" branch: "experiment" commit: "6bd9fe1c4e" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo" commit: "2f68596" * flower splash/trail gfx * throw_spiny gfx * disable_x and butterflies gfx data * draw_coin_sparkles * Warnings, cleanup * cleanin * attempt at test_item_player_collision * more gfx + cleanup * more effect gfx * func_8002D160 * update update_symbol_addrs and symbol_addrs * git subrepo pull --branch=develop --force tools/splat subrepo: subdir: "tools/splat" merged: "4914dc9029" upstream: origin: "https://github.com/ethteck/splat.git" branch: "develop" commit: "4914dc9029" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo" commit: "2f68596" * git subrepo pull --branch=master --force tools/splat subrepo: subdir: "tools/splat" merged: "aa71299594" upstream: origin: "https://github.com/ethteck/splat.git" branch: "master" commit: "aa71299594" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo" commit: "2f68596" * fix * fix regression * Add rabbitizer to requirements * warnings * symbol_addrs fixes
35 lines
922 B
Python
Executable File
35 lines
922 B
Python
Executable File
#! /usr/bin/python3
|
|
|
|
from sys import argv
|
|
import re
|
|
import png
|
|
|
|
if __name__ == "__main__":
|
|
infile, outfile = argv[1:3]
|
|
|
|
if len(argv) > 3:
|
|
cname = argv[3]
|
|
else:
|
|
cname = re.sub(r"[^0-9a-zA-Z_]", "_", infile)
|
|
|
|
if cname.startswith("ver_"):
|
|
cname = "_".join(cname.split("_")[2:])
|
|
|
|
if cname.startswith("src_"):
|
|
cname = cname[4:]
|
|
elif cname.startswith("assets_"):
|
|
cname = "_".join(cname.split("_")[2:])
|
|
|
|
img = png.Reader(infile)
|
|
width, height, rows, info = img.read()
|
|
|
|
with open(outfile, "w") as f:
|
|
f.write("// Generated file, do not edit.\n")
|
|
f.write(f"#ifndef _{cname.upper()}_\n")
|
|
f.write(f"#define _{cname.upper()}_\n")
|
|
f.write(f"\n")
|
|
f.write(f"#define {cname}_width {width}\n")
|
|
f.write(f"#define {cname}_height {height}\n")
|
|
f.write(f"\n")
|
|
f.write(f"#endif\n")
|