forked from aburch/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimsys_posix.cc
153 lines (124 loc) · 2.07 KB
/
simsys_posix.cc
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
/*
* Copyright (c) 1997 - 2001 Hansjörg Malthaner
*
* This file is part of the Simutrans project under the artistic license.
*/
#ifndef _MSC_VER
#include <unistd.h>
#include <sys/time.h>
#endif
#ifdef _WIN32
// windows.h defines min and max macros which we don't want
#define NOMINMAX 1
#include <windows.h>
#endif
#include "macros.h"
#include "simsys.h"
int dr_os_init(const int*)
{
// prepare for next event
sys_event.type = SIM_NOEVENT;
sys_event.code = 0;
return TRUE;
}
resolution dr_query_screen_resolution()
{
resolution const res = { 0, 0 };
return res;
}
// open the window
int dr_os_open(int, int, int)
{
return TRUE;
}
// shut down SDL
int dr_os_close(void)
{
return TRUE;
}
// reiszes screen
int dr_textur_resize(unsigned short** const textur, int, int)
{
*textur = NULL;
return 1;
}
unsigned short *dr_textur_init()
{
return NULL;
}
unsigned int get_system_color(unsigned int, unsigned int, unsigned int)
{
return 1;
}
void dr_setRGB8multi(int, int, unsigned char*)
{
}
void dr_prepare_flush()
{
}
void dr_flush(void)
{
}
void dr_textur(int, int, int, int)
{
}
void move_pointer(int, int)
{
}
void set_pointer(int)
{
}
int dr_screenshot(const char *)
{
return -1;
}
static inline unsigned int ModifierKeys(void)
{
return 0;
}
void GetEvents(void)
{
}
void GetEventsNoWait(void)
{
}
void show_pointer(int)
{
}
void ex_ord_update_mx_my()
{
}
static timeval first;
unsigned long dr_time(void)
{
timeval second;
gettimeofday(&second,NULL);
if (first.tv_usec > second.tv_usec) {
// since those are often unsigned
second.tv_usec += 1000000;
second.tv_sec--;
}
return (unsigned long)(second.tv_sec - first.tv_sec)*1000ul + (unsigned long)(unsigned long)(second.tv_usec - first.tv_usec)/1000ul;
}
void dr_sleep(uint32 msec)
{
/*
// this would be 100% POSIX but is usually not very accurate ...
if( msec>0 ) {
struct timeval tv;
tv.sec = 0;
tv.usec = msec*1000;
select(0, 0, 0, 0, &tv);
}
*/
#ifdef _WIN32
Sleep( msec );
#else
sleep( msec );
#endif
}
int main(int argc, char **argv)
{
gettimeofday(&first,NULL);
return sysmain(argc, argv);
}