Clean up animation code, begin work on login

This commit is contained in:
Neale Pickett 2023-09-11 17:29:14 -06:00
parent 18c5f044cc
commit b135069851
5 changed files with 141 additions and 107 deletions

View File

@ -5,118 +5,150 @@ function randint(max) {
const MILLISECOND = 1
const SECOND = MILLISECOND * 1000
class Line {
class Point {
constructor(x, y) {
this.x = x
this.y = y
}
/**
* @param {CanvasRenderingContext2D} ctx canvas context
* @param {Number} hue Hue, in % of one circle [0,tau)
* @param {Number} a First point of line
* @param {Number} b Second point of line
* Add n to this.
*
* @param {Point} n What to add to this
* @returns {Point}
*/
constructor(ctx, hue, a, b) {
this.ctx = ctx
Add(n) {
return new Point(this.x + n.x, this.y + n.y)
}
/**
* Subtract n from this.
*
* @param {Point} n
* @returns {Point}
*/
Subtract(n) {
return new Point(this.x - n.x, this.y - n.y)
}
/**
* Add velocity, then bounce point off box defined by points at min and max
* @param {Point} velocity
* @param {Point} min
* @param {Point} max
* @returns {Point}
*/
Bounce(velocity, min, max) {
let p = this.Add(velocity)
if (p.x < min.x) {
p.x += (min.x - p.x) * 2
velocity.x *= -1
}
if (p.x > max.x) {
p.x += (max.x - p.x) * 2
velocity.x *= -1
}
if (p.y < min.y) {
p.y += (min.y - p.y) * 2
velocity.y *= -1
}
if (p.y > max.y) {
p.y += (max.y - p.y) * 2
velocity.y *= -1
}
return p
}
/**
*
* @param {Point} p
* @returns {Boolean}
*/
Equal(p) {
return (this.x == p.x) && (this.y == p.y)
}
}
class QixLine {
/**
* @param {Number} hue
* @param {Point} a
* @param {Point} b
*/
constructor(hue, a, b) {
this.hue = hue
this.a = a
this.b = b
}
bounce(point, v) {
let ret = [
point[0] + v[0],
point[1] + v[1],
]
if ((ret[0] > this.ctx.canvas.width) || (ret[0] < 0)) {
v[0] *= -1
ret[0] += v[0] * 2
}
if ((ret[1] > this.ctx.canvas.height) || (ret[1] < 0)) {
v[1] *= -1
ret[1] += v[1] * 2
}
return ret
}
Add(hue, a, b) {
return new Line(
this.ctx,
(this.hue + hue) % 1.0,
this.bounce(this.a, a),
this.bounce(this.b, b),
)
}
Draw() {
this.ctx.save()
this.ctx.strokeStyle = `hwb(${this.hue}turn 0% 50%)`
this.ctx.beginPath()
this.ctx.moveTo(this.a[0], this.a[1])
this.ctx.lineTo(this.b[0], this.b[1])
this.ctx.stroke()
this.ctx.restore()
}
}
class LengoBackground {
constructor() {
this.canvas = document.createElement("canvas")
document.body.insertBefore(this.canvas, document.body.firstChild)
this.canvas.style.position = "fixed"
this.canvas.style.zIndex = -1000
this.canvas.style.opacity = 0.3
this.canvas.style.top = 0
this.canvas.style.left = 0
this.canvas.style.width = "99vw"
this.canvas.style.height = "99vh"
this.canvas.width = 2000
this.canvas.height = 2000
this.ctx = this.canvas.getContext("2d")
this.ctx.lineWidth = 1
/**
* Draw a line dancing around the screen,
* like the video game "qix"
*/
class QixBackground {
constructor(ctx) {
this.ctx = ctx
this.min = new Point(0, 0)
this.max = new Point(this.ctx.canvas.width, this.ctx.canvas.height)
this.box = this.max.Subtract(this.min)
this.lines = []
for (let i = 0; i < 18; i++) {
this.lines.push(
new Line(this.ctx, 0, [0, 0], [0, 0])
this.lines = [
new QixLine(
0,
new Point(randint(this.box.x), randint(this.box.y)),
new Point(randint(this.box.x), randint(this.box.y)),
)
]
while (this.lines.length < 18) {
this.lines.push(this.lines[0])
}
this.velocities = {
hue: 0.001,
a: [20 + randint(10), 20 + randint(10)],
b: [5 + randint(10), 5 + randint(10)],
}
this.nextFrame = performance.now()-1
this.frameInterval = 100 * MILLISECOND
this.velocity = new QixLine(
0.001,
new Point(1 + randint(this.box.x / 200), 1 + randint(this.box.y / 200)),
new Point(1 + randint(this.box.x / 200), 1 + randint(this.box.y / 200)),
)
//addEventListener("resize", e => this.resizeEvent())
//this.resizeEvent()
//this.animate(this.nextFrame)
setInterval(() => this.animate(this.nextFrame+1), SECOND/6)
setInterval(() => this.animate(), SECOND/6)
}
/**
* Animate one frame
*
* @param {DOMHighResTimeStamp} timestamp
*/
animate(timestamp) {
if (timestamp >= this.nextFrame) {
this.lines.shift()
let lastLine = this.lines.pop()
let nextLine = lastLine.Add(this.velocities.hue, this.velocities.a, this.velocities.b)
this.lines.push(lastLine)
this.lines.push(nextLine)
animate() {
this.lines.shift()
let lastLine = this.lines[this.lines.length - 1]
let nextLine = new QixLine(
(lastLine.hue + this.velocity.hue) % 1.0,
lastLine.a.Bounce(this.velocity.a, this.min, this.max),
lastLine.b.Bounce(this.velocity.b, this.min, this.max),
)
this.ctx.clearRect(0, 0, this.ctx.canvas.width, this.ctx.canvas.height)
for (let line of this.lines) {
line.Draw()
}
this.nextFrame += this.frameInterval
this.lines.push(nextLine)
this.ctx.clearRect(0, 0, this.ctx.canvas.width, this.ctx.canvas.height)
for (let line of this.lines) {
this.ctx.save()
this.ctx.strokeStyle = `hwb(${line.hue}turn 0% 50%)`
this.ctx.beginPath()
this.ctx.moveTo(line.a.x, line.a.y)
this.ctx.lineTo(line.b.x, line.b.y)
this.ctx.stroke()
this.ctx.restore()
}
//requestAnimationFrame((ts) => this.animate(ts))
}
}
function init() {
new LengoBackground()
let canvas = document.createElement("canvas")
canvas.width = 640
canvas.height = 640
canvas.classList.add("wallpaper")
document.body.insertBefore(canvas, document.body.firstChild)
let ctx = canvas.getContext("2d")
new QixBackground(ctx)
}
if (document.readyState === "loading") {

View File

@ -22,6 +22,17 @@ h1 {
a:any-link {
color: #b9cbd8;
}
canvas.wallpaper {
position: fixed;
display: block;
z-index: -1000;
top: 0;
left: 0;
height: 100vh;
width: 100vw;
opacity: 0.3;
image-rendering: pixelated;
}
.notification {
background: #ac8f3944;
}

View File

@ -4,15 +4,15 @@
<title>MOTH</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="icon" href="luna-moth.svg">
<link rel="stylesheet" href="basic.css">
<script src="moth.js"></script>
<link rel="manifest" href="manifest.json">
<script src="moth.mjs" type="module"></script>
<script src="background.mjs" type="module"></script>
</head>
<body>
<h1 id="title">MOTH</h1>
<section>
<div id="messages">
<div id="notices"></div>
<main>
<div id="messages notification">
</div>
<form id="login">
@ -22,8 +22,7 @@
</form>
<div id="puzzles"></div>
</section>
</main>
<nav>
<ul>
<li><a href="scoreboard.html">Scoreboard</a></li>

View File

@ -1,9 +0,0 @@
{
"name": "Monarch of the Hill",
"short_name": "MOTH",
"start_url": ".",
"display": "standalone",
"background_color": "#282a33",
"theme_color": "#ECB",
"description": "The MOTH CTF engine"
}

View File

@ -2,9 +2,10 @@
<html lang="en">
<head>
<title>Puzzle</title>
<link rel="stylesheet" href="basic.css">
<meta name="viewport" content="width=device-width">
<meta charset="utf-8">
<link rel="icon" href="luna-moth.svg">
<link rel="stylesheet" href="basic.css">
<script src="puzzle.mjs" type="module"></script>
<script src="background.mjs" type="module"></script>
</head>
@ -22,7 +23,7 @@
</section>
<form class="answer">
Team ID: <input type="text" name="id"> <br>
Answer: <input type="text" name="answer" id="answer"> <span id="answer_ok"></span><br>
Answer: <input type="text" name="answer"> <span id="answer_ok"></span><br>
<input type="submit" value="Submit">
</form>
</main>