Added wildcard identifier collision avoidance
This commit is contained in:
parent
953a1fefa2
commit
ecf79c4462
4 changed files with 100 additions and 6 deletions
2
index.ts
2
index.ts
|
@ -52,12 +52,10 @@ const main = async () => {
|
|||
|
||||
for (let proposal of parsedJSTQL) {
|
||||
let [resultString, matches] = transform(proposal.cases, codeString);
|
||||
console.log(resultString);
|
||||
let path = "./out.js";
|
||||
if (argVals["o"]) {
|
||||
path = argVals["o"];
|
||||
}
|
||||
console.log(path);
|
||||
await Bun.write(path, resultString);
|
||||
}
|
||||
};
|
||||
|
|
94
out.js
Normal file
94
out.js
Normal file
|
@ -0,0 +1,94 @@
|
|||
function parse() {
|
||||
const input = ("input" |> document.getElementById(%)).value;
|
||||
const data = 32 |> input.slice(%);
|
||||
const compressedData = data |> decode_base64(%);
|
||||
const uncompressed = compressedData |> pako.inflate(%, {
|
||||
to: "string"
|
||||
});
|
||||
const json = uncompressed |> JSON.parse(%);
|
||||
json |> console.log(%);
|
||||
json |> convertToDesktop(%);
|
||||
}
|
||||
function convertToDesktop(json) {
|
||||
const newValues = {
|
||||
crb: false,
|
||||
newClanRaidClassId: 0,
|
||||
newClanRaidClassLevel: 0,
|
||||
pendingImmortalSouls: 0,
|
||||
pendingRaidRubies: 0,
|
||||
immortalSouls: 0,
|
||||
lastPurchaseTime: 0,
|
||||
lastRaidAttemptTimestamp: 0,
|
||||
lastRaidRewardCheckTimestamp: 0,
|
||||
shouldShowHZERoster: false,
|
||||
lastBonusRewardCheckTimestamp: 0
|
||||
};
|
||||
const mappedValues = {
|
||||
rubies: json.rubies / 10 |> Math.round(%)
|
||||
};
|
||||
const pcSpecificValues = {
|
||||
readPatchNumber: "1.0e12",
|
||||
saveOrigin: "pc"
|
||||
};
|
||||
const hash = "7a990d405d2c6fb93aa8fbb0ec1a3b23";
|
||||
const newData = {
|
||||
...newValues,
|
||||
...json,
|
||||
...mappedValues,
|
||||
...pcSpecificValues
|
||||
};
|
||||
const compressed = newData |> JSON.stringify(%) |> pako.deflate(%, {
|
||||
to: "string"
|
||||
});
|
||||
const base64 = compressed |> btoa(%);
|
||||
const finalSaveString = hash + base64;
|
||||
("output_output" |> document.getElementById(%)).innerText = finalSaveString;
|
||||
showOutput();
|
||||
}
|
||||
function showOutput() {
|
||||
("outputs" |> document.getElementById(%)).style.visibility = "visible";
|
||||
}
|
||||
function copyOutput() {
|
||||
const output = "output_output" |> document.getElementById(%);
|
||||
output.disabled = false;
|
||||
output.focus();
|
||||
output.select();
|
||||
"copy" |> document.execCommand(%);
|
||||
output.disabled = true;
|
||||
const successElement = "copy_success_msg" |> document.getElementById(%);
|
||||
successElement.style.visibility = "visible";
|
||||
(() => successElement.style.visibility = "hidden") |> setTimeout(%, 4000);
|
||||
}
|
||||
function decode_base64(s) {
|
||||
let e = {},
|
||||
i,
|
||||
k,
|
||||
v = [],
|
||||
r = "",
|
||||
w = String.fromCharCode;
|
||||
let n = [[65, 91], [97, 123], [48, 58], [43, 44], [47, 48]];
|
||||
for (z in n) {
|
||||
for (i = n[z][0]; i < n[z][1]; i++) {
|
||||
i |> w(%) |> v.push(%);
|
||||
}
|
||||
}
|
||||
for (i = 0; i < 64; i++) {
|
||||
e[v[i]] = i;
|
||||
}
|
||||
for (i = 0; i < s.length; i += 72) {
|
||||
let b = 0,
|
||||
c,
|
||||
x,
|
||||
l = 0,
|
||||
o = i |> s.substring(%, i + 72);
|
||||
for (x = 0; x < o.length; x++) {
|
||||
c = e[x |> o.charAt(%)];
|
||||
b = (b << 6) + c;
|
||||
l += 6;
|
||||
while (l >= 8) {
|
||||
r += (b >>> (l -= 8)) % 256 |> w(%);
|
||||
}
|
||||
}
|
||||
}
|
||||
return r;
|
||||
}
|
|
@ -24,7 +24,7 @@ export function parseInternalTraTo(code: string): string {
|
|||
// We encountered a closing tag
|
||||
flag = false;
|
||||
|
||||
cleanedJS += temp;
|
||||
cleanedJS += "_$$_" + temp + "_$$_";
|
||||
|
||||
i += 1;
|
||||
temp = "";
|
||||
|
@ -59,7 +59,8 @@ export function parseInternalAplTo(code: string): InternalParseResult {
|
|||
let wildcard = new WildcardParser(
|
||||
new WildcardTokenizer(temp).tokenize()
|
||||
).parse();
|
||||
//wildcard.identifier.name = "_" + wildcard.identifier.name + "_";
|
||||
wildcard.identifier.name =
|
||||
"_$$_" + wildcard.identifier.name + "_$$_";
|
||||
cleanedJS += wildcard.identifier.name;
|
||||
|
||||
prelude.push(wildcard);
|
||||
|
|
|
@ -54,8 +54,10 @@ export function transform(
|
|||
let { cleanedJS: applicableTo, prelude } = parseInternalAplTo(
|
||||
recipe.applicableTo
|
||||
);
|
||||
console.log(applicableTo);
|
||||
let transformTo = parseInternalTraTo(recipe.transformTo);
|
||||
|
||||
console.log(transformTo);
|
||||
console.log(prelude);
|
||||
let temp = transformSelfHosted(
|
||||
{ applicableTo, transformTo },
|
||||
prelude,
|
||||
|
@ -92,7 +94,6 @@ function transformSelfHosted(
|
|||
}
|
||||
let matches = runMatch(codeTree, applicableToTree, internals);
|
||||
//showTreePaired(matches[0].statements[0]);
|
||||
//console.log("We found", matches.length, "matches");
|
||||
|
||||
let outputAST = transformer(matches, transformToTree, codeAST, transformTo);
|
||||
|
||||
|
|
Loading…
Reference in a new issue