module Waterfall.TwoD.Internal.Path2D
( Path2D (..)
, joinPaths
) where

import Data.Foldable (traverse_, toList)
import Waterfall.Internal.Finalizers (toAcquire, unsafeFromAcquire)
import Control.Monad ((<=<))
import Control.Monad.IO.Class (liftIO)
import qualified OpenCascade.TopoDS as TopoDS
import qualified OpenCascade.BRepBuilderAPI.MakeWire as MakeWire
import Foreign.Ptr
import Data.Semigroup (sconcat)

-- | A Path in 2D Space 
--
-- Under the hood, this is represented by an OpenCascade `TopoDS.Wire`, constrained to the plane \(z=0\).
--
-- Please feel free to report a bug if you're able to construct a `Path2D`
-- which does not lie on this plane (without using Internal functions).
newtype Path2D = Path2D { Path2D -> Ptr Wire
rawPath :: Ptr TopoDS.Wire }

joinPaths :: [Path2D] -> Path2D
joinPaths :: [Path2D] -> Path2D
joinPaths [Path2D]
paths = Ptr Wire -> Path2D
Path2D (Ptr Wire -> Path2D)
-> (Acquire (Ptr Wire) -> Ptr Wire) -> Acquire (Ptr Wire) -> Path2D
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Acquire (Ptr Wire) -> Ptr Wire
forall a. Acquire a -> a
unsafeFromAcquire (Acquire (Ptr Wire) -> Path2D) -> Acquire (Ptr Wire) -> Path2D
forall a b. (a -> b) -> a -> b
$ do
    Ptr MakeWire
builder <- Acquire (Ptr MakeWire)
MakeWire.new
    (Path2D -> Acquire ()) -> [Path2D] -> Acquire ()
forall (t :: * -> *) (f :: * -> *) a b.
(Foldable t, Applicative f) =>
(a -> f b) -> t a -> f ()
traverse_ (IO () -> Acquire ()
forall a. IO a -> Acquire a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> Acquire ())
-> (Ptr Wire -> IO ()) -> Ptr Wire -> Acquire ()
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Ptr MakeWire -> Ptr Wire -> IO ()
MakeWire.addWire Ptr MakeWire
builder (Ptr Wire -> Acquire ())
-> (Path2D -> Acquire (Ptr Wire)) -> Path2D -> Acquire ()
forall (m :: * -> *) b c a.
Monad m =>
(b -> m c) -> (a -> m b) -> a -> m c
<=< Ptr Wire -> Acquire (Ptr Wire)
forall a. a -> Acquire a
toAcquire (Ptr Wire -> Acquire (Ptr Wire))
-> (Path2D -> Ptr Wire) -> Path2D -> Acquire (Ptr Wire)
forall b c a. (b -> c) -> (a -> b) -> a -> c
. Path2D -> Ptr Wire
rawPath) [Path2D]
paths
    Ptr MakeWire -> Acquire (Ptr Wire)
MakeWire.wire Ptr MakeWire
builder

-- | The Semigroup for `Path2D` attempts to join two paths that share a common endpoint.
--
-- Attempts to combine paths that do not share a common endpoint currently in an error case that is not currently handled gracefully.
instance Semigroup Path2D where
    sconcat :: NonEmpty Path2D -> Path2D
sconcat = [Path2D] -> Path2D
joinPaths ([Path2D] -> Path2D)
-> (NonEmpty Path2D -> [Path2D]) -> NonEmpty Path2D -> Path2D
forall b c a. (b -> c) -> (a -> b) -> a -> c
. NonEmpty Path2D -> [Path2D]
forall a. NonEmpty a -> [a]
forall (t :: * -> *) a. Foldable t => t a -> [a]
toList
    Path2D
a <> :: Path2D -> Path2D -> Path2D
<> Path2D
b = [Path2D] -> Path2D
joinPaths [Path2D
a, Path2D
b] 
    
instance Monoid Path2D where
    mempty :: Path2D
mempty = [Path2D] -> Path2D
joinPaths []
    mconcat :: [Path2D] -> Path2D
mconcat = [Path2D] -> Path2D
joinPaths