* Add shuttle interior drawing back Just do it per-tile she'll be right, at least it's done with 1 draw call. * Revamp shuttle console * Bunch of cleanup work * Lables sortito * dok * Pixel alignment and colours * Fix a bunch of drawing bugs * Shuttle map drawing * Drawing fixes * Map parallax working finally * weh * Commit all my stuff * mic * deez * Update everything * Xamlify everything * uh * Rudimentary blocker range * My enemies have succeeded * Bunch of changes to FTL * Heaps of cleanup * Fix FTL bugs * FTL * weewoo * FTL fallback * wew * weh * Basic FTL working * FTL working * FTL destination fixes * a * Exclusion zones * Fix drawing / FTL * Beacons working * Coordinates drawing * Fix unknown map names * Dorks beginning * State + docking cleanup start * Basic dock drawing * Bunch of drawing fixes * Batching / color fixes * Cleanup and beacons support * weh * weh * Begin pings * First draft at map objects * Map fixup * Faster drawing * Fix perf + FTL * Cached drawing * Fix drawing * Best I got * strips * Back to lists but with caching * Final optimisation * Fix dock bounds * Docking work * stinker * kobolds * Btns * Docking vis working * Fix docking pre-vis * canasses * Helldivers 2 * a * Array life * Fix * Fix TODOs * liltenhead feature club * dorking * Merge artifacts * Last-minute touchup
67 lines
3.6 KiB
XML
67 lines
3.6 KiB
XML
<controls:BoxContainer Visible="False"
|
|
HorizontalExpand="True"
|
|
xmlns:controls="https://spacestation14.io"
|
|
xmlns:controls1="clr-namespace:Content.Client.UserInterface.Controls"
|
|
xmlns:ui="clr-namespace:Content.Client.Shuttles.UI">
|
|
<ui:ShuttleMapControl Name="MapRadar"
|
|
MouseFilter="Stop"
|
|
Margin="5 4 10 5"
|
|
HorizontalExpand="True"
|
|
VerticalExpand="True"
|
|
VerticalAlignment="Stretch"/>
|
|
<controls:BoxContainer Name="RightDisplayMap"
|
|
VerticalAlignment="Top"
|
|
HorizontalAlignment="Right"
|
|
MinWidth="256"
|
|
MaxWidth="256"
|
|
Margin="5 0 5 5"
|
|
Orientation="Vertical"
|
|
VerticalExpand="True">
|
|
<controls1:StripeBack
|
|
MinSize="48 48">
|
|
<controls:Label Name="MapDisplayLabel" Text="{controls:Loc 'shuttle-console-ftl-label'}"
|
|
VerticalExpand="True"
|
|
HorizontalAlignment="Center"/>
|
|
</controls1:StripeBack>
|
|
<controls:Label Name="MapFTLState"
|
|
Text="{controls:Loc 'shuttle-console-ftl-state-Available'}"
|
|
VerticalAlignment="Stretch"
|
|
HorizontalAlignment="Center"/>
|
|
<controls:ProgressBar Name="FTLBar" HorizontalExpand="True"
|
|
Margin="5"
|
|
MinValue="0.0"
|
|
MaxValue="1.0"
|
|
Value="1.0"/>
|
|
<controls:BoxContainer Orientation="Vertical">
|
|
<!-- Normal buttons -->
|
|
<controls1:StripeBack MinSize="48 48">
|
|
<controls:Label Name="SettingsLabel" Text="{controls:Loc 'shuttle-console-map-settings'}"
|
|
HorizontalAlignment="Center"/>
|
|
</controls1:StripeBack>
|
|
<controls:Button Name="MapBeaconsButton"
|
|
Text="{controls:Loc 'shuttle-console-map-beacons'}"
|
|
TextAlign="Center"
|
|
ToggleMode="True"
|
|
Pressed="True"/>
|
|
<controls:Button Name="MapFTLButton"
|
|
ToggleMode="True"
|
|
Text="{controls:Loc 'shuttle-console-ftl-button'}"
|
|
TextAlign="Center"/>
|
|
<controls:Button Name="MapRebuildButton"
|
|
Text="{controls:Loc 'shuttle-console-map-rebuild'}"
|
|
TextAlign="Center"/>
|
|
<!-- Map objects -->
|
|
<controls1:StripeBack MinSize="48 48">
|
|
<controls:Label Name="HyperspaceLabel" Text="{controls:Loc 'shuttle-console-map-objects'}"
|
|
HorizontalAlignment="Center"/>
|
|
</controls1:StripeBack>
|
|
<controls:ScrollContainer VerticalExpand="True" HScrollEnabled="False"
|
|
ReturnMeasure="True">
|
|
<controls:BoxContainer Name="HyperspaceDestinations"
|
|
Orientation="Vertical"
|
|
VerticalExpand="True"/>
|
|
</controls:ScrollContainer>
|
|
</controls:BoxContainer>
|
|
</controls:BoxContainer>
|
|
</controls:BoxContainer>
|