jumpstorm/engine/systems/NetworkUpdate.ts

109 lines
3.1 KiB
TypeScript
Raw Normal View History

2023-08-25 18:48:17 -04:00
import { System, SystemNames } from '.';
import { Game } from '../Game';
2023-08-26 19:55:27 -04:00
import { ComponentNames } from '../components';
2023-08-23 21:44:59 -04:00
import {
type MessageQueueProvider,
type MessagePublisher,
2023-08-26 19:55:27 -04:00
type MessageProcessor,
MessageType,
EntityUpdateBody
2023-08-25 18:48:17 -04:00
} from '../network';
import { stringify } from '../utils';
type EntityUpdateInfo = { timer: number; hash: string };
2023-08-13 18:47:58 -04:00
export class NetworkUpdate extends System {
private queueProvider: MessageQueueProvider;
private publisher: MessagePublisher;
2023-08-23 21:44:59 -04:00
private messageProcessor: MessageProcessor;
private entityUpdateInfo: Map<string, EntityUpdateInfo>;
2023-08-26 19:55:27 -04:00
private nextPublishInterval: number;
constructor(
queueProvider: MessageQueueProvider,
2023-08-23 21:44:59 -04:00
publisher: MessagePublisher,
2023-08-25 18:48:17 -04:00
messageProcessor: MessageProcessor
) {
2023-08-13 18:47:58 -04:00
super(SystemNames.NetworkUpdate);
this.queueProvider = queueProvider;
this.publisher = publisher;
2023-08-23 21:44:59 -04:00
this.messageProcessor = messageProcessor;
2023-08-26 19:55:27 -04:00
this.entityUpdateInfo = new Map();
this.nextPublishInterval = 0;
2023-08-13 18:47:58 -04:00
}
2023-08-26 19:55:27 -04:00
public update(dt: number, game: Game) {
// 0. remove unnecessary info for removed entities
const networkUpdateableEntities = game.componentEntities.get(
ComponentNames.NetworkUpdateable
);
for (const entityId of this.entityUpdateInfo.keys()) {
if (!networkUpdateableEntities?.has(entityId)) {
this.entityUpdateInfo.delete(entityId);
}
}
2023-08-26 19:55:27 -04:00
// 1. process new messages
2023-08-23 21:44:59 -04:00
this.queueProvider
.getNewMessages()
.forEach((message) => this.messageProcessor.process(message));
this.queueProvider.clearMessages();
2023-08-26 19:55:27 -04:00
// 2. send entity updates
const updateMessages: EntityUpdateBody[] = [];
// todo: figure out if we can use the controllable component to determine if we should publish an update
game.forEachEntityWithComponent(
ComponentNames.NetworkUpdateable,
(entity) => {
const newHash = stringify(entity.serialize());
let updateInfo: EntityUpdateInfo = this.entityUpdateInfo.get(
entity.id
) ?? {
timer: this.getNextUpdateTimeMs(),
hash: newHash
};
// update timer
updateInfo.timer -= dt;
this.entityUpdateInfo.set(entity.id, updateInfo);
if (updateInfo.timer > 0) return;
updateInfo.timer = entity.getNextUpdateInterval();
this.entityUpdateInfo.set(entity.id, updateInfo);
// maybe update if hash is not consitent
if (updateInfo.hash == newHash) {
return;
2023-08-26 19:55:27 -04:00
}
updateInfo.hash = newHash;
this.entityUpdateInfo.set(entity.id, updateInfo);
updateMessages.push({
id: entity.id,
args: entity.serialize()
});
2023-08-25 18:48:17 -04:00
}
);
if (updateMessages.length)
this.publisher.addMessage({
type: MessageType.UPDATE_ENTITIES,
body: updateMessages
});
2023-08-23 21:44:59 -04:00
// 3. maybe publish changes - we don't want to overload the socket
this.nextPublishInterval -= dt;
if (this.nextPublishInterval < 0) {
this.publisher.publish();
this.nextPublishInterval = this.getNextUpdateInterval();
}
}
2023-08-26 19:55:27 -04:00
private getNextUpdateInterval(): number {
return Math.random() * 30;
2023-08-26 19:55:27 -04:00
}
2023-08-13 18:47:58 -04:00
}