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