Add merge block support to sequencer.

This commit is contained in:
Anna Rose 2025-02-21 16:52:01 -05:00
parent 2704207dc2
commit d7018f2c97
3 changed files with 67 additions and 0 deletions

View File

@ -1,4 +1,5 @@
using Sandbox.ModAPI.Ingame;
using SpaceEngineers.Game.ModAPI.Ingame;
using System;
using System.Collections.Generic;
using VRage.Game.ModAPI.Ingame.Utilities;
@ -169,6 +170,26 @@ namespace IngameScript
Ini.Get(key, "velocity").ToSingle(2f)
);
}
else if (block is IMyShipMergeBlock)
{
MergeAction action;
string config = Ini.Get(key, "action").ToString("merge").ToLower();
switch (config)
{
case "merge":
action = MergeAction.Merge;
break;
case "unmerge":
action = MergeAction.Unmerge;
break;
default:
Console.Print($"Unknown action '{config}. Defaulting to merge.");
action = MergeAction.Merge;
break;
}
return new BlockActionMerge(block as IMyShipMergeBlock, action);
}
// TODO: there are several block types added for other scripts that we should support here.
Console.Print($"Can't add unsupported block '{block.CustomName}'");
return null;

View File

@ -11,6 +11,7 @@
<Compile Include="$(MSBuildThisFileDirectory)BlockActionConnector.cs" />
<Compile Include="$(MSBuildThisFileDirectory)BlockActionDoor.cs" />
<Compile Include="$(MSBuildThisFileDirectory)BlockActionGasTank.cs" />
<Compile Include="$(MSBuildThisFileDirectory)BlockActionMerge.cs" />
<Compile Include="$(MSBuildThisFileDirectory)BlockActionPiston.cs" />
<Compile Include="$(MSBuildThisFileDirectory)BlockActionRotor.cs" />
<Compile Include="$(MSBuildThisFileDirectory)BlockAction.cs" />

View File

@ -0,0 +1,45 @@
using System.Collections.Generic;
using Sandbox.ModAPI.Ingame;
using SpaceEngineers.Game.ModAPI.Ingame;
namespace IngameScript
{
partial class Program
{
public enum MergeAction
{
Merge,
Unmerge,
}
public class BlockActionMerge : BlockAction
{
private IMyShipMergeBlock _connector;
private MergeAction _action;
public BlockActionMerge(
IMyShipMergeBlock connector,
MergeAction action
)
{
_connector = connector;
_action = action;
}
protected override IEnumerator<bool> onRun()
{
switch (_action)
{
case MergeAction.Merge:
_connector.Enabled = true;
while (!_connector.IsConnected) yield return true;
break;
case MergeAction.Unmerge:
_connector.Enabled = false;
while (_connector.IsConnected) yield return true;
break;
}
}
}
}
}