-
Notifications
You must be signed in to change notification settings - Fork 5
/
portal-hack-range.user.js
97 lines (77 loc) · 3.87 KB
/
portal-hack-range.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// ==UserScript==
// @author Zaso
// @name IITC plugin: Portal Hack Range
// @category Layer
// @version 0.0.7.20200216.174030
// @description Add a circle around the portals to show the range where you can hack the portal.
// @id portal-hack-range
// @namespace https://github.com/IITC-CE/ingress-intel-total-conversion
// @downloadURL https://github.com/MysticJay/ZasoItems.CE/raw/master/portal-hack-range.user.js
// @match https://intel.ingress.com/*
// @grant none
// ==/UserScript==
function wrapper(plugin_info) {
// ensure plugin framework is there, even if iitc is not yet loaded
if(typeof window.plugin !== 'function') window.plugin = function() {};
//PLUGIN AUTHORS: writing a plugin outside of the IITC build environment? if so, delete these lines!!
//(leaving them in place might break the 'About IITC' page or break update checks)
plugin_info.buildName = 'ZasoItems';
plugin_info.dateTimeVersion = '2020-02-16-174030';
plugin_info.pluginId = 'portal-hack-range';
//END PLUGIN AUTHORS NOTE
// PLUGIN START ////////////////////////////////////////////////////////
// History
// 0.0.7 Headers changed. Ready for IITC-CE
// 0.0.6 Original sript
// use own namespace for plugin
window.plugin.hackrange = function() {};
window.plugin.hackrange.hackLayers = {};
window.plugin.hackrange.MIN_MAP_ZOOM = 17;
window.plugin.hackrange.removeCircle = function(guid){
var previousLayer = window.plugin.hackrange.hackLayers[guid];
if(previousLayer){
window.plugin.hackrange.hackCircleHolderGroup.removeLayer(previousLayer);
delete window.plugin.hackrange.hackLayers[guid];
}
}
window.plugin.hackrange.addCircle = function(guid){
var d = window.portals[guid];
var coo = d._latlng;
var latlng = new L.LatLng(coo.lat,coo.lng);
var optCircle = {color:window.ACCESS_INDICATOR_COLOR,opacity:1,fillColor:window.ACCESS_INDICATOR_COLOR,fillOpacity:0.2,weight:1,clickable:false, dashArray: [10,10]};
var range = window.HACK_RANGE;
var circle = new L.Circle(latlng, range, optCircle);
circle.addTo(window.plugin.hackrange.hackCircleHolderGroup);
window.plugin.hackrange.hackLayers[guid] = circle;
}
window.plugin.hackrange.portalAdded = function(data){
data.portal.on('add', function(){
window.plugin.hackrange.addCircle(this.options.guid);
});
data.portal.on('remove', function(){
window.plugin.hackrange.removeCircle(this.options.guid);
});
}
// *****************************************************************
var setup = function() {
// this layer is added to the layer chooser, to be toggled on/off
window.plugin.hackrange.rangeLayerGroup = new L.LayerGroup();
// this layer is added into the above layer, and removed from it when we zoom out too far
window.plugin.hackrange.hackCircleHolderGroup = new L.LayerGroup();
window.plugin.hackrange.rangeLayerGroup.addLayer(window.plugin.hackrange.hackCircleHolderGroup);
window.addLayerGroup('Hack Portal Ranges', window.plugin.hackrange.rangeLayerGroup, true);
window.addHook('portalAdded', window.plugin.hackrange.portalAdded);
}
// PLUGIN END //////////////////////////////////////////////////////////
setup.info = plugin_info; //add the script info data to the function as a property
if(!window.bootPlugins) window.bootPlugins = [];
window.bootPlugins.push(setup);
// if IITC has already booted, immediately run the 'setup' function
if(window.iitcLoaded && typeof setup === 'function') setup();
} // wrapper end
// inject code into site context
var script = document.createElement('script');
var info = {};
if (typeof GM_info !== 'undefined' && GM_info && GM_info.script) info.script = { version: GM_info.script.version, name: GM_info.script.name, description: GM_info.script.description };
script.appendChild(document.createTextNode('('+ wrapper +')('+JSON.stringify(info)+');'));
(document.body || document.head || document.documentElement).appendChild(script);