-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstructures.h
More file actions
77 lines (72 loc) · 1.94 KB
/
Copy pathstructures.h
File metadata and controls
77 lines (72 loc) · 1.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#pragma once
#include <string>
#include <vector>
struct TimingPoint {
double bpm;
double offset;
bool inherited;
};
struct BeatmapEntry {
std::string artistName;
std::string artistNameUnicode;
std::string songTitle;
std::string songTitleUnicode;
std::string creatorName;
std::string difficulty;
std::string audioFileName;
std::string md5Hash;
std::string osuFileName;
unsigned char rankedStatus;
unsigned short hitCircleCount;
unsigned short sliderCount;
unsigned short spinnerCount;
long long lastModificationTime;
float approachRate;
float circleSize;
float hpDrain;
float overallDifficulty;
double sliderVelocity;
std::vector<std::pair<int, double>> starRatingStd;
std::vector<std::pair<int, double>> starRatingTaiko;
std::vector<std::pair<int, double>> starRatingCTB;
std::vector<std::pair<int, double>> starRatingMania;
int drainTime;
int totalTime;
int audioPreviewTime;
std::vector<TimingPoint> timingPoints;
int difficultyId;
int beatmapId;
int threadId;
unsigned char standardGrade;
unsigned char taikoGrade;
unsigned char ctbGrade;
unsigned char maniaGrade;
unsigned short localOffset;
float stackLeniency;
unsigned char gameplayMode;
std::string songSource;
std::string songTags;
unsigned short onlineOffset;
std::string font;
bool isUnplayed;
long long lastPlayed;
bool isOsz2;
std::string folderName;
long long lastCheckedAgainstOsuRepo;
bool ignoreBeatmapSound;
bool ignoreBeatmapSkin;
bool disableStoryboard;
bool disableVideo;
bool visualOverride;
int lastModificationTime2; // Unknown int?
unsigned char maniaScrollSpeed;
};
struct OsuDbInfo {
int version;
int folderCount;
bool accountUnlocked;
long long accountUnlockDate;
std::string playerName;
int beatmapCount;
std::vector<BeatmapEntry> beatmaps;
};