mirror of
https://github.com/Yonokid/PyTaiko.git
synced 2026-02-04 11:40:13 +01:00
Cleaned up project and placed parser in new location
This commit is contained in:
56
ABBA.osu
56
ABBA.osu
@@ -1,56 +0,0 @@
|
|||||||
osu file format v128
|
|
||||||
|
|
||||||
[General]
|
|
||||||
AudioFilename: audio.mp3
|
|
||||||
AudioLeadIn: 0
|
|
||||||
PreviewTime: -1
|
|
||||||
Countdown: 0
|
|
||||||
SampleSet: Normal
|
|
||||||
StackLeniency: 0.7
|
|
||||||
Mode: 1
|
|
||||||
LetterboxInBreaks: 0
|
|
||||||
WidescreenStoryboard: 1
|
|
||||||
|
|
||||||
[Editor]
|
|
||||||
DistanceSpacing: 1
|
|
||||||
BeatDivisor: 4
|
|
||||||
GridSize: 0
|
|
||||||
TimelineZoom: 1
|
|
||||||
|
|
||||||
[Metadata]
|
|
||||||
Title: Dancing Queen
|
|
||||||
TitleUnicode: Dancing Queen
|
|
||||||
Artist: ABBA
|
|
||||||
ArtistUnicode: ABBA
|
|
||||||
Creator: Guest
|
|
||||||
Version: New Difficulty
|
|
||||||
|
|
||||||
[Difficulty]
|
|
||||||
HPDrainRate: 5
|
|
||||||
CircleSize: 5
|
|
||||||
OverallDifficulty: 5
|
|
||||||
ApproachRate: 5
|
|
||||||
SliderMultiplier: 1.4
|
|
||||||
SliderTickRate: 1
|
|
||||||
|
|
||||||
[Events]
|
|
||||||
|
|
||||||
[TimingPoints]
|
|
||||||
0,468.7499999999998,4,1,0,100,1,0
|
|
||||||
|
|
||||||
[Colours]
|
|
||||||
Combo1: 255,192,0,255
|
|
||||||
Combo2: 0,202,0,255
|
|
||||||
Combo3: 18,124,255,255
|
|
||||||
Combo4: 242,24,57,255
|
|
||||||
|
|
||||||
[HitObjects]
|
|
||||||
256,192,3749,1,0,1:0:0:0:
|
|
||||||
256,192,4218,1,2,1:0:0:0:
|
|
||||||
256,192,4687,1,4,1:0:0:0:
|
|
||||||
256,192,5156,1,6,1:0:0:0:
|
|
||||||
256,192,5624,1,8,1:0:0:0:
|
|
||||||
256,192,6093,1,12,1:0:0:0:
|
|
||||||
256,192,6562,2,0,L|257:193,1,839.8506666666669,1:0:0:0:
|
|
||||||
256,192,10312,8,0,13124,1:0:0:0:
|
|
||||||
256,192,14062,2,4,L|257:193,1,209.96266666666673,1:0:0:0:
|
|
||||||
2623
PNames.osu
2623
PNames.osu
File diff suppressed because it is too large
Load Diff
1382
Renatus.osu
1382
Renatus.osu
File diff suppressed because it is too large
Load Diff
@@ -1 +0,0 @@
|
|||||||
../osz.py
|
|
||||||
@@ -50,8 +50,6 @@ from libs.utils import (
|
|||||||
)
|
)
|
||||||
from libs.video import VideoPlayer
|
from libs.video import VideoPlayer
|
||||||
|
|
||||||
from libs.osz import OsuParser
|
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
class DrumType(IntEnum):
|
class DrumType(IntEnum):
|
||||||
@@ -416,11 +414,8 @@ class Player:
|
|||||||
unload_offset = travel_distance / sudden_pixels_per_ms
|
unload_offset = travel_distance / sudden_pixels_per_ms
|
||||||
note.unload_ms = note.hit_ms + unload_offset
|
note.unload_ms = note.hit_ms + unload_offset
|
||||||
|
|
||||||
###from libs.osz import OsuParser
|
|
||||||
def reset_chart(self):
|
def reset_chart(self):
|
||||||
#notes, self.branch_m, self.branch_e, self.branch_n = self.tja.notes_to_position(self.difficulty)
|
notes, self.branch_m, self.branch_e, self.branch_n = self.tja.notes_to_position(self.difficulty)
|
||||||
myparse = OsuParser(Path("./Cirno.osu"))
|
|
||||||
notes = myparse.osu_NoteList
|
|
||||||
self.branch_m, self.branch_e, self.branch_n = [], [], []
|
self.branch_m, self.branch_e, self.branch_n = [], [], []
|
||||||
self.play_notes, self.draw_note_list, self.draw_bar_list = deque(apply_modifiers(notes, self.modifiers)[0]), deque(apply_modifiers(notes, self.modifiers)[1]), deque(apply_modifiers(notes, self.modifiers)[2])
|
self.play_notes, self.draw_note_list, self.draw_bar_list = deque(apply_modifiers(notes, self.modifiers)[0]), deque(apply_modifiers(notes, self.modifiers)[1]), deque(apply_modifiers(notes, self.modifiers)[2])
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user