123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- class Player {
- constructor(game, controller) {
- this.id = 0;
- this.position = { x: 0, y: 0 };
- this.targetPosition = { x: 0, y: 0 };
- this.velocity = { x: 0.0, y: 0.0 };
- this.controller = controller;
- this.acceleration = { x: 0, y: 0, speed: 0.08 };
- this.width = 20;
- this.height = 20;
- this.maxSpeed = 2;
- this.turnRate = Math.PI / 64;
- this.targetAngle = 0;
- this.angleRadians = 0;
- this.color = "crimson";
- this.playerName = "Player";
- this.spriteCanvas = null;
- this.spriteContext = null;
- this.isAccelerating = false;
- this.isDead = false;
- this.health = 5;
- this.maxHealth = 5;
- this.seen = [];
- }
- init(systemObject) {
- this.system = systemObject;
- this.controller.init(this);
- this.color = "crimson";
- this.controller.init(systemObject, this);
- this.respawn();
- }
- update(delta) {
- if (this.isDead) {
- return;
- }
- if (this.health <= 0) {
- this.die();
- return;
- }
- this.angleRadians = this.system.angleTo(this.position, this.targetPosition);
- if (this.targetPosition.x != this.position.x) {
- if (Math.abs(this.position.x - this.targetPosition.x) < this.maxSpeed) {
- this.position.x = this.targetPosition.x;
- this.targetAngle = this.angleRadians;
- } else {
- this.targetAngle = this.angleRadians;
- this.position.x += this.maxSpeed * Math.cos(this.angleRadians) * delta;
- }
- }
- if (this.targetPosition.y != this.position.y) {
- if (Math.abs(this.position.y - this.targetPosition.y) < this.maxSpeed) {
- this.position.y = this.targetPosition.y;
- this.targetAngle = this.angleRadians;
- } else {
- this.targetAngle = this.angleRadians;
- this.position.y += (this.maxSpeed) * Math.sin(this.angleRadians) * delta;
- }
- }
- }
- control(input) {
- this.controller.makeDecisions(this);
- }
- respawn() {
- this.position.x = 0;
- this.position.y = 0;
- }
- die() {
- this.health = 0;
- if (!this.isDead) {
- var player = this;
- setTimeout(function () { player.respawn(); }, 3000);
- this.isDead = true;
- }
- }
- walkUp() {
- this.targetPosition.y = this.position.y - this.maxSpeed;
- }
- walkDown() {
- this.targetPosition.y = this.position.y + this.maxSpeed;
- }
- walkLeft() {
- this.targetPosition.x = this.position.x - this.maxSpeed;
- }
- walkRight() {
- this.targetPosition.x = this.position.x + this.maxSpeed;
- }
- walkTowards(newPosition) {
- this.targetPosition.x = parseInt(newPosition.x);
- this.targetPosition.y = parseInt(newPosition.y);
- }
- jump() {
- console.log("jump");
- }
- preRender(context, angle) {
- if (angle == null) {
- angle = 0;
- }
- context.fillStyle = this.color;
- context.strokeStyle = this.color;
- context.lineWidth = 4;
- context.save();
- context.translate(this.width / 2, this.height / 2);
- context.rotate(angle);
- context.beginPath();
- context.moveTo(this.width / 2, 0);
- context.lineTo(-(this.width / 2), -(this.height / 3));
- context.lineTo(-(this.width / 2), this.height / 3);
- context.lineTo(this.width / 2, 0);
- context.fill();
- context.restore();
- }
- draw(context) {
- if (this.spriteContext == null) {
- this.spriteCanvas = document.createElement("canvas");
- this.spriteCanvas.width = this.width;
- this.spriteCanvas.height = this.height;
- this.spriteContext = this.spriteCanvas.getContext("2d");
- this.preRender(this.spriteContext);
- }
- if (this.isDead) {
- return;
- }
- context.save();
- context.translate(this.position.x, this.position.y);
- context.rotate(this.targetAngle);
- if (this.isAccelerating) {
- context.fillStyle = "#7777FF";
- context.beginPath();
- context.moveTo(-this.width - 5, 0);
- context.lineTo(-this.width / 2, 3);
- context.lineTo(-this.width / 2, -3);
- context.lineTo(-this.width - 5, 0);
- context.fill();
- }
- context.drawImage(this.spriteCanvas, 0, 0, this.spriteCanvas.width, this.spriteCanvas.height,
- -this.spriteCanvas.width / 2, -this.spriteCanvas.height / 2, this.width, this.height);
- context.strokeStyle = "#00FF00";
- if (this.isTakingDamage) {
- context.strokeStyle = "#FF0000";
- this.isTakingDamage = false;
- }
- context.restore();
- this.controller.debugDraw(context);
- }
- trigger(eventId) {
- if (this.seen.indexOf(eventId) == -1) {
- this.seen.push(eventId);
- return true;
- }
- return false;
- }
- }
|