Commit Graph

430 Commits

Author SHA1 Message Date
Dean Herbert b33627a750
Make transitions better. 2017-02-23 12:42:31 +09:00
Dean Herbert 8787b0dc90
Remove a lot of constants (use object initialisers instead). 2017-02-23 12:17:59 +09:00
Dean Herbert 521a9b7728
Remove need for waves array; use generic container. 2017-02-23 11:26:50 +09:00
Dean Herbert d154cf7938
Abstract wave logic to class. 2017-02-23 11:22:01 +09:00
Dean Herbert 9f367bcc0e
Fix line endings. 2017-02-23 11:16:23 +09:00
DrabWeb 79ff96de0d Typo 2017-02-22 16:38:36 -04:00
DrabWeb a58a0a4edf Fix transition stutter 2017-02-22 16:37:58 -04:00
DrabWeb cf5258ceb0 Thanks refactoring 2017-02-22 13:17:06 -04:00
DrabWeb bf1d13e734 Comply to formatting style 2017-02-22 13:12:39 -04:00
DrabWeb 8cd7ebcb43 readonly -> const 2017-02-22 13:03:19 -04:00
DrabWeb 416772e96f Update to work with latest framework 2017-02-22 12:46:38 -04:00
DrabWeb 99f1f88c75 Merge https://github.com/ppy/osu into mod-overlay 2017-02-22 12:35:55 -04:00
DrabWeb bac0431102 Fixed build failing 2017-02-22 12:28:34 -04:00
DrabWeb cc956bc8ec Newline 2017-02-22 12:23:46 -04:00
DrabWeb 584a514267 Cleanup part 2 2017-02-22 12:22:29 -04:00
DrabWeb 4821f323b8 Cleanup 2017-02-22 12:12:41 -04:00
DrabWeb 337a1004d3 Made mod disabling better 2017-02-22 11:34:22 -04:00
Thomas Müller 44bedb5407 Merge branch 'master' into chat-improvement 2017-02-22 07:36:42 +01:00
Dean Herbert 190bed8939
Add top padding. 2017-02-22 13:38:22 +09:00
Dean Herbert b7a9fd85ea
Assert single channel support for now. 2017-02-22 13:38:10 +09:00
Dean Herbert cbd061d573
Improve appearance of notifications. 2017-02-21 13:52:37 +09:00
Dean Herbert 6a83620589
Add better focus handling and padding/margin updates. 2017-02-20 21:11:09 +09:00
Dean Herbert e3fa49dda7
Naively "send" messages that the user types (doesn't arrive yet). 2017-02-20 21:10:43 +09:00
Dean Herbert 7a2eedbd7e
Add message batching per-channel. 2017-02-20 21:09:34 +09:00
Dean Herbert de87141e90 Remove unused using statements. 2017-02-19 18:39:54 +09:00
Dean Herbert aac4ba2baa Add input box to ChatOverlay. 2017-02-19 18:02:25 +09:00
Dean Herbert 0da0ef5a1b Fix padding, fonts and alignment of chat display. 2017-02-19 17:06:41 +09:00
DrabWeb 3f5d155583 Added DeselectAll 2017-02-18 11:40:05 -04:00
DrabWeb a024353574 Wave animation fine tuning 2017-02-18 11:21:41 -04:00
Dean Herbert ebc38917dc
Fix options sidebar not displaying correclty. 2017-02-18 22:29:20 +09:00
DrabWeb d1af050355 Fixed typo, made mod select take focus when visible 2017-02-18 07:50:22 -04:00
DrabWeb 006fb5502d ModSelect -> ModSelectOverlay, + WaveOverlayContainer, + ModButton selected colours, made song select OnExit not handle closing mod select 2017-02-18 07:28:22 -04:00
Dean Herbert 32ce8cf723
Audio class renames in line with framework changes. 2017-02-18 17:35:04 +09:00
Thomas Müller 4b0d6cd26b Don't rely on default relative size of ScrollContainer. 2017-02-17 20:08:28 +01:00
DrabWeb 4ccfa380f5 Added high/low multiplier indication 2017-02-16 19:09:18 -04:00
DrabWeb e0dab3490f Added toggling mods with keys 2017-02-16 19:00:18 -04:00
DrabWeb 9fc3726925 ModSelector -> ModSelect, added mod descriptions, added per-mode mod selection, changed animations and made the wave mask properly 2017-02-16 18:32:27 -04:00
DrabWeb 0a58fc62db Added mod selection overlay 2017-02-16 16:05:03 -04:00
Dean Herbert 67105e6dfd
Replace all usage of SpriteText with OsuSpriteText. 2017-02-15 21:37:43 +09:00
Jorolf d42c5481b0 Make mode selector selected line non-relative. (#352)
* mode selector line has the correct length now
* calculation is now a 'one-liner'
* Line length is absolute now
* Line length is calculated inline
2017-02-15 13:48:49 +09:00
Dean Herbert 13ed7db361 Merge branch 'master' into general-fixes 2017-02-15 01:14:25 +09:00
Dean Herbert f207da6041
Add/update license headers. 2017-02-14 18:17:35 +09:00
Dean Herbert 4f9d1a6c39 Visually disable options which aren't yet wired up. 2017-02-14 00:36:50 +09:00
Thomas Müller aaaf7163e0
Update framework. 2017-02-13 17:46:50 +09:00
Dean Herbert e32ccb6153 Move scene graph init to ctors. 2017-02-12 19:39:54 +09:00
Dean Herbert ac548dc9ec Rework notifications to be more flexible. 2017-02-12 14:50:42 +09:00
Dean Herbert a14b7eb598 NotificationManager should become visible when receiving a notification (until we implement toasts). 2017-02-12 14:50:02 +09:00
Thomas Müller d3380631e8 Handle preferred audio device correctly when it is unavailable
This commit allows loading, storing, and displaying a preferred audio
device from config even when it is unavailable.
2017-02-11 16:33:54 +01:00
Thomas Müller d79c8b9695 Update AudioDevicesOptions when devices are found or lost
This commit hooks up AudioDevicesOptions to the new events exposed by
the AudioManager of osu-framework. The device list is now updated when
new devices become available or are lost.
2017-02-11 16:29:33 +01:00
Thomas Müller 8394e2ff38 Update OptionDropDown value when items change
Items of OptionDropDown could previously already be changes on-the-fly,
but the selected value was not correctly updated (it kept the same index).
This commit addresses this problem.
2017-02-11 16:27:15 +01:00