1 | # Key name Command Contexts
|
---|
2 | #----------------------------------------------------------------------
|
---|
3 | (def_key "Escape" "quit_demo" action strategy follow)
|
---|
4 | (def_key "Left" "Move Left" action follow strategy)
|
---|
5 | (def_key "Right" "Move Right" action follow strategy)
|
---|
6 | (def_key "Up" "Move Forward" action follow strategy)
|
---|
7 | (def_key "Down" "Move Backward" action follow strategy)
|
---|
8 | (def_key "Del" "Move Left" action follow strategy)
|
---|
9 | (def_key "PageDown" "Move Right" action follow strategy)
|
---|
10 | (def_key "Home" "Move Forward" action follow strategy)
|
---|
11 | (def_key "End" "Move Backward" action follow strategy)
|
---|
12 |
|
---|
13 | (def_key "Space" "Main Gun" action follow)
|
---|
14 | (def_key "Pad 0" "Main Gun" action follow)
|
---|
15 | (def_key "Enter" "Missiles" action follow)
|
---|
16 | (def_key "Pad ." "Chain Gun" action follow)
|
---|
17 | (def_key "Pad ." "Nothing" strategy)
|
---|
18 | (def_key "Ctrl" "Chain Gun" action follow)
|
---|
19 | (def_key "Ctrl" "Nothing" strategy)
|
---|
20 |
|
---|
21 | (def_key "," "Strafe Left" action follow)
|
---|
22 | (def_key "Insert" "Strafe Left" action follow)
|
---|
23 | (def_key "." "Strafe Right" action follow)
|
---|
24 | (def_key "PageUp" "Strafe Right" action follow)
|
---|
25 |
|
---|
26 | (def_key "Tab" "strategy_toggle" follow strategy action)
|
---|
27 | (def_key "Backspace" "strategy_toggle" follow strategy action)
|
---|
28 |
|
---|
29 | (def_key "Z" "Zoom In" follow)
|
---|
30 | (def_key "X" "Zoom Out" follow)
|
---|
31 | (def_key "C" "Zoom Up" follow)
|
---|
32 | (def_key "V" "Zoom Down" follow)
|
---|
33 | (def_key "B" "Zoom Left" follow)
|
---|
34 | (def_key "N" "Zoom Right" follow)
|
---|
35 |
|
---|
36 | (def_key "P" "Pause" follow action strategy)
|
---|
37 |
|
---|
38 | (def_key "\\" "Strafe Mode" action follow)
|
---|
39 |
|
---|
40 | (def_key "Alt+F4" "File/Exit" editor action strategy follow)
|
---|
41 | (def_key "[" "music_down" action strategy follow editor)
|
---|
42 | (def_key "]" "music_up" action strategy follow editor)
|
---|
43 |
|
---|
44 | (def_key "0" "upgrade_level_0" action strategy follow)
|
---|
45 | (def_key "1" "upgrade_level_1" action strategy follow)
|
---|
46 | (def_key "2" "upgrade_level_2" action strategy follow)
|
---|
47 |
|
---|
48 | (def_key "-" "shrink_screen" action strategy follow)
|
---|
49 | (def_key "=" "grow_screen" action strategy follow)
|
---|
50 | (def_key "m" "toggle_follow_mode" action follow)
|
---|
51 |
|
---|
52 | # Gifts to trey command
|
---|
53 | #--------------------------------------------------------------------
|
---|
54 | (def_key "'" "Move Forward" action follow strategy)
|
---|
55 | (def_key "/" "Move Backward" action follow strategy)
|
---|
56 | (def_key "Shift" "Main Gun" action follow strategy)
|
---|
57 |
|
---|
58 |
|
---|
59 | #Build Keys command
|
---|
60 | #--------------------------------------------------------------------
|
---|
61 |
|
---|
62 | (def_key "0" "team_0")
|
---|
63 | (def_key "1" "team_1")
|
---|
64 | (def_key "2" "team_2")
|
---|
65 | (def_key "3" "team_3")
|
---|
66 | (def_key "4" "team_4")
|
---|
67 |
|
---|
68 |
|
---|
69 | (def_key "Alt+0" "tint_none")
|
---|
70 | (def_key "Alt+1" "tint_polys")
|
---|
71 | (def_key "Alt+2" "tint_all")
|
---|
72 |
|
---|
73 | (def_key "`" "Build Blank" action follow strategy)
|
---|
74 | (def_key "Q" "Build stank" action follow strategy)
|
---|
75 | (def_key "W" "Build peon_tank" action follow strategy)
|
---|
76 | (def_key "E" "Build trike" action follow strategy)
|
---|
77 | (def_key "R" "Build rocket_tank" action follow strategy)
|
---|
78 | (def_key "T" "Build electric_car" action follow strategy)
|
---|
79 | (def_key "Y" "Build helicopter" action follow strategy)
|
---|
80 | (def_key "U" "Build jet" action follow strategy)
|
---|
81 | (def_key "I" "Build engineer" action follow strategy)
|
---|
82 |
|
---|
83 | (def_key "A" "Build electric_car" action follow strategy)
|
---|
84 | (def_key "S" "Build helicopter" action follow strategy)
|
---|
85 | (def_key "D" "Build jet" action follow strategy)
|
---|
86 | (def_key "F" "Build engineer" action follow strategy)
|
---|
87 |
|
---|
88 |
|
---|
89 | # Debugging keys
|
---|
90 | # -----------------------------------------------------------------
|
---|
91 | (def_key "O" "Toggle Stats" action follow strategy)
|
---|
92 |
|
---|
93 | (def_key "F1" "Show Help" action follow strategy)
|
---|
94 | (def_key "F2" "Screen Shot" action follow strategy editor)
|
---|
95 |
|
---|
96 | (def_key "F3" "play_demo" action follow strategy)
|
---|
97 | (def_key "F4" "record_toggle" action follow strategy)
|
---|
98 |
|
---|
99 | (def_key "F5" "Map/Change Sky" editor follow strategy action)
|
---|
100 | (def_key "F6" "Edit/Toggle Menu" action follow strategy editor)
|
---|
101 | (def_key "F7" "Tools/Profile" action follow strategy editor)
|
---|
102 | (def_key "F8" "Cheat Menu" action follow strategy editor)
|
---|
103 | (def_key "F9" "edit_music" action follow strategy editor)
|
---|
104 | (def_key "F12" "File/Save As" editor)
|
---|
105 |
|
---|
106 |
|
---|
107 |
|
---|
108 |
|
---|
109 | # Editor keys
|
---|
110 | # ------------------------------------------------------------------
|
---|
111 |
|
---|
112 | (def_key "Left" "Pan Left" editor)
|
---|
113 | (def_key "Right" "Pan Right" editor)
|
---|
114 | (def_key "Up" "Pan Forward" editor)
|
---|
115 | (def_key "Down" "Pan Backward" editor)
|
---|
116 |
|
---|
117 | #(def_key "Del" "Pan Left" editor)
|
---|
118 | #(def_key "PageDown" "Pan Right" editor)
|
---|
119 | #(def_key "Home" "Pan Forward" editor)
|
---|
120 | #(def_key "End" "Pan Backward" editor)
|
---|
121 |
|
---|
122 | (def_key "Del" "Map/Delete Selected" editor)
|
---|
123 | (def_key "Shift+Left" "Rotate Left" editor)
|
---|
124 | (def_key "Shift+Right" "Rotate Right" editor)
|
---|
125 | (def_key "Shift+Up" "Pan Up" editor)
|
---|
126 | (def_key "Shift+Down" "Pan Down" editor)
|
---|
127 | (def_key "Alt+Up" "Rotate Up" editor)
|
---|
128 | (def_key "Alt+Down" "Rotate Down" editor)
|
---|
129 |
|
---|
130 | (def_key "Ctrl+N" "File/New" editor)
|
---|
131 | (def_key "Ctrl+S" "File/Save" editor)
|
---|
132 |
|
---|
133 | (def_key "Ctrl+D" "File/Open DLL" editor)
|
---|
134 |
|
---|
135 |
|
---|
136 | (def_key "Ctrl+Z" "Edit/Undo" editor)
|
---|
137 | (def_key "Ctrl+A" "Edit/Redo" editor)
|
---|
138 | (def_key "Ctrl+X" "Edit/Cut" editor)
|
---|
139 | (def_key "Ctrl+C" "Edit/Copy" editor)
|
---|
140 | (def_key "Ctrl+V" "Edit/Paste" editor)
|
---|
141 |
|
---|
142 |
|
---|
143 | (def_key "Alt+1" "View/1 View" editor)
|
---|
144 | (def_key "Alt+4" "View/4 Views" editor)
|
---|
145 | (def_key "Ctrl+6" "View/Wireframe" editor)
|
---|
146 | (def_key "Ctrl+7" "View/Textured" editor)
|
---|
147 |
|
---|
148 | (def_key "Ctrl+F9" "View/Toggle Wireframe" editor)
|
---|
149 | (def_key "Ctrl+F10" "View/Toggle Textured" editor)
|
---|
150 |
|
---|
151 |
|
---|
152 | (def_key "Alt+O" "Tools/Objects" editor)
|
---|
153 | (def_key "Alt+T" "Tools/Tiles" editor)
|
---|
154 | (def_key "Alt+R" "Tools/Radar" editor)
|
---|
155 |
|
---|
156 | (def_key "Ctrl+T" "Map/Simulate Tick" editor)
|
---|
157 |
|
---|
158 | (def_key "Ctrl+Q" "full_reload_level" editor)
|
---|
159 | (def_key "Ctrl+R" "reload_level" editor)
|
---|
160 |
|
---|
161 |
|
---|
162 | (def_key "Alt+L" "Terrain/Recalc Light" editor)
|
---|
163 | (def_key "Alt+M" "Terrain/Merge" editor)
|
---|
164 | (def_key "Alt+F" "Terrain/Flatten Selected" editor)
|
---|
165 | (def_key "Alt+S" "Terrain/Smooth Selected" editor)
|
---|
166 | (def_key "Alt+N" "Terrain/Add Noise to Selected" editor)
|
---|
167 |
|
---|
168 | (def_key "Ctrl+O" "Objects/Select Game Pieces" editor)
|
---|
169 |
|
---|
170 |
|
---|
171 | (def_key "Alt+Space" "edit_selected" editor)
|
---|
172 | (def_key "Alt+X" "add_link" editor)
|
---|
173 | (def_key "Alt+Z" "remove_link" editor)
|
---|
174 |
|
---|
175 | (def_key "Alt+`" "read-eval" editor follow strategy action)
|
---|
176 | (def_key "," "move_selected_down" editor)
|
---|
177 | (def_key "." "move_selected_up" editor)
|
---|
178 |
|
---|
179 | (def_key "Alt+[" "fix_previous_link" editor)
|
---|
180 | (def_key "Alt+]" "fix_forward_link" editor)
|
---|
181 | (def_key "Alt+P" "fix_path_link" editor)
|
---|
182 |
|
---|
183 |
|
---|
184 |
|
---|