More bugfixes, and add failover code to InfoDisplays.
This commit is contained in:
parent
a786ee2720
commit
99ad625545
|
@ -24,4 +24,6 @@
|
||||||
<AdditionalFiles Include="thumb.png" />
|
<AdditionalFiles Include="thumb.png" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="..\Mixins\Console\Console.projitems" Label="shared" />
|
<Import Project="..\Mixins\Console\Console.projitems" Label="shared" />
|
||||||
|
<Import Project="..\Mixins\FailoverManager\FailoverManager.projitems" Label="shared" />
|
||||||
|
<Import Project="..\Mixins\ScaledGridDisplay\ScaledGridDisplay.projitems" Label="shared" />
|
||||||
</Project>
|
</Project>
|
|
@ -9,12 +9,14 @@ namespace IngameScript
|
||||||
public IConsole Console { get; private set; }
|
public IConsole Console { get; private set; }
|
||||||
public MyIni Ini { get; private set; }
|
public MyIni Ini { get; private set; }
|
||||||
|
|
||||||
|
private FailoverManager _failover;
|
||||||
private ResourceReport _oreReport = null;
|
private ResourceReport _oreReport = null;
|
||||||
|
|
||||||
public Program()
|
public Program()
|
||||||
{
|
{
|
||||||
Ini = new MyIni();
|
Ini = new MyIni();
|
||||||
Console = new MainConsole(this, "Info Displays");
|
Console = new MainConsole(this, "Info Displays");
|
||||||
|
_failover = new FailoverManager(this, Console, Ini);
|
||||||
|
|
||||||
// find displays that are configured to show info, create the necessary objects.
|
// find displays that are configured to show info, create the necessary objects.
|
||||||
// TODO: currently we only support one display per report, and we just use the first one
|
// TODO: currently we only support one display per report, and we just use the first one
|
||||||
|
@ -67,6 +69,7 @@ namespace IngameScript
|
||||||
public void Main(string argument, UpdateType updateSource)
|
public void Main(string argument, UpdateType updateSource)
|
||||||
{
|
{
|
||||||
Console.UpdateTickCount();
|
Console.UpdateTickCount();
|
||||||
|
if (_failover.ActiveCheck() == FailoverState.Standby) return;
|
||||||
|
|
||||||
if (_oreReport != null)
|
if (_oreReport != null)
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
using Sandbox.ModAPI.Ingame;
|
using Sandbox.ModAPI.Ingame;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using VRage.Game.GUI.TextPanel;
|
||||||
|
using VRageMath;
|
||||||
|
|
||||||
namespace IngameScript
|
namespace IngameScript
|
||||||
{
|
{
|
||||||
|
@ -21,8 +23,11 @@ namespace IngameScript
|
||||||
private int _columns;
|
private int _columns;
|
||||||
private float _columnWidth;
|
private float _columnWidth;
|
||||||
|
|
||||||
public ScaledGridDisplay(IMyTextSurface surface, int rows, int columns)
|
private IConsole _console;
|
||||||
|
|
||||||
|
public ScaledGridDisplay(IMyTextSurface surface, int rows, int columns, IConsole console)
|
||||||
{
|
{
|
||||||
|
_console = new PrefixedConsole(console, "ScaledGridDisplay");
|
||||||
// Setup draw surface
|
// Setup draw surface
|
||||||
_surface = surface;
|
_surface = surface;
|
||||||
_surface.ScriptBackgroundColor = new Color(0, 0, 0, 255);
|
_surface.ScriptBackgroundColor = new Color(0, 0, 0, 255);
|
||||||
|
@ -39,8 +44,8 @@ namespace IngameScript
|
||||||
// Calculate grid geometry
|
// Calculate grid geometry
|
||||||
_rows = rows;
|
_rows = rows;
|
||||||
_columns = columns;
|
_columns = columns;
|
||||||
_topPadding = (_viewport.Size.Y / rows) * 0.3;
|
_topPadding = _viewport.Size.Y / rows * 0.3f;
|
||||||
_rowHeight = (_viewport.Size.Y - topPadding) / rows;
|
_rowHeight = (_viewport.Size.Y - _topPadding) / rows;
|
||||||
_columnWidth = (_viewport.Size.X - LeftPadding) / columns;
|
_columnWidth = (_viewport.Size.X - LeftPadding) / columns;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,13 +62,13 @@ namespace IngameScript
|
||||||
switch (row)
|
switch (row)
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
sprite.Scale = _scale * 1.2f;
|
sprite.RotationOrScale = _scale * 1.2f;
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
sprite.Scale = _scale * 1.1f;
|
sprite.RotationOrScale = _scale * 1.1f;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
sprite.Scale = _scale;
|
sprite.RotationOrScale = _scale;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -81,7 +86,7 @@ namespace IngameScript
|
||||||
public void Draw()
|
public void Draw()
|
||||||
{
|
{
|
||||||
MySpriteDrawFrame frame = _surface.DrawFrame();
|
MySpriteDrawFrame frame = _surface.DrawFrame();
|
||||||
foreach (MySprite sprite in _staticSprites.Values) frame.Add(sprite);
|
foreach (MySprite sprite in _sprites) frame.Add(sprite);
|
||||||
frame.Dispose();
|
frame.Dispose();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user