Merge branch 'modules-proxy-patches' into immediate-finds-modules-proxy

This commit is contained in:
Nuckyz 2024-05-31 17:36:03 -03:00
commit 2656b60347
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9
2 changed files with 5 additions and 6 deletions

View file

@ -190,6 +190,7 @@ const moduleFactoriesHandler: ProxyHandler<PatchedModuleFactories> = {
return true;
}
};
/**
* Patches a module factory.
*
@ -218,10 +219,8 @@ function patchFactory(id: PropertyKey, factory: ModuleFactory) {
const patch = patches[i];
if (patch.predicate && !patch.predicate()) continue;
// indexOf is faster than includes because it doesn't check if searchString is a RegExp
// https://github.com/moonlight-mod/moonlight/blob/53ae39d4010277f49f3b70bebbd27b9cbcdb1c8b/packages/core/src/patch.ts#L61
const moduleMatches = typeof patch.find === "string"
? code.indexOf(patch.find) !== -1
? code.includes(patch.find)
: (patch.find.global && (patch.find.lastIndex = 0), patch.find.test(code));
if (!moduleMatches) continue;

View file

@ -46,7 +46,7 @@ export const filters = {
if (typeof m !== "function") return false;
const s = Function.prototype.toString.call(m);
for (const c of code) {
if (s.indexOf(c) === -1) return false;
if (!s.includes(c)) return false;
}
return true;
};
@ -476,7 +476,7 @@ export const findModuleId = traceFunction("findModuleId", function findModuleId(
const str = String(wreq.m[id]);
for (const c of code) {
if (str.indexOf(c) === -1) continue outer;
if (!str.includes(c)) continue outer;
}
return id;
}
@ -729,7 +729,7 @@ export function search(...filters: Array<string | RegExp>) {
const factory = factories[id];
const factoryStr = String(factory);
for (const filter of filters) {
if (typeof filter === "string" && factoryStr.indexOf(filter) === -1) continue outer;
if (typeof filter === "string" && !factoryStr.includes(filter)) continue outer;
if (filter instanceof RegExp && !filter.test(factoryStr)) continue outer;
}
results[id] = factory;