Add Landing Gear to available sequencer actions.

This commit is contained in:
Anna Rose 2025-02-28 12:47:11 -08:00
parent 484e227f93
commit f2f4ec5395
3 changed files with 73 additions and 0 deletions

View File

@ -189,6 +189,28 @@ namespace IngameScript
}
return new BlockActionMerge(block as IMyShipMergeBlock, action);
}
else if (block is IMyLandingGear)
{
LandingGearAction action;
string config = Ini.Get(key, "action").ToString("unlock").ToLower();
switch (config)
{
case "enable":
action = LandingGearAction.Enable;
break;
case "disable":
action = LandingGearAction.Disable;
break;
case "lock":
action = LandingGearAction.Lock;
break;
case "unlock":
action = LandingGearAction.Unlock;
break;
}
return new BlockActionLandingGear(block as IMyLandingGear, 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}'");

View File

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

View File

@ -0,0 +1,50 @@
using System.Collections.Generic;
using Sandbox.ModAPI.Ingame;
namespace IngameScript
{
partial class Program
{
public enum LandingGearAction
{
Unlock,
Lock,
Disable,
Enable,
}
public class BlockActionLandingGear : BlockAction
{
private IMyLandingGear _gear;
private LandingGearAction _action;
public BlockActionLandingGear(
IMyLandingGear gear,
LandingGearAction action
)
{
_gear = gear;
_action = action;
}
protected override IEnumerator<bool> onRun()
{
switch (_action)
{
case LandingGearAction.Enable:
_gear.Enabled = true;
yield break;
case LandingGearAction.Disable:
_gear.Enabled = false;
yield break;
case LandingGearAction.Lock:
// STUB
break;
case LandingGearAction.Unlock:
// STUB
break;
}
}
}
}
}