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-09-30 17:46:34 +08:00
|
|
|
|
using System;
|
2016-08-26 11:28:23 +08:00
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using OpenTK;
|
2016-10-01 17:40:14 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2016-08-26 11:28:23 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Graphics.Processing
|
|
|
|
|
{
|
2017-03-07 09:59:19 +08:00
|
|
|
|
internal class RatioAdjust : Container
|
2016-08-26 11:28:23 +08:00
|
|
|
|
{
|
2016-10-01 17:40:14 +08:00
|
|
|
|
public RatioAdjust()
|
|
|
|
|
{
|
2017-03-16 16:38:36 +08:00
|
|
|
|
AlwaysReceiveInput = true;
|
2016-10-01 17:40:14 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-26 11:28:23 +08:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
2016-10-19 00:53:31 +08:00
|
|
|
|
Vector2 parent = Parent.DrawSize;
|
2016-09-30 17:46:34 +08:00
|
|
|
|
|
|
|
|
|
Scale = new Vector2(Math.Min(parent.Y / 768f, parent.X / 1024f));
|
2016-09-11 01:23:26 +08:00
|
|
|
|
Size = new Vector2(1 / Scale.X);
|
2016-08-26 11:28:23 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|