-
-
Notifications
You must be signed in to change notification settings - Fork 491
OpenAL_Configuration
This is a little writeup about the configuration of the OpenAL SI implementation which is used on Linux, BSD and others (MacOS/X and Windows have their own implementations which are different). Unfortunately there seems to be no documentation about how to configure ALSA yet, so we provide this as an interim solution.
OpenAL is first trying to read a user settings from an .openalrc in the users home directory if it exists ($HOME/.openalrc). If it can't be found then /etc/openalrc is used. If this also fails the following default settings apply:
(define speaker-num 2)
(define display-banner #t)
(define source-gain 1.0)
This is from the source code, however there seems to be no code to handle display-banner and source-gain...
The settings files are written in LISP (Wikipedia about LISP). Variables get defined with the define command. Example:
(define somevar 5.0)
(define someStringVar
“hello
”)
(define someList '(id1 id2 id3))
Normal Linux config, try ALSA and dsp, then fallback to arts and esd or no audio. Stereo sound in CD Quality (44,1khz):
(define devices '(alsa native arts esd null))
(define alsa-device
“default
”)
(define speaker-num 2)
(define sampling-rate 44100)
ALSA surround sound with a 5.1 sound system and 48khz high quality audio:
(define devices '(alsa))
(define speaker-num 6)
(define alsa-out-device
“surround51:0,0
”)
(define alsa-in-device
“hw:0,0
”)
(define sampling-rate 48000)
-
devices contains a list of devices which are tried as OpenAL output devices. Possible values are:
- dsp - OSS (Open Sound System) driver
- native - Preferred driver for the platform (will load a driver for Darwin, morphos, Solaris, windows, BSD, ALSA or dsp)
- alsa - ALSA (Advanced Linux Sound System) driver, only available on Linux
- arts - ARTS, the KDE Sound Daemon
- dmedia - DMEDIA, seems to be the irix sound api...
- esd - ESD (Enlightenment Sound Daemon), often found on GNOME installations
- sdl - SDL (Simple Direct Media Layer), uses the SDL library for sound output
- null - NULL, no output
- waveout - Writes to .wav files
- direcion - unclear...
- sampling-rate - The sample rate used for mixing and sound output
- speaker-num - The number of speakers (2 for stereo speakers and headsets, 4,5,6 are supported on alsa for surround sound)
- source-rolloff-factor - default rolloff factor (1)
- device-params - unclear...
- alsa-device - The alsa device used for sound input and ouput (used when alsa-out-device or alsa-in-device is not defined)
- alsa-out-device - The alsa device used for sound output
- alsa-in-device - The alsa device used for sound input
- lin-dsp-path - Path to the audio device (default /dev/dsp)
- lin-dsp-read-path - Path for audio output device
- dmedia-out-device
- dmedia-in-device
- dmedia-rear-out-device
- native-backend-debug - set to true for debugging
Category:For Users
Home
Guidelines
Game Mechanics
Tools
Engine
- Cameras in other games
- Collision
- Configuration File
- Console
- Cutscenes
- Game_Engine
- Lighting
- Map_transformer
- Portables
- SceneGraph
- Scripting
Specifications
Milestones
- Milestone 1 Analysis
- Milestone 2 Design Document
- Milestone 2 Design Document Old
- Milestone 3 Design Document
Building (mostly outdated)
- INSTALL.md
- Building
- Building on macOS
- Building SuperTux
- Building on Windows
- Building with MXE (cross-compile)
Meetings