cga/Parser/Meshparser.hs

46 lines
1.3 KiB
Haskell
Raw Normal View History

{-# OPTIONS_HADDOCK ignore-exports #-}
2019-12-05 04:19:55 +00:00
module Parser.Meshparser (meshToArr, facesToArr, parseObj) where
import Control.Applicative
import Data.Attoparsec.ByteString.Char8
import Data.Either
import qualified Data.ByteString.Char8 as B
import Diagrams.TwoD.Types
2014-09-30 22:05:29 +00:00
2019-12-05 04:19:55 +00:00
facesToArr :: B.ByteString -> [[Int]]
facesToArr = rights . fmap (parseOnly parseFace) . B.lines
-- |Convert a text String with multiple vertices into
-- an array of float tuples.
meshToArr :: B.ByteString -- ^ the string to convert
-> [P2 Double] -- ^ the resulting vertice table
2014-10-10 15:48:22 +00:00
meshToArr =
fmap p2
. rights
. fmap (parseOnly parseVertice)
. B.lines
-- |Creates a Parser that accepts a single vertice, such as 'v 1.0 2.0'.
2014-09-30 22:05:29 +00:00
parseVertice :: Parser (Double, Double)
2014-10-09 22:19:05 +00:00
parseVertice =
(,)
<$> (char 'v' *> many' space *> double)
<*> (many' space *> double)
2019-12-05 04:19:55 +00:00
parseFace :: Parser [Int]
parseFace = char 'f' *> many1' (many' space *> decimal)
2019-12-05 04:19:55 +00:00
-- |Convert a text String with multiple vertices and faces into
-- a list of vertices, ordered by the faces specification.
parseObj :: B.ByteString -> [[P2 Double]]
parseObj str = fmap (fmap (\y -> meshToArr str !! (fromIntegral y - 1)))
(faces str)
where
faces = rights . fmap (parseOnly parseFace) . B.lines