openalbridge/wrappers.c
author koda
Mon, 29 Jun 2009 03:47:39 +0000
changeset 2210 1cb7118a77dd
parent 2200 8192be6e3aef
child 2211 288360b78f30
permissions -rw-r--r--
initial bugfix for volume setup
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
	
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    27
	void *Malloc (size_t nbytes){
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    28
		void *aptr;
2200
8192be6e3aef koda/Smaxx changes to openal for crossplatform building
nemo
parents: 2194
diff changeset
    29
		if ( (aptr = malloc(nbytes)) == NULL) {
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    30
			fprintf(stderr, "ERROR: not enough memory! malloc() failed");
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
	
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    37
	FILE *Fopen (const char *fname, char *mode)	{
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    38
		FILE *fp;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    39
		if ((fp=fopen(fname,mode)) == NULL)
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    40
			fprintf (stderr, "ERROR: can't open file %s in mode '%s'", fname, mode);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    41
		return fp;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    42
	}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    43
	
2210
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    44
	
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    45
	ALint AlGetError (const char *str) {
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    46
		ALenum error;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    47
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    48
		error = alGetError();
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    49
		if (error != AL_NO_ERROR) {
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    50
			fprintf(stderr, str, error);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    51
			return -2;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    52
		} else 
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    53
			return AL_TRUE;
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
	
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    57
#ifndef _WIN32
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    58
	void *helper_fadein(void *tmp) 
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    59
#else
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    60
	void WINAPI helper_fadein(void *tmp) 
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    61
#endif
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    62
	{
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    63
		ALfloat gain;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    64
		ALfloat target_gain;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    65
		fade_t *fade;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    66
		int index; 
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    67
		unsigned int quantity; 
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    68
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    69
		fade = tmp;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    70
		index = fade->index;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    71
		quantity = fade->quantity;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    72
		free (fade);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    73
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    74
#ifdef DEBUG
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    75
		fprintf(stderr, "Fade-out: index %d quantity %d\n", index, quantity);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    76
#endif
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    77
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    78
		//save the volume desired after the fade
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    79
		alGetSourcef(Sources[index], AL_GAIN, &target_gain);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    80
		if (target_gain > 1.0f || target_gain <= 0.0f)
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    81
			target_gain = 1.0f;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    82
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    83
		alSourcePlay(Sources[index]);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    84
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    85
		for (gain = 0.0f ; gain <= target_gain; gain += (float) quantity/10000) {
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-in: Set gain to: %f\n", gain);
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
			alSourcef(Sources[index], AL_GAIN, gain);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    90
			usleep(10000);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    91
		}
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    92
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    93
		AlGetError("ERROR %d: Setting fade in volume\n");
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    94
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    95
#ifndef _WIN32
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    96
		pthread_exit(NULL);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    97
#else
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    98
		_endthread();
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
    99
#endif
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   100
	}
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   101
	
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   102
	
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   103
#ifndef _WIN32
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   104
	void *helper_fadeout(void *tmp) 
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   105
#else
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   106
	void WINAPI helper_fadeout(void *tmp) 	
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   107
#endif
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   108
	{
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   109
		ALfloat gain;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   110
		ALfloat old_gain;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   111
		fade_t *fade;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   112
		int index; 
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   113
		unsigned int quantity; 
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   114
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   115
		fade = tmp;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   116
		index = fade->index;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   117
		quantity = fade->quantity;
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   118
		free(fade);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   119
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   120
#ifdef DEBUG
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   121
		fprintf(stderr, "Fade-out: index %d quantity %d\n", index, quantity);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   122
#endif
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   123
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   124
		alGetSourcef(Sources[index], AL_GAIN, &old_gain);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   125
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   126
		for (gain = old_gain; gain >= 0.00f; gain -= (float) quantity/10000) {
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   127
#ifdef DEBUG
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   128
			fprintf(stderr, "Fade-out: Set gain to %f\n", gain);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   129
#endif
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   130
			alSourcef(Sources[index], AL_GAIN, gain);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   131
			usleep(10000);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   132
		}
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   133
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   134
		AlGetError("ERROR %d: Setting fade out volume\n");
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   135
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   136
		//stop that sound and reset its volume
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   137
		alSourceStop (Sources[index]);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   138
		alSourcef (Sources[index], AL_GAIN, old_gain);	
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   139
		
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   140
#ifndef _WIN32
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   141
		pthread_exit(NULL);
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   142
#else
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   143
		_endthread();
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   144
#endif
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   145
	}
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2200
diff changeset
   146
	
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   147
#ifdef __CPLUSPLUS
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   148
}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   149
#endif