From 6ede822d4aa4154de3ec1f64abc8a1ee7ad3ea44 Mon Sep 17 00:00:00 2001 From: Nyeogmi Date: Sat, 22 Feb 2025 22:51:21 -0800 Subject: [PATCH] Run prettier --- src/engine/datatypes.ts | 18 ++++++++++++------ src/floater.ts | 2 +- src/huntmode.ts | 6 +++--- src/physics.ts | 7 +++++-- 4 files changed, 21 insertions(+), 12 deletions(-) diff --git a/src/engine/datatypes.ts b/src/engine/datatypes.ts index 3923a8f..ced94b6 100644 --- a/src/engine/datatypes.ts +++ b/src/engine/datatypes.ts @@ -165,14 +165,20 @@ export class Circle { let rw = rect.size.w; let rh = rect.size.h; - if (cx < rx) { testX = rx; } - else if (cx > rx + rw) { testX = rx + rw; } - if (cy < ry) { testY = ry; } - else if (cy > ry + rh) { testY = ry + rh; } + if (cx < rx) { + testX = rx; + } else if (cx > rx + rw) { + testX = rx + rw; + } + if (cy < ry) { + testY = ry; + } else if (cy > ry + rh) { + testY = ry + rh; + } let distX = cx - testX; let distY = cy - testY; - let sqDistance = (distX * distX) + (distY * distY); + let sqDistance = distX * distX + distY * distY; if (sqDistance <= this.radius * this.radius) { return new Point(testX, testY); @@ -183,7 +189,7 @@ export class Circle { overlappedCells(size: Size): Rect[] { let meAsRect = new Rect( this.center.offset(new Point(-this.radius, -this.radius)), - new Size(this.radius * 2, this.radius * 2) + new Size(this.radius * 2, this.radius * 2), ); let all: Rect[] = []; for (let cell of meAsRect.overlappedCells(size).values()) { diff --git a/src/floater.ts b/src/floater.ts index 008ab32..f9d0b21 100644 --- a/src/floater.ts +++ b/src/floater.ts @@ -1,5 +1,5 @@ import { BreakableBlockPickupCallbacks } from "./pickups.ts"; -import {Circle, Point} from "./engine/datatypes.ts"; +import { Circle, Point } from "./engine/datatypes.ts"; import { displace } from "./physics.ts"; import { getHuntMode } from "./huntmode.ts"; import { DrawPile } from "./drawpile.ts"; diff --git a/src/huntmode.ts b/src/huntmode.ts index 8896832..6907834 100644 --- a/src/huntmode.ts +++ b/src/huntmode.ts @@ -1,4 +1,4 @@ -import {Circle, Point, Rect, Size} from "./engine/datatypes.ts"; +import { Circle, Point, Rect, Size } from "./engine/datatypes.ts"; import { DrawPile } from "./drawpile.ts"; import { D, I } from "./engine/public.ts"; import { sprThrallLore } from "./sprites.ts"; @@ -201,9 +201,9 @@ export class HuntMode { this.velocity = new Point(dx, dy); - let bbox = new Circle( this.floatingPlayer, szX / 2); + let bbox = new Circle(this.floatingPlayer, szX / 2); let { displacement, dxy } = displace(bbox, this.velocity, (b: Circle) => - this.getContact(b) + this.getContact(b), ); this.floatingPlayer = this.floatingPlayer.offset(displacement); this.velocity = dxy; diff --git a/src/physics.ts b/src/physics.ts index 33fd9fe..70a4476 100644 --- a/src/physics.ts +++ b/src/physics.ts @@ -1,4 +1,4 @@ -import {Circle, lerp, Point, Rect} from "./engine/datatypes.ts"; +import { Circle, lerp, Point, Rect } from "./engine/datatypes.ts"; export function displace( bbox: Circle, @@ -25,7 +25,10 @@ export function displace( let dot = dxy.x * nx + dxy.y * ny; if (redirections < nRedirections) { - dxy = new Point(dxy.x - lerp(bounce, 1, 2) * dot * nx, dxy.y - lerp(bounce, 1, 2) * dot * ny); + dxy = new Point( + dxy.x - lerp(bounce, 1, 2) * dot * nx, + dxy.y - lerp(bounce, 1, 2) * dot * ny, + ); i -= 1; // try again with reflection redirections += 1; } else {