mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-08 14:01:24 +00:00
7dcd59b35b
git-svn-id: https://svn.eduke32.com/eduke32@6015 1a8010ca-5511-0410-912e-c29ae57300e0
72 lines
2.1 KiB
C
72 lines
2.1 KiB
C
//-------------------------------------------------------------------------
|
|
/*
|
|
Copyright (C) 2010 EDuke32 developers and contributors
|
|
|
|
This file is part of EDuke32.
|
|
|
|
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.
|
|
|
|
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
//-------------------------------------------------------------------------
|
|
|
|
//****************************************************************************
|
|
//
|
|
// gamedefs.h
|
|
//
|
|
// common defines between the game and the setup program
|
|
//
|
|
//****************************************************************************
|
|
|
|
#ifndef gamedefs_public_h_
|
|
#define gamedefs_public_h_
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// config file name
|
|
#define SETUPFILENAME APPBASENAME ".cfg"
|
|
|
|
// KEEPINSYNC source/jmact/_control.h, build/src/sdlayer.c
|
|
#define MAXJOYBUTTONS 32
|
|
#define MAXJOYBUTTONSANDHATS (MAXJOYBUTTONS+4)
|
|
|
|
// KEEPINSYNC source/jmact/_control.h, build/src/sdlayer.c
|
|
#define MAXMOUSEAXES 2
|
|
#define MAXMOUSEDIGITAL (MAXMOUSEAXES*2)
|
|
|
|
// KEEPINSYNC source/jmact/_control.h, build/src/sdlayer.c
|
|
#define MAXJOYAXES 9
|
|
#define MAXJOYDIGITAL (MAXJOYAXES*2)
|
|
|
|
// default mouse sensitivity and scale
|
|
#define DEFAULTMOUSESENSITIVITY 7
|
|
#define DEFAULTMOUSEANALOGUESCALE 65536
|
|
|
|
// default joystick settings
|
|
|
|
#if defined(GEKKO)
|
|
#define DEFAULTJOYSTICKANALOGUESCALE 16384
|
|
#define DEFAULTJOYSTICKANALOGUEDEAD 1000
|
|
#define DEFAULTJOYSTICKANALOGUESATURATE 9500
|
|
#else
|
|
#define DEFAULTJOYSTICKANALOGUESCALE 65536
|
|
#define DEFAULTJOYSTICKANALOGUEDEAD 1000
|
|
#define DEFAULTJOYSTICKANALOGUESATURATE 9500
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|
|
|