2018-01-13 21:22:39 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
2016-05-03 06:07:17 +00:00
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-01-12 03:24:09 +00:00
|
|
|
#include <cmath>
|
|
|
|
|
2016-05-03 06:07:17 +00:00
|
|
|
#include "common/assert.h"
|
2017-05-27 23:10:25 +00:00
|
|
|
#include "core/frontend/framebuffer_layout.h"
|
2016-05-03 06:07:17 +00:00
|
|
|
|
|
|
|
namespace Layout {
|
|
|
|
|
2016-11-05 07:47:05 +00:00
|
|
|
// Finds the largest size subrectangle contained in window area that is confined to the aspect ratio
|
|
|
|
template <class T>
|
|
|
|
static MathUtil::Rectangle<T> maxRectangle(MathUtil::Rectangle<T> window_area,
|
|
|
|
float screen_aspect_ratio) {
|
|
|
|
float scale = std::min(static_cast<float>(window_area.GetWidth()),
|
|
|
|
window_area.GetHeight() / screen_aspect_ratio);
|
2016-11-10 07:36:07 +00:00
|
|
|
return MathUtil::Rectangle<T>{0, 0, static_cast<T>(std::round(scale)),
|
|
|
|
static_cast<T>(std::round(scale * screen_aspect_ratio))};
|
2016-05-03 06:07:17 +00:00
|
|
|
}
|
|
|
|
|
2018-01-10 03:36:07 +00:00
|
|
|
FramebufferLayout DefaultFrameLayout(unsigned width, unsigned height) {
|
2016-05-03 06:07:17 +00:00
|
|
|
ASSERT(width > 0);
|
|
|
|
ASSERT(height > 0);
|
2016-11-05 07:47:05 +00:00
|
|
|
// The drawing code needs at least somewhat valid values for both screens
|
|
|
|
// so just calculate them both even if the other isn't showing.
|
2018-01-10 03:36:07 +00:00
|
|
|
FramebufferLayout res{width, height};
|
2016-11-05 07:47:05 +00:00
|
|
|
|
2018-01-10 03:36:07 +00:00
|
|
|
const float emulation_aspect_ratio{static_cast<float>(ScreenUndocked::Height) /
|
|
|
|
ScreenUndocked::Width};
|
2016-11-05 07:47:05 +00:00
|
|
|
MathUtil::Rectangle<unsigned> screen_window_area{0, 0, width, height};
|
2018-01-10 03:36:07 +00:00
|
|
|
MathUtil::Rectangle<unsigned> screen = maxRectangle(screen_window_area, emulation_aspect_ratio);
|
2017-08-25 21:53:07 +00:00
|
|
|
|
|
|
|
float window_aspect_ratio = static_cast<float>(height) / width;
|
|
|
|
|
|
|
|
if (window_aspect_ratio < emulation_aspect_ratio) {
|
2018-01-10 03:36:07 +00:00
|
|
|
screen = screen.TranslateX((screen_window_area.GetWidth() - screen.GetWidth()) / 2);
|
2017-08-25 21:53:07 +00:00
|
|
|
} else {
|
2018-01-10 03:36:07 +00:00
|
|
|
screen = screen.TranslateY((height - screen.GetHeight()) / 2);
|
2017-08-25 21:53:07 +00:00
|
|
|
}
|
2018-01-10 03:36:07 +00:00
|
|
|
res.screen = screen;
|
2017-08-25 21:53:07 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Layout
|