mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:47:52 +08:00
55 lines
1.6 KiB
C#
55 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 osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Layout;
|
|
using osu.Game.Rulesets.Mania.Objects;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Mods
|
|
{
|
|
public class ManiaModFlashlight : ModFlashlight<ManiaHitObject>
|
|
{
|
|
public override double ScoreMultiplier => 1;
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModHidden) };
|
|
|
|
private const float default_flashlight_size = 180;
|
|
|
|
public override Flashlight CreateFlashlight() => new ManiaFlashlight();
|
|
|
|
private class ManiaFlashlight : Flashlight
|
|
{
|
|
private readonly LayoutValue flashlightProperties = new LayoutValue(Invalidation.DrawSize);
|
|
|
|
public ManiaFlashlight()
|
|
{
|
|
FlashlightSize = new Vector2(0, default_flashlight_size);
|
|
|
|
AddLayout(flashlightProperties);
|
|
}
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
|
|
if (!flashlightProperties.IsValid)
|
|
{
|
|
FlashlightSize = new Vector2(DrawWidth, FlashlightSize.Y);
|
|
|
|
FlashlightPosition = DrawPosition + DrawSize / 2;
|
|
flashlightProperties.Validate();
|
|
}
|
|
}
|
|
|
|
protected override void OnComboChange(ValueChangedEvent<int> e)
|
|
{
|
|
}
|
|
|
|
protected override string FragmentShader => "RectangularFlashlight";
|
|
}
|
|
}
|
|
}
|