CMSC23700 Common Code Library
Support code for CS23700 programming projects
Loading...
Searching...
No Matches
cs237-application.hpp
Go to the documentation of this file.
1
8/*
9 * COPYRIGHT (c) 2023 John Reppy (http://cs.uchicago.edu/~jhr)
10 * All rights reserved.
11 */
12
13#ifndef _CS237_APPLICATION_HPP_
14#define _CS237_APPLICATION_HPP_
15
16#ifndef _CS237_HPP_
17#error "cs237-application.hpp should not be included directly"
18#endif
19
20namespace cs237 {
21
22namespace __detail { class TextureBase; }
23
26
27friend class Window;
28friend class Buffer;
29friend class MemoryObj;
31friend class Texture1D;
32friend class Texture2D;
33friend class DepthBuffer;
34
35public:
36
40 Application (std::vector<std::string> const &args, std::string const &name = "CS237 App");
41
42 virtual ~Application ();
43
45 virtual void run () = 0;
46
48 std::string name () const { return this->_name; }
49
51 bool debug () const { return this->_debug; }
53 bool verbose () const
54 {
55 return (this->_messages & vk::DebugUtilsMessageSeverityFlagBitsEXT::eVerbose)
56 == vk::DebugUtilsMessageSeverityFlagBitsEXT::eVerbose;
57 }
58
61 static std::vector<vk::ExtensionProperties> supportedExtensions ()
62 {
63 return vk::enumerateInstanceExtensionProperties(nullptr);
64 }
65
69 std::vector<vk::ExtensionProperties> supportedDeviceExtensions ()
70 {
71 return this->_gpu.enumerateDeviceExtensionProperties();
72 }
73
76 static std::vector<vk::LayerProperties> supportedLayers ()
77 {
78 return vk::enumerateInstanceLayerProperties();
79 }
80
84 struct SamplerInfo {
85 vk::Filter magFilter;
86 vk::Filter minFilter;
87 vk::SamplerMipmapMode mipmapMode;
88 vk::SamplerAddressMode addressModeU;
89 vk::SamplerAddressMode addressModeV;
90 vk::SamplerAddressMode addressModeW;
91 vk::BorderColor borderColor;
92
94 : magFilter(vk::Filter::eLinear), minFilter(vk::Filter::eLinear),
95 mipmapMode(vk::SamplerMipmapMode::eLinear),
96 addressModeU(vk::SamplerAddressMode::eRepeat),
97 addressModeV(vk::SamplerAddressMode::eRepeat),
98 addressModeW(vk::SamplerAddressMode::eRepeat),
99 borderColor(vk::BorderColor::eIntOpaqueBlack)
100 { }
101
104 vk::Filter magF, vk::Filter minF, vk::SamplerMipmapMode mm,
105 vk::SamplerAddressMode am, vk::BorderColor color)
106 : magFilter(magF), minFilter(minF), mipmapMode(mm),
107 addressModeU(am), addressModeV(vk::SamplerAddressMode::eRepeat),
108 addressModeW(vk::SamplerAddressMode::eRepeat), borderColor(color)
109 { }
110
113 vk::Filter magF, vk::Filter minF, vk::SamplerMipmapMode mm,
114 vk::SamplerAddressMode am1, vk::SamplerAddressMode am2,
115 vk::BorderColor color)
116 : magFilter(magF), minFilter(minF), mipmapMode(mm),
117 addressModeU(am1), addressModeV(am2),
118 addressModeW(vk::SamplerAddressMode::eRepeat), borderColor(color)
119 { }
120
121 };
122
126 vk::Sampler createSampler (SamplerInfo const &info);
127
131 vk::Sampler createDepthSampler (SamplerInfo const &info);
132
134 vk::Device device () const { return this->_device; }
135
137 const vk::PhysicalDeviceProperties *props () const
138 {
139 if (this->_propsCache == nullptr) {
141 }
142 return this->_propsCache;
143 }
144
146 const vk::PhysicalDeviceLimits *limits () const { return &this->props()->limits; }
147
149 const vk::PhysicalDeviceFeatures *features () const
150 {
151 if (this->_featuresCache == nullptr) {
153 }
154 return this->_featuresCache;
155 }
156
158 vk::FormatProperties formatProps (vk::Format fmt) const
159 {
160 return this->_gpu.getFormatProperties(fmt);
161 }
162
173 vk::PipelineLayout createPipelineLayout (
174 std::vector<vk::DescriptorSetLayout> descSets,
175 std::vector<vk::PushConstantRange> pcrs)
176 {
177 vk::PipelineLayoutCreateInfo layoutInfo(
178 {}, /* flags */
179 descSets, /* set layouts */
180 pcrs); /* push-constant ranges */
181
182 return this->_device.createPipelineLayout(layoutInfo);
183 }
184
188 vk::PipelineLayout createPipelineLayout (vk::DescriptorSetLayout descSet)
189 {
190 vk::PipelineLayoutCreateInfo layoutInfo(
191 {}, /* flags */
192 descSet, /* set layouts */
193 {}); /* push-constant ranges */
194
195 return this->_device.createPipelineLayout(layoutInfo);
196 }
197
229 vk::Pipeline createPipeline (
230 cs237::Shaders *shaders,
231 vk::PipelineVertexInputStateCreateInfo const &vertexInfo,
232 vk::PrimitiveTopology prim,
233 bool primRestart,
234 vk::ArrayProxy<vk::Viewport> const &viewports,
235 vk::ArrayProxy<vk::Rect2D> const &scissors,
236 bool depthClamp,
237 vk::PolygonMode polyMode,
238 vk::CullModeFlags cullMode,
239 vk::FrontFace front,
240 vk::PipelineLayout layout,
241 vk::RenderPass renderPass,
242 uint32_t subPass,
243 vk::ArrayProxy<vk::DynamicState> const &dynamic);
244
276 vk::Pipeline createPipeline (
277 cs237::Shaders *shaders,
278 vk::PipelineVertexInputStateCreateInfo const &vertexInfo,
279 vk::PrimitiveTopology prim,
280 vk::ArrayProxy<vk::Viewport> const &viewports,
281 vk::ArrayProxy<vk::Rect2D> const &scissors,
282 vk::PolygonMode polyMode,
283 vk::CullModeFlags cullMode,
284 vk::FrontFace front,
285 vk::PipelineLayout layout,
286 vk::RenderPass renderPass,
287 uint32_t subPass,
288 vk::ArrayProxy<vk::DynamicState> const &dynamic)
289 {
290 return this->createPipeline(
291 shaders,
292 vertexInfo,
293 prim,
294 false,
295 viewports,
296 scissors,
297 false,
298 polyMode,
299 cullMode,
300 front,
301 layout,
302 renderPass,
303 subPass,
304 dynamic);
305 }
306
309 vk::CommandBuffer newCommandBuf ()
310 {
311 vk::CommandBufferAllocateInfo allocInfo(
312 this->_cmdPool,
313 vk::CommandBufferLevel::ePrimary,
314 1); /* buffer count */
315
316 return (this->_device.allocateCommandBuffers(allocInfo))[0];
317 }
318
322 void beginCommands (vk::CommandBuffer cmdBuf, bool oneTime = false)
323 {
324 vk::CommandBufferBeginInfo beginInfo(
325 oneTime
326 ? vk::CommandBufferUsageFlagBits::eOneTimeSubmit
327 : vk::CommandBufferUsageFlags());
328 cmdBuf.begin(beginInfo);
329 }
330
333 void endCommands (vk::CommandBuffer cmdBuf) { cmdBuf.end(); }
334
337 void submitCommands (vk::CommandBuffer cmdBuf)
338 {
339 vk::CommandBuffer cmdBufs[1] = { cmdBuf };
340 vk::SubmitInfo submitInfo(
341 {},
342 {},
343 vk::ArrayProxyNoTemporaries<const vk::CommandBuffer>(1, cmdBufs),
344 {});
345 this->_queues.graphics.submit ({submitInfo});
346 this->_queues.graphics.waitIdle();
347 }
348
351 void freeCommandBuf (vk::CommandBuffer & cmdBuf)
352 {
353 this->_device.freeCommandBuffers (this->_cmdPool, cmdBuf);
354 }
355
356protected:
358 template <typename T>
359 struct Queues {
362 };
363
364 // information about swap-chain support
366 vk::SurfaceCapabilitiesKHR capabilities;
367 std::vector<vk::SurfaceFormatKHR> formats;
368 std::vector<vk::PresentModeKHR> presentModes;
369 };
370
371 std::string _name;
372 vk::DebugUtilsMessageSeverityFlagsEXT _messages;
374 bool _debug;
375 vk::Instance _instance;
376 vk::PhysicalDevice _gpu;
377 mutable vk::PhysicalDeviceProperties *_propsCache;
378 mutable vk::PhysicalDeviceFeatures *_featuresCache;
380 vk::Device _device;
383 vk::CommandPool _cmdPool;
384
388
392
396
400 void _selectDevice (vk::PhysicalDeviceFeatures *reqFeatures = nullptr);
401
408 int32_t _findMemory (uint32_t reqTypeBits, vk::MemoryPropertyFlags reqProps) const;
409
418 vk::Format _findBestFormat (
419 std::vector<vk::Format> candidates,
420 vk::ImageTiling tiling,
421 vk::FormatFeatureFlags features);
422
425
433 vk::Format _depthStencilBufferFormat (bool depth, bool stencil);
434
442 bool _getQIndices (vk::PhysicalDevice dev);
443
449
460 vk::Image _createImage (
461 uint32_t wid,
462 uint32_t ht,
463 vk::Format format,
464 vk::ImageTiling tiling,
465 vk::ImageUsageFlags usage,
466 vk::ImageLayout layout,
467 uint32_t mipLvls = 1);
468
478 vk::Image _createImage (
479 uint32_t wid,
480 uint32_t ht,
481 vk::Format format,
482 vk::ImageTiling tiling,
483 vk::ImageUsageFlags usage,
484 uint32_t mipLvls = 1)
485 {
486 return this->_createImage (
487 wid, ht, format, tiling, usage,
488 vk::ImageLayout::eUndefined,
489 mipLvls);
490 }
491
496 vk::DeviceMemory _allocImageMemory (vk::Image img, vk::MemoryPropertyFlags props);
497
499 vk::ImageView _createImageView (
500 vk::Image image, vk::Format format, vk::ImageAspectFlags aspectFlags);
501
504 vk::Image image,
505 vk::Format format,
506 vk::ImageLayout oldLayout,
507 vk::ImageLayout newLayout);
508
513 vk::Buffer _createBuffer (size_t size, vk::BufferUsageFlags usage);
514
519 vk::DeviceMemory _allocBufferMemory (vk::Buffer buf, vk::MemoryPropertyFlags props);
520
526 void _copyBuffer (vk::Buffer dstBuf, vk::Buffer srcBuf, size_t offset, size_t size);
527
536 vk::Image dstImg, vk::Buffer srcBuf, size_t size,
537 uint32_t wid, uint32_t ht=1, uint32_t depth=1);
538
539 /* debug-message support */
540 VkDebugUtilsMessengerEXT _debugMessenger;
541 void _initDebug ();
543};
544
545} // namespace cs237
546
547#endif // !_CS237_APPLICATION_HPP_
Definition cs237-texture.hpp:21
the base class for applications
Definition cs237-application.hpp:25
void _createInstance()
A helper function to create and initialize the Vulkan instance used by the application.
std::vector< vk::ExtensionProperties > supportedDeviceExtensions()
Get the list of supported Vulkan device extensions for the selected physical device.
Definition cs237-application.hpp:69
vk::Device _device
the logical device that we are using to render
Definition cs237-application.hpp:380
vk::Format _depthStencilBufferFormat(bool depth, bool stencil)
A helper function to identify the best depth/stencil-buffer attachment format for the device.
void _createLogicalDevice()
A helper function to create the logical device during initialization.
void _getPhysicalDeviceFeatures() const
function that gets the physical-device features and caches the pointer in the _featuresCache field.
vk::PhysicalDeviceFeatures * _featuresCache
a cache of the physical device properties
Definition cs237-application.hpp:378
vk::DeviceMemory _allocBufferMemory(vk::Buffer buf, vk::MemoryPropertyFlags props)
A helper function for allocating and binding device memory for a buffer.
const vk::PhysicalDeviceLimits * limits() const
access function for the physical device limits
Definition cs237-application.hpp:146
void freeCommandBuf(vk::CommandBuffer &cmdBuf)
free the command buffer
Definition cs237-application.hpp:351
VkDebugUtilsMessengerEXT _debugMessenger
Definition cs237-application.hpp:540
void _getPhysicalDeviceProperties() const
function that gets the physical-device properties and caches the pointer in the _propsCache field.
static std::vector< vk::LayerProperties > supportedLayers()
Get the list of supported layers.
Definition cs237-application.hpp:76
Application(std::vector< std::string > const &args, std::string const &name="CS237 App")
constructor for application base class
vk::Buffer _createBuffer(size_t size, vk::BufferUsageFlags usage)
create a vk::Buffer object
void _copyBufferToImage(vk::Image dstImg, vk::Buffer srcBuf, size_t size, uint32_t wid, uint32_t ht=1, uint32_t depth=1)
copy data from a buffer to an image
std::string name() const
return the application name
Definition cs237-application.hpp:48
Queues< uint32_t > _qIdxs
the queue family indices
Definition cs237-application.hpp:381
bool verbose() const
is the program in verbose mode?
Definition cs237-application.hpp:53
vk::PipelineLayout createPipelineLayout(std::vector< vk::DescriptorSetLayout > descSets, std::vector< vk::PushConstantRange > pcrs)
Create a pipeline layout.
Definition cs237-application.hpp:173
vk::PipelineLayout createPipelineLayout(vk::DescriptorSetLayout descSet)
Create a pipeline layout for a single descriptor set.
Definition cs237-application.hpp:188
vk::CommandBuffer newCommandBuf()
create and initialize a command buffer
Definition cs237-application.hpp:309
vk::PhysicalDeviceProperties * _propsCache
Definition cs237-application.hpp:377
void _copyBuffer(vk::Buffer dstBuf, vk::Buffer srcBuf, size_t offset, size_t size)
copy data from one buffer to another using the GPU
vk::Pipeline createPipeline(cs237::Shaders *shaders, vk::PipelineVertexInputStateCreateInfo const &vertexInfo, vk::PrimitiveTopology prim, bool primRestart, vk::ArrayProxy< vk::Viewport > const &viewports, vk::ArrayProxy< vk::Rect2D > const &scissors, bool depthClamp, vk::PolygonMode polyMode, vk::CullModeFlags cullMode, vk::FrontFace front, vk::PipelineLayout layout, vk::RenderPass renderPass, uint32_t subPass, vk::ArrayProxy< vk::DynamicState > const &dynamic)
Allocate a graphics pipeline.
bool _debug
set when validation layers should be enabled
Definition cs237-application.hpp:374
const vk::PhysicalDeviceProperties * props() const
get the physical-device properties pointer
Definition cs237-application.hpp:137
void endCommands(vk::CommandBuffer cmdBuf)
end the recording of commands in the give command buffer
Definition cs237-application.hpp:333
vk::DebugUtilsMessageSeverityFlagsEXT _messages
set to the message severity level
Definition cs237-application.hpp:372
vk::PhysicalDevice _gpu
the graphics card (aka device) that we are using
Definition cs237-application.hpp:376
vk::Instance _instance
the Vulkan instance used by the application
Definition cs237-application.hpp:375
virtual ~Application()
vk::Sampler createDepthSampler(SamplerInfo const &info)
Create a depth-texture sampler as specified.
void _transitionImageLayout(vk::Image image, vk::Format format, vk::ImageLayout oldLayout, vk::ImageLayout newLayout)
A helper function for changing the layout of an image.
vk::FormatProperties formatProps(vk::Format fmt) const
access function for the properties of an image format
Definition cs237-application.hpp:158
vk::Device device() const
get the logical device
Definition cs237-application.hpp:134
int32_t _findMemory(uint32_t reqTypeBits, vk::MemoryPropertyFlags reqProps) const
A helper function to identify the index of a device memory type that has the required type and proper...
void submitCommands(vk::CommandBuffer cmdBuf)
end the commands and submit the buffer to the graphics queue.
Definition cs237-application.hpp:337
std::string _name
the application name
Definition cs237-application.hpp:371
void beginCommands(vk::CommandBuffer cmdBuf, bool oneTime=false)
begin recording commands in the given command buffer
Definition cs237-application.hpp:322
vk::ImageView _createImageView(vk::Image image, vk::Format format, vk::ImageAspectFlags aspectFlags)
A helper function for creating a Vulkan image view object for an image.
void _selectDevice(vk::PhysicalDeviceFeatures *reqFeatures=nullptr)
A helper function to select the GPU to use.
vk::Pipeline createPipeline(cs237::Shaders *shaders, vk::PipelineVertexInputStateCreateInfo const &vertexInfo, vk::PrimitiveTopology prim, vk::ArrayProxy< vk::Viewport > const &viewports, vk::ArrayProxy< vk::Rect2D > const &scissors, vk::PolygonMode polyMode, vk::CullModeFlags cullMode, vk::FrontFace front, vk::PipelineLayout layout, vk::RenderPass renderPass, uint32_t subPass, vk::ArrayProxy< vk::DynamicState > const &dynamic)
Allocate a graphics pipeline using common defaults.
Definition cs237-application.hpp:276
const vk::PhysicalDeviceFeatures * features() const
access function for the physical device features
Definition cs237-application.hpp:149
Queues< vk::Queue > _queues
the device queues that we are using
Definition cs237-application.hpp:382
virtual void run()=0
main function for running the application
bool debug() const
is the program in debug mode?
Definition cs237-application.hpp:51
vk::CommandPool _cmdPool
pool for allocating command buffers
Definition cs237-application.hpp:383
vk::Sampler createSampler(SamplerInfo const &info)
Create a texture sampler as specified.
vk::Image _createImage(uint32_t wid, uint32_t ht, vk::Format format, vk::ImageTiling tiling, vk::ImageUsageFlags usage, uint32_t mipLvls=1)
A helper function for creating a Vulkan image that can be used for textures or depth buffers.
Definition cs237-application.hpp:478
void _initCommandPool()
allocate the command pool for the application
vk::Image _createImage(uint32_t wid, uint32_t ht, vk::Format format, vk::ImageTiling tiling, vk::ImageUsageFlags usage, vk::ImageLayout layout, uint32_t mipLvls=1)
A helper function for creating a Vulkan image that can be used for textures or depth buffers.
static std::vector< vk::ExtensionProperties > supportedExtensions()
Get the list of supported Vulkan instance extensions.
Definition cs237-application.hpp:61
vk::Format _findBestFormat(std::vector< vk::Format > candidates, vk::ImageTiling tiling, vk::FormatFeatureFlags features)
A helper function to identify the best image format supported by the device from an ordered list of c...
bool _getQIndices(vk::PhysicalDevice dev)
A helper function to identify the queue-family indices for the physical device that we are using.
vk::DeviceMemory _allocImageMemory(vk::Image img, vk::MemoryPropertyFlags props)
A helper function for allocating and binding device memory for an image.
A base class for buffer objects of all kinds.
Definition cs237-buffer.hpp:23
This class is a wrapper around the.
Definition cs237-depth-buffer.hpp:23
wrapper around Vulkan memory objects
Definition cs237-memory-obj.hpp:23
Definition cs237-shader.hpp:25
Definition cs237-texture.hpp:72
Definition cs237-texture.hpp:83
abstract base class for simple GLFW windows used to view buffers, etc.
Definition cs237-window.hpp:58
Definition cs237-aabb.hpp:22
information about queue families
Definition cs237-application.hpp:359
T present
the queue family that supports presentation
Definition cs237-application.hpp:361
T graphics
the queue family that supports graphics
Definition cs237-application.hpp:360
Definition cs237-application.hpp:84
vk::SamplerAddressMode addressModeU
Definition cs237-application.hpp:88
SamplerInfo(vk::Filter magF, vk::Filter minF, vk::SamplerMipmapMode mm, vk::SamplerAddressMode am1, vk::SamplerAddressMode am2, vk::BorderColor color)
sampler info for 2D texture
Definition cs237-application.hpp:112
vk::SamplerMipmapMode mipmapMode
Definition cs237-application.hpp:87
vk::BorderColor borderColor
Definition cs237-application.hpp:91
vk::SamplerAddressMode addressModeW
Definition cs237-application.hpp:90
SamplerInfo(vk::Filter magF, vk::Filter minF, vk::SamplerMipmapMode mm, vk::SamplerAddressMode am, vk::BorderColor color)
sampler info for 1D texture
Definition cs237-application.hpp:103
vk::Filter magFilter
Definition cs237-application.hpp:85
SamplerInfo()
Definition cs237-application.hpp:93
vk::SamplerAddressMode addressModeV
Definition cs237-application.hpp:89
vk::Filter minFilter
Definition cs237-application.hpp:86
Definition cs237-application.hpp:365
std::vector< vk::SurfaceFormatKHR > formats
Definition cs237-application.hpp:367
vk::SurfaceCapabilitiesKHR capabilities
Definition cs237-application.hpp:366
std::vector< vk::PresentModeKHR > presentModes
Definition cs237-application.hpp:368