Difference between revisions of "ALUT"

From HaskellWiki
Jump to navigation Jump to search
Line 22: Line 22:
 
: <code>git clone https://github.com/vancegroup/freealut.git</code>
 
: <code>git clone https://github.com/vancegroup/freealut.git</code>
 
* Install [https://cmake.org/ CMake]
 
* Install [https://cmake.org/ CMake]
  +
* Set the search path in such a way that there is no sh.exe in it (CMake seems to be allergic to it)
 
* Start cmake-gui
 
* Start cmake-gui
 
* Enter the directory of the freealut source code (<code>C:\Temp\freealut</code>) and the directory where you want the compile result, for example <code>C:\Temp\freealut\build</code>
 
* Enter the directory of the freealut source code (<code>C:\Temp\freealut</code>) and the directory where you want the compile result, for example <code>C:\Temp\freealut\build</code>

Revision as of 10:40, 15 October 2015

This article is a stub. You can help by expanding it.

A binding for the OpenAL Utility Toolkit


Downloads

Windows specific actions

The following must be installed first:

  • MSYS2 or MinGW/MSYS
  • OpenAL
  • The C++ package of ALUT, freealut

To install freealut:

  • Start a shell
  • Go to the directory where you want the freealut source code, for example C:\Temp
  • Fetch the source code with Git:
git clone https://github.com/vancegroup/freealut.git
  • Install CMake
  • Set the search path in such a way that there is no sh.exe in it (CMake seems to be allergic to it)
  • Start cmake-gui
  • Enter the directory of the freealut source code (C:\Temp\freealut) and the directory where you want the compile result, for example C:\Temp\freealut\build
  • Add the entries in the table below, by pressing "Add Entry" for each entry
Name Type Value
CMAKE_GENERATOR String MinGW Makefiles
OPENAL_INCLUDE_DIR Filepath the directory containing the OpenAL header file
CMAKE_INSTALL_PREFIX Filepath C:\Libraries\ALUT
  • Press "Configure"
  • Press "Generate"; this will generate a makefile
  • Edit freealut\include\AL\alut.h:
Change line 34:
#define ALUT_APIENTRY __cdecl
to:
#define ALUT_APIENTRY __stdcall
  • In the shell, go to the directory where you want the compile result, for example C:\Temp\freealut\build
  • Start the MSYS shell:
sh
  • Run the make utility:
mingw32-make install
  • Set environment variables as follows:
Set LIBRARY_DIR=C:\Libraries
Set C_INCLUDE_PATH=%LIBRARY_DIR%\ALUT\include;%C_INCLUDE_PATH%
Set LIBRARY_PATH=%LIBRARY_DIR%\ALUT\lib;%LIBRARY_PATH%
Set PATH=%LIBRARY_DIR%\ALUT\bin;%PATH%
If you need these variables more often, set them permanently.
The directory %LIBRARY_DIR%\ALUT\bin contains libalut.dll; this DLL must always be in the search path when you run an ALUT-using application.
  • Install ALUT:
cabal install alut

Additional software

  • StateVar: This package contains state variables, which are references in the IO monad, like IORefs or parts of the OpenGL state
  • OpenAL 3D sound software
  • OpenGL 3D graphics software

An alternative to ALUT might be OALWrapper