| 1 | // ===============================================================================================
 | 
|---|
| 2 | // Constants
 | 
|---|
| 3 | 
 | 
|---|
| 4 | var REGIONSIZE = 512;
 | 
|---|
| 5 | var CHUNKSIZE = 16;
 | 
|---|
| 6 | var TILESIZE = 128;
 | 
|---|
| 7 | var MAXZOOM = 4;
 | 
|---|
| 8 | 
 | 
|---|
| 9 | var BAG_COLS = 8;
 | 
|---|
| 10 | var BAG_ROWS = 4;
 | 
|---|
| 11 | var BELT_COLS = 8;
 | 
|---|
| 12 | var INV_ITEM_WIDTH = 58;
 | 
|---|
| 13 | var INV_ITEM_HEIGHT = 40;
 | 
|---|
| 14 | 
 | 
|---|
| 15 | 
 | 
|---|
| 16 | function initMap() {
 | 
|---|
| 17 |         // ===============================================================================================
 | 
|---|
| 18 |         // 7dtd coordinate transformations
 | 
|---|
| 19 | 
 | 
|---|
| 20 |         SDTD_Projection = {
 | 
|---|
| 21 |                 project: function (latlng) {
 | 
|---|
| 22 |                         return new L.Point(
 | 
|---|
| 23 |                                 (latlng.lat) / Math.pow(2, MAXZOOM),
 | 
|---|
| 24 |                                 (latlng.lng) / Math.pow(2, MAXZOOM) );
 | 
|---|
| 25 |                 },
 | 
|---|
| 26 |                 
 | 
|---|
| 27 |                 unproject: function (point) {
 | 
|---|
| 28 |                         return new L.LatLng(
 | 
|---|
| 29 |                                 point.x * Math.pow(2, MAXZOOM),
 | 
|---|
| 30 |                                 point.y * Math.pow(2, MAXZOOM) );
 | 
|---|
| 31 |                 }
 | 
|---|
| 32 |         };
 | 
|---|
| 33 | 
 | 
|---|
| 34 |         SDTD_CRS = L.extend({}, L.CRS.Simple, {
 | 
|---|
| 35 |                 projection: SDTD_Projection,
 | 
|---|
| 36 |                 transformation: new L.Transformation(1, 0, -1, 0),
 | 
|---|
| 37 | 
 | 
|---|
| 38 |                 scale: function (zoom) {
 | 
|---|
| 39 |                         return Math.pow(2, zoom);
 | 
|---|
| 40 |                 }
 | 
|---|
| 41 |         });
 | 
|---|
| 42 | 
 | 
|---|
| 43 |         var CoordToChunk = function(latlng) {
 | 
|---|
| 44 |                 var x = Math.floor(((latlng.lat + 16777216) / CHUNKSIZE) - (16777216 / CHUNKSIZE));
 | 
|---|
| 45 |                 var y = Math.floor(((latlng.lng + 16777216) / CHUNKSIZE) - (16777216 / CHUNKSIZE));
 | 
|---|
| 46 |                 return L.latLng(x, y);
 | 
|---|
| 47 |         }
 | 
|---|
| 48 | 
 | 
|---|
| 49 |         var CoordToRegion = function(latlng) {
 | 
|---|
| 50 |                 var x = Math.floor(((latlng.lat + 16777216) / REGIONSIZE) - (16777216 / REGIONSIZE));
 | 
|---|
| 51 |                 var y = Math.floor(((latlng.lng + 16777216) / REGIONSIZE) - (16777216 / REGIONSIZE));
 | 
|---|
| 52 |                 return L.latLng(x, y);
 | 
|---|
| 53 |         }
 | 
|---|
| 54 | 
 | 
|---|
| 55 |         var FormatCoord = function(latlng) {
 | 
|---|
| 56 |                 return "" +
 | 
|---|
| 57 |                         Math.abs(latlng.lng) + (latlng.lng>=0 ? " N" : " S") + " / " +
 | 
|---|
| 58 |                         Math.abs(latlng.lat) + (latlng.lat>=0 ? " E" : " W");
 | 
|---|
| 59 |         }
 | 
|---|
| 60 | 
 | 
|---|
| 61 |         var FormatRegionFileName = function(latlng) {
 | 
|---|
| 62 |                 return "r." + latlng.lat + "." + latlng.lng + ".7rg";
 | 
|---|
| 63 |         }
 | 
|---|
| 64 | 
 | 
|---|
| 65 | 
 | 
|---|
| 66 | 
 | 
|---|
| 67 |         // ===============================================================================================
 | 
|---|
| 68 |         // Map and basic tile layers
 | 
|---|
| 69 | 
 | 
|---|
| 70 |         var tileTime = new Date().getTime();
 | 
|---|
| 71 | 
 | 
|---|
| 72 |         map = L.map('map', {
 | 
|---|
| 73 |                 zoomControl: false, // Added by Zoomslider
 | 
|---|
| 74 |                 zoomsliderControl: true,
 | 
|---|
| 75 |                 attributionControl: false,
 | 
|---|
| 76 |                 crs: SDTD_CRS
 | 
|---|
| 77 |         }).setView([0, 0], Math.max(0, MAXZOOM-5));
 | 
|---|
| 78 | 
 | 
|---|
| 79 |         var tileLayer = L.tileLayer('../map/{z}/{x}/{y}.png?t={time}', {
 | 
|---|
| 80 |                 maxZoom:MAXZOOM+1,
 | 
|---|
| 81 |                 minZoom: Math.max(0, MAXZOOM-5),
 | 
|---|
| 82 |                 maxNativeZoom: MAXZOOM,
 | 
|---|
| 83 |                 tileSize: TILESIZE,
 | 
|---|
| 84 |                 continuousWorld: true,
 | 
|---|
| 85 |                 tms: true,
 | 
|---|
| 86 |                 unloadInvisibleTiles: false,
 | 
|---|
| 87 |                 time: function() { return tileTime; }
 | 
|---|
| 88 |         }).addTo(map);
 | 
|---|
| 89 |         
 | 
|---|
| 90 |         // TileLayer w/ TMS=true fix for zoomlevel >= 8
 | 
|---|
| 91 |         tileLayer._getWrapTileNum = function () {
 | 
|---|
| 92 |                 return L.point(0, 0);
 | 
|---|
| 93 |         };
 | 
|---|
| 94 | 
 | 
|---|
| 95 |         var tileLayerMiniMap = L.tileLayer('../map/{z}/{x}/{y}.png?t={time}', {
 | 
|---|
| 96 |                 maxZoom: MAXZOOM,
 | 
|---|
| 97 |                 minZoom: 0,
 | 
|---|
| 98 |                 maxNativeZoom: MAXZOOM,
 | 
|---|
| 99 |                 tileSize: TILESIZE,
 | 
|---|
| 100 |                 continuousWorld: true,
 | 
|---|
| 101 |                 tms: true,
 | 
|---|
| 102 |                 unloadInvisibleTiles: false,
 | 
|---|
| 103 |                 time: function() { return tileTime; }
 | 
|---|
| 104 |         });
 | 
|---|
| 105 | 
 | 
|---|
| 106 |         var regionLayer = L.tileLayer.canvas({
 | 
|---|
| 107 |                 maxZoom: MAXZOOM+1,
 | 
|---|
| 108 |                 minZoom: 0,
 | 
|---|
| 109 |                 maxNativeZoom: MAXZOOM+1,
 | 
|---|
| 110 |                 tileSize: TILESIZE,
 | 
|---|
| 111 |                 continuousWorld: true
 | 
|---|
| 112 |         });
 | 
|---|
| 113 | 
 | 
|---|
| 114 |         regionLayer.drawTile = function(canvas, tilePoint, zoom) {
 | 
|---|
| 115 |                 var blockWorldSize = TILESIZE * Math.pow(2, MAXZOOM-zoom);
 | 
|---|
| 116 |                 var tileLeft = tilePoint.x * blockWorldSize;
 | 
|---|
| 117 |                 var tileBottom = (-1-tilePoint.y) * blockWorldSize;
 | 
|---|
| 118 |                 var blockPos = L.latLng(tileLeft, tileBottom);
 | 
|---|
| 119 |         
 | 
|---|
| 120 |                 var ctx = canvas.getContext('2d');
 | 
|---|
| 121 |         
 | 
|---|
| 122 |                 ctx.strokeStyle = "lightblue";
 | 
|---|
| 123 |                 ctx.fillStyle = "lightblue";
 | 
|---|
| 124 |                 ctx.lineWidth = 1;
 | 
|---|
| 125 |                 ctx.font="14px Arial";
 | 
|---|
| 126 |         
 | 
|---|
| 127 |                 var lineCount = blockWorldSize / REGIONSIZE;
 | 
|---|
| 128 |                 if (lineCount >= 1) {
 | 
|---|
| 129 |                         var pos = 0;
 | 
|---|
| 130 |                         while (pos < TILESIZE) {
 | 
|---|
| 131 |                                 // Vertical
 | 
|---|
| 132 |                                 ctx.beginPath();
 | 
|---|
| 133 |                                 ctx.moveTo(pos, 0);
 | 
|---|
| 134 |                                 ctx.lineTo(pos, TILESIZE);
 | 
|---|
| 135 |                                 ctx.stroke();
 | 
|---|
| 136 |                         
 | 
|---|
| 137 |                                 // Horizontal
 | 
|---|
| 138 |                                 ctx.beginPath();
 | 
|---|
| 139 |                                 ctx.moveTo(0, pos);
 | 
|---|
| 140 |                                 ctx.lineTo(TILESIZE, pos);
 | 
|---|
| 141 |                                 ctx.stroke();
 | 
|---|
| 142 | 
 | 
|---|
| 143 |                                 pos += TILESIZE / lineCount;
 | 
|---|
| 144 |                         }
 | 
|---|
| 145 |                         ctx.fillText(FormatRegionFileName(CoordToRegion(blockPos)), 4, TILESIZE-5);
 | 
|---|
| 146 |                 } else {
 | 
|---|
| 147 |                         if ((tileLeft % REGIONSIZE) == 0) {
 | 
|---|
| 148 |                                 // Vertical
 | 
|---|
| 149 |                                 ctx.beginPath();
 | 
|---|
| 150 |                                 ctx.moveTo(0, 0);
 | 
|---|
| 151 |                                 ctx.lineTo(0, TILESIZE);
 | 
|---|
| 152 |                                 ctx.stroke();
 | 
|---|
| 153 |                         }
 | 
|---|
| 154 |                         if ((tileBottom % REGIONSIZE) == 0) {
 | 
|---|
| 155 |                                 // Horizontal
 | 
|---|
| 156 |                                 ctx.beginPath();
 | 
|---|
| 157 |                                 ctx.moveTo(0, TILESIZE);
 | 
|---|
| 158 |                                 ctx.lineTo(TILESIZE, TILESIZE);
 | 
|---|
| 159 |                                 ctx.stroke();
 | 
|---|
| 160 |                         }
 | 
|---|
| 161 |                         if ((tileLeft % REGIONSIZE) == 0 && (tileBottom % REGIONSIZE) == 0) {
 | 
|---|
| 162 |                                 ctx.fillText(FormatRegionFileName(CoordToRegion(blockPos)), 4, TILESIZE-5);
 | 
|---|
| 163 |                         }
 | 
|---|
| 164 |                 }
 | 
|---|
| 165 | 
 | 
|---|
| 166 |         }
 | 
|---|
| 167 | 
 | 
|---|
| 168 | 
 | 
|---|
| 169 |         // ===============================================================================================
 | 
|---|
| 170 |         // Reload control
 | 
|---|
| 171 | 
 | 
|---|
| 172 |         L.Control.ReloadTiles = L.Control.extend({
 | 
|---|
| 173 |                 options: {
 | 
|---|
| 174 |                         position: 'bottomleft'
 | 
|---|
| 175 |                 },
 | 
|---|
| 176 | 
 | 
|---|
| 177 |                 onAdd: function (map) {
 | 
|---|
| 178 |                         var name = 'control-reloadtiles',
 | 
|---|
| 179 |                             container = L.DomUtil.create('div', name + ' leaflet-bar');
 | 
|---|
| 180 | 
 | 
|---|
| 181 |                         this._map = map;
 | 
|---|
| 182 | 
 | 
|---|
| 183 |                         this._reloadbutton = this._createButton(
 | 
|---|
| 184 |                                 "Reload tiles", "Reload tiles",
 | 
|---|
| 185 |                                 name + "-btn", container, this._reload, this);
 | 
|---|
| 186 | 
 | 
|---|
| 187 |                         return container;
 | 
|---|
| 188 |                 },
 | 
|---|
| 189 | 
 | 
|---|
| 190 |                 onRemove: function (map) {
 | 
|---|
| 191 |                 },
 | 
|---|
| 192 | 
 | 
|---|
| 193 |                 _reload: function (e) {
 | 
|---|
| 194 |                         tileTime = new Date().getTime();
 | 
|---|
| 195 |                         tileLayer.redraw();
 | 
|---|
| 196 |                         tileLayerMiniMap.redraw();
 | 
|---|
| 197 |                 },
 | 
|---|
| 198 | 
 | 
|---|
| 199 |                 _createButton: function (html, title, className, container, fn, context) {
 | 
|---|
| 200 |                         var link = L.DomUtil.create('a', className, container);
 | 
|---|
| 201 |                         link.innerHTML = html;
 | 
|---|
| 202 |                         link.href = '#';
 | 
|---|
| 203 |                         link.title = title;
 | 
|---|
| 204 | 
 | 
|---|
| 205 |                         var stop = L.DomEvent.stopPropagation;
 | 
|---|
| 206 | 
 | 
|---|
| 207 |                         L.DomEvent
 | 
|---|
| 208 |                             .on(link, 'click', stop)
 | 
|---|
| 209 |                             .on(link, 'mousedown', stop)
 | 
|---|
| 210 |                             .on(link, 'dblclick', stop)
 | 
|---|
| 211 |                             .on(link, 'click', L.DomEvent.preventDefault)
 | 
|---|
| 212 |                             .on(link, 'click', fn, context)
 | 
|---|
| 213 |                             .on(link, 'click', this._refocusOnMap, context);
 | 
|---|
| 214 | 
 | 
|---|
| 215 |                         return link;
 | 
|---|
| 216 |                 }
 | 
|---|
| 217 | 
 | 
|---|
| 218 |         });
 | 
|---|
| 219 | 
 | 
|---|
| 220 |         new L.Control.ReloadTiles({
 | 
|---|
| 221 |         }).addTo(map);
 | 
|---|
| 222 | 
 | 
|---|
| 223 | 
 | 
|---|
| 224 |         // ===============================================================================================
 | 
|---|
| 225 |         // Coordinates control
 | 
|---|
| 226 |         //      <div id="info">
 | 
|---|
| 227 |         //              MouseCoords: <span id="pos"></span>
 | 
|---|
| 228 |         //      </div>
 | 
|---|
| 229 | 
 | 
|---|
| 230 |         L.Control.Coordinates = L.Control.extend({
 | 
|---|
| 231 |                 options: {
 | 
|---|
| 232 |                         position: 'bottomleft'
 | 
|---|
| 233 |                 },
 | 
|---|
| 234 | 
 | 
|---|
| 235 |                 onAdd: function (map) {
 | 
|---|
| 236 |                         var name = 'control-coordinates',
 | 
|---|
| 237 |                             container = L.DomUtil.create('div', name + ' leaflet-bar');
 | 
|---|
| 238 |                 
 | 
|---|
| 239 |                         container.innerHTML = "- N / - E"
 | 
|---|
| 240 | 
 | 
|---|
| 241 |                         this._map = map;
 | 
|---|
| 242 |                         this._div = container;
 | 
|---|
| 243 | 
 | 
|---|
| 244 |                         map.on('mousemove', this._onMouseMove, this);
 | 
|---|
| 245 | 
 | 
|---|
| 246 |                         return container;
 | 
|---|
| 247 |                 },
 | 
|---|
| 248 | 
 | 
|---|
| 249 |                 onRemove: function (map) {
 | 
|---|
| 250 |                 },
 | 
|---|
| 251 |         
 | 
|---|
| 252 |                 _onMouseMove: function (e) {
 | 
|---|
| 253 |                         this._div.innerHTML = FormatCoord(e.latlng);
 | 
|---|
| 254 |                 }
 | 
|---|
| 255 | 
 | 
|---|
| 256 | 
 | 
|---|
| 257 |         });
 | 
|---|
| 258 | 
 | 
|---|
| 259 |         new L.Control.Coordinates({
 | 
|---|
| 260 |         }).addTo(map);
 | 
|---|
| 261 | 
 | 
|---|
| 262 | 
 | 
|---|
| 263 | 
 | 
|---|
| 264 | 
 | 
|---|
| 265 |         // ===============================================================================================
 | 
|---|
| 266 |         // Overlays and controls
 | 
|---|
| 267 | 
 | 
|---|
| 268 |         var playersOnlineMarkerGroup = L.layerGroup();
 | 
|---|
| 269 |         var playersOfflineMarkerGroup = L.markerClusterGroup({
 | 
|---|
| 270 |                 maxClusterRadius: function(zoom) { return zoom == MAXZOOM ? 10 : 50; }
 | 
|---|
| 271 |         });
 | 
|---|
| 272 | 
 | 
|---|
| 273 | 
 | 
|---|
| 274 |         var landClaimsGroup = L.layerGroup();
 | 
|---|
| 275 |         var landClaimsClusterGroup = L.markerClusterGroup({
 | 
|---|
| 276 |                 disableClusteringAtZoom: MAXZOOM,
 | 
|---|
| 277 |                 singleMarkerMode: true,
 | 
|---|
| 278 |                 maxClusterRadius: 50
 | 
|---|
| 279 |         });
 | 
|---|
| 280 |         var landClaimsRectGroup = L.layerGroup();
 | 
|---|
| 281 |         landClaimsGroup.addLayer(landClaimsClusterGroup);
 | 
|---|
| 282 |         landClaimsGroup.addLayer(landClaimsRectGroup);
 | 
|---|
| 283 |         var maxZoomForCluster = 4;
 | 
|---|
| 284 | 
 | 
|---|
| 285 |         var baseLayers = {
 | 
|---|
| 286 |                 //"Map": tileLayer
 | 
|---|
| 287 |         };
 | 
|---|
| 288 | 
 | 
|---|
| 289 |         var overlays = {
 | 
|---|
| 290 |                 "Land claims" : landClaimsGroup,
 | 
|---|
| 291 |                 "Players (offline) (<span id='mapControlOfflineCount'>0</span>)" : playersOfflineMarkerGroup,
 | 
|---|
| 292 |                 "Players (online) (<span id='mapControlOnlineCount'>0</span>)" : playersOnlineMarkerGroup,
 | 
|---|
| 293 |                 "Region files": regionLayer,
 | 
|---|
| 294 |         };
 | 
|---|
| 295 | 
 | 
|---|
| 296 |         
 | 
|---|
| 297 |         L.control.layers(baseLayers, overlays, {
 | 
|---|
| 298 |                 collapsed: false
 | 
|---|
| 299 |         }).addTo(map);
 | 
|---|
| 300 | 
 | 
|---|
| 301 |         var miniMap = new L.Control.MiniMap(tileLayerMiniMap, {
 | 
|---|
| 302 |                 zoomLevelOffset: -6,
 | 
|---|
| 303 |                 toggleDisplay: true
 | 
|---|
| 304 |         }).addTo(map);
 | 
|---|
| 305 | 
 | 
|---|
| 306 | 
 | 
|---|
| 307 |         var playersMappingList = {};
 | 
|---|
| 308 | 
 | 
|---|
| 309 | 
 | 
|---|
| 310 | 
 | 
|---|
| 311 |         // ===============================================================================================
 | 
|---|
| 312 |         // Inventory dialog
 | 
|---|
| 313 | 
 | 
|---|
| 314 |         var showInv = function(steamid) {
 | 
|---|
| 315 |                 $.getJSON( "../api/getplayerinventory", { steamid: steamid  })
 | 
|---|
| 316 |                 .done(function(data) {
 | 
|---|
| 317 |                         $("#invPlayerName").text(playersMappingList[steamid].name);
 | 
|---|
| 318 |                         for (var y = 0; y < BAG_ROWS; y++) {
 | 
|---|
| 319 |                                 for (var x = 0; x < BAG_COLS; x++) {
 | 
|---|
| 320 |                                         if (data.bag[y*BAG_COLS+x].count > 0) {
 | 
|---|
| 321 |                                                 $("#bagField"+x+"_"+y).attr("style", "background-image: url(itemimages/" + data.bag[y*BAG_COLS+x].name + ".png);");
 | 
|---|
| 322 |                                                 $("#bagFieldText"+x+"_"+y).text(data.bag[y*BAG_COLS+x].count);
 | 
|---|
| 323 |                                         } else {
 | 
|---|
| 324 |                                                 $("#bagField"+x+"_"+y).attr("style", "background-image: none;");
 | 
|---|
| 325 |                                                 $("#bagFieldText"+x+"_"+y).text("");
 | 
|---|
| 326 |                                         }
 | 
|---|
| 327 |                                 }
 | 
|---|
| 328 |                         }
 | 
|---|
| 329 | 
 | 
|---|
| 330 |                         for (var x = 0; x < BELT_COLS; x++) {
 | 
|---|
| 331 |                                 if (data.belt[x].count > 0) {
 | 
|---|
| 332 |                                         $("#beltField"+x).attr("style", "background-image: url(itemimages/" + data.belt[x].name + ".png);");
 | 
|---|
| 333 |                                         $("#beltFieldText"+x).text(data.belt[x].count);
 | 
|---|
| 334 |                                 } else {
 | 
|---|
| 335 |                                         $("#beltField"+x).attr("style", "background-image: none;");
 | 
|---|
| 336 |                                         $("#beltFieldText"+x).text("");
 | 
|---|
| 337 |                                 }
 | 
|---|
| 338 |                         }
 | 
|---|
| 339 | 
 | 
|---|
| 340 |                         $( "#playerInventoryDialog" ).css("z-index", "1010").dialog({
 | 
|---|
| 341 |                                 modal: true,
 | 
|---|
| 342 |                                 width: BAG_COLS*(INV_ITEM_WIDTH+14) + 20,
 | 
|---|
| 343 |                                 buttons: {
 | 
|---|
| 344 |                                         Ok: function() {
 | 
|---|
| 345 |                                                 $( this ).dialog( "close" );
 | 
|---|
| 346 |                                         }
 | 
|---|
| 347 |                                 }
 | 
|---|
| 348 |                         });
 | 
|---|
| 349 |                 })
 | 
|---|
| 350 |                 .fail(function(jqxhr, textStatus, error) {
 | 
|---|
| 351 |                         console.log("Error fetching player inventory");
 | 
|---|
| 352 |                 })
 | 
|---|
| 353 |                 .always(function() {
 | 
|---|
| 354 |                 });
 | 
|---|
| 355 |         };
 | 
|---|
| 356 | 
 | 
|---|
| 357 |         for (var y = 0; y < BAG_ROWS; y++) {
 | 
|---|
| 358 |                 $("#bagTable").append("<tr id=\"bagRow"+y+"\"></tr>");
 | 
|---|
| 359 |                 for (var x = 0; x < BAG_COLS; x++) {
 | 
|---|
| 360 |                         $("#bagRow"+y).append(
 | 
|---|
| 361 |                                 "<td class=\"invField\" id=\"bagField"+x+"_"+y+"\">" +
 | 
|---|
| 362 |                                 "<span class=\"invFieldText\" id=\"bagFieldText"+x+"_"+y+"\"></span>" +
 | 
|---|
| 363 |                                 "</td>");
 | 
|---|
| 364 |                 }
 | 
|---|
| 365 |         }
 | 
|---|
| 366 | 
 | 
|---|
| 367 |         $("#beltTable").append("<tr id=\"beltRow0\"></tr>");
 | 
|---|
| 368 |         for (var x = 0; x < BELT_COLS; x++) {
 | 
|---|
| 369 |                 $("#beltRow0").append(
 | 
|---|
| 370 |                         "<td class=\"invField\" id=\"beltField"+x+"\">" +
 | 
|---|
| 371 |                         "<span class=\"invFieldText\" id=\"beltFieldText"+x+"\"></span>" +
 | 
|---|
| 372 |                         "</td>");
 | 
|---|
| 373 |         }
 | 
|---|
| 374 | 
 | 
|---|
| 375 | 
 | 
|---|
| 376 | 
 | 
|---|
| 377 |         // ===============================================================================================
 | 
|---|
| 378 |         // Player markers
 | 
|---|
| 379 | 
 | 
|---|
| 380 |         $(".leaflet-popup-pane").on('click.action', '.inventoryButton', function(event) {
 | 
|---|
| 381 |                 showInv($(this).data('steamid'));
 | 
|---|
| 382 |         });
 | 
|---|
| 383 | 
 | 
|---|
| 384 |         var setPlayerMarkers = function(data) {
 | 
|---|
| 385 |                 var online = 0;
 | 
|---|
| 386 |                 var offline = 0;
 | 
|---|
| 387 |                 $.each( data, function( key, val ) {
 | 
|---|
| 388 |                         var marker;
 | 
|---|
| 389 |                         if (playersMappingList.hasOwnProperty(val.steamid)) {
 | 
|---|
| 390 |                                 marker = playersMappingList[val.steamid].currentPosMarker;
 | 
|---|
| 391 |                                 marker.setLatLng([val.position.x, val.position.z]);
 | 
|---|
| 392 |                         } else {
 | 
|---|
| 393 |                                 marker = L.marker([val.position.x, val.position.z]).bindPopup(
 | 
|---|
| 394 |                                         "Player: " + val.name + "<br/>" +
 | 
|---|
| 395 |                                         "<a class='inventoryButton' data-steamid='"+val.steamid+"'>Show inventory</a>"
 | 
|---|
| 396 |                                 );
 | 
|---|
| 397 |                                 playersMappingList[val.steamid] = { online: !val.online };
 | 
|---|
| 398 |                         }
 | 
|---|
| 399 |                         if (playersMappingList[val.steamid].online != val.online) {
 | 
|---|
| 400 |                                 if (val.online) {
 | 
|---|
| 401 |                                         marker.setOpacity(1.0);
 | 
|---|
| 402 |                                         playersOfflineMarkerGroup.removeLayer(marker);
 | 
|---|
| 403 |                                         playersOnlineMarkerGroup.addLayer(marker);
 | 
|---|
| 404 |                                 } else {
 | 
|---|
| 405 |                                         marker.setOpacity(0.5);
 | 
|---|
| 406 |                                         playersOnlineMarkerGroup.removeLayer(marker);
 | 
|---|
| 407 |                                         playersOfflineMarkerGroup.addLayer(marker);
 | 
|---|
| 408 |                                 }
 | 
|---|
| 409 |                         }
 | 
|---|
| 410 |                         val.currentPosMarker = marker;
 | 
|---|
| 411 |                         playersMappingList[val.steamid] = val;
 | 
|---|
| 412 |                 
 | 
|---|
| 413 |                         if (val.online)
 | 
|---|
| 414 |                                 online++;
 | 
|---|
| 415 |                         else
 | 
|---|
| 416 |                                 offline++;
 | 
|---|
| 417 |                 });
 | 
|---|
| 418 |                 $( "#mapControlOnlineCount" ).text( online );
 | 
|---|
| 419 |                 $( "#mapControlOfflineCount" ).text( offline );
 | 
|---|
| 420 |         }
 | 
|---|
| 421 | 
 | 
|---|
| 422 |         var updatePlayerEvent = function() {
 | 
|---|
| 423 |                 $.getJSON( "../api/getplayerslocation")
 | 
|---|
| 424 |                 .done(setPlayerMarkers)
 | 
|---|
| 425 |                 .fail(function(jqxhr, textStatus, error) {
 | 
|---|
| 426 |                         console.log("Error fetching players list");
 | 
|---|
| 427 |                 })
 | 
|---|
| 428 |                 .always(function() {
 | 
|---|
| 429 |                         window.setTimeout(updatePlayerEvent, 2000);
 | 
|---|
| 430 |                 });
 | 
|---|
| 431 |         }
 | 
|---|
| 432 | 
 | 
|---|
| 433 |         window.setTimeout(updatePlayerEvent, 500);
 | 
|---|
| 434 | 
 | 
|---|
| 435 | 
 | 
|---|
| 436 | 
 | 
|---|
| 437 |         // ===============================================================================================
 | 
|---|
| 438 |         // Land claim markers
 | 
|---|
| 439 | 
 | 
|---|
| 440 |         var setLandClaims = function(data) {
 | 
|---|
| 441 |                 landClaimsClusterGroup.clearLayers();
 | 
|---|
| 442 |                 landClaimsRectGroup.clearLayers();
 | 
|---|
| 443 |         
 | 
|---|
| 444 |                 var claimPower = Math.floor(Math.log(data.claimsize) / Math.LN2);
 | 
|---|
| 445 |                 var maxClusterZoomUnlimited = MAXZOOM - (claimPower - 3);
 | 
|---|
| 446 |                 var maxClusterZoomLimitedMax = Math.min(maxClusterZoomUnlimited, MAXZOOM+1);
 | 
|---|
| 447 |                 maxZoomForCluster = Math.max(maxClusterZoomLimitedMax, 0);
 | 
|---|
| 448 |         
 | 
|---|
| 449 |                 checkClaimClustering({target: map});
 | 
|---|
| 450 | 
 | 
|---|
| 451 |                 var sizeHalf = Math.floor(data.claimsize / 2);
 | 
|---|
| 452 | 
 | 
|---|
| 453 |                 $.each( data.claimowners, function( key, val ) {
 | 
|---|
| 454 |                         var steamid = val.steamid;
 | 
|---|
| 455 |                         var active = val.claimactive;
 | 
|---|
| 456 |                         var color = active ? "#55ff55" : "#ff0000";
 | 
|---|
| 457 |                 
 | 
|---|
| 458 |                         $.each( val.claims, function( key, val ) {
 | 
|---|
| 459 |                                 var pos = L.latLng(val.x, val.z);
 | 
|---|
| 460 |                                 var bounds = L.latLngBounds(L.latLng(val.x - sizeHalf, val.z - sizeHalf), L.latLng(val.x + sizeHalf, val.z + sizeHalf));
 | 
|---|
| 461 |                                 var r = L.rectangle(bounds, {color: color, weight: 1, opacity: 0.8, fillOpacity: 0.15});
 | 
|---|
| 462 |                                 var m = L.marker(pos, { clickable: false, keyboard: false, zIndexOffset:-1000, iconSize: [0,0], icon: L.divIcon({className: 'invisIcon', iconSize:[0,0]}) });
 | 
|---|
| 463 |                                 if (playersMappingList.hasOwnProperty(steamid)) {
 | 
|---|
| 464 |                                         var name = playersMappingList[steamid].name;
 | 
|---|
| 465 |                                 } else {
 | 
|---|
| 466 |                                         var name = "unknown"
 | 
|---|
| 467 |                                 }
 | 
|---|
| 468 |                                 r.bindPopup("Owner: " + name + " ("+steamid+")<br/>Position: " + val.x + " / " + val.y + " / " + val.z);
 | 
|---|
| 469 |                                 landClaimsRectGroup.addLayer(r);
 | 
|---|
| 470 |                                 landClaimsClusterGroup.addLayer(m);
 | 
|---|
| 471 |                         });
 | 
|---|
| 472 |                 });
 | 
|---|
| 473 |         }
 | 
|---|
| 474 | 
 | 
|---|
| 475 |         var updateClaimsEvent = function() {
 | 
|---|
| 476 |                 $.getJSON( "../api/getlandclaims")
 | 
|---|
| 477 |                 .done(setLandClaims)
 | 
|---|
| 478 |                 .fail(function(jqxhr, textStatus, error) {
 | 
|---|
| 479 |                         console.log("Error fetching land claim list");
 | 
|---|
| 480 |                 })
 | 
|---|
| 481 |                 .always(function() {
 | 
|---|
| 482 |                         //updateClaimTimer = window.setTimeout(updateClaimsEvent, 3000);
 | 
|---|
| 483 |                 });
 | 
|---|
| 484 |         }
 | 
|---|
| 485 | 
 | 
|---|
| 486 | 
 | 
|---|
| 487 | 
 | 
|---|
| 488 |         // ===============================================================================================
 | 
|---|
| 489 |         // Layer events
 | 
|---|
| 490 | 
 | 
|---|
| 491 |         var updateClaimTimer;
 | 
|---|
| 492 |         map.on('overlayadd', function(e) {
 | 
|---|
| 493 |                 if (e.layer == landClaimsGroup) {
 | 
|---|
| 494 |                         updateClaimsEvent();
 | 
|---|
| 495 |                 }
 | 
|---|
| 496 |         });
 | 
|---|
| 497 | 
 | 
|---|
| 498 |         map.on('overlayremove', function(e) {
 | 
|---|
| 499 |                 if (e.layer == landClaimsGroup) {
 | 
|---|
| 500 |                         //window.clearTimeout(updateClaimTimer);
 | 
|---|
| 501 |                 }
 | 
|---|
| 502 |         });
 | 
|---|
| 503 | 
 | 
|---|
| 504 |         var checkClaimClustering = function(e) {
 | 
|---|
| 505 |                 if (e.target._zoom >= maxZoomForCluster) {
 | 
|---|
| 506 |                         landClaimsGroup.removeLayer(landClaimsClusterGroup);    
 | 
|---|
| 507 |                 } else {
 | 
|---|
| 508 |                         landClaimsGroup.addLayer(landClaimsClusterGroup);       
 | 
|---|
| 509 |                 }
 | 
|---|
| 510 |         };
 | 
|---|
| 511 | 
 | 
|---|
| 512 |         map.on('zoomend', checkClaimClustering);
 | 
|---|
| 513 | 
 | 
|---|
| 514 | }
 | 
|---|
| 515 | 
 | 
|---|
| 516 | 
 | 
|---|
| 517 | 
 | 
|---|
| 518 | $.getJSON( "../map/mapinfo.json")
 | 
|---|
| 519 | .done(function(data) {
 | 
|---|
| 520 |         TILESIZE = data.blockSize;
 | 
|---|
| 521 |         MAXZOOM = data.maxZoom;
 | 
|---|
| 522 | })
 | 
|---|
| 523 | .fail(function(jqxhr, textStatus, error) {
 | 
|---|
| 524 |         console.log("Error fetching map information");
 | 
|---|
| 525 | })
 | 
|---|
| 526 | .always(function() {
 | 
|---|
| 527 |         initMap();
 | 
|---|
| 528 | });
 | 
|---|
| 529 | 
 | 
|---|