2023-07-12 07:52:26 -04:00
|
|
|
import { HCenter, Main, styles } from "./common.tsx";
|
2023-07-12 05:21:45 -04:00
|
|
|
import { debug_render } from "./html.ts";
|
|
|
|
import { Component } from "./jsx/jsx-runtime.ts";
|
|
|
|
|
|
|
|
const Eggbug: Component = () => (
|
2023-07-12 07:05:48 -04:00
|
|
|
<HCenter>
|
2023-07-12 12:55:08 -04:00
|
|
|
<Eggbug type="smiling" />
|
2023-07-12 07:05:48 -04:00
|
|
|
</HCenter>
|
2023-07-12 05:21:45 -04:00
|
|
|
);
|
|
|
|
|
2023-07-12 07:05:48 -04:00
|
|
|
function health_style(current: number, last: number, max: number) {
|
|
|
|
const inc_width = 100 / max;
|
|
|
|
const dhealth = last - current;
|
|
|
|
console.log(inc_width, dhealth);
|
|
|
|
|
2023-07-12 07:52:26 -04:00
|
|
|
return styles({
|
|
|
|
transform: `translateX(${-(inc_width * dhealth)}%)`,
|
|
|
|
width: `${last * inc_width}%`,
|
|
|
|
});
|
2023-07-12 07:05:48 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// could be generalized
|
|
|
|
// might be worthwhile later since <progress> is BAN
|
|
|
|
const Health: Component = ({ current, last, max }) => (
|
|
|
|
console.log({ current, last, max }),
|
|
|
|
(
|
|
|
|
<div class="health">
|
|
|
|
<div class="health-bar">
|
|
|
|
<div
|
|
|
|
class="health-full"
|
|
|
|
style={health_style(current, last, max)}
|
|
|
|
></div>
|
|
|
|
</div>
|
2023-07-12 07:52:26 -04:00
|
|
|
<HCenter class="health-numeric">
|
|
|
|
<span class="health-current">
|
|
|
|
{Math.floor(current).toString()}
|
|
|
|
</span>
|
|
|
|
/<span class="health-max">{max.toString()}</span>
|
|
|
|
</HCenter>
|
2023-07-12 07:05:48 -04:00
|
|
|
</div>
|
|
|
|
)
|
|
|
|
);
|
|
|
|
// one-time animations of hit numbers of health flying off the screen
|
|
|
|
|
|
|
|
const BattleFrame: Component = ({ health, last_health, max_health, msg }) => (
|
|
|
|
<div class="battle-frame">
|
|
|
|
<Eggbug />
|
|
|
|
<Health current={health} last={last_health} max={max_health} />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
const Defeated: Component = ({ last_health, max_health }) => (
|
|
|
|
<div class="defeated">
|
|
|
|
<Eggbug />
|
2023-07-12 07:52:26 -04:00
|
|
|
<Health current={0} last={0} max={max_health} />
|
|
|
|
eggbug is physically unharmed, emotionally destroyed <br />
|
|
|
|
... <br />
|
|
|
|
ok eggbug is fine now <br />
|
2023-07-12 08:10:48 -04:00
|
|
|
"re bug" to "killbug" <br />
|
|
|
|
submit runs to{" "}
|
|
|
|
<a href="https://cohost.org/rc/tagged/KILLing%20eggbug%20rapidly">
|
|
|
|
#KILLing eggbug rapidly
|
|
|
|
</a>
|
2023-07-12 07:52:26 -04:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
const DamageNumber: Component = ({ n }) => (
|
|
|
|
<div
|
|
|
|
class="damage-number"
|
|
|
|
// changing this to use this much nicer styles thing helped me notice the bug awesome
|
|
|
|
// i still should really, really switch to react
|
|
|
|
// or preact!
|
|
|
|
// anything with *actual typing*
|
|
|
|
style={styles({
|
2023-07-12 08:10:48 -04:00
|
|
|
top: `calc(${100 * Math.random()}px + 15%)`,
|
|
|
|
left: `calc(${100 * Math.random()}px + 25%)`,
|
2023-07-12 07:52:26 -04:00
|
|
|
// tried some exponential stuff but it was too unwieldy
|
|
|
|
// i think this still accomplishes that punch
|
|
|
|
"font-size": `calc(${n / 200} * 2rem + 0.5rem)`,
|
|
|
|
})}
|
|
|
|
>
|
|
|
|
<div class="sway">{Math.round(n).toString()}</div>
|
2023-07-12 07:05:48 -04:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
const Battle: Component = ({
|
|
|
|
max_health = 100,
|
|
|
|
health = max_health,
|
|
|
|
last_health = health,
|
|
|
|
damage_multiplier = 10,
|
|
|
|
damage_bonus = 1,
|
|
|
|
...rest
|
|
|
|
}) =>
|
|
|
|
health > 0 ? (
|
|
|
|
<details class="battle" {...rest}>
|
|
|
|
<summary>
|
|
|
|
<BattleFrame
|
|
|
|
health={health}
|
|
|
|
last_health={last_health}
|
|
|
|
max_health={max_health}
|
|
|
|
/>
|
2023-07-12 07:52:26 -04:00
|
|
|
{health < last_health && (
|
|
|
|
<DamageNumber n={last_health - health} />
|
|
|
|
)}
|
2023-07-12 07:05:48 -04:00
|
|
|
</summary>
|
|
|
|
<Battle
|
|
|
|
health={
|
|
|
|
health - (damage_multiplier * Math.random() + damage_bonus)
|
|
|
|
}
|
|
|
|
last_health={health}
|
|
|
|
max_health={max_health}
|
|
|
|
damage_multiplier={damage_multiplier}
|
|
|
|
damage_bonus={damage_bonus}
|
|
|
|
/>
|
|
|
|
</details>
|
|
|
|
) : (
|
|
|
|
<Defeated last_health={last_health} max_health={max_health} />
|
|
|
|
);
|
|
|
|
|
2023-07-12 08:06:24 -04:00
|
|
|
const Timer: Component = () => (
|
|
|
|
<details class="timer">
|
|
|
|
<summary>
|
|
|
|
click this when done (HONOR SYSTEM) (EVEN AMONG EGGBUGS THERE CAN BE
|
|
|
|
HONOR)
|
|
|
|
<div class="timer-scroll">
|
|
|
|
{[
|
|
|
|
...new Array(601).fill(undefined).map((_, i) => `${i}s`),
|
|
|
|
"∞s",
|
|
|
|
]}
|
|
|
|
</div>
|
|
|
|
</summary>
|
|
|
|
</details>
|
|
|
|
);
|
|
|
|
|
2023-07-12 07:52:26 -04:00
|
|
|
// a timer would be flippin rad
|
|
|
|
// (it would look like an actual scrolling clock thingie)
|
|
|
|
// (because it would have to)
|
2023-07-12 07:05:48 -04:00
|
|
|
debug_render(
|
|
|
|
<Main>
|
2023-07-12 07:52:26 -04:00
|
|
|
<Battle max_health={10_000} damage_multiplier={200} damage_bonus={10} />
|
2023-07-12 08:06:24 -04:00
|
|
|
{/* <Timer /> */}
|
2023-07-12 07:05:48 -04:00
|
|
|
</Main>
|
|
|
|
);
|