Fix some issues
This commit is contained in:
parent
c0a588fb73
commit
1ce961d6c2
27 changed files with 432 additions and 200 deletions
|
|
@ -4,7 +4,7 @@ export const defaultOptions: Options = {
|
|||
port: 3000,
|
||||
name: 'Test server',
|
||||
playerLimit: 16,
|
||||
npcCount: 6,
|
||||
npcCount: 8,
|
||||
seed: Math.random(),
|
||||
scoreLimit: 500,
|
||||
worldSize: 8000,
|
||||
|
|
|
|||
|
|
@ -129,8 +129,44 @@ export class GameServer {
|
|||
}
|
||||
|
||||
private timeSinceLastPointUpdate = 0;
|
||||
|
||||
private handlePhysics() {
|
||||
let delta = this.deltaTimeCalculator.getNextDeltaTimeInSeconds();
|
||||
if (delta > settings.targetPhysicsDeltaTimeInSeconds) {
|
||||
this.deltaTimeCalculator.getNextDeltaTimeInSeconds(true);
|
||||
|
||||
this.handleStats();
|
||||
|
||||
if ((this.timeSinceLastServerStateUpdate += delta) > 4) {
|
||||
this.timeSinceLastServerStateUpdate = 0;
|
||||
this.sendServerStateUpdate();
|
||||
}
|
||||
|
||||
if ((this.timeSinceLastPointUpdate += delta) > 0.5) {
|
||||
this.timeSinceLastPointUpdate = 0;
|
||||
this.players.queueCommandForEachClient(
|
||||
new UpdateGameState(this.declaPoints, this.redPoints, this.options.scoreLimit),
|
||||
);
|
||||
}
|
||||
|
||||
if (this.isInEndGame) {
|
||||
this.timeScaling *= Math.pow(settings.endGameDeltaScaling, delta);
|
||||
delta /= this.timeScaling;
|
||||
} else {
|
||||
this.updatePoints();
|
||||
}
|
||||
|
||||
this.objects.stepObjects(delta);
|
||||
this.players.step(delta);
|
||||
this.objects.resetRemoteCalls();
|
||||
|
||||
this.deltaTimes.push(this.deltaTimeCalculator.getNextDeltaTimeInSeconds());
|
||||
}
|
||||
|
||||
setImmediate(this.handlePhysics.bind(this));
|
||||
}
|
||||
|
||||
private handleStats() {
|
||||
const framesBetweenDeltaTimeCalculation = 1000;
|
||||
|
||||
if (this.deltaTimes.length > framesBetweenDeltaTimeCalculation) {
|
||||
|
|
@ -138,50 +174,17 @@ export class GameServer {
|
|||
console.log(
|
||||
`Median physics time: ${this.deltaTimes[
|
||||
Math.floor(framesBetweenDeltaTimeCalculation / 2)
|
||||
].toFixed(2)} ms\n`,
|
||||
].toFixed(2)} ms`,
|
||||
);
|
||||
console.log(
|
||||
'Tail times: ',
|
||||
this.deltaTimes.slice(-20).map((v) => `${v.toFixed(2)} ms`),
|
||||
this.deltaTimes.slice(-20).map((v) => `${(v * 1000).toFixed(2)} ms`),
|
||||
);
|
||||
console.log(
|
||||
`Memory used: ${(process.memoryUsage().rss / 1024 / 1024).toFixed(2)} MB`,
|
||||
);
|
||||
this.deltaTimes = [];
|
||||
}
|
||||
|
||||
if ((this.timeSinceLastServerStateUpdate += delta) > 4) {
|
||||
this.timeSinceLastServerStateUpdate = 0;
|
||||
this.sendServerStateUpdate();
|
||||
}
|
||||
|
||||
if ((this.timeSinceLastPointUpdate += delta) > 0.5) {
|
||||
this.timeSinceLastPointUpdate = 0;
|
||||
this.players.queueCommandForEachClient(
|
||||
new UpdateGameState(this.declaPoints, this.redPoints, this.options.scoreLimit),
|
||||
);
|
||||
}
|
||||
|
||||
if (this.isInEndGame) {
|
||||
this.timeScaling *= Math.pow(settings.endGameDeltaScaling, delta);
|
||||
delta /= this.timeScaling;
|
||||
} else {
|
||||
this.updatePoints();
|
||||
}
|
||||
|
||||
this.objects.stepObjects(delta);
|
||||
this.players.step(delta);
|
||||
this.objects.resetRemoteCalls();
|
||||
|
||||
this.players.sendQueuedCommands();
|
||||
|
||||
const physicsDelta = this.deltaTimeCalculator.getDeltaTimeInSeconds() * 1000;
|
||||
this.deltaTimes.push(physicsDelta);
|
||||
const sleepTime = settings.targetPhysicsDeltaTimeInMilliseconds - physicsDelta;
|
||||
|
||||
if (sleepTime >= settings.minPhysicsSleepTime) {
|
||||
setTimeout(this.handlePhysics.bind(this), sleepTime);
|
||||
} else {
|
||||
setImmediate(this.handlePhysics.bind(this));
|
||||
}
|
||||
}
|
||||
|
||||
private get gameProgress(): number {
|
||||
|
|
|
|||
|
|
@ -1,20 +1,11 @@
|
|||
export class DeltaTimeCalculator {
|
||||
private previousTime: [number, number] = process.hrtime();
|
||||
|
||||
public getNextDeltaTimeInSeconds(): number {
|
||||
const deltaTime = process.hrtime(this.previousTime);
|
||||
this.previousTime = process.hrtime();
|
||||
|
||||
const [seconds, nanoSeconds] = deltaTime;
|
||||
|
||||
return seconds * 1000 + nanoSeconds / 1000 / 1000 / 1000;
|
||||
}
|
||||
|
||||
public getDeltaTimeInSeconds(): number {
|
||||
const deltaTime = process.hrtime(this.previousTime);
|
||||
|
||||
const [seconds, nanoSeconds] = deltaTime;
|
||||
|
||||
return seconds * 1000 + nanoSeconds / 1000 / 1000 / 1000;
|
||||
public getNextDeltaTimeInSeconds(setAsBase = false): number {
|
||||
const [seconds, nanoSeconds] = process.hrtime(this.previousTime);
|
||||
if (setAsBase) {
|
||||
this.previousTime = process.hrtime();
|
||||
}
|
||||
return seconds + nanoSeconds / 1e9;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -10,7 +10,6 @@ import {
|
|||
ReactsToCollision,
|
||||
reactsToCollision,
|
||||
} from '../physics/physicals/reacts-to-collision';
|
||||
import { Physical } from '../physics/physicals/physical';
|
||||
|
||||
@serializesTo(Circle)
|
||||
export class CirclePhysical implements Circle, DynamicPhysical, ReactsToCollision {
|
||||
|
|
@ -99,7 +98,6 @@ export class CirclePhysical implements Circle, DynamicPhysical, ReactsToCollisio
|
|||
|
||||
public step2(
|
||||
deltaTimeInSeconds: number,
|
||||
additionalCollider?: Physical,
|
||||
): { hitObject: GameObject | undefined; velocity: vec2 } {
|
||||
let delta = vec2.scale(vec2.create(), this.velocity, deltaTimeInSeconds);
|
||||
|
||||
|
|
@ -109,10 +107,6 @@ export class CirclePhysical implements Circle, DynamicPhysical, ReactsToCollisio
|
|||
.filter((b) => b.gameObject !== this.gameObject && b.canCollide);
|
||||
this.radius -= vec2.length(delta);
|
||||
|
||||
if (additionalCollider) {
|
||||
intersecting.push(additionalCollider);
|
||||
}
|
||||
|
||||
let { normal, hitSurface, hitObject } = moveCircle(this, delta, intersecting);
|
||||
|
||||
if (hitSurface) {
|
||||
|
|
|
|||
|
|
@ -4,12 +4,13 @@ import {
|
|||
settings,
|
||||
MoveActionCommand,
|
||||
serializesTo,
|
||||
clamp,
|
||||
last,
|
||||
GameObject,
|
||||
Circle,
|
||||
PlayerCharacterBase,
|
||||
CharacterTeam,
|
||||
PropertyUpdatesForObject,
|
||||
UpdateProperty,
|
||||
} from 'shared';
|
||||
import { DynamicPhysical } from '../physics/physicals/dynamic-physical';
|
||||
import { CirclePhysical } from './circle-physical';
|
||||
|
|
@ -33,7 +34,7 @@ export class PlayerCharacterPhysical
|
|||
private static readonly feetRadius = 20;
|
||||
private projectileStrength = settings.playerMaxStrength;
|
||||
|
||||
// offsets are meassured from (0, 0)
|
||||
// offsets are measured from (0, 0)
|
||||
private static readonly desiredHeadOffset = vec2.fromValues(0, 65);
|
||||
private static readonly desiredLeftFootOffset = vec2.fromValues(-20, 0);
|
||||
private static readonly desiredRightFootOffset = vec2.fromValues(20, 0);
|
||||
|
|
@ -87,6 +88,10 @@ export class PlayerCharacterPhysical
|
|||
private movementActions: Array<MoveActionCommand> = [];
|
||||
private lastMovementAction: MoveActionCommand = new MoveActionCommand(vec2.create());
|
||||
|
||||
private headVelocity = new Circle(vec2.create(), 0);
|
||||
private leftFootVelocity = new Circle(vec2.create(), 0);
|
||||
private rightFootVelocity = new Circle(vec2.create(), 0);
|
||||
|
||||
constructor(
|
||||
name: string,
|
||||
killCount: number,
|
||||
|
|
@ -220,25 +225,78 @@ export class PlayerCharacterPhysical
|
|||
this.movementActions = [];
|
||||
}
|
||||
|
||||
return vec2.normalize(direction, direction);
|
||||
return vec2.length(direction) > 0
|
||||
? vec2.normalize(direction, direction)
|
||||
: vec2.create();
|
||||
}
|
||||
|
||||
private animateScaling(q: number) {
|
||||
this.remoteCall(
|
||||
'updateCircles',
|
||||
new Circle(this.head.center, PlayerCharacterPhysical.headRadius * q),
|
||||
new Circle(this.leftFoot.center, PlayerCharacterPhysical.feetRadius * q),
|
||||
new Circle(this.rightFoot.center, PlayerCharacterPhysical.feetRadius * q),
|
||||
this.head.radius = PlayerCharacterPhysical.headRadius * q;
|
||||
this.leftFoot.radius = this.rightFoot.radius = PlayerCharacterPhysical.feetRadius * q;
|
||||
}
|
||||
|
||||
public getPropertyUpdates(): PropertyUpdatesForObject {
|
||||
return new PropertyUpdatesForObject(this.id, [
|
||||
new UpdateProperty('head', this.head, this.headVelocity),
|
||||
new UpdateProperty('leftFoot', this.leftFoot, this.leftFootVelocity),
|
||||
new UpdateProperty('rightFoot', this.rightFoot, this.rightFootVelocity),
|
||||
]);
|
||||
}
|
||||
|
||||
private setPropertyUpdates(
|
||||
oldHead: Circle,
|
||||
oldLeftFoot: Circle,
|
||||
oldRightFoot: Circle,
|
||||
deltaTime: number,
|
||||
) {
|
||||
this.headVelocity = new Circle(
|
||||
vec2.scale(
|
||||
oldHead.center,
|
||||
vec2.subtract(oldHead.center, this.head.center, oldHead.center),
|
||||
1 / deltaTime,
|
||||
),
|
||||
(this.head.radius - oldHead.radius) / deltaTime,
|
||||
);
|
||||
|
||||
this.leftFootVelocity = new Circle(
|
||||
vec2.scale(
|
||||
oldLeftFoot.center,
|
||||
vec2.subtract(oldLeftFoot.center, this.leftFoot.center, oldLeftFoot.center),
|
||||
1 / deltaTime,
|
||||
),
|
||||
(this.leftFoot.radius - oldLeftFoot.radius) / deltaTime,
|
||||
);
|
||||
|
||||
this.rightFootVelocity = new Circle(
|
||||
vec2.scale(
|
||||
oldRightFoot.center,
|
||||
vec2.subtract(oldRightFoot.center, this.rightFoot.center, oldRightFoot.center),
|
||||
1 / deltaTime,
|
||||
),
|
||||
(this.rightFoot.radius - oldRightFoot.radius) / deltaTime,
|
||||
);
|
||||
|
||||
this.animateScaling(1);
|
||||
}
|
||||
|
||||
public step(deltaTime: number) {
|
||||
const oldHead = new Circle(vec2.clone(this.head.center), this.head.radius);
|
||||
const oldLeftFoot = new Circle(
|
||||
vec2.clone(this.leftFoot.center),
|
||||
this.leftFoot.radius,
|
||||
);
|
||||
const oldRightFoot = new Circle(
|
||||
vec2.clone(this.rightFoot.center),
|
||||
this.rightFoot.radius,
|
||||
);
|
||||
|
||||
if (this.isDestroyed) {
|
||||
if ((this.timeSinceDying += deltaTime) > settings.spawnDespawnTime) {
|
||||
this.destroy();
|
||||
} else {
|
||||
this.animateScaling(1 - this.timeSinceDying / settings.spawnDespawnTime);
|
||||
}
|
||||
this.setPropertyUpdates(oldHead, oldLeftFoot, oldRightFoot, deltaTime);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -248,6 +306,7 @@ export class PlayerCharacterPhysical
|
|||
} else {
|
||||
this.animateScaling(this.timeSinceBorn / settings.spawnDespawnTime);
|
||||
}
|
||||
this.setPropertyUpdates(oldHead, oldLeftFoot, oldRightFoot, deltaTime);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
@ -262,7 +321,7 @@ export class PlayerCharacterPhysical
|
|||
|
||||
this.currentPlanet?.takeControl(this.team, deltaTime);
|
||||
|
||||
const intersectingWithForcefield = this.container.findIntersecting(
|
||||
const intersectingWithForceField = this.container.findIntersecting(
|
||||
getBoundingBoxOfCircle(
|
||||
new Circle(
|
||||
this.center,
|
||||
|
|
@ -273,15 +332,17 @@ export class PlayerCharacterPhysical
|
|||
|
||||
const direction = this.averageAndResetMovementActions();
|
||||
const movementForce = vec2.scale(direction, direction, settings.maxAcceleration);
|
||||
this.applyForce(this.leftFoot, movementForce, deltaTime);
|
||||
this.applyForce(this.rightFoot, movementForce, deltaTime);
|
||||
|
||||
if (!this.currentPlanet) {
|
||||
const leftFootGravity = forceAtPosition(
|
||||
this.leftFoot.center,
|
||||
intersectingWithForcefield,
|
||||
intersectingWithForceField,
|
||||
);
|
||||
const rightFootGravity = forceAtPosition(
|
||||
this.rightFoot.center,
|
||||
intersectingWithForcefield,
|
||||
intersectingWithForceField,
|
||||
);
|
||||
|
||||
this.applyForce(this.leftFoot, leftFootGravity, deltaTime);
|
||||
|
|
@ -325,22 +386,19 @@ export class PlayerCharacterPhysical
|
|||
this.setDirection(gravity, deltaTime);
|
||||
}
|
||||
|
||||
this.applyForce(this.leftFoot, movementForce, deltaTime);
|
||||
this.applyForce(this.rightFoot, movementForce, deltaTime);
|
||||
|
||||
this.keepPosture(deltaTime);
|
||||
this.stepBodyPart(this.leftFoot, deltaTime);
|
||||
this.stepBodyPart(this.rightFoot, deltaTime);
|
||||
this.stepBodyPart(this.head, deltaTime);
|
||||
|
||||
this.remoteCall('updateCircles', this.head, this.leftFoot, this.rightFoot);
|
||||
this.setPropertyUpdates(oldHead, oldLeftFoot, oldRightFoot, deltaTime);
|
||||
}
|
||||
|
||||
private setDirection(direction: vec2, deltaTime: number) {
|
||||
this.direction = interpolateAngles(
|
||||
this.direction,
|
||||
Math.atan2(direction.y, direction.x) + Math.PI / 2,
|
||||
Math.pow(2, deltaTime),
|
||||
0.2,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
@ -351,14 +409,14 @@ export class PlayerCharacterPhysical
|
|||
center,
|
||||
PlayerCharacterPhysical.leftFootOffset,
|
||||
deltaTime,
|
||||
150,
|
||||
3000,
|
||||
);
|
||||
this.springMove(
|
||||
this.rightFoot,
|
||||
center,
|
||||
PlayerCharacterPhysical.rightFootOffset,
|
||||
deltaTime,
|
||||
150,
|
||||
3000,
|
||||
);
|
||||
|
||||
this.springMove(
|
||||
|
|
@ -366,7 +424,7 @@ export class PlayerCharacterPhysical
|
|||
center,
|
||||
PlayerCharacterPhysical.headOffset,
|
||||
deltaTime,
|
||||
350,
|
||||
7000,
|
||||
);
|
||||
}
|
||||
|
||||
|
|
@ -381,15 +439,26 @@ export class PlayerCharacterPhysical
|
|||
vec2.rotate(desiredPosition, desiredPosition, center, this.direction);
|
||||
const positionDelta = vec2.subtract(vec2.create(), desiredPosition, object.center);
|
||||
|
||||
const positionDeltaDirection = vec2.normalize(vec2.create(), positionDelta);
|
||||
const positionDeltaLength = vec2.length(positionDelta);
|
||||
vec2.scale(
|
||||
positionDelta,
|
||||
positionDeltaDirection,
|
||||
positionDeltaLength ** 2 * deltaTime * strength,
|
||||
);
|
||||
|
||||
object.applyForce(positionDelta, deltaTime);
|
||||
if (positionDeltaLength > 0) {
|
||||
const positionDeltaDirection = vec2.normalize(vec2.create(), positionDelta);
|
||||
vec2.scale(
|
||||
positionDelta,
|
||||
positionDeltaDirection,
|
||||
positionDeltaLength ** 2 * deltaTime * strength,
|
||||
);
|
||||
|
||||
if (vec2.length(positionDelta) * deltaTime * deltaTime > positionDeltaLength) {
|
||||
vec2.scale(
|
||||
positionDelta,
|
||||
positionDelta,
|
||||
positionDeltaLength / (vec2.length(positionDelta) * deltaTime * deltaTime),
|
||||
);
|
||||
}
|
||||
|
||||
object.applyForce(positionDelta, deltaTime);
|
||||
}
|
||||
}
|
||||
|
||||
private stepBodyPart(part: CirclePhysical, deltaTime: number) {
|
||||
|
|
@ -406,12 +475,6 @@ export class PlayerCharacterPhysical
|
|||
circle.velocity,
|
||||
vec2.scale(vec2.create(), force, timeInSeconds),
|
||||
);
|
||||
|
||||
vec2.set(
|
||||
circle.velocity,
|
||||
clamp(circle.velocity.x, -settings.maxVelocityX, settings.maxVelocityX),
|
||||
clamp(circle.velocity.y, -settings.maxVelocityY, settings.maxVelocityY),
|
||||
);
|
||||
}
|
||||
|
||||
public kill() {
|
||||
|
|
|
|||
|
|
@ -6,6 +6,8 @@ import {
|
|||
ProjectileBase,
|
||||
GameObject,
|
||||
CharacterTeam,
|
||||
PropertyUpdatesForObject,
|
||||
UpdateProperty,
|
||||
} from 'shared';
|
||||
import { ImmutableBoundingBox } from '../physics/bounding-boxes/immutable-bounding-box';
|
||||
import { CirclePhysical } from './circle-physical';
|
||||
|
|
@ -98,6 +100,12 @@ export class ProjectilePhysical
|
|||
}
|
||||
}
|
||||
|
||||
public getPropertyUpdates(): PropertyUpdatesForObject {
|
||||
return new PropertyUpdatesForObject(this.id, [
|
||||
new UpdateProperty('center', this.center, this.velocity),
|
||||
]);
|
||||
}
|
||||
|
||||
public step(deltaTime: number) {
|
||||
super.step(deltaTime);
|
||||
|
||||
|
|
@ -127,7 +135,5 @@ export class ProjectilePhysical
|
|||
vec2.copy(this.object.velocity, this.velocity);
|
||||
const { velocity } = this.object.step2(deltaTime);
|
||||
vec2.copy(this.velocity, velocity);
|
||||
|
||||
this.remoteCall('setCenter', this.center);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,24 +0,0 @@
|
|||
import { vec2 } from 'gl-matrix';
|
||||
import { Circle } from 'shared';
|
||||
import { CirclePhysical } from '../../objects/circle-physical';
|
||||
|
||||
export const applySpringForce = (
|
||||
a: CirclePhysical | Circle,
|
||||
b: CirclePhysical | Circle,
|
||||
distance: number,
|
||||
strength: number,
|
||||
deltaTimeInSeconds: number,
|
||||
) => {
|
||||
const length = vec2.dist(a.center, b.center) - distance;
|
||||
|
||||
const abDirection = vec2.subtract(vec2.create(), b.center, a.center);
|
||||
vec2.normalize(abDirection, abDirection);
|
||||
const force = vec2.scale(abDirection, abDirection, strength * length);
|
||||
if (a instanceof CirclePhysical) {
|
||||
a.applyForce(force, deltaTimeInSeconds);
|
||||
}
|
||||
if (b instanceof CirclePhysical) {
|
||||
vec2.scale(force, force, -1);
|
||||
b.applyForce(force, deltaTimeInSeconds);
|
||||
}
|
||||
};
|
||||
|
|
@ -17,7 +17,12 @@ export const moveCircle = (
|
|||
tangent?: vec2;
|
||||
hitObject?: GameObject;
|
||||
} => {
|
||||
const direction = vec2.normalize(vec2.create(), delta);
|
||||
const direction = vec2.clone(delta);
|
||||
|
||||
if (vec2.length(delta) > 0) {
|
||||
vec2.normalize(direction, direction);
|
||||
}
|
||||
|
||||
const deltaLength = vec2.length(delta);
|
||||
let travelled = 0;
|
||||
let rayEnd = vec2.create();
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
import { vec2 } from 'gl-matrix';
|
||||
import {
|
||||
CommandExecutors,
|
||||
CommandReceiver,
|
||||
CreateObjectsCommand,
|
||||
CreatePlayerCommand,
|
||||
DeleteObjectsCommand,
|
||||
|
|
@ -13,7 +12,6 @@ import {
|
|||
SecondaryActionCommand,
|
||||
PlayerDiedCommand,
|
||||
settings,
|
||||
Circle,
|
||||
PlayerInformation,
|
||||
CharacterTeam,
|
||||
UpdateOtherPlayerDirections,
|
||||
|
|
@ -23,6 +21,8 @@ import {
|
|||
RemoteCallsForObject,
|
||||
RemoteCallsForObjects,
|
||||
ServerAnnouncement,
|
||||
PropertyUpdatesForObjects,
|
||||
PropertyUpdatesForObject,
|
||||
} from 'shared';
|
||||
import { getTimeInMilliseconds } from '../helper/get-time-in-milliseconds';
|
||||
import { BoundingBox } from '../physics/bounding-boxes/bounding-box';
|
||||
|
|
@ -93,8 +93,12 @@ export class Player extends PlayerBase {
|
|||
this.queueCommandSend(new CreatePlayerCommand(this.character!));
|
||||
}
|
||||
|
||||
private timeSinceLastMessage = 0;
|
||||
private messageInterval = 1 / 30;
|
||||
private timeUntilRespawn = 0;
|
||||
public step(deltaTimeInSeconds: number) {
|
||||
this.timeSinceLastMessage += deltaTimeInSeconds;
|
||||
|
||||
if (this.character) {
|
||||
this.center = this.character?.center;
|
||||
|
||||
|
|
@ -107,9 +111,12 @@ export class Player extends PlayerBase {
|
|||
this.timeUntilRespawn = settings.playerDiedTimeout;
|
||||
}
|
||||
} else {
|
||||
this.queueCommandSend(
|
||||
new ServerAnnouncement(`Reviving in ${Math.round(this.timeUntilRespawn)}…`),
|
||||
);
|
||||
if (this.timeSinceLastMessage > this.messageInterval) {
|
||||
this.queueCommandSend(
|
||||
new ServerAnnouncement(`Reviving in ${Math.round(this.timeUntilRespawn)}…`),
|
||||
);
|
||||
}
|
||||
|
||||
if ((this.timeUntilRespawn -= deltaTimeInSeconds) < 0) {
|
||||
this.createCharacter();
|
||||
this.center = this.character!.center;
|
||||
|
|
@ -117,33 +124,45 @@ export class Player extends PlayerBase {
|
|||
}
|
||||
}
|
||||
|
||||
const viewArea = calculateViewArea(this.center, this.aspectRatio, 1.5);
|
||||
const bb = new BoundingBox();
|
||||
bb.topLeft = viewArea.topLeft;
|
||||
bb.size = viewArea.size;
|
||||
if (this.timeSinceLastMessage > this.messageInterval) {
|
||||
const viewArea = calculateViewArea(this.center, this.aspectRatio, 1.5);
|
||||
const bb = new BoundingBox();
|
||||
bb.topLeft = viewArea.topLeft;
|
||||
bb.size = viewArea.size;
|
||||
|
||||
const objectsInViewArea = Array.from(
|
||||
new Set(this.objectContainer.findIntersecting(bb).map((o) => o.gameObject)),
|
||||
);
|
||||
|
||||
const newlyIntersecting = objectsInViewArea.filter(
|
||||
(o) => !this.objectsPreviouslyInViewArea.includes(o),
|
||||
);
|
||||
|
||||
const noLongerIntersecting = this.objectsPreviouslyInViewArea.filter(
|
||||
(o) => !objectsInViewArea.includes(o),
|
||||
);
|
||||
|
||||
this.objectsPreviouslyInViewArea = objectsInViewArea;
|
||||
|
||||
if (noLongerIntersecting.length > 0) {
|
||||
this.queueCommandSend(
|
||||
new DeleteObjectsCommand(noLongerIntersecting.map((g) => g.id)),
|
||||
const objectsInViewArea = Array.from(
|
||||
new Set(this.objectContainer.findIntersecting(bb).map((o) => o.gameObject)),
|
||||
);
|
||||
}
|
||||
|
||||
if (newlyIntersecting.length > 0) {
|
||||
this.queueCommandSend(new CreateObjectsCommand(newlyIntersecting));
|
||||
const newlyIntersecting = objectsInViewArea.filter(
|
||||
(o) => !this.objectsPreviouslyInViewArea.includes(o),
|
||||
);
|
||||
|
||||
const noLongerIntersecting = this.objectsPreviouslyInViewArea.filter(
|
||||
(o) => !objectsInViewArea.includes(o),
|
||||
);
|
||||
|
||||
this.objectsPreviouslyInViewArea = objectsInViewArea;
|
||||
|
||||
if (noLongerIntersecting.length > 0) {
|
||||
this.queueCommandSend(
|
||||
new DeleteObjectsCommand(noLongerIntersecting.map((g) => g.id)),
|
||||
);
|
||||
}
|
||||
|
||||
if (newlyIntersecting.length > 0) {
|
||||
this.queueCommandSend(new CreateObjectsCommand(newlyIntersecting));
|
||||
}
|
||||
|
||||
this.queueCommandSend(new UpdateOtherPlayerDirections(this.getOtherPlayers()));
|
||||
|
||||
this.queueCommandSend(
|
||||
new PropertyUpdatesForObjects(
|
||||
this.objectsPreviouslyInViewArea
|
||||
.map((o) => o.getPropertyUpdates())
|
||||
.filter((u) => u) as Array<PropertyUpdatesForObject>,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
this.queueCommandSend(
|
||||
|
|
@ -154,7 +173,10 @@ export class Player extends PlayerBase {
|
|||
),
|
||||
);
|
||||
|
||||
this.queueCommandSend(new UpdateOtherPlayerDirections(this.getOtherPlayers()));
|
||||
if (this.timeSinceLastMessage > this.messageInterval) {
|
||||
this.sendQueuedCommandsToClient();
|
||||
this.timeSinceLastMessage = 0;
|
||||
}
|
||||
}
|
||||
|
||||
private getOtherPlayers(): Array<OtherPlayerDirection> {
|
||||
|
|
@ -179,9 +201,10 @@ export class Player extends PlayerBase {
|
|||
return otherPlayers.map(
|
||||
(p) =>
|
||||
new OtherPlayerDirection(
|
||||
p.character!.id,
|
||||
vec2.normalize(
|
||||
vec2.create(),
|
||||
vec2.subtract(vec2.create(), p.center, this.character!.center),
|
||||
vec2.subtract(vec2.create(), p.character!.center, this.character!.center),
|
||||
),
|
||||
p.team,
|
||||
),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue