Move games/minetest to games/minimal and update README.txt
8
.gitignore
vendored
@ -8,14 +8,14 @@ tags
|
|||||||
## Non-static Minetest directories
|
## Non-static Minetest directories
|
||||||
/bin/
|
/bin/
|
||||||
/games/*
|
/games/*
|
||||||
!/games/mesetint/
|
!/games/minimal/
|
||||||
/cache/
|
/cache/
|
||||||
/textures/
|
/textures/
|
||||||
/sounds/
|
/sounds/
|
||||||
/mods/*
|
/mods/*
|
||||||
!/mods/mesetint/
|
!/mods/minetest/
|
||||||
/mods/mesetint/*
|
/mods/minetest/*
|
||||||
!/mods/mesetint/mods_here.txt
|
!/mods/minetest/mods_here.txt
|
||||||
/worlds/
|
/worlds/
|
||||||
/world/
|
/world/
|
||||||
|
|
||||||
|
93
README.txt
@ -1,50 +1,75 @@
|
|||||||
Minetest-c55
|
Minetest-c55
|
||||||
---------------
|
============
|
||||||
An InfiniMiner/Minecraft inspired game.
|
|
||||||
Copyright (c) 2010-2012 Perttu Ahola <celeron55@gmail.com>
|
|
||||||
(see source files for other contributors)
|
|
||||||
|
|
||||||
Further documentation:
|
An InfiniMiner/Minecraft inspired game.
|
||||||
|
|
||||||
|
Copyright (c) 2010-2012 Perttu Ahola <celeron55@gmail.com>
|
||||||
|
and ther contributors (see source file comments and the version control log)
|
||||||
|
|
||||||
|
In case you downloaded the source code:
|
||||||
|
---------------------------------------
|
||||||
|
If you downloaded the Minetest Engine source code in which this file is
|
||||||
|
contained, you probably want to download the minetest_game project too:
|
||||||
|
https://github.com/celeron55/minetest_game/
|
||||||
|
See the README.txt in it.
|
||||||
|
|
||||||
|
Further documentation
|
||||||
----------------------
|
----------------------
|
||||||
- Website: http://celeron.55.lt/~celeron55/minetest/
|
- Website: http://c55.me/minetest/
|
||||||
- Wiki: http://celeron.55.lt/~celeron55/minetest/wiki/
|
- Wiki: http://c55.me/minetest/wiki/
|
||||||
- Forum: http://celeron.55.lt/~celeron55/minetest/forum/
|
- Forum: http://c55.me/minetest/forum/
|
||||||
|
- Github: https://github.com/celeron55/minetest/
|
||||||
- doc/ directory of source distribution
|
- doc/ directory of source distribution
|
||||||
|
|
||||||
This game is not finished:
|
This game is not finished
|
||||||
--------------------------
|
--------------------------
|
||||||
- Don't expect it to work as well as a finished game will.
|
- Don't expect it to work as well as a finished game will.
|
||||||
- Please report any bugs to me. debug.txt is useful.
|
- Please report any bugs. When doing that, debug.txt is useful.
|
||||||
|
|
||||||
Controls:
|
Default Controls
|
||||||
---------
|
-----------------
|
||||||
- See the in-game pause menu
|
- WASD: Move
|
||||||
|
- Space: Jump
|
||||||
|
- E: Go down
|
||||||
|
- Shift: Sneak
|
||||||
|
- Q: Drop item
|
||||||
|
- I: Open inventory
|
||||||
|
- Mouse: Turn/look
|
||||||
- Settable in the configuration file, see the section below.
|
- Settable in the configuration file, see the section below.
|
||||||
|
|
||||||
Map directory:
|
Paths
|
||||||
--------------
|
------
|
||||||
- Map is stored in a directory, which can be removed to generate a new map.
|
$bin - Compiled binaries
|
||||||
- There is a command-line option for it: --map-dir
|
$share - Cistributed read-only data
|
||||||
- For a RUN_IN_PLACE build, it is located in:
|
$user - User-created modifiable data
|
||||||
../world
|
|
||||||
- Otherwise something like this:
|
Windows .zip / RUN_IN_PLACE source:
|
||||||
Windows: C:\Documents and Settings\user\Application Data\minetest\world
|
$bin = bin
|
||||||
Linux: ~/.minetest/world
|
$share = .
|
||||||
OS X: ~/Library/Application Support/minetest/world
|
$user = .
|
||||||
|
|
||||||
|
Linux installed:
|
||||||
|
$bin = /usr/bin
|
||||||
|
$share = /usr/share/minetest
|
||||||
|
$user = ~/.minetest
|
||||||
|
|
||||||
|
OS X:
|
||||||
|
$bin = ?
|
||||||
|
$share = ?
|
||||||
|
$user = ~/Library/Application Support/minetest
|
||||||
|
|
||||||
|
World directory
|
||||||
|
----------------
|
||||||
|
- Worlds can be found as separate folders in:
|
||||||
|
$user/worlds/
|
||||||
|
|
||||||
Configuration file:
|
Configuration file:
|
||||||
-------------------
|
-------------------
|
||||||
- An optional configuration file can be used. See minetest.conf.example.
|
- Default location:
|
||||||
- Path to file can be passed as a parameter to the executable:
|
$user/minetest.conf
|
||||||
|
- It is created by Minetest when it is ran the first time.
|
||||||
|
- A specific file can be specified on the command line:
|
||||||
--config <path-to-file>
|
--config <path-to-file>
|
||||||
- Defaults:
|
|
||||||
- If built with -DRUN_IN_PLACE=1:
|
|
||||||
../minetest.conf
|
|
||||||
../../minetest.conf
|
|
||||||
- Otherwise something like this:
|
|
||||||
Windows: C:\Documents and Settings\user\Application Data\minetest\minetest.conf
|
|
||||||
Linux: ~/.minetest/minetest.conf
|
|
||||||
OS X: ~/Library/Application Support/minetest.conf
|
|
||||||
|
|
||||||
Command-line options:
|
Command-line options:
|
||||||
---------------------
|
---------------------
|
||||||
@ -94,7 +119,7 @@ Compiling on Windows:
|
|||||||
http://gnuwin32.sourceforge.net/downlinks/gettext.php
|
http://gnuwin32.sourceforge.net/downlinks/gettext.php
|
||||||
- This is used for other UI languages. Feel free to leave it out.
|
- This is used for other UI languages. Feel free to leave it out.
|
||||||
* And, of course, Minetest-c55:
|
* And, of course, Minetest-c55:
|
||||||
http://celeron.55.lt/~celeron55/minetest/download
|
http://c55.me/minetest/download
|
||||||
- Steps:
|
- Steps:
|
||||||
- Select a directory called DIR hereafter in which you will operate.
|
- Select a directory called DIR hereafter in which you will operate.
|
||||||
- Make sure you have CMake and a compiler installed.
|
- Make sure you have CMake and a compiler installed.
|
||||||
|
Before Width: | Height: | Size: 329 B After Width: | Height: | Size: 329 B |
Before Width: | Height: | Size: 363 B After Width: | Height: | Size: 363 B |
Before Width: | Height: | Size: 369 B After Width: | Height: | Size: 369 B |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 203 B After Width: | Height: | Size: 203 B |
Before Width: | Height: | Size: 292 B After Width: | Height: | Size: 292 B |
Before Width: | Height: | Size: 597 B After Width: | Height: | Size: 597 B |
Before Width: | Height: | Size: 604 B After Width: | Height: | Size: 604 B |
Before Width: | Height: | Size: 279 B After Width: | Height: | Size: 279 B |
Before Width: | Height: | Size: 236 B After Width: | Height: | Size: 236 B |
Before Width: | Height: | Size: 167 B After Width: | Height: | Size: 167 B |
Before Width: | Height: | Size: 224 B After Width: | Height: | Size: 224 B |
Before Width: | Height: | Size: 151 B After Width: | Height: | Size: 151 B |
Before Width: | Height: | Size: 142 B After Width: | Height: | Size: 142 B |
Before Width: | Height: | Size: 613 B After Width: | Height: | Size: 613 B |
Before Width: | Height: | Size: 249 B After Width: | Height: | Size: 249 B |
Before Width: | Height: | Size: 210 B After Width: | Height: | Size: 210 B |
Before Width: | Height: | Size: 118 B After Width: | Height: | Size: 118 B |
Before Width: | Height: | Size: 933 B After Width: | Height: | Size: 933 B |
Before Width: | Height: | Size: 830 B After Width: | Height: | Size: 830 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 539 B After Width: | Height: | Size: 539 B |
Before Width: | Height: | Size: 246 B After Width: | Height: | Size: 246 B |
Before Width: | Height: | Size: 236 B After Width: | Height: | Size: 236 B |
Before Width: | Height: | Size: 978 B After Width: | Height: | Size: 978 B |
Before Width: | Height: | Size: 874 B After Width: | Height: | Size: 874 B |
Before Width: | Height: | Size: 856 B After Width: | Height: | Size: 856 B |
Before Width: | Height: | Size: 878 B After Width: | Height: | Size: 878 B |
Before Width: | Height: | Size: 591 B After Width: | Height: | Size: 591 B |
Before Width: | Height: | Size: 936 B After Width: | Height: | Size: 936 B |
Before Width: | Height: | Size: 672 B After Width: | Height: | Size: 672 B |
Before Width: | Height: | Size: 502 B After Width: | Height: | Size: 502 B |
Before Width: | Height: | Size: 507 B After Width: | Height: | Size: 507 B |
Before Width: | Height: | Size: 395 B After Width: | Height: | Size: 395 B |
Before Width: | Height: | Size: 357 B After Width: | Height: | Size: 357 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 203 B After Width: | Height: | Size: 203 B |
Before Width: | Height: | Size: 952 B After Width: | Height: | Size: 952 B |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
Before Width: | Height: | Size: 965 B After Width: | Height: | Size: 965 B |
Before Width: | Height: | Size: 303 B After Width: | Height: | Size: 303 B |
Before Width: | Height: | Size: 410 B After Width: | Height: | Size: 410 B |
Before Width: | Height: | Size: 203 B After Width: | Height: | Size: 203 B |
Before Width: | Height: | Size: 260 B After Width: | Height: | Size: 260 B |
Before Width: | Height: | Size: 242 B After Width: | Height: | Size: 242 B |
Before Width: | Height: | Size: 366 B After Width: | Height: | Size: 366 B |
Before Width: | Height: | Size: 507 B After Width: | Height: | Size: 507 B |
Before Width: | Height: | Size: 555 B After Width: | Height: | Size: 555 B |
Before Width: | Height: | Size: 545 B After Width: | Height: | Size: 545 B |
Before Width: | Height: | Size: 542 B After Width: | Height: | Size: 542 B |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 772 B After Width: | Height: | Size: 772 B |
Before Width: | Height: | Size: 502 B After Width: | Height: | Size: 502 B |
Before Width: | Height: | Size: 233 B After Width: | Height: | Size: 233 B |
Before Width: | Height: | Size: 489 B After Width: | Height: | Size: 489 B |
Before Width: | Height: | Size: 219 B After Width: | Height: | Size: 219 B |
Before Width: | Height: | Size: 207 B After Width: | Height: | Size: 207 B |
Before Width: | Height: | Size: 182 B After Width: | Height: | Size: 182 B |
Before Width: | Height: | Size: 806 B After Width: | Height: | Size: 806 B |
Before Width: | Height: | Size: 161 B After Width: | Height: | Size: 161 B |
Before Width: | Height: | Size: 186 B After Width: | Height: | Size: 186 B |
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 264 B |
Before Width: | Height: | Size: 252 B After Width: | Height: | Size: 252 B |
Before Width: | Height: | Size: 927 B After Width: | Height: | Size: 927 B |
Before Width: | Height: | Size: 271 B After Width: | Height: | Size: 271 B |
Before Width: | Height: | Size: 216 B After Width: | Height: | Size: 216 B |
Before Width: | Height: | Size: 291 B After Width: | Height: | Size: 291 B |
Before Width: | Height: | Size: 931 B After Width: | Height: | Size: 931 B |
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 262 B |
Before Width: | Height: | Size: 203 B After Width: | Height: | Size: 203 B |
Before Width: | Height: | Size: 301 B After Width: | Height: | Size: 301 B |
Before Width: | Height: | Size: 927 B After Width: | Height: | Size: 927 B |
Before Width: | Height: | Size: 245 B After Width: | Height: | Size: 245 B |
Before Width: | Height: | Size: 203 B After Width: | Height: | Size: 203 B |
Before Width: | Height: | Size: 255 B After Width: | Height: | Size: 255 B |
Before Width: | Height: | Size: 925 B After Width: | Height: | Size: 925 B |
Before Width: | Height: | Size: 913 B After Width: | Height: | Size: 913 B |
Before Width: | Height: | Size: 917 B After Width: | Height: | Size: 917 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 518 B After Width: | Height: | Size: 518 B |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 308 B After Width: | Height: | Size: 308 B |
Before Width: | Height: | Size: 212 B After Width: | Height: | Size: 212 B |
Before Width: | Height: | Size: 201 B After Width: | Height: | Size: 201 B |
0
games/minetest/mods/default/textures/treeprop.png → games/minimal/mods/default/textures/treeprop.png
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 384 B After Width: | Height: | Size: 384 B |
Before Width: | Height: | Size: 838 B After Width: | Height: | Size: 838 B |
Before Width: | Height: | Size: 207 B After Width: | Height: | Size: 207 B |