// PORTAL DETAILS DISPLAY //////////////////////////////////////////// // hand any of these functions the details-hash of a portal, and they // will return pretty, displayable HTML or parts thereof. // returns displayable text+link about portal range window.getRangeText = function(d) { var range = getPortalRange(d); return 'range: ' + '' + (range > 1000 ? Math.round(range/1000) + ' km' : Math.round(range) + ' m') + ''; } // generates description text from details for portal window.getPortalDescriptionFromDetails = function(details) { var descObj = details.portalV2.descriptiveText; // FIXME: also get real description? var desc = descObj.TITLE + '\n' + descObj.ADDRESS; if(descObj.ATTRIBUTION) desc += '\nby '+descObj.ATTRIBUTION+' ('+descObj.ATTRIBUTION_LINK+')'; return desc; } // given portal details, returns html code to display mod details. window.getModDetails = function(d) { var mods = []; var modsTitle = []; var modsColor = []; $.each(d.portalV2.linkedModArray, function(ind, mod) { if(!mod) { mods.push(''); modsTitle.push(''); modsColor.push('#000'); } else if(mod.type === 'RES_SHIELD') { var title = mod.rarity.capitalize() + ' ' + mod.displayName + '\n'; title += 'Installed by: '+ getPlayerName(mod.installingUser); title += '\nStats:'; for (var key in mod.stats) { if (!mod.stats.hasOwnProperty(key)) continue; title += '\n+' + mod.stats[key] + ' ' + key.capitalize(); } mods.push(mod.rarity.capitalize().replace('_', ' ') + ' ' + mod.displayName); modsTitle.push(title); modsColor.push(COLORS_MOD[mod.rarity]); } else { mods.push(mod.type); modsTitle.push('Unknown mod. No further details available.'); modsColor.push('#FFF'); } }); var t = ''+mods[0]+'' + ''+mods[1]+'' + ''+mods[2]+'' + ''+mods[3]+'' return t; } window.getEnergyText = function(d) { var currentNrg = getCurrentPortalEnergy(d); var totalNrg = getTotalPortalEnergy(d); var inf = currentNrg + ' / ' + totalNrg; var fill = prettyEnergy(currentNrg) + ' / ' + prettyEnergy(totalNrg) var meter = 'energy: ' + fill + ''; return meter; } window.getAvgResoDistText = function(d) { var avgDist = Math.round(10*getAvgResoDist(d))/10; return '⌀ res dist: ' + avgDist + ' m'; } window.getReportIssueInfoText = function(d) { return ('Your Nick: '+PLAYER.nickname+' ' + 'Portal: '+d.portalV2.descriptiveText.TITLE+' ' + 'Location: '+d.portalV2.descriptiveText.ADDRESS +' (lat '+(d.locationE6.latE6/1E6)+'; lng '+(d.locationE6.lngE6/1E6)+')' ).replace(/['"]/, ''); } window.getResonatorDetails = function(d) { console.log('rendering reso details'); var resoDetails = ''; var slotsFilled = 0; $.each(d.resonatorArray.resonators, function(ind, reso) { if(!reso) { resoDetails += renderResonatorDetails(slotsFilled++, 0); return true; } var l = parseInt(reso.level); var v = parseInt(reso.energyTotal); var nick = window.getPlayerName(reso.ownerGuid); var dist = reso.distanceToPortal; slotsFilled++; resoDetails += renderResonatorDetails(parseInt(reso.slot), l, v, dist, nick); }); return resoDetails; } // helper function that renders the HTML for a given resonator. Does // not work with raw details-hash. Needs digested infos instead: // slot: which slot this resonator occupies. Starts with 0 (east) and // rotates clockwise. So, last one is 7 (southeast). window.renderResonatorDetails = function(slot, level, nrg, dist, nick) { if(level == 0) { var meter = ''; } else { var max = RESO_NRG[level]; var fillGrade = nrg/max*100; var inf = 'energy:\t\t' + nrg + ' / ' + max + ' (' + Math.round(fillGrade) + '%)' + '\n' + 'level:\t\t' + level +'\n' + 'distance:\t' + dist + 'm\n' + 'owner:\t\t' + nick + '\n' + 'octant:\t' + OCTANTS[slot]; var style = 'width:'+fillGrade+'%; background:'+COLORS_LVL[level]+';'; var color = (level < 3 ? "#9900FF" : "#FFFFFF"); var lbar = ' ' + level + ' '; var fill = ''; var meter = '' + fill + lbar + ''; } var cls = slot <= 3 ? 'left' : 'right'; var text = ''+(nick||'')+''; return (slot <= 3 ? text+meter : meter+text) + '
'; }