-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathUserInput.hs
74 lines (60 loc) · 2.42 KB
/
UserInput.hs
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
-- | Defines the handling of user mouse input in a game controller using SDL2.
--
-- The module contains two parts. First, a definition of the game controller
-- containing informations needed to handle the user-game interaction.
--
-- Second, the sensing of the needed informations using mouse events of SDL2.
module UserInput where
-- External imports
import Data.Int (Int32)
import SDL (EventPayload (MouseButtonEvent, MouseMotionEvent),
InputMotion (Pressed, Released), Point (P), V2 (V2),
eventPayload, mouseButtonEventMotion, mouseMotionEventPos,
pollEvent)
-- Internal imports
-- * Mouse controller.
-- | Controller information.
data Controller = Controller
{ controllerPos :: (Int, Int) -- ^ Position of the given controller.
, controllerClick :: Bool -- ^ Controller received click notification.
, controllerClickPos :: (Int, Int) -- ^ Controller slide start position.
, controllerDragPoss :: ((Int, Int), (Int, Int)) -- ^ The start and end position of a controller drag.
} deriving (Eq)
-- | Default controller.
defaultController :: Controller
defaultController = Controller (0,0) False (0,0) ((0,0), (0,0))
-- * Sensing
-- | SDL2 controller updating function.
updateController :: Controller -> IO Controller
updateController ctrl = do
event <- pollEvent
case event of
Nothing -> return ctrl
Just event' -> updateController (processEvent ctrl (eventPayload event'))
-- | Processes an event by updating the controller.
-- Uses pattern guards.
processEvent :: Controller -> EventPayload -> Controller
processEvent ctrl event
-- Mouse button released
| MouseButtonEvent ev <- event
, Released <- mouseButtonEventMotion ev
= ctrl { controllerClick = False
, controllerDragPoss = (controllerClickPos ctrl, controllerPos ctrl)
}
-- Mouse button pressed
| MouseButtonEvent ev <- event
, Pressed <- mouseButtonEventMotion ev
= ctrl { controllerClick = True
, controllerClickPos = controllerPos ctrl
}
-- Mouse motion
| MouseMotionEvent ev <- event
, pos <- mouseMotionEventPos ev
= ctrl { controllerPos = pointToPair pos }
-- Discard other events
| otherwise
= ctrl
-- * Auxiliary functions
-- | Convert mouse position.
pointToPair :: Point V2 Int32 -> (Int, Int)
pointToPair (P (V2 x y)) = (fromIntegral x, fromIntegral y)