]> git.lizzy.rs Git - dragonfireclient.git/blob - doc/README.txt
8cfddb2b64de6de442ac6fdd40d555afdedb08d4
[dragonfireclient.git] / doc / README.txt
1 Minetest-c55
2 ---------------
3
4 Copyright (c) 2010 Perttu Ahola <celeron55@gmail.com>
5
6 An InfiniMiner/Minecraft inspired game.
7
8 This is a development version:
9 - Don't expect it to work as well as a finished game will.
10 - Please report any bugs to me. That way I can fix them to the next release.
11         - debug.txt is very useful when the game crashes.
12
13 Public servers:
14         kray.dy.fi :30000 (friend's server - recommended)
15         celeron.55.lt :30000 (my own server, kind of unused)
16 - If you want to run a server, I can list you on my website and in here.
17
18 Controls:
19 - WASD+mouse: Move
20 - Mouse L: Dig
21 - Mouse R: Place block
22 - Mouse Wheel: Change item
23 - F: Change item
24 - R: Toggle full view range
25
26 Configuration file:
27 - An optional configuration file can be used. See minetest.conf.example.
28 - Path to file can be passed as a parameter to the executable:
29         --config <path-to-file>
30 - If not given as a parameter, these are checked, in order:
31         ../minetest.conf
32
33 Command-line options:
34 - Use --help
35
36 Running on Windows:
37 - The working directory should be ./bin
38
39 Running on GNU/Linux:
40 - fasttest is a linux binary compiled on a recent Arch Linux installation.
41   It should run on most recent GNU/Linux distributions.
42 - Browse to the game ./bin directory and type:
43     LD_LIBRARY_PATH=. ./fasttest
44 - If it doesn't work, use wine. I aim at 100% compatibility with wine.
45
46 Compiling on GNU/Linux:
47 - You need:
48 * Irrlicht:
49         http://downloads.sourceforge.net/irrlicht/irrlicht-1.7.2.zip
50 * JThread:
51         http://research.edm.uhasselt.be/~jori/page/index.php?n=CS.Jthread
52 * zlib:
53         - Get the -dev package from your package manager.
54 - Irrlicht and JThread are very likely not to be found from your distro's
55   repository.
56 - Compiling each of them should be fairly unproblematic, though.
57
58 Compiling on Windows:
59 - You need Irrlicht, JThread and zlib, see above
60 - Be sure to
61   #define JMUTEX_CRITICALSECTION
62   in jmutex.h before compiling it. Otherwise mutexes will be very slow.
63
64 License of Minetest-c55
65 -----------------------
66
67 Minetest-c55
68 Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
69
70 This program is free software; you can redistribute it and/or modify
71 it under the terms of the GNU General Public License as published by
72 the Free Software Foundation; either version 2 of the License, or
73 (at your option) any later version.
74
75 This program is distributed in the hope that it will be useful,
76 but WITHOUT ANY WARRANTY; without even the implied warranty of
77 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
78 GNU General Public License for more details.
79
80 You should have received a copy of the GNU General Public License along
81 with this program; if not, write to the Free Software Foundation, Inc.,
82 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
83
84 Irrlicht
85 ---------------
86
87 This program uses the Irrlicht Engine. http://irrlicht.sourceforge.net/
88
89  The Irrlicht Engine License
90
91 Copyright © 2002-2005 Nikolaus Gebhardt
92
93 This software is provided 'as-is', without any express or implied
94 warranty. In no event will the authors be held liable for any damages
95 arising from the use of this software.
96
97 Permission is granted to anyone to use this software for any purpose,
98 including commercial applications, and to alter it and redistribute
99 it freely, subject to the following restrictions:
100
101    1. The origin of this software must not be misrepresented; you
102       must not claim that you wrote the original software. If you use
103           this software in a product, an acknowledgment in the product
104           documentation would be appreciated but is not required.
105    2. Altered source versions must be plainly marked as such, and must
106       not be misrepresented as being the original software.
107    3. This notice may not be removed or altered from any source
108       distribution.
109
110
111 JThread
112 ---------------
113
114 This program uses the JThread library. License for JThread follows:
115
116 Copyright (c) 2000-2006  Jori Liesenborgs (jori.liesenborgs@gmail.com)
117
118 Permission is hereby granted, free of charge, to any person obtaining a
119 copy of this software and associated documentation files (the "Software"),
120 to deal in the Software without restriction, including without limitation
121 the rights to use, copy, modify, merge, publish, distribute, sublicense,
122 and/or sell copies of the Software, and to permit persons to whom the
123 Software is furnished to do so, subject to the following conditions:
124
125 The above copyright notice and this permission notice shall be included
126 in all copies or substantial portions of the Software.
127
128 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
129 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
130 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
131 THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
132 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
133 FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
134 IN THE SOFTWARE.
135
136