2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-08-26 11:28:23 +08:00
|
|
|
|
|
2016-10-06 20:10:01 +08:00
|
|
|
|
using System;
|
2016-10-04 16:15:03 +08:00
|
|
|
|
using osu.Framework.Configuration;
|
2017-02-17 17:59:30 +08:00
|
|
|
|
using osu.Framework.Screens;
|
2016-08-26 11:28:23 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2016-09-01 18:06:09 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-10-07 23:43:06 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2016-10-01 17:01:52 +08:00
|
|
|
|
using osu.Game.Overlays;
|
2016-10-07 23:43:06 +08:00
|
|
|
|
using osu.Framework.Input;
|
|
|
|
|
using osu.Game.Input;
|
|
|
|
|
using OpenTK.Input;
|
2016-10-14 19:09:35 +08:00
|
|
|
|
using osu.Framework.Logging;
|
2016-10-26 17:45:48 +08:00
|
|
|
|
using osu.Game.Graphics.UserInterface.Volume;
|
2016-11-05 06:06:58 +08:00
|
|
|
|
using osu.Game.Database;
|
2016-11-09 07:13:20 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2017-02-25 20:12:39 +08:00
|
|
|
|
using osu.Framework.Graphics.Transforms;
|
2016-12-05 18:33:38 +08:00
|
|
|
|
using osu.Framework.Timing;
|
2016-11-14 17:03:20 +08:00
|
|
|
|
using osu.Game.Modes;
|
2016-12-01 13:22:29 +08:00
|
|
|
|
using osu.Game.Overlays.Toolbar;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Game.Screens;
|
|
|
|
|
using osu.Game.Screens.Menu;
|
2017-01-30 21:00:23 +08:00
|
|
|
|
using OpenTK;
|
2017-02-05 05:03:39 +08:00
|
|
|
|
using System.Linq;
|
2017-02-08 18:32:55 +08:00
|
|
|
|
using osu.Framework.Graphics.Primitives;
|
2017-02-12 13:53:33 +08:00
|
|
|
|
using System.Collections.Generic;
|
2017-02-24 17:10:37 +08:00
|
|
|
|
using System.Threading.Tasks;
|
2017-02-15 11:37:57 +08:00
|
|
|
|
using osu.Game.Overlays.Notifications;
|
2016-08-26 11:28:23 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game
|
|
|
|
|
{
|
2016-09-23 23:39:20 +08:00
|
|
|
|
public class OsuGame : OsuGameBase
|
2016-08-26 11:28:23 +08:00
|
|
|
|
{
|
2017-02-17 19:07:11 +08:00
|
|
|
|
public virtual bool IsDeployedBuild => false;
|
|
|
|
|
|
2016-10-01 17:01:52 +08:00
|
|
|
|
public Toolbar Toolbar;
|
2016-11-09 14:23:10 +08:00
|
|
|
|
|
2016-11-30 14:15:43 +08:00
|
|
|
|
private ChatOverlay chat;
|
2016-11-09 14:23:10 +08:00
|
|
|
|
|
2016-11-11 12:30:57 +08:00
|
|
|
|
private MusicController musicController;
|
|
|
|
|
|
2017-02-10 15:26:43 +08:00
|
|
|
|
private NotificationManager notificationManager;
|
|
|
|
|
|
2017-02-28 14:09:36 +08:00
|
|
|
|
private DialogOverlay dialogOverlay;
|
|
|
|
|
|
2017-02-17 19:07:11 +08:00
|
|
|
|
private Intro intro
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
Screen s = screenStack;
|
|
|
|
|
while (s != null && !(s is Intro))
|
|
|
|
|
s = s.ChildScreen;
|
|
|
|
|
return s as Intro;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-09 14:23:10 +08:00
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
private OsuScreen screenStack;
|
2016-10-04 16:15:03 +08:00
|
|
|
|
|
2016-10-26 17:45:48 +08:00
|
|
|
|
private VolumeControl volume;
|
|
|
|
|
|
2016-10-04 16:15:03 +08:00
|
|
|
|
public Bindable<PlayMode> PlayMode;
|
2016-10-13 22:21:15 +08:00
|
|
|
|
|
2016-10-21 17:25:22 +08:00
|
|
|
|
string[] args;
|
|
|
|
|
|
2016-12-02 17:43:01 +08:00
|
|
|
|
private OptionsOverlay options;
|
2016-11-08 18:26:12 +08:00
|
|
|
|
|
2016-10-21 17:25:22 +08:00
|
|
|
|
public OsuGame(string[] args = null)
|
2016-10-11 04:56:01 +08:00
|
|
|
|
{
|
|
|
|
|
this.args = args;
|
|
|
|
|
}
|
2016-10-01 17:01:52 +08:00
|
|
|
|
|
2016-12-02 17:43:01 +08:00
|
|
|
|
public void ToggleOptions() => options.ToggleVisibility();
|
2016-11-12 18:44:16 +08:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
2016-08-26 11:28:23 +08:00
|
|
|
|
{
|
2016-10-11 04:56:01 +08:00
|
|
|
|
if (!Host.IsPrimaryInstance)
|
|
|
|
|
{
|
2016-10-15 02:10:01 +08:00
|
|
|
|
Logger.Log(@"osu! does not support multiple running instances.", LoggingTarget.Runtime, LogLevel.Error);
|
2016-10-11 04:56:01 +08:00
|
|
|
|
Environment.Exit(0);
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-21 17:25:22 +08:00
|
|
|
|
if (args?.Length > 0)
|
2017-02-12 13:53:33 +08:00
|
|
|
|
{
|
|
|
|
|
var paths = args.Where(a => !a.StartsWith(@"-"));
|
2017-02-24 17:10:37 +08:00
|
|
|
|
ImportBeatmapsAsync(paths);
|
2017-02-12 13:53:33 +08:00
|
|
|
|
}
|
2016-10-21 17:25:22 +08:00
|
|
|
|
|
2016-11-11 06:40:42 +08:00
|
|
|
|
Dependencies.Cache(this);
|
|
|
|
|
|
2017-01-25 17:39:41 +08:00
|
|
|
|
PlayMode = LocalConfig.GetBindable<PlayMode>(OsuConfig.PlayMode);
|
2016-11-13 01:34:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-24 17:10:37 +08:00
|
|
|
|
protected async void ImportBeatmapsAsync(IEnumerable<string> paths)
|
2017-02-05 05:03:39 +08:00
|
|
|
|
{
|
2017-02-24 17:10:37 +08:00
|
|
|
|
await Task.Run(() => BeatmapDatabase.Import(paths));
|
2017-02-05 05:03:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-13 01:34:36 +08:00
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
2016-11-01 22:24:14 +08:00
|
|
|
|
|
2016-09-30 17:45:55 +08:00
|
|
|
|
Add(new Drawable[] {
|
2016-10-26 17:45:48 +08:00
|
|
|
|
new VolumeControlReceptor
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2016-11-15 14:22:14 +08:00
|
|
|
|
ActionRequested = delegate(InputState state) { volume.Adjust(state); }
|
2016-10-26 17:45:48 +08:00
|
|
|
|
},
|
2016-11-01 22:24:14 +08:00
|
|
|
|
mainContent = new Container
|
2016-10-04 16:15:03 +08:00
|
|
|
|
{
|
2016-11-01 22:24:14 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2016-10-04 16:15:03 +08:00
|
|
|
|
},
|
2016-11-23 19:26:46 +08:00
|
|
|
|
volume = new VolumeControl(),
|
2016-11-09 14:23:10 +08:00
|
|
|
|
overlayContent = new Container{ RelativeSizeAxes = Axes.Both },
|
2016-10-07 23:43:06 +08:00
|
|
|
|
new GlobalHotkeys //exists because UserInputManager is at a level below us.
|
|
|
|
|
{
|
|
|
|
|
Handler = globalHotkeyPressed
|
2016-10-07 02:05:26 +08:00
|
|
|
|
}
|
2016-09-30 17:45:55 +08:00
|
|
|
|
});
|
2016-10-04 16:15:03 +08:00
|
|
|
|
|
2017-02-24 05:32:10 +08:00
|
|
|
|
(screenStack = new Loader()).LoadAsync(this, d =>
|
2016-11-01 22:24:14 +08:00
|
|
|
|
{
|
2017-02-17 17:59:30 +08:00
|
|
|
|
screenStack.ModePushed += screenAdded;
|
|
|
|
|
screenStack.Exited += screenRemoved;
|
|
|
|
|
mainContent.Add(screenStack);
|
2016-11-01 22:24:14 +08:00
|
|
|
|
});
|
|
|
|
|
|
2016-11-09 14:23:10 +08:00
|
|
|
|
//overlay elements
|
2017-02-24 05:32:10 +08:00
|
|
|
|
(chat = new ChatOverlay { Depth = 0 }).LoadAsync(this, overlayContent.Add);
|
|
|
|
|
(options = new OptionsOverlay { Depth = -1 }).LoadAsync(this, overlayContent.Add);
|
2017-01-30 21:00:23 +08:00
|
|
|
|
(musicController = new MusicController()
|
|
|
|
|
{
|
2017-01-31 16:05:54 +08:00
|
|
|
|
Depth = -2,
|
2017-01-30 21:00:23 +08:00
|
|
|
|
Position = new Vector2(0, Toolbar.HEIGHT),
|
2017-01-30 21:53:50 +08:00
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
2017-02-24 05:32:10 +08:00
|
|
|
|
}).LoadAsync(this, overlayContent.Add);
|
2016-12-02 17:43:01 +08:00
|
|
|
|
|
2017-02-10 15:26:43 +08:00
|
|
|
|
(notificationManager = new NotificationManager
|
|
|
|
|
{
|
|
|
|
|
Depth = -2,
|
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
2017-02-24 05:32:10 +08:00
|
|
|
|
}).LoadAsync(this, overlayContent.Add);
|
2017-02-10 15:26:43 +08:00
|
|
|
|
|
2017-02-28 14:09:36 +08:00
|
|
|
|
(dialogOverlay = new DialogOverlay
|
|
|
|
|
{
|
|
|
|
|
Depth = -4,
|
|
|
|
|
}).LoadAsync(this, overlayContent.Add);
|
|
|
|
|
|
2017-02-15 11:37:57 +08:00
|
|
|
|
Logger.NewEntry += entry =>
|
|
|
|
|
{
|
|
|
|
|
if (entry.Level < LogLevel.Important) return;
|
|
|
|
|
|
|
|
|
|
notificationManager.Post(new SimpleNotification
|
|
|
|
|
{
|
|
|
|
|
Text = $@"{entry.Level}: {entry.Message}"
|
|
|
|
|
});
|
|
|
|
|
};
|
|
|
|
|
|
2016-12-02 17:43:01 +08:00
|
|
|
|
Dependencies.Cache(options);
|
|
|
|
|
Dependencies.Cache(musicController);
|
2017-02-10 15:26:43 +08:00
|
|
|
|
Dependencies.Cache(notificationManager);
|
2017-02-28 14:09:36 +08:00
|
|
|
|
Dependencies.Cache(dialogOverlay);
|
2016-12-02 17:43:01 +08:00
|
|
|
|
|
2016-11-01 22:24:14 +08:00
|
|
|
|
(Toolbar = new Toolbar
|
|
|
|
|
{
|
2017-01-31 16:05:54 +08:00
|
|
|
|
Depth = -3,
|
2017-02-17 19:07:11 +08:00
|
|
|
|
OnHome = delegate { intro?.ChildScreen?.MakeCurrent(); },
|
2016-11-01 22:24:14 +08:00
|
|
|
|
OnPlayModeChange = delegate (PlayMode m) { PlayMode.Value = m; },
|
2017-02-24 05:32:10 +08:00
|
|
|
|
}).LoadAsync(this, t =>
|
2016-11-01 22:24:14 +08:00
|
|
|
|
{
|
|
|
|
|
PlayMode.ValueChanged += delegate { Toolbar.SetGameMode(PlayMode.Value); };
|
|
|
|
|
PlayMode.TriggerChange();
|
2016-11-09 14:23:10 +08:00
|
|
|
|
overlayContent.Add(Toolbar);
|
2016-11-01 22:24:14 +08:00
|
|
|
|
});
|
2016-10-06 20:10:01 +08:00
|
|
|
|
|
2016-12-02 17:43:01 +08:00
|
|
|
|
options.StateChanged += delegate
|
2016-11-30 17:28:08 +08:00
|
|
|
|
{
|
2016-12-02 17:43:01 +08:00
|
|
|
|
switch (options.State)
|
2016-11-30 17:28:08 +08:00
|
|
|
|
{
|
|
|
|
|
case Visibility.Hidden:
|
|
|
|
|
intro.MoveToX(0, OptionsOverlay.TRANSITION_LENGTH, EasingTypes.OutQuint);
|
|
|
|
|
break;
|
|
|
|
|
case Visibility.Visible:
|
|
|
|
|
intro.MoveToX(OptionsOverlay.SIDEBAR_WIDTH / 2, OptionsOverlay.TRANSITION_LENGTH, EasingTypes.OutQuint);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
2016-10-06 20:10:01 +08:00
|
|
|
|
Cursor.Alpha = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-07 23:43:06 +08:00
|
|
|
|
private bool globalHotkeyPressed(InputState state, KeyDownEventArgs args)
|
|
|
|
|
{
|
2016-12-05 18:33:38 +08:00
|
|
|
|
if (args.Repeat) return false;
|
|
|
|
|
|
2016-10-07 23:43:06 +08:00
|
|
|
|
switch (args.Key)
|
|
|
|
|
{
|
|
|
|
|
case Key.F8:
|
2016-11-09 14:23:10 +08:00
|
|
|
|
chat.ToggleVisibility();
|
2016-10-07 23:43:06 +08:00
|
|
|
|
return true;
|
2016-12-05 18:33:38 +08:00
|
|
|
|
case Key.PageUp:
|
|
|
|
|
case Key.PageDown:
|
|
|
|
|
var rate = ((Clock as ThrottledFrameClock).Source as StopwatchClock).Rate * (args.Key == Key.PageUp ? 1.1f : 0.9f);
|
|
|
|
|
((Clock as ThrottledFrameClock).Source as StopwatchClock).Rate = rate;
|
|
|
|
|
Logger.Log($@"Adjusting game clock to {rate}", LoggingTarget.Debug);
|
|
|
|
|
return true;
|
2016-10-07 23:43:06 +08:00
|
|
|
|
}
|
2016-10-13 22:21:15 +08:00
|
|
|
|
|
2016-11-08 18:27:37 +08:00
|
|
|
|
if (state.Keyboard.ControlPressed)
|
|
|
|
|
{
|
|
|
|
|
switch (args.Key)
|
|
|
|
|
{
|
2017-02-08 18:28:18 +08:00
|
|
|
|
case Key.T:
|
|
|
|
|
Toolbar.ToggleVisibility();
|
|
|
|
|
return true;
|
2016-11-08 18:27:37 +08:00
|
|
|
|
case Key.O:
|
2016-12-02 17:43:01 +08:00
|
|
|
|
options.ToggleVisibility();
|
2016-11-08 18:27:37 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-27 23:18:12 +08:00
|
|
|
|
return false;
|
2016-10-07 23:43:06 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-18 13:16:46 +08:00
|
|
|
|
public event Action<Screen> ModeChanged;
|
2016-10-06 20:10:01 +08:00
|
|
|
|
|
2016-11-01 22:24:14 +08:00
|
|
|
|
private Container mainContent;
|
|
|
|
|
|
2016-11-09 14:23:10 +08:00
|
|
|
|
private Container overlayContent;
|
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
private void modeChanged(Screen newScreen)
|
2016-10-06 20:10:01 +08:00
|
|
|
|
{
|
|
|
|
|
//central game mode change logic.
|
2017-02-17 17:59:30 +08:00
|
|
|
|
if ((newScreen as OsuScreen)?.ShowOverlays != true)
|
2016-10-06 22:32:56 +08:00
|
|
|
|
{
|
2016-10-13 22:21:15 +08:00
|
|
|
|
Toolbar.State = Visibility.Hidden;
|
2016-11-15 19:43:43 +08:00
|
|
|
|
musicController.State = Visibility.Hidden;
|
2016-11-09 14:22:54 +08:00
|
|
|
|
chat.State = Visibility.Hidden;
|
2016-10-06 22:32:56 +08:00
|
|
|
|
}
|
2016-10-06 20:10:01 +08:00
|
|
|
|
else
|
2016-10-06 22:32:56 +08:00
|
|
|
|
{
|
2016-10-13 22:21:15 +08:00
|
|
|
|
Toolbar.State = Visibility.Visible;
|
2016-10-06 22:32:56 +08:00
|
|
|
|
}
|
2016-10-06 20:10:01 +08:00
|
|
|
|
|
2017-02-17 19:07:11 +08:00
|
|
|
|
if (newScreen is MainMenu)
|
|
|
|
|
Cursor.FadeIn(100);
|
2016-10-06 20:10:01 +08:00
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
ModeChanged?.Invoke(newScreen);
|
2016-10-07 17:46:05 +08:00
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
if (newScreen == null)
|
2017-02-17 14:33:08 +08:00
|
|
|
|
Exit();
|
2016-10-06 20:10:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-10-07 18:12:36 +08:00
|
|
|
|
protected override bool OnExiting()
|
|
|
|
|
{
|
2017-02-18 13:16:46 +08:00
|
|
|
|
if (screenStack.ChildScreen == null) return false;
|
|
|
|
|
|
|
|
|
|
if (intro == null) return true;
|
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
if (!intro.DidLoadMenu || intro.ChildScreen != null)
|
2016-10-07 18:12:36 +08:00
|
|
|
|
{
|
2017-02-17 14:33:08 +08:00
|
|
|
|
Scheduler.Add(intro.MakeCurrent);
|
2016-10-07 18:12:36 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2016-10-13 22:21:15 +08:00
|
|
|
|
|
2016-10-07 18:12:36 +08:00
|
|
|
|
return base.OnExiting();
|
|
|
|
|
}
|
|
|
|
|
|
2017-02-08 18:32:55 +08:00
|
|
|
|
protected override void UpdateAfterChildren()
|
|
|
|
|
{
|
|
|
|
|
base.UpdateAfterChildren();
|
|
|
|
|
|
2017-02-17 19:07:11 +08:00
|
|
|
|
if (intro?.ChildScreen != null)
|
|
|
|
|
intro.ChildScreen.Padding = new MarginPadding { Top = Toolbar.Position.Y + Toolbar.DrawHeight };
|
2017-02-08 18:32:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
private void screenAdded(Screen newScreen)
|
2016-10-06 20:10:01 +08:00
|
|
|
|
{
|
2017-02-17 17:59:30 +08:00
|
|
|
|
newScreen.ModePushed += screenAdded;
|
|
|
|
|
newScreen.Exited += screenRemoved;
|
2016-10-06 20:10:01 +08:00
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
modeChanged(newScreen);
|
2016-10-06 20:10:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
private void screenRemoved(Screen newScreen)
|
2016-10-06 20:10:01 +08:00
|
|
|
|
{
|
2017-02-17 17:59:30 +08:00
|
|
|
|
modeChanged(newScreen);
|
2016-08-26 11:28:23 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|