blob: 3e47035986c2158d21273716015c8a2223c962e9 (
plain) (
blame)
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
|
#include "Support.h"
#include "Files.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include "SDL.h"
void Microseconds(UnsignedWide *microTickCount)
{
/* NOTE: hi isn't used in BS, so it's not implemented here */
/* TODO: does game need microsecond precision? */
microTickCount->hi = 0;
microTickCount->lo = SDL_GetTicks() * 1000;
}
void GetMouse(Point *p)
{
STUB_FUNCTION;
}
void GetKeys(unsigned long *keys)
{
STUB_FUNCTION;
}
int Button(void)
{
STUB_FUNCTION;
return 0;
}
void InitMouse()
{
STUB_FUNCTION;
}
void MoveMouse(int xcoord, int ycoord, Point *mouseloc)
{
STUB_FUNCTION;
}
void DisposeMouse()
{
STUB_FUNCTION;
}
#ifndef O_BINARY
#define O_BINARY 0
#endif
int Files::OpenFile(Str255 Name)
{
sFile = open((char *)Name, O_RDONLY | O_BINARY);
return sFile;
}
void Files::EndLoad()
{
if (sFile != -1) {
FSClose( sFile );
}
sFile = -1;
}
|