openalbridge/wrappers.c
author koda
Thu, 02 Jul 2009 00:58:46 +0000
changeset 2218 59a9bebc4988
parent 2216 82e7da49c26a
child 2257 7eb31efcfb9b
permissions -rw-r--r--
-Smaxx' solution for compiling frontend with static libs in windows -reverted to realloc() for more compatibility
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
     1
/*
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
     2
 * OpenAL Bridge - a simple portable library for OpenAL interface
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
     3
 * Copyright (c) 2009 Vittorio Giovara <vittorio.giovara@gmail.com>
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
     4
 *
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
     5
 * This program is free software; you can redistribute it and/or modify
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
     6
 * it under the terms of the GNU General Public License as published by
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
     7
 * the Free Software Foundation; version 2 of the License
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
     8
 *
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
     9
 * This program is distributed in the hope that it will be useful,
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    12
 * GNU General Public License for more details.
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    13
 *
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    14
 * You should have received a copy of the GNU General Public License
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    15
 * along with this program; if not, write to the Free Software
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    17
 */
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    18
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    19
#include "wrappers.h"
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    20
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    21
#ifdef __CPLUSPLUS
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    22
extern "C" {
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    23
#endif 
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    24
	
2210
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    25
	extern ALint *Sources;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    26
	
2213
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    27
	void *Malloc (size_t nbytes) {
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    28
		void *aptr;
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
    29
		if ((aptr = malloc(nbytes)) == NULL) {
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
    30
			fprintf(stderr, "ERROR: not enough memory! malloc() failed\n");
2200
8192be6e3aef koda/Smaxx changes to openal for crossplatform building
nemo
parents: 2194
diff changeset
    31
			exit(-1);
8192be6e3aef koda/Smaxx changes to openal for crossplatform building
nemo
parents: 2194
diff changeset
    32
		}
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    33
		return aptr;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    34
	}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    35
	
2210
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    36
	
2213
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    37
	void *Realloc (void *aptr, size_t nbytes) {
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    38
		aptr = realloc(aptr, nbytes);
2218
59a9bebc4988 -Smaxx' solution for compiling frontend with static libs in windows
koda
parents: 2216
diff changeset
    39
2213
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    40
		if (aptr == NULL) {
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    41
			fprintf(stderr, "ERROR: not enough memory! realloc() failed\n");
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    42
			free(aptr);
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    43
			exit(-1);
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    44
		}
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    45
		return aptr;
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    46
	}
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    47
	
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    48
	
2210
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    49
	FILE *Fopen (const char *fname, char *mode)	{
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    50
		FILE *fp;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    51
		if ((fp=fopen(fname,mode)) == NULL)
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
    52
			fprintf (stderr, "ERROR: can't open file %s in mode '%s'\n", fname, mode);
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    53
		return fp;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    54
	}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    55
	
2210
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    56
	
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    57
	ALint AlGetError (const char *str) {
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    58
		ALenum error;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    59
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    60
		error = alGetError();
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    61
		if (error != AL_NO_ERROR) {
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    62
			fprintf(stderr, str, error);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    63
			return -2;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    64
		} else 
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    65
			return AL_TRUE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    66
	}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    67
	
2210
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    68
	
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    69
#ifndef _WIN32
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    70
	void *helper_fadein(void *tmp) 
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    71
#else
2213
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
    72
	void *helper_fadein(void *tmp) 
2210
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    73
#endif
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    74
	{
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    75
		ALfloat gain;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    76
		ALfloat target_gain;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    77
		fade_t *fade;
2216
82e7da49c26a -Smaxx' patch: checks for initialized openal + disables sound options if openal init fails
koda
parents: 2213
diff changeset
    78
		uint32_t index; 
82e7da49c26a -Smaxx' patch: checks for initialized openal + disables sound options if openal init fails
koda
parents: 2213
diff changeset
    79
		uint16_t quantity; 
2210
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    80
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    81
		fade = tmp;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    82
		index = fade->index;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    83
		quantity = fade->quantity;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    84
		free (fade);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    85
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    86
#ifdef DEBUG
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    87
		fprintf(stderr, "Fade-out: index %d quantity %d\n", index, quantity);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    88
#endif
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    89
		
2212
6b5da1a2765a -openalbridge headers cleaned
koda
parents: 2211
diff changeset
    90
		/*save the volume desired after the fade*/
2210
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    91
		alGetSourcef(Sources[index], AL_GAIN, &target_gain);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    92
		if (target_gain > 1.0f || target_gain <= 0.0f)
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    93
			target_gain = 1.0f;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    94
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    95
		alSourcePlay(Sources[index]);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    96
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    97
		for (gain = 0.0f ; gain <= target_gain; gain += (float) quantity/10000) {
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    98
#ifdef DEBUG
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    99
			fprintf(stderr, "Fade-in: Set gain to: %f\n", gain);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   100
#endif
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   101
			alSourcef(Sources[index], AL_GAIN, gain);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   102
			usleep(10000);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   103
		}
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   104
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   105
		AlGetError("ERROR %d: Setting fade in volume\n");
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   106
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   107
#ifndef _WIN32
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   108
		pthread_exit(NULL);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   109
#else
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   110
		_endthread();
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   111
#endif
2216
82e7da49c26a -Smaxx' patch: checks for initialized openal + disables sound options if openal init fails
koda
parents: 2213
diff changeset
   112
		return 0;
2210
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   113
	}
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   114
	
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   115
	
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   116
#ifndef _WIN32
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   117
	void *helper_fadeout(void *tmp) 
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   118
#else
2213
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
   119
	void *helper_fadeout(void *tmp) 	
2210
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   120
#endif
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   121
	{
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   122
		ALfloat gain;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   123
		ALfloat old_gain;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   124
		fade_t *fade;
2216
82e7da49c26a -Smaxx' patch: checks for initialized openal + disables sound options if openal init fails
koda
parents: 2213
diff changeset
   125
		uint32_t index; 
82e7da49c26a -Smaxx' patch: checks for initialized openal + disables sound options if openal init fails
koda
parents: 2213
diff changeset
   126
		uint16_t quantity; 
2210
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   127
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   128
		fade = tmp;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   129
		index = fade->index;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   130
		quantity = fade->quantity;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   131
		free(fade);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   132
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   133
#ifdef DEBUG
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   134
		fprintf(stderr, "Fade-out: index %d quantity %d\n", index, quantity);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   135
#endif
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   136
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   137
		alGetSourcef(Sources[index], AL_GAIN, &old_gain);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   138
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   139
		for (gain = old_gain; gain >= 0.00f; gain -= (float) quantity/10000) {
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   140
#ifdef DEBUG
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   141
			fprintf(stderr, "Fade-out: Set gain to %f\n", gain);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   142
#endif
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   143
			alSourcef(Sources[index], AL_GAIN, gain);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   144
			usleep(10000);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   145
		}
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   146
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   147
		AlGetError("ERROR %d: Setting fade out volume\n");
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   148
		
2212
6b5da1a2765a -openalbridge headers cleaned
koda
parents: 2211
diff changeset
   149
		/*stop that sound and reset its volume*/
2210
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   150
		alSourceStop (Sources[index]);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   151
		alSourcef (Sources[index], AL_GAIN, old_gain);	
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   152
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   153
#ifndef _WIN32
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   154
		pthread_exit(NULL);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   155
#else
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   156
		_endthread();
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   157
#endif
2216
82e7da49c26a -Smaxx' patch: checks for initialized openal + disables sound options if openal init fails
koda
parents: 2213
diff changeset
   158
		return 0;
2210
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   159
	}
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   160
	
2213
bd51bbf06033 -Smaxx's porting of the library to MSVC compilers
koda
parents: 2212
diff changeset
   161
	
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   162
#ifdef __CPLUSPLUS
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   163
}
2216
82e7da49c26a -Smaxx' patch: checks for initialized openal + disables sound options if openal init fails
koda
parents: 2213
diff changeset
   164
#endif