source: cpp/common/nonstd.h @ 123

Last change on this file since 123 was 123, checked in by sz, 10 years ago

Cygwin compatibility

  • Property svn:eol-style set to native
File size: 2.7 KB
RevLine 
[123]1// This file is a part of the Framsticks GDK.
2// Copyright (C) 2002-2014  Maciej Komosinski and Szymon Ulatowski.  See LICENSE.txt for details.
3// Refer to http://www.framsticks.com/ for further information.
4
[109]5#ifndef _NONSTD_H_
6#define _NONSTD_H_
7
8#define SAFEDELETE(p) {if (p) {delete p; p=NULL;}}
9#define SAFEDELETEARRAY(p) {if (p) {delete[] p; p=NULL;}}
10
11#define roundToInt(x) ((int)(floor((x)+0.5)))
12
13
14#define CPP_STR(s) CPP_XSTR(s)
15#define CPP_XSTR(s) #s
16
17
18#define DB(x) //output debug info. If needed, use #define DB(x) x
19//#define DB(x) x
20
21
22// ms visual c++
23#ifdef _MSC_VER
[123]24 #include <stdio.h> //this #include must be present before two #defines below can be used, otherwise one will see: '_vsnprintf': attributes inconsistent with previous declaration, stdio.h:358
[109]25 #define vsnprintf _vsnprintf
26 #define snprintf _snprintf
27#endif
28
29#ifdef MOBILE2D
30 #define strdup _strdup
31#endif
32
33/////////////////////////////////////////////////////// 64-bit int type and other macros
34#ifdef _WIN32
35        typedef __int64 LONGLONG;
36        #define PATH_SEPARATOR_CHAR '\\'
37        #define PATH_SEPARATOR_STRING "\\"
38        #define FPU_THROWS_EXCEPTIONS
39#else
40        #define LONGLONG long long int
41        #define PATH_SEPARATOR_CHAR '/'
42        #define PATH_SEPARATOR_STRING "/"
43#endif
44
45#define FOPEN_READ_BINARY "rb"
46// no FOPEN_READ_TEXT
47#define FOPEN_WRITE_BINARY "wb"
48#define FOPEN_APPEND_BINARY "ab"
49#define FOPEN_WRITE_TEXT "wt"
50#define FOPEN_APPEND_TEXT "at"
51
52#ifdef LINUX
53 #include <strings.h>
[123]54 #ifndef __CYGWIN__
55  #define stricmp(a,b) strcasecmp(a,b)
56 #endif
[109]57#ifdef INITIAL_DIR_IS_HOME
58 #include "cwd.h"
59 #define GET_APP_HOME getAppHome()
60#else
61 #define GET_APP_HOME "./"
62#endif
63#ifdef INITIAL_DIR_IS_RES
64 #include "cwd.h"
65 #define GET_APP_RESOURCES getAppResources()
66#else
67 #define GET_APP_RESOURCES "./"
68#endif
69#endif
70
71#ifdef MACOS
72 #define stricmp(a,b) strcasecmp(a,b)
73#endif
74
75#ifdef IPHONE
76 #include <string>
77 std::string getAppHome();
78 std::string getAppResources();
79 #define GET_APP_HOME getAppHome()
80 #define GET_APP_RESOURCES getAppResources()
81#endif
82
83#ifdef SHP
84 #define GET_APP_HOME "/Home/"
85 #define GET_APP_RESOURCES "/Res/"
86#endif
87
88#ifdef TIZEN
89 #define GET_APP_HOME "/data/"
90 #define GET_APP_RESOURCES "/res/"
91#endif
92
93#ifdef __ANDROID__
94 #define GET_APP_HOME getAppHome()
95 #define GET_APP_RESOURCES "./" //w APK trzymamy w katalogu w "assets", bo w "res" nie ma podkatalogow ani odwolywania sie po nazwach
96#endif
97
98#if defined(_WIN32) && !defined(SHP)
99    #define GET_APP_HOME ".\\"
100    #define GET_APP_RESOURCES ".\\"
101#endif
102
103
104
105
106//typedef unsigned char boolean; //niestety nie mozna uzyc 'bool' bo VC w rpcndr.h wlasnie tak definiuje booleana, jako unsigned char
107//typedef char byte; //rozne srodowiska c++ definiuja byte jako unsigned char! w javie jest inaczej -> trzeba i tak zmienic w portowanych zrodlach byte na char.
108
109
110#endif
111
Note: See TracBrowser for help on using the repository browser.