1
0
mirror of https://github.com/Raymonf/whack.git synced 2025-02-26 14:11:44 +01:00
2022-09-28 18:39:41 -04:00

57 lines
1.7 KiB
C#

using Newtonsoft.Json;
using UAssetAPI.UnrealTypes;
namespace UAssetAPI.Kismet.Bytecode.Expressions
{
/// <summary>
/// A single Kismet bytecode instruction, corresponding to the <see cref="EExprToken.EX_DynamicCast"/> instruction.
/// </summary>
public class EX_DynamicCast : KismetExpression
{
/// <summary>
/// The token of this expression.
/// </summary>
public override EExprToken Token { get { return EExprToken.EX_DynamicCast; } }
/// <summary>
/// A pointer to the relevant class (UClass*).
/// </summary>
[JsonProperty]
public FPackageIndex ClassPtr;
/// <summary>
/// The target expression.
/// </summary>
[JsonProperty]
public KismetExpression TargetExpression;
public EX_DynamicCast()
{
}
/// <summary>
/// Reads out the expression from a BinaryReader.
/// </summary>
/// <param name="reader">The BinaryReader to read from.</param>
public override void Read(AssetBinaryReader reader)
{
ClassPtr = reader.XFER_OBJECT_POINTER();
TargetExpression = ExpressionSerializer.ReadExpression(reader);
}
/// <summary>
/// Writes the expression to a BinaryWriter.
/// </summary>
/// <param name="writer">The BinaryWriter to write from.</param>
/// <returns>The iCode offset of the data that was written.</returns>
public override int Write(AssetBinaryWriter writer)
{
int offset = 0;
offset += writer.XFER_OBJECT_POINTER(ClassPtr);
offset += ExpressionSerializer.WriteExpression(TargetExpression, writer);
return offset;
}
}
}