mirror of
https://github.com/Drezil/dear-imgui.hs.git
synced 2025-07-04 20:18:47 +02:00
Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
67e169dc35 | |||
ae3fdb8bc3 | |||
ccdff36774 | |||
af6ba9e989 | |||
dc11fad07f | |||
265d143261 |
26
ChangeLog.md
26
ChangeLog.md
@ -1,5 +1,17 @@
|
||||
# Changelog for dear-imgui
|
||||
|
||||
## [1.4.0]
|
||||
|
||||
- `imgui` updated to [1.87].
|
||||
- Added `DearImGui.Vulkan.vulkanAddTexture`.
|
||||
- Added `DearImGui.GLFW.glfwCursorPosCallback`.
|
||||
* Apps that don't install backend callbacks, *must* call it themselves.
|
||||
- Added flags `use-wchar32` (default on) and `disable-obsolete` (default off).
|
||||
|
||||
## [1.3.1]
|
||||
|
||||
- `imgui` updated to [1.86].
|
||||
|
||||
## [1.3.0]
|
||||
|
||||
- Added `DearImGui.FontAtlas` and related `DearImGui.Raw.Font.*` bits.
|
||||
@ -7,7 +19,7 @@
|
||||
|
||||
## [1.2.2]
|
||||
|
||||
- `imgui` updated to 1.85.
|
||||
- `imgui` updated to [1.85].
|
||||
|
||||
## [1.2.1]
|
||||
|
||||
@ -29,7 +41,7 @@
|
||||
|
||||
## [1.1.0]
|
||||
|
||||
- `imgui` updated to 1.84.2.
|
||||
- `imgui` updated to [1.84.2].
|
||||
- Removed unused Window argument from SDL `newFrame` to match 1.84.
|
||||
- Added GLFW backend callbacks.
|
||||
- Added more withXXX wrappers.
|
||||
@ -44,7 +56,7 @@
|
||||
|
||||
## [1.0.0]
|
||||
|
||||
Initial Hackage release based on 1.83.
|
||||
Initial Hackage release based on [1.83].
|
||||
|
||||
[1.0.0]: https://github.com/haskell-game/dear-imgui.hs/tree/v1.0.0
|
||||
[1.0.1]: https://github.com/haskell-game/dear-imgui.hs/tree/v1.0.1
|
||||
@ -54,3 +66,11 @@ Initial Hackage release based on 1.83.
|
||||
[1.2.1]: https://github.com/haskell-game/dear-imgui.hs/tree/v1.2.1
|
||||
[1.2.2]: https://github.com/haskell-game/dear-imgui.hs/tree/v1.2.2
|
||||
[1.3.0]: https://github.com/haskell-game/dear-imgui.hs/tree/v1.3.0
|
||||
[1.3.1]: https://github.com/haskell-game/dear-imgui.hs/tree/v1.3.1
|
||||
[1.4.0]: https://github.com/haskell-game/dear-imgui.hs/tree/v1.4.0
|
||||
|
||||
[1.87]: https://github.com/ocornut/imgui/releases/tag/v1.87
|
||||
[1.86]: https://github.com/ocornut/imgui/releases/tag/v1.86
|
||||
[1.85]: https://github.com/ocornut/imgui/releases/tag/v1.85
|
||||
[1.84.2]: https://github.com/ocornut/imgui/releases/tag/v1.84.2
|
||||
[1.83]: https://github.com/ocornut/imgui/releases/tag/v1.83
|
||||
|
@ -1,7 +1,7 @@
|
||||
cabal-version: 3.0
|
||||
|
||||
name: dear-imgui
|
||||
version: 1.3.0
|
||||
version: 1.4.0
|
||||
author: Oliver Charles
|
||||
maintainer: ollie@ocharles.org.uk, aenor.realm@gmail.com
|
||||
license: BSD-3-Clause
|
||||
@ -24,7 +24,7 @@ extra-source-files:
|
||||
imgui/imconfig.h,
|
||||
imgui/LICENSE.txt
|
||||
|
||||
common build-flags
|
||||
common exe-flags
|
||||
if flag(debug)
|
||||
if os(linux)
|
||||
ghc-options: -Wall -g -rtsopts -dcore-lint -debug
|
||||
@ -50,7 +50,6 @@ common build-flags
|
||||
ghc-options: -Wall -O2
|
||||
cc-options: -O2
|
||||
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
location: https://github.com/haskell-game/dear-imgui.hs
|
||||
@ -111,6 +110,22 @@ flag examples
|
||||
manual:
|
||||
True
|
||||
|
||||
flag disable-obsolete
|
||||
description:
|
||||
Don't define obsolete functions/enums/behaviors. Consider enabling from time to time after updating to avoid using soon-to-be obsolete function/names.
|
||||
default:
|
||||
False
|
||||
manual:
|
||||
True
|
||||
|
||||
flag use-wchar32
|
||||
description:
|
||||
Use 32-bit for ImWchar (default is 16-bit) to support unicode planes 1-16. (e.g. point beyond 0xFFFF like emoticons, dingbats, symbols, shapes, ancient languages, etc...)
|
||||
default:
|
||||
True
|
||||
manual:
|
||||
True
|
||||
|
||||
common common
|
||||
build-depends:
|
||||
base
|
||||
@ -157,6 +172,13 @@ library
|
||||
, unliftio
|
||||
, vector
|
||||
|
||||
if flag(disable-obsolete)
|
||||
cxx-options: -DIMGUI_DISABLE_OBSOLETE_FUNCTIONS
|
||||
|
||||
if flag(use-wchar32)
|
||||
cxx-options: -DIMGUI_USE_WCHAR32
|
||||
cpp-options: -DIMGUI_USE_WCHAR32
|
||||
|
||||
if flag(opengl2)
|
||||
exposed-modules:
|
||||
DearImGui.OpenGL2
|
||||
@ -273,7 +295,7 @@ library dear-imgui-generator
|
||||
>= 0.2.11 && < 0.3
|
||||
|
||||
executable test
|
||||
import: common, build-flags
|
||||
import: common, exe-flags
|
||||
main-is: Main.hs
|
||||
default-language: Haskell2010
|
||||
if (!flag(examples) || !flag(sdl) || !flag(opengl2))
|
||||
@ -282,7 +304,7 @@ executable test
|
||||
build-depends: base, sdl2, gl, dear-imgui, vector
|
||||
|
||||
executable glfw
|
||||
import: common, build-flags
|
||||
import: common, exe-flags
|
||||
main-is: Main.hs
|
||||
hs-source-dirs: examples/glfw
|
||||
default-language: Haskell2010
|
||||
@ -292,7 +314,7 @@ executable glfw
|
||||
build-depends: base, GLFW-b, gl, dear-imgui, managed
|
||||
|
||||
executable readme
|
||||
import: common, build-flags
|
||||
import: common, exe-flags
|
||||
main-is: Readme.hs
|
||||
hs-source-dirs: examples
|
||||
build-depends: sdl2, gl, dear-imgui, managed
|
||||
@ -300,7 +322,7 @@ executable readme
|
||||
buildable: False
|
||||
|
||||
executable fonts
|
||||
import: common, build-flags
|
||||
import: common, exe-flags
|
||||
main-is: Main.hs
|
||||
hs-source-dirs: examples/fonts
|
||||
build-depends: sdl2, gl, dear-imgui, managed
|
||||
@ -308,7 +330,7 @@ executable fonts
|
||||
buildable: False
|
||||
|
||||
executable image
|
||||
import: common, build-flags
|
||||
import: common, exe-flags
|
||||
main-is: Image.hs
|
||||
hs-source-dirs: examples/sdl
|
||||
build-depends: sdl2, gl, dear-imgui, managed, vector
|
||||
@ -316,7 +338,7 @@ executable image
|
||||
buildable: False
|
||||
|
||||
executable vulkan
|
||||
import: common, build-flags
|
||||
import: common, exe-flags
|
||||
main-is: Main.hs
|
||||
other-modules: Attachments, Backend, Input, Util
|
||||
hs-source-dirs: examples/vulkan
|
||||
@ -350,3 +372,5 @@ executable vulkan
|
||||
^>= 3.9
|
||||
, vulkan-utils
|
||||
^>= 0.4.1
|
||||
, VulkanMemoryAllocator
|
||||
, JuicyPixels
|
||||
|
@ -24,7 +24,9 @@ import Control.Arrow
|
||||
import Control.Exception
|
||||
( throw )
|
||||
import Control.Monad
|
||||
( unless, void )
|
||||
( unless, void, when )
|
||||
import Data.Bits
|
||||
( (.|.) )
|
||||
import Data.Foldable
|
||||
( traverse_ )
|
||||
import Data.String
|
||||
@ -62,11 +64,13 @@ import qualified Data.Vector as Boxed
|
||||
( Vector )
|
||||
import qualified Data.Vector as Boxed.Vector
|
||||
( (!), head, singleton, unzip )
|
||||
import qualified Data.Vector.Storable as Storable.Vector
|
||||
|
||||
-- vulkan
|
||||
import qualified Vulkan
|
||||
import qualified Vulkan.Exception as Vulkan
|
||||
import qualified Vulkan.Zero as Vulkan
|
||||
import qualified VulkanMemoryAllocator as VMA
|
||||
|
||||
-- dear-imgui
|
||||
import Attachments
|
||||
@ -76,6 +80,13 @@ import qualified DearImGui as ImGui
|
||||
import qualified DearImGui.Vulkan as ImGui.Vulkan
|
||||
import qualified DearImGui.SDL as ImGui.SDL
|
||||
import qualified DearImGui.SDL.Vulkan as ImGui.SDL.Vulkan
|
||||
import Util (vmaVulkanFunctions)
|
||||
import Foreign (Ptr, castPtr, copyBytes, with, withForeignPtr, wordPtrToPtr)
|
||||
import qualified DearImGui.Raw as ImGui.Raw
|
||||
import UnliftIO (MonadUnliftIO)
|
||||
import qualified Vulkan.CStruct.Extends as Vulkan
|
||||
|
||||
import qualified Codec.Picture as Picture
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
@ -83,8 +94,8 @@ type Handler = LogMessage -> ResourceT IO ()
|
||||
deriving via ( ReaderT Handler (ResourceT IO) )
|
||||
instance MonadResource ( LoggingT LogMessage (ResourceT IO) )
|
||||
|
||||
gui :: MonadIO m => m ImGui.DrawData
|
||||
gui = do
|
||||
gui :: MonadUnliftIO m => (ImGui.Raw.ImVec2, Ptr ()) -> m ImGui.DrawData
|
||||
gui texture = do
|
||||
-- Prepare frame
|
||||
ImGui.Vulkan.vulkanNewFrame
|
||||
ImGui.SDL.sdl2NewFrame
|
||||
@ -92,6 +103,25 @@ gui = do
|
||||
|
||||
-- Run your windows
|
||||
ImGui.showDemoWindow
|
||||
ImGui.withWindowOpen "Vulkan demo" do
|
||||
clicked <- liftIO do
|
||||
with (fst texture) \sizePtr ->
|
||||
with (ImGui.Raw.ImVec2 0 0) \uv0Ptr ->
|
||||
with (ImGui.Raw.ImVec2 1 1) \uv1Ptr ->
|
||||
with (ImGui.Raw.ImVec4 1 1 1 1) \tintColPtr ->
|
||||
with (ImGui.Raw.ImVec4 1 1 1 1) \bgColPtr ->
|
||||
ImGui.Raw.imageButton
|
||||
(snd texture)
|
||||
sizePtr
|
||||
uv0Ptr
|
||||
uv1Ptr
|
||||
(-1)
|
||||
bgColPtr
|
||||
tintColPtr
|
||||
|
||||
when clicked $
|
||||
ImGui.text "clicky click!"
|
||||
|
||||
|
||||
-- Process ImGui state into draw commands
|
||||
ImGui.render
|
||||
@ -275,6 +305,80 @@ app = do
|
||||
logDebug "Allocating command buffers"
|
||||
commandBuffers <- snd <$> allocatePrimaryCommandBuffers device commandPool imageCount
|
||||
|
||||
logDebug "Allocating VMA"
|
||||
(_key, vma) <- VMA.withAllocator
|
||||
Vulkan.zero
|
||||
{ VMA.instance' = Vulkan.instanceHandle instance'
|
||||
, VMA.device = Vulkan.deviceHandle device
|
||||
, VMA.physicalDevice = Vulkan.physicalDeviceHandle physicalDevice
|
||||
, VMA.vulkanFunctions = Just $ vmaVulkanFunctions device instance'
|
||||
}
|
||||
ResourceT.allocate
|
||||
|
||||
logDebug "Loading image data"
|
||||
picture <- liftIO (Picture.readImage "Example.png") >>= either error (pure . Picture.convertRGBA8)
|
||||
|
||||
logDebug "Allocating image"
|
||||
let textureWidth = Picture.imageWidth picture
|
||||
let textureHeight = Picture.imageHeight picture
|
||||
|
||||
(_key, (image, _imageAllocation, _imageAllocationInfo)) <- VMA.withImage
|
||||
vma
|
||||
( Vulkan.zero
|
||||
{ Vulkan.imageType = Vulkan.IMAGE_TYPE_2D
|
||||
, Vulkan.mipLevels = 1
|
||||
, Vulkan.arrayLayers = 1
|
||||
, Vulkan.format = Vulkan.FORMAT_R8G8B8A8_SRGB
|
||||
, Vulkan.extent = Vulkan.Extent3D (fromIntegral textureWidth) (fromIntegral textureHeight) 1
|
||||
, Vulkan.tiling = Vulkan.IMAGE_TILING_OPTIMAL
|
||||
, Vulkan.initialLayout = Vulkan.IMAGE_LAYOUT_UNDEFINED
|
||||
, Vulkan.usage = Vulkan.IMAGE_USAGE_SAMPLED_BIT .|. Vulkan.IMAGE_USAGE_TRANSFER_DST_BIT
|
||||
, Vulkan.sharingMode = Vulkan.SHARING_MODE_EXCLUSIVE
|
||||
, Vulkan.samples = Vulkan.SAMPLE_COUNT_1_BIT
|
||||
}
|
||||
)
|
||||
( Vulkan.zero
|
||||
{ VMA.flags = Vulkan.zero
|
||||
, VMA.usage = VMA.MEMORY_USAGE_GPU_ONLY
|
||||
, VMA.requiredFlags = Vulkan.MEMORY_PROPERTY_DEVICE_LOCAL_BIT
|
||||
}
|
||||
)
|
||||
ResourceT.allocate
|
||||
|
||||
let (pictureF, pictureSize) = Storable.Vector.unsafeToForeignPtr0 (Picture.imageData picture)
|
||||
|
||||
let stageBufferCI = Vulkan.zero
|
||||
{ Vulkan.size = fromIntegral pictureSize
|
||||
, Vulkan.usage = Vulkan.BUFFER_USAGE_TRANSFER_SRC_BIT
|
||||
, Vulkan.sharingMode = Vulkan.SHARING_MODE_EXCLUSIVE
|
||||
}
|
||||
let stageAllocationCI = Vulkan.zero
|
||||
{ VMA.flags = VMA.ALLOCATION_CREATE_MAPPED_BIT
|
||||
, VMA.usage = VMA.MEMORY_USAGE_CPU_TO_GPU
|
||||
, VMA.requiredFlags = Vulkan.MEMORY_PROPERTY_HOST_VISIBLE_BIT
|
||||
}
|
||||
|
||||
(stageKey, (stage, stageAllocation, stageAllocationInfo)) <- VMA.withBuffer
|
||||
vma
|
||||
stageBufferCI
|
||||
stageAllocationCI
|
||||
ResourceT.allocate
|
||||
|
||||
liftIO $ withForeignPtr pictureF \srcPtr ->
|
||||
copyBytes (VMA.mappedData stageAllocationInfo) (castPtr srcPtr) pictureSize
|
||||
|
||||
VMA.flushAllocation vma stageAllocation 0 Vulkan.WHOLE_SIZE
|
||||
|
||||
logDebug "Allocating sampler"
|
||||
(_key, sampler) <- Vulkan.withSampler device Vulkan.zero Nothing ResourceT.allocate
|
||||
logDebug "Allocating image view"
|
||||
(_key, imageView) <- createImageView
|
||||
device
|
||||
image
|
||||
Vulkan.IMAGE_VIEW_TYPE_2D
|
||||
Vulkan.FORMAT_R8G8B8A8_SRGB
|
||||
Vulkan.IMAGE_ASPECT_COLOR_BIT
|
||||
|
||||
-------------------------------------------
|
||||
-- Initialise Dear ImGui.
|
||||
|
||||
@ -308,23 +412,96 @@ app = do
|
||||
logDebug "Creating fence"
|
||||
( fenceKey, fence ) <- createFence device
|
||||
logDebug "Allocating one-shot command buffer"
|
||||
( fontUploadCommandBufferKey, fontUploadCommandBuffer ) <-
|
||||
( oneshotCommandBufferKey, oneshotCommandBuffer ) <-
|
||||
second Boxed.Vector.head <$>
|
||||
allocatePrimaryCommandBuffers device commandPool 1
|
||||
|
||||
logDebug "Recording one-shot commands"
|
||||
beginCommandBuffer fontUploadCommandBuffer
|
||||
_ <- ImGui.Vulkan.vulkanCreateFontsTexture fontUploadCommandBuffer
|
||||
endCommandBuffer fontUploadCommandBuffer
|
||||
beginCommandBuffer oneshotCommandBuffer
|
||||
_ <- ImGui.Vulkan.vulkanCreateFontsTexture oneshotCommandBuffer
|
||||
|
||||
logDebug "Uploading texture"
|
||||
let textureSubresource = Vulkan.ImageSubresourceRange
|
||||
{ Vulkan.aspectMask = Vulkan.IMAGE_ASPECT_COLOR_BIT
|
||||
, Vulkan.baseMipLevel = 0
|
||||
, Vulkan.levelCount = 1
|
||||
, Vulkan.baseArrayLayer = 0
|
||||
, Vulkan.layerCount = 1
|
||||
}
|
||||
|
||||
let uploadBarrier = Vulkan.zero
|
||||
{ Vulkan.srcAccessMask = Vulkan.zero
|
||||
, Vulkan.dstAccessMask = Vulkan.ACCESS_TRANSFER_WRITE_BIT
|
||||
, Vulkan.oldLayout = Vulkan.IMAGE_LAYOUT_UNDEFINED
|
||||
, Vulkan.newLayout = Vulkan.IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL
|
||||
, Vulkan.srcQueueFamilyIndex = Vulkan.QUEUE_FAMILY_IGNORED
|
||||
, Vulkan.dstQueueFamilyIndex = Vulkan.QUEUE_FAMILY_IGNORED
|
||||
, Vulkan.image = image
|
||||
, Vulkan.subresourceRange = textureSubresource
|
||||
} :: Vulkan.ImageMemoryBarrier '[]
|
||||
Vulkan.cmdPipelineBarrier
|
||||
oneshotCommandBuffer
|
||||
Vulkan.PIPELINE_STAGE_TOP_OF_PIPE_BIT
|
||||
Vulkan.PIPELINE_STAGE_TRANSFER_BIT
|
||||
Vulkan.zero
|
||||
mempty
|
||||
mempty
|
||||
(Boxed.Vector.singleton $ Vulkan.SomeStruct uploadBarrier)
|
||||
|
||||
Vulkan.cmdCopyBufferToImage oneshotCommandBuffer stage image Vulkan.IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL $
|
||||
Boxed.Vector.singleton Vulkan.BufferImageCopy
|
||||
{ Vulkan.bufferOffset = 0
|
||||
, Vulkan.bufferRowLength = Vulkan.zero
|
||||
, Vulkan.bufferImageHeight = Vulkan.zero
|
||||
, Vulkan.imageSubresource = Vulkan.ImageSubresourceLayers
|
||||
{ aspectMask = Vulkan.IMAGE_ASPECT_COLOR_BIT
|
||||
, mipLevel = 0
|
||||
, baseArrayLayer = 0
|
||||
, layerCount = 1
|
||||
}
|
||||
, Vulkan.imageOffset = Vulkan.zero
|
||||
, Vulkan.imageExtent = Vulkan.Extent3D
|
||||
{ width = fromIntegral textureWidth
|
||||
, height = fromIntegral textureHeight
|
||||
, depth = 1
|
||||
}
|
||||
}
|
||||
|
||||
logDebug "Transitioning texture"
|
||||
let transitionBarrier = Vulkan.zero
|
||||
{ Vulkan.srcAccessMask = Vulkan.ACCESS_TRANSFER_WRITE_BIT
|
||||
, Vulkan.dstAccessMask = Vulkan.ACCESS_SHADER_READ_BIT
|
||||
, Vulkan.oldLayout = Vulkan.IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL
|
||||
, Vulkan.newLayout = Vulkan.IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL
|
||||
, Vulkan.srcQueueFamilyIndex = Vulkan.QUEUE_FAMILY_IGNORED
|
||||
, Vulkan.dstQueueFamilyIndex = Vulkan.QUEUE_FAMILY_IGNORED
|
||||
, Vulkan.image = image
|
||||
, Vulkan.subresourceRange = textureSubresource
|
||||
} :: Vulkan.ImageMemoryBarrier '[]
|
||||
Vulkan.cmdPipelineBarrier
|
||||
oneshotCommandBuffer
|
||||
Vulkan.PIPELINE_STAGE_TRANSFER_BIT
|
||||
Vulkan.PIPELINE_STAGE_FRAGMENT_SHADER_BIT
|
||||
Vulkan.zero
|
||||
mempty
|
||||
mempty
|
||||
(Boxed.Vector.singleton $ Vulkan.SomeStruct transitionBarrier)
|
||||
|
||||
endCommandBuffer oneshotCommandBuffer
|
||||
|
||||
logDebug "Submitting one-shot commands"
|
||||
submitCommandBuffer queue fontUploadCommandBuffer [] [] ( Just fence )
|
||||
submitCommandBuffer queue oneshotCommandBuffer [] [] ( Just fence )
|
||||
waitForFences device ( WaitAll [ fence ] )
|
||||
|
||||
logDebug "Finished uploading font objects"
|
||||
logDebug "Cleaning up one-shot commands"
|
||||
ImGui.Vulkan.vulkanDestroyFontUploadObjects
|
||||
traverse_ ResourceT.release [ fenceKey, fontUploadCommandBufferKey ]
|
||||
traverse_ ResourceT.release [ fenceKey, oneshotCommandBufferKey, stageKey ]
|
||||
|
||||
logDebug "Adding imgui texture"
|
||||
Vulkan.DescriptorSet ds <- ImGui.Vulkan.vulkanAddTexture sampler imageView Vulkan.IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL
|
||||
let textureSize = ImGui.Raw.ImVec2 (fromIntegral textureWidth) (fromIntegral textureHeight)
|
||||
let texture = (textureSize, wordPtrToPtr $ fromIntegral ds)
|
||||
|
||||
let
|
||||
mainLoop :: AppState m -> m ()
|
||||
@ -364,7 +541,7 @@ app = do
|
||||
beginCommandBuffer commandBuffer
|
||||
cmdBeginRenderPass commandBuffer imGuiRenderPass framebuffer clearValues swapchainExtent
|
||||
|
||||
drawData <- gui
|
||||
drawData <- gui texture
|
||||
ImGui.Vulkan.vulkanRenderDrawData drawData commandBuffer Nothing
|
||||
|
||||
cmdEndRenderPass commandBuffer
|
||||
|
@ -1,4 +1,7 @@
|
||||
{-# LANGUAGE BlockArguments #-}
|
||||
{-# LANGUAGE CPP #-}
|
||||
{-# LANGUAGE NamedFieldPuns #-}
|
||||
{-# LANGUAGE RecordWildCards #-}
|
||||
{-# LANGUAGE ScopedTypeVariables #-}
|
||||
|
||||
module Util where
|
||||
@ -12,6 +15,10 @@ import Data.Functor.Identity
|
||||
( Identity(..) )
|
||||
import Data.Traversable
|
||||
( for )
|
||||
#if MIN_VERSION_VulkanMemoryAllocator(0,8,0)
|
||||
import Foreign
|
||||
( castFunPtr )
|
||||
#endif
|
||||
|
||||
-- transformers
|
||||
import Control.Monad.Trans.State.Strict
|
||||
@ -19,6 +26,16 @@ import Control.Monad.Trans.State.Strict
|
||||
import Control.Monad.Trans.Writer.Strict
|
||||
( runWriter, tell )
|
||||
|
||||
-- vulkan
|
||||
import qualified Vulkan
|
||||
#if MIN_VERSION_VulkanMemoryAllocator(0,8,0)
|
||||
import qualified Vulkan.Dynamic as VkDynamic
|
||||
#endif
|
||||
import Vulkan.Zero (zero)
|
||||
|
||||
-- VulkanMemoryAllocator
|
||||
import qualified VulkanMemoryAllocator as VMA
|
||||
|
||||
---------------------------------------------------------------
|
||||
|
||||
iunzipWith
|
||||
@ -38,3 +55,19 @@ ifor i0 upd ta f = (`evalState` i0) . getCompose $ result
|
||||
where
|
||||
result :: Compose (State i) f (t b)
|
||||
result = for ta \ a -> ( coerce ( \ i -> ( f i a, upd i ) ) )
|
||||
|
||||
vmaVulkanFunctions
|
||||
:: Vulkan.Device
|
||||
-> Vulkan.Instance
|
||||
-> VMA.VulkanFunctions
|
||||
#if MIN_VERSION_VulkanMemoryAllocator(0,8,0)
|
||||
vmaVulkanFunctions Vulkan.Device{deviceCmds} Vulkan.Instance{instanceCmds} =
|
||||
zero
|
||||
{ VMA.vkGetInstanceProcAddr =
|
||||
castFunPtr $ VkDynamic.pVkGetInstanceProcAddr instanceCmds
|
||||
, VMA.vkGetDeviceProcAddr =
|
||||
castFunPtr $ VkDynamic.pVkGetDeviceProcAddr deviceCmds
|
||||
}
|
||||
#else
|
||||
vmaVulkanFunctions _device _instance = zero
|
||||
#endif
|
||||
|
@ -146,6 +146,8 @@ headers = do
|
||||
|
||||
_ <- skipManyTill anySingle ( namedSection "Viewports" )
|
||||
|
||||
_ <- skipManyTill anySingle ( namedSection "Platform Dependent Interfaces" ) -- XXX: since 1.87
|
||||
|
||||
_ <- skipManyTill anySingle ( namedSection "Obsolete functions and types" )
|
||||
|
||||
let
|
||||
@ -254,13 +256,21 @@ patternNameAndValue enumName =
|
||||
where
|
||||
count :: StateT EnumState m Integer
|
||||
count = do
|
||||
_ <- single ( Identifier $ enumName <> "COUNT" )
|
||||
let idName = enumName <> "COUNT"
|
||||
_ <- single ( Identifier idName )
|
||||
|
||||
mbVal <- optional do
|
||||
_ <- reservedSymbol '='
|
||||
integerExpression
|
||||
case mbVal of
|
||||
EnumState{enumValues} <- get
|
||||
integerExpression enumValues
|
||||
|
||||
countVal <- case mbVal of
|
||||
Nothing -> currEnumTag <$> get
|
||||
Just ct -> pure ct
|
||||
|
||||
modify' ( \ st -> st { enumValues = HashMap.insert idName countVal ( enumValues st ) } )
|
||||
pure countVal
|
||||
|
||||
value :: StateT EnumState m ( Text, Integer )
|
||||
value = do
|
||||
name <- identifier
|
||||
@ -271,13 +281,16 @@ patternNameAndValue enumName =
|
||||
patternRHS =
|
||||
( do
|
||||
reservedSymbol '='
|
||||
try integerExpression <|> try disjunction
|
||||
EnumState{enumValues} <- get
|
||||
try disjunction <|> try (integerExpression enumValues)
|
||||
)
|
||||
<|> ( currEnumTag <$> get )
|
||||
|
||||
disjunction :: StateT EnumState m Integer
|
||||
disjunction = do
|
||||
( summands :: [Text] ) <- identifier `sepBy1` symbol "|"
|
||||
initial <- identifier <* symbol "|"
|
||||
( rest :: [Text] ) <- identifier `sepBy1` symbol "|"
|
||||
let summands = initial : rest
|
||||
valsMap <- enumValues <$> get
|
||||
let
|
||||
res :: Either [ Text ] Integer
|
||||
@ -327,9 +340,9 @@ symbol :: MonadParsec e [ Tok ] m => Text -> m ()
|
||||
symbol s = token ( \ case { Symbolic s' | s == s' -> Just (); _ -> Nothing } ) mempty
|
||||
<?> ( Text.unpack s <> " (symbol)" )
|
||||
|
||||
integerExpression :: MonadParsec e [ Tok ] m => m Integer
|
||||
integerExpression = try integerPower <|> integer
|
||||
|
||||
integerExpression :: MonadParsec e [ Tok ] m => HashMap Text Integer -> m Integer
|
||||
integerExpression enums = try integerPower <|> try integerAdd <|> try integerSub <|> integer
|
||||
where
|
||||
integerPower :: MonadParsec e [ Tok ] m => m Integer
|
||||
integerPower = do
|
||||
a <- integer
|
||||
@ -337,18 +350,37 @@ integerPower = do
|
||||
i <- integer
|
||||
pure ( a `shiftL` fromIntegral i )
|
||||
|
||||
integerAdd :: MonadParsec e [ Tok ] m => m Integer
|
||||
integerAdd = do
|
||||
a <- integer
|
||||
_ <- symbol "+"
|
||||
i <- integer
|
||||
pure ( a + i )
|
||||
|
||||
integerSub :: MonadParsec e [ Tok ] m => m Integer
|
||||
integerSub = do
|
||||
a <- integer
|
||||
_ <- symbol "-"
|
||||
i <- integer
|
||||
pure ( a - i )
|
||||
|
||||
integer :: forall e m. MonadParsec e [ Tok ] m => m Integer
|
||||
integer =
|
||||
option id mkSign <*>
|
||||
token
|
||||
( \ case {
|
||||
( \case
|
||||
Number i suff
|
||||
| Just _ <- toBoundedInteger @Int64 i
|
||||
, Right i' <- floatingOrInteger @Float @Integer i
|
||||
, not ( Text.any ( (== 'f' ) . toLower ) suff )
|
||||
-> Just i';
|
||||
_ -> Nothing
|
||||
}
|
||||
->
|
||||
Just i'
|
||||
|
||||
Identifier name ->
|
||||
HashMap.lookup name enums
|
||||
|
||||
_ ->
|
||||
Nothing
|
||||
)
|
||||
mempty
|
||||
<?> "integer"
|
||||
|
2
imgui
2
imgui
Submodule imgui updated: 512c54bbc0...c71a50deb5
@ -23,6 +23,7 @@ module DearImGui.GLFW (
|
||||
-- $callbacks
|
||||
, glfwWindowFocusCallback
|
||||
, glfwCursorEnterCallback
|
||||
, glfwCursorPosCallback
|
||||
, glfwMouseButtonCallback
|
||||
, glfwScrollCallback
|
||||
, glfwKeyCallback
|
||||
@ -108,6 +109,20 @@ glfwCursorEnterCallback window entered = liftIO do
|
||||
where
|
||||
windowPtr = castPtr $ unWindow window
|
||||
|
||||
glfwCursorPosCallback :: MonadIO m => Window -> CDouble -> CDouble -> m ()
|
||||
glfwCursorPosCallback window x y = liftIO do
|
||||
[C.exp| void {
|
||||
ImGui_ImplGlfw_CursorPosCallback(
|
||||
static_cast<GLFWwindow *>(
|
||||
$(void * windowPtr)
|
||||
),
|
||||
$(double x),
|
||||
$(double y)
|
||||
);
|
||||
} |]
|
||||
where
|
||||
windowPtr = castPtr $ unWindow window
|
||||
|
||||
glfwMouseButtonCallback :: MonadIO m => Window -> CInt -> CInt -> CInt -> m ()
|
||||
glfwMouseButtonCallback window button action mods = liftIO do
|
||||
[C.exp| void {
|
||||
|
@ -1,11 +1,17 @@
|
||||
{-# LANGUAGE DuplicateRecordFields #-}
|
||||
{-# LANGUAGE NamedFieldPuns #-}
|
||||
{-# LANGUAGE CPP #-}
|
||||
|
||||
module DearImGui.Structs where
|
||||
|
||||
-- base
|
||||
import Data.Word
|
||||
( Word32, Word16 )
|
||||
( Word32
|
||||
#ifndef IMGUI_USE_WCHAR32
|
||||
, Word16
|
||||
#endif
|
||||
)
|
||||
|
||||
import Foreign
|
||||
( Storable(..), castPtr, plusPtr )
|
||||
|
||||
@ -96,5 +102,8 @@ data ImGuiListClipper
|
||||
type ImU32 = Word32
|
||||
|
||||
-- | Single wide character (used mostly in glyph management)
|
||||
#ifdef IMGUI_USE_WCHAR32
|
||||
type ImWchar = Word32
|
||||
#else
|
||||
type ImWchar = Word16
|
||||
-- FIXME: consider IMGUI_USE_WCHAR32
|
||||
#endif
|
||||
|
@ -19,6 +19,8 @@ module DearImGui.Vulkan
|
||||
, vulkanCreateFontsTexture
|
||||
, vulkanDestroyFontUploadObjects
|
||||
, vulkanSetMinImageCount
|
||||
|
||||
, vulkanAddTexture
|
||||
)
|
||||
where
|
||||
|
||||
@ -32,7 +34,7 @@ import Foreign.Marshal.Alloc
|
||||
import Foreign.Ptr
|
||||
( FunPtr, Ptr, freeHaskellFunPtr, nullPtr )
|
||||
import Foreign.Storable
|
||||
( Storable(poke) )
|
||||
( poke )
|
||||
|
||||
-- inline-c
|
||||
import qualified Language.C.Inline as C
|
||||
@ -184,3 +186,16 @@ vulkanDestroyFontUploadObjects = liftIO do
|
||||
vulkanSetMinImageCount :: MonadIO m => Word32 -> m ()
|
||||
vulkanSetMinImageCount minImageCount = liftIO do
|
||||
[C.exp| void { ImGui_ImplVulkan_SetMinImageCount($(uint32_t minImageCount)); } |]
|
||||
|
||||
-- | Wraps @ImGui_ImplVulkan_AddTexture@.
|
||||
vulkanAddTexture :: MonadIO m => Vulkan.Sampler -> Vulkan.ImageView -> Vulkan.ImageLayout -> m Vulkan.DescriptorSet
|
||||
vulkanAddTexture sampler imageView imageLayout = liftIO do
|
||||
[C.block|
|
||||
VkDescriptorSet {
|
||||
return ImGui_ImplVulkan_AddTexture(
|
||||
$(VkSampler sampler),
|
||||
$(VkImageView imageView),
|
||||
$(VkImageLayout imageLayout)
|
||||
);
|
||||
}
|
||||
|]
|
||||
|
@ -31,6 +31,10 @@ vulkanTypesTable = Map.fromList
|
||||
, ( C.TypeName "VkRenderPass" , [t| Vulkan.RenderPass |] )
|
||||
, ( C.TypeName "VkResult" , [t| Vulkan.Result |] )
|
||||
, ( C.TypeName "VkSampleCountFlagBits", [t| Vulkan.SampleCountFlagBits |] )
|
||||
, ( C.TypeName "VkSampler" , [t| Vulkan.Sampler |] )
|
||||
, ( C.TypeName "VkImageView" , [t| Vulkan.ImageView |] )
|
||||
, ( C.TypeName "VkImageLayout" , [t| Vulkan.ImageLayout |] )
|
||||
, ( C.TypeName "VkDescriptorSet" , [t| Vulkan.DescriptorSet |] )
|
||||
]
|
||||
|
||||
vulkanCtx :: C.Context
|
||||
|
Reference in New Issue
Block a user