openalbridge/openalwrap.c
author koda
Mon, 29 Jun 2009 20:01:05 +0000
changeset 2211 288360b78f30
parent 2210 1cb7118a77dd
child 2212 6b5da1a2765a
permissions -rw-r--r--
- fade in/out functions merged, but kept binary compatibility - reworked memory initialization, now uses less memory and allocates more only when needed - other fixes to openalbridge
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 "openalwrap.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
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    25
	// Sources are points emitting sound.
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    26
	ALuint *Sources;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    27
	// Buffers hold sound data.
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    28
	ALuint *Buffers;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    29
	//index for Sources and Buffers
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    30
	ALuint globalindex, globalsize;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    31
	// Position of the source sound.
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
    32
	ALfloat SourcePos[] = { 0.0, 0.0, 0.0 };
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    33
	// Velocity of the source sound.
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
    34
	ALfloat SourceVel[] = { 0.0, 0.0, 0.0 };
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    35
	
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
    36
	int increment;
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    37
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    38
	ALint openal_close(void) {
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    39
		/* This function stops all the sounds, deallocates all memory and closes OpenAL */
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    40
		ALCcontext *context;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    41
		ALCdevice  *device;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    42
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    43
		alSourceStopv	(globalsize, Sources);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    44
		alDeleteSources (globalsize, Sources);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    45
		alDeleteBuffers (globalsize, Buffers);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    46
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    47
		free(Sources);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    48
		free(Buffers);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    49
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    50
		context = alcGetCurrentContext();
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    51
		device  = alcGetContextsDevice(context);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    52
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    53
		alcMakeContextCurrent(NULL);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    54
		alcDestroyContext(context);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    55
		alcCloseDevice(device);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    56
		return AL_TRUE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    57
	}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    58
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    59
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    60
	ALint openal_init(int memorysize) {	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    61
		/* This function initializes an OpenAL contex, allocates memory space for data and prepares OpenAL buffers*/
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    62
		ALCcontext *context;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    63
		ALCdevice *device;
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
    64
		const ALCchar *default_device;
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    65
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    66
		// Position of the listener.
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    67
		ALfloat ListenerPos[] = { 0.0, 0.0, 0.0 };
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    68
		// Velocity of the listener.
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    69
		ALfloat ListenerVel[] = { 0.0, 0.0, 0.0 };
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    70
		// Orientation of the listener. (first 3 elements are "at", second 3 are "up")
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    71
		ALfloat ListenerOri[] = { 0.0, 0.0, -1.0,  0.0, 1.0, 0.0 };
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    72
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    73
		default_device = alcGetString(NULL, ALC_DEFAULT_DEVICE_SPECIFIER);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    74
		fprintf(stderr, "Using default device: %s\n", default_device);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    75
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    76
		if ((device = alcOpenDevice(default_device)) == NULL) {
2200
8192be6e3aef koda/Smaxx changes to openal for crossplatform building
nemo
parents: 2194
diff changeset
    77
			fprintf(stderr, "ERROR: Failed to open sound device\n");
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    78
			return AL_FALSE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    79
		}
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
    80
		
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    81
		context = alcCreateContext(device, NULL);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    82
		alcMakeContextCurrent(context);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    83
		alcProcessContext(context);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    84
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    85
		if (AlGetError("ERROR %d: Creating a new contex\n") != AL_TRUE)
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    86
			return AL_FALSE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    87
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    88
		//allocate memory space for buffers and sources
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    89
		globalsize = memorysize;
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
    90
		increment = memorysize;
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
    91
		Buffers = (ALuint*) Malloc(sizeof(ALuint)*globalsize);
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
    92
		Sources = (ALuint*) Malloc(sizeof(ALuint)*globalsize);
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    93
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    94
		//set the listener gain, position (on xyz axes), velocity (one value for each axe) and orientation
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    95
		alListenerf (AL_GAIN,		 1.0f		);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    96
		alListenerfv(AL_POSITION,    ListenerPos);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    97
		alListenerfv(AL_VELOCITY,    ListenerVel);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    98
		alListenerfv(AL_ORIENTATION, ListenerOri);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
    99
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   100
		if (AlGetError("ERROR %d: Setting Listener properties\n") != AL_TRUE)
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   101
			return AL_FALSE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   102
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   103
		alGetError();  /* clear any AL errors beforehand */
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   104
		return AL_TRUE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   105
	}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   106
	
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   107
	int helper_realloc (void) {
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   108
		globalsize += increment;
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   109
#ifdef DEBUG
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   110
		fprintf(stderr, "OpenAL: Realloc in process %d\n", globalsize);
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   111
#endif
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   112
		Buffers = (ALuint*) reallocf(Buffers, sizeof(ALuint)*globalsize);
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   113
		Sources = (ALuint*) reallocf(Sources, sizeof(ALuint)*globalsize);
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   114
		if (Buffers == NULL || Sources == NULL) {
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   115
			fprintf(stderr, "ERROR: not enough memory! realloc() failed\n");
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   116
			exit(-1);
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   117
		} else {
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   118
			return 0;
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   119
		}
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   120
	}
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   121
	
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   122
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   123
	int openal_loadfile (const char *filename){
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   124
		/* This function opens a file, loads into memory and allocates the Source buffer for playing*/
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   125
		ALenum format;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   126
		ALsizei bitsize;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   127
		ALsizei freq;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   128
		uint8_t *data;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   129
		uint32_t fileformat;
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   130
		int error;
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   131
		FILE *fp;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   132
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   133
		
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   134
		if (globalindex == globalsize)
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   135
			helper_realloc();
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   136
		
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   137
		/*detect the file format, as written in the first 4 bytes of the header*/
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   138
		fp = Fopen (filename, "rb");
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   139
		if (fp == NULL)
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   140
			return -1;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   141
		error = fread (&fileformat, sizeof(uint32_t), 1, fp);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   142
		fclose (fp);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   143
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   144
		if (error < 0) {
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   145
			fprintf(stderr, "ERROR: file %s is too short \n", filename);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   146
			return -2;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   147
		}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   148
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   149
		//prepare the buffers to receive data
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   150
		alGenBuffers(1, &Buffers[globalindex]);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   151
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   152
		if (AlGetError("ERROR %d: Allocating memory for buffers\n") != AL_TRUE)
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   153
			return -3;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   154
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   155
		//prepare the sources to emit sound
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   156
		alGenSources(1, &Sources[globalindex]);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   157
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   158
		if (AlGetError("ERROR %d: Allocating memory for sources\n") != AL_TRUE)
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   159
			return -4;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   160
				
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   161
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   162
		if (fileformat == 0x5367674F) //check if ogg
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   163
			error = load_OggVorbis (filename, &format, &data, &bitsize, &freq);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   164
		else {
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   165
			if (fileformat == 0x46464952) //check if wav
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   166
				error = load_WavPcm (filename, &format, &data, &bitsize, &freq);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   167
			else {
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   168
				fprintf(stderr, "ERROR: File format (%08X) not supported!\n", invert_endianness(fileformat));
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   169
				return -5;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   170
			}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   171
		}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   172
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   173
		//copy pcm data in one buffer
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   174
		alBufferData(Buffers[globalindex], format, data, bitsize, freq);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   175
		free(data);		//deallocate data to save memory
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   176
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   177
		if (AlGetError("ERROR %d: Writing data to buffer\n") != AL_TRUE)
2210
1cb7118a77dd initial bugfix for volume setup
koda
parents: 2209
diff changeset
   178
			return -6;
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   179
			
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   180
		//source properties that it will use when it's in playback
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   181
		alSourcei (Sources[globalindex], AL_BUFFER,   Buffers[globalindex]  );
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   182
		alSourcef (Sources[globalindex], AL_PITCH,    1.0f					);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   183
		alSourcef (Sources[globalindex], AL_GAIN,     1.0f					);
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   184
		alSourcefv(Sources[globalindex], AL_POSITION, SourcePos				);
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   185
		alSourcefv(Sources[globalindex], AL_VELOCITY, SourceVel				);
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   186
		alSourcei (Sources[globalindex], AL_LOOPING,  0						);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   187
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   188
		if (AlGetError("ERROR %d: Setting source properties\n") != AL_TRUE)
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   189
			return -7;
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   190
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   191
		alGetError();  /* clear any AL errors beforehand */
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   192
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   193
		//returns the index of the source you just loaded, increments it and exits
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   194
		return globalindex++;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   195
	}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   196
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   197
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   198
	ALint openal_toggleloop (int index){
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   199
		/*Set or unset looping mode*/
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   200
		ALint loop;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   201
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   202
		if (index >= globalsize) {
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   203
			fprintf(stderr, "ERROR: index out of bounds (got %d, max %d)\n", index, globalindex);
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   204
			return AL_FALSE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   205
		}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   206
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   207
		alGetSourcei (Sources[index], AL_LOOPING, &loop);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   208
		alSourcei (Sources[index], AL_LOOPING, !((uint8_t) loop) & 0x00000001);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   209
		if (AlGetError("ERROR %d: Getting or setting loop property\n") != AL_TRUE)
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   210
			return AL_FALSE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   211
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   212
		alGetError();  /* clear any AL errors beforehand */
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   213
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   214
		return AL_TRUE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   215
	}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   216
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   217
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   218
	ALint openal_setvolume (int index, unsigned char percentage) {
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   219
		/*Set volume for sound number index*/
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   220
		if (index >= globalindex) {
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   221
			fprintf(stderr, "ERROR: index out of bounds (got %d, max %d)\n", index, globalindex);
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   222
			return AL_FALSE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   223
		}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   224
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   225
		if (percentage > 100)
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   226
			percentage = 100;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   227
		alSourcef (Sources[index], AL_GAIN, (ALfloat) percentage/100.0f);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   228
		if (AlGetError("ERROR %d: Setting volume for last sound\n") != AL_TRUE)
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   229
			return AL_FALSE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   230
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   231
		alGetError();  /* clear any AL errors beforehand */
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   232
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   233
		return AL_TRUE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   234
	}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   235
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   236
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   237
	ALint openal_setglobalvolume (unsigned char percentage) {
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   238
		/*Set volume for all sounds*/		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   239
		if (percentage > 100)
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   240
			percentage = 100;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   241
		alListenerf (AL_GAIN, (ALfloat) percentage/100.0f);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   242
		if (AlGetError("ERROR %d: Setting global volume\n") != AL_TRUE)
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   243
			return AL_FALSE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   244
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   245
		alGetError();  /* clear any AL errors beforehand */
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   246
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   247
		return AL_TRUE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   248
	}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   249
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   250
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   251
	ALint openal_togglemute () {
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   252
		/*Mute or unmute sound*/
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   253
		ALfloat mute;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   254
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   255
		alGetListenerf (AL_GAIN, &mute);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   256
		if (mute > 0) 
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   257
			mute = 0;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   258
		else
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   259
			mute = 1.0;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   260
		alListenerf (AL_GAIN, mute);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   261
		if (AlGetError("ERROR %d: Setting mute property\n") != AL_TRUE)
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   262
			return AL_FALSE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   263
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   264
		alGetError();  /* clear any AL errors beforehand */
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   265
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   266
		return AL_TRUE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   267
	}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   268
	
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   269
	
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   270
	ALint openal_fade(int index, unsigned int quantity, char inout) {
2194
1597710c6118 koda adds threading for fadein/out. Untested under windows, but works beautifully under Linux (and presumably OSX, right koda?)
nemo
parents: 2191
diff changeset
   271
#ifndef _WIN32
1597710c6118 koda adds threading for fadein/out. Untested under windows, but works beautifully under Linux (and presumably OSX, right koda?)
nemo
parents: 2191
diff changeset
   272
		pthread_t thread;
1597710c6118 koda adds threading for fadein/out. Untested under windows, but works beautifully under Linux (and presumably OSX, right koda?)
nemo
parents: 2191
diff changeset
   273
#else
1597710c6118 koda adds threading for fadein/out. Untested under windows, but works beautifully under Linux (and presumably OSX, right koda?)
nemo
parents: 2191
diff changeset
   274
		HANDLE Thread;
1597710c6118 koda adds threading for fadein/out. Untested under windows, but works beautifully under Linux (and presumably OSX, right koda?)
nemo
parents: 2191
diff changeset
   275
		DWORD threadID;
2209
2573d4ff78f9 - bugfix for segfault on fades
koda
parents: 2200
diff changeset
   276
#endif
2573d4ff78f9 - bugfix for segfault on fades
koda
parents: 2200
diff changeset
   277
		fade_t *fade;
2573d4ff78f9 - bugfix for segfault on fades
koda
parents: 2200
diff changeset
   278
		
2573d4ff78f9 - bugfix for segfault on fades
koda
parents: 2200
diff changeset
   279
		fade = (fade_t*) Malloc(sizeof(fade_t));
2200
8192be6e3aef koda/Smaxx changes to openal for crossplatform building
nemo
parents: 2194
diff changeset
   280
		fade->index = index;
8192be6e3aef koda/Smaxx changes to openal for crossplatform building
nemo
parents: 2194
diff changeset
   281
		fade->quantity = quantity;
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   282
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   283
		if (index >= globalindex) {
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   284
			fprintf(stderr, "ERROR: index out of bounds (got %d, max %d)\n", index, globalindex);
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   285
			return AL_FALSE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   286
		}
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   287
		
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   288
		if (inout == FADE_IN)
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   289
#ifndef _WIN32
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   290
			pthread_create(&thread, NULL, helper_fadein, (void*) fade);
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   291
#else
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   292
			Thread = _beginthread(&helper_fadein, 0, (void*) fade);
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   293
#endif
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   294
		else {
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   295
			if (inout == FADE_OUT)
2194
1597710c6118 koda adds threading for fadein/out. Untested under windows, but works beautifully under Linux (and presumably OSX, right koda?)
nemo
parents: 2191
diff changeset
   296
#ifndef _WIN32
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   297
				pthread_create(&thread, NULL, helper_fadeout, (void*) fade);
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   298
#else
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   299
				Thread = _beginthread(&helper_fadeout, 0, (void*) fade);
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   300
#endif	
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   301
			else {
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   302
				fprintf(stderr, "ERROR: unknown direction for fade (%d)\n", inout);
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   303
				free(fade);
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   304
				return AL_FALSE;
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   305
			}
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   306
		}
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   307
		
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   308
#ifndef _WIN32
2194
1597710c6118 koda adds threading for fadein/out. Untested under windows, but works beautifully under Linux (and presumably OSX, right koda?)
nemo
parents: 2191
diff changeset
   309
		pthread_detach(thread);
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   310
#endif
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   311
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   312
		alGetError();  /* clear any AL errors beforehand */
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   313
		
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   314
		return AL_TRUE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   315
	}
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   316
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   317
	
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   318
	ALint openal_fadeout(int index, unsigned int quantity) {
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   319
		return openal_fade(index, quantity, FADE_OUT);
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   320
	}
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   321
		
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   322
		
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   323
	ALint openal_fadein(int index, unsigned int quantity) {
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   324
		return openal_fade(index, quantity, FADE_IN);
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   325
	}
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   326
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   327
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   328
	ALint openal_playsound(int index){
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   329
		/*Play sound number index*/
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   330
		if (index >= globalindex) {
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   331
			fprintf(stderr, "ERROR: index out of bounds (got %d, max %d)\n", index, globalindex);
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   332
			return AL_FALSE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   333
		}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   334
		alSourcePlay(Sources[index]);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   335
		if (AlGetError("ERROR %d: Playing last sound\n") != AL_TRUE)
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   336
			return AL_FALSE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   337
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   338
		alGetError();  /* clear any AL errors beforehand */
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   339
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   340
		return AL_TRUE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   341
	}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   342
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   343
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   344
	ALint openal_pausesound(int index){
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   345
		/*Pause sound number index*/
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   346
		if (index >= globalindex) {
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   347
			fprintf(stderr, "ERROR: index out of bounds (got %d, max %d)\n", index, globalindex);
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   348
			return AL_FALSE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   349
		}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   350
		alSourcePause(Sources[index]);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   351
		if (AlGetError("ERROR %d: Pausing last sound\n") != AL_TRUE)
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   352
			return AL_FALSE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   353
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   354
		return AL_TRUE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   355
	}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   356
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   357
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   358
	ALint openal_stopsound(int index){
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   359
		/*Stop sound number index*/
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   360
		if (index >= globalindex) {
2211
288360b78f30 - fade in/out functions merged, but kept binary compatibility
koda
parents: 2210
diff changeset
   361
			fprintf(stderr, "ERROR: index out of bounds (got %d, max %d)\n", index, globalindex);
2191
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   362
			return AL_FALSE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   363
		}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   364
		alSourceStop(Sources[index]);
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   365
		if (AlGetError("ERROR %d: Stopping last sound\n") != AL_TRUE)
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   366
			return AL_FALSE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   367
		
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   368
		alGetError();  /* clear any AL errors beforehand */
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   369
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   370
		return AL_TRUE;
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   371
	}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   372
	
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   373
#ifdef __CPLUSPLUS
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   374
}
20c62f787a4d koda's OpenAL conversion:
unc0rr
parents:
diff changeset
   375
#endif