refactor: efficient slot change diff
This commit is contained in:
parent
62a613ce80
commit
1492884a87
|
@ -2,8 +2,45 @@ import Schema from '@/ecs/schema.js';
|
||||||
|
|
||||||
export default function(Component) {
|
export default function(Component) {
|
||||||
return class Inventory extends Component {
|
return class Inventory extends Component {
|
||||||
|
insertMany(entities) {
|
||||||
|
for (const [id, {slotChanged}] of entities) {
|
||||||
|
if (slotChanged) {
|
||||||
|
for (const slotIndex in slotChanged) {
|
||||||
|
this.get(id).slots[slotIndex] = {
|
||||||
|
...this.get(id).slots[slotIndex],
|
||||||
|
...slotChanged[slotIndex],
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return super.insertMany(entities);
|
||||||
|
}
|
||||||
|
markChange(entityId, key, value) {
|
||||||
|
if ('slotChange' === key) {
|
||||||
|
const {index, change} = value;
|
||||||
|
return super.markChange(entityId, key, {[index]: change});
|
||||||
|
}
|
||||||
|
return super.markChange(entityId, key, value);
|
||||||
|
}
|
||||||
|
mergeDiff(original, update) {
|
||||||
|
if (update.slotChange) {
|
||||||
|
if (!original.slotChange) {
|
||||||
|
original.slotChange = {};
|
||||||
|
}
|
||||||
|
const merged = {};
|
||||||
|
for (const index in update.slotChange) {
|
||||||
|
merged[index] = {
|
||||||
|
...original.slotChange[index],
|
||||||
|
...update.slotChange[index],
|
||||||
|
};
|
||||||
|
}
|
||||||
|
return {slotChanged: merged};
|
||||||
|
}
|
||||||
|
return super.mergeDiff(original, update);
|
||||||
|
}
|
||||||
instanceFromSchema() {
|
instanceFromSchema() {
|
||||||
const Instance = super.instanceFromSchema();
|
const Instance = super.instanceFromSchema();
|
||||||
|
const Component = this;
|
||||||
Instance.prototype.item = function (slot) {
|
Instance.prototype.item = function (slot) {
|
||||||
const {slots} = this;
|
const {slots} = this;
|
||||||
const instance = this;
|
const instance = this;
|
||||||
|
@ -12,12 +49,9 @@ export default function(Component) {
|
||||||
if (slot === item.slotIndex) {
|
if (slot === item.slotIndex) {
|
||||||
const proxy = new Proxy(item, {
|
const proxy = new Proxy(item, {
|
||||||
set(target, property, value) {
|
set(target, property, value) {
|
||||||
const newSlots = [...slots];
|
target[property] = value;
|
||||||
newSlots[index] = {
|
const change = {[property]: value};
|
||||||
...target,
|
Component.markChange(instance.entity, 'slotChange', {index, change});
|
||||||
[property]: value,
|
|
||||||
};
|
|
||||||
instance.slots = newSlots;
|
|
||||||
return true;
|
return true;
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
@ -144,13 +144,24 @@ export default function Ui({disconnected}) {
|
||||||
if (localMainEntity === id) {
|
if (localMainEntity === id) {
|
||||||
if (payload.ecs[id].Inventory) {
|
if (payload.ecs[id].Inventory) {
|
||||||
const newHotbarSlots = [...hotbarSlots];
|
const newHotbarSlots = [...hotbarSlots];
|
||||||
payload.ecs[id].Inventory.slots
|
const {slots, slotChanged} = payload.ecs[id].Inventory;
|
||||||
.forEach(({qty, slotIndex, source}) => {
|
if (slotChanged) {
|
||||||
|
for (const slotIndex in slotChanged) {
|
||||||
newHotbarSlots[slotIndex] = {
|
newHotbarSlots[slotIndex] = {
|
||||||
image: source + '/icon.png',
|
...newHotbarSlots[slotIndex],
|
||||||
qty,
|
...slotChanged[slotIndex],
|
||||||
};
|
};
|
||||||
});
|
}
|
||||||
|
}
|
||||||
|
if (slots) {
|
||||||
|
slots
|
||||||
|
.forEach(({qty, slotIndex, source}) => {
|
||||||
|
newHotbarSlots[slotIndex] = {
|
||||||
|
image: source + '/icon.png',
|
||||||
|
qty,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
setHotbarSlots(newHotbarSlots);
|
setHotbarSlots(newHotbarSlots);
|
||||||
}
|
}
|
||||||
if (payload.ecs[id].Wielder && 'activeSlot' in payload.ecs[id].Wielder) {
|
if (payload.ecs[id].Wielder && 'activeSlot' in payload.ecs[id].Wielder) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user