mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2025-10-10 07:02:33 +02:00
* Unused icons to check later
* Exclude disabled icons from firmware
* Format
* Also report free flash in gh comment
* Fix free flash calc
* Fix?
* Fix??
* Split to next line
* Remove dead icons
* Some spring cleaning of icons cooker
* Improve unused icons script
* Disable icons that cant be used in asset packs
* These will need a workaround for external
* Revert "These will need a workaround for external"
This reverts commit fb23d97952
.
* Here's the workaround: split assets lib
now there is "assets" and "fwassets"
firmware links with fwassets and includes all icons
however not all of them are exposed to api
if an app needs a firmware icon not in api, it can use fap_libs=["assets"]
this will link against this dummy assets lib
it only contains the icons that arent exposed to api
this way, an app using assets lib will still benefit from asset packs
but at same time, we can remove pointless icons from dfu blob
* Update changelog
40 lines
1.3 KiB
Python
Executable File
40 lines
1.3 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
import pathlib
|
|
|
|
root = pathlib.Path(__file__).parent / ".."
|
|
icons = root / "assets/icons"
|
|
|
|
|
|
def count_icon_usages(name: str):
|
|
count = 0
|
|
name = name.encode()
|
|
# EXTREMELY wasteful, but who cares
|
|
for dir in ("applications", "furi", "lib", "targets"):
|
|
for filetype in (".c", ".cpp", ".h", ".fam"):
|
|
for file in (root / dir).glob(f"**/*{filetype}"):
|
|
try:
|
|
if name in file.read_bytes():
|
|
count += 1
|
|
except Exception:
|
|
print(f"Failed to read {file}")
|
|
return count
|
|
|
|
|
|
if __name__ == "__main__":
|
|
counts = {}
|
|
|
|
for category in icons.iterdir():
|
|
if not category.is_dir():
|
|
continue
|
|
for icon in category.iterdir():
|
|
if icon.is_dir() and (icon / "frame_rate").is_file():
|
|
name = "A_" + icon.name.replace("-", "_")
|
|
elif icon.is_file() and icon.suffix == ".png":
|
|
name = "I_" + "_".join(icon.name.split(".")[:-1]).replace("-", "_")
|
|
else:
|
|
continue
|
|
counts[name[2:]] = count_icon_usages(name)
|
|
|
|
for name, count in sorted(counts.items(), key=lambda x: x[1], reverse=True):
|
|
print(f"{name} used {count} times")
|