Files
simgear/simgear/sound
jmt 8962d9b293 Following discussion with Tat and Erik, update how we handle ALUT on Mac; specifically, switch to using an ALUT.framework built from FreeALUT. The ALUT framework is available (initially) from:
http://files.goneabitbursar.com/fg/alut-osx-universal.zip

for testing purposes; autoconf integration and an official home for the
framework will follow once this approach has been tested and confirmed as
sane by other Mac developers!
2010-05-05 09:05:23 +02:00
..
2004-06-15 12:47:52 +00:00
2009-10-31 22:55:26 +01:00
2010-01-25 14:35:45 +01:00
2009-11-24 14:17:54 +01:00
2009-11-24 14:17:54 +01:00
2009-12-20 11:46:28 +01:00

All code in this directory uses the OpenAL coordinate system for maximum
useablity. The OpenAL coordinate system is equal to that of OpenGL with the
main difference that objects behind the viewer can still be heard:
 - positive x is to the right
 - positive y is upwards
 - positive z is towards the back of the viewer/listener

see: http://www.falloutsoftware.com/tutorials/gl/cartesian.gif

All positions are in cartesian space with a unit length of one meter.

Velocities are three tuples indicating speed and direction in the same space
as positions do (so they are not in the models local space).


There is one SoundMgr that handles multiple SoundGroup classes.
Each SoundGroup class handles multiple SoundSample classes.

A SoundSample class defines the properties of each individual sound like 
pitch, volume, position, orientation, sound cone paramters, etc. This 
class can be created all over the code but *has* to be assigned to a 
SampelGroup before you can hear it. Current sample groups are "atc", 
"avionics" and "fx" for the master airplane effects. The position of a 
SoundSample is relative to (0,0,0) of the model and hence relative to 
the base position of the SampleGroup.

A SampleGroup class has to be assigned to the SoundManager to be heard 
and holds data of a group of samples (maybe 'sample cloud' might be a 
good description). This class has to be created for each individual 
model that can produce one or more sounds. The SampleGroup class can be 
altered by modifying it's volume, position and orientation. 
Repositioning this class also means repositioning all it's associated 
samples. Altering it's orientation also means repositioning the absolute 
(real world) position (and orientation) of the associated sound samples.

The SoundMaganer can be repositioned which basically means moving the 
listener around. It's also possible to alter the listener orientation en 
velocity with this class, together with the master volume.