Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
ShaderImporter.hpp
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <rapidjson/document.h>
7#include <rapidjson/prettywriter.h>
8
9#include <Common/ResourcePipeline/Uuid.hpp>
10#include <Common/Editor/Importer.hpp>
11
12namespace Grindstone::Editor::Importers {
13 class ShaderImporter : public Importer {
14 public:
15 void Import(Grindstone::Editor::AssetRegistry& assetRegistry, Grindstone::Assets::AssetManager& assetManager, const std::filesystem::path& path) override;
16 public:
17 enum class ShaderType {
18 Vertex,
19 Fragment,
20 Geometry,
21 Compute,
22 TesselationControl,
23 TesselationEvaluation
24 };
25
26 struct Texture {
27 std::string name;
28 size_t binding;
29 size_t descriptorSet;
30 std::vector<ShaderType> shaderPasses;
31 Texture() = default;
32 Texture(
33 std::string name,
34 size_t binding,
35 size_t descriptorSet
36 ) : name(name), binding(binding), descriptorSet(descriptorSet) {}
37 };
38
40 struct Member {
41 std::string name;
42 std::string type;
43 size_t offset;
44 size_t memberSize;
45 Member() = default;
46 Member(
47 std::string name,
48 std::string type,
49 size_t offset,
50 size_t memberSize
51 ) : name(name), type(type), offset(offset), memberSize(memberSize) {}
52 };
53
54 std::string name;
55 size_t binding;
56 size_t descriptorSet;
57 size_t bufferSize;
58 std::vector<ShaderType> shaderPasses;
59 std::vector<Member> members;
60 UniformBuffer() = default;
62 std::string name,
63 size_t binding,
64 size_t descriptorSet,
65 size_t bufferSize
66 ) : name(name), binding(binding), descriptorSet(descriptorSet), bufferSize(bufferSize) {}
67 };
68 private:
69 void Process();
70 void WriteReflectionStruct(std::vector<UniformBuffer>& structs);
71 void WriteReflectionImage(std::vector<Texture>& resources);
72 void WriteReflectionDocument();
73 std::string ExtractField(const char* fieldKey);
74 bool ExtractSubmodules();
75 bool ProcessSubmodule(ShaderType shaderType, const char* extension, const char* glslSource);
76 std::vector<uint32_t> ConvertToSpirv(ShaderType, const char* extension, const char* shaderModuleGlsl);
77 std::string ConvertToOpenglGlsl(const char* extension, std::vector<uint32_t>&);
78 void ConvertToOpenglSpirv(ShaderType, const char* extension, const char* openglGlsl);
79 void ReflectResources(ShaderType shaderType, std::vector<uint32_t>&);
80 void OutputStringToFile(const char* extension, const char* content);
81 void OutputUint32ToFile(const char* extension, std::vector<uint32_t>& content);
82 ShaderType GetShaderTypeFromString(std::string& str);
83 const char* GetShaderTypeExtension(ShaderType);
84 const char* GetShaderTypeAsString(ShaderType);
85 private:
86 AssetRegistry* assetRegistry;
87 std::filesystem::path inputPath;
88 std::string baseOutputPath;
89 std::string shaderName;
90 std::string renderQueue;
91 std::string geometryRenderer;
92 std::string transparencyMode;
93 std::string cullMode;
94 std::string sourceFileContents;
95 std::vector<ShaderType> shaderPasses;
96 std::vector<Texture> textures;
97 std::vector<Texture> samplers;
98 std::vector<UniformBuffer> uniformBuffers;
99 rapidjson::StringBuffer reflectionStringBuffer;
100 rapidjson::PrettyWriter<rapidjson::StringBuffer> reflectionWriter = rapidjson::PrettyWriter<rapidjson::StringBuffer>(reflectionStringBuffer);
101 };
102
103 void ImportShadersFromGlsl(Grindstone::Editor::AssetRegistry& assetRegistry, Grindstone::Assets::AssetManager& assetManager, const std::filesystem::path& path);
104}
Definition AssetManager.hpp:15
Definition AssetRegistry.hpp:14
Definition Importer.hpp:12
Definition ShaderImporter.hpp:13