aboutsummaryrefslogtreecommitdiffstats
path: root/code/sys
diff options
context:
space:
mode:
authortma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-09-06 20:31:30 +0000
committertma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea>2007-09-06 20:31:30 +0000
commit4d72acef0743f75a260b22a41f4d474f064d15e5 (patch)
tree01c192dfa1a1efc2137285935845e7f475e3ecd9 /code/sys
parent4e64b0a1b82badbf25bb32bd96290f96668c2290 (diff)
downloadioquake3-aero-4d72acef0743f75a260b22a41f4d474f064d15e5.tar.gz
ioquake3-aero-4d72acef0743f75a260b22a41f4d474f064d15e5.zip
* Build dedicated server binary on Windows
git-svn-id: svn://svn.icculus.org/quake3/trunk@1169 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/sys')
-rw-r--r--code/sys/con_tty.c (renamed from code/sys/tty_console.c)76
-rw-r--r--code/sys/con_win32.c70
-rw-r--r--code/sys/sys_loadlib.h16
-rw-r--r--code/sys/sys_local.h12
-rw-r--r--code/sys/sys_main.c28
5 files changed, 140 insertions, 62 deletions
diff --git a/code/sys/tty_console.c b/code/sys/con_tty.c
index 34a09d1..dd37c19 100644
--- a/code/sys/tty_console.c
+++ b/code/sys/con_tty.c
@@ -33,7 +33,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
tty console routines
NOTE: if the user is editing a line when something gets printed to the early
-console then it won't look good so we provide TTY_Hide and TTY_Show to be
+console then it won't look good so we provide CON_Hide and CON_Show to be
called before and after a stdout or stderr output
=============================================================
*/
@@ -52,19 +52,19 @@ static field_t TTY_con;
// This is somewhat of aduplicate of the graphical console history
// but it's safer more modular to have our own here
-#define TTY_HISTORY 32
-static field_t ttyEditLines[ TTY_HISTORY ];
+#define CON_HISTORY 32
+static field_t ttyEditLines[ CON_HISTORY ];
static int hist_current = -1, hist_count = 0;
/*
==================
-TTY_FlushIn
+CON_FlushIn
Flush stdin, I suspect some terminals are sending a LOT of shit
FIXME relevant?
==================
*/
-static void TTY_FlushIn( void )
+static void CON_FlushIn( void )
{
char key;
while (read(0, &key, 1)!=-1);
@@ -72,7 +72,7 @@ static void TTY_FlushIn( void )
/*
==================
-TTY_Back
+CON_Back
Output a backspace
@@ -81,7 +81,7 @@ send "\b \b"
(FIXME there may be a way to find out if '\b' alone would work though)
==================
*/
-static void TTY_Back( void )
+static void CON_Back( void )
{
char key;
key = '\b';
@@ -94,13 +94,13 @@ static void TTY_Back( void )
/*
==================
-TTY_Hide
+CON_Hide
Clear the display of the line currently edited
bring cursor back to beginning of line
==================
*/
-void TTY_Hide( void )
+void CON_Hide( void )
{
if( ttycon_on )
{
@@ -114,23 +114,23 @@ void TTY_Hide( void )
{
for (i=0; i<TTY_con.cursor; i++)
{
- TTY_Back();
+ CON_Back();
}
}
- TTY_Back(); // Delete "]"
+ CON_Back(); // Delete "]"
ttycon_hide++;
}
}
/*
==================
-TTY_Show
+CON_Show
Show the current line
FIXME need to position the cursor if needed?
==================
*/
-void TTY_Show( void )
+void CON_Show( void )
{
if( ttycon_on )
{
@@ -154,21 +154,21 @@ void TTY_Show( void )
/*
==================
-TTY_Shutdown
+CON_Shutdown
Never exit without calling this, or your terminal will be left in a pretty bad state
==================
*/
-void TTY_Shutdown( void )
+void CON_Shutdown( void )
{
if (ttycon_on)
{
- TTY_Back(); // Delete "]"
+ CON_Back(); // Delete "]"
tcsetattr (0, TCSADRAIN, &TTY_tc);
-
- // Restore blocking to stdin reads
- fcntl( 0, F_SETFL, fcntl( 0, F_GETFL, 0 ) & ~O_NDELAY );
}
+
+ // Restore blocking to stdin reads
+ fcntl( 0, F_SETFL, fcntl( 0, F_GETFL, 0 ) & ~O_NDELAY );
}
/*
@@ -179,17 +179,17 @@ Hist_Add
void Hist_Add(field_t *field)
{
int i;
- assert(hist_count <= TTY_HISTORY);
+ assert(hist_count <= CON_HISTORY);
assert(hist_count >= 0);
assert(hist_current >= -1);
assert(hist_current <= hist_count);
// make some room
- for (i=TTY_HISTORY-1; i>0; i--)
+ for (i=CON_HISTORY-1; i>0; i--)
{
ttyEditLines[i] = ttyEditLines[i-1];
}
ttyEditLines[0] = *field;
- if (hist_count<TTY_HISTORY)
+ if (hist_count<CON_HISTORY)
{
hist_count++;
}
@@ -204,7 +204,7 @@ Hist_Prev
field_t *Hist_Prev( void )
{
int hist_prev;
- assert(hist_count <= TTY_HISTORY);
+ assert(hist_count <= CON_HISTORY);
assert(hist_count >= 0);
assert(hist_current >= -1);
assert(hist_current <= hist_count);
@@ -224,7 +224,7 @@ Hist_Next
*/
field_t *Hist_Next( void )
{
- assert(hist_count <= TTY_HISTORY);
+ assert(hist_count <= CON_HISTORY);
assert(hist_count >= 0);
assert(hist_current >= -1);
assert(hist_current <= hist_count);
@@ -241,12 +241,12 @@ field_t *Hist_Next( void )
/*
==================
-TTY_Init
+CON_Init
Initialize the console input (tty mode if possible)
==================
*/
-void TTY_Init( void )
+void CON_Init( void )
{
struct termios tc;
@@ -295,10 +295,10 @@ void TTY_Init( void )
/*
==================
-TTY_ConsoleInput
+CON_ConsoleInput
==================
*/
-char *TTY_ConsoleInput( void )
+char *CON_ConsoleInput( void )
{
// we use this when sending back commands
static char text[256];
@@ -320,7 +320,7 @@ char *TTY_ConsoleInput( void )
{
TTY_con.cursor--;
TTY_con.buffer[TTY_con.cursor] = '\0';
- TTY_Back();
+ CON_Back();
}
return NULL;
}
@@ -340,9 +340,9 @@ char *TTY_ConsoleInput( void )
}
if (key == '\t')
{
- TTY_Hide();
+ CON_Hide();
Field_AutoComplete( &TTY_con );
- TTY_Show();
+ CON_Show();
return NULL;
}
avail = read(0, &key, 1);
@@ -360,16 +360,16 @@ char *TTY_ConsoleInput( void )
history = Hist_Prev();
if (history)
{
- TTY_Hide();
+ CON_Hide();
TTY_con = *history;
- TTY_Show();
+ CON_Show();
}
- TTY_FlushIn();
+ CON_FlushIn();
return NULL;
break;
case 'B':
history = Hist_Next();
- TTY_Hide();
+ CON_Hide();
if (history)
{
TTY_con = *history;
@@ -377,8 +377,8 @@ char *TTY_ConsoleInput( void )
{
Field_Clear(&TTY_con);
}
- TTY_Show();
- TTY_FlushIn();
+ CON_Show();
+ CON_FlushIn();
return NULL;
break;
case 'C':
@@ -390,7 +390,7 @@ char *TTY_ConsoleInput( void )
}
}
Com_DPrintf("droping ISCTL sequence: %d, TTY_erase: %d\n", key, TTY_erase);
- TTY_FlushIn();
+ CON_FlushIn();
return NULL;
}
// push regular character
diff --git a/code/sys/con_win32.c b/code/sys/con_win32.c
new file mode 100644
index 0000000..8e5718c
--- /dev/null
+++ b/code/sys/con_win32.c
@@ -0,0 +1,70 @@
+/*
+===========================================================================
+Copyright (C) 1999-2005 Id Software, Inc.
+
+This file is part of Quake III Arena source code.
+
+Quake III Arena source code is free software; you can redistribute it
+and/or modify it under the terms of the GNU General Public License as
+published by the Free Software Foundation; either version 2 of the License,
+or (at your option) any later version.
+
+Quake III Arena source code 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 Quake III Arena source code; if not, write to the Free Software
+Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+===========================================================================
+*/
+
+#include "../qcommon/q_shared.h"
+#include "../qcommon/qcommon.h"
+
+/*
+==================
+CON_Hide
+==================
+*/
+void CON_Hide( void )
+{
+}
+
+/*
+==================
+CON_Show
+==================
+*/
+void CON_Show( void )
+{
+}
+
+/*
+==================
+CON_Shutdown
+==================
+*/
+void CON_Shutdown( void )
+{
+}
+
+/*
+==================
+CON_Init
+==================
+*/
+void CON_Init( void )
+{
+}
+
+/*
+==================
+CON_ConsoleInput
+==================
+*/
+char *CON_ConsoleInput( void )
+{
+ return NULL;
+}
diff --git a/code/sys/sys_loadlib.h b/code/sys/sys_loadlib.h
index 29b21c7..a7e854c 100644
--- a/code/sys/sys_loadlib.h
+++ b/code/sys/sys_loadlib.h
@@ -21,11 +21,19 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifdef DEDICATED
+# ifdef _WIN32
+# include <windows.h>
+# define Sys_LoadLibrary(f) (void*)LoadLibrary(f)
+# define Sys_UnloadLibrary(h) FreeLibrary((HMODULE)h)
+# define Sys_LoadFunction(h,fn) (void*)GetProcAddress((HMODULE)h,fn)
+# define Sys_LibraryError() "unknown"
+# else
# include <dlfcn.h>
-# define Sys_LoadLibrary(f) dlopen(f,RTLD_NOW)
-# define Sys_UnloadLibrary(h) dlclose(h)
-# define Sys_LoadFunction(h,fn) dlsym(h,fn)
-# define Sys_LibraryError() dlerror()
+# define Sys_LoadLibrary(f) dlopen(f,RTLD_NOW)
+# define Sys_UnloadLibrary(h) dlclose(h)
+# define Sys_LoadFunction(h,fn) dlsym(h,fn)
+# define Sys_LibraryError() dlerror()
+#endif
#else
# include "SDL.h"
# include "SDL_loadso.h"
diff --git a/code/sys/sys_local.h b/code/sys/sys_local.h
index 2ccac5c..c9a9a94 100644
--- a/code/sys/sys_local.h
+++ b/code/sys/sys_local.h
@@ -28,12 +28,12 @@ void IN_Init (void);
void IN_Frame (void);
void IN_Shutdown (void);
-// TTY console
-void TTY_Hide( void );
-void TTY_Show( void );
-void TTY_Shutdown( void );
-void TTY_Init( void );
-char *TTY_ConsoleInput(void);
+// Console
+void CON_Hide( void );
+void CON_Show( void );
+void CON_Shutdown( void );
+void CON_Init( void );
+char *CON_ConsoleInput(void);
#ifdef MACOS_X
char *Sys_StripAppBundle( char *pwd );
diff --git a/code/sys/sys_main.c b/code/sys/sys_main.c
index c73c2e4..7ecbd2e 100644
--- a/code/sys/sys_main.c
+++ b/code/sys/sys_main.c
@@ -113,7 +113,7 @@ Start the console input subsystem
void Sys_ConsoleInputInit( void )
{
#ifdef DEDICATED
- TTY_Init( );
+ CON_Init( );
#endif
}
@@ -127,7 +127,7 @@ Shutdown the console input subsystem
void Sys_ConsoleInputShutdown( void )
{
#ifdef DEDICATED
- TTY_Shutdown( );
+ CON_Shutdown( );
#endif
}
@@ -141,7 +141,7 @@ Handle new console input
char *Sys_ConsoleInput(void)
{
#ifdef DEDICATED
- return TTY_ConsoleInput( );
+ return CON_ConsoleInput( );
#endif
return NULL;
@@ -224,7 +224,7 @@ static struct Q3ToAnsiColorTable_s
{
char Q3color;
char *ANSIcolor;
-} TTY_colorTable[ ] =
+} CON_colorTable[ ] =
{
{ COLOR_BLACK, "30" },
{ COLOR_RED, "31" },
@@ -236,8 +236,8 @@ static struct Q3ToAnsiColorTable_s
{ COLOR_WHITE, "0" }
};
-static int TTY_colorTableSize =
- sizeof( TTY_colorTable ) / sizeof( TTY_colorTable[ 0 ] );
+static int CON_colorTableSize =
+ sizeof( CON_colorTable ) / sizeof( CON_colorTable[ 0 ] );
/*
=================
@@ -276,11 +276,11 @@ static void Sys_ANSIColorify( const char *msg, char *buffer, int bufferSize )
if( i < msgLength )
{
escapeCode = NULL;
- for( j = 0; j < TTY_colorTableSize; j++ )
+ for( j = 0; j < CON_colorTableSize; j++ )
{
- if( msg[ i ] == TTY_colorTable[ j ].Q3color )
+ if( msg[ i ] == CON_colorTable[ j ].Q3color )
{
- escapeCode = TTY_colorTable[ j ].ANSIcolor;
+ escapeCode = CON_colorTable[ j ].ANSIcolor;
break;
}
}
@@ -310,7 +310,7 @@ Sys_Print
void Sys_Print( const char *msg )
{
#ifdef DEDICATED
- TTY_Hide();
+ CON_Hide();
#endif
if( com_ansiColor && com_ansiColor->integer )
@@ -323,7 +323,7 @@ void Sys_Print( const char *msg )
fputs(msg, stderr);
#ifdef DEDICATED
- TTY_Show();
+ CON_Show();
#endif
}
@@ -338,7 +338,7 @@ void Sys_Error( const char *error, ... )
char string[1024];
#ifdef DEDICATED
- TTY_Hide();
+ CON_Hide();
#endif
CL_Shutdown ();
@@ -366,13 +366,13 @@ void Sys_Warn( char *warning, ... )
va_end (argptr);
#ifdef DEDICATED
- TTY_Hide();
+ CON_Hide();
#endif
fprintf(stderr, "Warning: %s", string);
#ifdef DEDICATED
- TTY_Show();
+ CON_Show();
#endif
}