-
Notifications
You must be signed in to change notification settings - Fork 366
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for getting osu's game mode state.
Also changed mode and status to be enums.
- Loading branch information
Showing
5 changed files
with
39 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
namespace Aurora.Profiles.Osu.GSI { | ||
public enum OsuStatus { | ||
NoFoundProcess = 1, | ||
Unkonwn = 2, | ||
SelectSong = 4, | ||
Playing = 8, | ||
Editing = 16, | ||
Rank = 32, | ||
MatchSetup = 64, | ||
Lobby = 128, | ||
Idle = 256 | ||
} | ||
|
||
public enum OsuPlayMode { | ||
Unknown = -1, | ||
Osu = 0, | ||
Taiko = 1, | ||
CatchTheBeat = 2, | ||
Mania = 3 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+512 Bytes
(110%)
Project-Aurora/Project-Aurora/Profiles/Osu/GSI/OsuSyncAuroraPlugin.dll
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters