unibutton/common/player.js

127 lines
3.2 KiB
JavaScript
Raw Normal View History

import { distF, uuidv4 } from './util.js'
2024-11-25 14:14:21 -05:00
import Entity from './entity.js';
2024-11-25 14:14:20 -05:00
2024-11-25 14:14:21 -05:00
class Player extends Entity {
2024-11-25 14:14:20 -05:00
constructor(you, isPlayer, game = false) {
2024-11-25 14:14:21 -05:00
super(game);
this.camera = { x: -this.pos.x, y: -this.pos.y };
2024-11-25 14:14:20 -05:00
this.rot = 0;
this.dir = 1;
this.ticks = 0;
2024-11-25 14:14:20 -05:00
this.health = 100;
2024-11-25 14:14:20 -05:00
this.you = you || uuidv4();
2024-11-25 14:14:20 -05:00
this.isPlayer = isPlayer;
2024-11-25 14:14:20 -05:00
this.headCount = 0;
2024-11-25 14:14:20 -05:00
this.type = 'Player';
2024-11-25 14:14:20 -05:00
this.isMenu = false;
2024-11-25 14:14:20 -05:00
this.r = 1;
2024-11-25 14:14:20 -05:00
2024-11-25 14:14:20 -05:00
this.isYou = false;
2024-11-25 14:14:20 -05:00
this.serverProps = [
2024-11-25 14:14:20 -05:00
'type', 'camera', 'pos', 'vel', 'rot', 'dir', 'ticks', 'health', 'you', 'isPlayer', 'headCount', 'isMenu', 'r', 'isYou'
2024-11-25 14:14:20 -05:00
];
this.legalProps = [
2024-11-25 14:14:20 -05:00
'vel', 'dir', 'camera', 'ticks', 'isMenu', 'r', 'ref'
2024-11-25 14:14:20 -05:00
];
2024-11-25 14:14:20 -05:00
}
bump() {
let player = this;
2024-11-25 14:14:20 -05:00
2024-11-25 14:14:20 -05:00
if (player.ticks < 15) {
player.dir *= -1;
}
2024-11-25 14:14:20 -05:00
player.vel.x *= 0.3;
player.vel.y *= 0.3;
2024-11-25 14:14:20 -05:00
player.vel.x += Math.sin(player.rot) * 12;
player.vel.y -= Math.cos(player.rot) * 12;
player.ticks = 0;
}
handleTick(game) {
2024-11-25 14:14:21 -05:00
let { entities, width, height } = game;
2024-11-25 14:14:20 -05:00
let ent = this;
2024-11-25 14:14:21 -05:00
ent.headCount += 1/200;
ent.headCount = Math.round(ent.headCount * 1000) / 1000;
2024-11-25 14:14:20 -05:00
if (ent.health <= 0) return;
2024-11-25 14:14:20 -05:00
ent.pos.x += ent.vel.x;
ent.pos.y += ent.vel.y;
2024-11-25 14:14:20 -05: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-11-25 14:14:20 -05:00
2024-11-25 14:14:21 -05:00
ent.bounce(game);
2024-11-25 14:14:20 -05:00
ent.vel.x *= 0.9;
ent.vel.y *= 0.9;
2024-11-25 14:14:20 -05:00
ent.rot += 0.03 * ent.dir;
ent.rot = ent.rot % (Math.PI * 10);
2024-11-25 14:14:20 -05: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-11-25 14:14:20 -05:00
ent.ticks++;
2024-11-25 14:14:20 -05:00
2024-11-25 14:14:20 -05:00
let velness = Math.sqrt(ent.vel.x ** 2 + ent.vel.y ** 2);
for (let target of entities) {
if (target.you == ent.you) continue;
2024-11-25 14:14:20 -05:00
let dist = distF(ent, target);
2024-11-25 14:14:20 -05:00
let dp = (Math.sin(ent.rot) * (ent.pos.x - target.pos.x))
- (Math.cos(ent.rot) * (ent.pos.y - target.pos.y));
2024-11-25 14:14:20 -05:00
dp /= Math.sqrt(dist + 0.1);
2024-11-25 14:14:20 -05:00
if (Math.sqrt(dist) < 128 && 1 / dp < -0.2) {
2024-11-25 14:14:21 -05:00
if (target.type == 'NPC' && velness > 0.2 && ent.ticks >= 15) {
ent.isMenu = true;
2024-11-25 14:14:20 -05:00
ent.rot = 1.2;
}
2024-11-25 14:14:21 -05:00
if (target.type == 'Shooter') {
2024-11-25 14:14:21 -05:00
this.health -= 1;
2024-11-25 14:14:21 -05:00
}
if (target.immortal) continue;
2024-11-25 14:14:20 -05:00
2024-11-25 14:14:20 -05:00
let oldHealth = target.health
2024-11-25 14:14:21 -05:00
let dmg = Math.floor((dp - 0.001) * 10);
2024-11-25 14:14:21 -05:00
2024-11-25 14:14:21 -05:00
target.health += Math.floor((dp - 0.001) * 10);
2024-11-25 14:14:20 -05:00
target.vel.x += (target.pos.x - ent.pos.x) * 0.1;
target.vel.y += (target.pos.y - ent.pos.y) * 0.1;
2024-11-25 14:14:20 -05:00
2024-11-25 14:14:20 -05:00
if (target.health <= 0 && oldHealth > 0) {
2024-11-25 14:14:20 -05:00
console.log(`Player ${target.you} died to a player ${ent.you}`);
2024-11-25 14:14:21 -05:00
ent.health -= dmg;
if (ent.health > 100) ent.health = 100;
2024-11-25 14:14:21 -05:00
ent.headCount += 500;
}
2024-11-25 14:14:20 -05:00
}
}
2024-11-25 14:14:20 -05:00
}
2024-11-25 14:14:20 -05:00
}
export default Player;