{-# LANGUAGE ExistentialQuantification, FlexibleInstances, GeneralizedNewtypeDeriving, ScopedTypeVariables #-} module Backend.GL.Type where import Data.ByteString.Char8 (ByteString) import Data.IORef import Data.Int import Data.IntMap (IntMap) import Data.Set (Set) import Data.Trie (Trie) import Data.Vector (Vector) import Data.Word import Foreign.Ptr import Foreign.Storable import Graphics.Rendering.OpenGL.Raw.Core33 import IR --------------- -- Input API -- --------------- {- -- Buffer compileBuffer :: [Array] -> IO Buffer bufferSize :: Buffer -> Int arraySize :: Buffer -> Int -> Int arrayType :: Buffer -> Int -> ArrayType -- Object addObject :: Renderer -> ByteString -> Primitive -> Maybe (IndexStream Buffer) -> Trie (Stream Buffer) -> [ByteString] -> IO Object removeObject :: Renderer -> Object -> IO () objectUniformSetter :: Object -> Trie InputSetter -} data Buffer -- internal type = Buffer { bufArrays :: Vector ArrayDesc , bufGLObj :: GLuint } deriving (Show,Eq) data ArrayDesc = ArrayDesc { arrType :: ArrayType , arrLength :: Int -- item count , arrOffset :: Int -- byte position in buffer , arrSize :: Int -- size in bytes } deriving (Show,Eq) {- handles: uniforms textures buffers objects GLPipelineInput can be attached to GLPipeline -} {- pipeline input: - independent from pipeline - per object features: enable/disable visibility, set render ordering -} data SlotSchema = SlotSchema { primitive :: FetchPrimitive , attributes :: Trie StreamType } deriving Show data PipelineSchema = PipelineSchema { slots :: Trie SlotSchema , uniforms :: Trie InputType } deriving Show data GLUniform = forall a. Storable a => GLUniform !InputType !(IORef a) instance Show GLUniform where show (GLUniform t _) = "GLUniform " ++ show t data OrderJob = Generate | Reorder | Ordered data GLSlot = GLSlot { objectMap :: IntMap Object , sortedObjects :: Vector (Int,Object) , orderJob :: OrderJob } data GLPipelineInput = GLPipelineInput { schema :: PipelineSchema , slotMap :: Trie SlotName , slotVector :: Vector (IORef GLSlot) , objSeed :: IORef Int , uniformSetter :: Trie InputSetter , uniformSetup :: Trie GLUniform , screenSize :: IORef (Word,Word) , pipelines :: IORef (Vector (Maybe GLPipeline)) -- attached pipelines } data Object -- internal type = Object { objSlot :: SlotName , objPrimitive :: Primitive , objIndices :: Maybe (IndexStream Buffer) , objAttributes :: Trie (Stream Buffer) , objUniSetter :: Trie InputSetter , objUniSetup :: Trie GLUniform , objOrder :: IORef Int , objEnabled :: IORef Bool , objId :: Int , objCommands :: IORef (Vector (Vector [GLObjectCommand])) -- pipeline id, program name, commands } -------------- -- Pipeline -- -------------- data GLProgram = GLProgram { shaderObjects :: [GLuint] , programObject :: GLuint , inputUniforms :: Trie GLint , inputTextures :: Trie GLint -- all input textures (render texture + uniform texture) , inputTextureUniforms :: Set ByteString , inputStreams :: Trie (GLuint,ByteString) } data GLTexture = GLTexture { glTextureObject :: GLuint , glTextureTarget :: GLenum } data InputConnection = InputConnection { icId :: Int -- identifier (vector index) for attached pipeline , icInput :: GLPipelineInput , icSlotMapPipelineToInput :: Vector SlotName -- GLPipeline to GLPipelineInput slot name mapping , icSlotMapInputToPipeline :: Vector (Maybe SlotName) -- GLPipelineInput to GLPipeline slot name mapping } data GLPipeline = GLPipeline { glPrograms :: Vector GLProgram , glTextures :: Vector GLTexture , glSamplers :: Vector GLSampler , glTargets :: Vector GLRenderTarget , glCommands :: [GLCommand] , glSlotPrograms :: Vector [ProgramName] -- programs depend on a slot , glInput :: IORef (Maybe InputConnection) , glSlotNames :: Vector ByteString , glVAO :: GLuint , glTexUnitMapping :: Trie (IORef GLint) -- maps texture uniforms to texture units } data GLSampler = GLSampler { samplerObject :: GLuint } data GLRenderTarget = GLRenderTarget { framebufferObject :: GLuint , framebufferDrawbuffers :: Maybe [GLenum] } data GLCommand = GLSetRasterContext !RasterContext | GLSetAccumulationContext !AccumulationContext | GLSetRenderTarget !GLuint !(Maybe [GLenum]) | GLSetProgram !GLuint | GLSetSamplerUniform !GLint !GLint (IORef GLint) -- sampler index, texture unit, IORef stores the actual texture unit mapping | GLSetTexture !GLenum !GLuint !GLuint | GLSetSampler !GLuint !GLuint | GLRenderSlot !SlotName !ProgramName | GLClearRenderTarget [(ImageSemantic,Value)] | GLGenerateMipMap !GLenum !GLenum | GLSaveImage FrameBufferComponent ImageRef -- from framebuffer component to texture (image) | GLLoadImage ImageRef FrameBufferComponent -- from texture (image) to framebuffer component deriving Show instance Show (IORef GLint) where show _ = "(IORef GLint)" data GLObjectCommand = GLSetUniform !GLint !GLUniform | GLBindTexture !GLenum !(IORef GLint) !GLUniform -- binds the texture from the gluniform to the specified texture unit and target | GLSetVertexAttribArray !GLuint !GLuint !GLint !GLenum !(Ptr ()) -- index buffer size type pointer | GLSetVertexAttribIArray !GLuint !GLuint !GLint !GLenum !(Ptr ()) -- index buffer size type pointer | GLSetVertexAttrib !GLuint !(Stream Buffer) -- index value | GLDrawArrays !GLenum !GLint !GLsizei -- mode first count | GLDrawElements !GLenum !GLsizei !GLenum !GLuint !(Ptr ()) -- mode count type buffer indicesPtr deriving Show type SetterFun a = a -> IO () -- user will provide scalar input data via this type data InputSetter = SBool (SetterFun Bool) | SV2B (SetterFun V2B) | SV3B (SetterFun V3B) | SV4B (SetterFun V4B) | SWord (SetterFun Word32) | SV2U (SetterFun V2U) | SV3U (SetterFun V3U) | SV4U (SetterFun V4U) | SInt (SetterFun Int32) | SV2I (SetterFun V2I) | SV3I (SetterFun V3I) | SV4I (SetterFun V4I) | SFloat (SetterFun Float) | SV2F (SetterFun V2F) | SV3F (SetterFun V3F) | SV4F (SetterFun V4F) | SM22F (SetterFun M22F) | SM23F (SetterFun M23F) | SM24F (SetterFun M24F) | SM32F (SetterFun M32F) | SM33F (SetterFun M33F) | SM34F (SetterFun M34F) | SM42F (SetterFun M42F) | SM43F (SetterFun M43F) | SM44F (SetterFun M44F) -- shadow textures | SSTexture1D | SSTexture2D | SSTextureCube | SSTexture1DArray | SSTexture2DArray | SSTexture2DRect -- float textures | SFTexture1D | SFTexture2D (SetterFun TextureData) | SFTexture3D | SFTextureCube | SFTexture1DArray | SFTexture2DArray | SFTexture2DMS | SFTexture2DMSArray | SFTextureBuffer | SFTexture2DRect -- int textures | SITexture1D | SITexture2D | SITexture3D | SITextureCube | SITexture1DArray | SITexture2DArray | SITexture2DMS | SITexture2DMSArray | SITextureBuffer | SITexture2DRect -- uint textures | SUTexture1D | SUTexture2D | SUTexture3D | SUTextureCube | SUTexture1DArray | SUTexture2DArray | SUTexture2DMS | SUTexture2DMSArray | SUTextureBuffer | SUTexture2DRect -- buffer handling {- user can fills a buffer (continuous memory region) each buffer have a data descriptor, what describes the buffer content. e.g. a buffer can contain more arrays of stream types -} -- user will provide stream data using this setup function type BufferSetter = (Ptr () -> IO ()) -> IO () -- specifies array component type (stream type in storage side) -- this type can be overridden in GPU side, e.g ArrWord8 can be seen as TFloat or TWord also data ArrayType = ArrWord8 | ArrWord16 | ArrWord32 | ArrInt8 | ArrInt16 | ArrInt32 | ArrFloat | ArrHalf -- Hint: half float is not supported in haskell deriving (Show,Eq,Ord) sizeOfArrayType :: ArrayType -> Int sizeOfArrayType ArrWord8 = 1 sizeOfArrayType ArrWord16 = 2 sizeOfArrayType ArrWord32 = 4 sizeOfArrayType ArrInt8 = 1 sizeOfArrayType ArrInt16 = 2 sizeOfArrayType ArrInt32 = 4 sizeOfArrayType ArrFloat = 4 sizeOfArrayType ArrHalf = 2 -- describes an array in a buffer data Array -- array type, element count (NOT byte size!), setter = Array ArrayType Int BufferSetter -- dev hint: this should be InputType -- we restrict StreamType using type class -- subset of InputType, describes a stream type (in GPU side) data StreamType = TWord | TV2U | TV3U | TV4U | TInt | TV2I | TV3I | TV4I | TFloat | TV2F | TV3F | TV4F | TM22F | TM23F | TM24F | TM32F | TM33F | TM34F | TM42F | TM43F | TM44F deriving (Show,Eq,Ord) toStreamType :: InputType -> Maybe StreamType toStreamType Word = Just TWord toStreamType V2U = Just TV2U toStreamType V3U = Just TV3U toStreamType V4U = Just TV4U toStreamType Int = Just TInt toStreamType V2I = Just TV2I toStreamType V3I = Just TV3I toStreamType V4I = Just TV4I toStreamType Float = Just TFloat toStreamType V2F = Just TV2F toStreamType V3F = Just TV3F toStreamType V4F = Just TV4F toStreamType M22F = Just TM22F toStreamType M23F = Just TM23F toStreamType M24F = Just TM24F toStreamType M32F = Just TM32F toStreamType M33F = Just TM33F toStreamType M34F = Just TM34F toStreamType M42F = Just TM42F toStreamType M43F = Just TM43F toStreamType M44F = Just TM44F toStreamType _ = Nothing fromStreamType :: StreamType -> InputType fromStreamType TWord = Word fromStreamType TV2U = V2U fromStreamType TV3U = V3U fromStreamType TV4U = V4U fromStreamType TInt = Int fromStreamType TV2I = V2I fromStreamType TV3I = V3I fromStreamType TV4I = V4I fromStreamType TFloat = Float fromStreamType TV2F = V2F fromStreamType TV3F = V3F fromStreamType TV4F = V4F fromStreamType TM22F = M22F fromStreamType TM23F = M23F fromStreamType TM24F = M24F fromStreamType TM32F = M32F fromStreamType TM33F = M33F fromStreamType TM34F = M34F fromStreamType TM42F = M42F fromStreamType TM43F = M43F fromStreamType TM44F = M44F -- user can specify streams using Stream type -- a stream can be constant (ConstXXX) or can came from a buffer data Stream b = ConstWord Word32 | ConstV2U V2U | ConstV3U V3U | ConstV4U V4U | ConstInt Int32 | ConstV2I V2I | ConstV3I V3I | ConstV4I V4I | ConstFloat Float | ConstV2F V2F | ConstV3F V3F | ConstV4F V4F | ConstM22F M22F | ConstM23F M23F | ConstM24F M24F | ConstM32F M32F | ConstM33F M33F | ConstM34F M34F | ConstM42F M42F | ConstM43F M43F | ConstM44F M44F | Stream { streamType :: StreamType , streamBuffer :: b , streamArrIdx :: Int , streamStart :: Int , streamLength :: Int } deriving Show streamToStreamType :: Stream a -> StreamType streamToStreamType s = case s of ConstWord _ -> TWord ConstV2U _ -> TV2U ConstV3U _ -> TV3U ConstV4U _ -> TV4U ConstInt _ -> TInt ConstV2I _ -> TV2I ConstV3I _ -> TV3I ConstV4I _ -> TV4I ConstFloat _ -> TFloat ConstV2F _ -> TV2F ConstV3F _ -> TV3F ConstV4F _ -> TV4F ConstM22F _ -> TM22F ConstM23F _ -> TM23F ConstM24F _ -> TM24F ConstM32F _ -> TM32F ConstM33F _ -> TM33F ConstM34F _ -> TM34F ConstM42F _ -> TM42F ConstM43F _ -> TM43F ConstM44F _ -> TM44F Stream t _ _ _ _ -> t -- stream of index values (for index buffer) data IndexStream b = IndexStream { indexBuffer :: b , indexArrIdx :: Int , indexStart :: Int , indexLength :: Int } newtype TextureData = TextureData { textureObject :: GLuint } deriving Storable data Primitive = TriangleStrip | TriangleList | TriangleFan | LineStrip | LineList | PointList | TriangleStripAdjacency | TriangleListAdjacency | LineStripAdjacency | LineListAdjacency deriving (Eq,Ord,Bounded,Enum,Show) type StreamSetter = Stream Buffer -> IO () -- storable instances instance Storable a => Storable (V2 a) where sizeOf _ = 2 * sizeOf (undefined :: a) alignment _ = sizeOf (undefined :: a) peek q = do let p = castPtr q :: Ptr a k = sizeOf (undefined :: a) x <- peek p y <- peekByteOff p k return $! (V2 x y) poke q (V2 x y) = do let p = castPtr q :: Ptr a k = sizeOf (undefined :: a) poke p x pokeByteOff p k y instance Storable a => Storable (V3 a) where sizeOf _ = 3 * sizeOf (undefined :: a) alignment _ = sizeOf (undefined :: a) peek q = do let p = castPtr q :: Ptr a k = sizeOf (undefined :: a) x <- peek p y <- peekByteOff p k z <- peekByteOff p (k*2) return $! (V3 x y z) poke q (V3 x y z) = do let p = castPtr q :: Ptr a k = sizeOf (undefined :: a) poke p x pokeByteOff p k y pokeByteOff p (k*2) z instance Storable a => Storable (V4 a) where sizeOf _ = 4 * sizeOf (undefined :: a) alignment _ = sizeOf (undefined :: a) peek q = do let p = castPtr q :: Ptr a k = sizeOf (undefined :: a) x <- peek p y <- peekByteOff p k z <- peekByteOff p (k*2) w <- peekByteOff p (k*3) return $! (V4 x y z w) poke q (V4 x y z w) = do let p = castPtr q :: Ptr a k = sizeOf (undefined :: a) poke p x pokeByteOff p k y pokeByteOff p (k*2) z pokeByteOff p (k*3) w