2019-01-24 08:43:03 +00:00
// 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.
2018-04-13 09:19:50 +00:00
2020-11-30 10:04:09 +00:00
using osu.Framework.Allocation ;
2018-04-13 09:19:50 +00:00
using osu.Framework.Graphics ;
2021-07-19 10:44:40 +00:00
using osu.Framework.Graphics.Containers ;
2018-04-13 09:19:50 +00:00
using osu.Game.Beatmaps ;
using osu.Game.Rulesets.Catch.Objects ;
2020-02-19 09:01:59 +00:00
using osu.Game.Rulesets.Catch.Objects.Drawables ;
2018-04-13 09:19:50 +00:00
using osu.Game.Rulesets.Judgements ;
using osu.Game.Rulesets.Objects.Drawables ;
using osu.Game.Rulesets.UI.Scrolling ;
2019-11-29 09:25:11 +00:00
using osuTK ;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Rulesets.Catch.UI
{
public class CatchPlayfield : ScrollingPlayfield
{
2020-07-01 15:21:45 +00:00
/// <summary>
/// The width of the playfield.
/// The horizontal movement of the catcher is confined in the area of this width.
/// </summary>
public const float WIDTH = 512 ;
/// <summary>
/// The center position of the playfield.
/// </summary>
public const float CENTER_X = WIDTH / 2 ;
2018-04-13 09:19:50 +00:00
2020-01-30 04:23:39 +00:00
public override bool ReceivePositionalInputAt ( Vector2 screenSpacePos ) = >
// only check the X position; handle all vertical space.
base . ReceivePositionalInputAt ( new Vector2 ( screenSpacePos . X , ScreenSpaceDrawQuad . Centre . Y ) ) ;
2019-11-29 09:25:11 +00:00
2021-07-19 10:44:40 +00:00
internal readonly Catcher Catcher ;
internal readonly CatcherArea CatcherArea ;
[Cached]
private readonly DroppedObjectContainer droppedObjectContainer ;
2021-06-22 03:34:34 +00:00
public CatchPlayfield ( BeatmapDifficulty difficulty )
2018-04-13 09:19:50 +00:00
{
2021-07-19 10:44:40 +00:00
var trailContainer = new Container ( ) ;
Catcher = new Catcher ( trailContainer , difficulty )
2020-07-15 11:58:09 +00:00
{
2021-07-19 10:44:40 +00:00
X = CENTER_X
2020-07-15 11:58:09 +00:00
} ;
2018-04-13 09:19:50 +00:00
2020-07-15 13:00:48 +00:00
InternalChildren = new [ ]
2018-04-13 09:19:50 +00:00
{
2021-06-24 06:56:53 +00:00
droppedObjectContainer = new DroppedObjectContainer ( ) ,
2021-07-19 10:44:40 +00:00
Catcher . CreateProxiedContent ( ) ,
2021-04-09 07:04:45 +00:00
HitObjectContainer . CreateProxy ( ) ,
// This ordering (`CatcherArea` before `HitObjectContainer`) is important to
// make sure the up-to-date catcher position is used for the catcher catching logic of hit objects.
2021-07-19 10:44:40 +00:00
CatcherArea = new CatcherArea
{
Anchor = Anchor . BottomLeft ,
Origin = Anchor . TopLeft ,
MovableCatcher = Catcher
} ,
trailContainer ,
2021-04-09 07:04:45 +00:00
HitObjectContainer ,
2018-09-21 05:02:32 +00:00
} ;
2020-11-30 06:20:52 +00:00
}
2020-11-30 10:04:09 +00:00
[BackgroundDependencyLoader]
private void load ( )
{
2020-12-01 05:50:42 +00:00
RegisterPool < Droplet , DrawableDroplet > ( 50 ) ;
RegisterPool < TinyDroplet , DrawableTinyDroplet > ( 50 ) ;
RegisterPool < Fruit , DrawableFruit > ( 100 ) ;
RegisterPool < Banana , DrawableBanana > ( 100 ) ;
RegisterPool < JuiceStream , DrawableJuiceStream > ( 10 ) ;
RegisterPool < BananaShower , DrawableBananaShower > ( 2 ) ;
2020-11-30 10:04:09 +00:00
}
2020-11-30 06:20:52 +00:00
protected override void LoadComplete ( )
{
base . LoadComplete ( ) ;
2020-11-20 08:25:57 +00:00
2020-11-30 06:22:55 +00:00
// these subscriptions need to be done post constructor to ensure externally bound components have a chance to populate required fields (ScoreProcessor / ComboAtJudgement in this case).
2020-11-20 08:25:57 +00:00
NewResult + = onNewResult ;
RevertResult + = onRevertResult ;
2020-11-21 06:20:33 +00:00
}
protected override void OnNewDrawableHitObject ( DrawableHitObject d )
{
2020-11-22 09:36:10 +00:00
( ( DrawableCatchHitObject ) d ) . CheckPosition = checkIfWeCanCatch ;
2018-04-13 09:19:50 +00:00
}
2021-07-19 10:52:40 +00:00
private bool checkIfWeCanCatch ( CatchHitObject obj ) = > Catcher . CanCatch ( obj ) ;
2018-04-13 09:19:50 +00:00
2018-08-06 01:54:16 +00:00
private void onNewResult ( DrawableHitObject judgedObject , JudgementResult result )
2020-09-12 20:39:06 +00:00
= > CatcherArea . OnNewResult ( ( DrawableCatchHitObject ) judgedObject , result ) ;
2020-08-03 19:13:02 +00:00
private void onRevertResult ( DrawableHitObject judgedObject , JudgementResult result )
2020-09-12 20:39:06 +00:00
= > CatcherArea . OnRevertResult ( ( DrawableCatchHitObject ) judgedObject , result ) ;
2018-04-13 09:19:50 +00:00
}
}