mirror of
https://github.com/sal063/AC6_recomp
synced 2026-05-24 23:22:16 -04:00
73 lines
2.3 KiB
C++
73 lines
2.3 KiB
C++
#pragma once
|
|
// Native UI runtime - surface abstraction
|
|
// Part of the AC6 Recompilation native presenter/window layer
|
|
|
|
#include <cstdint>
|
|
|
|
#include <rex/assert.h>
|
|
|
|
namespace rex {
|
|
namespace ui {
|
|
|
|
// Represents a surface that presenting can be performed to.
|
|
// Surface methods can be called only from the UI thread.
|
|
|
|
class Surface {
|
|
public:
|
|
enum TypeIndex {
|
|
// Within one platform, the more preferable surface types are earlier in
|
|
// this enumeration, so rex::bit_scan_forward can be used to try creating
|
|
// surfaces of all types supported by both the graphics provider and the
|
|
// window.
|
|
// Android.
|
|
kTypeIndex_AndroidNativeWindow,
|
|
// GNU/Linux.
|
|
kTypeIndex_XcbWindow,
|
|
// Windows.
|
|
kTypeIndex_Win32Hwnd,
|
|
};
|
|
using TypeFlags = uint32_t;
|
|
enum : TypeFlags {
|
|
kTypeFlag_AndroidNativeWindow = TypeFlags(1) << kTypeIndex_AndroidNativeWindow,
|
|
kTypeFlag_XcbWindow = TypeFlags(1) << kTypeIndex_XcbWindow,
|
|
kTypeFlag_Win32Hwnd = TypeFlags(1) << kTypeIndex_Win32Hwnd,
|
|
};
|
|
|
|
Surface(const Surface& surface) = delete;
|
|
Surface& operator=(const Surface& surface) = delete;
|
|
virtual ~Surface() = default;
|
|
|
|
virtual TypeIndex GetType() const = 0;
|
|
|
|
// Returns the up-to-date size (and true), or zeros (and false) if not ready
|
|
// to open a presentation connection yet. The size preferably should be
|
|
// exactly the dimensions of the surface in physical pixels of the display
|
|
// (without stretching performed by the platform's composition), but even if
|
|
// stretching happens, it is required that surface pixels have 1:1 aspect
|
|
// ratio relatively to the physical display.
|
|
bool GetSize(uint32_t& width_out, uint32_t& height_out) {
|
|
// If any dimension is 0 (like, resized completely to zero in one direction,
|
|
// but not in another), the surface is zero-area - don't try to present to
|
|
// it.
|
|
uint32_t width, height;
|
|
if (!GetSizeImpl(width, height) || !width || !height) {
|
|
width_out = 0;
|
|
height_out = 0;
|
|
return false;
|
|
}
|
|
width_out = width;
|
|
height_out = height;
|
|
return true;
|
|
}
|
|
|
|
protected:
|
|
Surface() = default;
|
|
|
|
// Returns the up-to-date size in physical pixels (and true), or zeros (and
|
|
// optionally false) if not ready to open a presentation connection yet.
|
|
virtual bool GetSizeImpl(uint32_t& width_out, uint32_t& height_out) const = 0;
|
|
};
|
|
|
|
} // namespace ui
|
|
} // namespace rex
|