1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta name="generator" content=
"HTML Tidy for Linux/x86 (vers 1 September 2005), see www.w3.org">
<title>jigzo, an OpenGL jigsaw game</title>
<link rel="stylesheet" type="text/css" href="css/style.css" media=
"all">
</head>
<body>
<h1>jigzo, an OpenGL jigsaw game</h1>
<h2>Version 0.6.1</h2>
<p>
jigzo (formerly glpuzzle) is a jigsaw puzzle game. Choose from 12 puzzles of increasing difficulty, or create your own puzzles. jigzo uses OpenGL for smooth movement and display.
</p>
<img src=jigzo_screenshot_50.png>
<p>Copyright (C) 2005-2008 Maarten de Boer</p>
<p><tt><maarten _at_ resorama.com></tt></p>
<h3>Download</h3>
<h4>GNU/Linux / Source-code</h4>
<p><a href="jigzo-0.6.1.tgz">jigzo-0.6.1.tgz</a></p>
<p>See compilation instructions below.</p>
<h4>Microsoft Windows</h4>
<p><a href="jigzo-0_6_1.zip">jigzo-0_6_1.zip</a> (source+exe)</p>
<p><a href="jigzo-0_6_1-setup.exe">jigzo-0_6_1-setup.exe</a> (installer)</p>
<h2>Usage</h2>
<h3>General info</h3>
<p>jigzo requires a OpenGL hardware accelaration and runs at
1024x768 only.</p>
<p>jigzo uses cross-platform libraries and has been succesfully build
and run on Linux, MacOSX and Windows XP.</p>
<p>The downloads include 12 puzzles of increasing difficulties. You can create your own additional puzzles by uploading images at
<a href=http://mtg62.upf.es/jigzomaker/>http://mtg62.upf.es/jigzomaker/</a>
</p>
<h3>Command line arguments</h3>
<p><pre>
jigzo [-h | -w]
-h show this usage info
-w window mode (default is fullscreen)
</pre></p>
<h2>Compilation (GNU/Linux)</h2>
<p>You need to have the following libraries installed: GL, png,
jpeg, SDL, and optionally SDL_mixer</p>
<p>Debian/Ubuntu users can do:</p>
<p><pre>
$ apt-get install libjpeg62-dev libpng12-dev libsdl1.2-dev libsdl-mixer1.2-dev
</pre></p>
<p>Compile jigzo with</p>
<p><pre>
$ make
</pre></p>
<p>You can directly execute the resulting binary jigzo, or see
below.</p>
<h2>Installation (GNU/Linux)</h2>
<p>jigzo can be run from the current directory, or be installed
running</p>
<p><pre>
$ make install
</pre></p>
<p>as root. By default, jigzo will be installed in /usr/local. To
install in /usr, use</p>
<p><pre>
$ make install PREFIX=/usr
</pre></p>
<h2>License</h2>
<p>This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.</p>
<p>This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.</p>
<h2>Thanks</h2>
<p>To Martijn Loos for the sounds, and to Nina for
beta-testing.</p>
</body>
</html>
|