1
0
mirror of https://github.com/moparisthebest/minetest synced 2025-01-02 17:28:04 -05:00

Move games/minetest to games/minimal and update README.txt

This commit is contained in:
Perttu Ahola 2012-03-26 23:18:17 +03:00
parent bd9912213f
commit 862d76b617
108 changed files with 64 additions and 39 deletions
.gitignoreREADME.txt
games/minimal/mods
bucket
default
init.lua
textures
crack.pngdefault_apple.pngdefault_book.pngdefault_bookshelf.pngdefault_brick.pngdefault_cactus_side.pngdefault_cactus_top.pngdefault_chest_front.pngdefault_chest_lock.pngdefault_chest_side.pngdefault_chest_top.pngdefault_clay.pngdefault_clay_brick.pngdefault_clay_lump.pngdefault_cloud.pngdefault_coal_lump.pngdefault_cobble.pngdefault_dirt.pngdefault_fence.pngdefault_furnace_front.pngdefault_furnace_side.pngdefault_glass.pngdefault_grass.pngdefault_grass_footsteps.pngdefault_grass_side.pngdefault_gravel.pngdefault_iron_lump.pngdefault_junglegrass.pngdefault_jungletree.pngdefault_jungletree_top.pngdefault_ladder.pngdefault_lava.pngdefault_leaves.pngdefault_mese.pngdefault_mineral_coal.pngdefault_mineral_iron.pngdefault_mossycobble.pngdefault_nc_back.pngdefault_nc_front.pngdefault_nc_rb.pngdefault_nc_side.pngdefault_paper.pngdefault_papyrus.pngdefault_rail.pngdefault_rail_crossing.pngdefault_rail_curved.pngdefault_rail_t_junction.pngdefault_sand.pngdefault_sandstone.pngdefault_sapling.pngdefault_scorched_stuff.pngdefault_sign_wall.pngdefault_steel_block.pngdefault_steel_ingot.pngdefault_stick.pngdefault_stone.pngdefault_tnt_bottom.pngdefault_tnt_side.pngdefault_tnt_top.pngdefault_tool_mesepick.pngdefault_tool_steelaxe.pngdefault_tool_steelpick.pngdefault_tool_steelshovel.pngdefault_tool_steelsword.pngdefault_tool_stoneaxe.pngdefault_tool_stonepick.pngdefault_tool_stoneshovel.pngdefault_tool_stonesword.pngdefault_tool_woodaxe.pngdefault_tool_woodpick.pngdefault_tool_woodshovel.pngdefault_tool_woodsword.pngdefault_torch.pngdefault_torch_on_ceiling.pngdefault_torch_on_floor.pngdefault_tree.pngdefault_tree_top.pngdefault_water.pngdefault_wood.pngheart.pngplayer.pngplayer_back.pngtreeprop.pngwieldhand.png
experimental
give_initial_stuff
legacy

8
.gitignore vendored
View File

@ -8,14 +8,14 @@ tags
## Non-static Minetest directories
/bin/
/games/*
!/games/mesetint/
!/games/minimal/
/cache/
/textures/
/sounds/
/mods/*
!/mods/mesetint/
/mods/mesetint/*
!/mods/mesetint/mods_here.txt
!/mods/minetest/
/mods/minetest/*
!/mods/minetest/mods_here.txt
/worlds/
/world/

View File

@ -1,50 +1,75 @@
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/
- Wiki: http://celeron.55.lt/~celeron55/minetest/wiki/
- Forum: http://celeron.55.lt/~celeron55/minetest/forum/
- Website: http://c55.me/minetest/
- Wiki: http://c55.me/minetest/wiki/
- Forum: http://c55.me/minetest/forum/
- Github: https://github.com/celeron55/minetest/
- 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.
- Please report any bugs to me. debug.txt is useful.
- Please report any bugs. When doing that, debug.txt is useful.
Controls:
---------
- See the in-game pause menu
Default Controls
-----------------
- 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.
Map directory:
--------------
- Map is stored in a directory, which can be removed to generate a new map.
- There is a command-line option for it: --map-dir
- For a RUN_IN_PLACE build, it is located in:
../world
- Otherwise something like this:
Windows: C:\Documents and Settings\user\Application Data\minetest\world
Linux: ~/.minetest/world
OS X: ~/Library/Application Support/minetest/world
Paths
------
$bin - Compiled binaries
$share - Cistributed read-only data
$user - User-created modifiable data
Windows .zip / RUN_IN_PLACE source:
$bin = bin
$share = .
$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:
-------------------
- An optional configuration file can be used. See minetest.conf.example.
- Path to file can be passed as a parameter to the executable:
- Default location:
$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>
- 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:
---------------------
@ -94,7 +119,7 @@ Compiling on Windows:
http://gnuwin32.sourceforge.net/downlinks/gettext.php
- This is used for other UI languages. Feel free to leave it out.
* And, of course, Minetest-c55:
http://celeron.55.lt/~celeron55/minetest/download
http://c55.me/minetest/download
- Steps:
- Select a directory called DIR hereafter in which you will operate.
- Make sure you have CMake and a compiler installed.

View File

Before

(image error) Size: 329 B

After

(image error) Size: 329 B

View File

Before

(image error) Size: 363 B

After

(image error) Size: 363 B

View File

Before

(image error) Size: 1.1 KiB

After

(image error) Size: 1.1 KiB

View File

Before

(image error) Size: 308 B

After

(image error) Size: 308 B

View File

Before

(image error) Size: 212 B

After

(image error) Size: 212 B

View File

Before

(image error) Size: 1.0 KiB

After

(image error) Size: 1.0 KiB

View File

Before

(image error) Size: 384 B

After

(image error) Size: 384 B

View File

Before

(image error) Size: 207 B

After

(image error) Size: 207 B

Some files were not shown because too many files have changed in this diff Show More