-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMoveTwoCircles.elm
93 lines (83 loc) · 2.61 KB
/
MoveTwoCircles.elm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import GraphicSVG exposing (..)
import GraphicSVG.App exposing (appWithTick, AppWithTick, GetKeyState)
import Url exposing (Url)
import Browser exposing (UrlRequest)
import Browser.Events
import Browser.Dom exposing (getViewport)
import Task
-- This example must be viewed by elm reactor or another web server, not directly after using elm-make
type alias Model =
{ time : Float
, w : Int
, h : Int
, x0 : Float
, y0 : Float
, x1 : Float
, y1 : Float
}
type Msg =
Tick Float GetKeyState
| OnUrlChange Url
| OnUrlRequest UrlRequest
| OnResize Int Int
main : AppWithTick () Model Msg
main = appWithTick Tick
{ init = \_ url key ->
(init, Task.perform (\vp -> OnResize (round vp.viewport.width) (round vp.viewport.height)) getViewport)
-- get initial screen width
, update = update
, view = \model -> { body = view model, title = title model }
, subscriptions = \_ -> Browser.Events.onResize OnResize -- subscribe to any other changes in screen size
, onUrlRequest = OnUrlRequest
, onUrlChange = OnUrlChange
}
init : Model
init =
{
time = 0
, w = 0
, h = 0
, x0 = 0
, y0 = 0
, x1 = 0
, y1 = 0
}
velocity = 3
update : Msg -> Model -> (Model, Cmd Msg)
update msg model =
case msg of
Tick t (_,(dx0,dy0),(dx1,dy1)) ->
( { model | time = t
, x0 = model.x0 + dx0 * velocity
, y0 = model.y0 + dy0 * velocity
, x1 = model.x1 + dx1 * velocity
, y1 = model.y1 + dy1 * velocity
}
, Cmd.none )
OnUrlChange _ -> ( model, Cmd.none )
OnUrlRequest _ -> ( model, Cmd.none )
OnResize w h -> ( { model | w = w, h = h }, Cmd.none ) -- store new screen size in the model
title : Model -> String
title model =
"App with Tick Example"
view : Model -> Collage Msg
view model = collage (toFloat model.w) (toFloat model.h)
[ rect (toFloat model.w) (toFloat model.h)
|> filled (hsl model.time 0.5 0.5)
, text ("Screen size: " ++ String.fromInt model.w ++ "," ++ String.fromInt model.h) |> centered |> filled black
, circle 20 |> filled red
|> move (model.x0,model.y0)
, circle 20 |> filled blue
|> move (model.x1,model.y1)
]
biggerButton =
group
[ circle 5 |> filled darkGrey
, rect 8 1 |> filled white
, rect 1 8 |> filled white
]
smallerButton =
group
[ circle 5 |> filled darkGrey
, rect 8 1 |> filled white
]