roleplay/client/include/ui.h

259 lines
4.8 KiB
C

#ifndef PIPELINE_H
#define PIPELINE_H
#include "vulkan/vulkan_core.h"
#include "cglm/types.h"
#include "vk_mem_alloc.h"
#include "gpu.h"
2024-10-16 20:29:19 -06:00
#include "ft2build.h"
#include FT_FREETYPE_H
#define ANCHOR_TOP_LEFT 0
#define ANCHOR_TOP_RIGHT 1
#define ANCHOR_BOTTOM_LEFT 2
#define ANCHOR_BOTTOM_RIGHT 3
#define ANCHOR_CENTER 4
2024-10-14 19:42:38 -06:00
typedef struct ComputePipelineStruct {
VkPipelineLayout layout;
VkPipeline pipeline;
} ComputePipeline;
typedef struct GraphicsPipelineStruct {
VkPipelineLayout layout;
VkPipeline pipeline;
} GraphicsPipeline;
2024-10-15 11:44:59 -06:00
typedef struct DrawCommandStruct {
uint32_t vertex_count;
2024-10-15 11:44:59 -06:00
uint32_t instance_count;
uint32_t first_vertex;
2024-10-15 11:44:59 -06:00
uint32_t first_instance;
} DrawCommand;
typedef struct DispatchCommandStruct {
uint32_t x;
uint32_t y;
uint32_t z;
} DispatchCommand;
2024-10-22 18:22:18 -06:00
typedef struct GPUFontStruct {
2024-10-18 18:34:31 -06:00
VkDeviceAddress symbol_list;
uint32_t num_symbols;
uint32_t width;
uint32_t height;
2024-10-22 18:22:18 -06:00
} GPUFont;
2024-10-22 18:22:18 -06:00
typedef struct GPUSymbolStruct {
2024-10-20 22:39:12 -06:00
float top;
float left;
float width;
float height;
2024-10-22 20:24:34 -06:00
vec2 advance;
2024-10-22 18:22:18 -06:00
} GPUSymbol;
2024-10-22 18:22:18 -06:00
typedef struct FontStruct {
VmaAllocation symbol_memory;
VmaAllocation image_memory;
VkBuffer symbols;
VkImage image;
VkImageView view;
VkSampler sampler;
2024-10-18 16:15:00 -06:00
uint32_t* charmap;
uint32_t num_symbols;
uint32_t index;
char* family;
char* style;
2024-10-22 18:22:18 -06:00
} Font;
2024-10-22 18:22:18 -06:00
typedef struct TextureStruct {
2024-10-21 09:20:50 -06:00
VmaAllocation image_memory;
VkImage image;
VkImageView view;
VkSampler sampler;
char* path;
2024-10-22 18:22:18 -06:00
} Texture;
2024-10-21 09:20:50 -06:00
2024-10-22 18:22:18 -06:00
typedef struct GPUStringStruct {
2024-10-18 16:15:00 -06:00
vec2 pos;
vec4 color;
float size;
uint32_t offset;
uint32_t length;
uint32_t font;
uint32_t id;
2024-10-22 18:22:18 -06:00
} GPUString;
2024-10-18 16:15:00 -06:00
2024-10-22 18:22:18 -06:00
typedef struct GPUDrawableStruct {
vec2 pos;
vec2 size;
vec4 color;
uint32_t type;
uint32_t code;
uint32_t index;
uint32_t id;
2024-10-22 18:22:18 -06:00
} GPUDrawable;
2024-10-22 18:22:18 -06:00
typedef struct GPULayerStruct {
VkDeviceAddress strings;
2024-10-18 16:15:00 -06:00
VkDeviceAddress codes;
VkDeviceAddress drawables;
2024-10-18 16:15:00 -06:00
DrawCommand draw;
DispatchCommand dispatch_strings;
uint32_t max_drawables;
uint32_t max_codes;
uint32_t max_strings;
uint32_t num_drawables;
VkDeviceAddress container;
2024-10-22 18:22:18 -06:00
} GPULayer;
2024-10-22 18:22:18 -06:00
typedef struct LayerStruct {
VkBuffer strings;
VkBuffer codes;
VkBuffer drawables;
VkBuffer layer;
VmaAllocation strings_memory;
VmaAllocation drawables_memory;
VmaAllocation codes_memory;
VmaAllocation layer_memory;
VkDeviceAddress address;
2024-10-22 18:22:18 -06:00
GPUDrawable* drawables_buffer;
GPUString* strings_buffer;
uint32_t* codes_buffer;
2024-10-22 18:22:18 -06:00
GPULayer data;
} Layer;
typedef struct LayerInputStruct {
uint32_t num_strings;
uint32_t num_codes;
uint32_t num_drawables;
GPUString* strings;
uint32_t* codes;
GPUDrawable* drawables;
} LayerInput;
2024-10-22 18:22:18 -06:00
typedef struct GPUContainerStruct {
vec2 offset;
vec2 size;
uint32_t anchor;
2024-10-22 18:22:18 -06:00
} GPUContainer;
2024-10-22 18:22:18 -06:00
typedef struct ContainerStruct {
VkBuffer container;
VmaAllocation container_memory;
VkDeviceAddress address;
2024-10-22 18:22:18 -06:00
GPUContainer data;
uint32_t id;
uint32_t layer_count;
Layer* layers;
} Container;
2024-10-22 18:22:18 -06:00
typedef struct ContainerInputStruct {
uint32_t id;
2024-10-22 18:22:18 -06:00
uint32_t anchor;
vec2 offset;
vec2 size;
uint32_t layer_count;
2024-10-22 18:22:18 -06:00
LayerInput* layers;
} ContainerInput;
2024-10-22 18:22:18 -06:00
typedef struct GPUUIContextStruct {
VkDeviceAddress font_infos;
2024-10-21 09:20:50 -06:00
vec2 screen;
vec2 extent;
vec2 scale;
2024-10-22 18:22:18 -06:00
} GPUUIContext;
2024-10-22 18:22:18 -06:00
typedef struct UIContext {
VkDeviceAddress address;
VkBuffer context;
VmaAllocation context_memory;
VkBuffer font_infos;
VmaAllocation font_infos_memory;
2024-10-21 10:09:52 -06:00
VkDescriptorSet textures;
VkDescriptorSet samplers;
VkDescriptorSet font_samplers;
VkDescriptorSet font_textures;
2024-10-21 10:09:52 -06:00
VkDescriptorSetLayout samplers_layout;
VkDescriptorSetLayout textures_layout;
VkDescriptorPool fonts_pool;
2024-10-21 10:09:52 -06:00
VkDescriptorPool textures_pool;
GraphicsPipeline pipeline;
ComputePipeline string_pipeline;
uint32_t max_fonts;
uint32_t max_textures;
2024-10-22 18:22:18 -06:00
Font* fonts;
Texture* texture_slots;
2024-10-21 14:05:27 -06:00
uint32_t max_containers;
2024-10-22 18:22:18 -06:00
Container* containers;
2024-10-21 14:05:27 -06:00
2024-10-22 18:22:18 -06:00
GPUUIContext data;
2024-10-22 18:31:34 -06:00
FT_Library freetype;
2024-10-22 18:22:18 -06:00
} UIContext;
VkResult create_ui_context(
2024-10-18 16:15:00 -06:00
uint32_t max_fonts,
2024-10-21 10:09:52 -06:00
uint32_t max_textures,
2024-10-21 14:05:27 -06:00
uint32_t max_containers,
RenderContext* gpu,
2024-10-22 18:22:18 -06:00
UIContext* context);
VkResult load_font(
2024-10-22 18:31:34 -06:00
uint32_t index,
const char* ttf_file,
uint32_t size,
VkBool32 antialias,
RenderContext* gpu,
2024-10-22 18:31:34 -06:00
UIContext* context);
2024-10-21 09:20:50 -06:00
VkResult load_texture(
const char* png_path,
RenderContext* gpu,
2024-10-22 18:22:18 -06:00
UIContext* context,
uint32_t* index);
2024-10-21 09:20:50 -06:00
VkResult create_container(
2024-10-22 18:22:18 -06:00
ContainerInput* container,
RenderContext* gpu,
2024-10-22 18:22:18 -06:00
UIContext* context);
VkResult create_layer(
uint32_t index,
2024-10-22 18:22:18 -06:00
LayerInput* input,
RenderContext* gpu,
2024-10-22 18:22:18 -06:00
Container* container);
2024-10-21 13:31:42 -06:00
VkResult map_string(
const char * text,
uint32_t* buffer,
uint32_t offset,
2024-10-22 18:31:34 -06:00
uint32_t font,
UIContext* context);
#endif