32 lines
806 B
C#
32 lines
806 B
C#
using KFCommonUtilityLib;
|
|
using System;
|
|
using System.Xml.Linq;
|
|
|
|
public class FireModeIs : RequirementBase
|
|
{
|
|
protected int index;
|
|
public override bool IsValid(MinEventParams _params)
|
|
{
|
|
bool res = false;
|
|
if (_params.ItemActionData is IModuleContainerFor<ActionModuleFireModeSelector.FireModeData> dataModule)
|
|
{
|
|
res = dataModule.Instance.currentFireMode == index;
|
|
}
|
|
return invert ? !res : res;
|
|
}
|
|
|
|
public override bool ParamsValid(MinEventParams _params)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public override bool ParseXAttribute(XAttribute _attribute)
|
|
{
|
|
if (_attribute.Name == "index")
|
|
{
|
|
index = Math.Max(int.Parse(_attribute.Value), 0);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
} |