Difference between revisions of "OpenAL"

From HaskellWiki
Jump to navigation Jump to search
m (Update OpenAL darcs repository link)
(Removed an obsolete tutorial link and added three new ones)
Line 34: Line 34:
 
== Tutorials ==
 
== Tutorials ==
   
There are several tutorials for the C version of OpenAL:
+
There are several OpenAL tutorials for other programming languages:
*[http://www.edenwaith.com/products/pige/tutorials/openal.php OpenAL Tutorial at Edenwaith]
+
* [http://www.edenwaith.com/products/pige/tutorials/openal.php OpenAL Tutorial at Edenwaith] (C)
*[http://www.devmaster.net/articles/openal-tutorials/lesson1.php OpenAL Tutorial at DevMaster.net]
+
* [http://pielot.org/2010/12/14/openal-on-android/ OpenAL on Android] (Java)
  +
* [http://lwjgl.org/wiki/index.php?title=Main_Page The LWJGL Wiki] (Java)
  +
* [http://java.net/projects/joal-demos/ Java OpenAL demos]
   
   
Line 48: Line 50:
 
* [http://hackage.haskell.org/package/Tensor Tensor] This package contains tensor data types and their instances for some basic type classes.
 
* [http://hackage.haskell.org/package/Tensor Tensor] This package contains tensor data types and their instances for some basic type classes.
 
* [[OpenGL]] 3D graphics software
 
* [[OpenGL]] 3D graphics software
  +
   
 
== More information ==
 
== More information ==

Revision as of 11:30, 8 January 2012

Introduction

OpenAL (short for Open Audio Library) is a library for creation of a virtual 3D world of sound. The application programmer can specify the location, the speed and the direction of the sources of sounds and of the listener. This is easily combined with a 3D world created with OpenGL and can very well be used to create games. The sounds must be provided in the form of samples; there is no support for MIDI.

An addition to this library is the OpenAL Utility Toolkit (ALUT). See also the Wikipedia article on OpenAL.


Installation

Download the OpenAL package from Hackage or with Darcs:

  darcs get http://code.haskell.org/OpenAL/OpenAL/

Windows specific actions

If you downloaded from Hackage, you might want to know, How to unpack a tar file in windows

Create a directory for include files, without spaces in the name, for example:

  C:\usr\local\include

Define the environment variable C_INCLUDE_PATH and assign it the name of the include directory (the full path), for example, in a .bat file, before the build commands:

  Set C_INCLUDE_PATH=C:\usr\local\include

As you will need this variable more often, it is best to set it globally. Copy the directory include\AL from the package to

  C:\usr\local\include\AL


For all platforms

See How to install a Cabal package.


Tutorials

There are several OpenAL tutorials for other programming languages:


Examples


Additional software

  • StateVar: This package contains state variables, which are references in the IO monad, like IORefs or parts of the OpenGL state
  • ObjectName: Explicitly handled object names. This tiny package contains the class ObjectName, which corresponds to the general notion of explicitly handled identifiers for API objects, e.g. a texture object name in OpenGL or a buffer object name in OpenAL
  • Tensor This package contains tensor data types and their instances for some basic type classes.
  • OpenGL 3D graphics software


More information


For questions