Files
GS13NG/tgui/src/interfaces/launchpad_remote.ract
CitadelStationBot 6a2916a171 [MIRROR] Bluespace Launchpads (#879)
* Bluespace Launchpads

* Delete runtimestation.dmm.rej

* Delete tgstation.dme.rej

* Delete tgui.js.rej

* Update tgui.js
2017-05-18 07:12:13 -05:00

50 lines
2.0 KiB
Plaintext

<ui-display title='Controls'>
{{#if data.has_pad}}
{{#if data.pad_closed}}
<ui-section label='Warning'>
<span>Launchpad closed.</span>
</ui-section>
{{else}}
<ui-section label="Launchpad">
<span><b>{{data.pad_name}}</b></span><br>
<ui-button icon="pencil" action='rename'>Rename</ui-button>
<ui-button icon="remove" style="danger" action='remove'>Remove</ui-button>
</ui-section>
<ui-section label='Set Target'>
<table>
<tr>
<td style="width:25px!important"><ui-button action='up-left'>↖</ui-button></td>
<td style="width:25px!important; text-align:center"><ui-button action='up'>↑</ui-button></td>
<td style="width:25px!important; text-align:right"><ui-button action='up-right'>↗</ui-button></td>
</tr>
<tr>
<td style="width:25px!important"><ui-button action='left' style="width:35px!important">←</ui-button></td>
<td style="width:25px!important; text-align:center"><ui-button action='reset'>R</ui-button></td>
<td style="width:25px!important; text-align:right"><ui-button action='right'>→</ui-button></td>
</tr>
<tr>
<td style="width:25px!important"><ui-button action='down-left'>↙</ui-button></td>
<td style="width:25px!important; text-align:center"><ui-button action='down'>↓</ui-button></td>
<td style="width:25px!important; text-align:right"><ui-button action='down-right'>↘</ui-button></td>
</tr>
</table>
</ui-section>
<ui-section label='Current Target'>
<span>{{data.abs_y}} {{data.north_south}}</span><br>
<span>{{data.abs_x}} {{data.east_west}}</span>
</ui-section>
<ui-section label='Activate'>
<ui-button action='launch' tooltip='Teleport everything on the pad to the target.' tooltip-side='down'>Launch</ui-button>
<ui-button action='pull' tooltip='Teleport everything from the target to the pad.' tooltip-side='down'>Pull</ui-button>
</ui-section>
{{/if}}
{{else}}
<ui-section label='Warning'>
<span>No launchpad found. Link the remote to a launchpad.</span>
</ui-section>
{{/if}}
</ui-display>