* lewd * A * Realtime * Sleepy dork * Draw radar position * Accurate infiltrator * experiments * Better drawing * Labels * I need aan adult * Cleanup * Show toggles * display I guess * A * fix * fix * cleanupsies * Bit more polish * Make sure mass scanners actually work * Remove dummy state * fren * opposite * aghost crash * comment * What's in a name * woops * Show docking ports * Dock highlighting * Drawing dock * Shitty docks * Lots of docking drawing * Autodock working * dork * More graceful shutdown * zoomies * Lines and distance change * revert * Good enough * cleanup * Fix default range * Dock UI and loc update * Update on undock * Loc fixes
82 lines
3.7 KiB
XML
82 lines
3.7 KiB
XML
<userInterface:FancyWindow xmlns="https://spacestation14.io"
|
|
xmlns:userInterface="clr-namespace:Content.Client.UserInterface"
|
|
xmlns:ui="clr-namespace:Content.Client.Shuttles.UI"
|
|
Title="{Loc 'shuttle-console-window-title'}">
|
|
<GridContainer Columns="3"
|
|
HorizontalAlignment="Stretch">
|
|
<BoxContainer Name="LeftDisplay"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Left"
|
|
MinWidth="256"
|
|
Align="Center"
|
|
Orientation="Vertical">
|
|
<PanelContainer StyleClasses="BorderedWindowPanel">
|
|
<BoxContainer Name="DockPorts"
|
|
Orientation="Vertical">
|
|
</BoxContainer>
|
|
</PanelContainer>
|
|
</BoxContainer>
|
|
<PanelContainer>
|
|
<ui:RadarControl Name="RadarScreen"
|
|
MouseFilter="Stop"/>
|
|
<ui:DockingControl Name="DockingScreen"
|
|
Visible="False"
|
|
MouseFilter="Stop"/>
|
|
</PanelContainer>
|
|
<BoxContainer Name="RightDisplay"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Left"
|
|
MinWidth="256"
|
|
Align="Center"
|
|
Orientation="Vertical">
|
|
<PanelContainer Name="ReadonlyDisplay"
|
|
StyleClasses="BorderedWindowPanel">
|
|
<GridContainer Columns="2"
|
|
HorizontalAlignment="Stretch"
|
|
VerticalAlignment="Top">
|
|
<Label Text="{Loc 'shuttle-console-max-radar'}"/>
|
|
<Label Name="MaxRadarRange"
|
|
Text="0.0"
|
|
HorizontalAlignment="Right"/>
|
|
<Label Text="{Loc 'shuttle-console-radar'}"/>
|
|
<Label Name="RadarRange"
|
|
Text="0.0"
|
|
HorizontalAlignment="Right"/>
|
|
<Label Text="{Loc 'shuttle-console-position'}"/>
|
|
<Label Name="GridPosition"
|
|
Text="0.0, 0.0"
|
|
Align="Right"/>
|
|
<Label Text="{Loc 'shuttle-console-orientation'}"/>
|
|
<Label Name="GridOrientation"
|
|
Text="0.0"
|
|
Align="Right"/>
|
|
<Label Text="{Loc 'shuttle-console-linear-velocity'}"/>
|
|
<Label Name="GridLinearVelocity"
|
|
Text="0.0, 0.0"
|
|
Align="Right"/>
|
|
<Label Text="{Loc 'shuttle-console-angular-velocity'}"/>
|
|
<Label Name="GridAngularVelocity"
|
|
Text="0.0"
|
|
Align="Right"/>
|
|
</GridContainer>
|
|
</PanelContainer>
|
|
<Button Name="ShuttleModeDisplay"
|
|
Text="{Loc 'shuttle-console-strafing'}"
|
|
TextAlign="Center"
|
|
ToggleMode="True"/>
|
|
<Button Name="IFFToggle"
|
|
Text="{Loc 'shuttle-console-iff-toggle'}"
|
|
TextAlign="Center"
|
|
ToggleMode="True"/>
|
|
<Button Name="DockToggle"
|
|
Text="{Loc 'shuttle-console-dock-toggle'}"
|
|
TextAlign="Center"
|
|
ToggleMode="True"/>
|
|
<Button Name="UndockButton"
|
|
Text="{Loc 'shuttle-console-undock'}"
|
|
TextAlign="Center"
|
|
Disabled="True"/>
|
|
</BoxContainer>
|
|
</GridContainer>
|
|
</userInterface:FancyWindow>
|