-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathi_system.c
More file actions
167 lines (132 loc) · 2.55 KB
/
i_system.c
File metadata and controls
167 lines (132 loc) · 2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/* i_system.c */
#include "h2stdinc.h"
#include "doomdef.h"
#include "i_system.h"
#include "i_video.h"
#include "i_sound.h"
#include "soundst.h"
int mb_used = 32; /* 32MB heap */
void I_Init (void)
{
S_Init();
I_MouseEnable(1);
}
byte* I_ZoneBase (int *size)
{
*size = mb_used*1024*1024;
return (byte *) malloc(*size);
}
/* returns time in 1/70th second tics */
int I_GetTime (void)
{
return (int)((nsec()*TICRATE)/1000000000);
}
static ticcmd_t emptycmd;
ticcmd_t* I_BaseTiccmd (void)
{
return &emptycmd;
}
extern void G_CheckDemoStatus(void);
void I_Quit (void)
{
D_QuitNetGame ();
I_ShutdownSound();
M_SaveDefaults ();
I_ShutdownGraphics();
postnote(PNGROUP, getpid(), "I_Quit");
exits(nil);
}
byte* I_AllocLow (int length)
{
byte *mem;
mem = (byte *)malloc (length);
memset (mem,0,length);
return mem;
}
void I_Tactile(int on, int off, int total)
{
USED(on, off, total);
}
//
// I_Error
//
extern boolean demorecording;
void I_Error (char *error, ...)
{
va_list argptr;
// Message first.
va_start (argptr,error);
fprintf (stderr, "Error: ");
vfprintf (stderr,error,argptr);
fprintf (stderr, "\n");
va_end (argptr);
fflush( stderr );
// Shutdown. Here might be other errors.
if (demorecording)
G_CheckDemoStatus();
D_QuitNetGame ();
I_ShutdownGraphics();
exits("I_Error");
}
int I_FileExists (char *filepath)
{
return access(filepath, AEXIST) == 0;
}
int I_Open (char *filepath)
{
return open(filepath, OREAD);
}
void I_Close (int handle)
{
close (handle);
}
int I_Seek (int handle, int n)
{
return seek(handle, n, 0);
}
int I_Read (int handle, void *buf, int n)
{
return read(handle, buf, n);
}
void I_CheckExternDriver (void)
{
}
static char* strip(char *s)
{
char *p;
if(p = strstr(s, ".wad"))
*p = '\0';
if(p = strrchr(s, '/'))
return p;
return s;
}
static char bpd[512];
static char wd[512];
void I_SetupPath(char **wads)
{
char **s;
char *tmp;
char *cfg, *data;
char buf[512];
data = cfg = nil;
for(s = wads; *s; s++){
if(!strstr(*s, ".wad"))
continue;
if(data == nil)
data = *s;
cfg = *s;
}
strcpy(buf, data);
snprint(wd, sizeof wd, "/sys/games/lib/%s/", strip(buf));
strcpy(buf, cfg);
tmp = getenv("home");
snprint(bpd, sizeof bpd, "%s/lib/%s/", tmp, strip(buf));
free(tmp);
// would suck if someone only found out after 2 hours
// we could default back to cwd, but since this is our
// write location, I'd rather not take chances.
if(access(bpd, AEXIST) != 0)
sysfatal("user directory %s not available %r", bpd);
basePath = bpd;
waddir = wd;
}