// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System; using System.Collections.Generic; using osu.Framework.Allocation; using osu.Framework.Audio; using osu.Framework.Audio.Sample; using osu.Game.Rulesets.Judgements; using Container = osu.Framework.Graphics.Containers.Container; using osu.Game.Rulesets.Objects.Types; using OpenTK.Graphics; using osu.Game.Audio; using System.Linq; using osu.Game.Graphics; using osu.Framework.Configuration; using OpenTK; using osu.Framework.Graphics.Primitives; namespace osu.Game.Rulesets.Objects.Drawables { public abstract class DrawableHitObject : Container, IHasAccentColour { public readonly HitObject HitObject; /// /// The colour used for various elements of this DrawableHitObject. /// public virtual Color4 AccentColour { get; set; } = Color4.Gray; /// /// Whether a visible judgement should be displayed when this representation is hit. /// public virtual bool DisplayJudgement => true; public override bool RemoveCompletedTransforms => false; public override bool RemoveWhenNotAlive => false; protected DrawableHitObject(HitObject hitObject) { HitObject = hitObject; } /// /// The screen-space point that causes this to be selected in the Editor. /// public virtual Vector2 SelectionPoint => ScreenSpaceDrawQuad.Centre; /// /// The screen-space quad that outlines this for selections in the Editor. /// public virtual Quad SelectionQuad => ScreenSpaceDrawQuad; } public abstract class DrawableHitObject : DrawableHitObject where TObject : HitObject { public event Action OnJudgement; public event Action OnJudgementRemoved; public new readonly TObject HitObject; public override bool HandleInput => Interactive; public bool Interactive = true; /// /// Whether this can be judged. /// protected virtual bool ProvidesJudgement => true; private readonly List judgements = new List(); public IReadOnlyList Judgements => judgements; protected List Samples = new List(); protected virtual IEnumerable GetSamples() => HitObject.Samples; public readonly Bindable State = new Bindable(); protected DrawableHitObject(TObject hitObject) : base(hitObject) { HitObject = hitObject; } [BackgroundDependencyLoader] private void load(AudioManager audio) { var samples = GetSamples(); if (samples.Any()) { if (HitObject.SampleControlPoint == null) throw new ArgumentNullException(nameof(HitObject.SampleControlPoint), $"{nameof(HitObject)}s must always have an attached {nameof(HitObject.SampleControlPoint)}." + $" This is an indication that {nameof(HitObject.ApplyDefaults)} has not been invoked on {this}."); foreach (SampleInfo s in samples) { SampleInfo localSampleInfo = new SampleInfo { Bank = s.Bank ?? HitObject.SampleControlPoint.SampleBank, Name = s.Name, Volume = s.Volume > 0 ? s.Volume : HitObject.SampleControlPoint.SampleVolume }; SampleChannel channel = localSampleInfo.GetChannel(audio.Sample); if (channel == null) continue; Samples.Add(channel); } } } protected override void LoadComplete() { base.LoadComplete(); State.ValueChanged += state => { UpdateState(state); // apply any custom state overrides ApplyCustomUpdateState?.Invoke(this, state); if (State == ArmedState.Hit) PlaySamples(); }; State.TriggerChange(); } protected void PlaySamples() { Samples.ForEach(s => s?.Play()); } private bool judgementOccurred; private bool judgementFinalized => judgements.LastOrDefault()?.Final == true; /// /// Whether this and all of its nested s have been judged. /// public bool AllJudged => (!ProvidesJudgement || judgementFinalized) && (NestedHitObjects?.All(h => h.AllJudged) ?? true); /// /// Notifies that a new judgement has occurred for this . /// /// The . protected void AddJudgement(Judgement judgement) { judgementOccurred = true; // Ensure that the judgement is given a valid time offset, because this may not get set by the caller var endTime = (HitObject as IHasEndTime)?.EndTime ?? HitObject.StartTime; judgement.TimeOffset = Time.Current - endTime; judgements.Add(judgement); switch (judgement.Result) { case HitResult.None: break; case HitResult.Miss: State.Value = ArmedState.Miss; break; default: State.Value = ArmedState.Hit; break; } OnJudgement?.Invoke(this, judgement); } /// /// Processes this , checking if any judgements have occurred. /// /// Whether the user triggered this process. /// Whether a judgement has occurred from this or any nested s. protected bool UpdateJudgement(bool userTriggered) { judgementOccurred = false; if (AllJudged) return false; if (NestedHitObjects != null) { foreach (var d in NestedHitObjects) judgementOccurred |= d.UpdateJudgement(userTriggered); } if (!ProvidesJudgement || judgementFinalized || judgementOccurred) return judgementOccurred; var endTime = (HitObject as IHasEndTime)?.EndTime ?? HitObject.StartTime; CheckForJudgements(userTriggered, Time.Current - endTime); return judgementOccurred; } /// /// Checks if any judgements have occurred for this . This method must construct /// all s and notify of them through . /// /// Whether the user triggered this check. /// The offset from the end time at which this check occurred. A > 0 /// implies that this check occurred after the end time of . protected virtual void CheckForJudgements(bool userTriggered, double timeOffset) { } protected override void Update() { base.Update(); var endTime = (HitObject as IHasEndTime)?.EndTime ?? HitObject.StartTime; while (judgements.Count > 0) { var lastJudgement = judgements[judgements.Count - 1]; if (lastJudgement.TimeOffset + endTime <= Time.Current) break; judgements.RemoveAt(judgements.Count - 1); State.Value = ArmedState.Idle; OnJudgementRemoved?.Invoke(this, lastJudgement); } } protected override void UpdateAfterChildren() { base.UpdateAfterChildren(); UpdateJudgement(false); } private List> nestedHitObjects; protected IEnumerable> NestedHitObjects => nestedHitObjects; protected virtual void AddNested(DrawableHitObject h) { if (nestedHitObjects == null) nestedHitObjects = new List>(); h.OnJudgement += (d, j) => OnJudgement?.Invoke(d, j); h.OnJudgementRemoved += (d, j) => OnJudgementRemoved?.Invoke(d, j); nestedHitObjects.Add(h); } /// /// Bind to apply a custom state which can override the default implementation. /// public event Action ApplyCustomUpdateState; protected abstract void UpdateState(ArmedState state); } }