StyleCop: everything else

This commit is contained in:
Raymond Lynch 2021-05-30 07:10:00 -04:00
parent f64c9b8321
commit 595fd3f1e4
134 changed files with 16346 additions and 6202 deletions

View file

@ -1,51 +1,71 @@
using System;
using System.Collections.Generic;
using System.IO;
using System;
namespace Dalamud.Game.Text.SeStringHandling.Payloads {
namespace Dalamud.Game.Text.SeStringHandling.Payloads
{
/// <summary>
/// SeString payload representing a bitmap icon from fontIcon
/// SeString payload representing a bitmap icon from fontIcon.
/// </summary>
public class IconPayload : Payload {
public class IconPayload : Payload
{
/// <summary>
/// Initializes a new instance of the <see cref="IconPayload"/> class.
/// Create a Icon payload for the specified icon.
/// </summary>
/// <param name="icon">The Icon.</param>
public IconPayload(BitmapFontIcon icon)
{
this.Icon = icon;
}
/// <summary>
/// Index of the icon
/// Initializes a new instance of the <see cref="IconPayload"/> class.
/// Create a Icon payload for the specified icon.
/// </summary>
/// <param name="iconIndex">Index of the icon.</param>
[Obsolete("IconPayload(uint) is deprecated, please use IconPayload(BitmapFontIcon).")]
public IconPayload(uint iconIndex)
: this((BitmapFontIcon)iconIndex)
{
}
/// <summary>
/// Initializes a new instance of the <see cref="IconPayload"/> class.
/// Create a Icon payload for the specified icon.
/// </summary>
internal IconPayload()
{
}
/// <inheritdoc/>
public override PayloadType Type => PayloadType.Icon;
/// <summary>
/// Gets the index of the icon.
/// </summary>
[Obsolete("Use IconPayload.Icon")]
public uint IconIndex => (uint) Icon;
public uint IconIndex => (uint)this.Icon;
/// <summary>
/// Icon the payload represents.
/// Gets or sets the icon the payload represents.
/// </summary>
public BitmapFontIcon Icon { get; set; } = BitmapFontIcon.None;
internal IconPayload() { }
/// <summary>
/// Create a Icon payload for the specified icon.
/// </summary>
/// <param name="iconIndex">Index of the icon</param>
[Obsolete("IconPayload(uint) is deprecated, please use IconPayload(BitmapFontIcon).")]
public IconPayload(uint iconIndex) : this((BitmapFontIcon) iconIndex) { }
/// <summary>
/// Create a Icon payload for the specified icon.
/// </summary>
/// <param name="icon">The Icon</param>
public IconPayload(BitmapFontIcon icon) {
Icon = icon;
/// <inheritdoc />
public override string ToString()
{
return $"{this.Type} - {this.Icon}";
}
/// <inheritdoc />
public override PayloadType Type => PayloadType.Icon;
/// <inheritdoc />
protected override byte[] EncodeImpl() {
var indexBytes = MakeInteger((uint) this.Icon);
protected override byte[] EncodeImpl()
{
var indexBytes = MakeInteger((uint)this.Icon);
var chunkLen = indexBytes.Length + 1;
var bytes = new List<byte>(new byte[] {
START_BYTE, (byte)SeStringChunkType.Icon, (byte)chunkLen
var bytes = new List<byte>(new byte[]
{
START_BYTE, (byte)SeStringChunkType.Icon, (byte)chunkLen,
});
bytes.AddRange(indexBytes);
bytes.Add(END_BYTE);
@ -53,14 +73,9 @@ namespace Dalamud.Game.Text.SeStringHandling.Payloads {
}
/// <inheritdoc />
protected override void DecodeImpl(BinaryReader reader, long endOfStream) {
Icon = (BitmapFontIcon) GetInteger(reader);
protected override void DecodeImpl(BinaryReader reader, long endOfStream)
{
this.Icon = (BitmapFontIcon)GetInteger(reader);
}
/// <inheritdoc />
public override string ToString() {
return $"{Type} - {Icon}";
}
}
}