forked from ppy/osu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ppy#4 from HeBuwei/replace-tuples
Replace giant tuples with classes
- Loading branch information
Showing
5 changed files
with
71 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence. | ||
// See the LICENCE file in the repository root for full licence text. | ||
|
||
namespace osu.Game.Rulesets.Osu.Difficulty.Skills | ||
{ | ||
public class AimAttributes | ||
{ | ||
public double FcProbabilityThroughput; | ||
public double HiddenFactor; | ||
public double[] ComboThroughputs; | ||
public double[] MissThroughputs; | ||
public double[] MissCounts; | ||
public double CheeseNoteCount; | ||
public double[] CheeseLevels; | ||
public double[] CheeseFactors; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence. | ||
// See the LICENCE file in the repository root for full licence text. | ||
|
||
using System.Collections.Generic; | ||
using MathNet.Numerics.LinearAlgebra; | ||
|
||
namespace osu.Game.Rulesets.Osu.Difficulty.Skills | ||
{ | ||
public class TapAttributes | ||
{ | ||
public double TapDifficulty; | ||
public double StreamNoteCount; | ||
public double MashedTapDifficulty; | ||
public List<Vector<double>> StrainHistory; | ||
} | ||
} |