mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-08 22:33:24 +00:00
72 lines
1.9 KiB
JavaScript
72 lines
1.9 KiB
JavaScript
angular.module('shipyard').factory('components', ['lodash', function (_) {
|
|
var C = DB.components;
|
|
|
|
function ComponentSet(shipId) {
|
|
var ship = DB.ships[shipId];
|
|
var maxInternal = ship.slotCap.internal[0];
|
|
|
|
this.mass = ship.mass;
|
|
this.common = {};
|
|
this.internal = {};
|
|
this.hardpoints = filter(C.hardpoints, ship.slotCap.hardpoints[0], 0, ship.mass);
|
|
this.bulkheads = C.bulkheads[shipId];
|
|
this.hpClass = {};
|
|
this.intClass = {};
|
|
|
|
for (var i = 0; i < C.common.length; i ++) {
|
|
var max = ship.slotCap.common[i];
|
|
switch (i) {
|
|
// Slots where component class must be equal to slot class
|
|
case 3: // Life Support
|
|
case 5: // Sensors
|
|
this.common[i] = filter(C.common[i], max, max, ship.mass);
|
|
break;
|
|
// Other slots can have a component of class lower than the slot class
|
|
default:
|
|
this.common[i] = filter(C.common[i], max, 0, ship.mass);
|
|
}
|
|
}
|
|
|
|
for(var g in C.internal) {
|
|
this.internal[g] = filter(C.internal[g], maxInternal, 0, ship.mass);
|
|
}
|
|
}
|
|
|
|
ComponentSet.prototype.getHps = function(c) {
|
|
if(!this.hpClass[c]) {
|
|
this.hpClass[c] = filter(this.hardpoints, c, c? 1 : 0, this.mass);
|
|
}
|
|
return this.hpClass[c];
|
|
};
|
|
|
|
ComponentSet.prototype.getInts = function(c) {
|
|
if(!this.intClass[c]) {
|
|
var o = this.intClass[c] = {};
|
|
for(var key in this.internal) {
|
|
var data = filter(this.internal[key], c, 0, this.mass);
|
|
if(Object.keys(data).length) {
|
|
o[key] = data;
|
|
}
|
|
}
|
|
}
|
|
return this.intClass[c];
|
|
};
|
|
|
|
function filter (data, maxClass, minClass, mass) {
|
|
var set = {};
|
|
_.forEach(data, function (c,id) {
|
|
if (c.class <= maxClass && c.class >= minClass && (c.maxmass === undefined || mass <= c.maxmass) ) {
|
|
set[id] = c;
|
|
}
|
|
});
|
|
return set;
|
|
}
|
|
|
|
return {
|
|
forShip: function (shipId) {
|
|
return new ComponentSet(shipId);
|
|
}
|
|
};
|
|
|
|
}]);
|