Skip to content

Commit

Permalink
* Demote input related console information to developer only so that …
Browse files Browse the repository at this point in the history
…it doesn't

  spam the console every time input settings are changed
  • Loading branch information
timangus committed Aug 24, 2007
1 parent 5c66129 commit 6993861
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 53 deletions.
4 changes: 2 additions & 2 deletions code/unix/linux_glimp.c
Expand Up @@ -1769,7 +1769,7 @@ void GLimp_WakeRenderer( void *data ) {}
/*****************************************************************************/

void IN_Init(void) {
Com_Printf ("\n------- Input Initialization -------\n");
Com_DPrintf ("\n------- Input Initialization -------\n");
// mouse variables
in_mouse = Cvar_Get ("in_mouse", "1", CVAR_ARCHIVE);
in_dgamouse = Cvar_Get ("in_dgamouse", "1", CVAR_ARCHIVE);
Expand All @@ -1795,7 +1795,7 @@ void IN_Init(void) {
mouse_avail = qfalse;

IN_StartupJoystick( ); // bk001130 - from cvs1.17 (mkv)
Com_Printf ("------------------------------------\n");
Com_DPrintf ("------------------------------------\n");
}

void IN_Shutdown(void)
Expand Down
12 changes: 6 additions & 6 deletions code/unix/linux_joystick.c
Expand Up @@ -76,7 +76,7 @@ void IN_StartupJoystick( void )
joy_fd = -1;

if( !in_joystick->integer ) {
Com_Printf( "Joystick is not active.\n" );
Com_DPrintf( "Joystick is not active.\n" );
return;
}

Expand All @@ -94,7 +94,7 @@ void IN_StartupJoystick( void )
char name[128];
int n = -1;

Com_Printf( "Joystick %s found\n", filename );
Com_DPrintf( "Joystick %s found\n", filename );

/* Get rid of initialization messages. */
do {
Expand All @@ -114,9 +114,9 @@ void IN_StartupJoystick( void )
strncpy( name, "Unknown", sizeof( name ) );
}

Com_Printf( "Name: %s\n", name );
Com_Printf( "Axes: %d\n", axes );
Com_Printf( "Buttons: %d\n", buttons );
Com_DPrintf( "Name: %s\n", name );
Com_DPrintf( "Axes: %d\n", axes );
Com_DPrintf( "Buttons: %d\n", buttons );

/* Our work here is done. */
return;
Expand All @@ -126,7 +126,7 @@ void IN_StartupJoystick( void )

/* No soup for you. */
if( joy_fd == -1 ) {
Com_Printf( "No joystick found.\n" );
Com_DPrintf( "No joystick found.\n" );
return;
}

Expand Down
30 changes: 15 additions & 15 deletions code/unix/sdl_glimp.c
Expand Up @@ -1438,7 +1438,7 @@ void GLimp_WakeRenderer( void *data ) {}
/*****************************************************************************/

void IN_Init(void) {
Com_Printf ("\n------- Input Initialization -------\n");
Com_DPrintf ("\n------- Input Initialization -------\n");
// mouse variables
in_mouse = Cvar_Get ("in_mouse", "1", CVAR_ARCHIVE);
in_disablemacosxmouseaccel = Cvar_Get ("in_disablemacosxmouseaccel", "1", CVAR_ARCHIVE);
Expand Down Expand Up @@ -1467,7 +1467,7 @@ void IN_Init(void) {
mouse_avail = qfalse;

IN_StartupJoystick( ); // bk001130 - from cvs1.17 (mkv)
Com_Printf ("------------------------------------\n");
Com_DPrintf ("------------------------------------\n");
}

void IN_Shutdown(void)
Expand Down Expand Up @@ -1582,25 +1582,25 @@ void IN_StartupJoystick( void )
memset(&stick_state, '\0', sizeof (stick_state));

if( !in_joystick->integer ) {
Com_Printf( "Joystick is not active.\n" );
Com_DPrintf( "Joystick is not active.\n" );
return;
}

if (!SDL_WasInit(SDL_INIT_JOYSTICK))
{
Com_Printf("Calling SDL_Init(SDL_INIT_JOYSTICK)...\n");
Com_DPrintf("Calling SDL_Init(SDL_INIT_JOYSTICK)...\n");
if (SDL_Init(SDL_INIT_JOYSTICK) == -1)
{
Com_Printf("SDL_Init(SDL_INIT_JOYSTICK) failed: %s\n", SDL_GetError());
Com_DPrintf("SDL_Init(SDL_INIT_JOYSTICK) failed: %s\n", SDL_GetError());
return;
}
Com_Printf("SDL_Init(SDL_INIT_JOYSTICK) passed.\n");
Com_DPrintf("SDL_Init(SDL_INIT_JOYSTICK) passed.\n");
}

total = SDL_NumJoysticks();
Com_Printf("I see %d possible joysticks\n", total);
Com_DPrintf("%d possible joysticks\n", total);
for (i = 0; i < total; i++)
Com_Printf("[%d] %s\n", i, SDL_JoystickName(i));
Com_DPrintf("[%d] %s\n", i, SDL_JoystickName(i));

in_joystickNo = Cvar_Get( "in_joystickNo", "0", CVAR_ARCHIVE );
if( in_joystickNo->integer < 0 || in_joystickNo->integer >= total )
Expand All @@ -1609,16 +1609,16 @@ void IN_StartupJoystick( void )
stick = SDL_JoystickOpen( in_joystickNo->integer );

if (stick == NULL) {
Com_Printf( "No joystick opened.\n" );
Com_DPrintf( "No joystick opened.\n" );
return;
}

Com_Printf( "Joystick %d opened\n", in_joystickNo->integer );
Com_Printf( "Name: %s\n", SDL_JoystickName(in_joystickNo->integer) );
Com_Printf( "Axes: %d\n", SDL_JoystickNumAxes(stick) );
Com_Printf( "Hats: %d\n", SDL_JoystickNumHats(stick) );
Com_Printf( "Buttons: %d\n", SDL_JoystickNumButtons(stick) );
Com_Printf( "Balls: %d\n", SDL_JoystickNumBalls(stick) );
Com_DPrintf( "Joystick %d opened\n", in_joystickNo->integer );
Com_DPrintf( "Name: %s\n", SDL_JoystickName(in_joystickNo->integer) );
Com_DPrintf( "Axes: %d\n", SDL_JoystickNumAxes(stick) );
Com_DPrintf( "Hats: %d\n", SDL_JoystickNumHats(stick) );
Com_DPrintf( "Buttons: %d\n", SDL_JoystickNumButtons(stick) );
Com_DPrintf( "Balls: %d\n", SDL_JoystickNumBalls(stick) );

SDL_JoystickEventState(SDL_QUERY);

Expand Down
60 changes: 30 additions & 30 deletions code/win32/win_input.c
Expand Up @@ -267,13 +267,13 @@ qboolean IN_InitDIMouse( void ) {
DINPUT_BUFFERSIZE, // dwData
};

Com_Printf( "Initializing DirectInput...\n");
Com_DPrintf( "Initializing DirectInput...\n");

if (!hInstDI) {
hInstDI = LoadLibrary("dinput.dll");

if (hInstDI == NULL) {
Com_Printf ("Couldn't load dinput.dll\n");
Com_DPrintf ("Couldn't load dinput.dll\n");
return qfalse;
}
}
Expand All @@ -283,7 +283,7 @@ qboolean IN_InitDIMouse( void ) {
GetProcAddress(hInstDI,"DirectInputCreateA");

if (!pDirectInputCreate) {
Com_Printf ("Couldn't get DI proc addr\n");
Com_DPrintf ("Couldn't get DI proc addr\n");
return qfalse;
}
}
Expand All @@ -292,23 +292,23 @@ qboolean IN_InitDIMouse( void ) {
hr = iDirectInputCreate( g_wv.hInstance, DIRECTINPUT_VERSION, &g_pdi, NULL);

if (FAILED(hr)) {
Com_Printf ("iDirectInputCreate failed\n");
Com_DPrintf ("iDirectInputCreate failed\n");
return qfalse;
}

// obtain an interface to the system mouse device.
hr = IDirectInput_CreateDevice(g_pdi, &GUID_SysMouse, &g_pMouse, NULL);

if (FAILED(hr)) {
Com_Printf ("Couldn't open DI mouse device\n");
Com_DPrintf ("Couldn't open DI mouse device\n");
return qfalse;
}

// set the data format to "mouse format".
hr = IDirectInputDevice_SetDataFormat(g_pMouse, &df);

if (FAILED(hr)) {
Com_Printf ("Couldn't set DI mouse format\n");
Com_DPrintf ("Couldn't set DI mouse format\n");
return qfalse;
}

Expand All @@ -318,7 +318,7 @@ qboolean IN_InitDIMouse( void ) {

// https://zerowing.idsoftware.com/bugzilla/show_bug.cgi?id=50
if (FAILED(hr)) {
Com_Printf ("Couldn't set DI coop level\n");
Com_DPrintf ("Couldn't set DI coop level\n");
return qfalse;
}

Expand All @@ -328,15 +328,15 @@ qboolean IN_InitDIMouse( void ) {
hr = IDirectInputDevice_SetProperty(g_pMouse, DIPROP_BUFFERSIZE, &dipdw.diph);

if (FAILED(hr)) {
Com_Printf ("Couldn't set DI buffersize\n");
Com_DPrintf ("Couldn't set DI buffersize\n");
return qfalse;
}

// clear any pending samples
IN_DIMouse( &x, &y );
IN_DIMouse( &x, &y );

Com_Printf( "DirectInput initialized.\n");
Com_DPrintf( "DirectInput initialized.\n");
return qtrue;
}

Expand Down Expand Up @@ -557,32 +557,32 @@ void IN_StartupMouse( void )
s_wmv.mouseStartupDelayed = qfalse;

if ( in_mouse->integer == 0 ) {
Com_Printf ("Mouse control not active.\n");
Com_DPrintf ("Mouse control not active.\n");
return;
}

// nt4.0 direct input is screwed up
if ( ( g_wv.osversion.dwPlatformId == VER_PLATFORM_WIN32_NT ) &&
( g_wv.osversion.dwMajorVersion == 4 ) )
{
Com_Printf ("Disallowing DirectInput on NT 4.0\n");
Com_DPrintf ("Disallowing DirectInput on NT 4.0\n");
Cvar_Set( "in_mouse", "-1" );
}

if ( in_mouse->integer == -1 ) {
Com_Printf ("Skipping check for DirectInput\n");
Com_DPrintf ("Skipping check for DirectInput\n");
} else {
if (!g_wv.hWnd)
{
Com_Printf ("No window for DirectInput mouse init, delaying\n");
Com_DPrintf ("No window for DirectInput mouse init, delaying\n");
s_wmv.mouseStartupDelayed = qtrue;
return;
}
if ( IN_InitDIMouse() ) {
s_wmv.mouseInitialized = qtrue;
return;
}
Com_Printf ("Falling back to Win32 mouse support...\n");
Com_DPrintf ("Falling back to Win32 mouse support...\n");
}
s_wmv.mouseInitialized = qtrue;
IN_InitWin32Mouse();
Expand Down Expand Up @@ -654,11 +654,11 @@ IN_Startup
===========
*/
void IN_Startup( void ) {
Com_Printf ("\n------- Input Initialization -------\n");
Com_DPrintf ("\n------- Input Initialization -------\n");
IN_StartupMouse ();
IN_StartupJoystick ();
IN_StartupMIDI();
Com_Printf ("------------------------------------\n");
Com_DPrintf ("------------------------------------\n");

in_mouse->modified = qfalse;
in_joystick->modified = qfalse;
Expand Down Expand Up @@ -802,14 +802,14 @@ void IN_StartupJoystick (void) {
joy.avail = qfalse;

if (! in_joystick->integer ) {
Com_Printf ("Joystick is not active.\n");
Com_DPrintf ("Joystick is not active.\n");
return;
}

// verify joystick driver is present
if ((numdevs = joyGetNumDevs ()) == 0)
{
Com_Printf ("joystick not found -- driver not present\n");
Com_DPrintf ("joystick not found -- driver not present\n");
return;
}

Expand All @@ -828,7 +828,7 @@ void IN_StartupJoystick (void) {
// abort startup if we didn't find a valid joystick
if (mmr != JOYERR_NOERROR)
{
Com_Printf ("joystick not found -- no valid joysticks (%x)\n", mmr);
Com_DPrintf ("joystick not found -- no valid joysticks (%x)\n", mmr);
return;
}

Expand All @@ -837,22 +837,22 @@ void IN_StartupJoystick (void) {
Com_Memset (&joy.jc, 0, sizeof(joy.jc));
if ((mmr = joyGetDevCaps (joy.id, &joy.jc, sizeof(joy.jc))) != JOYERR_NOERROR)
{
Com_Printf ("joystick not found -- invalid joystick capabilities (%x)\n", mmr);
Com_DPrintf ("joystick not found -- invalid joystick capabilities (%x)\n", mmr);
return;
}

Com_Printf( "Joystick found.\n" );
Com_Printf( "Pname: %s\n", joy.jc.szPname );
Com_Printf( "OemVxD: %s\n", joy.jc.szOEMVxD );
Com_Printf( "RegKey: %s\n", joy.jc.szRegKey );
Com_DPrintf( "Joystick found.\n" );
Com_DPrintf( "Pname: %s\n", joy.jc.szPname );
Com_DPrintf( "OemVxD: %s\n", joy.jc.szOEMVxD );
Com_DPrintf( "RegKey: %s\n", joy.jc.szRegKey );

Com_Printf( "Numbuttons: %i / %i\n", joy.jc.wNumButtons, joy.jc.wMaxButtons );
Com_Printf( "Axis: %i / %i\n", joy.jc.wNumAxes, joy.jc.wMaxAxes );
Com_Printf( "Caps: 0x%x\n", joy.jc.wCaps );
Com_DPrintf( "Numbuttons: %i / %i\n", joy.jc.wNumButtons, joy.jc.wMaxButtons );
Com_DPrintf( "Axis: %i / %i\n", joy.jc.wNumAxes, joy.jc.wMaxAxes );
Com_DPrintf( "Caps: 0x%x\n", joy.jc.wCaps );
if ( joy.jc.wCaps & JOYCAPS_HASPOV ) {
Com_Printf( "HASPOV\n" );
Com_DPrintf( "HASPOV\n" );
} else {
Com_Printf( "no POV\n" );
Com_DPrintf( "no POV\n" );
}

// old button and POV states default to no buttons pressed
Expand Down Expand Up @@ -1130,7 +1130,7 @@ static void IN_StartupMIDI( void )
( unsigned long ) NULL,
CALLBACK_FUNCTION ) != MMSYSERR_NOERROR )
{
Com_Printf( "WARNING: could not open MIDI device %d: '%s'\n",
Com_DPrintf( "WARNING: could not open MIDI device %d: '%s'\n",
in_mididevice->integer , s_midiInfo.caps[( int ) in_mididevice->value].szPname );
return;
}
Expand Down

0 comments on commit 6993861

Please sign in to comment.