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
|
2014-07-20 08:55:56 +00:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2006-04-13 20:47:06 +00:00
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
//****************************************************************************
|
|
|
|
//
|
|
|
|
// gamedefs.h
|
|
|
|
//
|
|
|
|
// common defines between the game and the setup program
|
|
|
|
//
|
|
|
|
//****************************************************************************
|
|
|
|
|
2014-11-22 12:32:56 +00:00
|
|
|
#ifndef gamedefs_public_h_
|
|
|
|
#define gamedefs_public_h_
|
2014-11-26 04:39:23 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
|
2017-01-18 22:22:00 +00:00
|
|
|
// config file name
|
2017-01-18 22:21:16 +00:00
|
|
|
#define SETUPFILENAME APPBASENAME ".cfg"
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-12-18 18:16:16 +00:00
|
|
|
// KEEPINSYNC source/jmact/_control.h, build/src/sdlayer.c
|
2014-12-18 18:15:51 +00:00
|
|
|
#define MAXJOYBUTTONS 32
|
|
|
|
#define MAXJOYBUTTONSANDHATS (MAXJOYBUTTONS+4)
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-12-18 18:16:16 +00:00
|
|
|
// KEEPINSYNC source/jmact/_control.h, build/src/sdlayer.c
|
2006-04-13 20:47:06 +00:00
|
|
|
#define MAXMOUSEAXES 2
|
2014-12-18 18:15:51 +00:00
|
|
|
#define MAXMOUSEDIGITAL (MAXMOUSEAXES*2)
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-12-18 18:16:16 +00:00
|
|
|
// KEEPINSYNC source/jmact/_control.h, build/src/sdlayer.c
|
|
|
|
#define MAXJOYAXES 9
|
2014-12-18 18:15:51 +00:00
|
|
|
#define MAXJOYDIGITAL (MAXJOYAXES*2)
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2017-01-18 22:22:00 +00:00
|
|
|
// default mouse sensitivity and scale
|
2012-06-03 16:11:22 +00:00
|
|
|
#define DEFAULTMOUSESENSITIVITY 7
|
|
|
|
#define DEFAULTMOUSEANALOGUESCALE 65536
|
|
|
|
|
2017-01-18 22:22:00 +00:00
|
|
|
// default joystick settings
|
2012-06-03 16:11:22 +00:00
|
|
|
|
|
|
|
#if defined(GEKKO)
|
|
|
|
#define DEFAULTJOYSTICKANALOGUESCALE 16384
|
|
|
|
#define DEFAULTJOYSTICKANALOGUEDEAD 1000
|
|
|
|
#define DEFAULTJOYSTICKANALOGUESATURATE 9500
|
|
|
|
#else
|
|
|
|
#define DEFAULTJOYSTICKANALOGUESCALE 65536
|
|
|
|
#define DEFAULTJOYSTICKANALOGUEDEAD 1000
|
|
|
|
#define DEFAULTJOYSTICKANALOGUESATURATE 9500
|
|
|
|
#endif
|
2006-04-13 20:47:06 +00:00
|
|
|
|
2014-11-26 04:39:23 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2006-04-13 20:47:06 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|