1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 18:07:24 +08:00
osu-lazer/osu.Game/Screens/Menu/OsuLogo.cs

231 lines
7.6 KiB
C#
Raw Normal View History

2016-10-07 16:07:23 +08:00
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
2016-12-01 19:21:14 +08:00
using System.Diagnostics;
2016-11-14 16:23:33 +08:00
using osu.Framework.Allocation;
2016-10-07 16:07:23 +08:00
using osu.Framework.Graphics;
2016-12-01 19:21:14 +08:00
using osu.Framework.Graphics.Colour;
2016-10-07 16:07:23 +08:00
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
2016-11-14 16:23:33 +08:00
using osu.Framework.Graphics.Textures;
2016-10-07 16:07:23 +08:00
using osu.Framework.Graphics.Transformations;
using osu.Framework.Input;
2016-12-01 19:21:14 +08:00
using osu.Framework.MathUtils;
using osu.Game.Graphics.Backgrounds;
using OpenTK;
2016-12-01 19:21:14 +08:00
using OpenTK.Graphics;
2016-10-07 16:07:23 +08:00
2016-11-14 16:23:33 +08:00
namespace osu.Game.Screens.Menu
2016-10-07 16:07:23 +08:00
{
/// <summary>
/// osu! logo and its attachments (pulsing, visualiser etc.)
/// </summary>
2016-12-01 19:21:14 +08:00
public partial class OsuLogo : BufferedContainer
2016-10-07 16:07:23 +08:00
{
private Sprite logo;
private CircularContainer logoContainer;
2016-10-07 16:07:23 +08:00
private Container logoBounceContainer;
private MenuVisualisation vis;
2016-10-07 16:07:23 +08:00
2016-12-01 19:21:14 +08:00
private CircularContainer colourAndTriangles;
2016-10-07 16:07:23 +08:00
public Action Action;
2016-12-01 19:21:14 +08:00
public float SizeForFlow => logo == null ? 0 : logo.DrawSize.X * logo.Scale.X * logoBounceContainer.Scale.X * 0.78f;
2016-10-07 16:07:23 +08:00
private Sprite ripple;
private Container rippleContainer;
2016-12-01 19:21:14 +08:00
public bool Triangles
{
set
{
colourAndTriangles.Alpha = value ? 1 : 0;
}
}
public override bool Contains(Vector2 screenSpacePos)
{
return logoContainer.Contains(screenSpacePos);
}
2016-10-07 16:07:23 +08:00
public bool Ripple
{
get { return rippleContainer.Alpha > 0; }
set
{
rippleContainer.Alpha = value ? 1 : 0;
}
}
public bool Interactive = true;
public OsuLogo()
{
Anchor = Anchor.Centre;
Origin = Anchor.Centre;
2016-10-22 16:50:42 +08:00
AutoSizeAxes = Axes.Both;
2016-10-07 16:07:23 +08:00
Children = new Drawable[]
{
2016-10-22 16:50:42 +08:00
logoBounceContainer = new Container
2016-10-07 16:07:23 +08:00
{
2016-10-22 16:50:42 +08:00
AutoSizeAxes = Axes.Both,
2016-10-07 16:07:23 +08:00
Children = new Drawable[]
{
logoContainer = new CircularContainer
2016-10-07 16:07:23 +08:00
{
2016-10-22 17:40:04 +08:00
AutoSizeAxes = Axes.Both,
2016-10-07 16:07:23 +08:00
Anchor = Anchor.Centre,
2016-12-01 19:21:14 +08:00
Children = new Drawable[]
{
2016-12-01 19:21:14 +08:00
colourAndTriangles = new CircularContainer
{
RelativeSizeAxes = Axes.Both,
Scale = new Vector2(0.78f),
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Children = new Drawable[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = new Color4(233, 103, 161, 255),
},
new OsuLogoTriangles
{
RelativeSizeAxes = Axes.Both,
},
}
},
logo = new Sprite
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2016-12-01 19:21:14 +08:00
Scale = new Vector2(0.5f),
},
},
2016-10-07 16:07:23 +08:00
},
rippleContainer = new Container
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Children = new Drawable[]
{
ripple = new Sprite()
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
BlendingMode = BlendingMode.Additive,
2016-12-01 19:21:14 +08:00
Scale = new Vector2(0.5f),
2016-10-07 16:07:23 +08:00
Alpha = 0.05f
}
}
},
vis = new MenuVisualisation
2016-10-07 16:07:23 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Size = logo.Size,
BlendingMode = BlendingMode.Additive,
2016-10-07 16:07:23 +08:00
Alpha = 0.2f,
}
}
}
};
}
[BackgroundDependencyLoader]
private void load(TextureStore textures)
2016-10-07 16:07:23 +08:00
{
2016-12-01 19:21:14 +08:00
logo.Texture = textures.Get(@"Menu/logo@2x");
ripple.Texture = textures.Get(@"Menu/logo@2x");
2016-11-01 22:24:14 +08:00
}
protected override void LoadComplete()
{
base.LoadComplete();
2016-10-07 16:07:23 +08:00
2016-12-01 19:21:14 +08:00
ripple.ScaleTo(ripple.Scale * 1.1f, 500);
2016-10-07 16:07:23 +08:00
ripple.FadeOut(500);
ripple.Loop(300);
}
protected override bool OnMouseDown(InputState state, MouseDownEventArgs args)
{
if (!Interactive) return false;
logoBounceContainer.ScaleTo(1.1f, 1000, EasingTypes.Out);
return true;
}
protected override bool OnMouseUp(InputState state, MouseUpEventArgs args)
{
logoBounceContainer.ScaleTo(1.2f, 500, EasingTypes.OutElastic);
return true;
}
protected override bool OnClick(InputState state)
{
if (!Interactive) return false;
Action?.Invoke();
return true;
}
protected override bool OnHover(InputState state)
{
if (!Interactive) return false;
logoBounceContainer.ScaleTo(1.2f, 500, EasingTypes.OutElastic);
return true;
}
protected override void OnHoverLost(InputState state)
{
logoBounceContainer.ScaleTo(1, 500, EasingTypes.OutElastic);
}
2016-12-01 19:21:14 +08:00
class OsuLogoTriangles : Triangles
{
public OsuLogoTriangles()
{
TriangleScale = 4;
Alpha = 1;
}
public override float CornerRadius
{
get
{
return DrawSize.X / 2f;
}
set
{
Debug.Assert(false, "Cannot manually set CornerRadius of CircularContainer.");
}
}
protected override Sprite CreateTriangle()
{
var triangle = base.CreateTriangle();
triangle.Alpha = 1;
triangle.Colour = getTriangleShade();
return triangle;
}
private Color4 getTriangleShade()
{
float val = RNG.NextSingle();
return Interpolation.ValueAt(val,
new Color4(222, 91, 149, 255),
new Color4(255, 125, 183, 255),
0, 1);
}
}
2016-10-07 16:07:23 +08:00
}
}