mirror of
https://github.com/ppy/osu.git
synced 2025-02-16 05:52:55 +08:00
Merge branch 'master' into taiko_drumroll_drawable
This commit is contained in:
commit
4e50b28884
@ -61,7 +61,7 @@ namespace osu.Game.Modes.Taiko.Beatmaps
|
|||||||
if (endTimeData != null)
|
if (endTimeData != null)
|
||||||
{
|
{
|
||||||
// We compute the end time manually to add in the Bash convert factor
|
// We compute the end time manually to add in the Bash convert factor
|
||||||
return new Bash
|
return new Swell
|
||||||
{
|
{
|
||||||
StartTime = original.StartTime,
|
StartTime = original.StartTime,
|
||||||
Sample = original.Sample,
|
Sample = original.Sample,
|
||||||
|
75
osu.Game.Modes.Taiko/Objects/Drawable/DrawableSwell.cs
Normal file
75
osu.Game.Modes.Taiko/Objects/Drawable/DrawableSwell.cs
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
||||||
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||||
|
|
||||||
|
using OpenTK.Input;
|
||||||
|
using osu.Game.Modes.Objects.Drawables;
|
||||||
|
using osu.Game.Modes.Taiko.Judgements;
|
||||||
|
using System;
|
||||||
|
|
||||||
|
namespace osu.Game.Modes.Taiko.Objects.Drawable
|
||||||
|
{
|
||||||
|
public class DrawableSwell : DrawableTaikoHitObject
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The amount of times the user has hit this swell.
|
||||||
|
/// </summary>
|
||||||
|
private int userHits;
|
||||||
|
|
||||||
|
private readonly Swell swell;
|
||||||
|
|
||||||
|
public DrawableSwell(Swell swell)
|
||||||
|
: base(swell)
|
||||||
|
{
|
||||||
|
this.swell = swell;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void CheckJudgement(bool userTriggered)
|
||||||
|
{
|
||||||
|
if (userTriggered)
|
||||||
|
{
|
||||||
|
if (Time.Current < HitObject.StartTime)
|
||||||
|
return;
|
||||||
|
|
||||||
|
userHits++;
|
||||||
|
|
||||||
|
if (userHits == swell.RequiredHits)
|
||||||
|
{
|
||||||
|
Judgement.Result = HitResult.Hit;
|
||||||
|
Judgement.TaikoResult = TaikoHitResult.Great;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (Judgement.TimeOffset < 0)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (userHits > swell.RequiredHits / 2)
|
||||||
|
{
|
||||||
|
Judgement.Result = HitResult.Hit;
|
||||||
|
Judgement.TaikoResult = TaikoHitResult.Good;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
Judgement.Result = HitResult.Miss;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void UpdateState(ArmedState state)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void UpdateScrollPosition(double time)
|
||||||
|
{
|
||||||
|
base.UpdateScrollPosition(Math.Min(time, HitObject.StartTime));
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override bool HandleKeyPress(Key key)
|
||||||
|
{
|
||||||
|
if (Judgement.Result.HasValue)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
UpdateJudgement(true);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -8,14 +8,14 @@ using osu.Game.Modes.Objects.Types;
|
|||||||
|
|
||||||
namespace osu.Game.Modes.Taiko.Objects
|
namespace osu.Game.Modes.Taiko.Objects
|
||||||
{
|
{
|
||||||
public class Bash : TaikoHitObject, IHasEndTime
|
public class Swell : TaikoHitObject, IHasEndTime
|
||||||
{
|
{
|
||||||
public double EndTime { get; set; }
|
public double EndTime { get; set; }
|
||||||
|
|
||||||
public double Duration => EndTime - StartTime;
|
public double Duration => EndTime - StartTime;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The number of hits required to complete the bash successfully.
|
/// The number of hits required to complete the swell successfully.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int RequiredHits { get; protected set; }
|
public int RequiredHits { get; protected set; }
|
||||||
|
|
@ -165,7 +165,7 @@ namespace osu.Game.Modes.Taiko.Scoring
|
|||||||
SecondHit = obj.Accented
|
SecondHit = obj.Accented
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else if (obj is Bash)
|
else if (obj is Swell)
|
||||||
{
|
{
|
||||||
AddJudgement(new TaikoJudgement
|
AddJudgement(new TaikoJudgement
|
||||||
{
|
{
|
||||||
|
@ -57,14 +57,16 @@
|
|||||||
<Compile Include="Objects\Drawable\DrawableDrumRoll.cs" />
|
<Compile Include="Objects\Drawable\DrawableDrumRoll.cs" />
|
||||||
<Compile Include="Objects\Drawable\DrawableDrumRollTick.cs" />
|
<Compile Include="Objects\Drawable\DrawableDrumRollTick.cs" />
|
||||||
<Compile Include="Objects\Drawable\DrawableTaikoHitObject.cs" />
|
<Compile Include="Objects\Drawable\DrawableTaikoHitObject.cs" />
|
||||||
<Compile Include="Objects\Bash.cs" />
|
<Compile Include="Objects\Drawable\DrawableSwell.cs" />
|
||||||
|
<Compile Include="Objects\Drawable\DrawableTaikoHitObject.cs" />
|
||||||
<Compile Include="Objects\Drawable\Pieces\AccentedCirclePiece.cs" />
|
<Compile Include="Objects\Drawable\Pieces\AccentedCirclePiece.cs" />
|
||||||
|
<Compile Include="Objects\Drawable\Pieces\CirclePiece.cs" />
|
||||||
<Compile Include="Objects\DrumRoll.cs" />
|
<Compile Include="Objects\DrumRoll.cs" />
|
||||||
<Compile Include="Objects\DrumRollTick.cs" />
|
<Compile Include="Objects\DrumRollTick.cs" />
|
||||||
<Compile Include="Objects\Hit.cs" />
|
<Compile Include="Objects\Hit.cs" />
|
||||||
<Compile Include="Objects\Drawable\Pieces\CirclePiece.cs" />
|
<Compile Include="Objects\Swell.cs" />
|
||||||
<Compile Include="TaikoDifficultyCalculator.cs" />
|
|
||||||
<Compile Include="Objects\TaikoHitObject.cs" />
|
<Compile Include="Objects\TaikoHitObject.cs" />
|
||||||
|
<Compile Include="TaikoDifficultyCalculator.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="Scoring\TaikoScoreProcessor.cs" />
|
<Compile Include="Scoring\TaikoScoreProcessor.cs" />
|
||||||
<Compile Include="UI\HitTarget.cs" />
|
<Compile Include="UI\HitTarget.cs" />
|
||||||
|
Loading…
Reference in New Issue
Block a user