1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
#region License
/*
MIT License
Copyright 2003-2005 Tao Framework Team
http://www.taoframework.com
All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#endregion License
#region Original Credits / License
// Dan Ricart (ricart3@tcnj.edu)
#endregion Original Credits / License
using System;
using Tao.OpenAl;
namespace OpenAlExamples {
/// <summary>
///
/// </summary>
public class Sound {
// --- Fields ---
#region Private Fields
private IntPtr buffer = IntPtr.Zero;
private int format;
private float frequency;
private int length;
private int sourceId;
private int bufferId;
#endregion Private Fields
// --- Public Methods ---
#region Destroy()
/// <summary>
///
/// </summary>
public void Destroy() {
Al.alDeleteSources(1, ref sourceId);
Al.alDeleteBuffers(1, ref bufferId);
}
#endregion Destroy()
#region Play()
/// <summary>
///
/// </summary>
public void Play() {
Al.alSourcePlay(sourceId);
}
#endregion Play()
#region Load(string fileName, bool shouldLoop)
/// <summary>
///
/// </summary>
/// <param name="fileName"></param>
/// <param name="shouldLoop"></param>
public void Load(string fileName, bool shouldLoop) {
// Load our sound
//int looping;
buffer = Alut.alutLoadMemoryFromFile(fileName, out format, out length, out frequency);
//looping = shouldLoop ? Al.AL_TRUE : Al.AL_FALSE;
Al.alGenSources(1, out sourceId);
Al.alGenBuffers(1, out bufferId);
Al.alBufferData(bufferId, format, buffer, length, (int)frequency);
Al.alSourcei(sourceId, Al.AL_BUFFER, bufferId);
//Alut.alutUnloadWAV(format, out buffer, length, frequency);
// Set the pitch
Al.alSourcef(sourceId, Al.AL_PITCH, 1.0f);
// Set the gain
Al.alSourcef(sourceId, Al.AL_GAIN, 1.0f);
// Set looping to loop
Al.alSourcei(sourceId, Al.AL_LOOPING, 0);
}
#endregion Load(string fileName, bool shouldLoop)
#region SetListenerOrientation(float fx, float fy, float fz, float ux, float uy, float uz)
/// <summary>
///
/// </summary>
/// <param name="fx"></param>
/// <param name="fy"></param>
/// <param name="fz"></param>
/// <param name="ux"></param>
/// <param name="uy"></param>
/// <param name="uz"></param>
public void SetListenerOrientation(float fx, float fy, float fz, float ux, float uy, float uz) {
//set the orientation using an array of floats
float[] vec = new float[6];
vec[0] = fx;
vec[1] = fy;
vec[2] = fz;
vec[3] = ux;
vec[4] = uy;
vec[5] = uz;
Al.alListenerfv(Al.AL_ORIENTATION, vec);
}
#endregion SetListenerOrientation(float fx, float fy, float fz, float ux, float uy, float uz)
#region SetListenerPosition(float x, float y, float z)
/// <summary>
///
/// </summary>
/// <param name="x"></param>
/// <param name="y"></param>
/// <param name="z"></param>
public void SetListenerPosition(float x, float y, float z) {
// Set the position using 3 seperate floats
Al.alListener3f(Al.AL_POSITION, x, y, z);
}
#endregion SetListenerPosition(float x, float y, float z)
#region SetProperties(float x, float y, float z, float vx, float vy, float vz)
/// <summary>
///
/// </summary>
/// <param name="x"></param>
/// <param name="y"></param>
/// <param name="z"></param>
/// <param name="vx"></param>
/// <param name="vy"></param>
/// <param name="vz"></param>
public void SetProperties(float x, float y, float z, float vx, float vy, float vz) {
// Set the sounds position and velocity
Al.alSource3f(sourceId, Al.AL_POSITION, x, y, z);
Al.alSource3f(sourceId, Al.AL_VELOCITY, vx, vy, vz);
}
#endregion SetProperties(float x, float y, float z, float vx, float vy, float vz)
#region SetSourceRelative()
// This function makes a sound source relative so all direction and velocity
// parameters become relative to the source rather than the listener. This is
// useful for background music that you want to stay constant relative to the listener
// no matter where they go.
/// <summary>
///
/// </summary>
public void SetSourceRelative() {
Al.alSourcei(sourceId, Al.AL_SOURCE_RELATIVE, Al.AL_TRUE);
}
#endregion SetSourceRelative()
#region Stop()
/// <summary>
///
/// </summary>
public void Stop() {
Al.alSourceStop(sourceId);
}
#endregion Stop()
}
}
|