Difference between revisions of "Warzone 2100"

From the Linux and Unix Users Group at Virginia Teck Wiki
Jump to: navigation, search
imported>Pew
imported>Pew
(Replaced content with "Category:Pending deletion")
Line 1: Line 1:
TODO: Move to software page
+
[[Category:Pending deletion]]
 
 
'''Warzone 2100''' is a 3D real-time strategy game with a post-apocalyptic setting. Originally a proprietary work written in C by [[w:Pumpkin Studios|Pumpkin Studios]], the source was released under the GPL-2.0 in late 2004 by the publisher [[w:Eidos Interactive|Eidos Interactive]]. Some data used by the latest version is licensed CC-BY-SA-3.0 and CC0, and and some libraries the current version links against are PD and BSD licensed. The Warzone 2100 Project (previously named the Warzone 2100 Resurrection Project) actively maintains the codebase. Gameplay is mouse-driven with some keyboard shortcuts, much like the controls for other real-time strategy games like Starcraft.
 
 
 
[[Image:Warzone_2100.png|thumb|right]]
 
 
 
== Availability ==
 
The latest stable version is available from the game's site in various formats and for various platforms. Versions packed by distributions are generally out of date.
 
 
 
== Compilation ==
 
{{Version|Debian Wheezy}}
 
 
 
{{#tag:pre|
 
sudo apt-get install build-essential bison flex zip pkg-config \
 
  qt4-dev-tools libsdl1.2-dev libtheora-dev libopenal-dev \
 
  libvorbis-dev libglew-dev libphysfs-dev libxrandr-dev \
 
  libfribidi-dev libfontconfig1-dev
 
[[ ! -d ~/prj/warzone ]] && mkdir -p ~/prj/warzone; cd ~/prj/warzone
 
wget http://downloads.sourceforge.net/project/warzone2100/releases/3.1.0/warzone2100-3.1.0.tar.xz
 
tar xf warzone2100-3.1.0.tar.xz
 
cd warzone2100-3.1.0
 
./configure
 
make
 
src/warzone2100
 
}}
 
 
 
== Videos ==
 
The lines below will download and install the in-game videos. The standard quality videos are 545 MiB, the low quality videos 162 MiB.
 
<pre>
 
function dl_vids {
 
  L=
 
  Q=
 
  while [[ $L != de && $L != en ]]; do echo -n "Language [de/en]: " && read L; done
 
  [[ $L = de ]] && Q=standard
 
  while [[ $Q != low && $Q != standard && $Q != high ]]; do echo -n "Quality [low/standard/high]: " && read Q; done
 
  wget http://downloads.sourceforge.net/project/warzone2100/warzone2100/Videos/$Q-quality-$L/sequences.wz
 
}
 
 
 
cd ~/prj/warzone
 
dl_vids
 
ln -s $(pwd -P)/sequences.wz warzone2100-3.1.0/data
 
</pre>
 
 
 
== External links ==
 
*[http://wz2100.net Warzone 2100 Project homepage]
 
 
 
[[Category:Gaming on Linux]]
 

Revision as of 06:23, 4 January 2018