Source file actions_arguments.ml
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
module W = Warnings
type id_or_self = [ `Self | `Id of string W.node ]
type ids_or_self = [ `Self | `Ids of string W.node list ]
module type S = sig
type args
val on : string
val action_name : string
val parse_args : string -> (args W.t, [> `Msg of string ]) result
end
module Pause = struct
let on = "pause"
let action_name = "pause"
type args = [ `Self | `Ids of string W.node list ]
let parse_args = Parse.parse_only_els ~action_name
end
module _ : S = Pause
module type Move = sig
type args = {
margin : float option;
duration : float option;
target : id_or_self;
}
include S with type args := args
end
module Move (X : sig
val on : string
val action_name : string
end) : Move = struct
let on = X.on
let action_name = X.action_name
type args = {
margin : float option;
duration : float option;
target : id_or_self;
}
let parse_args s =
let ( let+ ) x f = Result.map f x in
let open W.M in
let+ x =
Parse.parse ~action_name
~named:[ Parse.duration; Parse.margin ]
~positional:Parse.id s
in
let$ x = x in
let$ res = Parse.require_single_action ~action_name:X.action_name x in
match res with
| { p_named = [ duration; margin ]; p_pos = positional }, _ -> (
let$+ res =
Parse.require_single_positional ~action_name:X.action_name positional
in
match res with
| None -> { target = `Self; duration; margin }
| Some positional -> { target = `Id positional; duration; margin })
end
module Up = Move (struct
let on = "up-at-unpause"
let action_name = "up"
end)
module _ : S = Up
module Down = Move (struct
let on = "down-at-unpause"
let action_name = "down"
end)
module _ : S = Down
module Center = Move (struct
let on = "center-at-unpause"
let action_name = "center"
end)
module _ : S = Center
module Scroll = Move (struct
let on = "scroll-at-unpause"
let action_name = "scroll"
end)
module _ : S = Scroll
module Enter = Move (struct
let on = "enter-at-unpause"
let action_name = "enter"
end)
module _ : S = Enter
module type SetClass = S with type args = ids_or_self
module SetClass (X : sig
val on : string
val action_name : string
end) : SetClass = struct
let on = X.on
let action_name = X.action_name
type args = ids_or_self
let parse_args = Parse.parse_only_els ~action_name
end
module Unstatic = SetClass (struct
let on = "unstatic-at-unpause"
let action_name = "unstatic"
end)
module _ : S = Unstatic
module Static = SetClass (struct
let on = "static-at-unpause"
let action_name = "static"
end)
module _ : S = Static
module Reveal = SetClass (struct
let on = "reveal-at-unpause"
let action_name = "reveal"
end)
module _ : S = Reveal
module Unreveal = SetClass (struct
let on = "unreveal-at-unpause"
let action_name = "unreveal"
end)
module _ : S = Unreveal
module Emph = SetClass (struct
let on = "emph-at-unpause"
let action_name = "emph"
end)
module _ : S = Emph
module Unemph = SetClass (struct
let on = "unemph-at-unpause"
let action_name = "unemph"
end)
module _ : S = Unemph
module Step = struct
type args = unit
let on = "step"
let action_name = on
let parse_args s = Parse.no_args ~action_name s
end
module _ : S = Step
module Focus = struct
type args = {
margin : float option;
duration : float option;
target : ids_or_self;
}
let on = "focus-at-unpause"
let action_name = "focus"
let parse_args s =
let ( let+ ) = Fun.flip Result.map in
let+ x =
Parse.parse ~action_name
~named:[ Parse.duration; Parse.margin ]
~positional:Parse.id s
in
let open W.M in
let$ x = x in
let$+ res = Parse.require_single_action ~action_name x in
match res with
| { p_named = [ duration; margin ]; p_pos = [] }, _loc ->
{ target = `Self; duration; margin }
| { p_named = [ duration; margin ]; p_pos = positional }, _loc ->
let target = `Ids positional in
{ target; duration; margin }
end
module _ : S = Focus
module Unfocus = struct
type args = unit
let on = "unfocus-at-unpause"
let action_name = "unfocus"
let parse_args s = Parse.no_args ~action_name s
end
module _ : S = Unfocus
module Speaker_note = struct
let on = "speaker-note"
let action_name = on
type args = id_or_self
let parse_args = Parse.parse_only_el ~action_name
end
module _ : S = Speaker_note
module Play_media = struct
let on = "play-media"
let action_name = "play-media"
type args = ids_or_self
let parse_args = Parse.parse_only_els ~action_name
end
module _ : S = Play_media
module Change_page = struct
type change = Absolute of int | Relative of int | All | Range of int * int
type arg = { target : id_or_self; n : change list }
type args = arg list
let on = "change-page"
let action_name = "change-page"
let ( let+ ) x f = Result.map f x
let ( let* ) x f = Result.bind x f
let parse_change (s, loc) =
if String.equal "all" s then Some All
else
match int_of_string_opt s with
| None -> (
match String.split_on_char '-' s with
| [ a; b ] -> (
match (int_of_string_opt a, int_of_string_opt b) with
| Some a, Some b -> Some (Range (a, b))
| _ ->
let msg = "Could not parse parameter" in
W.add (W.Parsing_failure { msg; loc });
None)
| _ ->
let msg = "Could not parse parameter" in
W.add (W.Parsing_failure { msg; loc });
None)
| Some x -> (
match s.[0] with
| '+' | '-' -> Some (Relative x)
| _ -> Some (Absolute x))
let parse_single_action
{ Parse.p_named = ([ n_opt ] : _ Parse.output_tuple); p_pos = elem_ids } =
let n = Option.value ~default:[ Relative 1 ] n_opt in
let open W.M in
let$+ id_or_self =
match elem_ids with
| [] -> (`Self, [])
| [ id ] -> (`Id id, [])
| ((_, loc) as id) :: rest ->
let loc = W.range loc rest in
let msg = "Expected single id. Considering only the first one." in
let w = W.Parsing_failure { msg; loc } in
(`Id id, [ w ])
in
{ n; target = id_or_self }
let parse_n (s, (loc_min, _)) =
let l =
String.split_on_char ' ' s
|> List.fold_left
(fun (acc, idx) x ->
let l = String.length x in
if l = 0 then (acc, idx + 1)
else ((x, (idx, idx + l)) :: acc, idx + l + 1))
([], loc_min)
|> fun (x, _) -> List.rev x
in
l |> List.filter_map parse_change |> Result.ok
let parse_args s =
let open W.M in
let+ res =
Parse.parse ~action_name ~named:[ ("n", parse_n) ] ~positional:Fun.id s
in
let$ ac, actions = res in
let actions = ac :: actions in
let warnings, res =
List.fold_left_map
(fun acc (action, _loc) ->
let res, w = parse_single_action action in
(w :: acc, res))
[] actions
in
(res, List.concat warnings)
let args_as_string args =
let arg_to_string { n; target } =
let to_string = function
| All -> "all"
| Relative x when x < 0 -> string_of_int x
| Relative x -> "+" ^ string_of_int x
| Absolute x -> string_of_int x
| Range (x, y) -> string_of_int x ^ "-" ^ string_of_int y
in
let s = n |> List.map to_string |> String.concat " " in
let n = "~n:\"" ^ s ^ "\"" in
let original_id =
match target with `Self -> "" | `Id (s, _) -> " " ^ s
in
n ^ original_id
in
args |> List.map arg_to_string |> String.concat " ; "
end
module _ : S = Change_page
module Draw = struct
let on = "draw"
let action_name = on
type args = ids_or_self
let parse_args = Parse.parse_only_els ~action_name
end
module _ : S = Draw
module Clear_draw = struct
let on = "clear"
let action_name = on
type args = ids_or_self
let parse_args = Parse.parse_only_els ~action_name
end
module _ : S = Clear_draw
module Execute = struct
type args = ids_or_self
let on = "exec-at-unpause"
let action_name = "exec"
let parse_args = Parse.parse_only_els ~action_name
end
module _ : S = Execute
let all_actions =
[
(module Enter : S);
(module Clear_draw : S);
(module Draw : S);
(module Pause : S);
(module Step : S);
(module Up : S);
(module Down : S);
(module Center : S);
(module Scroll : S);
(module Change_page : S);
(module Focus : S);
(module Unfocus : S);
(module Execute : S);
(module Unstatic : S);
(module Static : S);
(module Reveal : S);
(module Unreveal : S);
(module Emph : S);
(module Unemph : S);
(module Speaker_note : S);
(module Play_media : S);
]