Restructure files, add new subsystems

This commit is contained in:
2014-10-07 19:12:07 +02:00
parent 3ef3fb1621
commit b7d752ae20
7 changed files with 35 additions and 20 deletions

25
Parser/Meshparser.hs Normal file
View File

@@ -0,0 +1,25 @@
{-# OPTIONS_HADDOCK ignore-exports #-}
module Parser.Meshparser (VTable, meshToArr) where
import Control.Applicative
import Parser.Core
-- |The VTable is represented by a 'Double' tuple, 2-dimensional.
type VTable = [(Double, Double)]
-- | Convert a text String with multiple vertices into
-- an array of float tuples.
meshToArr :: String -- ^ the string to convert
-> VTable -- ^ the resulting vertice table
meshToArr xs = fmap (\(Just (x, _)) -> x) .
filter (/= Nothing) .
fmap (runParser parseVertice) .
lines $
xs
-- | Creates a Parser that accepts a single vertice, such as 'v 1.0 2.0'.
parseVertice :: Parser (Double, Double)
parseVertice = (,) <$>
(char 'v' *> spaces *> posDouble) <*>
(spaces *> posDouble)