Created
November 9, 2019 19:49
-
-
Save barahilia/1a2f6c603d164c7a9f622e81db53a695 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Data.List | |
import Text.Regex | |
import System.Random | |
import Data.Ord | |
type Point = (Float,Float) | |
type Color = (Int,Int,Int) | |
type Polygon = [Point] | |
type Person = [Int] | |
type Link = [Point] | |
type Placement = [(Point,Person)] | |
type EnergyFunction a = a -> Int | |
type TemperatureFunction = Int -> Int -> Float | |
type TransitionProbabilityFunction = Int -> Int -> Float -> Float | |
type MotionFunction a = StdGen -> a -> (StdGen,a) | |
main = do | |
putStr "Hello World! Let's have a picnic! \n" | |
people_text <- readFile "people.txt" | |
let people :: [Person] | |
people = read people_text | |
putStr "Number of people coming: " | |
print (length people) | |
let writePoint :: Point -> String | |
writePoint (x,y) = (show x)++","++(show y)++" " | |
let writePolygon :: (Color,Polygon) -> String | |
writePolygon ((r,g,b),p) = "<polygon points=\""++(concatMap writePoint p)++"\" style=\"fill:#cccccc;stroke:rgb("++(show r)++","++(show g)++","++(show b)++");stroke-width:2\"/>" | |
let writePolygons :: [(Color,Polygon)] -> String | |
writePolygons p = "<svg xmlns=\"http://www.w3.org/2000/svg\">"++(concatMap writePolygon p)++"</svg>" | |
let colorize :: Color -> [Polygon] -> [(Color,Polygon)] | |
colorize = zip.repeat | |
let rainbow@[red,green,blue,yellow,purple,teal] = map colorize [(255,0,0),(0,255,0),(0,0,255),(255,255,0),(255,0,255),(0,255,255)] | |
writeFile "tut0.svg" $ writePolygons (blue [[(100,100),(200,100),(200,200),(100,200)],[(200,200),(300,200),(300,300),(200,300)]]) | |
let readPoint :: String -> Point | |
readPoint s | Just [x,y] <- matchRegex (mkRegex "([0-9.]+),([0-9.]+)") s = (read x,read y) | |
let readPolygon :: String -> Polygon | |
readPolygon = (map readPoint).(splitRegex $ mkRegex " L ") | |
let readPolygons :: String -> [Polygon] | |
readPolygons = (map readPolygon).tail.(splitRegex $ mkRegex "<path") | |
park_data <- readFile "park.svg" | |
let park = readPolygons park_data | |
writeFile "tut1.svg" $ writePolygons (green park) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment