Initial upload to git.

master
dgm3333 2015-03-10 11:57:34 +00:00
commit df72a33069
18 changed files with 3436 additions and 0 deletions

26
README Normal file
View File

@ -0,0 +1,26 @@
This mod provides a layer to make use of minecraft texture packs.
It also provides basic conversions for approximately 1000 nodes which will fit the names of the .pngs found in the current minetest (1.81) and associated texture packs.
I've also provided a map_content.txt file which will enable worlds to be imported by mcimport - [url]https://forum.minetest.net/viewtopic.php?f=5&t=11146[/url]. You'll need to replace the one in mcimport with this file to fully enable mcblocks during an import.
To use the mod, download a texture pack and extract the assets folder into the mod folder.
On the first run, the mod will automatically move the files from the relevant directories into the texture folder.
NB not all texture packs are complete, so if you have missing textures, try another pack. Any existing files will be overwritten, but files which don't have a replacement won't be deleted. Please follow the licenses, so although you could also start by extracting the assets folder directly from minecraft I'm not sure that using these textures in minetest would be licensed)
Caveats:
Currently there is no functionality for the blocks (eg furnaces don't burn, chests don't work, nor do crafting tables, crops don't grow, etc)
I haven't tested for texture packs from previous versions.
The names of nodes within the mod aren't exactly the same as the newer style of minecraft, there were some inconsistencies in my sources and it took me a while to realise what was correct. Anyone who wishes too is welcome to rename them all and push to git (but you'll have to do it in one go, I'm not going to import them piecemeal).
-- TODO:
-- Correctly display Fences, Doors, Gates, Beds, Rails, animated blocks
-- Enable Special Block Functions (doors, chests, enchanting table, crafting table/workbench, furnace, anvil, cake, signs)
-- correct plants: Double-height plants, tallgrass, waterlillies, mushrooms, growing Crops
--More Difficult:
-- utilise 3D models: /assets/minecraft/models, and 3D textures /assets/minecraft/textures/entity
-- Functioning Redstone
-- Mobs

14
TPTT.sh Executable file
View File

@ -0,0 +1,14 @@
cd "/home/david/.minetest/mods/mcimportpy"
rm -r "/home/david/.minetest/worlds/mcw/convert/TPTT-theltsoh"
mkdir "/home/david/.minetest/worlds/mcw/convert/TPTT-theltsoh"
cp "/home/david/.minetest/worlds/mcw/convert/world.mt" "/home/david/.minetest/worlds/mcw/convert/TPTT-theltsoh"
cp "/home/david/.minetest/worlds/mcw/convert/auth.txt" "/home/david/.minetest/worlds/mcw/convert/TPTT-theltsoh"
cp "/home/david/.minetest/worlds/mcw/convert/map_meta.txt" "/home/david/.minetest/worlds/mcw/convert/TPTT-theltsoh"
python3 mcimport.py "/home/david/.minetest/worlds/mcw/TPTT-theltsoh" "/home/david/.minetest/worlds/mcw/convert/TPTT-theltsoh"
cp "/home/david/.minetest/worlds/mcw/convert/TPTT-theltsoh/map.sqlite" "/home/david/.minetest/worlds/TPTT-theltsoh"
cp "/home/david/.minetest/worlds/mcw/convert/TPTT-theltsoh/map_meta.txt" "/home/david/.minetest/worlds/TPTT-theltsoh"
echo -n "Press [ENTER] to continue,...: "
read var_name

1
auth.txt Normal file
View File

@ -0,0 +1 @@
singleplayer::server,travelpads,shout,fly,password,creative,bring,interact,teleport,ban,privs,fast,basic_privs,home,rollback,kick,give,settime,travelpoints:1424212249

3
depends.txt Normal file
View File

@ -0,0 +1,3 @@
default
stairs
fire

4
gcl.sh Executable file
View File

@ -0,0 +1,4 @@
cd ~/.minetest/mods/mcimportpy
python ./generateCommandLine.py
gedit /home/david/.minetest/worlds/mcw/convert/convertAll.sh

2033
init.lua Normal file

File diff suppressed because it is too large Load Diff

2
li.sh Executable file
View File

@ -0,0 +1,2 @@
cd /home/david/programs/liclipse
./LiClipse

1317
map_content.txt Normal file

File diff suppressed because it is too large Load Diff

26
map_meta.txt Normal file
View File

@ -0,0 +1,26 @@
chunksize = 5
mg_biome_np_heat = {
flags = defaults
lacunarity = 2
octaves = 3
offset = 50
persistence = 0.5
scale = 50
seed = 5349
spread = (500,500,500)
}
mg_biome_np_humidity = {
flags = defaults
lacunarity = 2
octaves = 3
offset = 50
persistence = 0.5
scale = 50
seed = 842
spread = (500,500,500)
}
mg_flags = flat, light
mg_name = singlenode
seed = 8272917064822957149
water_level = 1
[end_of_params]

BIN
textures/back.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 451 B

BIN
textures/down.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 414 B

BIN
textures/front.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 327 B

BIN
textures/left.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 271 B

BIN
textures/mcblocks.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 537 B

BIN
textures/right.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 412 B

BIN
textures/screwdriver.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 182 B

BIN
textures/up.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 341 B

10
world.mt Normal file
View File

@ -0,0 +1,10 @@
gameid = minetest
backend = sqlite3
load_mod_mcblocks = true
load_mod_mapit = true
load_mod_unified_inventory = true
load_mod_travelpoints = true
load_mod_walking_light = true