2006-04-13 20:47:06 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
2010-05-25 10:56:00 +00:00
|
|
|
Copyright (C) 2010 EDuke32 developers and contributors
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2010-05-25 10:56:00 +00:00
|
|
|
This file is part of EDuke32.
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2007-02-08 04:19:39 +00:00
|
|
|
EDuke32 is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License version 2
|
|
|
|
as published by the Free Software Foundation.
|
2006-04-13 20:47:06 +00:00
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// _functio.h
|
|
|
|
|
|
|
|
// file created by makehead.exe
|
|
|
|
// these headers contain default key assignments, as well as
|
|
|
|
// default button assignments and game function names
|
|
|
|
// axis defaults are also included
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _function_private_
|
|
|
|
#define _function_private_
|
2012-11-05 02:49:08 +00:00
|
|
|
#ifdef EXTERNC
|
|
|
|
{
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
2006-04-25 01:56:24 +00:00
|
|
|
char gamefunctions[NUMGAMEFUNCTIONS][MAXGAMEFUNCLEN] =
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
|
|
|
"Move_Forward",
|
|
|
|
"Move_Backward",
|
|
|
|
"Turn_Left",
|
|
|
|
"Turn_Right",
|
|
|
|
"Strafe",
|
|
|
|
"Fire",
|
|
|
|
"Open",
|
|
|
|
"Run",
|
|
|
|
"AutoRun",
|
|
|
|
"Jump",
|
|
|
|
"Crouch",
|
|
|
|
"Look_Up",
|
|
|
|
"Look_Down",
|
|
|
|
"Look_Left",
|
|
|
|
"Look_Right",
|
|
|
|
"Strafe_Left",
|
|
|
|
"Strafe_Right",
|
|
|
|
"Aim_Up",
|
|
|
|
"Aim_Down",
|
|
|
|
"Weapon_1",
|
|
|
|
"Weapon_2",
|
|
|
|
"Weapon_3",
|
|
|
|
"Weapon_4",
|
|
|
|
"Weapon_5",
|
|
|
|
"Weapon_6",
|
|
|
|
"Weapon_7",
|
|
|
|
"Weapon_8",
|
|
|
|
"Weapon_9",
|
2006-07-24 02:47:47 +00:00
|
|
|
"Weapon_10",
|
|
|
|
"Inventory",
|
|
|
|
"Inventory_Left",
|
|
|
|
"Inventory_Right",
|
|
|
|
"Holo_Duke",
|
|
|
|
"Jetpack",
|
|
|
|
"NightVision",
|
|
|
|
"MedKit",
|
|
|
|
"TurnAround",
|
|
|
|
"SendMessage",
|
|
|
|
"Map",
|
|
|
|
"Shrink_Screen",
|
|
|
|
"Enlarge_Screen",
|
|
|
|
"Center_View",
|
|
|
|
"Holster_Weapon",
|
|
|
|
"Show_Opponents_Weapon",
|
|
|
|
"Map_Follow_Mode",
|
|
|
|
"See_Coop_View",
|
|
|
|
"Mouse_Aiming",
|
|
|
|
"Toggle_Crosshair",
|
|
|
|
"Steroids",
|
|
|
|
"Quick_Kick",
|
|
|
|
"Next_Weapon",
|
|
|
|
"Previous_Weapon",
|
2008-11-20 14:06:36 +00:00
|
|
|
"Show_Console",
|
2010-06-22 21:50:01 +00:00
|
|
|
"Show_DukeMatch_Scores",
|
|
|
|
"Dpad_Select",
|
|
|
|
"Dpad_Aiming"
|
2006-07-24 02:47:47 +00:00
|
|
|
};
|
|
|
|
|
2006-04-13 20:47:06 +00:00
|
|
|
#ifdef __SETUP__
|
|
|
|
|
2010-06-22 21:50:01 +00:00
|
|
|
#define NUMKEYENTRIES 56
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2006-04-25 01:56:24 +00:00
|
|
|
char keydefaults[NUMGAMEFUNCTIONS*3][MAXGAMEFUNCLEN] =
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
2006-04-25 01:56:24 +00:00
|
|
|
"Move_Forward", "W", "Kpad8",
|
|
|
|
"Move_Backward", "S", "Kpad2",
|
2006-04-13 20:47:06 +00:00
|
|
|
"Turn_Left", "Left", "Kpad4",
|
|
|
|
"Turn_Right", "Right", "KPad6",
|
|
|
|
"Strafe", "LAlt", "RAlt",
|
2006-04-25 01:56:24 +00:00
|
|
|
"Fire", "", "RCtrl",
|
|
|
|
"Open", "E", "",
|
2006-04-13 20:47:06 +00:00
|
|
|
"Run", "LShift", "RShift",
|
|
|
|
"AutoRun", "CapLck", "",
|
2006-04-25 01:56:24 +00:00
|
|
|
"Jump", "Space", "/",
|
|
|
|
"Crouch", "LCtrl", "",
|
2006-04-13 20:47:06 +00:00
|
|
|
"Look_Up", "PgUp", "Kpad9",
|
|
|
|
"Look_Down", "PgDn", "Kpad3",
|
|
|
|
"Look_Left", "Insert", "Kpad0",
|
|
|
|
"Look_Right", "Delete", "Kpad.",
|
2006-04-25 01:56:24 +00:00
|
|
|
"Strafe_Left", "A", "",
|
|
|
|
"Strafe_Right", "D", "",
|
2006-04-13 20:47:06 +00:00
|
|
|
"Aim_Up", "Home", "KPad7",
|
|
|
|
"Aim_Down", "End", "Kpad1",
|
|
|
|
"Weapon_1", "1", "",
|
|
|
|
"Weapon_2", "2", "",
|
|
|
|
"Weapon_3", "3", "",
|
|
|
|
"Weapon_4", "4", "",
|
|
|
|
"Weapon_5", "5", "",
|
|
|
|
"Weapon_6", "6", "",
|
|
|
|
"Weapon_7", "7", "",
|
|
|
|
"Weapon_8", "8", "",
|
|
|
|
"Weapon_9", "9", "",
|
|
|
|
"Weapon_10", "0", "",
|
|
|
|
"Inventory", "Enter", "KpdEnt",
|
|
|
|
"Inventory_Left", "[", "",
|
|
|
|
"Inventory_Right", "]", "",
|
|
|
|
"Holo_Duke", "H", "",
|
|
|
|
"Jetpack", "J", "",
|
|
|
|
"NightVision", "N", "",
|
|
|
|
"MedKit", "M", "",
|
|
|
|
"TurnAround", "BakSpc", "",
|
|
|
|
"SendMessage", "T", "",
|
|
|
|
"Map", "Tab", "",
|
|
|
|
"Shrink_Screen", "-", "Kpad-",
|
|
|
|
"Enlarge_Screen", "=", "Kpad+",
|
|
|
|
"Center_View", "KPad5", "",
|
|
|
|
"Holster_Weapon", "ScrLck", "",
|
2006-04-25 01:56:24 +00:00
|
|
|
"Show_Opponents_Weapon", "Y", "",
|
2006-04-13 20:47:06 +00:00
|
|
|
"Map_Follow_Mode", "F", "",
|
|
|
|
"See_Coop_View", "K", "",
|
|
|
|
"Mouse_Aiming", "U", "",
|
|
|
|
"Toggle_Crosshair", "I", "",
|
|
|
|
"Steroids", "R", "",
|
2006-04-25 01:56:24 +00:00
|
|
|
"Quick_Kick", "Q", "",
|
2006-04-13 20:47:06 +00:00
|
|
|
"Next_Weapon", "'", "",
|
|
|
|
"Previous_Weapon", ";", "",
|
2008-11-20 14:06:36 +00:00
|
|
|
"Show_Console", "`", "",
|
2010-06-22 21:50:01 +00:00
|
|
|
"Show_DukeMatch_Scores", "", "",
|
|
|
|
"Dpad_Select", "", "",
|
|
|
|
"Dpad_Aiming", "", "",
|
2006-04-13 20:47:06 +00:00
|
|
|
};
|
|
|
|
|
2007-02-16 00:11:25 +00:00
|
|
|
const char oldkeydefaults[NUMGAMEFUNCTIONS*3][MAXGAMEFUNCLEN] =
|
2007-02-14 00:22:12 +00:00
|
|
|
{
|
|
|
|
"Move_Forward", "Up", "Kpad8",
|
|
|
|
"Move_Backward", "Down", "Kpad2",
|
|
|
|
"Turn_Left", "Left", "Kpad4",
|
|
|
|
"Turn_Right", "Right", "KPad6",
|
|
|
|
"Strafe", "LAlt", "RAlt",
|
|
|
|
"Fire", "LCtrl", "RCtrl",
|
|
|
|
"Open", "Space", "",
|
|
|
|
"Run", "LShift", "RShift",
|
|
|
|
"AutoRun", "CapLck", "",
|
|
|
|
"Jump", "A", "/",
|
|
|
|
"Crouch", "Z", "",
|
|
|
|
"Look_Up", "PgUp", "Kpad9",
|
|
|
|
"Look_Down", "PgDn", "Kpad3",
|
|
|
|
"Look_Left", "Insert", "Kpad0",
|
|
|
|
"Look_Right", "Delete", "Kpad.",
|
|
|
|
"Strafe_Left", ",", "",
|
|
|
|
"Strafe_Right", ".", "",
|
|
|
|
"Aim_Up", "Home", "KPad7",
|
|
|
|
"Aim_Down", "End", "Kpad1",
|
|
|
|
"Weapon_1", "1", "",
|
|
|
|
"Weapon_2", "2", "",
|
|
|
|
"Weapon_3", "3", "",
|
|
|
|
"Weapon_4", "4", "",
|
|
|
|
"Weapon_5", "5", "",
|
|
|
|
"Weapon_6", "6", "",
|
|
|
|
"Weapon_7", "7", "",
|
|
|
|
"Weapon_8", "8", "",
|
|
|
|
"Weapon_9", "9", "",
|
|
|
|
"Weapon_10", "0", "",
|
|
|
|
"Inventory", "Enter", "KpdEnt",
|
|
|
|
"Inventory_Left", "[", "",
|
|
|
|
"Inventory_Right", "]", "",
|
|
|
|
"Holo_Duke", "H", "",
|
|
|
|
"Jetpack", "J", "",
|
|
|
|
"NightVision", "N", "",
|
|
|
|
"MedKit", "M", "",
|
|
|
|
"TurnAround", "BakSpc", "",
|
|
|
|
"SendMessage", "T", "",
|
|
|
|
"Map", "Tab", "",
|
|
|
|
"Shrink_Screen", "-", "Kpad-",
|
|
|
|
"Enlarge_Screen", "=", "Kpad+",
|
|
|
|
"Center_View", "KPad5", "",
|
|
|
|
"Holster_Weapon", "ScrLck", "",
|
|
|
|
"Show_Opponents_Weapon", "W", "",
|
|
|
|
"Map_Follow_Mode", "F", "",
|
|
|
|
"See_Coop_View", "K", "",
|
|
|
|
"Mouse_Aiming", "U", "",
|
|
|
|
"Toggle_Crosshair", "I", "",
|
|
|
|
"Steroids", "R", "",
|
|
|
|
"Quick_Kick", "`", "",
|
|
|
|
"Next_Weapon", "'", "",
|
|
|
|
"Previous_Weapon", ";", "",
|
2012-06-03 16:11:22 +00:00
|
|
|
"Show_Console", "C", "",
|
2010-06-22 21:50:01 +00:00
|
|
|
"Show_DukeMatch_Scores", "", "",
|
|
|
|
"Dpad_Select", "", "",
|
|
|
|
"Dpad_Aiming", "", "",
|
2007-02-14 00:22:12 +00:00
|
|
|
};
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2012-07-01 22:11:33 +00:00
|
|
|
static const char * mousedefaults[] =
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
|
|
|
"Fire",
|
2006-04-25 22:50:57 +00:00
|
|
|
"MedKit",
|
|
|
|
"Jetpack",
|
2006-04-13 20:47:06 +00:00
|
|
|
"",
|
2007-02-13 09:50:58 +00:00
|
|
|
"Previous_Weapon",
|
2008-10-18 12:37:26 +00:00
|
|
|
"Next_Weapon",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
""
|
2006-04-13 20:47:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-07-01 22:11:33 +00:00
|
|
|
static const char * mouseclickeddefaults[] =
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
2008-10-18 12:37:26 +00:00
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
2006-04-25 22:50:57 +00:00
|
|
|
""
|
2006-04-13 20:47:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-07-01 22:11:33 +00:00
|
|
|
static const char * mouseanalogdefaults[] =
|
2012-06-03 16:11:22 +00:00
|
|
|
{
|
|
|
|
"analog_turning",
|
|
|
|
"analog_moving",
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-07-01 22:11:33 +00:00
|
|
|
static const char * mousedigitaldefaults[] =
|
2012-06-03 16:11:22 +00:00
|
|
|
{
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
};
|
|
|
|
|
|
|
|
#if defined(GEKKO)
|
2012-07-01 22:11:33 +00:00
|
|
|
static const char * joystickdefaults[] =
|
2012-06-03 16:11:22 +00:00
|
|
|
{
|
|
|
|
"Open", // A
|
|
|
|
"Fire", // B
|
|
|
|
"Run", // 1
|
|
|
|
"Map", // 2
|
|
|
|
"Previous_Weapon", // -
|
|
|
|
"Next_Weapon", // +
|
|
|
|
"", // Home
|
|
|
|
"Jump", // Z
|
|
|
|
"Crouch", // C
|
|
|
|
"Map", // X
|
|
|
|
"Run", // Y
|
|
|
|
"Jump", // L
|
2012-07-05 17:55:44 +00:00
|
|
|
"Quick_Kick", // R
|
2012-06-03 16:11:22 +00:00
|
|
|
"Crouch", // ZL
|
2012-07-05 17:55:44 +00:00
|
|
|
"Fire", // ZR
|
2012-06-03 16:11:22 +00:00
|
|
|
"Quick_Kick", // D-Pad Up
|
|
|
|
"Inventory_Right", // D-Pad Right
|
|
|
|
"Inventory", // D-Pad Down
|
|
|
|
"Inventory_Left", // D-Pad Left
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-07-01 22:11:33 +00:00
|
|
|
static const char * joystickclickeddefaults[] =
|
2012-06-03 16:11:22 +00:00
|
|
|
{
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
2012-07-05 17:55:44 +00:00
|
|
|
"Inventory",
|
2012-06-03 16:11:22 +00:00
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-07-01 22:11:33 +00:00
|
|
|
static const char * joystickanalogdefaults[] =
|
2012-06-03 16:11:22 +00:00
|
|
|
{
|
|
|
|
"analog_strafing",
|
|
|
|
"analog_moving",
|
|
|
|
"analog_turning",
|
|
|
|
"analog_lookingupanddown",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-07-01 22:11:33 +00:00
|
|
|
static const char * joystickdigitaldefaults[] =
|
2012-06-03 16:11:22 +00:00
|
|
|
{
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
};
|
|
|
|
#else
|
2012-07-01 22:11:33 +00:00
|
|
|
static const char * joystickdefaults[] =
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
|
|
|
"Fire",
|
|
|
|
"Strafe",
|
|
|
|
"Run",
|
|
|
|
"Open",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"Aim_Down",
|
|
|
|
"Look_Right",
|
|
|
|
"Aim_Up",
|
|
|
|
"Look_Left",
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-07-01 22:11:33 +00:00
|
|
|
static const char * joystickclickeddefaults[] =
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
|
|
|
"",
|
|
|
|
"Inventory",
|
|
|
|
"Jump",
|
|
|
|
"Crouch",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-07-01 22:11:33 +00:00
|
|
|
static const char * joystickanalogdefaults[] =
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
|
|
|
"analog_turning",
|
|
|
|
"analog_moving",
|
|
|
|
"analog_strafing",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-07-01 22:11:33 +00:00
|
|
|
static const char * joystickdigitaldefaults[] =
|
2006-04-13 20:47:06 +00:00
|
|
|
{
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"Run",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
"",
|
|
|
|
};
|
|
|
|
#endif
|
2012-06-03 16:11:22 +00:00
|
|
|
|
|
|
|
#endif
|
2012-11-05 02:49:08 +00:00
|
|
|
#ifdef EXTERNC
|
2006-04-13 20:47:06 +00:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|