libSBNW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Macros Modules Pages
BaseWORDs.h
1 /*== SAGITTARIUS =====================================================================
2  * Copyright (c) 2012, Jesse K Medley
3  * All rights reserved.
4 
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are met:
7  * Redistributions of source code must retain the above copyright
8  notice, this list of conditions and the following disclaimer.
9  * Redistributions in binary form must reproduce the above copyright
10  notice, this list of conditions and the following disclaimer in the
11  documentation and/or other materials provided with the distribution.
12  * Neither the name of The University of Washington nor the
13  names of its contributors may be used to endorse or promote products
14  derived from this software without specific prior written permission.
15 
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE
20  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 //== FILEDOC =========================================================================
29 
34 //== BEGINNING OF CODE ===============================================================
35 
36 #ifndef __SAGITTARIUS_BASEWORDS_H_
37 #define __SAGITTARIUS_BASEWORDS_H_
38 
39 //== INCLUDES ========================================================================
40 
42 
43 #include <stdint.h>
44 
45 //==DEFINES/TYPES===================================//
46 
47 //Sorry, but we can't put these typedefs in the Sagittarius
48 //namespace. There are extern "C" functions defined in C++
49 //headers that need to use these types, hence they must be
50 //available in the default namespace
51 /*#ifdef __cplusplus
52 namespace Sagittarius
53 {
54 #endif*/
55 
56  //These int sizes must be verified for each platform, but once that is done,
57  //just plug in the appropriate types and go.
58 
59  //INTs:
60 
61  typedef int8_t int8;
62  typedef uint8_t uint8;
63 
64  typedef int16_t int16;
65  typedef uint16_t uint16;
66 
67  #define SG_UINT16_MAX 65535
68 
69  //typedef long int32; //8 bytes for x86_64
70  //typedef unsigned long uint32; //8 bytes for x86_64
71 
72  typedef int32_t int32;
73  typedef uint32_t uint32;
74 
75  typedef int64_t int64; //also long long
76  typedef uint64_t uint64;
77 
78  //FLOATING POINT TYPES:
79 
80  typedef float fp32;
81  typedef double fp64;
82 
83  //CHARACTERS:
84 
85  typedef char char8;
86  typedef unsigned char uchar8;
87 
88  #define INT64_LOW_MASK 0x00000000FFFFFFFF
89  #define INT64_HIGH_MASK 0xFFFFFFFF00000000
90 
91  //pointers
92  #if SAGITTARIUS_ARCH == SAGITTARIUS_ARCH_64
93  #define SG_POINTER_UINT uint64
94  #elif SAGITTARIUS_ARCH == SAGITTARIUS_ARCH_64
95  #define SG_POINTER_UINT uint32
96  #endif
97 
98  //misc
99  //booleans
100  #define true 1 //don't rely on if(b == true), use if(b) instead
101  #define false 0
102  #ifndef __cplusplus
103  #define sg_casbool sg_cas32
104  typedef int32 bool;
105  #endif
106 
107 /*#ifdef __cplusplus
108 }
109 #endif*/
110 
111 #endif
Common required definitions.