Commit e001b112 authored by Alexandre Delanoë's avatar Alexandre Delanoë

[Compiling, ok] need to rename function and map on sentence and paragraph.

parent 7be031c3
...@@ -14,11 +14,16 @@ import Partial.Unsafe (unsafePartial) ...@@ -14,11 +14,16 @@ import Partial.Unsafe (unsafePartial)
import Unsafe.Coerce (unsafeCoerce) import Unsafe.Coerce (unsafeCoerce)
--rando Ran x [] = Ran x [] data RanR = RanR { l :: Array Char, r :: Array Char}
--rando Ran x xs = Ran (x <> [x']) (rando xs')
-- where instance showRanR :: Show RanR where
-- Ran x' xs' = randomIt xs show (RanR {l:l', r:r'}) = show $ (show l') /\ (show r')
--
rando (RanR {l:x,r:[]}) = pure $ RanR {l:x,r:[]}
rando (RanR {l:x,r:xs}) = do
Ran {l:x',r:xs'} <- randomIt xs
rando (RanR {l:(x <> [x']), r: xs'})
remove :: forall t5. Int -> Array t5 -> Array t5 remove :: forall t5. Int -> Array t5 -> Array t5
remove n [] = [] remove n [] = []
...@@ -29,29 +34,44 @@ remove n xs = unsafePartial $ case n of ...@@ -29,29 +34,44 @@ remove n xs = unsafePartial $ case n of
data Ran = Ran { l :: Char, r :: Array Char} data Ran = Ran { l :: Char, r :: Array Char}
randomIt :: forall t46. String -> Eff ( random :: RANDOM | t46 ) Ran instance showRan :: Show Ran where
show (Ran {l:l', r:r'}) = show $ (show l') /\ (show r')
randomIt :: forall t46. Array Char -> Eff ( random :: RANDOM | t46 ) Ran
randomIt ar = unsafePartial $ do randomIt ar = unsafePartial $ do
let ar' = toCharArray ar -- let ar' = toCharArray ar
n <- randomInt 0 (length ar' - 1) n <- randomInt 0 (length ar - 1)
let maybeChar = (ar' !! n ) let maybeChar = (ar !! n )
let rest = remove n ar' let rest = remove n ar
case maybeChar of case maybeChar of
Nothing -> Nothing ->
crash "it should not happen" crash "it should not happen"
Just char -> Just char ->
pure $ Ran {l : char, r : rest} pure $ Ran {l : char, r : rest}
randomize :: forall t98. String -> Eff ( random :: RANDOM | t98) String
randomize string = do
RanR rr <- rando (RanR {l:[], r:(toCharArray string)})
pure $ fromCharArray (rr.l)
randomize' :: forall t98. (Array Char) -> Eff ( random :: RANDOM | t98) (Array Char)
randomize' string = do
RanR rr <- rando (RanR {l:[], r:string})
pure rr.l
randomText :: String -> String randomText :: forall t114. String -> Eff( random :: RANDOM| t114) String
randomText txt = fromCharArray ( start <> middle <> end) randomText txt = randomize' middle >>= \middle' -> pure $ fromCharArray ( start <> middle' <> end)
where where
txt' = toCharArray txt txt' = toCharArray txt
start = take 2 txt' start = take 2 txt'
middle = dropEnd 2 $ drop 2 txt' middle = dropEnd 2 $ drop 2 txt'
end = takeEnd 2 txt' end = takeEnd 2 txt'
testText :: String -> String testText :: forall t114. String -> Eff( random :: RANDOM| t114) String
testText txt = case (length (toCharArray txt)) >= 5 of testText txt = case (length (toCharArray txt)) >= 5 of
true -> randomText txt true -> randomText txt
_ -> txt _ -> pure txt
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment