diff --git a/meson.build b/meson.build index 6fc6ad5..feb0538 100644 --- a/meson.build +++ b/meson.build @@ -79,6 +79,8 @@ sources = [ 'src/Screens/MusicSelect/SongInfo.cpp', 'src/Screens/Gameplay/Gameplay.hpp', 'src/Screens/Gameplay/Gameplay.cpp', + 'src/Screens/Gameplay/GradedNote.cpp', + 'src/Screens/Gameplay/GradedNote.hpp', 'src/Screens/Gameplay/PreciseMusic.hpp', 'src/Screens/Gameplay/PreciseMusic.cpp', 'src/Screens/Gameplay/Silence.hpp', diff --git a/utils/jb+_to_jujube_marker.py b/utils/jb+_to_jujube_marker.py index 64f45fc..dbf5c74 100644 --- a/utils/jb+_to_jujube_marker.py +++ b/utils/jb+_to_jujube_marker.py @@ -8,7 +8,7 @@ import json class MarkerAnimation(str, Enum): APPROACH = "approach" MISS = "miss" - EARLY = "early" + POOR = "poor" GOOD = "good" GREAT = "great" PERFECT = "perfect" @@ -16,10 +16,10 @@ class MarkerAnimation(str, Enum): FILENAMES = { MarkerAnimation.APPROACH : [f'ma{i:02}.png' for i in range(16)], MarkerAnimation.MISS : [f'ma{i:02}.png' for i in range(16, 24)], - MarkerAnimation.EARLY : [f'h1{i:02}.png' for i in range(16)], + MarkerAnimation.POOR : [f'h1{i:02}.png' for i in range(16)], MarkerAnimation.GOOD : [f'h2{i:02}.png' for i in range(16)], MarkerAnimation.GREAT : [f'h3{i:02}.png' for i in range(16)], - MarkerAnimation.PERFECT : [f'h4{i:02}.png' for i in range(16)], + MarkerAnimation.PEEARLYRFECT : [f'h4{i:02}.png' for i in range(16)], } METADATA = {