// Copyright 2016 Citra Emulator Project // Licensed under GPLv2 or any later version // Refer to the license.txt file included. #include #include "common/assert.h" #include "core/3ds.h" #include "core/frontend/framebuffer_layout.h" #include "core/settings.h" namespace Layout { static const float TOP_SCREEN_ASPECT_RATIO = static_cast(Core::kScreenTopHeight) / Core::kScreenTopWidth; static const float BOT_SCREEN_ASPECT_RATIO = static_cast(Core::kScreenBottomHeight) / Core::kScreenBottomWidth; static const float TOP_SCREEN_UPRIGHT_ASPECT_RATIO = static_cast(Core::kScreenTopWidth) / Core::kScreenTopHeight; static const float BOT_SCREEN_UPRIGHT_ASPECT_RATIO = static_cast(Core::kScreenBottomWidth) / Core::kScreenBottomHeight; u32 FramebufferLayout::GetScalingRatio() const { if (is_rotated) { return static_cast(((top_screen.GetWidth() - 1) / Core::kScreenTopWidth) + 1); } else { return static_cast(((top_screen.GetWidth() - 1) / Core::kScreenTopHeight) + 1); } } // Finds the largest size subrectangle contained in window area that is confined to the aspect ratio template static Common::Rectangle maxRectangle(Common::Rectangle window_area, float screen_aspect_ratio) { float scale = std::min(static_cast(window_area.GetWidth()), window_area.GetHeight() / screen_aspect_ratio); return Common::Rectangle{0, 0, static_cast(std::round(scale)), static_cast(std::round(scale * screen_aspect_ratio))}; } FramebufferLayout DefaultFrameLayout(u32 width, u32 height, bool swapped, bool upright) { ASSERT(width > 0); ASSERT(height > 0); FramebufferLayout res{width, height, true, true, {}, {}, !upright}; Common::Rectangle screen_window_area; Common::Rectangle top_screen; Common::Rectangle bot_screen; float emulation_aspect_ratio; if (upright) { // Default layout gives equal screen sizes to the top and bottom screen screen_window_area = {0, 0, width / 2, height}; top_screen = maxRectangle(screen_window_area, TOP_SCREEN_UPRIGHT_ASPECT_RATIO); bot_screen = maxRectangle(screen_window_area, BOT_SCREEN_UPRIGHT_ASPECT_RATIO); // both screens width are taken into account by dividing by 2 emulation_aspect_ratio = TOP_SCREEN_UPRIGHT_ASPECT_RATIO / 2; } else { // Default layout gives equal screen sizes to the top and bottom screen screen_window_area = {0, 0, width, height / 2}; top_screen = maxRectangle(screen_window_area, TOP_SCREEN_ASPECT_RATIO); bot_screen = maxRectangle(screen_window_area, BOT_SCREEN_ASPECT_RATIO); // both screens height are taken into account by multiplying by 2 emulation_aspect_ratio = TOP_SCREEN_ASPECT_RATIO * 2; } float window_aspect_ratio = static_cast(height) / width; if (window_aspect_ratio < emulation_aspect_ratio) { // Window is wider than the emulation content => apply borders to the right and left sides if (upright) { // Recalculate the bottom screen to account for the height difference between right and // left screen_window_area = {0, 0, top_screen.GetWidth(), height}; bot_screen = maxRectangle(screen_window_area, BOT_SCREEN_UPRIGHT_ASPECT_RATIO); bot_screen = bot_screen.TranslateY((top_screen.GetHeight() - bot_screen.GetHeight()) / 2); if (swapped) { bot_screen = bot_screen.TranslateX(width / 2 - bot_screen.GetWidth()); } else { top_screen = top_screen.TranslateX(width / 2 - top_screen.GetWidth()); } } else { top_screen = top_screen.TranslateX((screen_window_area.GetWidth() - top_screen.GetWidth()) / 2); bot_screen = bot_screen.TranslateX((screen_window_area.GetWidth() - bot_screen.GetWidth()) / 2); } } else { // Window is narrower than the emulation content => apply borders to the top and bottom if (upright) { top_screen = top_screen.TranslateY( (screen_window_area.GetHeight() - top_screen.GetHeight()) / 2); bot_screen = bot_screen.TranslateY( (screen_window_area.GetHeight() - bot_screen.GetHeight()) / 2); } else { // Recalculate the bottom screen to account for the width difference between top and // bottom screen_window_area = {0, 0, width, top_screen.GetHeight()}; bot_screen = maxRectangle(screen_window_area, BOT_SCREEN_ASPECT_RATIO); bot_screen = bot_screen.TranslateX((top_screen.GetWidth() - bot_screen.GetWidth()) / 2); if (swapped) { bot_screen = bot_screen.TranslateY(height / 2 - bot_screen.GetHeight()); } else { top_screen = top_screen.TranslateY(height / 2 - top_screen.GetHeight()); } } } if (upright) { // Move the top screen to the right if we are swapped. res.top_screen = swapped ? top_screen.TranslateX(width / 2) : top_screen; res.bottom_screen = swapped ? bot_screen : bot_screen.TranslateX(width / 2); } else { // Move the top screen to the bottom if we are swapped. res.top_screen = swapped ? top_screen.TranslateY(height / 2) : top_screen; res.bottom_screen = swapped ? bot_screen : bot_screen.TranslateY(height / 2); } return res; } FramebufferLayout SingleFrameLayout(u32 width, u32 height, bool swapped, bool upright) { ASSERT(width > 0); ASSERT(height > 0); // The drawing code needs at least somewhat valid values for both screens // so just calculate them both even if the other isn't showing. FramebufferLayout res{width, height, !swapped, swapped, {}, {}, !upright}; Common::Rectangle screen_window_area{0, 0, width, height}; Common::Rectangle top_screen; Common::Rectangle bot_screen; float emulation_aspect_ratio; if (upright) { top_screen = maxRectangle(screen_window_area, TOP_SCREEN_UPRIGHT_ASPECT_RATIO); bot_screen = maxRectangle(screen_window_area, BOT_SCREEN_UPRIGHT_ASPECT_RATIO); emulation_aspect_ratio = (swapped) ? BOT_SCREEN_UPRIGHT_ASPECT_RATIO : TOP_SCREEN_UPRIGHT_ASPECT_RATIO; } else { top_screen = maxRectangle(screen_window_area, TOP_SCREEN_ASPECT_RATIO); bot_screen = maxRectangle(screen_window_area, BOT_SCREEN_ASPECT_RATIO); emulation_aspect_ratio = (swapped) ? BOT_SCREEN_ASPECT_RATIO : TOP_SCREEN_ASPECT_RATIO; } float window_aspect_ratio = static_cast(height) / width; if (window_aspect_ratio < emulation_aspect_ratio) { top_screen = top_screen.TranslateX((screen_window_area.GetWidth() - top_screen.GetWidth()) / 2); bot_screen = bot_screen.TranslateX((screen_window_area.GetWidth() - bot_screen.GetWidth()) / 2); } else { top_screen = top_screen.TranslateY((height - top_screen.GetHeight()) / 2); bot_screen = bot_screen.TranslateY((height - bot_screen.GetHeight()) / 2); } res.top_screen = top_screen; res.bottom_screen = bot_screen; return res; } FramebufferLayout LargeFrameLayout(u32 width, u32 height, bool swapped, bool upright) { ASSERT(width > 0); ASSERT(height > 0); FramebufferLayout res{width, height, true, true, {}, {}, !upright}; // Split the window into two parts. Give 4x width to the main screen and 1x width to the small // To do that, find the total emulation box and maximize that based on window size float window_aspect_ratio = static_cast(height) / width; float emulation_aspect_ratio; float large_screen_aspect_ratio; float small_screen_aspect_ratio; if (upright) { if (swapped) { emulation_aspect_ratio = (Core::kScreenBottomWidth * 4.0f + Core::kScreenTopWidth) / (Core::kScreenBottomHeight * 4); large_screen_aspect_ratio = BOT_SCREEN_UPRIGHT_ASPECT_RATIO; small_screen_aspect_ratio = TOP_SCREEN_UPRIGHT_ASPECT_RATIO; } else { emulation_aspect_ratio = (Core::kScreenTopWidth * 4.0f + Core::kScreenBottomWidth) / (Core::kScreenTopHeight * 4); large_screen_aspect_ratio = TOP_SCREEN_UPRIGHT_ASPECT_RATIO; small_screen_aspect_ratio = BOT_SCREEN_UPRIGHT_ASPECT_RATIO; } } else { if (swapped) { emulation_aspect_ratio = Core::kScreenBottomHeight * 4 / (Core::kScreenBottomWidth * 4.0f + Core::kScreenTopWidth); large_screen_aspect_ratio = BOT_SCREEN_ASPECT_RATIO; small_screen_aspect_ratio = TOP_SCREEN_ASPECT_RATIO; } else { emulation_aspect_ratio = Core::kScreenTopHeight * 4 / (Core::kScreenTopWidth * 4.0f + Core::kScreenBottomWidth); large_screen_aspect_ratio = TOP_SCREEN_ASPECT_RATIO; small_screen_aspect_ratio = BOT_SCREEN_ASPECT_RATIO; } } Common::Rectangle screen_window_area{0, 0, width, height}; Common::Rectangle total_rect = maxRectangle(screen_window_area, emulation_aspect_ratio); Common::Rectangle large_screen = maxRectangle(total_rect, large_screen_aspect_ratio); Common::Rectangle fourth_size_rect = total_rect.Scale(.25f); Common::Rectangle small_screen = maxRectangle(fourth_size_rect, small_screen_aspect_ratio); if (window_aspect_ratio < emulation_aspect_ratio) { large_screen = large_screen.TranslateX((width - total_rect.GetWidth()) / 2); } else { large_screen = large_screen.TranslateY((height - total_rect.GetHeight()) / 2); } if (upright) { large_screen = large_screen.TranslateY(small_screen.GetHeight()); small_screen = small_screen.TranslateX(large_screen.right - small_screen.GetWidth()) .TranslateY(large_screen.top - small_screen.GetHeight()); } else { // Shift the small screen to the bottom right corner small_screen = small_screen.TranslateX(large_screen.right) .TranslateY(large_screen.GetHeight() + large_screen.top - small_screen.GetHeight()); } res.top_screen = swapped ? small_screen : large_screen; res.bottom_screen = swapped ? large_screen : small_screen; return res; } FramebufferLayout SideFrameLayout(u32 width, u32 height, bool swapped, bool upright) { ASSERT(width > 0); ASSERT(height > 0); FramebufferLayout res{width, height, true, true, {}, {}, !upright}; // Aspect ratio of both screens side by side float emulation_aspect_ratio = upright ? static_cast(Core::kScreenTopWidth + Core::kScreenBottomWidth) / Core::kScreenTopHeight : static_cast(Core::kScreenTopHeight) / (Core::kScreenTopWidth + Core::kScreenBottomWidth); float window_aspect_ratio = static_cast(height) / width; Common::Rectangle screen_window_area{0, 0, width, height}; // Find largest Rectangle that can fit in the window size with the given aspect ratio Common::Rectangle screen_rect = maxRectangle(screen_window_area, emulation_aspect_ratio); // Find sizes of top and bottom screen Common::Rectangle top_screen = upright ? maxRectangle(screen_rect, TOP_SCREEN_UPRIGHT_ASPECT_RATIO) : maxRectangle(screen_rect, TOP_SCREEN_ASPECT_RATIO); Common::Rectangle bot_screen = upright ? maxRectangle(screen_rect, BOT_SCREEN_UPRIGHT_ASPECT_RATIO) : maxRectangle(screen_rect, BOT_SCREEN_ASPECT_RATIO); if (window_aspect_ratio < emulation_aspect_ratio) { // Apply borders to the left and right sides of the window. u32 shift_horizontal = (screen_window_area.GetWidth() - screen_rect.GetWidth()) / 2; top_screen = top_screen.TranslateX(shift_horizontal); bot_screen = bot_screen.TranslateX(shift_horizontal); } else { // Window is narrower than the emulation content => apply borders to the top and bottom u32 shift_vertical = (screen_window_area.GetHeight() - screen_rect.GetHeight()) / 2; top_screen = top_screen.TranslateY(shift_vertical); bot_screen = bot_screen.TranslateY(shift_vertical); } if (upright) { // Leave the top screen at the top if we are swapped. res.top_screen = swapped ? top_screen : top_screen.TranslateY(bot_screen.GetHeight()); res.bottom_screen = swapped ? bot_screen.TranslateY(top_screen.GetHeight()) : bot_screen; } else { // Move the top screen to the right if we are swapped. res.top_screen = swapped ? top_screen.TranslateX(bot_screen.GetWidth()) : top_screen; res.bottom_screen = swapped ? bot_screen : bot_screen.TranslateX(top_screen.GetWidth()); } return res; } FramebufferLayout CustomFrameLayout(u32 width, u32 height) { ASSERT(width > 0); ASSERT(height > 0); FramebufferLayout res{width, height, true, true, {}, {}, !Settings::values.upright_screen}; Common::Rectangle top_screen{ Settings::values.custom_top_left, Settings::values.custom_top_top, Settings::values.custom_top_right, Settings::values.custom_top_bottom}; Common::Rectangle bot_screen{ Settings::values.custom_bottom_left, Settings::values.custom_bottom_top, Settings::values.custom_bottom_right, Settings::values.custom_bottom_bottom}; res.top_screen = top_screen; res.bottom_screen = bot_screen; return res; } FramebufferLayout FrameLayoutFromResolutionScale(u32 res_scale) { FramebufferLayout layout; if (Settings::values.custom_layout == true) { layout = CustomFrameLayout( std::max(Settings::values.custom_top_right, Settings::values.custom_bottom_right), std::max(Settings::values.custom_top_bottom, Settings::values.custom_bottom_bottom)); } else { int width, height; switch (Settings::values.layout_option) { case Settings::LayoutOption::SingleScreen: if (Settings::values.upright_screen) { if (Settings::values.swap_screen) { width = Core::kScreenBottomHeight * res_scale; height = Core::kScreenBottomWidth * res_scale; } else { width = Core::kScreenTopHeight * res_scale; height = Core::kScreenTopWidth * res_scale; } } else { if (Settings::values.swap_screen) { width = Core::kScreenBottomWidth * res_scale; height = Core::kScreenBottomHeight * res_scale; } else { width = Core::kScreenTopWidth * res_scale; height = Core::kScreenTopHeight * res_scale; } } layout = SingleFrameLayout(width, height, Settings::values.swap_screen, Settings::values.upright_screen); break; case Settings::LayoutOption::LargeScreen: if (Settings::values.upright_screen) { if (Settings::values.swap_screen) { width = Core::kScreenBottomHeight * res_scale; height = (Core::kScreenBottomWidth + Core::kScreenTopWidth / 4) * res_scale; } else { width = Core::kScreenTopHeight * res_scale; height = (Core::kScreenTopWidth + Core::kScreenBottomWidth / 4) * res_scale; } } else { if (Settings::values.swap_screen) { width = (Core::kScreenBottomWidth + Core::kScreenTopWidth / 4) * res_scale; height = Core::kScreenBottomHeight * res_scale; } else { width = (Core::kScreenTopWidth + Core::kScreenBottomWidth / 4) * res_scale; height = Core::kScreenTopHeight * res_scale; } } layout = LargeFrameLayout(width, height, Settings::values.swap_screen, Settings::values.upright_screen); break; case Settings::LayoutOption::SideScreen: if (Settings::values.upright_screen) { width = Core::kScreenTopHeight * res_scale; height = (Core::kScreenTopWidth + Core::kScreenBottomWidth) * res_scale; } else { width = (Core::kScreenTopWidth + Core::kScreenBottomWidth) * res_scale; height = Core::kScreenTopHeight * res_scale; } layout = SideFrameLayout(width, height, Settings::values.swap_screen, Settings::values.upright_screen); break; case Settings::LayoutOption::Default: default: if (Settings::values.upright_screen) { width = (Core::kScreenTopHeight + Core::kScreenBottomHeight) * res_scale; height = Core::kScreenTopWidth * res_scale; } else { width = Core::kScreenTopWidth * res_scale; height = (Core::kScreenTopHeight + Core::kScreenBottomHeight) * res_scale; } layout = DefaultFrameLayout(width, height, Settings::values.swap_screen, Settings::values.upright_screen); break; } } return layout; } } // namespace Layout