1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 22:07:28 +08:00
osu-lazer/osu.Game.Modes.Taiko/UI/TaikoPlayfield.cs

198 lines
8.0 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-09-02 18:58:57 +08:00
2016-11-14 16:23:33 +08:00
using osu.Framework.Allocation;
2016-09-02 18:58:57 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
2017-03-06 12:59:11 +08:00
using osu.Game.Modes.Taiko.Objects;
2016-11-14 17:54:24 +08:00
using osu.Game.Modes.UI;
2016-09-02 18:58:57 +08:00
using OpenTK;
using OpenTK.Graphics;
using osu.Game.Modes.Taiko.Judgements;
2017-03-21 14:09:54 +08:00
using osu.Game.Modes.Objects.Drawables;
using osu.Game.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics.Primitives;
2016-09-02 18:58:57 +08:00
2016-11-14 17:54:24 +08:00
namespace osu.Game.Modes.Taiko.UI
2016-09-02 18:58:57 +08:00
{
2017-03-17 12:33:48 +08:00
public class TaikoPlayfield : Playfield<TaikoHitObject, TaikoJudgementInfo>
2016-09-02 18:58:57 +08:00
{
2017-03-21 14:09:54 +08:00
/// <summary>
/// The default play field height.
/// </summary>
public const float PLAYFIELD_BASE_HEIGHT = 242;
/// <summary>
/// The play field height scale.
/// </summary>
public const float PLAYFIELD_SCALE = 0.65f;
/// <summary>
/// The play field height after scaling.
/// </summary>
public static float PlayfieldHeight => PLAYFIELD_BASE_HEIGHT * PLAYFIELD_SCALE;
/// <summary>
/// The offset from <see cref="left_area_size"/> which the center of the hit target lies at.
/// </summary>
private const float hit_target_offset = 80;
/// <summary>
/// The size of the left area of the playfield. This area contains the input drum.
/// </summary>
private const float left_area_size = 240;
protected override Container<Drawable> Content => hitObjectContainer;
2017-03-23 13:37:00 +08:00
private readonly Container<HitExplosion> hitExplosionContainer;
2017-03-21 14:09:54 +08:00
//private Container<DrawableBarLine> barLineContainer;
private readonly Container<DrawableTaikoJudgementInfo> judgementContainer;
2017-03-21 14:09:54 +08:00
2017-03-23 13:37:00 +08:00
private readonly Container hitObjectContainer;
2017-03-23 11:56:32 +08:00
//private Container topLevelHitContainer;
2017-03-23 13:37:00 +08:00
private readonly Container leftBackgroundContainer;
private readonly Container rightBackgroundContainer;
private readonly Box leftBackground;
private readonly Box rightBackground;
2017-03-21 14:09:54 +08:00
2016-09-02 18:58:57 +08:00
public TaikoPlayfield()
{
RelativeSizeAxes = Axes.X;
2017-03-21 14:09:54 +08:00
Height = PlayfieldHeight;
AddInternal(new Drawable[]
{
rightBackgroundContainer = new Container
{
RelativeSizeAxes = Axes.Both,
BorderThickness = 2,
Masking = true,
EdgeEffect = new EdgeEffect
{
Type = EdgeEffectType.Shadow,
Colour = Color4.Black.Opacity(0.2f),
Radius = 5,
},
Children = new Drawable[]
{
rightBackground = new Box
{
RelativeSizeAxes = Axes.Both,
Alpha = 0.6f
},
}
},
new Container
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Left = left_area_size },
Children = new Drawable[]
{
new Container
{
Padding = new MarginPadding { Left = hit_target_offset },
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
hitExplosionContainer = new Container<HitExplosion>
2017-03-21 14:09:54 +08:00
{
2017-03-21 17:28:04 +08:00
Anchor = Anchor.CentreLeft,
Origin = Anchor.Centre,
Size = new Vector2(TaikoHitObject.CIRCLE_RADIUS * 2),
Scale = new Vector2(PLAYFIELD_SCALE),
BlendingMode = BlendingMode.Additive
2017-03-21 14:09:54 +08:00
},
//barLineContainer = new Container<DrawableBarLine>
//{
// RelativeSizeAxes = Axes.Both,
//},
2017-03-21 16:50:05 +08:00
new HitTarget
2017-03-21 14:09:54 +08:00
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.Centre,
},
hitObjectContainer = new Container
{
RelativeSizeAxes = Axes.Both,
},
judgementContainer = new Container<DrawableTaikoJudgementInfo>
2017-03-21 15:33:25 +08:00
{
RelativeSizeAxes = Axes.Both,
BlendingMode = BlendingMode.Additive
},
2017-03-21 14:09:54 +08:00
},
},
}
},
leftBackgroundContainer = new Container
{
Size = new Vector2(left_area_size, PlayfieldHeight),
BorderThickness = 1,
Children = new Drawable[]
{
leftBackground = new Box
{
RelativeSizeAxes = Axes.Both,
},
2017-03-21 17:28:04 +08:00
new InputDrum
2017-03-21 14:09:54 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativePositionAxes = Axes.X,
Position = new Vector2(0.10f, 0),
2017-03-21 17:28:04 +08:00
Scale = new Vector2(0.9f)
2017-03-21 14:09:54 +08:00
},
new Box
{
Anchor = Anchor.TopRight,
RelativeSizeAxes = Axes.Y,
Width = 10,
ColourInfo = Framework.Graphics.Colour.ColourInfo.GradientHorizontal(Color4.Black.Opacity(0.6f), Color4.Black.Opacity(0)),
},
}
},
2017-03-23 11:56:32 +08:00
//topLevelHitContainer = new Container
//{
// RelativeSizeAxes = Axes.Both,
//}
2017-03-21 14:09:54 +08:00
});
2016-09-02 18:58:57 +08:00
}
[BackgroundDependencyLoader]
2017-03-21 14:09:54 +08:00
private void load(OsuColour colours)
2016-09-02 18:58:57 +08:00
{
2017-03-21 14:09:54 +08:00
leftBackgroundContainer.BorderColour = colours.Gray0;
leftBackground.Colour = colours.Gray1;
2016-09-02 18:58:57 +08:00
2017-03-21 14:09:54 +08:00
rightBackgroundContainer.BorderColour = colours.Gray1;
rightBackground.Colour = colours.Gray0;
}
public override void Add(DrawableHitObject<TaikoHitObject, TaikoJudgementInfo> h)
{
h.Depth = (float)h.HitObject.StartTime;
base.Add(h);
}
public override void OnJudgement(DrawableHitObject<TaikoHitObject, TaikoJudgementInfo> judgedObject)
{
2017-03-21 14:54:57 +08:00
if (judgedObject.Judgement.Result == HitResult.Hit)
{
hitExplosionContainer.Add(new HitExplosion(judgedObject.Judgement));
2017-03-21 14:54:57 +08:00
}
2017-03-21 15:33:25 +08:00
float judgementOffset = judgedObject.Judgement.Result == HitResult.Hit ? judgedObject.Position.X : 0;
judgementContainer.Add(new DrawableTaikoJudgementInfo(judgedObject.Judgement)
2017-03-21 15:33:25 +08:00
{
Anchor = judgedObject.Judgement.Result == HitResult.Hit ? Anchor.TopLeft : Anchor.BottomLeft,
Origin = judgedObject.Judgement.Result == HitResult.Hit ? Anchor.BottomCentre : Anchor.TopCentre,
RelativePositionAxes = Axes.X,
X = judgementOffset,
});
2016-09-02 18:58:57 +08:00
}
}
}