plugin: missing resonators fixed

This commit is contained in:
Jon Atkins
2013-12-01 14:09:00 +00:00
parent d7159f2b42
commit 4dc7868a58

View File

@ -2,7 +2,7 @@
// @id iitc-plugin-highlight-portals-missing-resonators@vita10gy
// @name IITC plugin: highlight portals missing resonators
// @category Highlighter
// @version 0.1.1.@@DATETIMEVERSION@@
// @version 0.1.2.@@DATETIMEVERSION@@
// @namespace https://github.com/jonatkins/ingress-intel-total-conversion
// @updateURL @@UPDATEURL@@
// @downloadURL @@DOWNLOADURL@@
@ -23,28 +23,20 @@ window.plugin.portalsMissingResonators = function() {};
window.plugin.portalsMissingResonators.highlight = function(data) {
var d = data.portal.options.details;
var portal_weakness = 0;
if(getTeam(d) !== 0) {
//Ding the portal for every missing resonator.
var resCount = 0;
$.each(d.resonatorArray.resonators, function(ind, reso) {
if(reso === null) {
portal_weakness += .125;
} else {
resCount++;
}
});
if(data.portal.options.team != TEAM_NONE) {
var missing_res = 8-data.portal.options.data.resCount;
if(portal_weakness > 0) {
var fill_opacity = portal_weakness*.85 + .15;
if(missing_res > 0) {
var fill_opacity = ((8-missing_res)/8)*.85 + .15;
var color = 'red';
fill_opacity = Math.round(fill_opacity*100)/100;
var params = {fillColor: color, fillOpacity: fill_opacity};
if(resCount < 8) {
// Hole per missing resonator
var dash = new Array(8-resCount + 1).join("1,4,") + "100,0"
params["dashArray"] = dash;
}
// Hole per missing resonator
var dash = new Array(missing_res + 1).join("1,4,") + "100,0"
params["dashArray"] = dash;
data.portal.setStyle(params);
}
}