5b3d8c87d1
Debug Build and Test / Build against Latest Dalamud (push) Has been cancelled
Debug Build and Test / Build against Staging Dalamud (push) Has been cancelled
Release Build and Publish / Release Build against Staging Dalamud and deploy to MyDalamudPlugins (release) Has been cancelled
Co-authored-by: Cursor <cursoragent@cursor.com>
107 lines
3.7 KiB
C#
107 lines
3.7 KiB
C#
namespace CBT.FlyText.Configuration;
|
|
|
|
using System.Numerics;
|
|
using CBT.Types;
|
|
|
|
/// <summary>
|
|
/// FlyText configuration options.
|
|
/// </summary>
|
|
public class FlyTextConfiguration
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="FlyTextConfiguration"/> class.
|
|
/// </summary>
|
|
public FlyTextConfiguration()
|
|
{
|
|
this.Enabled = true;
|
|
this.PreviewEnabled = false;
|
|
this.Positionals = true;
|
|
this.Offset = Vector2.Zero;
|
|
this.Font = new FlyTextFontConfiguration();
|
|
this.Animation = new FlyTextAnimationConfiguration();
|
|
this.Icon = new FlyTextIconConfiguration();
|
|
this.Message = new FlyTextMessageConfiguration();
|
|
this.Filter = new FlyTextFilterConfiguration();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="FlyTextConfiguration"/> class.
|
|
/// </summary>
|
|
/// <param name="kind">FlyTextKind to read configuration for.</param>
|
|
public FlyTextConfiguration(FlyTextKind kind)
|
|
{
|
|
FlyTextConfiguration config = Service.Configuration.FlyTextKinds[kind];
|
|
|
|
this.Enabled = config.Enabled;
|
|
this.PreviewEnabled = config.PreviewEnabled;
|
|
this.Positionals = config.Positionals;
|
|
this.Offset = config.Offset;
|
|
this.Font = new FlyTextFontConfiguration(config.Font);
|
|
this.Animation = new FlyTextAnimationConfiguration(config.Animation);
|
|
this.Icon = new FlyTextIconConfiguration(config.Icon);
|
|
this.Message = new FlyTextMessageConfiguration(config.Message);
|
|
this.Filter = new FlyTextFilterConfiguration(config.Filter);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="FlyTextConfiguration"/> class.
|
|
/// </summary>
|
|
/// <param name="toCopy">Values to copy.</param>
|
|
public FlyTextConfiguration(FlyTextConfiguration toCopy)
|
|
{
|
|
this.Enabled = toCopy.Enabled;
|
|
this.PreviewEnabled = toCopy.PreviewEnabled;
|
|
this.Positionals = toCopy.Positionals;
|
|
this.Offset = toCopy.Offset;
|
|
this.Font = new FlyTextFontConfiguration(toCopy.Font);
|
|
this.Animation = new FlyTextAnimationConfiguration(toCopy.Animation);
|
|
this.Icon = new FlyTextIconConfiguration(toCopy.Icon);
|
|
this.Message = new FlyTextMessageConfiguration(toCopy.Message);
|
|
this.Filter = new FlyTextFilterConfiguration(toCopy.Filter);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether or not the kind is enabled.
|
|
/// </summary>
|
|
public bool Enabled { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether or not the preview is enabled.
|
|
/// </summary>
|
|
public bool PreviewEnabled { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether or positional data is enabled.
|
|
/// </summary>
|
|
public bool Positionals { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the persistent offset from the configuration value.
|
|
/// </summary>
|
|
public Vector2 Offset { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the font configuration.
|
|
/// </summary>
|
|
public FlyTextFontConfiguration Font { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the animation configuration.
|
|
/// </summary>
|
|
public FlyTextAnimationConfiguration Animation { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the icon configuration.
|
|
/// </summary>
|
|
public FlyTextIconConfiguration Icon { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the message configuration.
|
|
/// </summary>
|
|
public FlyTextMessageConfiguration Message { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the filter configuration.
|
|
/// </summary>
|
|
public FlyTextFilterConfiguration Filter { get; set; }
|
|
} |