Files
Aurora.3/nano/templates/layout_default.tmpl
JohnWildkins 616776f886 Modular PDAs: The End of an Era (#10319)
PDAs are dead, long live PDAs. All trace of old PDAs has been scoured from the codebase, and in its place are modular computer PDAs that are feature-equivalent. Essentially every PDA function except the Syndicate detonation feature and Notepad has been ported over, and battery life for handheld computers has been boosted alongside the addition of charging cables to make things easier.
2020-11-01 21:09:50 +02:00

74 lines
2.9 KiB
Cheetah

{{if data._PC}}
<div style="float: left">
<div class='item'>
<table><tr>
{{if data._PC.batteryicon && data._PC.showbatteryicon}}
<td><img src='{{:data._PC.batteryicon}}'>
{{/if}}
{{if data._PC.batterypercent && data._PC.showbatteryicon}}
<td><b>{{:data._PC.batterypercent}}</b>
{{/if}}
{{if data._PC.ntneticon}}
<td><img src='{{:data._PC.ntneticon}}'>
{{/if}}
{{if data._PC.apclinkicon}}
<td><img src='{{:data._PC.apclinkicon}}'>
{{/if}}
{{if data._PC.stationtime}}
<td><b>{{:data._PC.stationtime}}<b>
{{/if}}
{{for data._PC.programheaders}}
<td><img src='{{:value}}'>
{{/for}}
</table>
</div>
</div>
<div style="float: right">
<table><tr>
{{if data._PC.showexitprogram}}
<td>{{:helper.link('Minimize', null, {'PC_minimize' : 1})}}
<td>{{:helper.link('Exit', null, {'PC_exit' : 1})}}
{{/if}}
</table>
</div>
<div style="clear: both">
{{/if}}
<div id='uiTitleWrapper' unselectable="on"><div id='uiStatusIcon' class='icon24 uiStatusGood' unselectable="on"></div><div id='uiTitleText' unselectable="on">{{:config.title}}</div><div id='uiTitleFluff' unselectable="on"></div></div>
<div id='uiMapWrapper' class="hidden" unselectable="on">
<div id='uiMapHeader' unselectable="on">
{{:helper.link('Hide Map', 'close', {'showMap' : 0})}}
<div style="float: right; width: 240px;">
<span style="float: left;">Z Level:&nbsp;</span>
{{for config.mapZLevels :zValue:zIndex}}
{{:helper.link(zValue, 'close', {'mapZLevel' : zValue}, null, config.mapZLevel == zValue ? 'selected' : null)}}
{{/for}}
</div>
<div style="float: right; width: 240px;">
<span style="float: left;">Zoom Level:&nbsp;</span>
<div unselectable="on" class="link zoomLink" data-zoom-level="4">x1.0</div>
<div unselectable="on" class="link zoomLink" data-zoom-level="6">x1.5</div>
<div unselectable="on" class="link zoomLink" data-zoom-level="8">x2.0</div>
<div unselectable="on" class="link zoomLink" data-zoom-level="12">x2.5</div>
</div>
<!-- Add a template with the key "mapHeader" to have it rendered here -->
</div>
<div id='uiMapContainer' unselectable="on">
<div id='uiMap' unselectable="on">
<img id="uiMapImage" src="{{:config.mapName}}-{{:config.mapZLevel}}.png" width="256" height="256" unselectable="on" />
<div id='uiMapContent' unselectable="on">
<!-- Add a template with the key "mapContent" to have it rendered here (on the map) -->
<!-- Having a "mapContent" template enables the map functionality -->
</div>
</div>
<div id="uiMapTooltip"></div>
</div>
<div id='uiMapFooter' unselectable="on">
<!-- Add a template with the key "mapFooter" to have it rendered here -->
</div>
</div>
<div id='uiContent' unselectable="on">
<div id='uiLoadingNotice'>Initiating...</div>
</div>