Just to make some things clear --
Wine
Is
Not an
Emulator
Wine is an Open Source implementation of the Windows API on top of X and Unix.
As a small example, when a Windows application (Planeshift for Windows) wants to open and read a file, it calls a Windows API function
CreateFile(). There is no such function in Linux, so Wine translates it into an
open() function call. No emulation, just translation of function calls.
Sound is fully supported in Wine, just DirectSound support is not very good.
Planeshift is an OSS project and uses other OSS libraries, like OpenGL for graphics and OpenAL for sound and only basic system calls require Windows API. If the Linux version wouldn\'t be available, I guess Planeshift could be called \"Designed for Wine\"
