mirror of
https://github.com/ppy/osu.git
synced 2025-02-15 19:33:20 +08:00
Seperate updateable from drawable
This commit is contained in:
parent
bc8ce5d188
commit
97dd34e26c
@ -3,8 +3,6 @@
|
|||||||
|
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Extensions;
|
using osu.Framework.Extensions;
|
||||||
using osu.Framework.Graphics;
|
|
||||||
using osu.Framework.Graphics.Containers;
|
|
||||||
using osu.Framework.Graphics.Sprites;
|
using osu.Framework.Graphics.Sprites;
|
||||||
using osu.Framework.Graphics.Textures;
|
using osu.Framework.Graphics.Textures;
|
||||||
using osu.Game.Scoring;
|
using osu.Game.Scoring;
|
||||||
@ -12,28 +10,6 @@ using System;
|
|||||||
|
|
||||||
namespace osu.Game.Online.Leaderboards
|
namespace osu.Game.Online.Leaderboards
|
||||||
{
|
{
|
||||||
public class UpdateableRank : ModelBackedDrawable<ScoreRank>
|
|
||||||
{
|
|
||||||
public ScoreRank Rank
|
|
||||||
{
|
|
||||||
get => Model;
|
|
||||||
set => Model = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
public UpdateableRank(ScoreRank rank)
|
|
||||||
{
|
|
||||||
Rank = rank;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override Drawable CreateDrawable(ScoreRank rank) => new DrawableRank(rank)
|
|
||||||
{
|
|
||||||
RelativeSizeAxes = Axes.Both,
|
|
||||||
Anchor = Anchor.Centre,
|
|
||||||
Origin = Anchor.Centre,
|
|
||||||
FillMode = FillMode.Fit,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
public class DrawableRank : Sprite
|
public class DrawableRank : Sprite
|
||||||
{
|
{
|
||||||
private readonly ScoreRank rank;
|
private readonly ScoreRank rank;
|
||||||
|
31
osu.Game/Online/Leaderboards/UpdateableRank.cs
Normal file
31
osu.Game/Online/Leaderboards/UpdateableRank.cs
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
// 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 osu.Framework.Graphics;
|
||||||
|
using osu.Framework.Graphics.Containers;
|
||||||
|
using osu.Game.Scoring;
|
||||||
|
|
||||||
|
namespace osu.Game.Online.Leaderboards
|
||||||
|
{
|
||||||
|
public class UpdateableRank : ModelBackedDrawable<ScoreRank>
|
||||||
|
{
|
||||||
|
public ScoreRank Rank
|
||||||
|
{
|
||||||
|
get => Model;
|
||||||
|
set => Model = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public UpdateableRank(ScoreRank rank)
|
||||||
|
{
|
||||||
|
Rank = rank;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override Drawable CreateDrawable(ScoreRank rank) => new DrawableRank(rank)
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
Anchor = Anchor.Centre,
|
||||||
|
Origin = Anchor.Centre,
|
||||||
|
FillMode = FillMode.Fit,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
@ -6,7 +6,6 @@ using osu.Framework.Allocation;
|
|||||||
using osu.Framework.Bindables;
|
using osu.Framework.Bindables;
|
||||||
using osu.Framework.Graphics;
|
using osu.Framework.Graphics;
|
||||||
using osu.Framework.Graphics.Containers;
|
using osu.Framework.Graphics.Containers;
|
||||||
using osu.Framework.Graphics.Effects;
|
|
||||||
using osu.Framework.Graphics.Sprites;
|
using osu.Framework.Graphics.Sprites;
|
||||||
using osu.Framework.Graphics.Textures;
|
using osu.Framework.Graphics.Textures;
|
||||||
using osu.Framework.Input.Events;
|
using osu.Framework.Input.Events;
|
||||||
@ -14,67 +13,6 @@ using osu.Game.Graphics.Containers;
|
|||||||
|
|
||||||
namespace osu.Game.Users.Drawables
|
namespace osu.Game.Users.Drawables
|
||||||
{
|
{
|
||||||
/// <summary>
|
|
||||||
/// An avatar which can update to a new user when needed.
|
|
||||||
/// </summary>
|
|
||||||
public class UpdateableAvatar : ModelBackedDrawable<User>
|
|
||||||
{
|
|
||||||
public User User
|
|
||||||
{
|
|
||||||
get => Model;
|
|
||||||
set => Model = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
public new bool Masking
|
|
||||||
{
|
|
||||||
get => base.Masking;
|
|
||||||
set => base.Masking = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
public new float CornerRadius
|
|
||||||
{
|
|
||||||
get => base.CornerRadius;
|
|
||||||
set => base.CornerRadius = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
public new EdgeEffectParameters EdgeEffect
|
|
||||||
{
|
|
||||||
get => base.EdgeEffect;
|
|
||||||
set => base.EdgeEffect = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Whether to show a default guest representation on null user (as opposed to nothing).
|
|
||||||
/// </summary>
|
|
||||||
public bool ShowGuestOnNull = true;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Whether to open the user's profile when clicked.
|
|
||||||
/// </summary>
|
|
||||||
public readonly BindableBool OpenOnClick = new BindableBool(true);
|
|
||||||
|
|
||||||
public UpdateableAvatar(User user = null)
|
|
||||||
{
|
|
||||||
User = user;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override Drawable CreateDrawable(User user)
|
|
||||||
{
|
|
||||||
if (user == null && !ShowGuestOnNull)
|
|
||||||
return null;
|
|
||||||
|
|
||||||
var avatar = new DrawableAvatar(user)
|
|
||||||
{
|
|
||||||
RelativeSizeAxes = Axes.Both,
|
|
||||||
};
|
|
||||||
|
|
||||||
avatar.OnLoadComplete += d => d.FadeInFromZero(300, Easing.OutQuint);
|
|
||||||
avatar.OpenOnClick.BindTo(OpenOnClick);
|
|
||||||
|
|
||||||
return avatar;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public class DrawableAvatar : Container
|
public class DrawableAvatar : Container
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -3,33 +3,12 @@
|
|||||||
|
|
||||||
using System;
|
using System;
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
using osu.Framework.Graphics;
|
|
||||||
using osu.Framework.Graphics.Containers;
|
|
||||||
using osu.Framework.Graphics.Cursor;
|
using osu.Framework.Graphics.Cursor;
|
||||||
using osu.Framework.Graphics.Sprites;
|
using osu.Framework.Graphics.Sprites;
|
||||||
using osu.Framework.Graphics.Textures;
|
using osu.Framework.Graphics.Textures;
|
||||||
|
|
||||||
namespace osu.Game.Users.Drawables
|
namespace osu.Game.Users.Drawables
|
||||||
{
|
{
|
||||||
public class UpdateableFlag : ModelBackedDrawable<Country>
|
|
||||||
{
|
|
||||||
public Country Country
|
|
||||||
{
|
|
||||||
get => Model;
|
|
||||||
set => Model = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
public UpdateableFlag(Country country = null)
|
|
||||||
{
|
|
||||||
Country = country;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected override Drawable CreateDrawable(Country country) => new DrawableFlag(country)
|
|
||||||
{
|
|
||||||
RelativeSizeAxes = Axes.Both,
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
public class DrawableFlag : Sprite, IHasTooltip
|
public class DrawableFlag : Sprite, IHasTooltip
|
||||||
{
|
{
|
||||||
private readonly Country country;
|
private readonly Country country;
|
||||||
|
71
osu.Game/Users/Drawables/UpdateableAvatar.cs
Normal file
71
osu.Game/Users/Drawables/UpdateableAvatar.cs
Normal file
@ -0,0 +1,71 @@
|
|||||||
|
// 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 osu.Framework.Bindables;
|
||||||
|
using osu.Framework.Graphics;
|
||||||
|
using osu.Framework.Graphics.Containers;
|
||||||
|
using osu.Framework.Graphics.Effects;
|
||||||
|
|
||||||
|
namespace osu.Game.Users.Drawables
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// An avatar which can update to a new user when needed.
|
||||||
|
/// </summary>
|
||||||
|
public class UpdateableAvatar : ModelBackedDrawable<User>
|
||||||
|
{
|
||||||
|
public User User
|
||||||
|
{
|
||||||
|
get => Model;
|
||||||
|
set => Model = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public new bool Masking
|
||||||
|
{
|
||||||
|
get => base.Masking;
|
||||||
|
set => base.Masking = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public new float CornerRadius
|
||||||
|
{
|
||||||
|
get => base.CornerRadius;
|
||||||
|
set => base.CornerRadius = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public new EdgeEffectParameters EdgeEffect
|
||||||
|
{
|
||||||
|
get => base.EdgeEffect;
|
||||||
|
set => base.EdgeEffect = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Whether to show a default guest representation on null user (as opposed to nothing).
|
||||||
|
/// </summary>
|
||||||
|
public bool ShowGuestOnNull = true;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Whether to open the user's profile when clicked.
|
||||||
|
/// </summary>
|
||||||
|
public readonly BindableBool OpenOnClick = new BindableBool(true);
|
||||||
|
|
||||||
|
public UpdateableAvatar(User user = null)
|
||||||
|
{
|
||||||
|
User = user;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override Drawable CreateDrawable(User user)
|
||||||
|
{
|
||||||
|
if (user == null && !ShowGuestOnNull)
|
||||||
|
return null;
|
||||||
|
|
||||||
|
var avatar = new DrawableAvatar(user)
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
};
|
||||||
|
|
||||||
|
avatar.OnLoadComplete += d => d.FadeInFromZero(300, Easing.OutQuint);
|
||||||
|
avatar.OpenOnClick.BindTo(OpenOnClick);
|
||||||
|
|
||||||
|
return avatar;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
27
osu.Game/Users/Drawables/UpdateableFlag.cs
Normal file
27
osu.Game/Users/Drawables/UpdateableFlag.cs
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
// 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 osu.Framework.Graphics;
|
||||||
|
using osu.Framework.Graphics.Containers;
|
||||||
|
|
||||||
|
namespace osu.Game.Users.Drawables
|
||||||
|
{
|
||||||
|
public class UpdateableFlag : ModelBackedDrawable<Country>
|
||||||
|
{
|
||||||
|
public Country Country
|
||||||
|
{
|
||||||
|
get => Model;
|
||||||
|
set => Model = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public UpdateableFlag(Country country = null)
|
||||||
|
{
|
||||||
|
Country = country;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override Drawable CreateDrawable(Country country) => new DrawableFlag(country)
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user