* The real movement refactor * ref events * Jetpack cleanup * a * Vehicles partially working * Balance tweaks * Restore some shitcode * AAAAAAAA * Even more prediction * ECS compstate trying to fix this * yml * vehicles kill me * Don't lock keys * a * Fix problem * Fix sounds * shuttle inputs * Shuttle controls * space brakes * Keybinds * Fix merge * Handle shutdown * Fix keys * Bump friction * fix buckle offset * Fix relay and friction * Fix jetpack turning * contexts amirite
101 lines
4.8 KiB
XML
101 lines
4.8 KiB
XML
<userInterface:FancyWindow xmlns="https://spacestation14.io"
|
|
xmlns:userInterface="clr-namespace:Content.Client.UserInterface"
|
|
xmlns:ui="clr-namespace:Content.Client.Shuttles.UI"
|
|
xmlns:ui1="clr-namespace:Content.Client.HUD.UI"
|
|
Title="{Loc 'shuttle-console-window-title'}">
|
|
<GridContainer Columns="3"
|
|
HorizontalAlignment="Stretch"
|
|
Margin="5 5 5 5">
|
|
<BoxContainer Name="LeftDisplay"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Left"
|
|
MinWidth="256"
|
|
Align="Center"
|
|
Orientation="Vertical">
|
|
<BoxContainer Orientation="Vertical">
|
|
<ui1:StripeBack>
|
|
<Label Name="DockingPortsLabel" Text="{Loc 'shuttle-console-dock-label'}" HorizontalAlignment="Center"/>
|
|
</ui1:StripeBack>
|
|
<BoxContainer Name="DockPorts"
|
|
Orientation="Vertical">
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
<BoxContainer Orientation="Vertical">
|
|
<ui1:StripeBack>
|
|
<Label Name="HyperspaceLabel" Text="{Loc 'shuttle-console-hyperspace-label'}" HorizontalAlignment="Center"/>
|
|
</ui1:StripeBack>
|
|
<BoxContainer Name="HyperspaceDestinations"
|
|
Orientation="Vertical">
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
</BoxContainer>
|
|
<PanelContainer>
|
|
<ui:RadarControl Name="RadarScreen"
|
|
MouseFilter="Stop"/>
|
|
<ui:DockingControl Name="DockingScreen"
|
|
Visible="False"
|
|
MouseFilter="Stop"/>
|
|
</PanelContainer>
|
|
<BoxContainer Name="RightDisplay"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Right"
|
|
MinWidth="256"
|
|
Align="Center"
|
|
Orientation="Vertical">
|
|
<ui1:StripeBack>
|
|
<Label Name="DisplayLabel" Text="{Loc 'shuttle-console-display-label'}" HorizontalAlignment="Center"/>
|
|
</ui1:StripeBack>
|
|
<BoxContainer Name="ReadonlyDisplay">
|
|
<GridContainer Columns="2"
|
|
HorizontalAlignment="Stretch"
|
|
VerticalAlignment="Top">
|
|
<Label Text="{Loc 'shuttle-console-ftl-state'}"/>
|
|
<Label Name="FTLState"
|
|
Text="{Loc 'ftl-shuttle-console-available'}"
|
|
HorizontalAlignment="Right"/>
|
|
<Label Text="{Loc 'shuttle-console-ftl-timer'}"/>
|
|
<Label Name="FTLTimer"
|
|
Text="0.0"
|
|
HorizontalAlignment="Right"/>
|
|
<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>
|
|
</BoxContainer>
|
|
<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>
|