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

248 lines
10 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.Shapes;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Taiko.Objects;
using osu.Game.Rulesets.UI;
2016-09-02 18:58:57 +08:00
using OpenTK;
using OpenTK.Graphics;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Taiko.Judgements;
using osu.Game.Rulesets.Objects.Drawables;
2017-03-21 14:09:54 +08:00
using osu.Game.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Extensions.Color4Extensions;
using System.Linq;
2017-04-18 15:05:58 +08:00
using osu.Game.Rulesets.Taiko.Objects.Drawables;
2016-09-02 18:58:57 +08:00
2017-04-18 15:05:58 +08:00
namespace osu.Game.Rulesets.Taiko.UI
2016-09-02 18:58:57 +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-08-09 12:28:29 +08:00
/// Default height of a <see cref="TaikoPlayfield"/> when inside a <see cref="TaikoRulesetContainer"/>.
2017-03-21 14:09:54 +08:00
/// </summary>
public const float DEFAULT_HEIGHT = 178;
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>
public const float HIT_TARGET_OFFSET = 100;
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;
private readonly Container<KiaiHitExplosion> kiaiExplosionContainer;
2017-04-01 22:59:44 +08:00
private readonly Container<DrawableBarLine> barLineContainer;
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;
private readonly Container overlayBackgroundContainer;
private readonly Container backgroundContainer;
private readonly Box overlayBackground;
private readonly Box background;
2017-03-21 14:09:54 +08:00
2016-09-02 18:58:57 +08:00
public TaikoPlayfield()
{
2017-07-11 21:58:06 +08:00
AddRangeInternal(new Drawable[]
2017-03-21 14:09:54 +08:00
{
2017-08-03 06:46:19 +08:00
backgroundContainer = new Container
2017-03-21 14:09:54 +08:00
{
2017-08-03 06:46:19 +08:00
Name = "Transparent playfield background",
RelativeSizeAxes = Axes.Both,
Masking = true,
EdgeEffect = new EdgeEffectParameters
{
Type = EdgeEffectType.Shadow,
Colour = Color4.Black.Opacity(0.2f),
Radius = 5,
},
Children = new Drawable[]
2017-03-21 14:09:54 +08:00
{
2017-08-03 06:46:19 +08:00
background = new Box
{
RelativeSizeAxes = Axes.Both,
2017-08-03 06:46:19 +08:00
Alpha = 0.6f
},
2017-08-03 06:46:19 +08:00
}
},
new Container
{
Name = "Right area",
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Left = left_area_size },
2017-08-03 06:46:19 +08:00
Children = new Drawable[]
{
2017-03-21 14:09:54 +08:00
new Container
{
2017-08-03 06:46:19 +08:00
Name = "Masked elements",
2017-03-21 14:09:54 +08:00
RelativeSizeAxes = Axes.Both,
2017-08-03 06:46:19 +08:00
Padding = new MarginPadding { Left = HIT_TARGET_OFFSET },
Masking = true,
2017-03-21 14:09:54 +08:00
Children = new Drawable[]
{
2017-08-03 06:46:19 +08:00
hitExplosionContainer = new Container<HitExplosion>
2017-03-21 14:09:54 +08:00
{
RelativeSizeAxes = Axes.Both,
FillMode = FillMode.Fit,
2017-08-03 06:46:19 +08:00
BlendingMode = BlendingMode.Additive,
2017-03-21 14:09:54 +08:00
},
2017-08-03 06:46:19 +08:00
barLineContainer = new Container<DrawableBarLine>
2017-03-21 19:39:18 +08:00
{
RelativeSizeAxes = Axes.Both,
},
2017-08-03 06:46:19 +08:00
new HitTarget
2017-03-21 14:09:54 +08:00
{
2017-08-03 06:46:19 +08:00
Anchor = Anchor.CentreLeft,
2017-03-21 14:09:54 +08:00
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
FillMode = FillMode.Fit
2017-03-21 14:09:54 +08:00
},
2017-08-03 06:46:19 +08:00
hitObjectContainer = new Container
2017-03-21 15:33:25 +08:00
{
2017-08-03 06:46:19 +08:00
RelativeSizeAxes = Axes.Both,
2017-03-21 15:33:25 +08:00
},
}
2017-03-21 14:09:54 +08:00
},
2017-08-03 06:46:19 +08:00
kiaiExplosionContainer = new Container<KiaiHitExplosion>
{
Name = "Kiai hit explosions",
RelativeSizeAxes = Axes.Both,
FillMode = FillMode.Fit,
2017-08-03 06:46:19 +08:00
Margin = new MarginPadding { Left = HIT_TARGET_OFFSET },
BlendingMode = BlendingMode.Additive
},
judgementContainer = new Container<DrawableTaikoJudgement>
{
Name = "Judgements",
RelativeSizeAxes = Axes.Y,
Margin = new MarginPadding { Left = HIT_TARGET_OFFSET },
BlendingMode = BlendingMode.Additive
},
}
},
overlayBackgroundContainer = new Container
{
Name = "Left overlay",
RelativeSizeAxes = Axes.Y,
Size = new Vector2(left_area_size, 1),
Children = new Drawable[]
{
overlayBackground = new Box
{
RelativeSizeAxes = Axes.Both,
},
new InputDrum
{
2017-08-03 06:49:25 +08:00
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
Scale = new Vector2(0.9f),
Margin = new MarginPadding { Right = 20 }
2017-08-03 06:46:19 +08:00
},
new Box
{
Anchor = Anchor.TopRight,
RelativeSizeAxes = Axes.Y,
Width = 10,
Colour = Framework.Graphics.Colour.ColourInfo.GradientHorizontal(Color4.Black.Opacity(0.6f), Color4.Black.Opacity(0)),
},
2017-03-21 14:09:54 +08:00
}
},
new Container
{
Name = "Border",
RelativeSizeAxes = Axes.Both,
Masking = true,
MaskingSmoothness = 0,
BorderThickness = 2,
AlwaysPresent = true,
Children = new[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Alpha = 0,
AlwaysPresent = true
}
}
},
2017-03-21 14:09:54 +08:00
topLevelHitContainer = new Container
{
Name = "Top level hit objects",
2017-03-21 14:09:54 +08:00
RelativeSizeAxes = Axes.Both,
}
});
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
{
overlayBackgroundContainer.BorderColour = colours.Gray0;
overlayBackground.Colour = colours.Gray1;
2016-09-02 18:58:57 +08:00
backgroundContainer.BorderColour = colours.Gray1;
background.Colour = colours.Gray0;
2017-03-21 14:09:54 +08:00
}
public override void Add(DrawableHitObject<TaikoHitObject, TaikoJudgement> h)
2017-03-21 14:09:54 +08:00
{
h.Depth = (float)h.HitObject.StartTime;
base.Add(h);
// 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
}
public void AddBarLine(DrawableBarLine barLine)
{
barLineContainer.Add(barLine);
}
public override void OnJudgement(DrawableHitObject<TaikoHitObject, TaikoJudgement> judgedObject)
2017-03-21 14:09:54 +08:00
{
bool wasHit = judgedObject.Judgement.Result == HitResult.Hit;
bool secondHit = judgedObject.Judgement.SecondHit;
2017-03-21 15:33:25 +08:00
judgementContainer.Add(new DrawableTaikoJudgement(judgedObject.Judgement)
2017-03-21 15:33:25 +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,
X = wasHit ? judgedObject.Position.X : 0,
2017-03-21 15:33:25 +08:00
});
if (!wasHit)
return;
bool isRim = judgedObject.HitObject is RimHit;
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, isRim));
if (judgedObject.HitObject.Kiai)
kiaiExplosionContainer.Add(new KiaiHitExplosion(judgedObject.Judgement, isRim));
}
else
hitExplosionContainer.Children.FirstOrDefault(e => e.Judgement == judgedObject.Judgement)?.VisualiseSecondHit();
2016-09-02 18:58:57 +08:00
}
}
}