mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-18 10:31:42 +00:00
bb20cfd6be
(unfinished, but basics work)
180 lines
2.1 KiB
C
180 lines
2.1 KiB
C
#include "../doomdef.h"
|
|
#include "../i_system.h"
|
|
|
|
UINT8 graphics_started = 0;
|
|
|
|
UINT8 keyboard_started = 0;
|
|
|
|
UINT32 I_GetFreeMem(UINT32 *total)
|
|
{
|
|
*total = 0;
|
|
return 0;
|
|
}
|
|
|
|
tic_t I_GetTime(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void I_Sleep(void){}
|
|
|
|
void I_GetEvent(void){}
|
|
|
|
void I_OsPolling(void){}
|
|
|
|
ticcmd_t *I_BaseTiccmd(void)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
ticcmd_t *I_BaseTiccmd2(void)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
void I_Quit(void)
|
|
{
|
|
exit(0);
|
|
}
|
|
|
|
void I_Error(const char *error, ...)
|
|
{
|
|
(void)error;
|
|
exit(-1);
|
|
}
|
|
|
|
void I_Tactile(FFType Type, const JoyFF_t *Effect)
|
|
{
|
|
(void)Type;
|
|
(void)Effect;
|
|
}
|
|
|
|
void I_Tactile2(FFType Type, const JoyFF_t *Effect)
|
|
{
|
|
(void)Type;
|
|
(void)Effect;
|
|
}
|
|
|
|
void I_JoyScale(void){}
|
|
|
|
void I_JoyScale2(void){}
|
|
|
|
void I_InitJoystick(void){}
|
|
|
|
void I_InitJoystick2(void){}
|
|
|
|
INT32 I_NumJoys(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
const char *I_GetJoyName(INT32 joyindex)
|
|
{
|
|
(void)joyindex;
|
|
return NULL;
|
|
}
|
|
|
|
#ifndef NOMUMBLE
|
|
void I_UpdateMumble(const mobj_t *mobj, const listener_t listener)
|
|
{
|
|
(void)mobj;
|
|
(void)listener;
|
|
}
|
|
#endif
|
|
|
|
void I_OutputMsg(const char *error, ...)
|
|
{
|
|
(void)error;
|
|
}
|
|
|
|
void I_StartupMouse(void){}
|
|
|
|
void I_StartupMouse2(void){}
|
|
|
|
void I_StartupKeyboard(void){}
|
|
|
|
INT32 I_GetKey(void)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void I_StartupTimer(void){}
|
|
|
|
void I_AddExitFunc(void (*func)())
|
|
{
|
|
(void)func;
|
|
}
|
|
|
|
void I_RemoveExitFunc(void (*func)())
|
|
{
|
|
(void)func;
|
|
}
|
|
|
|
INT32 I_StartupSystem(void)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
void I_ShutdownSystem(void){}
|
|
|
|
void I_GetDiskFreeSpace(INT64* freespace)
|
|
{
|
|
*freespace = 0;
|
|
}
|
|
|
|
char *I_GetUserName(void)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
INT32 I_mkdir(const char *dirname, INT32 unixright)
|
|
{
|
|
(void)dirname;
|
|
(void)unixright;
|
|
return -1;
|
|
}
|
|
|
|
const CPUInfoFlags *I_CPUInfo(void)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
const char *I_LocateWad(void)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
void I_GetJoystickEvents(void){}
|
|
|
|
void I_GetJoystick2Events(void){}
|
|
|
|
void I_GetMouseEvents(void){}
|
|
|
|
char *I_GetEnv(const char *name)
|
|
{
|
|
(void)name;
|
|
return NULL;
|
|
}
|
|
|
|
INT32 I_PutEnv(char *variable)
|
|
{
|
|
(void)variable;
|
|
return -1;
|
|
}
|
|
|
|
INT32 I_ClipboardCopy(const char *data, size_t size)
|
|
{
|
|
(void)data;
|
|
(void)size;
|
|
return -1;
|
|
}
|
|
|
|
char *I_ClipboardPaste(void)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
void I_RegisterSysCommands(void) {}
|
|
|
|
#include "../sdl/dosstr.c"
|
|
|