Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
osu-fpga
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Fang Lu
osu-fpga
Commits
10558d01
Commit
10558d01
authored
7 years ago
by
Fang Lu
Browse files
Options
Downloads
Patches
Plain Diff
osufs - add resources to meta block (wip)
parent
48af2096
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
osufs/osufs/osufs.h
+100
-0
100 additions, 0 deletions
osufs/osufs/osufs.h
with
100 additions
and
0 deletions
osufs/osufs/osufs.h
+
100
−
0
View file @
10558d01
...
...
@@ -21,6 +21,106 @@ extern "C" {
char
magic
[
4
];
// 0 - 3
uint16_t
songs
;
// 4 - 5
uint32_t
available_block
;
// 6 - 9
char
meta_padding
[
6
];
// 10 - 15
// Resources
// Sounds
uint32_t
applause_begin
;
// 16 - 19
uint32_t
failsnd_begin
;
// 20 - 23
uint16_t
applause_len
;
// 24 - 25
uint16_t
failsnd_len
;
// 26 - 27
uint32_t
spinnerspin_begin
;
// 28 - 31
uint32_t
spinnerbonus_begin
;
// 32 - 35
uint16_t
spinnerspin_len
;
// 36 - 37
uint16_t
spinnerbonus_len
;
// 38 - 39
uint32_t
menuclick_begin
;
// 40 - 43
uint32_t
menuback_begin
;
// 44 - 47
uint16_t
menuclick_len
;
// 48 - 49
uint16_t
menuback_len
;
// 50 - 51
uint32_t
menuhit_begin
;
// 52 - 55
uint32_t
combobreak_begin
;
// 56 - 59
uint16_t
menuhit_len
;
// 60 - 61
uint16_t
combobreak_len
;
// 62 - 63
uint32_t
drum_hitclap_begin
;
// 64 - 67
uint32_t
drum_hitfinish_begin
;
// 68 - 71
uint16_t
drum_hitclap_len
;
// 72 - 73
uint16_t
drum_hitfinish_len
;
// 74 - 75
uint32_t
drum_hitnormal_begin
;
// 76 - 79
uint32_t
drum_hitwhistle_begin
;
// 80 - 83
uint16_t
drum_hitnormal_len
;
// 84 - 85
uint16_t
drum_hitwhistle_len
;
// 86 - 87
uint32_t
drum_sliderslide_begin
;
// 88 - 91
uint32_t
drum_slidertick_begin
;
// 92 - 95
uint16_t
drum_sliderslide_len
;
// 96 - 97
uint16_t
drum_slidertick_len
;
// 98 - 99
uint32_t
drum_sliderwhistle_begin
;
// 100 - 103
uint32_t
drum_padding_begin
;
// 104 - 107
uint16_t
drum_sliderwhistle_len
;
// 108 - 109
uint16_t
drum_padding_len
;
// 110 - 111
uint32_t
normal_hitclap_begin
;
// 112 - 115
uint32_t
normal_hitfinish_begin
;
// 116 - 119
uint16_t
normal_hitclap_len
;
// 120 - 121
uint16_t
normal_hitfinish_len
;
// 122 - 123
uint32_t
normal_hitnormal_begin
;
// 124 - 127
uint32_t
normal_hitwhistle_begin
;
// 128 - 131
uint16_t
normal_hitnormal_len
;
// 132 - 133
uint16_t
normal_hitwhistle_len
;
// 134 - 135
uint32_t
normal_sliderslide_begin
;
// 136 - 139
uint32_t
normal_slidertick_begin
;
// 140 - 143
uint16_t
normal_sliderslide_len
;
// 144 - 145
uint16_t
normal_slidertick_len
;
// 146 - 147
uint32_t
normal_sliderwhistle_begin
;
// 148 - 151
uint32_t
normal_padding_begin
;
// 152 - 155
uint16_t
normal_sliderwhistle_len
;
// 156 - 157
uint16_t
normal_padding_len
;
// 158 - 159
uint32_t
soft_hitclap_begin
;
// 160 - 163
uint32_t
soft_hitfinish_begin
;
// 164 - 167
uint16_t
soft_hitclap_len
;
// 168 - 169
uint16_t
soft_hitfinish_len
;
// 170 - 171
uint32_t
soft_hitnormal_begin
;
// 172 - 175
uint32_t
soft_hitwhistle_begin
;
// 176 - 179
uint16_t
soft_hitnormal_len
;
// 180 - 181
uint16_t
soft_hitwhistle_len
;
// 182 - 183
uint32_t
soft_sliderslide_begin
;
// 184 - 187
uint32_t
soft_slidertick_begin
;
// 188 - 191
uint16_t
soft_sliderslide_len
;
// 192 - 193
uint16_t
soft_slidertick_len
;
// 194 - 195
uint32_t
soft_sliderwhistle_begin
;
// 196 - 199
uint32_t
soft_padding_begin
;
// 200 - 203
uint16_t
soft_sliderwhistle_len
;
// 204 - 205
uint16_t
soft_padding_len
;
// 206 - 207
// Image resources
uint32_t
cursor_begin
;
uint16_t
cursor_w
;
uint16_t
cursor_h
;
uint32_t
menu_bg_begin
;
uint32_t
menu_bg_len
;
uint32_t
menu_back_begin
;
uint16_t
menu_back_w
;
uint16_t
menu_back_h
;
char
_padding
[
502
];
// 10 - 511
}
osu_meta
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment