mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 13:47:38 +08:00
50 lines
1.6 KiB
C#
50 lines
1.6 KiB
C#
// 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.
|
|
|
|
using System;
|
|
using System.Linq;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Rulesets.Objects;
|
|
using osu.Game.Rulesets.UI;
|
|
using osu.Game.Screens.Play;
|
|
|
|
namespace osu.Game.Rulesets.Mods
|
|
{
|
|
public abstract class ModCinema<T> : ModCinema, IApplicableToDrawableRuleset<T>
|
|
where T : HitObject
|
|
{
|
|
public virtual void ApplyToDrawableRuleset(DrawableRuleset<T> drawableRuleset)
|
|
{
|
|
// AlwaysPresent required for hitsounds
|
|
drawableRuleset.AlwaysPresent = true;
|
|
drawableRuleset.Hide();
|
|
}
|
|
}
|
|
|
|
public class ModCinema : ModAutoplay, IApplicableToHUD, IApplicableToPlayer
|
|
{
|
|
public override string Name => "Cinema";
|
|
public override string Acronym => "CN";
|
|
public override IconUsage? Icon => OsuIcon.ModCinema;
|
|
public override LocalisableString Description => "Watch the video without visual distractions.";
|
|
|
|
public override Type[] IncompatibleMods => base.IncompatibleMods.Append(typeof(ModAutoplay)).ToArray();
|
|
|
|
public void ApplyToHUD(HUDOverlay overlay)
|
|
{
|
|
overlay.ShowHud.Value = false;
|
|
overlay.ShowHud.Disabled = true;
|
|
}
|
|
|
|
public void ApplyToPlayer(Player player)
|
|
{
|
|
player.ApplyToBackground(b => b.IgnoreUserSettings.Value = true);
|
|
player.DimmableStoryboard.IgnoreUserSettings.Value = true;
|
|
|
|
player.BreakOverlay.Hide();
|
|
}
|
|
}
|
|
}
|