[Assets] Implement
This commit is contained in:
parent
cc634c7805
commit
62b843f9f6
3 changed files with 57 additions and 0 deletions
27
src/ui/assets.ts
Normal file
27
src/ui/assets.ts
Normal file
|
@ -0,0 +1,27 @@
|
|||
import { Asset, Assets } from "@types";
|
||||
import { after } from "@lib/patcher";
|
||||
import { findByProps } from "@metro/filters";
|
||||
|
||||
const assetsModule = findByProps("registerAsset");
|
||||
|
||||
export const all: Assets = {};
|
||||
|
||||
export default function patchAssets() {
|
||||
try {
|
||||
after("registerAsset", assetsModule, (args: Asset[], id: number) => {
|
||||
const asset = args[0];
|
||||
all[asset.name] = { ...asset, id };
|
||||
});
|
||||
|
||||
for (let id = 1; ; id++) {
|
||||
const asset = assetsModule.getAssetByID(id);
|
||||
if (!asset) break;
|
||||
if (all[asset.name]) continue;
|
||||
};
|
||||
} catch {};
|
||||
}
|
||||
|
||||
export const find = (filter: (a: any) => void): Asset | null | undefined => Object.values(all).find(filter);
|
||||
export const getAssetByName = (name: string): Asset => all[name];
|
||||
export const getAssetByID = (name: string): Asset => assetsModule.getAssetByID(name);
|
||||
export const getAssetIDByName = (name: string) => all[name].id;
|
Loading…
Add table
Add a link
Reference in a new issue