Castle Wolfenstein

From ArmadeusWiki
Jump to: navigation, search

SDL portage of the 1rst (pseudo-)3D FPS in game history.

Castle Wolfenstein / Wolf4SDL
Gametype FPS
Web site http://www.stud.uni-karlsruhe.de/~uvaue/chaos/main.html
Wolf.jpg
running
Video http://www.youtube.com/v/_ZFhztB3L4c


Installation

$ make menuconfig
Package Selection for the target  --->
    Games  --->
        [*]   Wolf4SDL
$ make
# unzip wolf_3d.zip
# unzip vgafiles.zip
# unzip wlfbelpc.zip
  • rename the files in lowercase. You can use this script if you're lazzy ;-)
#!/bin/sh

for file in `ls .`; do
        if [ -f "$file" ]; then
                new_name=`echo $file |tr '[:upper:]' '[:lower:]'`
                echo "$file -> $new_name"
                mv $file $new_name
        fi
done

Usage

  • game requires OSS emulation layer of ALSA to be launched:
# modprobe snd-pcm-oss
# modprobe snd-mixer-oss
  • go in directory with game data files and launch it:
# cd somewhere/
# /usr/local/bin/wolf3d

Links