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