Added reso counter and reso details (BJT)

This commit is contained in:
Riccardo Binetti 2013-05-09 03:05:59 +02:00
parent 0b42c52dfd
commit 297005bb1e

View File

@ -1,7 +1,7 @@
// ==UserScript== // ==UserScript==
// @id iitc-plugin-players-resonators@rbino // @id iitc-plugin-players-resonators@rbino
// @name IITC plugin: Player's Resonators // @name IITC plugin: Player's Resonators
// @version 0.1.4.@@DATETIMEVERSION@@ // @version 0.1.5.@@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@@
@ -15,6 +15,7 @@
/********************************************************************************************************* /*********************************************************************************************************
* Changelog: * Changelog:
* *
* 0.1.5 Added portal and reso counter and reso details (Thanks BJT)
* 0.1.4 Added focus link in the toolbox. Some renaming. Removed div to use sidebar style. * 0.1.4 Added focus link in the toolbox. Some renaming. Removed div to use sidebar style.
* 0.1.3 Effective player name (with wrong capitalization) if it finds some reso * 0.1.3 Effective player name (with wrong capitalization) if it finds some reso
* 0.1.2 Made nickname case insensitive * 0.1.2 Made nickname case insensitive
@ -36,21 +37,28 @@ window.plugin.playersResonators.findReso = function(playername) {
var s = ""; var s = "";
var portalSet = {}; var portalSet = {};
var effectiveNick = ""; var effectiveNick = "";
var counter = 0; var portalCounter = 0;
var resoCounter = 0;
// Assuming there can be no agents with same nick with different lower/uppercase // Assuming there can be no agents with same nick with different lower/uppercase
var nickToFind = playername.toLowerCase(); var nickToFind = playername.toLowerCase();
$.each(window.portals, function(ind, portal){ $.each(window.portals, function(ind, portal){
var resoLevels = {};
var r = portal.options.details.resonatorArray.resonators; var r = portal.options.details.resonatorArray.resonators;
$.each(r, function(ind, reso) { $.each(r, function(ind, reso) {
if (!reso) return true; if (!reso) return true;
var nick = getPlayerName(reso.ownerGuid); var nick = getPlayerName(reso.ownerGuid);
if (nick.toLowerCase() === nickToFind){ if (nick.toLowerCase() === nickToFind){
resoCounter += 1;
if (!effectiveNick) { if (!effectiveNick) {
effectiveNick = nick; effectiveNick = nick;
} }
if (reso.level in resoLevels){
resoLevels[reso.level] += 1;
} else {
resoLevels[reso.level] = 1;
}
if (!portalSet.hasOwnProperty(portal.options.guid)){ if (!portalSet.hasOwnProperty(portal.options.guid)){
portalSet[portal.options.guid] = true; portalSet[portal.options.guid] = true;
console.log(portalSet);
var latlng = [portal.options.details.locationE6.latE6/1E6, portal.options.details.locationE6.lngE6/1E6].join(); var latlng = [portal.options.details.locationE6.latE6/1E6, portal.options.details.locationE6.lngE6/1E6].join();
var guid = portal.options.guid; var guid = portal.options.guid;
var zoomPortal = 'window.zoomToAndShowPortal(\''+guid+'\', ['+latlng+']);return false'; var zoomPortal = 'window.zoomToAndShowPortal(\''+guid+'\', ['+latlng+']);return false';
@ -62,16 +70,23 @@ window.plugin.playersResonators.findReso = function(playername) {
href: perma, href: perma,
onClick: zoomPortal onClick: zoomPortal
})[0].outerHTML; })[0].outerHTML;
counter += 1; portalCounter += 1;
s += a + "\n"; s += a + ": ";
} }
} }
}); });
if (portalSet.hasOwnProperty(portal.options.guid)){
for (var i = 8; i>0; i--){
if (i in resoLevels)
s += resoLevels[i] + "xL" + i + " ";
}
s += "\n";
}
}); });
if (s) { if (s) {
// Showing the playername as a "fake" link to avoid the auto-mouseover effect on the first portal // Showing the playername as a "fake" link to avoid the auto-mouseover effect on the first portal
fakeLinkPlayer = '<a href="#" onClick="return false;">' + effectiveNick + '</a>' fakeLinkPlayer = '<a href="#" onClick="return false;">' + effectiveNick + '</a>'
s = fakeLinkPlayer + " has resonators on " + counter + " portals:\n\n" + s; s = fakeLinkPlayer + " has " + resoCounter + " resonators on " + portalCounter + " portals:\n\n" + s;
} else { } else {
s = playername + " has no resonators in this range\n"; s = playername + " has no resonators in this range\n";
} }