117 lines
No EOL
3.1 KiB
C++
117 lines
No EOL
3.1 KiB
C++
#pragma once
|
|
|
|
#include <vulkan/vulkan.h>
|
|
#include "xe_device.hpp"
|
|
#include "xe_pipeline.hpp"
|
|
#include "xe_game_object.hpp"
|
|
#include "xe_descriptors.hpp"
|
|
#include "xe_renderer.hpp"
|
|
#include "xe_engine.hpp"
|
|
#include "xe_image.hpp"
|
|
|
|
#include <memory>
|
|
#include <map>
|
|
|
|
namespace xe {
|
|
|
|
class XeRenderSystem {
|
|
public:
|
|
|
|
class Builder {
|
|
public:
|
|
Builder(XeEngine &xeEngine, std::string vert, std::string frag) : xeEngine{xeEngine}, vert{vert}, frag{frag} {}
|
|
|
|
Builder& addPushConstant(uint32_t size) {
|
|
pushCunstantDataSize = size;
|
|
return *this;
|
|
}
|
|
|
|
Builder& addUniformBinding(uint32_t binding, uint32_t size) {
|
|
uniformBindings[binding] = size;
|
|
return *this;
|
|
}
|
|
|
|
Builder& addTextureBinding(uint32_t binding, XeImage* image) {
|
|
imageBindings[binding] = image;
|
|
return *this;
|
|
}
|
|
|
|
Builder& setCulling(bool enabled) {
|
|
cullingEnabled = enabled;
|
|
return *this;
|
|
}
|
|
|
|
std::unique_ptr<XeRenderSystem> build() {
|
|
return std::make_unique<XeRenderSystem>(xeEngine, std::move(vert), std::move(frag), std::move(uniformBindings), std::move(imageBindings), std::move(pushCunstantDataSize), std::move(cullingEnabled));
|
|
}
|
|
|
|
private:
|
|
|
|
std::map<uint32_t, uint32_t> uniformBindings{};
|
|
std::map<uint32_t, XeImage*> imageBindings{};
|
|
uint32_t pushCunstantDataSize{0};
|
|
|
|
std::string vert;
|
|
std::string frag;
|
|
|
|
bool cullingEnabled{false};
|
|
|
|
XeEngine &xeEngine;
|
|
};
|
|
|
|
XeRenderSystem(
|
|
XeEngine &xeEngine,
|
|
std::string vert,
|
|
std::string frag,
|
|
std::map<uint32_t, uint32_t> uniformBindings,
|
|
std::map<uint32_t, XeImage*> imageBindings,
|
|
uint32_t pushCunstantDataSize,
|
|
bool cullingEnabled
|
|
);
|
|
|
|
~XeRenderSystem();
|
|
|
|
XeRenderSystem(const XeRenderSystem &) = delete;
|
|
XeRenderSystem operator=(const XeRenderSystem &) = delete;
|
|
|
|
void start();
|
|
void loadPushConstant(void *pushConstantData);
|
|
void loadUniformObject(uint32_t binding, void *uniformBufferData);
|
|
void loadTexture(uint32_t binding, XeImage *image);
|
|
void render(XeGameObject &gameObject);
|
|
void stop();
|
|
|
|
private:
|
|
|
|
void createTextureSampler();
|
|
void createDescriptorSetLayout();
|
|
void createUniformBuffers();
|
|
void createDescriptorSets();
|
|
void updateDescriptorSet(int frameIndex, bool allocate);
|
|
void createPipelineLayout();
|
|
void createPipeline(VkRenderPass renderPass, std::string vert, std::string frag, bool cullingEnabled);
|
|
|
|
bool boundPipeline{false};
|
|
bool boundDescriptor{false};
|
|
|
|
|
|
XeDevice& xeDevice;
|
|
XeRenderer& xeRenderer;
|
|
|
|
std::map<uint32_t, std::vector<std::unique_ptr<XeBuffer>>> uboBuffers{};
|
|
std::map<uint32_t, uint32_t> uniformBindings;
|
|
std::map<uint32_t, XeImage*> imageBindings;
|
|
std::vector<VkDescriptorSet> descriptorSets;
|
|
|
|
uint32_t pushCunstantDataSize;
|
|
|
|
VkSampler textureSampler;
|
|
|
|
VkPipelineLayout pipelineLayout;
|
|
std::unique_ptr<XePipeline> xePipeline;
|
|
std::unique_ptr<XeDescriptorPool> &xeDescriptorPool;
|
|
std::unique_ptr<XeDescriptorSetLayout> xeDescriptorSetLayout;
|
|
|
|
};
|
|
|
|
} |