2020-06-02 10:48:04 +02:00
|
|
|
import {HasMovedEvent} from "./GameManager";
|
|
|
|
import {MAX_EXTRAPOLATION_TIME} from "../../Enum/EnvironmentVariable";
|
2020-06-02 13:44:42 +02:00
|
|
|
import {PositionInterface} from "../../Connection";
|
2020-06-02 10:48:04 +02:00
|
|
|
|
|
|
|
export class PlayerMovement {
|
2020-06-02 13:44:42 +02:00
|
|
|
public constructor(private startPosition: PositionInterface, private startTick: number, private endPosition: HasMovedEvent, private endTick: number) {
|
2020-06-02 10:48:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public isOutdated(tick: number): boolean {
|
2020-06-02 13:44:42 +02:00
|
|
|
//console.log(tick, this.endTick, MAX_EXTRAPOLATION_TIME)
|
|
|
|
|
|
|
|
// If the endPosition is NOT moving, no extrapolation needed.
|
|
|
|
if (this.endPosition.moving === false && tick > this.endTick) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-06-02 10:48:04 +02:00
|
|
|
return tick > this.endTick + MAX_EXTRAPOLATION_TIME;
|
|
|
|
}
|
|
|
|
|
|
|
|
public getPosition(tick: number): HasMovedEvent {
|
2020-06-02 13:44:42 +02:00
|
|
|
// Special case: end position reached and end position is not moving
|
|
|
|
if (tick >= this.endTick && this.endPosition.moving === false) {
|
|
|
|
return this.endPosition;
|
|
|
|
}
|
|
|
|
|
2020-06-09 23:13:26 +02:00
|
|
|
const x = (this.endPosition.x - this.startPosition.x) * ((tick - this.startTick) / (this.endTick - this.startTick)) + this.startPosition.x;
|
|
|
|
const y = (this.endPosition.y - this.startPosition.y) * ((tick - this.startTick) / (this.endTick - this.startTick)) + this.startPosition.y;
|
2020-06-02 10:48:04 +02:00
|
|
|
|
|
|
|
return {
|
|
|
|
x,
|
|
|
|
y,
|
|
|
|
direction: this.endPosition.direction,
|
2020-06-02 13:44:42 +02:00
|
|
|
moving: true
|
2020-06-02 10:48:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|