forked from aburch/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimsys_s.cc
610 lines (513 loc) · 15.2 KB
/
simsys_s.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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
/*
* Copyright (c) 1997 - 2001 Hansjörg Malthaner
*
* This file is part of the Simutrans project under the artistic license.
*/
#include <SDL.h>
#ifdef _WIN32
// windows.h defines min and max macros which we don't want
#define NOMINMAX 1
#include <windows.h>
#endif
#include <stdio.h>
#include "macros.h"
#include "simsys_w32_png.h"
#include "simversion.h"
#include "simsys.h"
#include "simevent.h"
#include "simgraph.h"
#include "simdebug.h"
// try to use hardware double buffering ...
// this is equivalent on 16 bpp and much slower on 32 bpp
//#define USE_HW
static Uint8 hourglass_cursor[] = {
0x3F, 0xFE, // *************
0x30, 0x06, // ** **
0x3F, 0xFE, // *************
0x10, 0x04, // * *
0x10, 0x04, // * *
0x12, 0xA4, // * * * * *
0x11, 0x44, // * * * * *
0x18, 0x8C, // ** * **
0x0C, 0x18, // ** **
0x06, 0xB0, // ** * **
0x03, 0x60, // ** **
0x03, 0x60, // **H**
0x06, 0x30, // ** * **
0x0C, 0x98, // ** **
0x18, 0x0C, // ** * **
0x10, 0x84, // * * *
0x11, 0x44, // * * * *
0x12, 0xA4, // * * * * *
0x15, 0x54, // * * * * * *
0x3F, 0xFE, // *************
0x30, 0x06, // ** **
0x3F, 0xFE // *************
};
static Uint8 hourglass_cursor_mask[] = {
0x3F, 0xFE, // *************
0x3F, 0xFE, // *************
0x3F, 0xFE, // *************
0x1F, 0xFC, // ***********
0x1F, 0xFC, // ***********
0x1F, 0xFC, // ***********
0x1F, 0xFC, // ***********
0x1F, 0xFC, // ***********
0x0F, 0xF8, // *********
0x07, 0xF0, // *******
0x03, 0xE0, // *****
0x03, 0xE0, // **H**
0x07, 0xF0, // *******
0x0F, 0xF8, // *********
0x1F, 0xFC, // ***********
0x1F, 0xFC, // ***********
0x1F, 0xFC, // ***********
0x1F, 0xFC, // ***********
0x1F, 0xFC, // ***********
0x3F, 0xFE, // *************
0x3F, 0xFE, // *************
0x3F, 0xFE // *************
};
static SDL_Surface *screen;
static int width = 16;
static int height = 16;
// switch off is a little faster (<3%)
static int sync_blit = 0;
static SDL_Cursor* arrow;
static SDL_Cursor* hourglass;
/*
* Hier sind die Basisfunktionen zur Initialisierung der
* Schnittstelle untergebracht
* -> init,open,close
*/
int dr_os_init(const int* parameter)
{
if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE) != 0) {
fprintf(stderr, "Couldn't initialize SDL: %s\n", SDL_GetError());
return FALSE;
}
sync_blit = parameter[1];
// prepare for next event
sys_event.type = SIM_NOEVENT;
sys_event.code = 0;
atexit(SDL_Quit); // clean up on exit
return TRUE;
}
resolution dr_query_screen_resolution()
{
resolution res;
#if SDL_VERSION_ATLEAST(1, 2, 10)
SDL_VideoInfo const& vi = *SDL_GetVideoInfo();
res.w = vi.current_w;
res.h = vi.current_h;
#elif defined _WIN32
res.w = GetSystemMetrics(SM_CXSCREEN);
res.h = GetSystemMetrics(SM_CYSCREEN);
#else
SDL_Rect** const modi = SDL_ListModes(0, SDL_FULLSCREEN);
if (modi && modi != (SDL_Rect**)-1) {
// return first
res.w = modi[0]->w;
res.h = modi[0]->h;
} else {
res.w = 704;
res.h = 560;
}
#endif
return res;
}
// open the window
int dr_os_open(int w, int const h, int const fullscreen)
{
Uint32 flags = sync_blit ? 0 : SDL_ASYNCBLIT;
// some cards need those alignments
// especially 64bit want a border of 8bytes
w = (w + 15) & 0x7FF0;
if( w<=0 ) {
w = 16;
}
width = w;
height = h;
flags |= (fullscreen ? SDL_FULLSCREEN : SDL_RESIZABLE);
#ifdef USE_HW
{
const SDL_VideoInfo *vi=SDL_GetVideoInfo();
printf( "hw_available=%i, video_mem=%i, blit_sw=%i\n", vi->hw_available, vi->video_mem, vi->blit_sw );
printf( "bpp=%i, bytes=%i\n", vi->vfmt->BitsPerPixel, vi->vfmt->BytesPerPixel );
}
flags |= SDL_HWSURFACE | SDL_DOUBLEBUF; // bltcopy in graphic memory should be faster ...
#endif
// open the window now
screen = SDL_SetVideoMode(w, h, COLOUR_DEPTH, flags);
if (screen == NULL) {
fprintf(stderr, "Couldn't open the window: %s\n", SDL_GetError());
return 0;
}
else {
fprintf(stderr, "Screen Flags: requested=%x, actual=%x\n", flags, screen->flags);
}
DBG_MESSAGE("dr_os_open(SDL)", "SDL realized screen size width=%d, height=%d (requested w=%d, h=%d)", screen->w, screen->h, w, h);
SDL_EnableUNICODE(TRUE);
SDL_EnableKeyRepeat(SDL_DEFAULT_REPEAT_DELAY, SDL_DEFAULT_REPEAT_INTERVAL);
// set the caption for the window
SDL_WM_SetCaption(SIM_TITLE, 0);
SDL_ShowCursor(0);
arrow = SDL_GetCursor();
hourglass = SDL_CreateCursor(hourglass_cursor, hourglass_cursor_mask, 16, 22, 8, 11);
display_set_actual_width( w );
return w;
}
// shut down SDL
int dr_os_close(void)
{
SDL_FreeCursor(hourglass);
// Hajo: SDL doc says, screen is free'd by SDL_Quit and should not be
// free'd by the user
// SDL_FreeSurface(screen);
return TRUE;
}
// resizes screen
int dr_textur_resize(unsigned short** const textur, int w, int const h)
{
#ifdef USE_HW
SDL_UnlockSurface(screen);
#endif
int flags = screen->flags;
display_set_actual_width( w );
// some cards need those alignments
// especially 64bit want a border of 8bytes
w = (w + 15) & 0x7FF0;
if( w<=0 ) {
w = 16;
}
if( w!=screen->w || h!=screen->h ) {
width = w;
height = h;
screen = SDL_SetVideoMode(w, h, COLOUR_DEPTH, flags);
printf("textur_resize()::screen=%p\n", screen);
if (screen) {
DBG_MESSAGE("dr_textur_resize(SDL)", "SDL realized screen size width=%d, height=%d (requested w=%d, h=%d)", screen->w, screen->h, w, h);
}
else {
if (dbg) {
dbg->warning("dr_textur_resize(SDL)", "screen is NULL. Good luck!");
}
}
fflush(NULL);
}
*textur = (unsigned short*)screen->pixels;
return w;
}
unsigned short *dr_textur_init()
{
#ifdef USE_HW
SDL_LockSurface(screen);
#endif
return (unsigned short*)screen->pixels;
}
/**
* Transform a 24 bit RGB color into the system format.
* @return converted color value
* @author Hj. Malthaner
*/
unsigned int get_system_color(unsigned int r, unsigned int g, unsigned int b)
{
return SDL_MapRGB(screen->format, (Uint8)r, (Uint8)g, (Uint8)b);
}
void dr_setRGB8multi(int first, int count, unsigned char* data)
{
ALLOCA(SDL_Color, rgb, count);
int n;
for (n = 0; n < count; n++) {
rgb[n].r = *data++;
rgb[n].g = *data++;
rgb[n].b = *data++;
}
SDL_SetColors(screen, rgb, first, count);
}
void dr_prepare_flush()
{
return;
}
void dr_flush(void)
{
display_flush_buffer();
#ifdef USE_HW
SDL_UnlockSurface(screen);
SDL_Flip(screen);
SDL_LockSurface(screen);
#endif
}
void dr_textur(int xp, int yp, int w, int h)
{
#ifndef USE_HW
// make sure the given rectangle is completely on screen
if (xp + w > screen->w) {
w = screen->w - xp;
}
if (yp + h > screen->h) {
h = screen->h - yp;
}
#ifdef DEBUG
// make sure both are positive numbers
if( w*h>0 )
#endif
{
SDL_UpdateRect(screen, xp, yp, w, h);
}
#endif
}
// move cursor to the specified location
void move_pointer(int x, int y)
{
SDL_WarpMouse((Uint16)x, (Uint16)y);
}
// set the mouse cursor (pointer/load)
void set_pointer(int loading)
{
SDL_SetCursor(loading ? hourglass : arrow);
}
/**
* Some wrappers can save screenshots.
* @return 1 on success, 0 if not implemented for a particular wrapper and -1
* in case of error.
* @author Hj. Malthaner
*/
int dr_screenshot(const char *filename)
{
#ifdef WIN32
if(dr_screenshot_png(filename, display_get_width(), height, width, ( unsigned short *)(screen->pixels), screen->format->BitsPerPixel)) {
return 1;
}
#endif
return SDL_SaveBMP(SDL_GetVideoSurface(), filename) == 0 ? 1 : -1;
}
/*
* Hier sind die Funktionen zur Messageverarbeitung
*/
static inline unsigned int ModifierKeys(void)
{
SDLMod mod = SDL_GetModState();
return
(mod & KMOD_SHIFT ? 1 : 0) |
(mod & KMOD_CTRL ? 2 : 0);
}
static int conv_mouse_buttons(Uint8 const state)
{
return
(state & SDL_BUTTON_LMASK ? MOUSE_LEFTBUTTON : 0) |
(state & SDL_BUTTON_MMASK ? MOUSE_MIDBUTTON : 0) |
(state & SDL_BUTTON_RMASK ? MOUSE_RIGHTBUTTON : 0);
}
static void internal_GetEvents(int wait)
{
SDL_Event event;
event.type = 1;
if (wait) {
int n;
do {
SDL_WaitEvent(&event);
n = SDL_PollEvent(NULL);
} while (n != 0 && event.type == SDL_MOUSEMOTION);
}
else {
int n;
int got_one = FALSE;
do {
n = SDL_PollEvent(&event);
if (n != 0) {
got_one = TRUE;
if (event.type == SDL_MOUSEMOTION) {
sys_event.type = SIM_MOUSE_MOVE;
sys_event.code = SIM_MOUSE_MOVED;
sys_event.mx = event.motion.x;
sys_event.my = event.motion.y;
sys_event.mb = conv_mouse_buttons(event.motion.state);
}
}
} while (n != 0 && event.type == SDL_MOUSEMOTION);
if (!got_one) return;
}
switch (event.type) {
case SDL_VIDEORESIZE:
sys_event.type = SIM_SYSTEM;
sys_event.code = SIM_SYSTEM_RESIZE;
sys_event.mx = event.resize.w;
sys_event.my = event.resize.h;
printf("expose: x=%i, y=%i\n", sys_event.mx, sys_event.my);
break;
case SDL_VIDEOEXPOSE:
// will be ignored ...
sys_event.type = SIM_SYSTEM;
sys_event.code = SIM_SYSTEM_UPDATE;
break;
case SDL_MOUSEBUTTONDOWN:
sys_event.type = SIM_MOUSE_BUTTONS;
sys_event.key_mod = ModifierKeys();
sys_event.mx = event.button.x;
sys_event.my = event.button.y;
sys_event.mb = conv_mouse_buttons(SDL_GetMouseState(0, 0));
switch (event.button.button) {
case 1: sys_event.code = SIM_MOUSE_LEFTBUTTON; break;
case 2: sys_event.code = SIM_MOUSE_MIDBUTTON; break;
case 3: sys_event.code = SIM_MOUSE_RIGHTBUTTON; break;
case 4: sys_event.code = SIM_MOUSE_WHEELUP; break;
case 5: sys_event.code = SIM_MOUSE_WHEELDOWN; break;
}
break;
case SDL_MOUSEBUTTONUP:
sys_event.type = SIM_MOUSE_BUTTONS;
sys_event.key_mod = ModifierKeys();
sys_event.mx = event.button.x;
sys_event.my = event.button.y;
sys_event.mb = conv_mouse_buttons(SDL_GetMouseState(0, 0));
switch (event.button.button) {
case 1: sys_event.code = SIM_MOUSE_LEFTUP; break;
case 2: sys_event.code = SIM_MOUSE_MIDUP; break;
case 3: sys_event.code = SIM_MOUSE_RIGHTUP; break;
}
break;
case SDL_KEYDOWN:
{
unsigned long code;
bool const numlock = SDL_GetModState() & KMOD_NUM;
SDLKey const sym = event.key.keysym.sym;
switch (sym) {
case SDLK_DELETE: code = 127; break;
case SDLK_DOWN: code = SIM_KEY_DOWN; break;
case SDLK_END: code = SIM_KEY_END; break;
case SDLK_HOME: code = SIM_KEY_HOME; break;
case SDLK_F1: code = SIM_KEY_F1; break;
case SDLK_F2: code = SIM_KEY_F2; break;
case SDLK_F3: code = SIM_KEY_F3; break;
case SDLK_F4: code = SIM_KEY_F4; break;
case SDLK_F5: code = SIM_KEY_F5; break;
case SDLK_F6: code = SIM_KEY_F6; break;
case SDLK_F7: code = SIM_KEY_F7; break;
case SDLK_F8: code = SIM_KEY_F8; break;
case SDLK_F9: code = SIM_KEY_F9; break;
case SDLK_F10: code = SIM_KEY_F10; break;
case SDLK_F11: code = SIM_KEY_F11; break;
case SDLK_F12: code = SIM_KEY_F12; break;
case SDLK_F13: code = SIM_KEY_F13; break;
case SDLK_F14: code = SIM_KEY_F14; break;
case SDLK_F15: code = SIM_KEY_F15; break;
case SDLK_KP0: code = numlock ? '0' : 0; break;
case SDLK_KP1: code = numlock ? '1' : SIM_KEY_END; break;
case SDLK_KP2: code = numlock ? '2' : SIM_KEY_DOWN; break;
case SDLK_KP3: code = numlock ? '3' : '<'; break;
case SDLK_KP4: code = numlock ? '4' : SIM_KEY_LEFT; break;
case SDLK_KP5: code = numlock ? '5' : 0; break;
case SDLK_KP6: code = numlock ? '6' : SIM_KEY_RIGHT; break;
case SDLK_KP7: code = numlock ? '7' : SIM_KEY_HOME; break;
case SDLK_KP8: code = numlock ? '8' : SIM_KEY_UP; break;
case SDLK_KP9: code = numlock ? '9' : '>'; break;
case SDLK_LEFT: code = SIM_KEY_LEFT; break;
case SDLK_PAGEDOWN: code = '<'; break;
case SDLK_PAGEUP: code = '>'; break;
case SDLK_RIGHT: code = SIM_KEY_RIGHT; break;
case SDLK_UP: code = SIM_KEY_UP; break;
case SDLK_PAUSE: code = 16; break;
default:
if (event.key.keysym.unicode != 0) {
code = event.key.keysym.unicode;
if (event.key.keysym.unicode == 22 /* ^V */) {
#if 0 // disabled as internal buffer is used; code is retained for possible future implementation of dr_paste()
// X11 magic ... not tested yet!
SDL_SysWMinfo si;
if (SDL_GetWMInfo(&si) && si.subsystem == SDL_SYSWM_X11) {
// clipboard under X11
XEvent evt;
Atom sseln = XA_CLIPBOARD(si.x11.display);
Atom target = XA_STRING;
unsigned char* sel_buf = 0;
unsigned long sel_len = 0; /* length of sel_buf */
unsigned int context = XCLIB_XCOUT_NONE;
xcout(si.x11.display, si.x11.window, evt, sseln, target, &sel_buf, &sel_len, &context);
/* fallback is needed. set XA_STRING to target and restart the loop. */
if (context != XCLIB_XCOUT_FALLBACK) {
// something in clipboard
SDL_Event new_event;
new_event.type = SDL_KEYDOWN;
new_event.key.keysym.sym = SDLK_UNKNOWN;
for (unsigned char const* chr = sel_buf; sel_len-- >= 0; ++chr) {
new_event.key.keysym.sym = *chr == '\n' ? '\r' : *chr;
SDL_PushEvent(&new_event);
}
free(sel_buf);
}
}
#endif
}
} else if (0 < sym && sym < 127) {
code = event.key.keysym.sym; // try with the ASCII code
} else {
code = 0;
}
}
sys_event.type = SIM_KEYBOARD;
sys_event.code = code;
sys_event.key_mod = ModifierKeys();
break;
}
case SDL_MOUSEMOTION:
sys_event.type = SIM_MOUSE_MOVE;
sys_event.code = SIM_MOUSE_MOVED;
sys_event.mx = event.motion.x;
sys_event.my = event.motion.y;
sys_event.mb = conv_mouse_buttons(event.motion.state);
sys_event.key_mod = ModifierKeys();
break;
case SDL_ACTIVEEVENT:
case SDL_KEYUP:
sys_event.type = SIM_KEYBOARD;
sys_event.code = 0;
break;
case SDL_QUIT:
sys_event.type = SIM_SYSTEM;
sys_event.code = SIM_SYSTEM_QUIT;
break;
default:
sys_event.type = SIM_IGNORE_EVENT;
sys_event.code = 0;
break;
}
}
void GetEvents(void)
{
internal_GetEvents(TRUE);
}
void GetEventsNoWait(void)
{
sys_event.type = SIM_NOEVENT;
sys_event.code = 0;
internal_GetEvents(FALSE);
}
void show_pointer(int yesno)
{
SDL_ShowCursor(yesno != 0);
}
void ex_ord_update_mx_my()
{
SDL_PumpEvents();
}
unsigned long dr_time(void)
{
return SDL_GetTicks();
}
void dr_sleep(uint32 usec)
{
SDL_Delay(usec);
}
#ifdef _WIN32
int CALLBACK WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
#else
int main(int argc, char **argv)
#endif
{
#ifdef _WIN32
int const argc = __argc;
char** const argv = __argv;
#endif
return sysmain(argc, argv);
}