forked from gophergala2016/gophette
-
Notifications
You must be signed in to change notification settings - Fork 2
/
recorded_inputs.go
49 lines (48 loc) · 1.65 KB
/
recorded_inputs.go
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
package main
var recordedInputs = []inputRecord{
{0, InputEvent{GoRight, true, 1}},
{75, InputEvent{Jump, true, 1}},
{119, InputEvent{Jump, false, 1}},
{187, InputEvent{Jump, true, 1}},
{202, InputEvent{Jump, false, 1}},
{223, InputEvent{Jump, true, 1}},
{234, InputEvent{Jump, false, 1}},
{257, InputEvent{Jump, true, 1}},
{281, InputEvent{Jump, false, 1}},
{386, InputEvent{Jump, true, 1}},
{401, InputEvent{Jump, false, 1}},
{480, InputEvent{Jump, true, 1}},
{488, InputEvent{Jump, false, 1}},
{521, InputEvent{Jump, true, 1}},
{537, InputEvent{Jump, false, 1}},
{566, InputEvent{Jump, true, 1}},
{586, InputEvent{Jump, false, 1}},
{697, InputEvent{Jump, true, 1}},
{712, InputEvent{Jump, false, 1}},
{713, InputEvent{GoRight, false, 1}},
{727, InputEvent{GoLeft, true, 1}},
{731, InputEvent{Jump, true, 1}},
{751, InputEvent{Jump, false, 1}},
{755, InputEvent{GoLeft, false, 1}},
{770, InputEvent{Jump, true, 1}},
{770, InputEvent{GoRight, true, 1}},
{791, InputEvent{Jump, false, 1}},
{792, InputEvent{GoRight, false, 1}},
{799, InputEvent{GoLeft, true, 1}},
{803, InputEvent{Jump, true, 1}},
{833, InputEvent{Jump, false, 1}},
{835, InputEvent{GoLeft, false, 1}},
{839, InputEvent{GoRight, true, 1}},
{842, InputEvent{Jump, true, 1}},
{871, InputEvent{Jump, false, 1}},
{873, InputEvent{GoRight, false, 1}},
{878, InputEvent{GoLeft, true, 1}},
{884, InputEvent{Jump, true, 1}},
{916, InputEvent{Jump, false, 1}},
{918, InputEvent{GoLeft, false, 1}},
{918, InputEvent{GoRight, true, 1}},
{927, InputEvent{Jump, true, 1}},
{962, InputEvent{Jump, false, 1}},
{1165, InputEvent{GoRight, false, 1}},
{1227, InputEvent{QuitGame, true, 1}},
}