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 385 386 387 388 389 390 391
|
/*
XShipWars Client Keymaps
*/
#ifndef KEYMAP_H
#define KEYMAP_H
#include <stdio.h>
#include <db.h>
#include <sys/types.h>
#include "../include/osw-x.h"
/*
* Keymap codes (code corresponds to index num in xsw_keymap).
*/
#define XSW_KM_HELP 0
#define XSW_KM_EXIT 1
#define XSW_KM_TURN_LEFT 2
#define XSW_KM_TURN_RIGHT 3
#define XSW_KM_THROTTLE_INC 4
#define XSW_KM_THROTTLE_DEC 5
#define XSW_KM_THROTTLE_IDLE 6
#define XSW_KM_FIRE_WEAPON 7
#define XSW_KM_OMNI_DIR_THRUST 8
#define XSW_KM_EXTERNAL_DAMPERS 9
#define XSW_KM_LIGHTS_VECTOR 10
#define XSW_KM_LIGHTS_STROBE 11
#define XSW_KM_LIGHTS_LUMINATION 12
#define XSW_KM_WEAPON_FREQ 13
#define XSW_KM_SHIELD_STATE 14
#define XSW_KM_SHIELD_FREQ 15
#define XSW_KM_DMGCTL_TOGGLE 16
#define XSW_KM_CLOAK_STATE 17
#define XSW_KM_SET_INTERCEPT 18
#define XSW_KM_HAIL 19
#define XSW_KM_SET_CHANNEL 20
#define XSW_KM_VIEWSCREEN_ZIN 21
#define XSW_KM_VIEWSCREEN_ZOUT 22
#define XSW_KM_VIEWSCREEN_ZAUTO 23
#define XSW_KM_SCANNER_TOGGLE 24
#define XSW_KM_SCANNER_ZIN 25
#define XSW_KM_SCANNER_ZOUT 26
#define XSW_KM_SCANNER_ZMIN 27
#define XSW_KM_SCANNER_ZMAX 28
#define XSW_KM_SCANNER_ORIENT 29
#define XSW_KM_ENGINE_STATE 30
#define XSW_KM_THROTTLE_MODE 31
#define XSW_KM_WEAPONS_LOCK 32
#define XSW_KM_WEAPONS_UNLOCK 33
#define XSW_KM_WEAPONS_ONLINE 34
#define XSW_KM_SELECT_WEAPONPREV 35
#define XSW_KM_SELECT_WEAPONNEXT 36
#define XSW_KM_SELECT_WEAPON1 37
#define XSW_KM_SELECT_WEAPON2 38
#define XSW_KM_SELECT_WEAPON3 39
#define XSW_KM_SELECT_WEAPON4 40
#define XSW_KM_SELECT_WEAPON5 41
#define XSW_KM_SELECT_WEAPON6 42
#define XSW_KM_SELECT_WEAPON7 43
#define XSW_KM_SELECT_WEAPON8 44
#define XSW_KM_SELECT_WEAPON9 45
#define XSW_KM_SEND_MESSAGE 46
#define XSW_KM_VIEWSCREEN_MARKINGS 47
#define XSW_KM_VIEWSCREEN_LABELS 48
#define XSW_KM_ENERGY_SAVER_MODE 49
#define XSW_KM_NET_INTERVAL_DEC 50
#define XSW_KM_NET_INTERVAL_INC 51
#define XSW_KM_MESG_SCROLL_UP 52
#define XSW_KM_MESG_SCROLL_DOWN 53
#define XSW_KM_CONNECT 54
#define XSW_KM_DISCONNECT 55
#define XSW_KM_REFRESH 56
#define XSW_KM_CONNECTLAST 57
#define XSW_KM_CLIENT_CMD 58
#define XSW_KM_SERVER_CMD 59
#define XSW_KM_SCREEN_SHOT 60
/*
* Keymap conical names.
*/
static char *xsw_keymap_name[] = {
"Help",
"Exit",
"TurnLeft",
"TurnRight",
"ThrottleIncrease",
"ThrottleDecrease",
"ThrottleIdle",
"FireWeapon",
"OmniDirectionalThrust",
"ExternalDampers",
"LightsVector",
"LightsStrobe",
"LightsLumination",
"WeaponFreq",
"ShieldState",
"ShieldFreq",
"DamageControl",
"CloakState",
"SetIntercept",
"Hail",
"SetChannel",
"ViewscreenZoomIn",
"ViewscreenZoomOut",
"ViewscreenAutoZoom",
"ScannerToggle",
"ScannerZoomIn",
"ScannerZoomOut",
"ScannerZoomMin",
"ScannerZoomMax",
"ScannerOrient",
"EngineState",
"ThrottleMode",
"WeaponsLock",
"WeaponsUnlock",
"WeaponsOnline",
"SelectWeaponPrev",
"SelectWeaponNext",
"SelectWeapon1",
"SelectWeapon2",
"SelectWeapon3",
"SelectWeapon4",
"SelectWeapon5",
"SelectWeapon6",
"SelectWeapon7",
"SelectWeapon8",
"SelectWeapon9",
"SendMessage",
"ViewscreenMarkings",
"ViewscreenLabels",
"EnergySaverMode",
"NetIntervalDecrement",
"NetIntervalIncrement",
"MessageScrollUp",
"MessageScrollDown",
"NetConnect",
"NetDisconnect",
"NetRefresh",
"NetConnectLast",
"ClientCommand",
"ServerCommand",
"ScreenShot"
};
/*
* Total keymap entries, use number of keymap_name members
* as total.
*/
#define TOTAL_XSW_KEYMAPS (sizeof(xsw_keymap_name) / sizeof(char *))
/*
* Keymap alias names.
*/
static char *xsw_keymap_alias[] = {
"Help",
"Exit",
"Turn Left",
"Turn Right",
"Throttle Increase",
"Throttle Decrease",
"Throttle Idle",
"Fire Weapon",
"Omni Directional Thrust",
"External Dampers",
"Lights Vector",
"Lights Strobe",
"Lights Lumination",
"Weapon Freq",
"Shield State",
"Shield Freq",
"Damage Control",
"Cloak State",
"Set Intercept",
"Hail",
"Set Channel",
"Viewscreen Zoom In",
"Viewscreen Zoom Out",
"Viewscreen Auto Zoom",
"Scanner Toggle",
"Scanner Zoom In",
"Scanner Zoom Out",
"Scanner Zoom Min",
"Scanner Zoom Max",
"Scanner Orient",
"Engine State",
"Throttle Mode",
"Weapons Lock",
"Weapons Unlock",
"Weapons Online",
"Select Weapon Prev",
"Select Weapon Next",
"Select Weapon 1",
"Select Weapon 2",
"Select Weapon 3",
"Select Weapon 4",
"Select Weapon 5",
"Select Weapon 6",
"Select Weapon 7",
"Select Weapon 8",
"Select Weapon 9",
"Send Message",
"Viewscreen Markings",
"Viewscreen Labels",
"Energy Saver Mode",
"Net Interval Decrement",
"Net Interval Increment",
"Message Scroll Up",
"Message Scroll Down",
"Net Connect",
"Net Disconnect",
"Net Refresh",
"Net Connect Last",
"Client Command",
"Server Command",
"Screen Shot"
};
/*
* Keymap description:
*/
static char *keymap_item_desc[] = {
"Prints help listing of basic mapped keys and\n\
their respective functions.",
"Exits the program (requires comfermation).",
"Turns left, or if omni directional thrust is on\n\
then applies thrust towards starboard.",
"Turns right, or if omni directional thrust is on\n\
then applies thrust towards port.",
"Increases throttle.",
"Decreses throttle.",
"Sets throttle to idle position.",
"Fire/use selected device/equipment/weapon.",
"Switches to omni directional thrust mode\n\
when held down.",
"Activates external dampers.",
"Toggles vector lights on/off.",
"Toggles strobe lights on/off.",
"Toggles external lumination lights on/off.",
"Changes energy weapon's modulation frequency.",
"Toggles shield generators on/off.",
"Changes shield modulation frequency.",
"Toggles damage control on/off.",
"Toggles cloaking device on/off.",
"Prompt for intercept destination.",
"Sends a hail on the current com channel.",
"Sets com channel.",
"Zooms the viewscreen in.",
"Zooms the viewscreen out.",
"Have the viewscreen automatically adjust\n\
the zoom as needed.",
"Toggles the scanner on/off (this function is\n\
obsolete).",
"Zooms the scanner in.",
"Zooms the scanner out.",
"Zooms the scanner to match the zoom of the\n\
viewscreen.",
"Zooms the scanner to its maximum range.",
"Toggles scanner orientation; galactic core\n\
orientation/vessel orientation.",
"Initialize/shutdown engines.",
"Switches throttle scope modes; normal scope\n\
/bi-directional scope. This is often used with\n\
the joystick.",
"Locks on the next object within scanner range.",
"Unlocks weapons on currently locked object or\n\
unlocks tractor beam if the shift key\n\
is held down",
"Toggles all weapons online/offline (often used\n\
as a master padlock to prevent accidental\n\
firing).",
"Selects the previous weapon.",
"Selects the next weapon.",
"Selects weapon 1.",
"Selects weapon 2.",
"Selects weapon 3.",
"Selects weapon 4.",
"Selects weapon 5.",
"Selects weapon 6.",
"Selects weapon 7.",
"Selects weapon 8.",
"Selects weapon 9.",
"Prompts for a message to be sent on the\n\
current com channel.",
"Displays/hides viewscreen markings (such as\n\
the vessel direction arrow and scanner\n\
lock cursor).",
"Cycles through amount of labeling displayed on\n\
the viewscreen.",
"Toggles `energy saver mode' on/off (useful for\n\
conserving energy and network bandwidth\n\
while idling).",
"Decrease the network streaming interval,\n\
thus increasing the network load\n\
(useable only when auto interval is off).",
"Increases the network streaming inverval,\n\
thus decreasing the network load\n\
(useable only when auto interval is off).",
"Scrolls the bridge window's message box up.",
"Scrolls the bridge window's message box down.",
"Prompt for connection to universe.",
"Disconnects from current universe (if\n\
connected).",
"Refreshes local universe listing and other\n\
related information/resources (only when\n\
connected).",
"Reconnects to the last universe using the\n\
current login information.",
"Prompts for a command to be executed on the\n\
client.",
"Prompts for a command to be executed on the\n\
server.",
"Take screen shot."
};
/* Keymap structure. */
typedef struct {
keycode_t keycode;
} xsw_keymap_struct;
extern xsw_keymap_struct xsw_keymap[TOTAL_XSW_KEYMAPS];
#endif /* KEYMAP_H */
|