window.isSmartphone = function() { // this check is also used in main.js. Note it should not detect // tablets because their display is large enough to use the desktop // version. // The stock intel site allows forcing mobile/full sites with a vp=m or vp=f // parameter - let's support the same. (stock only allows this for some // browsers - e.g. android phone/tablet. let's allow it for all, but // no promises it'll work right) var viewParam = getURLParam('vp'); if (viewParam == 'm') return true; if (viewParam == 'f') return false; return navigator.userAgent.match(/Android.*Mobile/); } window.smartphone = function() {}; window.runOnSmartphonesBeforeBoot = function() { if(!isSmartphone()) return; console.warn('running smartphone pre boot stuff'); // add smartphone stylesheet headHTML = document.getElementsByTagName('head')[0].innerHTML; headHTML += ''; document.getElementsByTagName('head')[0].innerHTML = headHTML; // don’t need many of those window.setupStyles = function() { $('head').append(''); } window.smartphone.mapButton = $('map').click(function() { $('#map').css('visibility', 'visible'); $('#updatestatus').show(); $('#chatcontrols a .active').removeClass('active'); $("#chatcontrols a:contains('map')").addClass('active'); }); window.smartphone.sideButton = $('info').click(function() { $('#scrollwrapper').show(); $('.active').removeClass('active'); $("#chatcontrols a:contains('info')").addClass('active'); }); $('#chatcontrols').append(smartphone.mapButton).append(smartphone.sideButton); window.addHook('portalDetailsUpdated', function(data) { var x = $('.imgpreview img').removeClass('hide'); if(!x.length) { $('.fullimg').remove(); return; } if($('.fullimg').length) { $('.fullimg').replaceWith(x.addClass('fullimg')); } else { x.addClass('fullimg').appendTo('#sidebar'); } }); } window.smartphoneInfo = function(data) { var guid = data.selectedPortalGuid; if(!window.portals[guid]) return; var data = window.portals[selectedPortal].options.data; var details = window.portalDetail.get(guid); var lvl = data.level; if(data.team === "NEUTRAL") var t = 'L0'; else var t = 'L' + lvl + ''; var percentage = data.health; if(details) { var totalEnergy = getTotalPortalEnergy(details); if(getTotalPortalEnergy(details) > 0) { percentage = Math.floor(getCurrentPortalEnergy(details) / totalEnergy * 100); } } t += ' ' + percentage + '% '; t += data.title; if(details) { var l,v,max,perc; for(var i=0;i<8;i++) { var className = TEAM_TO_CSS[getTeam(details)]; if(OCTANTS[i] === 'N') className += ' north' var reso = details.resonatorArray.resonators[i]; if(reso) { l = parseInt(reso.level); v = parseInt(reso.energyTotal); max = RESO_NRG[l]; perc = v/max*100; } else { l = 0; v = 0; max = 0; perc = 0; } t += '
'; t += '
'; t += '
' } } $('#mobileinfo').html(t); } window.runOnSmartphonesAfterBoot = function() { if(!isSmartphone()) return; console.warn('running smartphone post boot stuff'); window.show('map'); // add a div/hook for updating mobile info $('#updatestatus').prepend('
'); window.addHook('portalSelected', window.smartphoneInfo); // init msg of status bar. hint for the user that a tap leads to the info screen $('#mobileinfo').html('
tap here for info screen
'); // disable img full view $('#portaldetails').off('click', '**'); // make buttons in action bar flexible var l = $('#chatcontrols a:visible'); l.css('width', 100/l.length + '%'); // notify android that a select spinner is enabled. // this disables javascript injection on android side. // if android is not notified, the spinner closes on the next JS call if (typeof android !== 'undefined' && android && android.spinnerEnabled) { $("body").on("click", "select", function() { android.spinnerEnabled(true); }); } // add event to portals that allows long press to switch to sidebar window.addHook('portalAdded', function(data) { data.portal.on('add', function() { if(!this._container || this.options.addedTapHoldHandler) return; this.options.addedTapHoldHandler = true; var guid = this.options.guid; // this is a hack, accessing Leaflet’s private _container is evil $(this._container).on('taphold', function() { window.renderPortalDetails(guid); window.show('info'); }); }); }); // Force lower render limits for mobile window.VIEWPORT_PAD_RATIO = 0.1; window.MAX_DRAWN_PORTALS = 500; window.MAX_DRAWN_LINKS = 200; window.MAX_DRAWN_FIELDS = 100; } window.useAndroidPanes = function() { // isSmartphone is important to disable panes in desktop mode return (typeof android !== 'undefined' && android && android.addPane && window.isSmartphone()); } if(typeof android !== 'undefined' && android && android.getFileRequestUrlPrefix) { window.requestFile = function(callback) { do { var funcName = "onFileSelected" + parseInt(Math.random()*0xFFFF).toString(16); } while(window[funcName] !== undefined) window[funcName] = function(filename, content) { callback(decodeURIComponent(filename), atob(content)); }; var script = document.createElement('script'); script.src = android.getFileRequestUrlPrefix() + funcName; (document.body || document.head || document.documentElement).appendChild(script); }; }