2023-02-13 08:33:10 +00:00
|
|
|
import csv, datetime, glob, json, io, math, os, sys
|
|
|
|
from git import Repo
|
2021-12-28 02:28:53 +00:00
|
|
|
from pathlib import Path
|
|
|
|
|
2023-02-13 08:33:10 +00:00
|
|
|
import pandas as pd
|
|
|
|
import plotly.express as px
|
|
|
|
|
2021-12-28 02:28:53 +00:00
|
|
|
libraries = { }
|
|
|
|
|
2022-05-12 22:54:58 +00:00
|
|
|
def truncate(number, digits) -> float:
|
|
|
|
stepper = 10.0 ** digits
|
|
|
|
return math.trunc(stepper * number) / stepper
|
|
|
|
|
2022-07-15 06:27:39 +00:00
|
|
|
def generateFullProgJSON(label, percent, color):
|
|
|
|
json = []
|
|
|
|
json.append("{\n")
|
|
|
|
json.append("\t\"schemaVersion\": 1,\n")
|
|
|
|
json.append(f"\t\"label\": \"{label}\",\n")
|
2023-02-28 06:37:31 +00:00
|
|
|
json.append(f"\t\"message\": \"{truncate(percent, 3)}%\",\n")
|
2022-07-15 06:27:39 +00:00
|
|
|
json.append(f"\t\"color\": \"{color}\"\n")
|
|
|
|
json.append("}")
|
|
|
|
|
|
|
|
with open(f"data/{label}.json", "w") as w:
|
|
|
|
w.writelines(json)
|
|
|
|
|
2021-12-28 02:28:53 +00:00
|
|
|
class Function:
|
|
|
|
name = ""
|
|
|
|
isCompleted = False
|
|
|
|
funcSize = 0
|
|
|
|
|
|
|
|
def __init__(self, name, isComplete, funcSize):
|
|
|
|
self.name = name
|
|
|
|
self.isCompleted = isComplete
|
|
|
|
self.funcSize = funcSize
|
|
|
|
|
|
|
|
class Object:
|
|
|
|
name = ""
|
|
|
|
functions = []
|
|
|
|
totalFunctions = 0
|
|
|
|
totalCompletedFunctions = 0
|
|
|
|
|
|
|
|
def __init__(self, name):
|
|
|
|
self.name = name
|
|
|
|
self.functions = list()
|
|
|
|
self.totalFunctions = 0
|
|
|
|
self.totalCompletedFunctions = 0
|
|
|
|
|
|
|
|
def addFunction(self, function):
|
|
|
|
self.functions.append(function)
|
|
|
|
|
|
|
|
if function.isCompleted:
|
|
|
|
self.totalCompletedFunctions += 1
|
|
|
|
|
|
|
|
self.totalFunctions += 1
|
|
|
|
|
|
|
|
def getFunctions(self):
|
|
|
|
return self.functions
|
|
|
|
|
|
|
|
def calculateProgress(self):
|
|
|
|
fullSize = 0
|
|
|
|
doneSize = 0
|
2023-01-05 10:40:59 +00:00
|
|
|
numFuncs = 0
|
|
|
|
doneFuncs = 0
|
2021-12-28 02:28:53 +00:00
|
|
|
for function in self.functions:
|
|
|
|
fullSize += function.funcSize
|
2023-01-05 10:40:59 +00:00
|
|
|
numFuncs += 1
|
2021-12-28 02:28:53 +00:00
|
|
|
|
|
|
|
if function.isCompleted:
|
|
|
|
doneSize += function.funcSize
|
2023-01-05 10:40:59 +00:00
|
|
|
doneFuncs += 1
|
2021-12-28 02:28:53 +00:00
|
|
|
|
2023-01-05 10:40:59 +00:00
|
|
|
return doneSize, fullSize, numFuncs, doneFuncs
|
2021-12-28 02:28:53 +00:00
|
|
|
|
|
|
|
class Library:
|
|
|
|
name = ""
|
|
|
|
objects = []
|
|
|
|
|
|
|
|
def __init__(self, name):
|
|
|
|
self.name = name
|
|
|
|
self.objects = list()
|
|
|
|
|
|
|
|
def addObject(self, object):
|
|
|
|
self.objects.append(object)
|
|
|
|
|
2021-12-29 05:02:11 +00:00
|
|
|
def addFunctionToObject(self, obj, function):
|
|
|
|
if self.containsObject(obj.name):
|
|
|
|
self.findObject(obj.name).addFunction(function)
|
|
|
|
else:
|
|
|
|
self.addObject(obj)
|
|
|
|
self.addFunctionToObject(obj, function)
|
|
|
|
|
|
|
|
def findObject(self, objectName):
|
|
|
|
for obj in self.objects:
|
|
|
|
if obj.name == objectName:
|
|
|
|
return obj
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
2021-12-28 02:28:53 +00:00
|
|
|
def getObjects(self):
|
|
|
|
return self.objects
|
|
|
|
|
|
|
|
def containsObject(self, object):
|
|
|
|
for obj in self.objects:
|
|
|
|
if obj.name == object:
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
def calculateProgress(self):
|
|
|
|
fullSize = 0
|
|
|
|
doneSize = 0
|
2023-01-05 10:40:59 +00:00
|
|
|
funcNum = 0
|
|
|
|
funcDone = 0
|
2021-12-28 02:28:53 +00:00
|
|
|
|
|
|
|
for obj in self.objects:
|
2023-01-05 10:40:59 +00:00
|
|
|
d, f, func_num, func_done = obj.calculateProgress()
|
2021-12-28 02:28:53 +00:00
|
|
|
fullSize += f
|
|
|
|
doneSize += d
|
2023-01-05 10:40:59 +00:00
|
|
|
funcNum += func_num
|
|
|
|
funcDone += func_done
|
2021-12-28 02:28:53 +00:00
|
|
|
|
2023-01-05 10:40:59 +00:00
|
|
|
return doneSize, fullSize, funcNum, funcDone
|
|
|
|
|
2021-12-28 02:28:53 +00:00
|
|
|
|
2022-05-12 22:54:58 +00:00
|
|
|
def getName(self):
|
|
|
|
return self.name
|
|
|
|
|
|
|
|
def generateJSONTag(self, percent, color):
|
|
|
|
json = []
|
|
|
|
json.append("{\n")
|
|
|
|
json.append("\t\"schemaVersion\": 1,\n")
|
|
|
|
json.append(f"\t\"label\": \"{self.name}\",\n")
|
2022-08-24 05:22:46 +00:00
|
|
|
json.append(f"\t\"message\": \"{truncate(percent, 3)}%\",\n")
|
2022-05-12 22:54:58 +00:00
|
|
|
json.append(f"\t\"color\": \"{color}\"\n")
|
|
|
|
json.append("}")
|
|
|
|
|
|
|
|
with open(f"data/json/{self.name}.json", "w") as w:
|
|
|
|
w.writelines(json)
|
|
|
|
|
2021-12-28 02:28:53 +00:00
|
|
|
def generateMarkdown(self):
|
|
|
|
# first we are going to generate the tables for the object files themselves in the library
|
|
|
|
page = []
|
|
|
|
page.append(f"# {self.name}\n")
|
2022-06-12 06:14:09 +00:00
|
|
|
page.append("| Symbol | Meaning \n")
|
2022-06-12 06:15:22 +00:00
|
|
|
page.append("| ------------- | ------------- \n")
|
2022-06-12 06:14:09 +00:00
|
|
|
page.append("| :x: | Object has not yet been started. \n")
|
|
|
|
page.append("| :eight_pointed_black_star: | Object is in progress. \n")
|
|
|
|
page.append("| :white_check_mark: | Object is completed. \n")
|
|
|
|
page.append("\n\n")
|
2022-06-12 06:09:52 +00:00
|
|
|
page.append("| Object | Percentage (of Bytes) | Functions Done / Total Functions | Percentage (Functions) | Status \n")
|
2022-06-12 06:10:41 +00:00
|
|
|
page.append("| ------------- | ------------- | ------------- | ------------- | ------------- \n")
|
2021-12-28 02:28:53 +00:00
|
|
|
|
|
|
|
for obj in self.objects:
|
2023-01-05 10:40:59 +00:00
|
|
|
d, f, pad1, pad2 = obj.calculateProgress()
|
2021-12-28 02:28:53 +00:00
|
|
|
prog = (d / f) * 100.0
|
2021-12-28 03:29:35 +00:00
|
|
|
funcProg = (obj.totalCompletedFunctions / obj.totalFunctions) * 100.0
|
2022-06-12 06:09:52 +00:00
|
|
|
|
|
|
|
marker = ":x:"
|
|
|
|
|
|
|
|
if d == f:
|
|
|
|
marker = ":white_check_mark:"
|
|
|
|
elif d != f and d != 0:
|
|
|
|
marker = ":eight_pointed_black_star:"
|
|
|
|
|
2022-12-06 18:46:37 +00:00
|
|
|
obj_page_name = obj.name.replace(".o", "")
|
2021-12-28 02:28:53 +00:00
|
|
|
|
2022-12-06 18:46:37 +00:00
|
|
|
page.append(f"| [{obj.name}](https://github.com/shibbo/Petari/blob/master/docs/lib/{self.name}/{obj_page_name}.md) | {prog}% | {obj.totalCompletedFunctions} / {obj.totalFunctions} | {funcProg}% | {marker} \n")
|
2021-12-28 02:28:53 +00:00
|
|
|
|
2022-12-06 18:46:37 +00:00
|
|
|
with open(f"docs/lib/{self.name}.md", "w") as w:
|
|
|
|
w.writelines(page)
|
|
|
|
|
|
|
|
# now that we have written the main page, let's make the object page too
|
2021-12-28 02:28:53 +00:00
|
|
|
for obj in self.objects:
|
2022-12-06 18:46:37 +00:00
|
|
|
obj_page = []
|
|
|
|
|
|
|
|
obj_page.append(f"# {obj.name}\n")
|
|
|
|
obj_page.append("| Symbol | Meaning \n")
|
|
|
|
obj_page.append("| ------------- | ------------- \n")
|
2022-12-07 14:52:41 +00:00
|
|
|
obj_page.append("| :x: | Function has not yet been started or is not matching. \n")
|
2022-12-07 05:31:17 +00:00
|
|
|
obj_page.append("| :white_check_mark: | Function is completed. \n")
|
2022-12-06 18:46:37 +00:00
|
|
|
obj_page.append("\n\n")
|
|
|
|
|
2023-01-05 10:40:59 +00:00
|
|
|
pad1, pad2, numFunc, doneFunc = obj.calculateProgress()
|
|
|
|
percent = (doneFunc / numFunc) * 100.0
|
|
|
|
|
|
|
|
obj_page.append(f"# {doneFunc} / {numFunc} Completed -- ({percent}%)\n")
|
|
|
|
|
2022-12-06 18:46:37 +00:00
|
|
|
obj_page.append(f"# {obj.name}\n")
|
|
|
|
obj_page.append("| Symbol | Decompiled? |\n")
|
|
|
|
obj_page.append("| ------------- | ------------- |\n")
|
2021-12-28 02:28:53 +00:00
|
|
|
|
|
|
|
for func in obj.getFunctions():
|
|
|
|
marker = ":x:"
|
|
|
|
|
|
|
|
if func.isCompleted:
|
|
|
|
marker = ":white_check_mark:"
|
|
|
|
|
2022-12-07 05:35:02 +00:00
|
|
|
obj_page.append(f"| `{func.name}` | {marker} |\n")
|
2021-12-28 02:28:53 +00:00
|
|
|
|
2022-12-06 18:46:37 +00:00
|
|
|
obj_page_name = obj.name.replace(".o", "")
|
2021-12-28 02:28:53 +00:00
|
|
|
|
2022-12-06 18:46:37 +00:00
|
|
|
if not os.path.exists(f"docs/lib/{self.name}"):
|
|
|
|
os.makedirs(f"docs/lib/{self.name}")
|
|
|
|
|
|
|
|
with open(f"docs/lib/{self.name}/{obj_page_name}.md", "w") as w:
|
|
|
|
w.writelines(obj_page)
|
2021-12-28 02:28:53 +00:00
|
|
|
|
2022-07-15 06:27:39 +00:00
|
|
|
game_libs = [
|
|
|
|
"Animation.a",
|
|
|
|
"AreaObj.a",
|
|
|
|
"AudioLib.a",
|
|
|
|
"Boss.a",
|
|
|
|
"Camera.a",
|
|
|
|
"Demo.a",
|
|
|
|
"Effect.a",
|
|
|
|
"Enemy.a",
|
|
|
|
"GameAudio.a",
|
|
|
|
"Gravity.a",
|
|
|
|
"LiveActor.a",
|
|
|
|
"Map.a",
|
|
|
|
"MapObj.a",
|
|
|
|
"NameObj.a",
|
|
|
|
"NPC.a",
|
2022-07-17 07:46:28 +00:00
|
|
|
"NWC24.a",
|
2022-07-15 06:27:39 +00:00
|
|
|
"Player.a",
|
|
|
|
"RhythmLib.a",
|
|
|
|
"Ride.a",
|
|
|
|
"Scene.a",
|
|
|
|
"Screen.a",
|
|
|
|
"Speaker.a",
|
|
|
|
"System.a",
|
|
|
|
"Util.a"
|
|
|
|
]
|
|
|
|
|
2022-11-29 07:55:08 +00:00
|
|
|
lib_percent_colors = {
|
|
|
|
"Animation": "brightgreen",
|
|
|
|
"AreaObj": "green",
|
|
|
|
"AudioLib": "yellow",
|
|
|
|
"Boss": "orange",
|
|
|
|
"Camera": "red",
|
|
|
|
"Demo": "D65076",
|
|
|
|
"Effect": "pink",
|
|
|
|
"Enemy": "magenta",
|
|
|
|
"GameAudio": "teal",
|
|
|
|
"Gravity": "maroon",
|
|
|
|
"LiveActor": "cyan",
|
|
|
|
"Map": "silver",
|
|
|
|
"MapObj": "tan",
|
|
|
|
"NameObj": "indigo",
|
|
|
|
"NPC": "7fffd4",
|
|
|
|
"Player": "ff7f50",
|
|
|
|
"RhythmLib": "088da5",
|
|
|
|
"Ride": "ffff66",
|
|
|
|
"Scene": "a0db8e",
|
|
|
|
"Screen": "ff4040",
|
|
|
|
"Speaker": "daa520",
|
|
|
|
"System": "696969",
|
|
|
|
"Util": "ff6666"
|
|
|
|
}
|
|
|
|
|
2021-12-28 02:28:53 +00:00
|
|
|
func_sizes = {}
|
|
|
|
|
|
|
|
# start by reading function sizes
|
2022-08-30 04:22:25 +00:00
|
|
|
with open("data/funcSizes.txt", "r") as file:
|
2021-12-28 02:28:53 +00:00
|
|
|
lines = file.readlines()
|
|
|
|
|
|
|
|
for line in lines:
|
|
|
|
spl = line.split('=')
|
|
|
|
sym = spl[0]
|
|
|
|
func_sizes[sym] = spl[1].split(',', 1)[1]
|
|
|
|
|
|
|
|
csv_files = glob.glob("csv/*.csv")
|
|
|
|
|
2022-07-04 18:55:45 +00:00
|
|
|
for csv_file in sorted(csv_files, key=str.casefold):
|
2021-12-28 02:28:53 +00:00
|
|
|
lib_name = Path(csv_file).stem
|
|
|
|
lib_arch_name = Path(csv_file).stem + ".a"
|
|
|
|
|
2022-07-15 06:27:39 +00:00
|
|
|
library = Library(lib_name)
|
2021-12-28 02:28:53 +00:00
|
|
|
|
2022-07-15 06:27:39 +00:00
|
|
|
with open(csv_file, "r") as c:
|
|
|
|
csv_reader = csv.reader(c)
|
2021-12-28 02:28:53 +00:00
|
|
|
|
2022-07-15 06:27:39 +00:00
|
|
|
for row in csv_reader:
|
|
|
|
symbol = row[0]
|
|
|
|
symbol = symbol.replace(",", ",")
|
|
|
|
if symbol == "Symbol Name":
|
|
|
|
continue
|
2021-12-28 02:28:53 +00:00
|
|
|
|
2022-07-15 06:27:39 +00:00
|
|
|
obj = row[1]
|
|
|
|
lib = row[2]
|
|
|
|
done = row[3] == "true"
|
2021-12-28 02:28:53 +00:00
|
|
|
|
2022-07-15 06:27:39 +00:00
|
|
|
funcSize = int(func_sizes[symbol].strip("\n"))
|
|
|
|
func = Function(symbol, done, funcSize)
|
2021-12-28 02:28:53 +00:00
|
|
|
|
2022-07-15 06:27:39 +00:00
|
|
|
obj = Object(obj)
|
|
|
|
library.addFunctionToObject(obj, func)
|
|
|
|
|
|
|
|
libraries[lib_name] = library
|
2021-12-28 02:28:53 +00:00
|
|
|
|
2022-07-15 06:27:39 +00:00
|
|
|
full_sdk_size = 0
|
|
|
|
done_sdk_size = 0
|
|
|
|
|
2023-01-05 10:40:59 +00:00
|
|
|
num_funcs = 0
|
|
|
|
num_done_funcs = 0
|
2022-07-15 06:27:39 +00:00
|
|
|
|
2021-12-28 02:28:53 +00:00
|
|
|
print("Calculating percentages...")
|
|
|
|
|
|
|
|
for key in libraries:
|
|
|
|
lib = libraries[key]
|
2023-01-05 10:40:59 +00:00
|
|
|
d, f, funcNum, funcDoneNum = lib.calculateProgress()
|
2021-12-28 02:28:53 +00:00
|
|
|
|
2022-07-15 06:27:39 +00:00
|
|
|
libName = f"{lib.getName()}.a"
|
|
|
|
|
|
|
|
if libName in game_libs:
|
|
|
|
full_sdk_size += f
|
|
|
|
done_sdk_size += d
|
2023-01-05 10:40:59 +00:00
|
|
|
num_funcs += funcNum
|
|
|
|
num_done_funcs += funcDoneNum
|
2022-07-15 06:27:39 +00:00
|
|
|
|
2022-11-29 07:55:08 +00:00
|
|
|
if lib.getName() not in lib_percent_colors:
|
|
|
|
lib.generateJSONTag((d / f ) * 100.0, "ffff66")
|
|
|
|
else:
|
|
|
|
lib.generateJSONTag((d / f ) * 100.0, lib_percent_colors[lib.getName()])
|
|
|
|
|
2022-08-25 05:51:53 +00:00
|
|
|
progPercent_sdk = (done_sdk_size / full_sdk_size ) * 100.0
|
2023-01-05 10:40:59 +00:00
|
|
|
progPercent_Func = (num_done_funcs / num_funcs) * 100.0
|
2021-12-28 02:28:53 +00:00
|
|
|
|
2022-08-25 05:51:53 +00:00
|
|
|
print(f"Progress: {progPercent_sdk}% [{done_sdk_size} / {full_sdk_size}] bytes")
|
2023-01-05 10:40:59 +00:00
|
|
|
print(f"Progress: {progPercent_Func}% [{num_done_funcs} / {num_funcs}] functions")
|
2021-12-28 02:28:53 +00:00
|
|
|
print("Generating JSON...")
|
|
|
|
|
2022-08-25 05:51:53 +00:00
|
|
|
generateFullProgJSON("Game", progPercent_sdk, "blue")
|
2022-05-14 06:28:35 +00:00
|
|
|
|
2021-12-28 02:28:53 +00:00
|
|
|
print("Generating markdown pages...")
|
|
|
|
|
|
|
|
# now we generate our progress page
|
|
|
|
progressPage = []
|
|
|
|
progressPage.append("| Library | Percentage |\n")
|
|
|
|
progressPage.append("| ------------- | ------------- |\n")
|
|
|
|
|
|
|
|
for key in libraries:
|
|
|
|
lib = libraries[key]
|
2023-01-05 10:40:59 +00:00
|
|
|
d, f, pad1, pad2 = lib.calculateProgress()
|
2021-12-28 02:28:53 +00:00
|
|
|
libprog = (d / f) * 100.0
|
2022-09-03 04:51:35 +00:00
|
|
|
progressPage.append(f"| [{key}](https://github.com/shibbo/Petari/blob/master/docs/lib/{key}.md) | {libprog}% |\n")
|
2021-12-28 02:28:53 +00:00
|
|
|
|
|
|
|
with open("docs/PROGRESS.md", "w") as w:
|
|
|
|
w.writelines(progressPage)
|
|
|
|
|
|
|
|
# now we write the progress page for each library
|
|
|
|
for key in libraries:
|
|
|
|
lib = libraries[key]
|
|
|
|
lib.generateMarkdown()
|
|
|
|
|
2023-02-14 08:18:32 +00:00
|
|
|
print("Generating progress graph...")
|
|
|
|
|
2023-02-13 08:33:10 +00:00
|
|
|
# now we do the cool progress drawing chart
|
|
|
|
x_axis = [datetime.datetime.now()]
|
|
|
|
y_axis = [progPercent_sdk]
|
|
|
|
|
|
|
|
# np.seterr(all="ignore")
|
|
|
|
|
|
|
|
repo = Repo(".")
|
|
|
|
|
|
|
|
for commit in repo.iter_commits(rev='92c1a7e..master'):
|
|
|
|
cur_file = None
|
|
|
|
|
|
|
|
try:
|
|
|
|
cur_file = commit.tree / 'data' / 'percent.json'
|
|
|
|
except:
|
|
|
|
try:
|
|
|
|
cur_file = commit.tree / 'data' / 'game.json'
|
|
|
|
except:
|
|
|
|
try:
|
|
|
|
cur_file = commit.tree / 'data' / 'Game.json'
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
pass
|
|
|
|
pass
|
|
|
|
|
|
|
|
if cur_file is None:
|
|
|
|
continue
|
|
|
|
|
|
|
|
with io.BytesIO(cur_file.data_stream.read()) as f:
|
|
|
|
try:
|
|
|
|
percent_str = json.loads(f.read().decode('utf-8'))['message'].strip("%")
|
|
|
|
x_axis.append(datetime.datetime.fromtimestamp(commit.committed_date))
|
|
|
|
y_axis.append(float(percent_str))
|
|
|
|
except:
|
|
|
|
continue
|
|
|
|
|
|
|
|
df = pd.DataFrame({'date': x_axis, 'progress': y_axis})
|
|
|
|
fig = px.line(df, x='date', y='progress', title='Petari Progress', line_shape='hv', markers=False)
|
|
|
|
fig.update_yaxes(ticksuffix='%')
|
|
|
|
fig.write_image('prog.png')
|
|
|
|
|
2022-08-25 05:51:53 +00:00
|
|
|
print("Done.")
|