mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-22 13:06:15 -04:00
Build 29069848
This commit is contained in:
parent
962fd8b0cd
commit
13627b6c09
27 changed files with 17517 additions and 4011 deletions
|
@ -1,88 +1,86 @@
|
|||
export function clamp(value: number, min: number, max: number) {
|
||||
return Math.max(min, Math.min(value, max));
|
||||
return Math.max(min, Math.min(value, max));
|
||||
}
|
||||
|
||||
export function comboKeepingRate(level: number) {
|
||||
return clamp(1 - (1 / (1 + level)) * 1.5, 0, 1);
|
||||
return clamp(1 - (1 / (1 + level)) * 1.5, 0, 1);
|
||||
}
|
||||
|
||||
export function hoursSpentPlaying() {
|
||||
try {
|
||||
const timePlayed =
|
||||
localStorage.getItem("breakout_71_total_play_time") || "0";
|
||||
return Math.floor(parseFloat(timePlayed) / 1000 / 60 / 60);
|
||||
} catch (e) {
|
||||
return 0;
|
||||
}
|
||||
try {
|
||||
const timePlayed =
|
||||
localStorage.getItem("breakout_71_total_play_time") || "0";
|
||||
return Math.floor(parseFloat(timePlayed) / 1000 / 60 / 60);
|
||||
} catch (e) {
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
export function miniMarkDown(md: string) {
|
||||
let html: { tagName: string; text: string }[] = [];
|
||||
let lastNode: { tagName: string; text: string } | null = null;
|
||||
let html: { tagName: string; text: string }[] = [];
|
||||
let lastNode: { tagName: string; text: string } | null = null;
|
||||
|
||||
md.split("\n").forEach((line) => {
|
||||
const titlePrefix = line.match(/^#+ /)?.[0];
|
||||
md.split("\n").forEach((line) => {
|
||||
const titlePrefix = line.match(/^#+ /)?.[0];
|
||||
|
||||
if (titlePrefix) {
|
||||
if (lastNode) html.push(lastNode);
|
||||
lastNode = {
|
||||
tagName: "h" + (titlePrefix.length - 1),
|
||||
text: line.slice(titlePrefix.length),
|
||||
};
|
||||
} else if (line.startsWith("- ")) {
|
||||
if (lastNode?.tagName !== "ul") {
|
||||
if (lastNode) html.push(lastNode);
|
||||
lastNode = {tagName: "ul", text: ""};
|
||||
}
|
||||
lastNode.text += "<li>" + line.slice(2) + "</li>";
|
||||
} else if (!line.trim()) {
|
||||
if (lastNode) html.push(lastNode);
|
||||
lastNode = null;
|
||||
} else {
|
||||
if (lastNode?.tagName !== "p") {
|
||||
if (lastNode) html.push(lastNode);
|
||||
lastNode = {tagName: "p", text: ""};
|
||||
}
|
||||
lastNode.text += line + " ";
|
||||
}
|
||||
});
|
||||
if (lastNode) {
|
||||
html.push(lastNode);
|
||||
if (titlePrefix) {
|
||||
if (lastNode) html.push(lastNode);
|
||||
lastNode = {
|
||||
tagName: "h" + (titlePrefix.length - 1),
|
||||
text: line.slice(titlePrefix.length),
|
||||
};
|
||||
} else if (line.startsWith("- ")) {
|
||||
if (lastNode?.tagName !== "ul") {
|
||||
if (lastNode) html.push(lastNode);
|
||||
lastNode = { tagName: "ul", text: "" };
|
||||
}
|
||||
lastNode.text += "<li>" + line.slice(2) + "</li>";
|
||||
} else if (!line.trim()) {
|
||||
if (lastNode) html.push(lastNode);
|
||||
lastNode = null;
|
||||
} else {
|
||||
if (lastNode?.tagName !== "p") {
|
||||
if (lastNode) html.push(lastNode);
|
||||
lastNode = { tagName: "p", text: "" };
|
||||
}
|
||||
lastNode.text += line + " ";
|
||||
}
|
||||
return html
|
||||
.map(
|
||||
(h) =>
|
||||
"<" +
|
||||
h.tagName +
|
||||
">" +
|
||||
h.text.replace(
|
||||
/\bhttps?:\/\/[^\s<>]+/gi,
|
||||
(a) => `<a href="${a}">${a}</a>`,
|
||||
) +
|
||||
"</" +
|
||||
h.tagName +
|
||||
">",
|
||||
)
|
||||
.join("\n");
|
||||
});
|
||||
if (lastNode) {
|
||||
html.push(lastNode);
|
||||
}
|
||||
return html
|
||||
.map(
|
||||
(h) =>
|
||||
"<" +
|
||||
h.tagName +
|
||||
">" +
|
||||
h.text.replace(
|
||||
/\bhttps?:\/\/[^\s<>]+/gi,
|
||||
(a) => `<a href="${a}">${a}</a>`,
|
||||
) +
|
||||
"</" +
|
||||
h.tagName +
|
||||
">",
|
||||
)
|
||||
.join("\n");
|
||||
}
|
||||
|
||||
export function firstWhere<Input, Output>(
|
||||
arr: Input[],
|
||||
mapper: (item: Input, index: number) => Output | undefined,
|
||||
arr: Input[],
|
||||
mapper: (item: Input, index: number) => Output | undefined,
|
||||
): Output | undefined {
|
||||
for (let i = 0; i < arr.length; i++) {
|
||||
const result = mapper(arr[i], i);
|
||||
if (typeof result !== "undefined") return result;
|
||||
}
|
||||
for (let i = 0; i < arr.length; i++) {
|
||||
const result = mapper(arr[i], i);
|
||||
if (typeof result !== "undefined") return result;
|
||||
}
|
||||
}
|
||||
|
||||
export const
|
||||
wallBouncedBest = 3,
|
||||
wallBouncedGood = 10,
|
||||
levelTimeBest = 30,
|
||||
levelTimeGood = 60,
|
||||
catchRateBest = 95,
|
||||
catchRateGood = 90,
|
||||
missesBest = 3,
|
||||
missesGood = 6;
|
||||
|
||||
export const wallBouncedBest = 3,
|
||||
wallBouncedGood = 10,
|
||||
levelTimeBest = 30,
|
||||
levelTimeGood = 60,
|
||||
catchRateBest = 95,
|
||||
catchRateGood = 90,
|
||||
missesBest = 3,
|
||||
missesGood = 6;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue