Map code (#80)

* split all map code

hype

* split area_table.bin properly

* fix coverage.py c_func_pattern to match multiline func signatures

* add src/world/* to makefile

* bump splat

* yikes

* splat maps without vram_lock

Co-authored-by: Alex Bates <hi@imalex.xyz>
This commit is contained in:
Ethan Roseman
2020-10-19 00:42:17 -04:00
committed by GitHub
parent a82d662627
commit 8e47ca56c4
6593 changed files with 473025 additions and 7 deletions

View File

@@ -27,7 +27,7 @@ def strip_c_comments(text):
return re.sub(pattern, replacer, text)
c_func_pattern = re.compile(
r"^(static\s+)?[^\s]+\s+([^\s(]+)\(([^\n)]*)\)\s+{",
r"^(static\s+)?[^\s]+\s+([^\s(]+)\(([^;)]*)\)[^;]+{",
re.MULTILINE
)
def funcs_in_c(text):