openalbridge/globals.h
author unc0rr
Sun, 23 Aug 2009 12:01:55 +0000
changeset 2329 1cfb7d184ee1
parent 2261 57e99c908e7c
child 2415 35d09cbf819a
permissions -rw-r--r--
Fix bug with hedgehog getting into ground while throwing rope (http://hedgewars.org/node/1722)
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2212
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
     1
/*
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
     2
 * OpenAL Bridge - a simple portable library for OpenAL interface
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
     3
 * Copyright (c) 2009 Vittorio Giovara <vittorio.giovara@gmail.com>
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
     4
 *
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
2257
7eb31efcfb9b updates licence and fix a memory leak (which was consuming iphone memory)
koda
parents: 2216
diff changeset
     6
 * it under the terms of the GNU Lesser General Public License as published by
2212
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
     8
 *
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
2257
7eb31efcfb9b updates licence and fix a memory leak (which was consuming iphone memory)
koda
parents: 2216
diff changeset
    12
 * GNU Lesser General Public License for more details.
2212
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    13
 *
2257
7eb31efcfb9b updates licence and fix a memory leak (which was consuming iphone memory)
koda
parents: 2216
diff changeset
    14
 * You should have received a copy of the GNU Lesser General Public License
2212
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    17
 */
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    18
2213
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    19
#ifndef _OALB_GLOBALS_H
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    20
#define _OALB_GLOBALS_H
2212
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    21
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    22
#include <stdio.h>
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    23
#include <stdlib.h>
2215
1d78579e06c2 regression of previous commit, stdint.h in use
koda
parents: 2214
diff changeset
    24
#include <stdint.h>
2259
ca42efdce3ce fix indentation and other cosmetic changes to lib
koda
parents: 2257
diff changeset
    25
#include <string.h>
2212
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    26
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    27
#ifndef _WIN32
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    28
#include <pthread.h>
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    29
#else
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    30
#include <process.h>
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    31
#endif
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    32
2213
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    33
#include "al.h"
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    34
2212
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    35
#ifndef _SLEEP_H
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    36
#define _SLEEP_H
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    37
/** 1.0 02/03/10 - Defines cross-platform sleep, usleep, etc. * By Wu Yongwei **/
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    38
#ifdef _WIN32
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    39
# if defined(_NEED_SLEEP_ONLY) && (defined(_MSC_VER) || defined(__MINGW32__))
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    40
#  include <stdlib.h>
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    41
#  define sleep(t) _sleep((t) * 1000)
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    42
# else
2213
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    43
#  define WIN32_LEAN_AND_MEAN
2212
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    44
#  include <windows.h>
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    45
#  define sleep(t)  Sleep((t) * 1000)
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    46
# endif
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    47
# ifndef _NEED_SLEEP_ONLY
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    48
#  define msleep(t) Sleep(t)
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    49
#  define usleep(t) Sleep((t) / 1000)
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    50
# endif
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    51
#else
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    52
# include <unistd.h>
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    53
# ifndef _NEED_SLEEP_ONLY
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    54
#  define msleep(t) usleep((t) * 1000)
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    55
# endif
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    56
#endif
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    57
#endif /* _SLEEP_H */
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    58
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    59
#ifdef HAVE_BYTESWAP_H
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    60
/* use byteswap macros from the host system, hopefully optimized ones ;-) */
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    61
#include <byteswap.h>
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    62
#else
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    63
/* define our own version, simple, stupid, straight-forward... */
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    64
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    65
#define bswap_16(x)	((((x) & 0xFF00) >> 8) | (((x) & 0x00FF) << 8))
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    66
2260
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    67
#define bswap_32(x)	((((x) & 0xFF000000) >> 24) | (((x) & 0x00FF0000) >> 8)  | \
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    68
                         (((x) & 0x0000FF00) << 8)  | (((x) & 0x000000FF) << 24) )
2212
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    69
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    70
#endif /* HAVE_BYTESWAP_H */
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    71
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    72
#ifdef __CPLUSPLUS
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    73
extern "C" {
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    74
#endif 
2260
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    75
    
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    76
    /*data type for WAV header*/
2212
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    77
#pragma pack(1)
2260
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    78
    typedef struct _WAV_header_t {
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    79
        uint32_t ChunkID;
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    80
        uint32_t ChunkSize;
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    81
        uint32_t Format;
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    82
        uint32_t Subchunk1ID;
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    83
        uint32_t Subchunk1Size;
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    84
        uint16_t AudioFormat;
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    85
        uint16_t NumChannels;
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    86
        uint32_t SampleRate;
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    87
        uint32_t ByteRate;
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    88
        uint16_t BlockAlign;
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    89
        uint16_t BitsPerSample;
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    90
        uint32_t Subchunk2ID;
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    91
        uint32_t Subchunk2Size;
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    92
    } WAV_header_t;
2212
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
    93
#pragma pack()
2260
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    94
    
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    95
    /*data type for passing data between threads*/
2216
82e7da49c26a -Smaxx' patch: checks for initialized openal + disables sound options if openal init fails
koda
parents: 2215
diff changeset
    96
#pragma pack(1)
2260
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    97
    typedef struct _fade_t {
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    98
        uint32_t index;
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
    99
        uint16_t quantity;
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
   100
    } fade_t;
2216
82e7da49c26a -Smaxx' patch: checks for initialized openal + disables sound options if openal init fails
koda
parents: 2215
diff changeset
   101
#pragma pack()
2260
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
   102
    
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
   103
    /*other defines*/
2261
57e99c908e7c a lot of stuff:
koda
parents: 2260
diff changeset
   104
#define FADE_IN	 AL_TRUE
57e99c908e7c a lot of stuff:
koda
parents: 2260
diff changeset
   105
#define FADE_OUT AL_FALSE
2260
31756e21c436 other indentation, binding and miscellaneous fixes to openalbridge
koda
parents: 2259
diff changeset
   106
    
2212
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
   107
#ifdef __CPLUSPLUS
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
   108
}
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
   109
#endif
6b5da1a2765a -openalbridge headers cleaned
koda
parents:
diff changeset
   110
2213
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
   111
#endif /*_OALB_GLOBALS_H*/