1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 03:27:24 +08:00
osu-lazer/osu.Game/Graphics/ScreenshotManager.cs

213 lines
7.9 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
using System;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
2020-02-07 04:02:03 +08:00
using osu.Framework.Graphics;
2018-04-13 17:19:50 +08:00
using osu.Framework.Input;
using osu.Framework.Input.Bindings;
2021-09-16 17:26:12 +08:00
using osu.Framework.Input.Events;
2018-04-13 17:19:50 +08:00
using osu.Framework.Platform;
using osu.Framework.Threading;
2018-04-13 17:19:50 +08:00
using osu.Game.Configuration;
using osu.Game.Input.Bindings;
using osu.Game.Online.Multiplayer;
2018-04-13 17:19:50 +08:00
using osu.Game.Overlays;
using osu.Game.Overlays.Notifications;
using SixLabors.ImageSharp;
2020-07-24 14:00:18 +08:00
using SixLabors.ImageSharp.Formats.Jpeg;
using SixLabors.ImageSharp.PixelFormats;
using SixLabors.ImageSharp.Processing;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Graphics
{
2022-11-24 13:32:20 +08:00
public partial class ScreenshotManager : Component, IKeyBindingHandler<GlobalAction>, IHandleGlobalKeyboardInput
2018-04-13 17:19:50 +08:00
{
private readonly BindableBool cursorVisibility = new BindableBool(true);
/// <summary>
2018-04-13 20:15:08 +08:00
/// Changed when screenshots are being or have finished being taken, to control whether cursors should be visible.
/// If cursors should not be visible, cursors have 3 frames to hide themselves.
/// </summary>
public IBindable<bool> CursorVisibility => cursorVisibility;
2024-01-25 13:18:20 +08:00
[Resolved]
private GameHost host { get; set; } = null!;
2020-02-14 21:14:00 +08:00
[Resolved]
2024-01-25 13:18:20 +08:00
private Clipboard clipboard { get; set; } = null!;
2020-02-14 21:14:00 +08:00
2023-07-11 17:42:31 +08:00
[Resolved]
2024-01-25 13:18:20 +08:00
private INotificationOverlay notificationOverlay { get; set; } = null!;
2023-07-11 17:42:31 +08:00
[Resolved]
private OsuConfigManager config { get; set; } = null!;
2024-01-25 13:18:20 +08:00
private Storage storage = null!;
2020-02-14 21:14:00 +08:00
2024-01-25 13:18:20 +08:00
private Sample? shutter;
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load(Storage storage, AudioManager audio)
2018-04-13 17:19:50 +08:00
{
this.storage = storage.GetStorageForDirectory(@"screenshots");
shutter = audio.Samples.Get("UI/shutter");
2018-04-13 17:19:50 +08:00
}
2021-09-16 17:26:12 +08:00
public bool OnPressed(KeyBindingPressEvent<GlobalAction> e)
2018-04-13 17:19:50 +08:00
{
if (e.Repeat)
return false;
2021-09-16 17:26:12 +08:00
switch (e.Action)
2018-04-13 17:19:50 +08:00
{
case GlobalAction.TakeScreenshot:
2024-01-25 13:18:20 +08:00
shutter?.Play();
TakeScreenshotAsync().FireAndForget();
2018-04-13 17:19:50 +08:00
return true;
}
return false;
}
2021-09-16 17:26:12 +08:00
public void OnReleased(KeyBindingReleaseEvent<GlobalAction> e)
{
}
2018-04-13 17:19:50 +08:00
private volatile int screenShotTasks;
2018-08-29 19:57:48 +08:00
public Task TakeScreenshotAsync() => Task.Run(async () =>
2018-04-13 17:19:50 +08:00
{
Interlocked.Increment(ref screenShotTasks);
ScreenshotFormat screenshotFormat = config.Get<ScreenshotFormat>(OsuSetting.ScreenshotFormat);
bool captureMenuCursor = config.Get<bool>(OsuSetting.ScreenshotCaptureMenuCursor);
try
{
if (!captureMenuCursor)
{
cursorVisibility.Value = false;
// We need to wait for at most 3 draw nodes to be drawn, following which we can be assured at least one DrawNode has been generated/drawn with the set value
const int frames_to_wait = 3;
int framesWaited = 0;
using (ManualResetEventSlim framesWaitedEvent = new ManualResetEventSlim(false))
{
ScheduledDelegate waitDelegate = host.DrawThread.Scheduler.AddDelayed(() =>
{
if (framesWaited++ >= frames_to_wait)
// ReSharper disable once AccessToDisposedClosure
framesWaitedEvent.Set();
}, 10, true);
if (!framesWaitedEvent.Wait(1000))
throw new TimeoutException("Screenshot data did not arrive in a timely fashion");
waitDelegate.Cancel();
}
}
using (Image<Rgba32>? image = await host.TakeScreenshotAsync().ConfigureAwait(false))
{
2024-01-25 13:30:26 +08:00
if (config.Get<ScalingMode>(OsuSetting.Scaling) == ScalingMode.Everything)
{
2024-01-25 13:30:26 +08:00
float posX = config.Get<float>(OsuSetting.ScalingPositionX);
float posY = config.Get<float>(OsuSetting.ScalingPositionY);
float sizeX = config.Get<float>(OsuSetting.ScalingSizeX);
float sizeY = config.Get<float>(OsuSetting.ScalingSizeY);
image.Mutate(m =>
{
2024-01-25 13:30:26 +08:00
Rectangle rect = new Rectangle(Point.Empty, m.GetCurrentSize());
// Reduce size by user scale settings...
int sx = (rect.Width - (int)(rect.Width * sizeX)) / 2;
int sy = (rect.Height - (int)(rect.Height * sizeY)) / 2;
rect.Inflate(-sx, -sy);
2024-01-25 13:30:26 +08:00
// ...then adjust the region based on their positional offset.
rect.X = (int)(rect.X * posX) * 2;
rect.Y = (int)(rect.Y * posY) * 2;
2024-01-25 13:30:26 +08:00
m.Crop(rect);
});
}
2023-07-11 17:42:31 +08:00
clipboard.SetImage(image);
2022-02-18 01:43:36 +08:00
(string? filename, Stream? stream) = getWritableStream(screenshotFormat);
2018-04-13 17:19:50 +08:00
if (filename == null) return;
2018-04-13 17:19:50 +08:00
using (stream)
2021-10-26 13:05:07 +08:00
{
switch (screenshotFormat)
{
case ScreenshotFormat.Png:
await image.SaveAsPngAsync(stream).ConfigureAwait(false);
break;
2019-04-01 11:44:46 +08:00
case ScreenshotFormat.Jpg:
const int jpeg_quality = 92;
await image.SaveAsJpegAsync(stream, new JpegEncoder { Quality = jpeg_quality }).ConfigureAwait(false);
break;
2019-04-01 11:44:46 +08:00
default:
throw new InvalidOperationException($"Unknown enum member {nameof(ScreenshotFormat)} {screenshotFormat}.");
}
2021-10-26 13:05:07 +08:00
}
2018-04-13 17:19:50 +08:00
notificationOverlay.Post(new SimpleNotification
2018-04-13 17:19:50 +08:00
{
Text = $"Screenshot {filename} saved!",
Activated = () =>
{
storage.PresentFileExternally(filename);
return true;
}
});
}
}
finally
{
if (Interlocked.Decrement(ref screenShotTasks) == 0)
cursorVisibility.Value = true;
2018-04-13 17:19:50 +08:00
}
});
private static readonly object filename_reservation_lock = new object();
private (string? filename, Stream? stream) getWritableStream(ScreenshotFormat format)
2018-04-13 17:19:50 +08:00
{
lock (filename_reservation_lock)
{
DateTime dt = DateTime.Now;
string fileExt = format.ToString().ToLowerInvariant();
2018-04-13 17:19:50 +08:00
string withoutIndex = $"osu_{dt:yyyy-MM-dd_HH-mm-ss}.{fileExt}";
if (!storage.Exists(withoutIndex))
return (withoutIndex, storage.GetStream(withoutIndex, FileAccess.Write, FileMode.Create));
2018-04-13 17:19:50 +08:00
for (ulong i = 1; i < ulong.MaxValue; i++)
{
string indexedName = $"osu_{dt:yyyy-MM-dd_HH-mm-ss}-{i}.{fileExt}";
if (!storage.Exists(indexedName))
return (indexedName, storage.GetStream(indexedName, FileAccess.Write, FileMode.Create));
}
2018-04-13 17:19:50 +08:00
return (null, null);
}
2018-04-13 17:19:50 +08:00
}
}
}