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