2014-10-06 21:14:23 +00:00
|
|
|
{-# OPTIONS_HADDOCK ignore-exports #-}
|
|
|
|
|
2015-02-03 23:21:38 +00:00
|
|
|
module Parser.Meshparser where
|
2014-09-30 16:28:19 +00:00
|
|
|
|
2015-02-03 23:51:03 +00:00
|
|
|
import Algebra.Vector(PT)
|
2014-09-30 16:28:19 +00:00
|
|
|
import Control.Applicative
|
2014-11-21 03:30:50 +00:00
|
|
|
import Data.Attoparsec.ByteString.Char8
|
|
|
|
import Data.Either
|
|
|
|
import qualified Data.ByteString.Char8 as B
|
2014-10-08 14:31:57 +00:00
|
|
|
import Diagrams.TwoD.Types
|
2014-09-30 16:28:19 +00:00
|
|
|
|
2014-09-30 22:05:29 +00:00
|
|
|
|
2014-10-25 01:15:38 +00:00
|
|
|
-- |Convert a text String with multiple vertices and faces into
|
|
|
|
-- a list of vertices, ordered by the faces specification.
|
2015-02-03 23:51:03 +00:00
|
|
|
meshFaceVertices :: B.ByteString -> [[PT]]
|
2015-02-03 23:27:52 +00:00
|
|
|
meshFaceVertices str = fmap (fmap (\y -> meshVertices str !! (y - 1)))
|
|
|
|
(meshFaces str)
|
2014-10-25 01:15:38 +00:00
|
|
|
|
|
|
|
|
|
|
|
-- |Convert a text String with multiple vertices into
|
2014-09-30 16:28:19 +00:00
|
|
|
-- an array of float tuples.
|
2015-02-03 23:27:52 +00:00
|
|
|
meshVertices :: B.ByteString -- ^ the string to convert
|
2015-02-03 23:51:03 +00:00
|
|
|
-> [PT] -- ^ the resulting vertice table
|
2015-02-03 23:27:52 +00:00
|
|
|
meshVertices
|
|
|
|
= fmap p2
|
2014-11-21 03:30:50 +00:00
|
|
|
. rights
|
|
|
|
. fmap (parseOnly parseVertice)
|
|
|
|
. B.lines
|
2014-09-30 16:28:19 +00:00
|
|
|
|
2014-10-08 14:31:57 +00:00
|
|
|
|
2014-10-25 01:15:38 +00:00
|
|
|
-- |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 =
|
2014-10-25 01:15:38 +00:00
|
|
|
(,)
|
2014-11-21 03:30:50 +00:00
|
|
|
<$> (char 'v' *> many' space *> double)
|
|
|
|
<*> (many' space *> double)
|
2014-10-25 01:15:38 +00:00
|
|
|
|
|
|
|
|
2015-02-03 23:27:52 +00:00
|
|
|
parseFace :: (Integral a) => Parser [a]
|
2014-11-21 03:30:50 +00:00
|
|
|
parseFace = char 'f' *> many1' (many' space *> decimal)
|
2015-02-03 23:25:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
meshFaces :: B.ByteString -> [[Int]]
|
|
|
|
meshFaces
|
|
|
|
= rights
|
|
|
|
. fmap (parseOnly parseFace)
|
|
|
|
. B.lines
|