jedi-outcast/code/ui/ui_syscalls.cpp

174 lines
3.8 KiB
C++
Raw Normal View History

2013-04-22 05:25:59 +00:00
// Copyright (C) 1999-2000 Id Software, Inc.
//
// leave this at the top of all UI_xxxx files for PCH reasons...
//
#include "../server/exe_headers.h"
#include "ui_local.h"
#ifdef _IMMERSION
#include "../ff/ff.h"
#endif // _IMMERSION
// this file is only included when building a dll
// syscalls.asm is included instead when building a qvm
2013-04-23 00:25:52 +00:00
intptr_t (*qsyscall)( intptr_t arg, ... ) = (intptr_t (*)( intptr_t, ...))-1;
2013-04-22 05:25:59 +00:00
extern "C" {
2013-04-23 00:25:52 +00:00
void dllEntry( intptr_t (*syscallptr)( intptr_t arg,... ) ) {
qsyscall = syscallptr;
2013-04-22 05:25:59 +00:00
// CG_PreInit();
}
} // extern "C"
2013-04-22 05:25:59 +00:00
2013-04-23 00:25:52 +00:00
intptr_t CL_UISystemCalls( intptr_t *args );
2013-04-22 05:25:59 +00:00
int FloatAsInt( float f );
float trap_Cvar_VariableValue( const char *var_name )
{
2013-04-23 00:25:52 +00:00
floatint_t fi;
// fi.i = qsyscall( UI_CVAR_VARIABLEVALUE, var_name );
fi.i = FloatAsInt( Cvar_VariableValue(var_name) );
return fi.f;
2013-04-22 05:25:59 +00:00
}
void trap_R_ClearScene( void )
{
ui.R_ClearScene();
}
void trap_R_AddRefEntityToScene( const refEntity_t *re )
{
ui.R_AddRefEntityToScene(re);
}
void trap_R_RenderScene( const refdef_t *fd )
{
// qsyscall( UI_R_RENDERSCENE, fd );
2013-04-22 05:25:59 +00:00
ui.R_RenderScene(fd);
}
void trap_R_SetColor( const float *rgba )
{
// qsyscall( UI_R_SETCOLOR, rgba );
2013-04-22 05:25:59 +00:00
// re.SetColor( rgba );
ui.R_SetColor(rgba);
}
void trap_R_DrawStretchPic( float x, float y, float w, float h, float s1, float t1, float s2, float t2, qhandle_t hShader )
{
// qsyscall( UI_R_DRAWSTRETCHPIC, PASSFLOAT(x), PASSFLOAT(y), PASSFLOAT(w), PASSFLOAT(h), PASSFLOAT(s1), PASSFLOAT(t1), PASSFLOAT(s2), PASSFLOAT(t2), hShader );
2013-04-22 05:25:59 +00:00
// re.DrawStretchPic( x, y, w, h, s1, t1, s2, t2, hShader );
ui.R_DrawStretchPic( x, y, w, h, s1, t1, s2, t2, hShader );
}
void trap_R_ModelBounds( clipHandle_t model, vec3_t mins, vec3_t maxs )
{
// qsyscall( UI_R_MODELBOUNDS, model, mins, maxs );
2013-04-22 05:25:59 +00:00
ui.R_ModelBounds(model, mins, maxs);
}
void trap_S_StartLocalSound( sfxHandle_t sfx, int channelNum )
{
// qsyscall( UI_S_STARTLOCALSOUND, sfx, channelNum );
2013-04-22 05:25:59 +00:00
S_StartLocalSound( sfx, channelNum );
}
sfxHandle_t trap_S_RegisterSound( const char *sample, qboolean compressed )
{
return S_RegisterSound(sample);
}
#ifdef _IMMERSION
void trap_FF_Start( ffHandle_t ff )
{
FF_AddForce( ff );
}
ffHandle_t trap_FF_Register( const char *name, int channel )
{
return FF_Register( name, channel, qtrue );
}
#endif // _IMMERSION
void trap_Key_SetBinding( int keynum, const char *binding )
{
Key_SetBinding( keynum, binding);
}
qboolean trap_Key_GetOverstrikeMode( void )
{
return Key_GetOverstrikeMode();
}
void trap_Key_SetOverstrikeMode( qboolean state )
{
Key_SetOverstrikeMode( state );
}
void trap_Key_ClearStates( void )
{
Key_ClearStates();
}
int Key_GetCatcher( void );
int trap_Key_GetCatcher( void )
{
return Key_GetCatcher();
}
void Key_SetCatcher( int catcher );
void trap_Key_SetCatcher( int catcher )
{
Key_SetCatcher( catcher );
}
/*
void trap_GetClipboardData( char *buf, int bufsize ) {
qsyscall( UI_GETCLIPBOARDDATA, buf, bufsize );
2013-04-22 05:25:59 +00:00
}
void trap_GetClientState( uiClientState_t *state ) {
qsyscall( UI_GETCLIENTSTATE, state );
2013-04-22 05:25:59 +00:00
}
*/
void CL_GetGlconfig( glconfig_t *glconfig );
void trap_GetGlconfig( glconfig_t *glconfig )
{
// qsyscall( UI_GETGLCONFIG, glconfig );
2013-04-22 05:25:59 +00:00
CL_GetGlconfig( glconfig );
}
// this returns a handle. arg0 is the name in the format "idlogo.roq", set arg1 to NULL, alteredstates to qfalse (do not alter gamestate)
int trap_CIN_PlayCinematic( const char *arg0, int xpos, int ypos, int width, int height, int bits, const char *psAudioFile) {
return qsyscall(UI_CIN_PLAYCINEMATIC, arg0, xpos, ypos, width, height, bits, psAudioFile);
2013-04-22 05:25:59 +00:00
}
// stops playing the cinematic and ends it. should always return FMV_EOF
// cinematics must be stopped in reverse order of when they are started
int trap_CIN_StopCinematic(int handle)
{
return qsyscall(UI_CIN_STOPCINEMATIC, handle);
2013-04-22 05:25:59 +00:00
}
int PASSFLOAT( float x )
{
2013-04-23 00:25:52 +00:00
floatint_t fi;
fi.f = x;
return fi.i;
2013-04-22 05:25:59 +00:00
}