2017-02-07 12:59:30 +08:00
|
|
|
|
// 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;
|
2017-03-15 17:55:38 +08:00
|
|
|
|
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;
|
2017-04-03 09:20:20 +08:00
|
|
|
|
using System.Linq;
|
2017-04-04 11:38:55 +08:00
|
|
|
|
using osu.Game.Modes.Taiko.Objects.Drawables;
|
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-23 18:00:18 +08:00
|
|
|
|
public class TaikoPlayfield : Playfield<TaikoHitObject, TaikoJudgement>
|
2016-09-02 18:58:57 +08:00
|
|
|
|
{
|
2017-03-21 14:09:54 +08:00
|
|
|
|
/// <summary>
|
2017-03-28 16:13:05 +08:00
|
|
|
|
/// The play field height. This is relative to the size of hit objects
|
2017-04-03 09:59:49 +08:00
|
|
|
|
/// such that the playfield is just a bit larger than strong hits.
|
2017-03-21 14:09:54 +08:00
|
|
|
|
/// </summary>
|
2017-04-10 04:08:05 +08:00
|
|
|
|
public const float DEFAULT_PLAYFIELD_HEIGHT = TaikoHitObject.CIRCLE_RADIUS * 2 * 2;
|
2017-03-21 14:09:54 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The offset from <see cref="left_area_size"/> which the center of the hit target lies at.
|
|
|
|
|
/// </summary>
|
2017-03-28 16:13:05 +08:00
|
|
|
|
private const float hit_target_offset = TaikoHitObject.CIRCLE_RADIUS * 1.5f + 40;
|
2017-03-21 14:09:54 +08:00
|
|
|
|
|
|
|
|
|
/// <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-04-01 22:59:44 +08:00
|
|
|
|
private readonly Container<DrawableBarLine> barLineContainer;
|
2017-03-23 18:00:18 +08:00
|
|
|
|
private readonly Container<DrawableTaikoJudgement> judgementContainer;
|
2017-03-21 14:09:54 +08:00
|
|
|
|
|
2017-03-23 13:37:00 +08:00
|
|
|
|
private readonly Container hitObjectContainer;
|
2017-03-29 08:02:49 +08:00
|
|
|
|
private readonly 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()
|
|
|
|
|
{
|
2016-10-01 17:40:14 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X;
|
2017-04-10 04:08:05 +08:00
|
|
|
|
Height = DEFAULT_PLAYFIELD_HEIGHT;
|
2017-03-21 14:09:54 +08:00
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
{
|
2017-04-05 12:56:16 +08:00
|
|
|
|
X = hit_target_offset,
|
2017-03-21 14:09:54 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2017-03-23 12:02:01 +08:00
|
|
|
|
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,
|
2017-04-10 04:08:05 +08:00
|
|
|
|
Size = new Vector2(DEFAULT_PLAYFIELD_HEIGHT),
|
|
|
|
|
FillMode = FillMode.Fit,
|
2017-03-21 17:28:04 +08:00
|
|
|
|
BlendingMode = BlendingMode.Additive
|
2017-03-21 14:09:54 +08:00
|
|
|
|
},
|
2017-03-21 19:39:18 +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,
|
2017-04-10 04:08:05 +08:00
|
|
|
|
FillMode = FillMode.Fit
|
2017-03-21 14:09:54 +08:00
|
|
|
|
},
|
|
|
|
|
hitObjectContainer = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
2017-03-23 18:00:18 +08:00
|
|
|
|
judgementContainer = new Container<DrawableTaikoJudgement>
|
2017-03-21 15:33:25 +08:00
|
|
|
|
{
|
2017-04-10 04:08:05 +08:00
|
|
|
|
Size = new Vector2(DEFAULT_PLAYFIELD_HEIGHT),
|
|
|
|
|
FillMode = FillMode.Fit,
|
2017-03-21 15:33:25 +08:00
|
|
|
|
BlendingMode = BlendingMode.Additive
|
|
|
|
|
},
|
2017-03-21 14:09:54 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
leftBackgroundContainer = new Container
|
|
|
|
|
{
|
2017-04-10 04:08:05 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
|
|
|
|
Width = left_area_size,
|
2017-03-21 14:09:54 +08:00
|
|
|
|
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-04-10 04:08:05 +08:00
|
|
|
|
FillMode = FillMode.Fit,
|
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)),
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
topLevelHitContainer = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
}
|
|
|
|
|
});
|
2016-09-02 18:58:57 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-12 18:44:16 +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;
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-23 18:00:18 +08:00
|
|
|
|
public override void Add(DrawableHitObject<TaikoHitObject, TaikoJudgement> h)
|
2017-03-21 14:09:54 +08:00
|
|
|
|
{
|
2017-04-10 04:08:05 +08:00
|
|
|
|
h.AutoSizeAxes = h.AutoSizeAxes & ~Axes.Y;
|
|
|
|
|
h.Height = DEFAULT_PLAYFIELD_HEIGHT;
|
|
|
|
|
h.FillMode = FillMode.Fit;
|
2017-03-21 14:09:54 +08:00
|
|
|
|
h.Depth = (float)h.HitObject.StartTime;
|
|
|
|
|
|
|
|
|
|
base.Add(h);
|
2017-03-29 08:01:40 +08:00
|
|
|
|
|
|
|
|
|
// Swells should be moved at the very top of the playfield when they reach the hit target
|
|
|
|
|
var swell = h as DrawableSwell;
|
|
|
|
|
if (swell != null)
|
|
|
|
|
swell.OnStart += () => topLevelHitContainer.Add(swell.CreateProxy());
|
2017-03-21 14:09:54 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-03-21 20:26:01 +08:00
|
|
|
|
public void AddBarLine(DrawableBarLine barLine)
|
|
|
|
|
{
|
|
|
|
|
barLineContainer.Add(barLine);
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-23 18:00:18 +08:00
|
|
|
|
public override void OnJudgement(DrawableHitObject<TaikoHitObject, TaikoJudgement> judgedObject)
|
2017-03-21 14:09:54 +08:00
|
|
|
|
{
|
2017-03-23 14:07:45 +08:00
|
|
|
|
bool wasHit = judgedObject.Judgement.Result == HitResult.Hit;
|
2017-04-03 09:20:20 +08:00
|
|
|
|
bool secondHit = judgedObject.Judgement.SecondHit;
|
2017-03-21 15:33:25 +08:00
|
|
|
|
|
2017-03-23 18:00:18 +08:00
|
|
|
|
judgementContainer.Add(new DrawableTaikoJudgement(judgedObject.Judgement)
|
2017-03-21 15:33:25 +08:00
|
|
|
|
{
|
2017-03-23 14:07:45 +08:00
|
|
|
|
Anchor = wasHit ? Anchor.TopLeft : Anchor.CentreLeft,
|
|
|
|
|
Origin = wasHit ? Anchor.BottomCentre : Anchor.Centre,
|
2017-03-21 15:33:25 +08:00
|
|
|
|
RelativePositionAxes = Axes.X,
|
2017-03-23 14:07:45 +08:00
|
|
|
|
X = wasHit ? judgedObject.Position.X : 0,
|
2017-03-21 15:33:25 +08:00
|
|
|
|
});
|
2017-04-03 09:20:20 +08:00
|
|
|
|
|
|
|
|
|
if (!wasHit)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (!secondHit)
|
|
|
|
|
{
|
|
|
|
|
if (judgedObject.X >= -0.05f && !(judgedObject is DrawableSwell))
|
|
|
|
|
{
|
|
|
|
|
// If we're far enough away from the left stage, we should bring outselves in front of it
|
|
|
|
|
topLevelHitContainer.Add(judgedObject.CreateProxy());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hitExplosionContainer.Add(new HitExplosion(judgedObject.Judgement));
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
hitExplosionContainer.Children.FirstOrDefault(e => e.Judgement == judgedObject.Judgement)?.VisualiseSecondHit();
|
2016-09-02 18:58:57 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|