1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 05:47:25 +08:00
osu-lazer/osu.Game/Online/Chat/Message.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

101 lines
2.9 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
2022-06-17 15:37:17 +08:00
#nullable disable
2016-08-31 18:49:34 +08:00
using System;
using System.Collections.Generic;
using System.Threading;
2016-08-31 18:49:34 +08:00
using Newtonsoft.Json;
using osu.Game.Online.API.Requests.Responses;
2018-04-13 17:19:50 +08:00
2016-08-31 18:49:34 +08:00
namespace osu.Game.Online.Chat
{
public class Message : IComparable<Message>, IEquatable<Message>
2016-08-31 18:49:34 +08:00
{
[JsonProperty(@"message_id")]
2017-08-21 16:43:26 +08:00
public readonly long? Id;
2018-04-13 17:19:50 +08:00
2018-09-28 18:33:19 +08:00
[JsonProperty(@"channel_id")]
public long ChannelId;
2018-04-13 17:19:50 +08:00
[JsonProperty(@"is_action")]
public bool IsAction;
2018-04-13 17:19:50 +08:00
2016-08-31 18:49:34 +08:00
[JsonProperty(@"timestamp")]
public DateTimeOffset Timestamp;
2018-04-13 17:19:50 +08:00
2016-08-31 18:49:34 +08:00
[JsonProperty(@"content")]
public string Content;
2018-04-13 17:19:50 +08:00
2016-08-31 18:49:34 +08:00
[JsonProperty(@"sender")]
public APIUser Sender;
2018-04-13 17:19:50 +08:00
[JsonProperty(@"sender_id")]
public int SenderId
{
get => Sender?.Id ?? 0;
set => Sender = new APIUser { Id = value };
}
/// <summary>
/// A unique identifier for this message. Sent to and from osu!web to use for deduplication.
/// </summary>
[JsonProperty(@"uuid")]
public string Uuid { get; set; } = string.Empty;
2016-08-31 18:49:34 +08:00
[JsonConstructor]
public Message()
{
}
2018-04-13 17:19:50 +08:00
2018-01-09 23:11:45 +08:00
/// <summary>
/// The text that is displayed in chat.
/// </summary>
public string DisplayContent { get; set; }
2018-04-13 17:19:50 +08:00
2018-01-09 23:11:45 +08:00
/// <summary>
/// The links found in this message.
/// </summary>
2018-01-17 18:44:15 +08:00
/// <remarks>The <see cref="Link"/>s' <see cref="Link.Index"/> and <see cref="Link.Length"/>s are according to <see cref="DisplayContent"/></remarks>
public List<Link> Links;
2018-04-13 17:19:50 +08:00
private static long constructionOrderStatic;
private readonly long constructionOrder;
2017-08-21 16:43:26 +08:00
public Message(long? id)
{
Id = id;
constructionOrder = Interlocked.Increment(ref constructionOrderStatic);
}
2018-04-13 17:19:50 +08:00
2017-08-21 16:43:26 +08:00
public int CompareTo(Message other)
{
if (Id.HasValue && other.Id.HasValue)
return Id.Value.CompareTo(other.Id.Value);
2018-04-13 17:19:50 +08:00
int timestampComparison = Timestamp.CompareTo(other.Timestamp);
if (timestampComparison != 0)
return timestampComparison;
// Timestamp might not be accurate enough to make a stable sorting decision.
return constructionOrder.CompareTo(other.constructionOrder);
2017-08-21 16:43:26 +08:00
}
2018-04-13 17:19:50 +08:00
public virtual bool Equals(Message other)
{
if (ReferenceEquals(null, other)) return false;
if (ReferenceEquals(this, other)) return true;
return Id.HasValue && Id == other.Id;
}
2018-04-13 17:19:50 +08:00
// ReSharper disable once ImpureMethodCallOnReadonlyValueField
2017-05-18 05:27:20 +08:00
public override int GetHashCode() => Id.GetHashCode();
2022-11-30 14:36:22 +08:00
public override string ToString() => $"({(Id?.ToString() ?? "null")}) {Timestamp} {Sender}: {Content}";
2016-08-31 18:49:34 +08:00
}
}