2021-11-04 17:13:45 +08:00
|
|
|
// 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.
|
|
|
|
|
2022-01-12 11:39:40 +08:00
|
|
|
using System;
|
2022-01-24 00:49:17 +08:00
|
|
|
using osu.Game.Database;
|
2021-11-04 17:13:45 +08:00
|
|
|
using osu.Game.Users;
|
2022-01-24 00:49:17 +08:00
|
|
|
using osu.Game.Utils;
|
2021-11-04 17:13:45 +08:00
|
|
|
using Realms;
|
|
|
|
|
|
|
|
namespace osu.Game.Models
|
|
|
|
{
|
2022-01-24 00:49:17 +08:00
|
|
|
public class RealmUser : EmbeddedObject, IUser, IEquatable<RealmUser>, IDeepCloneable<RealmUser>
|
2021-11-04 17:13:45 +08:00
|
|
|
{
|
|
|
|
public int OnlineID { get; set; } = 1;
|
|
|
|
|
2022-01-26 14:14:49 +08:00
|
|
|
public string Username { get; set; } = string.Empty;
|
2021-11-05 12:38:48 +08:00
|
|
|
|
2022-07-16 11:30:25 +08:00
|
|
|
[Ignored]
|
2022-07-18 15:16:59 +08:00
|
|
|
public CountryCode CountryCode
|
2022-07-16 11:30:25 +08:00
|
|
|
{
|
2022-07-18 15:24:08 +08:00
|
|
|
get => Enum.TryParse(CountryString, out CountryCode country) ? country : CountryCode.Unknown;
|
2022-07-16 11:30:25 +08:00
|
|
|
set => CountryString = value.ToString();
|
|
|
|
}
|
|
|
|
|
2022-07-18 15:16:59 +08:00
|
|
|
[MapTo(nameof(CountryCode))]
|
|
|
|
public string CountryString { get; set; } = default(CountryCode).ToString();
|
2022-07-16 11:30:25 +08:00
|
|
|
|
2021-11-05 12:38:48 +08:00
|
|
|
public bool IsBot => false;
|
2022-01-12 11:39:40 +08:00
|
|
|
|
|
|
|
public bool Equals(RealmUser other)
|
|
|
|
{
|
|
|
|
if (ReferenceEquals(null, other)) return false;
|
|
|
|
if (ReferenceEquals(this, other)) return true;
|
|
|
|
|
|
|
|
return OnlineID == other.OnlineID && Username == other.Username;
|
|
|
|
}
|
2022-01-24 00:49:17 +08:00
|
|
|
|
|
|
|
public RealmUser DeepClone() => (RealmUser)this.Detach().MemberwiseClone();
|
2021-11-04 17:13:45 +08:00
|
|
|
}
|
|
|
|
}
|