Skip to content

Commit

Permalink
Merge pull request #101 from RevoSucks/header_conflict
Browse files Browse the repository at this point in the history
replace defunct calcprogress.py
  • Loading branch information
RevoSucks committed Aug 12, 2024
2 parents 5863908 + d53ccb3 commit 9810afa
Show file tree
Hide file tree
Showing 2 changed files with 98 additions and 118 deletions.
118 changes: 0 additions & 118 deletions calcprogress.py

This file was deleted.

98 changes: 98 additions & 0 deletions progress.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
#!/usr/bin/env python3

# SPDX-FileCopyrightText: © 2023 ZeldaRET
# SPDX-License-Identifier: MIT

from __future__ import annotations

import argparse
import mapfile_parser
from pathlib import Path


ASMPATH = Path("asm")
NONMATCHINGS = "nonmatchings"


def getProgressFromMapFile(mapFile: mapfile_parser.MapFile, asmPath: Path, nonmatchings: Path, aliases: dict[str, str]=dict(), pathIndex: int=2) -> tuple[mapfile_parser.ProgressStats, dict[str, mapfile_parser.ProgressStats]]:
totalStats = mapfile_parser.ProgressStats()
progressPerFolder: dict[str, mapfile_parser.ProgressStats] = dict()

for segment in mapFile:
for file in segment:
if len(file) == 0:
continue

folder = file.filepath.parts[pathIndex]

if ".a" in folder:
folder = folder.split('.a')[0]

if folder in aliases:
folder = aliases[folder]

if folder not in progressPerFolder:
progressPerFolder[folder] = mapfile_parser.ProgressStats()

originalFilePath = Path(*file.filepath.parts[pathIndex:])

extensionlessFilePath = originalFilePath
while extensionlessFilePath.suffix:
extensionlessFilePath = extensionlessFilePath.with_suffix("")

fullAsmFile = asmPath / extensionlessFilePath.with_suffix(".s")
wholeFileIsUndecomped = fullAsmFile.exists()


for func in file:
funcAsmPath = nonmatchings / extensionlessFilePath / f"{func.name}.s"

symSize = 0
if func.size is not None:
symSize = func.size

if wholeFileIsUndecomped:
totalStats.undecompedSize += symSize
progressPerFolder[folder].undecompedSize += symSize
elif funcAsmPath.exists():
totalStats.undecompedSize += symSize
progressPerFolder[folder].undecompedSize += symSize
else:
totalStats.decompedSize += symSize
progressPerFolder[folder].decompedSize += symSize

return totalStats, progressPerFolder


def getProgress(mapPath: Path, version: str) -> tuple[mapfile_parser.ProgressStats, dict[str, mapfile_parser.ProgressStats]]:
mapFile = mapfile_parser.MapFile()
mapFile.readMapFile(mapPath)

for segment in mapFile:
for file in segment:
if len(file) == 0:
continue

filepathParts = list(file.filepath.parts)
if version in filepathParts:
filepathParts.remove(version)
file.filepath = Path(*filepathParts)

nonMatchingsPath = ASMPATH / version / NONMATCHINGS

return getProgressFromMapFile(mapFile.filterBySectionType(".text"), ASMPATH / version, nonMatchingsPath, aliases={"ultralib": "libultra"})

def progressMain():
parser = argparse.ArgumentParser()
parser.add_argument("-v", "--version", help="version to process", default="us")

args = parser.parse_args()

mapPath = Path("build") / f"pokestadium-{args.version}.map"

totalStats, progressPerFolder = getProgress(mapPath, args.version)

mapfile_parser.progress_stats.printStats(totalStats, progressPerFolder)

if __name__ == "__main__":
progressMain()

0 comments on commit 9810afa

Please sign in to comment.