screeps/NOTES.js
paradizelost 2f45d9b69e rewrite
2016-09-28 08:37:28 -05:00

60 lines
1.6 KiB
JavaScript

serializePos: function(pos) {
return pos.x + '_' + pos.y + '_' + pos.roomName;
},
deserializePos: function(str) {
var ar = str.split('_');
return new RoomPosition(ar[0], ar[1], ar[2]);
},
Structure.prototype.getResourceCapacity = function(resourceType) {
switch (this.structureType) {
case STRUCTURE_CONTAINER:
case STRUCTURE_STORAGE:
case STRUCTURE_TERMINAL:
return this.storeCapacity;
case STRUCTURE_SPAWN:
case STRUCTURE_EXTENSION:
case STRUCTURE_LINK:
case STRUCTURE_TOWER:
if (RESOURCE_ENERGY == resourceType) {
return(this.energyCapacity);
} else {
return(-1);
}
case STRUCTURE_LAB:
if (RESOURCE_ENERGY == resourceType) {
return(this.energyCapacity);
} else {
return(this.mineralCapacity);
}
default:
return(-1);
}
}
Structure.prototype.getResource = function(resourceType) {
switch (this.structureType) {
case STRUCTURE_CONTAINER:
case STRUCTURE_STORAGE:
case STRUCTURE_TERMINAL:
return this.store[resourceType];
case STRUCTURE_SPAWN:
case STRUCTURE_EXTENSION:
case STRUCTURE_LINK:
case STRUCTURE_TOWER:
if (RESOURCE_ENERGY == resourceType) {
return(this.energy);
} else {
return(-1);
}
case STRUCTURE_LAB:
if (RESOURCE_ENERGY == resourceType) {
return(this.energy);
} else {
return(this.mineralAmount);
}
default:
return(-1);
}
}