系统:MacOS,已安装sdl2的ghc。
如标题中所述,如何通过sdl2创建逐渐褪色的图像? (请注意,该图由位于PC某处的.bmp文件给出。)
我已经写了下面的代码。 myFaded
实际上是我需要的功能。但是,当前haskell会抱怨没有setSurfaceAlphamod
。
{-# LANGUAGE OverloadedStrings #-}
module Main (main) where
import Control.Concurrent (threadDelay)
import Foreign.C.Types
import SDL.Vect
import SDL.Raw.Video
import qualified SDL
screenWidth, screenHeight :: CInt
(screenWidth, screenHeight) = (960, 720)
fadedtime, fadednum :: Int
(fadedtime, fadednum) = (2000000, 10)
getDataFileName :: FilePath -> IO FilePath
getDataFileName = return
myFaded :: Int -> Int -> SDL.Surface -> SDL.Surface -> SDL.Window -> IO ()
myFaded fadedtime fadednum surface screenSurface window
| fadednum <= 0 = return ()
| otherwise = do
SDL.surfaceBlit surface Nothing screenSurface Nothing
SDL.updateWindowSurface window
threadDelay holdtime
newsurface <- SDL.setSurfaceAlphaMod surface alpha
myFaded (fadedtime - holdtime) (fadednum - 1) newsurface screenSurface window
where alpha = 2
holdtime = round $ fromIntegral $ fadedtime `div` fadednum
main :: IO ()
main = do
SDL.initialize [SDL.InitVideo]
window <- SDL.createWindow "our super mario" SDL.defaultWindow { SDL.windowInitialSize = V2 screenWidth screenHeight }
SDL.showWindow window
screenSurface <- SDL.getWindowSurface window
helloWorld <- getDataFileName "figs/Entry.bmp" >>= SDL.loadBMP
--SDL.surfaceBlit helloWorld Nothing screenSurface Nothing
--SDL.updateWindowSurface window
myFaded fadedtime fadednum helloWorld screenSurface window
--SDL.updateWindowSurface window
--threadDelay 2000000
SDL.destroyWindow window
SDL.freeSurface helloWorld
SDL.quit
答案 0 :(得分:1)
我建议使用Renderer
和Texture
而不是Surface
(reason)。使用Texture
,您可以通过以下方式设置Alpha模式:
textureBlendMode texture $= BlendAlphaBlend
textureAlphaMod texture $= 255 - fadednum
请注意,这些是全局变量,因此您可能希望在textureAlphaMod
之后将copy
设置回255。
您编写的转换为使用Renderer
和Texture
的代码的简化版本如下所示:
{-# LANGUAGE OverloadedStrings #-}
module Main (main) where
import Control.Concurrent (threadDelay)
import Foreign.C.Types
import Data.Word
import SDL.Vect
import qualified SDL
screenWidth, screenHeight :: CInt
(screenWidth, screenHeight) = (960, 720)
fadednum :: Word8
fadednum = 0
getDataFileName :: FilePath -> IO FilePath
getDataFileName = return
main :: IO ()
main = do
SDL.initialize [SDL.InitVideo]
window <- SDL.createWindow "our super mario" SDL.defaultWindow { SDL.windowInitialSize = V2 screenWidth screenHeight }
SDL.showWindow window
renderer <- SDL.createRenderer window (-1) SDL.defaultRenderer
bmp <- getDataFileName "Entry.bmp" >>= SDL.loadBMP
helloWorld <- SDL.createTextureFromSurface renderer bmp
SDL.freeSurface bmp
myFaded fadednum helloWorld renderer window
SDL.destroyWindow window
SDL.destroyTexture helloWorld
SDL.quit
myFaded :: Word8 -> SDL.Texture -> SDL.Renderer -> SDL.Window -> IO ()
myFaded fadednum texture renderer window
| fadednum == 255 = return ()
| otherwise = do
SDL.clear renderer
SDL.textureBlendMode texture SDL.$= SDL.BlendAlphaBlend
SDL.textureAlphaMod texture SDL.$= 255 - fadednum
SDL.copy renderer texture Nothing Nothing
SDL.textureAlphaMod texture SDL.$= 255
SDL.present renderer
threadDelay 10000
myFaded (fadednum + 1) texture renderer window