-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.go
More file actions
63 lines (51 loc) · 1.78 KB
/
help.go
File metadata and controls
63 lines (51 loc) · 1.78 KB
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
package main
const helpText = `
MKI3D GAME (see: https://github.com/mki1967/mki3dgame )
=======================================================
Collect the tokens and avoid the monsters.
(You can be captured by a monster ;-)
PRESS THE MOUSE BUTTON ON THE SCREEN SECTORS
Action-sectors layout:
----------------------
+---------+---------+---------+
| MF | MU | MF |
| +---------+ |
| | RU | |
+---------+---------+---------+
| | | | | |
| ML | RL | LV | RR | MR |
| | | | | |
+---------+---------+---------+
| | RD | |
| +---------+ |
| MB | MD | MB |
+---------+---------+---------+
MF, MB, MU, MD, ML, MR - move forward, backward, up, down, left and right
RU, RD, RL, RR - rotate up, down, left and right
LV - set the player upright, then align the horizontal rotation to the right angle
OR USE THE KEYBOARD
Key press actions:
------------------
H - this help message
Arrow keys - rotate observer
Shift + Arrow keys - move observer sideways
Space - set the player upright and then align with the horizontal axes
B, F - move observer backward or forward
L - set the diffuse light direction perpendicular to the screen
P - pause the game
X - load next random stage
Q - display your score and the number of remaining tokens
S - toggle SKYBOX ON/OFF
N - new SKYBOX
Shift+Q - quit
F11 - toggle full-screen
OR USE THE GAMEPAD:
Gamepad actions:
----------------
Left Joystick - rotate
Button A - set the player upright and then align with the horizontal axes
Right Joystick - move forward/backward/left/right
Right/Left Triger - forward/backward
Dpad Buttons - move on the screen plane
Button Start - load next random stage
`