Add some Wayland support

This commit is contained in:
jmsgrogan 2022-07-15 08:12:39 +01:00
parent 26f54c4581
commit 5d06b170ef
7 changed files with 126 additions and 16 deletions

View file

@ -0,0 +1,115 @@
#pragma once
#include "xdg-shell-client-protocol.h"
#include "wayland-client.h"
#include "Window.h"
struct wl_surface;
struct xdg_surface;
struct xdg_toplevel;
class WaylandSurface
{
WaylandSurface(mt::Window* window)
: mWindow(window)
{
}
void initialize(wl_compositor* compositor, xdg_wm_base* xdg_wm_base)
{
mSurface = wl_compositor_create_surface(compositor);
mXdgSurface = xdg_wm_base_get_xdg_surface(xdg_wm_base, mSurface);
auto xdg_surface_configure = [](void *data, struct xdg_surface *xdg_surface, uint32_t serial)
{
auto thisClass = static_cast<WaylandSurface*>(data);
thisClass->onConfigure(xdg_surface, serial);
};
mXdgSurfaceListener.configure = xdg_surface_configure;
xdg_surface_add_listener(mXdgSurface, &mXdgSurfaceListener, this);
mXdgTopLevel = xdg_surface_get_toplevel(mXdgSurface);
xdg_toplevel_set_title(mXdgTopLevel, "Example client");
wl_surface_commit(mSurface);
}
void onConfigure(xdg_surface *xdg_surface, uint32_t serial)
{
xdg_surface_ack_configure(xdg_surface, serial);
auto buffer = draw_frame();
wl_surface_attach(mSurface, buffer, 0, 0);
//wl_surface_damage(mSurface, 0, 0, UINT32_MAX, UINT32_MAX);
wl_surface_commit(mSurface);
}
wl_buffer* draw_frame()
{
const auto width = mWindow->GetWidth();
const auto height = mWindow->GetHeight();
const int bitDepth = 4;
const int stride = width * bitDepth;
//const int numBuffers = 2; // i.e. front/back
const int numBuffers = 1;
const int shm_pool_size = height * stride * numBuffers;
initializeSharedBuffer(shm_pool_size);
if (!mSharedMemory->isValid())
{
std::cout << "Failed to allocate shared memory" << std::endl;
return nullptr;
}
if (!mPoolData)
{
std::cout << "Failed to mmap pool" << std::endl;
return nullptr;
}
auto pool = wl_shm_create_pool(mWlSharedMemory, mSharedMemory->getFileDescriptor(), shm_pool_size);
int index = 0;
// int offset = height * stride * index; // Two buffers, offset to starting point of second
int offset = 0;
mWorkingBuffer = wl_shm_pool_create_buffer(pool, offset, width, height, stride, WL_SHM_FORMAT_XRGB8888);
wl_shm_pool_destroy(pool);
close(mSharedMemory->getFileDescriptor());
drawCheckerboard(width, height, offset);
munmap(mPoolData, shm_pool_size);
auto wl_buffer_release = [](void *data, struct wl_buffer *wl_buffer)
{
wl_buffer_destroy(wl_buffer);
};
mBufferListener.release = wl_buffer_release;
wl_buffer_add_listener(mWorkingBuffer, &mBufferListener, nullptr);
return mWorkingBuffer;
}
private:
mt::Window* mWindow{nullptr};
wl_surface* mSurface{nullptr};
xdg_surface* mXdgSurface{nullptr};
xdg_surface_listener mXdgSurfaceListener{nullptr};
xdg_toplevel* mXdgTopLevel{nullptr};
};
using WaylandSurfacePtr = std::unique_ptr<WaylandSurface>;

View file

@ -6,8 +6,11 @@
#include "Window.h" #include "Window.h"
#include "SharedMemory.h" #include "SharedMemory.h"
#include "WaylandSurface.h"
#include <iostream> #include <iostream>
#include <cstring> #include <cstring>
#include <vector>
#include <sys/mman.h> #include <sys/mman.h>
#include <unistd.h> #include <unistd.h>
@ -118,16 +121,6 @@ public:
wl_surface_commit(mSurface); wl_surface_commit(mSurface);
} }
void onXdgSurfaceConfigure(void *data, struct xdg_surface *xdg_surface, uint32_t serial)
{
xdg_surface_ack_configure(xdg_surface, serial);
auto buffer = draw_frame();
wl_surface_attach(mSurface, buffer, 0, 0);
//wl_surface_damage(mSurface, 0, 0, UINT32_MAX, UINT32_MAX);
wl_surface_commit(mSurface);
}
wl_buffer* draw_frame() wl_buffer* draw_frame()
{ {
const auto width = mWindow->GetWidth(); const auto width = mWindow->GetWidth();
@ -233,12 +226,18 @@ public:
void addWindow(mt::Window* window) void addWindow(mt::Window* window)
{ {
mWindow = window; auto surface = std::make_unique<WaylandSurface>(window);
mSurfaces.push_back(surface);
}
void mapWindow(mt::Window* window)
{
} }
private: private:
mt::Window* mWindow{nullptr}; std::vector<std::unique_ptr<WaylandSurface> > mSurfaces;
wl_display* mDisplay{nullptr}; wl_display* mDisplay{nullptr};
wl_compositor* mCompositor{nullptr}; wl_compositor* mCompositor{nullptr};
@ -247,11 +246,7 @@ private:
xdg_wm_base* mXdgBase{nullptr}; xdg_wm_base* mXdgBase{nullptr};
xdg_wm_base_listener mXdgBaseListener; xdg_wm_base_listener mXdgBaseListener;
wl_surface* mSurface{nullptr};
xdg_surface* mXdgSurface{nullptr};
xdg_surface_listener mXdgSurfaceListener{nullptr};
xdg_toplevel* mXdgTopLevel{nullptr};
wl_shm* mWlSharedMemory{nullptr}; wl_shm* mWlSharedMemory{nullptr};
std::unique_ptr<SharedMemory> mSharedMemory; std::unique_ptr<SharedMemory> mSharedMemory;