From 4a01d5972ffe686e9d6f4b0bb8bcbb9777a13384 Mon Sep 17 00:00:00 2001 From: srb2thepast Date: Thu, 26 Jan 2023 16:35:31 -0500 Subject: [PATCH] Renamed ObjectDiff container --- .../Screens/ObjectInspection/CatchObjectInspectorRuleset.cs | 4 ++-- .../{DebugValueList.cs => ObjectDifficultyValuesContainer.cs} | 0 .../Screens/ObjectInspection/ObjectInspector.cs | 4 ++-- .../Screens/ObjectInspection/TaikoObjectInspectorRuleset.cs | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) rename PerformanceCalculatorGUI/Screens/ObjectInspection/{DebugValueList.cs => ObjectDifficultyValuesContainer.cs} (100%) diff --git a/PerformanceCalculatorGUI/Screens/ObjectInspection/CatchObjectInspectorRuleset.cs b/PerformanceCalculatorGUI/Screens/ObjectInspection/CatchObjectInspectorRuleset.cs index 77b9f39..c5bdd6d 100644 --- a/PerformanceCalculatorGUI/Screens/ObjectInspection/CatchObjectInspectorRuleset.cs +++ b/PerformanceCalculatorGUI/Screens/ObjectInspection/CatchObjectInspectorRuleset.cs @@ -23,7 +23,7 @@ namespace PerformanceCalculatorGUI.Screens.ObjectInspection private readonly CatchDifficultyHitObject[] difficultyHitObjects; [Resolved] - private DebugValueList debugValueList { get; set; } + private ObjectDifficultyValuesContainer debugValueList { get; set; } private DifficultyHitObject lasthit; @@ -52,7 +52,7 @@ namespace PerformanceCalculatorGUI.Screens.ObjectInspection } } - public void UpdateDebugList(DebugValueList valueList, DifficultyHitObject curDiffHit) + public void UpdateDebugList(ObjectDifficultyValuesContainer valueList, DifficultyHitObject curDiffHit) { CatchDifficultyHitObject catchDiffHit = (CatchDifficultyHitObject)curDiffHit; string groupName = catchDiffHit.BaseObject.GetType().Name; diff --git a/PerformanceCalculatorGUI/Screens/ObjectInspection/DebugValueList.cs b/PerformanceCalculatorGUI/Screens/ObjectInspection/ObjectDifficultyValuesContainer.cs similarity index 100% rename from PerformanceCalculatorGUI/Screens/ObjectInspection/DebugValueList.cs rename to PerformanceCalculatorGUI/Screens/ObjectInspection/ObjectDifficultyValuesContainer.cs diff --git a/PerformanceCalculatorGUI/Screens/ObjectInspection/ObjectInspector.cs b/PerformanceCalculatorGUI/Screens/ObjectInspection/ObjectInspector.cs index 36ff0b3..5752c22 100644 --- a/PerformanceCalculatorGUI/Screens/ObjectInspection/ObjectInspector.cs +++ b/PerformanceCalculatorGUI/Screens/ObjectInspection/ObjectInspector.cs @@ -55,7 +55,7 @@ namespace PerformanceCalculatorGUI.Screens.ObjectInspection private EditorClock clock; private Container inspectContainer; - private DebugValueList values; + private ObjectDifficultyValuesContainer values; protected override bool BlockNonPositionalInput => true; @@ -127,7 +127,7 @@ namespace PerformanceCalculatorGUI.Screens.ObjectInspection RelativeSizeAxes = Axes.Both, Children = new Drawable[] { - values = new DebugValueList() { Clock = clock }, + values = new ObjectDifficultyValuesContainer() { Clock = clock }, new Container { Name = "Bottom bar", diff --git a/PerformanceCalculatorGUI/Screens/ObjectInspection/TaikoObjectInspectorRuleset.cs b/PerformanceCalculatorGUI/Screens/ObjectInspection/TaikoObjectInspectorRuleset.cs index 3eca45f..86f908e 100644 --- a/PerformanceCalculatorGUI/Screens/ObjectInspection/TaikoObjectInspectorRuleset.cs +++ b/PerformanceCalculatorGUI/Screens/ObjectInspection/TaikoObjectInspectorRuleset.cs @@ -24,7 +24,7 @@ namespace PerformanceCalculatorGUI.Screens.ObjectInspection private readonly TaikoDifficultyHitObject[] difficultyHitObjects; [Resolved] - private DebugValueList debugValueList { get; set; } + private ObjectDifficultyValuesContainer debugValueList { get; set; } private DifficultyHitObject lasthit; @@ -52,7 +52,7 @@ namespace PerformanceCalculatorGUI.Screens.ObjectInspection } } - protected void UpdateDebugList(DebugValueList valueList, DifficultyHitObject curDiffHit) + protected void UpdateDebugList(ObjectDifficultyValuesContainer valueList, DifficultyHitObject curDiffHit) { TaikoDifficultyHitObject taikoDiffHit = (TaikoDifficultyHitObject)curDiffHit;