humus-old/traits/informed.js

87 lines
2.0 KiB
JavaScript
Raw Normal View History

2019-03-20 18:35:59 -05:00
import * as I from 'immutable';
2019-04-07 14:59:55 -05:00
import immutablediff from 'immutablediff';
2019-03-28 03:39:57 -05:00
import isPlainObject from 'is-plain-object';
2019-03-20 18:35:59 -05:00
2019-03-20 18:58:19 -05:00
import {compose} from '@avocado/core';
2019-04-05 11:59:14 -05:00
import {Trait} from '@avocado/entity';
2019-04-07 20:04:34 -05:00
import {Packer, Synchronizer} from '@avocado/state';
2019-03-20 18:35:59 -05:00
2019-03-20 18:58:19 -05:00
const decorate = compose(
);
2019-04-05 11:59:14 -05:00
export class Informed extends decorate(Trait) {
2019-03-20 18:35:59 -05:00
initialize() {
2019-04-05 22:40:33 -05:00
this._packer = new Packer();
this._socket = undefined;
2019-04-07 14:59:55 -05:00
this._state = I.Map();
2019-03-20 18:35:59 -05:00
}
2019-03-20 23:22:54 -05:00
destroy() {
2019-03-21 01:32:59 -05:00
if (this._socket) {
delete this._socket.entity;
delete this._socket;
}
2019-03-20 23:22:54 -05:00
}
2019-04-07 14:59:55 -05:00
reduceState(state) {
// Set client's self entity.
state = state.set('selfEntity', this.entity.instanceUuid);
// Reduce entity list to visible.
const room = this.entity.room;
const camera = this.entity.camera;
for (const {index, layer} of room.layers) {
const visibleEntities = layer.visibleEntities(
camera.rectangle
);
let reducedEntityList = I.Map();
for (const entity of visibleEntities) {
reducedEntityList = reducedEntityList.set(
entity.instanceUuid,
entity.state,
2019-04-05 12:47:49 -05:00
);
}
2019-04-07 14:59:55 -05:00
const entityListPath = ['room', 'layers', index, 'entityList'];
state = state.setIn(entityListPath, reducedEntityList);
}
2019-04-07 14:59:55 -05:00
return state;
}
get socket() {
return this._socket;
}
set socket(socket) {
socket.entity = this.entity;
this._socket = socket;
}
2019-03-20 18:35:59 -05:00
methods() {
return {
2019-04-07 14:59:55 -05:00
inform: (state) => {
// Reduce state.
const reducedState = this.reduceState(state);
// Take a pure JS diff.
const steps = immutablediff(this._state, reducedState).toJS();
this._state = reducedState;
if (0 === steps.length) {
return;
2019-04-05 22:50:24 -05:00
}
// Emit!
2019-04-11 12:55:21 -05:00
const keys = this._packer.computeNewKeys(steps);
if (0 !== keys[0].length) {
this._socket.send({
type: 'keys',
payload: keys,
});
}
2019-04-07 14:59:55 -05:00
const packed = this._packer.pack(steps);
2019-04-11 12:55:21 -05:00
this._socket.send(packed);
2019-03-20 18:35:59 -05:00
},
};
}
}