forked from aburch/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimsys_posix.cc
204 lines (171 loc) · 3.11 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/*
* Copyright (c) 1997 - 2001 Hansjörg Malthaner
*
* This file is part of the Simutrans project under the artistic licence.
*/
#include <stdio.h>
#include <dirent.h>
#include <stddef.h>
#include <string.h>
#include <stdlib.h>
#include <math.h>
#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>
#else
# include <limits.h>
#ifndef __HAIKU__
#include <sys/errno.h>
#else
#include <posix/errno.h>
#endif
#endif
#undef min
#undef max
#include "macros.h"
#include "simmain.h"
#include "simsys.h"
#include <time.h>
struct sys_event sys_event;
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
}
bool dr_fatal_notify(const char* msg, int choices)
{
fputs(msg, stderr);
return choices;
}
int main(int argc, char **argv)
{
#ifdef _WIN32
char pathname[1024];
// prepare commandline
GetModuleFileNameA( GetModuleHandle(NULL), pathname, 1024 );
argv[0] = pathname;
#else
#ifndef __BEOS__
#if defined __GLIBC__
/* glibc has a non-standard extension */
char* buffer2 = NULL;
#else
char buffer2[PATH_MAX];
#endif
char buffer[PATH_MAX];
int length = readlink("/proc/self/exe", buffer, lengthof(buffer) - 1);
if (length != -1) {
buffer[length] = '\0'; /* readlink() does not NUL-terminate */
argv[0] = buffer;
}
// no process file system => need to parse argv[0]
/* should work on most unix or gnu systems */
argv[0] = realpath(argv[0], buffer2);
#endif
#endif
gettimeofday(&first,NULL);
return simu_main(argc, argv);
}