forked from teamhimeh/simutrans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimsys_w8.cc
731 lines (600 loc) · 16.4 KB
/
simsys_w8.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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
/*
* Copyright (c) 1997 - 2001 Hansjörg Malthaner
*
* This file is part of the Simutrans project under the artistic licence.
*/
#ifndef WIN32
#error "Only Windows has GDI!"
#endif
#ifndef _MSC_VER
#include <unistd.h>
#include <sys/time.h>
#endif
#include <stdio.h>
// windows Bibliotheken DirectDraw 5.x
#define UNICODE 1
#include <windows.h>
#include <winreg.h>
#include <wingdi.h>
#include <mmsystem.h>
#include "simgraph.h"
#undef max
#undef min
// needed for wheel
#ifndef WM_MOUSEWHEEL
# define WM_MOUSEWHEEL 0x020A
#endif
#ifndef GET_WHEEL_DELTA_WPARAM
# define GET_WHEEL_DELTA_WPARAM(wparam) ((short)HIWORD(wparam))
#endif
// 16 Bit may be much slower than 15 unfourtunately on some hardware
#define USE_16BIT_DIB
// for redraws in another thread
//#define MULTI_THREAD
#include "simmain.h"
#include "simmem.h"
#include "simversion.h"
#include "simsys.h"
#include "simevent.h"
#include "simdebug.h"
static HWND hwnd;
static bool is_fullscreen = false;
static bool is_not_top = false;
static MSG msg;
static RECT WindowSize = { 0, 0, 0, 0 };
static RECT MaxSize;
static HINSTANCE hInstance;
static BITMAPINFOHEADER *AllDib = NULL;
static unsigned char *AllDibData = NULL;
volatile HDC hdc = NULL;
const wchar_t* const title =
#ifdef _MSC_VER
L"Simutrans " WIDE_VERSION_NUMBER;
#else
L"" SAVEGAME_PREFIX " " VERSION_NUMBER " - " VERSION_DATE;
#endif
#ifdef MULTI_THREAD
HANDLE hFlushThread=0;
#define WAIT_FOR_SCREEN() {while(hdc) Sleep(5);}
#else
// nothing to de done
#define WAIT_FOR_SCREEN()
#endif
/*
* Hier sind die Basisfunktionen zur Initialisierung der
* Schnittstelle untergebracht
* -> init,open,close
*/
int dr_os_init(const int* parameter)
{
// prepare for next event
sys_event.type = SIM_NOEVENT;
sys_event.code = 0;
return TRUE;
}
// query home directory
char *dr_query_homedir()
{
static char buffer[1024];
char b2[1060];
DWORD len=960;
HKEY hHomeDir;
if(RegOpenKeyExA(HKEY_CURRENT_USER,"Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders", 0, KEY_READ, &hHomeDir)==ERROR_SUCCESS) {
RegQueryValueExA(hHomeDir, "Personal", NULL, NULL, (BYTE*)buffer, &len);
strcat(buffer,"\\Simutrans");
CreateDirectoryA( buffer, NULL );
strcat(buffer, "\\");
// create other subdirectories
sprintf(b2, "%ssave", buffer );
CreateDirectoryA( b2, NULL );
sprintf(b2, "%sscreenshot", buffer );
CreateDirectoryA( b2, NULL );
sprintf(b2, "%smaps", buffer );
CreateDirectoryA( b2, NULL );
return buffer;
}
return NULL;
}
/* maximum size possible (if there) */
int dr_query_screen_width()
{
return GetSystemMetrics( SM_CXSCREEN );
}
int dr_query_screen_height()
{
return GetSystemMetrics( SM_CYSCREEN );
}
// open the window
int dr_os_open(int w, int h, int bpp, int fullscreen)
{
MaxSize.right = (w+16)&x7FF0;
MaxSize.bottom = h;
// fake fullscreen
if (fullscreen) {
// try to force display mode and size
DEVMODE settings;
memset(&settings, 0, sizeof(settings));
settings.dmSize = sizeof(settings);
settings.dmFields = DM_BITSPERPEL | DM_PELSWIDTH | DM_PELSHEIGHT;
settings.dmBitsPerPel = 8;
settings.dmPelsWidth = w;
settings.dmPelsHeight = h;
settings.dmDisplayFrequency = 0;
if( ChangeDisplaySettings(&settings, CDS_TEST)!=DISP_CHANGE_SUCCESSFUL ) {
ChangeDisplaySettings( NULL, 0 );
printf( "dr_os_open()::Could not reduce color depth to 16 Bit in fullscreen." );
fullscreen = false;
}
else {
ChangeDisplaySettings(&settings, CDS_FULLSCREEN);
}
is_fullscreen = fullscreen;
}
if( fullscreen ) {
hwnd = CreateWindowEx(
WS_EX_TOPMOST,
L"Simu", title,
WS_POPUP,
0, 0,
w, h,
NULL, NULL, hInstance, NULL
);
} else {
hwnd = CreateWindow(
L"Simu", title,
WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT, CW_USEDEFAULT,
w + GetSystemMetrics(SM_CXFRAME),
h - 1 + 2 * GetSystemMetrics(SM_CYFRAME) + GetSystemMetrics(SM_CYCAPTION),
NULL, NULL, hInstance, NULL
);
}
ShowWindow(hwnd, SW_SHOW);
WindowSize.right = w;
WindowSize.bottom = h;
AllDib = MALLOCE( BITMAPINFOHEADER, RGBQUAD, 256 );
AllDib->biSize = sizeof(BITMAPINFOHEADER);
AllDib->biPlanes = 1;
AllDib->biBitCount = 8;
AllDib->biCompression = BI_RGB;
AllDib->biXPelsPerMeter = 0;
AllDib->biYPelsPerMeter = 0;
AllDib->biSizeImage = 0;
AllDib->biClrUsed =
AllDib->biClrImportant = 224+15;
return TRUE;
}
int dr_os_close(void)
{
if (hwnd != NULL) {
DestroyWindow(hwnd);
}
free(AllDibData);
AllDibData = NULL;
free(AllDib);
AllDib = NULL;
ChangeDisplaySettings(NULL, 0);
return TRUE;
}
// reiszes screen
int dr_textur_resize(unsigned short **textur, int w, int h, int bpp)
{
WAIT_FOR_SCREEN();
if(w>MaxSize.right || h>MaxSize.bottom) {
// since the query routines that return the desktop data do not take into account a change of resolution
free(AllDibData);
AllDibData = NULL;
MaxSize.right = (w+7) & 0xFFF0;
MaxSize.bottom = h;
AllDibData = MALLOCN(unsigned char, MaxSize.right * MaxSize.bottom );
*textur = (unsigned short *)AllDibData;
}
AllDib->biWidth = w;
WindowSize.right = w;
WindowSize.bottom = h;
return TRUE;
}
unsigned short *dr_textur_init()
{
AllDibData = MALLOCN(unsigned char, MaxSize.right * MaxSize.bottom );
// start with black
memset( AllDibData, 0, MaxSize.right * MaxSize.bottom * sizeof(unsigned char) );
return (unsigned short *)AllDibData;
}
/**
* 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)
{
#ifdef USE_16BIT_DIB
return ((r & 0x00F8) << 8) | ((g & 0x00FC) << 3) | (b >> 3);
#else
return ((r & 0x00F8) << 7) | ((g & 0x00F8) << 2) | (b >> 3); // 15 Bit
#endif
}
void dr_setRGB8multi(int first, int count, unsigned char* data)
{
// set color in DibHeader ...
RGBQUAD *pRGB = (RGBQUAD *)((char *)AllDib + sizeof(BITMAPINFOHEADER));
for( int i=first; i<first+count; i++ ) {
pRGB[i].rgbRed = data[i*3];
pRGB[i].rgbGreen = data[i*3+1];
pRGB[i].rgbBlue = data[i*3+2];
}
}
#ifdef MULTI_THREAD
// multhreaded screen copy ...
DWORD WINAPI dr_flush_screen(LPVOID lpParam)
{
while(1) {
// wait for finish of thread
hdc = GetDC(hwnd);
display_flush_buffer();
ReleaseDC(hwnd, hdc);
hdc = NULL;
// suspend myself after one update
SuspendThread( hFlushThread );
}
return 0;
}
#endif
void dr_prepare_flush()
{
#ifdef MULTI_THREAD
// thread there?
if(hFlushThread==0) {
DWORD id=22;
hFlushThread = CreateThread( NULL, 0, dr_flush_screen, 0, CREATE_SUSPENDED, &id );
}
WAIT_FOR_SCREEN();
#endif
}
void dr_flush()
{
#ifdef MULTI_THREAD
// just let the thread do its work
ResumeThread( hFlushThread );
#else
assert(hdc==NULL);
hdc = GetDC(hwnd);
display_flush_buffer();
ReleaseDC(hwnd, hdc);
hdc = NULL;
#endif
}
void dr_textur(int xp, int yp, int w, int h)
{
AllDib->biHeight = h+1;
StretchDIBits(
hdc,
xp, yp, w, h,
xp, h + 1, w, -h,
(LPSTR)(AllDibData + yp * WindowSize.right), (LPBITMAPINFO)AllDib,
DIB_RGB_COLORS, SRCCOPY
);
}
// move cursor to the specified location
void move_pointer(int x, int y)
{
POINT pt = { x, y };
ClientToScreen(hwnd, &pt);
SetCursorPos(pt.x, pt.y);
}
// set the mouse cursor (pointer/load)
void set_pointer(int loading)
{
SetCursor(LoadCursor(NULL, loading != 0 ? IDC_WAIT : IDC_ARROW));
}
// try using GDIplus to save an screenshot
extern "C" bool dr_screenshot_png(char const* filename, int w, int h, unsigned short* data, int bpp);
/**
* 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)
{
if(!dr_screenshot_png(filename,AllDib->biWidth,WindowSize.bottom + 1,(unsigned short *)AllDibData,8)) {
// not successful => save as BMP
}
return 0;
}
/*
* Hier sind die Funktionen zur Messageverarbeitung
*/
struct sys_event sys_event;
/* Windows eventhandler: does most of the work */
LRESULT WINAPI WindowProc(HWND this_hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
static int last_mb = 0; // last mouse button state
switch (msg) {
case WM_ACTIVATE: // may check, if we have to restore color depth
if(is_fullscreen) {
// avoid double calls
static bool while_handling = false;
if(while_handling) {
break;
}
while_handling = true;
if(LOWORD(wParam)!=WA_INACTIVE && is_not_top) {
// try to force display mode and size
DEVMODE settings;
memset(&settings, 0, sizeof(settings));
settings.dmSize = sizeof(settings);
settings.dmFields = DM_BITSPERPEL | DM_PELSWIDTH | DM_PELSHEIGHT;
settings.dmBitsPerPel = 8;
settings.dmPelsWidth = MaxSize.right;
settings.dmPelsHeight = MaxSize.bottom;
settings.dmDisplayFrequency = 0;
// should be alsway sucessful, since it worked as least once ...
ChangeDisplaySettings(&settings, CDS_FULLSCREEN);
is_not_top = false;
Beep( 110, 250 );
// must reshow window, otherwise startbar will be topmost ...
hwnd = CreateWindowEx(
WS_EX_TOPMOST,
L"Simu", title,
WS_POPUP,
0, 0,
MaxSize.right, MaxSize.bottom,
NULL, NULL, hInstance, NULL
);
ShowWindow( hwnd, SW_SHOW );
DestroyWindow( this_hwnd );
while_handling = false;
return true;
}
else if(LOWORD(wParam)==WA_INACTIVE && !is_not_top) {
// restore default
CloseWindow( hwnd );
ChangeDisplaySettings( NULL, 0 );
is_not_top = true;
Beep( 440, 250 );
}
while_handling = false;
}
break;
case WM_GETMINMAXINFO:
if(is_fullscreen) {
LPMINMAXINFO lpmmi = (LPMINMAXINFO) lParam;
lpmmi->ptMaxPosition.x = 0;
lpmmi->ptMaxPosition.y = 0;
}
break;
case WM_LBUTTONDOWN: /* originally ButtonPress */
sys_event.type = SIM_MOUSE_BUTTONS;
sys_event.code = SIM_MOUSE_LEFTBUTTON;
sys_event.key_mod = wParam>>2;
sys_event.mb = last_mb = (wParam&3);
sys_event.mx = LOWORD(lParam);
sys_event.my = HIWORD(lParam);
break;
case WM_LBUTTONUP: /* originally ButtonRelease */
sys_event.type = SIM_MOUSE_BUTTONS;
sys_event.code = SIM_MOUSE_LEFTUP;
sys_event.key_mod = wParam>>2;
sys_event.mb = last_mb = (wParam&3);
sys_event.mx = LOWORD(lParam);
sys_event.my = HIWORD(lParam);
break;
case WM_RBUTTONDOWN: /* originally ButtonPress */
sys_event.type = SIM_MOUSE_BUTTONS;
sys_event.code = SIM_MOUSE_RIGHTBUTTON;
sys_event.key_mod = wParam>>2;
sys_event.mb = last_mb = (wParam&3);
sys_event.mx = LOWORD(lParam);
sys_event.my = HIWORD(lParam);
break;
case WM_RBUTTONUP: /* originally ButtonRelease */
sys_event.type = SIM_MOUSE_BUTTONS;
sys_event.code = SIM_MOUSE_RIGHTUP;
sys_event.key_mod = wParam>>2;
sys_event.mb = last_mb = (wParam&3);
sys_event.mx = LOWORD(lParam);
sys_event.my = HIWORD(lParam);
break;
case WM_MOUSEMOVE:
sys_event.type = SIM_MOUSE_MOVE;
sys_event.code = SIM_MOUSE_MOVED;
sys_event.key_mod = wParam>>2;
sys_event.mb = last_mb = (wParam&3);
sys_event.mx = LOWORD(lParam);
sys_event.my = HIWORD(lParam);
break;
case WM_MOUSEWHEEL:
sys_event.type = SIM_MOUSE_BUTTONS;
sys_event.code = GET_WHEEL_DELTA_WPARAM(wParam) > 0 ? SIM_MOUSE_WHEELUP : SIM_MOUSE_WHEELDOWN;
return 0;
case WM_SIZE: // resize client area
if(lParam!=0) {
sys_event.type = SIM_SYSTEM;
sys_event.code = SIM_SYSTEM_RESIZE;
sys_event.mx = LOWORD(lParam) + 1;
if (sys_event.mx <= 0) {
sys_event.mx = 4;
}
sys_event.my = HIWORD(lParam);
if (sys_event.my <= 1) {
sys_event.my = 64;
}
}
break;
case WM_PAINT: {
PAINTSTRUCT ps;
HDC hdcp;
WAIT_FOR_SCREEN();
hdcp = BeginPaint(hwnd, &ps);
AllDib->biHeight = WindowSize.bottom;
StretchDIBits(
hdcp,
0, 0, WindowSize.right, WindowSize.bottom,
0, WindowSize.bottom + 1, WindowSize.right, -WindowSize.bottom,
(LPSTR)AllDibData, (LPBITMAPINFO)AllDib,
DIB_RGB_COLORS, SRCCOPY
);
EndPaint(this_hwnd, &ps);
break;
}
case WM_KEYDOWN: { /* originally KeyPress */
// check for not numlock!
int numlock = (GetKeyState(VK_NUMLOCK) & 1) == 0;
sys_event.type = SIM_KEYBOARD;
sys_event.code = 0;
if (numlock) {
// do low level special stuff here
switch (wParam) {
case VK_NUMPAD0: sys_event.code = '0'; break;
case VK_NUMPAD1: sys_event.code = '1'; break;
case VK_NUMPAD3: sys_event.code = '3'; break;
case VK_NUMPAD7: sys_event.code = '7'; break;
case VK_NUMPAD9: sys_event.code = '9'; break;
case VK_NUMPAD2: sys_event.code = SIM_KEY_DOWN; break;
case VK_NUMPAD4: sys_event.code = SIM_KEY_LEFT; break;
case VK_NUMPAD6: sys_event.code = SIM_KEY_RIGHT; break;
case VK_NUMPAD8: sys_event.code = SIM_KEY_UP; break;
case VK_SEPARATOR: sys_event.code = 127; //delete
break;
}
// check for numlock!
if (sys_event.code != 0) break;
}
// do low level special stuff here
switch (wParam) {
case VK_LEFT: sys_event.code = SIM_KEY_LEFT; break;
case VK_RIGHT: sys_event.code = SIM_KEY_RIGHT; break;
case VK_UP: sys_event.code = SIM_KEY_UP; break;
case VK_DOWN: sys_event.code = SIM_KEY_DOWN; break;
case VK_PRIOR: sys_event.code = '>'; break;
case VK_NEXT: sys_event.code = '<'; break;
case VK_DELETE: sys_event.code = 127; break;
case VK_HOME: sys_event.code = SIM_KEY_HOME; break;
case VK_END: sys_event.code = SIM_KEY_END; break;
}
// check for F-Keys!
if (sys_event.code == 0 && wParam >= VK_F1 && wParam <= VK_F15) {
sys_event.code = wParam - VK_F1 + SIM_KEY_F1;
sys_event.key_mod = (GetKeyState(VK_CONTROL) != 0) * 2; // control state
//printf("WindowsEvent: Key %i, (state %i)\n", sys_event.code, sys_event.key_mod);
}
// some result?
if (sys_event.code != 0) return 0;
sys_event.type = SIM_NOEVENT;
sys_event.code = 0;
break;
}
case WM_CHAR: /* originally KeyPress */
sys_event.type = SIM_KEYBOARD;
sys_event.code = wParam;
break;
case WM_CLOSE:
if (AllDibData != NULL) {
sys_event.type = SIM_SYSTEM;
sys_event.code = SIM_SYSTEM_QUIT;
return FALSE;
}
break;
case WM_DESTROY:
sys_event.type = SIM_SYSTEM;
sys_event.code = SIM_SYSTEM_QUIT;
if (AllDibData == NULL) {
PostQuitMessage(0);
hwnd = NULL;
return TRUE;
}
return FALSE;
default:
return DefWindowProc(this_hwnd, msg, wParam, lParam);
}
return FALSE;
}
static void internal_GetEvents(int wait)
{
do {
// wait for keybord/mouse event
GetMessage(&msg, NULL, 0, 0);
TranslateMessage(&msg);
DispatchMessage(&msg);
} while (wait && sys_event.type == SIM_NOEVENT);
}
void GetEvents()
{
// already even processed?
if(sys_event.type==SIM_NOEVENT) {
internal_GetEvents(TRUE);
}
}
void GetEventsNoWait()
{
if (sys_event.type==SIM_NOEVENT && PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE)) {
internal_GetEvents(FALSE);
}
}
void show_pointer(int yesno)
{
static int state=true;
if(state^yesno) {
ShowCursor(yesno);
state = yesno;
}
}
void ex_ord_update_mx_my()
{
// evt. called before update
}
unsigned long dr_time(void)
{
return timeGetTime();
}
void dr_sleep(uint32 millisec)
{
Sleep(millisec);
}
bool dr_fatal_notify(const char* msg, int choices)
{
if(choices==0) {
MessageBoxA( hwnd, msg, "Fatal Error", MB_ICONEXCLAMATION|MB_OK );
return 0;
}
else {
return MessageBoxA( hwnd, msg, "Fatal Error", MB_ICONEXCLAMATION|MB_RETRYCANCEL )==IDRETRY;
}
}
BOOL APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd)
{
WNDCLASSW wc;
char pathname[1024];
char *argv[32], *p;
int argc;
wc.lpszClassName = L"Simu";
wc.style = CS_HREDRAW | CS_VREDRAW;
wc.lpfnWndProc = WindowProc;
wc.cbClsExtra = 0;
wc.cbWndExtra = 0;
wc.hInstance = hInstance;
wc.hIcon = LoadIcon(hInstance, MAKEINTRESOURCE(100));
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
wc.hbrBackground = (HBRUSH) (COLOR_BACKGROUND + 1);
wc.lpszMenuName = NULL;
RegisterClass(&wc);
// prepare commandline
argc = 0;
GetModuleFileNameA( hInstance, pathname, 1024 );
argv[argc++] = pathname;
p = strtok(lpCmdLine, " ");
while (p != NULL) {
argv[argc++] = p;
p = strtok(NULL, " ");
}
argv[argc] = NULL;
GetWindowRect(GetDesktopWindow(), &MaxSize);
simu_main(argc, argv);
#ifdef MULTI_THREAD
if( hFlushThread ) {
TerminateThread( hFlushThread, 0 );
}
#endif
return 0;
}