添加对 Core 的直接引用

This commit is contained in:
OLDREDSTONE
2025-03-25 15:49:57 +08:00
parent 24907abedb
commit 06c19bf10a
296 changed files with 24961 additions and 2 deletions
+104
View File
@@ -0,0 +1,104 @@
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using RhythmBase.Components;
using RhythmBase.Exceptions;
using RhythmBase.Extensions;
using RhythmBase.Settings;
namespace RhythmBase.Events
{
/// <summary>
/// Represents a custom row event in the rhythm base.
/// </summary>
public class CustomRowEvent : BaseRowAction
{
/// <summary>
/// Gets the type of the event.
/// </summary>
public override EventType Type { get; }
/// <summary>
/// Gets the actual type of the event from the data.
/// </summary>
[JsonIgnore]
public string ActureType => Data["Type".ToLowerCamelCase()]?.ToString() ?? "";
/// <summary>
/// Gets the tab associated with the event.
/// </summary>
public override Tabs Tab { get; }
/// <summary>
/// Initializes a new instance of the <see cref="CustomRowEvent"/> class.
/// </summary>
public CustomRowEvent()
{
Data = [];
Type = EventType.CustomRowEvent;
Tab = Tabs.Rows;
}
/// <summary>
/// Initializes a new instance of the <see cref="CustomRowEvent"/> class with the specified data.
/// </summary>
/// <param name="data">The data for the event.</param>
public CustomRowEvent(JObject data)
{
Type = EventType.CustomRowEvent;
Tab = Tabs.Rows;
Data = data;
Beat = new RDBeat(Data["bar"]?.ToObject<uint>() ?? 1, Data["beat"]?.ToObject<float>() ?? 1f);
Tag = Data["tag"]?.ToObject<string>() ?? "";
Condition = Data["condition"] == null
? null
: Condition.Load(Data["condition"]?.ToObject<string>() ?? "");
Active = Data["active"]?.ToObject<bool>() ?? true;
}
/// <summary>
/// Returns a string that represents the current object.
/// </summary>
/// <returns>A string that represents the current object.</returns>
public override string ToString() => $"{Beat} *{ActureType}";
/// <summary>
/// Tries to convert the current event to a base event.
/// </summary>
/// <param name="value">The base event to convert to.</param>
/// <param name="type">The type of the event.</param>
/// <returns>true if the conversion was successful; otherwise, false.</returns>
public virtual bool TryConvert(ref BaseEvent value, ref EventType? type) => TryConvert(ref value, ref type, new LevelReadOrWriteSettings());
/// <summary>
/// Tries to convert the current event to a base event with the specified settings.
/// </summary>
/// <param name="value">The base event to convert to.</param>
/// <param name="type">The type of the event.</param>
/// <param name="settings">The settings for the conversion.</param>
/// <returns>true if the conversion was successful; otherwise, false.</returns>
public virtual bool TryConvert(ref BaseEvent value, ref EventType? type, LevelReadOrWriteSettings settings) => TryConvert(ref value, ref type, settings);
/// <summary>
/// Implicitly converts a <see cref="CustomRowEvent"/> to a <see cref="CustomEvent"/>.
/// </summary>
/// <param name="e">The custom row event to convert.</param>
public static implicit operator CustomEvent(CustomRowEvent e) => new(e.Data);
/// <summary>
/// Explicitly converts a <see cref="CustomEvent"/> to a <see cref="CustomRowEvent"/>.
/// </summary>
/// <param name="e">The custom event to convert.</param>
/// <returns>The converted custom row event.</returns>
/// <exception cref="RhythmBaseException">Thrown when the row field is missing from the data.</exception>
public static explicit operator CustomRowEvent(CustomEvent e)
{
return e.Data["row"] != null
? new CustomRowEvent(e.Data)
: throw new RhythmBaseException("The row field is missing from the field contained in this object.");
}
/// <summary>
/// Gets or sets the data for the event.
/// </summary>
public JObject Data;
}
}