source: opengl-game/vulkan-game.hpp@ 5a23277

feature/imgui-sdl points-test
Last change on this file since 5a23277 was 1f25a71, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 5 years ago

In vulkangame, print the SDL version and finish implementing renderUI() to show some test images and text using SDL

  • Property mode set to 100644
File size: 4.1 KB
RevLine 
[99d44b2]1#ifndef _VULKAN_GAME_H
2#define _VULKAN_GAME_H
[e8ebc76]3
[771b33a]4#include <glm/glm.hpp>
5
[0df3c9a]6#include "game-gui-sdl.hpp"
[7d2b0b9]7#include "graphics-pipeline_vulkan.hpp"
[0df3c9a]8
[b794178]9#include "vulkan-utils.hpp"
10
[2e77b3f]11#ifdef NDEBUG
12 const bool ENABLE_VALIDATION_LAYERS = false;
13#else
14 const bool ENABLE_VALIDATION_LAYERS = true;
15#endif
16
[771b33a]17// TODO: Figure out if these structs should be defined in the VulkanGame class
18
19struct Vertex {
20 glm::vec3 pos;
21 glm::vec3 color;
22 glm::vec2 texCoord;
23};
24
25struct OverlayVertex {
26 glm::vec3 pos;
27 glm::vec2 texCoord;
28};
29
[99d44b2]30class VulkanGame {
[e8ebc76]31 public:
[34bdf3a]32 VulkanGame(int maxFramesInFlight);
[99d44b2]33 ~VulkanGame();
[0df3c9a]34
[b6e60b4]35 void run(int width, int height, unsigned char guiFlags);
[0df3c9a]36
37 private:
[34bdf3a]38 const int MAX_FRAMES_IN_FLIGHT;
39
[0df3c9a]40 GameGui* gui;
[c559904]41
[7d2b0b9]42 vector<GraphicsPipeline_Vulkan> graphicsPipelines;
43
[c559904]44 SDL_version sdlVersion;
[b794178]45 SDL_Window* window = nullptr;
46 SDL_Renderer* renderer = nullptr;
47
48 SDL_Texture* uiOverlay = nullptr;
[c1d9b2a]49
50 VkInstance instance;
51 VkDebugUtilsMessengerEXT debugMessenger;
[fe5c3ba]52 VkSurfaceKHR surface; // TODO: Change the variable name to vulkanSurface
[90a424f]53 VkPhysicalDevice physicalDevice = VK_NULL_HANDLE;
[c1c2021]54 VkDevice device;
55
56 VkQueue graphicsQueue;
57 VkQueue presentQueue;
[0df3c9a]58
[502bd0b]59 VkSwapchainKHR swapChain;
60 vector<VkImage> swapChainImages;
61 VkFormat swapChainImageFormat;
[603b5bc]62 VkExtent2D swapChainExtent;
[f94eea9]63 vector<VkImageView> swapChainImageViews;
[603b5bc]64 vector<VkFramebuffer> swapChainFramebuffers;
[fa9fa1c]65
[6fc24c7]66 VkRenderPass renderPass;
[fa9fa1c]67 VkCommandPool commandPool;
[603b5bc]68 vector<VkCommandBuffer> commandBuffers;
[502bd0b]69
[603b5bc]70 VulkanImage depthImage;
[b794178]71
72 VkSampler textureSampler;
73
74 vector<VkDescriptorBufferInfo> uniformBufferInfoList;
75
76 // These are currently to store the MVP matrix
77 // I should figure out if it makes sense to use them for other uniforms in the future
78 // If not, I should rename them to better indicate their purpose.
79 // I should also decide if I can use these for all shaders, or if I need a separapte set of buffers for each one
80 vector<VkBuffer> uniformBuffers;
81 vector<VkDeviceMemory> uniformBuffersMemory;
82
83 VulkanImage floorTextureImage;
84 VkDescriptorImageInfo floorTextureImageDescriptor;
85
86 VulkanImage sdlOverlayImage;
87 VkDescriptorImageInfo sdlOverlayImageDescriptor;
88
[1f25a71]89 TTF_Font* font;
90 SDL_Texture* fontSDLTexture;
91
92 SDL_Texture* imageSDLTexture;
93
[34bdf3a]94 vector<VkSemaphore> imageAvailableSemaphores;
95 vector<VkSemaphore> renderFinishedSemaphores;
96 vector<VkFence> inFlightFences;
97
[87c8f1a]98 size_t currentFrame;
99
100 bool framebufferResized;
[0e09340]101
[b6e60b4]102 bool initWindow(int width, int height, unsigned char guiFlags);
[0df3c9a]103 void initVulkan();
104 void mainLoop();
[a0c5f28]105 void renderUI();
106 void renderScene();
[0df3c9a]107 void cleanup();
[c1d9b2a]108
109 void createVulkanInstance(const vector<const char*> &validationLayers);
110 void setupDebugMessenger();
111 void populateDebugMessengerCreateInfo(VkDebugUtilsMessengerCreateInfoEXT& createInfo);
[90a424f]112 void createVulkanSurface();
[fe5c3ba]113 void pickPhysicalDevice(const vector<const char*>& deviceExtensions);
[fa9fa1c]114 bool isDeviceSuitable(VkPhysicalDevice physicalDevice, const vector<const char*>& deviceExtensions);
[c1c2021]115 void createLogicalDevice(
116 const vector<const char*> validationLayers,
117 const vector<const char*>& deviceExtensions);
[502bd0b]118 void createSwapChain();
[f94eea9]119 void createImageViews();
[6fc24c7]120 void createRenderPass();
121 VkFormat findDepthFormat();
[fa9fa1c]122 void createCommandPool();
[603b5bc]123 void createImageResources();
124
[b794178]125 void createTextureSampler();
[603b5bc]126 void createFramebuffers();
[b794178]127 void createUniformBuffers();
[603b5bc]128 void createCommandBuffers();
[34bdf3a]129 void createSyncObjects();
[f94eea9]130
[d2d9286]131 void recreateSwapChain();
[f985231]132 void updateUniformBuffer(uint32_t currentImage);
[d2d9286]133
[c1c2021]134 void cleanupSwapChain();
[c1d9b2a]135
136 static VKAPI_ATTR VkBool32 VKAPI_CALL debugCallback(
137 VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity,
138 VkDebugUtilsMessageTypeFlagsEXT messageType,
139 const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData,
140 void* pUserData);
[e8ebc76]141};
142
[99d44b2]143#endif // _VULKAN_GAME_H
Note: See TracBrowser for help on using the repository browser.