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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
module Chelleport where
import Chelleport.AppShell (MonadAppShell (hideWindow, showWindow, shutdownApp), setupAppShell)
import Chelleport.Context (initializeContext)
import Chelleport.Control
( MonadControl (clickMouseButton, getMousePointerPosition, moveMousePointer, pressMouseButton, releaseMouseButton),
directionalIncrement,
eventToKeycode,
isKeyPressWith,
isKeyPressed,
isKeyReleaseWith,
withCtrl,
withShift,
)
import Chelleport.Draw (MonadDraw (windowPosition), cellSize)
import Chelleport.KeySequence (findMatchPosition, generateGrid, isValidKey, nextChars, toKeyChar)
import Chelleport.Types
import Chelleport.Utils (intToCInt)
import qualified Chelleport.View
import Control.Monad.IO.Class (MonadIO)
import Control.Monad.Reader (ReaderT (runReaderT))
import Data.Maybe (fromMaybe, isJust)
import qualified SDL
runEff :: (MonadIO m) => DrawContext -> AppM m x -> m x
runEff ctx action = runReaderT (runAppM action) ctx
run :: IO ()
run = do
ctx <- initializeContext
setupAppShell
ctx
(runEff ctx initialState)
(\state -> runEff ctx . update state)
(const eventHandler)
(runEff ctx . Chelleport.View.render)
initialState :: (Monad m) => m State
initialState = do
let cells = fromMaybe (pure undefined) $ generateGrid 0 (rows, columns) hintKeys
pure $
State
{ stateGrid = cells,
stateKeySequence = [],
stateIsMatched = False,
stateIsShiftPressed = False,
stateIsDragging = False
}
where
rows = 9
columns = 16
hintKeys = ['A' .. 'Z']
eventHandler :: SDL.Event -> Maybe AppAction
eventHandler event =
case SDL.eventPayload event of
SDL.QuitEvent -> Just ShutdownApp
SDL.KeyboardEvent ev
| isKeyPressWith ev SDL.KeycodeEscape ->
Just ShutdownApp
| isKeyPressWith ev SDL.KeycodeMinus || isKeyPressWith ev SDL.KeycodeUnderscore ->
if withShift ev
then Just $ ChainMouseClick RightClick
else Just $ TriggerMouseClick RightClick
| isKeyPressWith ev SDL.KeycodeSpace ->
if withShift ev
then Just $ ChainMouseClick LeftClick
else Just $ TriggerMouseClick LeftClick
| isKeyPressWith ev SDL.KeycodeTab || isKeyPressWith ev SDL.KeycodeBackspace ->
Just ResetKeys
| withCtrl ev && isKeyPressWith ev SDL.KeycodeV ->
Just MouseDragToggle
| isKeyPressed ev && isValidKey (eventToKeycode ev) ->
Just $ HandleKeyInput $ eventToKeycode ev
| isKeyPressWith ev SDL.KeycodeLShift || isKeyPressWith ev SDL.KeycodeRShift ->
Just $ UpdateShiftState True
| isKeyReleaseWith ev SDL.KeycodeLShift || isKeyReleaseWith ev SDL.KeycodeRShift ->
Just $ UpdateShiftState False
_ -> Nothing
update :: (MonadAppShell m, MonadDraw m, MonadControl m) => State -> AppAction -> m (State, Maybe AppAction)
-- Act on key inputs
update state (HandleKeyInput key) = do
case (toKeyChar key, validChars) of
(Just keyChar, Just validChars')
| stateIsMatched state && keyChar `elem` ("HJKL" :: String) -> do
incr <- incrementValue
let action = IncrementMouseCursor $ directionalIncrement incr keyChar
pure (state, Just action)
| keyChar `elem` validChars' -> do
let newKeySequence = stateKeySequence state ++ [keyChar]
let matchPosition = findMatchPosition newKeySequence $ stateGrid state
let state' = state {stateKeySequence = newKeySequence, stateIsMatched = isJust matchPosition}
pure (state', MoveMousePosition <$> matchPosition)
_ -> pure (state, Nothing)
where
validChars = nextChars (stateKeySequence state) (stateGrid state)
incrementValue = do
(wcell, hcell) <- cellSize state
if stateIsShiftPressed state
then pure (wcell `div` 4, hcell `div` 4)
else pure (wcell `div` 16, hcell `div` 16)
-- Move mouse incrementally
update state (IncrementMouseCursor (incX, incY)) = do
(curX, curY) <- getMousePointerPosition
moveMousePointer (curX + intToCInt incX) (curY + intToCInt incY)
pure (state, Nothing)
-- Move mouse to given position
update state (MoveMousePosition (row, col)) = do
(x, y) <- getPosition
moveMousePointer x y
pure (state, Nothing)
where
getPosition = do
(wcell, hcell) <- cellSize state
let x = (wcell `div` 2) + wcell * intToCInt col
let y = (hcell `div` 2) + hcell * intToCInt row
(winx, winy) <- windowPosition
pure (winx + x, winy + y)
-- Reset entered key sequence and state
update state ResetKeys = do
pure (state {stateKeySequence = [], stateIsMatched = False}, Nothing)
-- Trigger click
update state (TriggerMouseClick btn) = do
hideWindow
clickMouseButton btn
pure (state, Just ShutdownApp)
-- Chain clicks
update state (ChainMouseClick btn) = do
hideWindow
clickMouseButton btn
showWindow
pure (state, Just ResetKeys)
-- Cleanup everything and exit
update state ShutdownApp = do
shutdownApp
pure (state, Nothing)
-- Mouse dragging
update state MouseDragToggle
| stateIsDragging state = pure (state {stateIsDragging = False}, Just MouseDragEnd)
| otherwise = pure (state {stateIsDragging = True}, Just MouseDragStart)
--
-- Mouse button press
update state MouseDragStart = do
hideWindow
pressMouseButton
showWindow
pure (state, Nothing)
-- Mouse button release
update state MouseDragEnd = do
hideWindow
releaseMouseButton
showWindow
pure (state, Nothing)
-- Set/unset whether shift is pressed
update state (UpdateShiftState shift) =
pure (state {stateIsShiftPressed = shift}, Nothing)
|