souplesse/frontend/src/Model.elm
Daniel Barlow 0bc1d5e2e3 make leftMark and rightMark separate model properties
the logic is much simpler if rightMark is a time not a duration
2024-11-27 17:47:58 +00:00

37 lines
772 B
Elm

module Model exposing
(
Model
, TrackState(..)
, DragState(..)
, empty
)
import TileMap exposing (ZoomLevel(..), Coord, toCoord)
import Point exposing (Point)
import Pos exposing (Pos)
type DragState =
DragMap (Int, Int) Coord
| DragGraph (Int, Int) Float
| DragLeftMark (Int, Int) Float
| DragRightMark (Int, Int) Float
type TrackState = Empty | Loading | Failure String | Present (List Point)
type alias Model =
{ centre: Coord
, zoom: ZoomLevel
, drag: Maybe DragState
, startTime : Float
, duration : Float
, leftMark : Float
, rightMark : Float
, track: TrackState }
empty = Model
(toCoord (Pos 0 0 Nothing))
(ZoomLevel 0)
Nothing
0 0
0 0
Loading