unibutton/common/player.js

97 lines
2.2 KiB
JavaScript
Raw Normal View History

import { distF, uuidv4 } from './util.js'
2024-09-29 03:57:50 -04:00
class Player {
constructor(you, isPlayer) {
let pos = { x: Math.random() * 1000 - 50, y: Math.random() * 1000 - 50 };
let camera = { x: -pos.x, y: -pos.y };
let vel = { x: 0, y: 0 };
2024-09-29 03:16:15 -04:00
this.camera = camera;
this.pos = pos;
this.vel = vel;
this.rot = 0;
this.dir = 1;
this.ticks = 0;
2024-09-27 21:42:21 -04:00
this.health = 100;
2024-09-27 22:21:01 -04:00
this.you = you || uuidv4();
2024-09-29 01:58:56 -04:00
this.isPlayer = isPlayer;
2024-09-29 03:16:15 -04:00
this.headCount = 0;
2024-09-29 03:16:15 -04:00
this.type = 'Player';
2024-09-27 22:05:46 -04:00
this.isMenu = false;
2024-09-27 22:05:46 -04:00
this.r = 1;
2024-09-27 22:05:46 -04:00
}
bump() {
let player = this;
2024-09-27 22:05:46 -04:00
if (player.ticks < 7) {
player.dir *= -1;
}
2024-09-29 22:41:58 -04:00
console.log(player.ticks)
2024-09-27 22:05:46 -04:00
player.vel.x *= 0.3;
player.vel.y *= 0.3;
2024-09-27 22:05:46 -04:00
player.vel.x += Math.sin(player.rot) * 12;
player.vel.y -= Math.cos(player.rot) * 12;
player.ticks = 0;
}
handleTick(game) {
let { entities, width, height } = game;
2024-09-29 01:58:56 -04:00
let ent = this;
2024-09-29 01:58:56 -04:00
if (ent.health <= 0) return;
2024-09-29 01:58:56 -04:00
ent.pos.x += ent.vel.x;
ent.pos.y += ent.vel.y;
2024-09-29 03:16:15 -04:00
ent.pos.x = Math.max(Math.min(ent.pos.x, width / 2), - width / 2);
ent.pos.y = Math.max(Math.min(ent.pos.y, height / 2), - height / 2);
2024-09-29 01:58:56 -04:00
ent.vel.x *= 0.9;
ent.vel.y *= 0.9;
2024-09-29 21:20:56 -04:00
ent.rot += 0.03 * ent.dir;
ent.rot = ent.rot % (Math.PI * 10);
2024-09-29 01:58:56 -04:00
ent.camera.x = -ent.pos.x * 0.1 + ent.camera.x * 0.9;
ent.camera.y = -ent.pos.y * 0.1 + ent.camera.y * 0.9;
2024-09-29 01:58:56 -04:00
ent.ticks++;
2024-09-29 01:58:56 -04:00
for (let target of entities) {
if (target.you == ent.you) continue;
2024-09-29 01:58:56 -04:00
let dist = distF(ent, target);
2024-09-29 01:58:56 -04:00
let dp = (Math.sin(ent.rot) * (ent.pos.x - target.pos.x))
- (Math.cos(ent.rot) * (ent.pos.y - target.pos.y));
2024-09-29 01:58:56 -04:00
dp /= Math.sqrt(dist + 0.1);
2024-09-29 01:58:56 -04:00
if (Math.sqrt(dist) < 128 && 1 / dp < -0.2) {
if (target.type == 'NPC') {
ent.isMenu = true;
}
if (target.immortal) continue;
2024-09-29 01:58:56 -04:00
target.health--;
2024-09-29 01:58:56 -04:00
if (target.health == 0) {
ent.headCount++;
}
2024-09-29 03:16:15 -04:00
}
}
2024-09-29 01:58:56 -04:00
}
2024-09-29 03:55:22 -04:00
}
export default Player;