1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00
osu-lazer/osu.Game/Models/RealmUser.cs

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

41 lines
1.2 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.
using System;
using osu.Game.Database;
using osu.Game.Users;
using osu.Game.Utils;
using Realms;
namespace osu.Game.Models
{
public class RealmUser : EmbeddedObject, IUser, IEquatable<RealmUser>, IDeepCloneable<RealmUser>
{
public int OnlineID { get; set; } = 1;
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;
public bool Equals(RealmUser? other)
{
if (ReferenceEquals(null, other)) return false;
if (ReferenceEquals(this, other)) return true;
return OnlineID == other.OnlineID && Username == other.Username;
}
public RealmUser DeepClone() => (RealmUser)this.Detach().MemberwiseClone();
}
}