69 lines
1.7 KiB
C#
69 lines
1.7 KiB
C#
using System.Xml.Linq;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace Subsurface.Items.Components
|
|
{
|
|
class RegExFindComponent : ItemComponent
|
|
{
|
|
private string output;
|
|
|
|
private string expression;
|
|
|
|
private string receivedSignal;
|
|
|
|
[InGameEditable, HasDefaultValue("1", true)]
|
|
public string Output
|
|
{
|
|
get { return output; }
|
|
set { output = value; }
|
|
}
|
|
|
|
[InGameEditable, HasDefaultValue("", true)]
|
|
public string Expression
|
|
{
|
|
get { return expression; }
|
|
set { expression = value; }
|
|
}
|
|
|
|
public RegExFindComponent(Item item, XElement element)
|
|
: base(item, element)
|
|
{
|
|
isActive = true;
|
|
}
|
|
|
|
public override void Update(float deltaTime, Camera cam)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(expression)) return;
|
|
|
|
bool success = false;
|
|
try
|
|
{
|
|
Regex regex = new Regex(@expression);
|
|
Match match = regex.Match(receivedSignal);
|
|
success = match.Success;
|
|
}
|
|
catch
|
|
{
|
|
item.SendSignal("ERROR", "signal_out");
|
|
return;
|
|
}
|
|
|
|
item.SendSignal(success ? output : "0", "signal_out");
|
|
}
|
|
|
|
public override void ReceiveSignal(string signal, Connection connection, Item sender, float power = 0.0f)
|
|
{
|
|
switch (connection.Name)
|
|
{
|
|
case "signal_in":
|
|
receivedSignal = signal;
|
|
|
|
break;
|
|
case "set_output":
|
|
output = signal;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|