2011-09-11 18:16:07 +02:00
|
|
|
/*
|
2011-06-17 21:20:15 +02:00
|
|
|
Minetest-c55
|
|
|
|
Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// For g_settings
|
|
|
|
#include "main.h"
|
|
|
|
|
|
|
|
#include "content_mapnode.h"
|
|
|
|
#include "mapnode.h"
|
2011-06-17 23:46:50 +02:00
|
|
|
#include "content_nodemeta.h"
|
2011-10-12 12:53:38 +02:00
|
|
|
#include "settings.h"
|
2011-11-14 20:41:30 +01:00
|
|
|
#include "nodedef.h"
|
2011-06-17 21:20:15 +02:00
|
|
|
|
2011-08-15 10:51:33 +02:00
|
|
|
#define WATER_ALPHA 160
|
|
|
|
|
2011-08-16 19:56:57 +02:00
|
|
|
#define WATER_VISC 1
|
|
|
|
#define LAVA_VISC 7
|
|
|
|
|
2011-11-13 14:45:38 +01:00
|
|
|
void setConstantMaterialProperties(MaterialProperties &mprop, float time)
|
|
|
|
{
|
|
|
|
mprop.diggability = DIGGABLE_CONSTANT;
|
|
|
|
mprop.constant_time = time;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setStoneLikeMaterialProperties(MaterialProperties &mprop, float toughness)
|
|
|
|
{
|
|
|
|
mprop.diggability = DIGGABLE_NORMAL;
|
|
|
|
mprop.weight = 5.0 * toughness;
|
|
|
|
mprop.crackiness = 1.0;
|
|
|
|
mprop.crumbliness = -0.1;
|
|
|
|
mprop.cuttability = -0.2;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setDirtLikeMaterialProperties(MaterialProperties &mprop, float toughness)
|
|
|
|
{
|
|
|
|
mprop.diggability = DIGGABLE_NORMAL;
|
2011-11-13 14:54:08 +01:00
|
|
|
mprop.weight = toughness * 1.2;
|
2011-11-13 14:45:38 +01:00
|
|
|
mprop.crackiness = 0;
|
|
|
|
mprop.crumbliness = 1.2;
|
|
|
|
mprop.cuttability = -0.4;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setGravelLikeMaterialProperties(MaterialProperties &mprop, float toughness)
|
|
|
|
{
|
|
|
|
mprop.diggability = DIGGABLE_NORMAL;
|
|
|
|
mprop.weight = toughness * 2.0;
|
2011-11-14 21:35:11 +01:00
|
|
|
mprop.crackiness = 0.2;
|
2011-11-13 14:45:38 +01:00
|
|
|
mprop.crumbliness = 1.5;
|
|
|
|
mprop.cuttability = -1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setWoodLikeMaterialProperties(MaterialProperties &mprop, float toughness)
|
|
|
|
{
|
|
|
|
mprop.diggability = DIGGABLE_NORMAL;
|
|
|
|
mprop.weight = toughness * 1.0;
|
2011-11-13 14:54:08 +01:00
|
|
|
mprop.crackiness = 0.75;
|
2011-11-13 14:45:38 +01:00
|
|
|
mprop.crumbliness = -1.0;
|
2011-11-13 14:54:08 +01:00
|
|
|
mprop.cuttability = 1.5;
|
2011-11-13 14:45:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void setLeavesLikeMaterialProperties(MaterialProperties &mprop, float toughness)
|
|
|
|
{
|
|
|
|
mprop.diggability = DIGGABLE_NORMAL;
|
|
|
|
mprop.weight = -0.5 * toughness;
|
|
|
|
mprop.crackiness = 0;
|
|
|
|
mprop.crumbliness = 0;
|
|
|
|
mprop.cuttability = 2.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setGlassLikeMaterialProperties(MaterialProperties &mprop, float toughness)
|
|
|
|
{
|
|
|
|
mprop.diggability = DIGGABLE_NORMAL;
|
2011-11-13 14:54:08 +01:00
|
|
|
mprop.weight = 0.1 * toughness;
|
2011-11-13 14:45:38 +01:00
|
|
|
mprop.crackiness = 2.0;
|
|
|
|
mprop.crumbliness = -1.0;
|
|
|
|
mprop.cuttability = -1.0;
|
|
|
|
}
|
2011-06-17 21:20:15 +02:00
|
|
|
|
2011-09-07 00:19:48 +02:00
|
|
|
/*
|
|
|
|
A conversion table for backwards compatibility.
|
|
|
|
Maps <=v19 content types to current ones.
|
|
|
|
Should never be touched.
|
|
|
|
*/
|
2011-07-31 01:20:40 +02:00
|
|
|
content_t trans_table_19[21][2] = {
|
2011-07-23 15:55:26 +02:00
|
|
|
{CONTENT_GRASS, 1},
|
|
|
|
{CONTENT_TREE, 4},
|
|
|
|
{CONTENT_LEAVES, 5},
|
|
|
|
{CONTENT_GRASS_FOOTSTEPS, 6},
|
|
|
|
{CONTENT_MESE, 7},
|
|
|
|
{CONTENT_MUD, 8},
|
|
|
|
{CONTENT_CLOUD, 10},
|
|
|
|
{CONTENT_COALSTONE, 11},
|
|
|
|
{CONTENT_WOOD, 12},
|
|
|
|
{CONTENT_SAND, 13},
|
|
|
|
{CONTENT_COBBLE, 18},
|
|
|
|
{CONTENT_STEEL, 19},
|
|
|
|
{CONTENT_GLASS, 20},
|
|
|
|
{CONTENT_MOSSYCOBBLE, 22},
|
|
|
|
{CONTENT_GRAVEL, 23},
|
2011-07-23 18:04:37 +02:00
|
|
|
{CONTENT_SANDSTONE, 24},
|
|
|
|
{CONTENT_CACTUS, 25},
|
|
|
|
{CONTENT_BRICK, 26},
|
|
|
|
{CONTENT_CLAY, 27},
|
|
|
|
{CONTENT_PAPYRUS, 28},
|
|
|
|
{CONTENT_BOOKSHELF, 29},
|
2011-07-23 15:55:26 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
MapNode mapnode_translate_from_internal(MapNode n_from, u8 version)
|
|
|
|
{
|
|
|
|
MapNode result = n_from;
|
|
|
|
if(version <= 19)
|
|
|
|
{
|
|
|
|
content_t c_from = n_from.getContent();
|
|
|
|
for(u32 i=0; i<sizeof(trans_table_19)/sizeof(trans_table_19[0]); i++)
|
|
|
|
{
|
|
|
|
if(trans_table_19[i][0] == c_from)
|
|
|
|
{
|
|
|
|
result.setContent(trans_table_19[i][1]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
MapNode mapnode_translate_to_internal(MapNode n_from, u8 version)
|
|
|
|
{
|
|
|
|
MapNode result = n_from;
|
|
|
|
if(version <= 19)
|
|
|
|
{
|
|
|
|
content_t c_from = n_from.getContent();
|
|
|
|
for(u32 i=0; i<sizeof(trans_table_19)/sizeof(trans_table_19[0]); i++)
|
|
|
|
{
|
|
|
|
if(trans_table_19[i][1] == c_from)
|
|
|
|
{
|
|
|
|
result.setContent(trans_table_19[i][0]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-11-13 09:57:55 +01:00
|
|
|
// See header for description
|
2011-11-14 20:41:30 +01:00
|
|
|
void content_mapnode_init(ITextureSource *tsrc, IWritableNodeDefManager *nodemgr)
|
2011-06-17 21:20:15 +02:00
|
|
|
{
|
2011-11-13 23:19:48 +01:00
|
|
|
if(tsrc == NULL)
|
2011-11-13 09:57:55 +01:00
|
|
|
dstream<<"INFO: Initial run of content_mapnode_init with "
|
2011-11-13 23:19:48 +01:00
|
|
|
"tsrc=NULL. If this segfaults, "
|
2011-11-13 09:57:55 +01:00
|
|
|
"there is a bug with something not checking for "
|
|
|
|
"the NULL value."<<std::endl;
|
|
|
|
else
|
|
|
|
dstream<<"INFO: Full run of content_mapnode_init with "
|
2011-11-13 23:19:48 +01:00
|
|
|
"tsrc!=NULL"<<std::endl;
|
2011-11-13 09:57:55 +01:00
|
|
|
|
2011-06-17 21:20:15 +02:00
|
|
|
// Read some settings
|
2011-10-12 12:53:38 +02:00
|
|
|
bool new_style_water = g_settings->getBool("new_style_water");
|
|
|
|
bool new_style_leaves = g_settings->getBool("new_style_leaves");
|
|
|
|
bool invisible_stone = g_settings->getBool("invisible_stone");
|
2011-11-03 22:06:57 +01:00
|
|
|
bool opaque_water = g_settings->getBool("opaque_water");
|
2011-06-17 21:20:15 +02:00
|
|
|
|
2011-07-23 15:55:26 +02:00
|
|
|
content_t i;
|
2011-06-17 21:20:15 +02:00
|
|
|
ContentFeatures *f = NULL;
|
|
|
|
|
|
|
|
i = CONTENT_STONE;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "stone.png");
|
|
|
|
f->setInventoryTextureCube("stone.png", "stone.png", "stone.png", tsrc);
|
2011-06-17 21:20:15 +02:00
|
|
|
f->param_type = CPT_MINERAL;
|
|
|
|
f->is_ground_content = true;
|
2011-10-18 10:31:23 +02:00
|
|
|
f->often_contains_mineral = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(CONTENT_COBBLE)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setStoneLikeMaterialProperties(f->material, 1.0);
|
2011-06-25 03:25:14 +02:00
|
|
|
if(invisible_stone)
|
|
|
|
f->solidness = 0; // For debugging, hides regular stone
|
2011-06-17 21:20:15 +02:00
|
|
|
|
|
|
|
i = CONTENT_GRASS;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "mud.png^grass_side.png");
|
|
|
|
f->setTexture(tsrc, 0, "grass.png");
|
|
|
|
f->setTexture(tsrc, 1, "mud.png");
|
2011-06-17 21:20:15 +02:00
|
|
|
f->param_type = CPT_MINERAL;
|
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(CONTENT_MUD)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setDirtLikeMaterialProperties(f->material, 1.0);
|
2011-06-17 21:20:15 +02:00
|
|
|
|
|
|
|
i = CONTENT_GRASS_FOOTSTEPS;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "mud.png^grass_side.png");
|
|
|
|
f->setTexture(tsrc, 0, "grass_footsteps.png");
|
|
|
|
f->setTexture(tsrc, 1, "mud.png");
|
2011-06-17 21:20:15 +02:00
|
|
|
f->param_type = CPT_MINERAL;
|
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(CONTENT_MUD)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setDirtLikeMaterialProperties(f->material, 1.0);
|
2011-06-17 21:20:15 +02:00
|
|
|
|
|
|
|
i = CONTENT_MUD;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "mud.png");
|
|
|
|
f->setInventoryTextureCube("mud.png", "mud.png", "mud.png", tsrc);
|
2011-06-17 21:20:15 +02:00
|
|
|
f->param_type = CPT_MINERAL;
|
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setDirtLikeMaterialProperties(f->material, 1.0);
|
2011-06-17 21:20:15 +02:00
|
|
|
|
|
|
|
i = CONTENT_SAND;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "sand.png");
|
|
|
|
f->setInventoryTextureCube("sand.png", "sand.png", "sand.png", tsrc);
|
2011-06-17 21:20:15 +02:00
|
|
|
f->param_type = CPT_MINERAL;
|
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setDirtLikeMaterialProperties(f->material, 1.0);
|
2011-06-17 21:20:15 +02:00
|
|
|
|
2011-06-25 03:25:14 +02:00
|
|
|
i = CONTENT_GRAVEL;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "gravel.png");
|
|
|
|
f->setInventoryTextureCube("gravel.png", "gravel.png", "gravel.png", tsrc);
|
2011-06-25 03:25:14 +02:00
|
|
|
f->param_type = CPT_MINERAL;
|
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setGravelLikeMaterialProperties(f->material, 1.0);
|
2011-06-25 03:25:14 +02:00
|
|
|
|
2011-06-26 12:24:32 +02:00
|
|
|
i = CONTENT_SANDSTONE;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "sandstone.png");
|
|
|
|
f->setInventoryTextureCube("sandstone.png", "sandstone.png", "sandstone.png", tsrc);
|
2011-06-26 12:24:32 +02:00
|
|
|
f->param_type = CPT_MINERAL;
|
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(CONTENT_SAND)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setDirtLikeMaterialProperties(f->material, 1.0);
|
2011-06-26 12:24:32 +02:00
|
|
|
|
|
|
|
i = CONTENT_CLAY;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "clay.png");
|
|
|
|
f->setInventoryTextureCube("clay.png", "clay.png", "clay.png", tsrc);
|
2011-06-26 12:24:32 +02:00
|
|
|
f->param_type = CPT_MINERAL;
|
|
|
|
f->is_ground_content = true;
|
|
|
|
f->dug_item = std::string("CraftItem lump_of_clay 4");
|
2011-11-13 14:45:38 +01:00
|
|
|
setDirtLikeMaterialProperties(f->material, 1.0);
|
2011-06-26 12:24:32 +02:00
|
|
|
|
|
|
|
i = CONTENT_BRICK;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "brick.png");
|
|
|
|
f->setInventoryTextureCube("brick.png", "brick.png", "brick.png", tsrc);
|
2011-06-26 12:24:32 +02:00
|
|
|
f->param_type = CPT_MINERAL;
|
|
|
|
f->is_ground_content = true;
|
|
|
|
f->dug_item = std::string("CraftItem clay_brick 4");
|
2011-11-13 14:45:38 +01:00
|
|
|
setStoneLikeMaterialProperties(f->material, 1.0);
|
2011-06-26 12:24:32 +02:00
|
|
|
|
2011-06-17 21:20:15 +02:00
|
|
|
i = CONTENT_TREE;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "tree.png");
|
|
|
|
f->setTexture(tsrc, 0, "tree_top.png");
|
|
|
|
f->setTexture(tsrc, 1, "tree_top.png");
|
2011-06-17 21:20:15 +02:00
|
|
|
f->param_type = CPT_MINERAL;
|
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setWoodLikeMaterialProperties(f->material, 1.0);
|
2011-06-17 21:20:15 +02:00
|
|
|
|
2011-07-23 01:04:24 +02:00
|
|
|
i = CONTENT_JUNGLETREE;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "jungletree.png");
|
|
|
|
f->setTexture(tsrc, 0, "jungletree_top.png");
|
|
|
|
f->setTexture(tsrc, 1, "jungletree_top.png");
|
2011-07-23 01:04:24 +02:00
|
|
|
f->param_type = CPT_MINERAL;
|
|
|
|
//f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setWoodLikeMaterialProperties(f->material, 1.0);
|
2011-07-23 01:04:24 +02:00
|
|
|
|
|
|
|
i = CONTENT_JUNGLEGRASS;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setInventoryTexture("junglegrass.png", tsrc);
|
2011-11-14 20:41:30 +01:00
|
|
|
f->used_texturenames.insert("junglegrass.png"); // Add to atlas
|
2011-07-23 01:04:24 +02:00
|
|
|
f->light_propagates = true;
|
|
|
|
f->param_type = CPT_LIGHT;
|
|
|
|
//f->is_ground_content = true;
|
|
|
|
f->air_equivalent = false; // grass grows underneath
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-07-23 01:04:24 +02:00
|
|
|
f->solidness = 0; // drawn separately, makes no faces
|
|
|
|
f->walkable = false;
|
2011-11-13 14:45:38 +01:00
|
|
|
setLeavesLikeMaterialProperties(f->material, 1.0);
|
2011-07-23 01:04:24 +02:00
|
|
|
|
2011-06-17 21:20:15 +02:00
|
|
|
i = CONTENT_LEAVES;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-06-17 21:20:15 +02:00
|
|
|
f->light_propagates = true;
|
|
|
|
//f->param_type = CPT_MINERAL;
|
|
|
|
f->param_type = CPT_LIGHT;
|
2011-07-23 01:04:24 +02:00
|
|
|
//f->is_ground_content = true;
|
2011-06-17 21:20:15 +02:00
|
|
|
if(new_style_leaves)
|
|
|
|
{
|
|
|
|
f->solidness = 0; // drawn separately, makes no faces
|
2011-09-19 17:08:42 +02:00
|
|
|
f->visual_solidness = 1;
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "leaves.png");
|
|
|
|
f->setInventoryTextureCube("leaves.png", "leaves.png", "leaves.png", tsrc);
|
2011-06-17 21:20:15 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "[noalpha:leaves.png");
|
2011-06-17 21:20:15 +02:00
|
|
|
}
|
2011-08-16 11:14:49 +02:00
|
|
|
f->extra_dug_item = std::string("MaterialItem2 ")+itos(CONTENT_SAPLING)+" 1";
|
2011-09-24 03:19:47 +02:00
|
|
|
f->extra_dug_item_rarity = 20;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setLeavesLikeMaterialProperties(f->material, 1.0);
|
2011-06-17 21:20:15 +02:00
|
|
|
|
2011-06-26 12:24:32 +02:00
|
|
|
i = CONTENT_CACTUS;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "cactus_side.png");
|
|
|
|
f->setTexture(tsrc, 0, "cactus_top.png");
|
|
|
|
f->setTexture(tsrc, 1, "cactus_top.png");
|
|
|
|
f->setInventoryTextureCube("cactus_top.png", "cactus_side.png", "cactus_side.png", tsrc);
|
2011-06-26 12:24:32 +02:00
|
|
|
f->param_type = CPT_MINERAL;
|
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setWoodLikeMaterialProperties(f->material, 0.75);
|
2011-06-26 12:24:32 +02:00
|
|
|
|
|
|
|
i = CONTENT_PAPYRUS;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setInventoryTexture("papyrus.png", tsrc);
|
2011-11-14 20:41:30 +01:00
|
|
|
f->used_texturenames.insert("papyrus.png"); // Add to atlas
|
2011-06-26 12:24:32 +02:00
|
|
|
f->light_propagates = true;
|
|
|
|
f->param_type = CPT_LIGHT;
|
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-06-26 12:24:32 +02:00
|
|
|
f->solidness = 0; // drawn separately, makes no faces
|
|
|
|
f->walkable = false;
|
2011-11-13 14:45:38 +01:00
|
|
|
setLeavesLikeMaterialProperties(f->material, 0.5);
|
2011-06-26 12:24:32 +02:00
|
|
|
|
|
|
|
i = CONTENT_BOOKSHELF;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "bookshelf.png");
|
|
|
|
f->setTexture(tsrc, 0, "wood.png");
|
|
|
|
f->setTexture(tsrc, 1, "wood.png");
|
2011-06-26 12:24:32 +02:00
|
|
|
// FIXME: setInventoryTextureCube() only cares for the first texture
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setInventoryTextureCube("bookshelf.png", "bookshelf.png", "bookshelf.png", tsrc);
|
|
|
|
//f->setInventoryTextureCube("wood.png", "bookshelf.png", "bookshelf.png", tsrc);
|
2011-06-26 12:24:32 +02:00
|
|
|
f->param_type = CPT_MINERAL;
|
|
|
|
f->is_ground_content = true;
|
2011-11-13 14:45:38 +01:00
|
|
|
setWoodLikeMaterialProperties(f->material, 0.75);
|
2011-06-26 12:24:32 +02:00
|
|
|
|
2011-06-17 21:20:15 +02:00
|
|
|
i = CONTENT_GLASS;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-06-17 21:20:15 +02:00
|
|
|
f->light_propagates = true;
|
2011-07-23 19:28:05 +02:00
|
|
|
f->sunlight_propagates = true;
|
2011-06-17 21:20:15 +02:00
|
|
|
f->param_type = CPT_LIGHT;
|
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-06-17 21:20:15 +02:00
|
|
|
f->solidness = 0; // drawn separately, makes no faces
|
2011-09-19 17:08:42 +02:00
|
|
|
f->visual_solidness = 1;
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "glass.png");
|
|
|
|
f->setInventoryTextureCube("glass.png", "glass.png", "glass.png", tsrc);
|
2011-11-13 14:45:38 +01:00
|
|
|
setGlassLikeMaterialProperties(f->material, 1.0);
|
2011-06-17 21:20:15 +02:00
|
|
|
|
|
|
|
i = CONTENT_FENCE;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-06-17 21:20:15 +02:00
|
|
|
f->light_propagates = true;
|
|
|
|
f->param_type = CPT_LIGHT;
|
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-06-17 21:20:15 +02:00
|
|
|
f->solidness = 0; // drawn separately, makes no faces
|
|
|
|
f->air_equivalent = true; // grass grows underneath
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setInventoryTexture("fence.png", tsrc);
|
2011-11-14 20:41:30 +01:00
|
|
|
f->used_texturenames.insert("fence.png"); // Add to atlas
|
2011-11-13 14:45:38 +01:00
|
|
|
setWoodLikeMaterialProperties(f->material, 0.75);
|
2011-06-17 21:20:15 +02:00
|
|
|
|
2011-06-26 12:24:32 +02:00
|
|
|
i = CONTENT_RAIL;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setInventoryTexture("rail.png", tsrc);
|
2011-11-14 20:41:30 +01:00
|
|
|
f->used_texturenames.insert("rail.png"); // Add to atlas
|
2011-06-26 12:24:32 +02:00
|
|
|
f->light_propagates = true;
|
|
|
|
f->param_type = CPT_LIGHT;
|
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-06-26 12:24:32 +02:00
|
|
|
f->solidness = 0; // drawn separately, makes no faces
|
|
|
|
f->air_equivalent = true; // grass grows underneath
|
|
|
|
f->walkable = false;
|
2011-11-13 11:31:05 +01:00
|
|
|
f->selection_box.type = NODEBOX_FIXED;
|
2011-11-13 14:45:38 +01:00
|
|
|
setDirtLikeMaterialProperties(f->material, 0.75);
|
2011-06-26 12:24:32 +02:00
|
|
|
|
2011-07-27 19:18:09 +02:00
|
|
|
i = CONTENT_LADDER;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setInventoryTexture("ladder.png", tsrc);
|
2011-11-14 20:41:30 +01:00
|
|
|
f->used_texturenames.insert("ladder.png"); // Add to atlas
|
2011-07-27 19:18:09 +02:00
|
|
|
f->light_propagates = true;
|
|
|
|
f->param_type = CPT_LIGHT;
|
|
|
|
f->is_ground_content = true;
|
|
|
|
f->dug_item = std::string("MaterialItem ")+itos(i)+" 1";
|
|
|
|
f->wall_mounted = true;
|
|
|
|
f->solidness = 0;
|
|
|
|
f->air_equivalent = true;
|
|
|
|
f->walkable = false;
|
2011-07-27 23:38:48 +02:00
|
|
|
f->climbable = true;
|
2011-11-13 11:31:05 +01:00
|
|
|
f->selection_box.type = NODEBOX_WALLMOUNTED;
|
2011-11-13 14:45:38 +01:00
|
|
|
setWoodLikeMaterialProperties(f->material, 0.5);
|
2011-07-27 19:18:09 +02:00
|
|
|
|
2011-06-17 21:20:15 +02:00
|
|
|
// Deprecated
|
|
|
|
i = CONTENT_COALSTONE;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "stone.png^mineral_coal.png");
|
2011-06-17 21:20:15 +02:00
|
|
|
f->is_ground_content = true;
|
2011-11-13 14:45:38 +01:00
|
|
|
setStoneLikeMaterialProperties(f->material, 1.5);
|
2011-06-17 21:20:15 +02:00
|
|
|
|
|
|
|
i = CONTENT_WOOD;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "wood.png");
|
|
|
|
f->setInventoryTextureCube("wood.png", "wood.png", "wood.png", tsrc);
|
2011-06-17 21:20:15 +02:00
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setWoodLikeMaterialProperties(f->material, 0.75);
|
2011-06-17 21:20:15 +02:00
|
|
|
|
|
|
|
i = CONTENT_MESE;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "mese.png");
|
|
|
|
f->setInventoryTextureCube("mese.png", "mese.png", "mese.png", tsrc);
|
2011-06-17 21:20:15 +02:00
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setStoneLikeMaterialProperties(f->material, 0.5);
|
2011-06-17 21:20:15 +02:00
|
|
|
|
|
|
|
i = CONTENT_CLOUD;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "cloud.png");
|
|
|
|
f->setInventoryTextureCube("cloud.png", "cloud.png", "cloud.png", tsrc);
|
2011-06-17 21:20:15 +02:00
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-06-17 21:20:15 +02:00
|
|
|
|
|
|
|
i = CONTENT_AIR;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-06-17 21:20:15 +02:00
|
|
|
f->param_type = CPT_LIGHT;
|
|
|
|
f->light_propagates = true;
|
|
|
|
f->sunlight_propagates = true;
|
|
|
|
f->solidness = 0;
|
|
|
|
f->walkable = false;
|
|
|
|
f->pointable = false;
|
|
|
|
f->diggable = false;
|
|
|
|
f->buildable_to = true;
|
|
|
|
f->air_equivalent = true;
|
|
|
|
|
|
|
|
i = CONTENT_WATER;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setInventoryTextureCube("water.png", "water.png", "water.png", tsrc);
|
2011-06-17 21:20:15 +02:00
|
|
|
f->param_type = CPT_LIGHT;
|
|
|
|
f->light_propagates = true;
|
|
|
|
f->solidness = 0; // Drawn separately, makes no faces
|
2011-08-23 02:01:01 +02:00
|
|
|
f->visual_solidness = 1;
|
2011-06-17 21:20:15 +02:00
|
|
|
f->walkable = false;
|
|
|
|
f->pointable = false;
|
|
|
|
f->diggable = false;
|
|
|
|
f->buildable_to = true;
|
|
|
|
f->liquid_type = LIQUID_FLOWING;
|
|
|
|
f->liquid_alternative_flowing = CONTENT_WATER;
|
2011-07-14 16:17:50 +02:00
|
|
|
f->liquid_alternative_source = CONTENT_WATERSOURCE;
|
2011-08-16 19:56:57 +02:00
|
|
|
f->liquid_viscosity = WATER_VISC;
|
2011-10-12 12:53:38 +02:00
|
|
|
#ifndef SERVER
|
2011-11-03 22:06:57 +01:00
|
|
|
if(!opaque_water)
|
|
|
|
f->vertex_alpha = WATER_ALPHA;
|
2011-09-07 19:21:28 +02:00
|
|
|
f->post_effect_color = video::SColor(64, 100, 100, 200);
|
2011-11-13 23:19:48 +01:00
|
|
|
if(f->special_material == NULL && tsrc)
|
2011-08-15 01:04:56 +02:00
|
|
|
{
|
|
|
|
// Flowing water material
|
|
|
|
f->special_material = new video::SMaterial;
|
|
|
|
f->special_material->setFlag(video::EMF_LIGHTING, false);
|
|
|
|
f->special_material->setFlag(video::EMF_BACK_FACE_CULLING, false);
|
|
|
|
f->special_material->setFlag(video::EMF_BILINEAR_FILTER, false);
|
|
|
|
f->special_material->setFlag(video::EMF_FOG_ENABLE, true);
|
2011-11-03 22:06:57 +01:00
|
|
|
if(!opaque_water)
|
|
|
|
f->special_material->MaterialType = video::EMT_TRANSPARENT_VERTEX_ALPHA;
|
2011-11-13 23:19:48 +01:00
|
|
|
AtlasPointer *pa_water1 = new AtlasPointer(tsrc->getTexture(
|
|
|
|
tsrc->getTextureId("water.png")));
|
2011-08-15 01:04:56 +02:00
|
|
|
f->special_material->setTexture(0, pa_water1->atlas);
|
2011-11-08 15:17:38 +01:00
|
|
|
|
|
|
|
// Flowing water material, backface culled
|
|
|
|
f->special_material2 = new video::SMaterial;
|
|
|
|
*f->special_material2 = *f->special_material;
|
|
|
|
f->special_material2->setFlag(video::EMF_BACK_FACE_CULLING, true);
|
|
|
|
|
2011-08-15 01:04:56 +02:00
|
|
|
f->special_atlas = pa_water1;
|
|
|
|
}
|
2011-10-12 12:53:38 +02:00
|
|
|
#endif
|
2011-06-17 21:20:15 +02:00
|
|
|
|
|
|
|
i = CONTENT_WATERSOURCE;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
//f->setInventoryTexture("water.png", tsrc);
|
|
|
|
f->setInventoryTextureCube("water.png", "water.png", "water.png", tsrc);
|
2011-06-17 21:20:15 +02:00
|
|
|
if(new_style_water)
|
|
|
|
{
|
|
|
|
f->solidness = 0; // drawn separately, makes no faces
|
|
|
|
}
|
|
|
|
else // old style
|
|
|
|
{
|
|
|
|
f->solidness = 1;
|
2011-10-12 12:53:38 +02:00
|
|
|
#ifndef SERVER
|
2011-06-17 21:20:15 +02:00
|
|
|
TileSpec t;
|
2011-11-13 23:19:48 +01:00
|
|
|
if(tsrc)
|
|
|
|
t.texture = tsrc->getTexture("water.png");
|
2011-06-17 21:20:15 +02:00
|
|
|
|
2011-11-03 22:06:57 +01:00
|
|
|
if(!opaque_water){
|
|
|
|
t.alpha = WATER_ALPHA;
|
|
|
|
t.material_type = MATERIAL_ALPHA_VERTEX;
|
|
|
|
}
|
2011-06-17 21:20:15 +02:00
|
|
|
t.material_flags &= ~MATERIAL_FLAG_BACKFACE_CULLING;
|
|
|
|
f->setAllTiles(t);
|
2011-10-12 12:53:38 +02:00
|
|
|
#endif
|
2011-06-17 21:20:15 +02:00
|
|
|
}
|
|
|
|
f->param_type = CPT_LIGHT;
|
|
|
|
f->light_propagates = true;
|
|
|
|
f->walkable = false;
|
|
|
|
f->pointable = false;
|
|
|
|
f->diggable = false;
|
|
|
|
f->buildable_to = true;
|
|
|
|
f->liquid_type = LIQUID_SOURCE;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-06-17 21:20:15 +02:00
|
|
|
f->liquid_alternative_flowing = CONTENT_WATER;
|
2011-07-14 16:17:50 +02:00
|
|
|
f->liquid_alternative_source = CONTENT_WATERSOURCE;
|
2011-08-16 19:56:57 +02:00
|
|
|
f->liquid_viscosity = WATER_VISC;
|
2011-10-12 12:53:38 +02:00
|
|
|
#ifndef SERVER
|
2011-11-03 22:06:57 +01:00
|
|
|
if(!opaque_water)
|
|
|
|
f->vertex_alpha = WATER_ALPHA;
|
2011-09-07 19:21:28 +02:00
|
|
|
f->post_effect_color = video::SColor(64, 100, 100, 200);
|
2011-11-13 23:19:48 +01:00
|
|
|
if(f->special_material == NULL && tsrc)
|
2011-08-15 01:04:56 +02:00
|
|
|
{
|
2011-11-08 15:17:38 +01:00
|
|
|
// New-style water source material (mostly unused)
|
2011-08-15 01:04:56 +02:00
|
|
|
f->special_material = new video::SMaterial;
|
|
|
|
f->special_material->setFlag(video::EMF_LIGHTING, false);
|
|
|
|
f->special_material->setFlag(video::EMF_BACK_FACE_CULLING, false);
|
|
|
|
f->special_material->setFlag(video::EMF_BILINEAR_FILTER, false);
|
|
|
|
f->special_material->setFlag(video::EMF_FOG_ENABLE, true);
|
|
|
|
f->special_material->MaterialType = video::EMT_TRANSPARENT_VERTEX_ALPHA;
|
2011-11-13 23:19:48 +01:00
|
|
|
AtlasPointer *pa_water1 = new AtlasPointer(tsrc->getTexture(
|
|
|
|
tsrc->getTextureId("water.png")));
|
2011-08-15 01:04:56 +02:00
|
|
|
f->special_material->setTexture(0, pa_water1->atlas);
|
|
|
|
f->special_atlas = pa_water1;
|
|
|
|
}
|
2011-10-12 12:53:38 +02:00
|
|
|
#endif
|
2011-08-15 01:04:56 +02:00
|
|
|
|
|
|
|
i = CONTENT_LAVA;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setInventoryTextureCube("lava.png", "lava.png", "lava.png", tsrc);
|
2011-11-14 20:41:30 +01:00
|
|
|
f->used_texturenames.insert("lava.png"); // Add to atlas
|
2011-08-15 01:04:56 +02:00
|
|
|
f->param_type = CPT_LIGHT;
|
|
|
|
f->light_propagates = false;
|
|
|
|
f->light_source = LIGHT_MAX-1;
|
|
|
|
f->solidness = 0; // Drawn separately, makes no faces
|
2011-11-08 15:17:38 +01:00
|
|
|
f->visual_solidness = 1; // Does not completely cover block boundaries
|
2011-08-15 01:04:56 +02:00
|
|
|
f->walkable = false;
|
|
|
|
f->pointable = false;
|
|
|
|
f->diggable = false;
|
|
|
|
f->buildable_to = true;
|
|
|
|
f->liquid_type = LIQUID_FLOWING;
|
|
|
|
f->liquid_alternative_flowing = CONTENT_LAVA;
|
|
|
|
f->liquid_alternative_source = CONTENT_LAVASOURCE;
|
2011-08-16 19:56:57 +02:00
|
|
|
f->liquid_viscosity = LAVA_VISC;
|
2011-08-15 10:49:39 +02:00
|
|
|
f->damage_per_second = 4*2;
|
2011-10-12 12:53:38 +02:00
|
|
|
#ifndef SERVER
|
2011-09-07 19:21:28 +02:00
|
|
|
f->post_effect_color = video::SColor(192, 255, 64, 0);
|
2011-11-13 23:19:48 +01:00
|
|
|
if(f->special_material == NULL && tsrc)
|
2011-08-15 01:04:56 +02:00
|
|
|
{
|
|
|
|
// Flowing lava material
|
|
|
|
f->special_material = new video::SMaterial;
|
|
|
|
f->special_material->setFlag(video::EMF_LIGHTING, false);
|
|
|
|
f->special_material->setFlag(video::EMF_BACK_FACE_CULLING, false);
|
|
|
|
f->special_material->setFlag(video::EMF_BILINEAR_FILTER, false);
|
|
|
|
f->special_material->setFlag(video::EMF_FOG_ENABLE, true);
|
2011-08-15 11:08:41 +02:00
|
|
|
f->special_material->MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF;
|
2011-11-08 15:17:38 +01:00
|
|
|
|
2011-08-15 01:04:56 +02:00
|
|
|
AtlasPointer *pa_lava1 = new AtlasPointer(
|
2011-11-13 23:19:48 +01:00
|
|
|
tsrc->getTexture(
|
|
|
|
tsrc->getTextureId("lava.png")));
|
2011-08-15 01:04:56 +02:00
|
|
|
f->special_material->setTexture(0, pa_lava1->atlas);
|
2011-11-08 15:17:38 +01:00
|
|
|
|
|
|
|
// Flowing lava material, backface culled
|
|
|
|
f->special_material2 = new video::SMaterial;
|
|
|
|
*f->special_material2 = *f->special_material;
|
|
|
|
f->special_material2->setFlag(video::EMF_BACK_FACE_CULLING, true);
|
|
|
|
|
2011-08-15 01:04:56 +02:00
|
|
|
f->special_atlas = pa_lava1;
|
|
|
|
}
|
2011-10-12 12:53:38 +02:00
|
|
|
#endif
|
2011-08-15 01:04:56 +02:00
|
|
|
|
|
|
|
i = CONTENT_LAVASOURCE;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setInventoryTextureCube("lava.png", "lava.png", "lava.png", tsrc);
|
2011-11-14 20:41:30 +01:00
|
|
|
f->used_texturenames.insert("ladder.png"); // Add to atlas
|
2011-08-15 01:04:56 +02:00
|
|
|
if(new_style_water)
|
|
|
|
{
|
|
|
|
f->solidness = 0; // drawn separately, makes no faces
|
|
|
|
}
|
|
|
|
else // old style
|
|
|
|
{
|
|
|
|
f->solidness = 2;
|
2011-10-12 12:53:38 +02:00
|
|
|
#ifndef SERVER
|
2011-08-15 01:04:56 +02:00
|
|
|
TileSpec t;
|
2011-11-13 23:19:48 +01:00
|
|
|
if(tsrc)
|
|
|
|
t.texture = tsrc->getTexture("lava.png");
|
2011-08-15 01:04:56 +02:00
|
|
|
|
|
|
|
//t.alpha = 255;
|
|
|
|
//t.material_type = MATERIAL_ALPHA_VERTEX;
|
|
|
|
//t.material_flags &= ~MATERIAL_FLAG_BACKFACE_CULLING;
|
|
|
|
f->setAllTiles(t);
|
2011-10-12 12:53:38 +02:00
|
|
|
#endif
|
2011-08-15 01:04:56 +02:00
|
|
|
}
|
|
|
|
f->param_type = CPT_LIGHT;
|
|
|
|
f->light_propagates = false;
|
|
|
|
f->light_source = LIGHT_MAX-1;
|
|
|
|
f->walkable = false;
|
|
|
|
f->pointable = false;
|
|
|
|
f->diggable = false;
|
|
|
|
f->buildable_to = true;
|
|
|
|
f->liquid_type = LIQUID_SOURCE;
|
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
|
|
|
f->liquid_alternative_flowing = CONTENT_LAVA;
|
|
|
|
f->liquid_alternative_source = CONTENT_LAVASOURCE;
|
2011-08-16 19:56:57 +02:00
|
|
|
f->liquid_viscosity = LAVA_VISC;
|
2011-08-15 10:49:39 +02:00
|
|
|
f->damage_per_second = 4*2;
|
2011-10-12 12:53:38 +02:00
|
|
|
#ifndef SERVER
|
2011-09-07 19:21:28 +02:00
|
|
|
f->post_effect_color = video::SColor(192, 255, 64, 0);
|
2011-11-13 23:19:48 +01:00
|
|
|
if(f->special_material == NULL && tsrc)
|
2011-08-15 01:04:56 +02:00
|
|
|
{
|
2011-11-08 15:17:38 +01:00
|
|
|
// New-style lava source material (mostly unused)
|
2011-08-15 01:04:56 +02:00
|
|
|
f->special_material = new video::SMaterial;
|
|
|
|
f->special_material->setFlag(video::EMF_LIGHTING, false);
|
|
|
|
f->special_material->setFlag(video::EMF_BACK_FACE_CULLING, false);
|
|
|
|
f->special_material->setFlag(video::EMF_BILINEAR_FILTER, false);
|
|
|
|
f->special_material->setFlag(video::EMF_FOG_ENABLE, true);
|
2011-08-15 11:08:41 +02:00
|
|
|
f->special_material->MaterialType = video::EMT_TRANSPARENT_ALPHA_CHANNEL_REF;
|
2011-08-15 01:04:56 +02:00
|
|
|
AtlasPointer *pa_lava1 = new AtlasPointer(
|
2011-11-13 23:19:48 +01:00
|
|
|
tsrc->getTexture(
|
|
|
|
tsrc->getTextureId("lava.png")));
|
2011-08-15 01:04:56 +02:00
|
|
|
f->special_material->setTexture(0, pa_lava1->atlas);
|
2011-11-08 15:17:38 +01:00
|
|
|
|
2011-08-15 01:04:56 +02:00
|
|
|
f->special_atlas = pa_lava1;
|
|
|
|
}
|
2011-10-12 12:53:38 +02:00
|
|
|
#endif
|
2011-06-17 21:20:15 +02:00
|
|
|
|
|
|
|
i = CONTENT_TORCH;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setInventoryTexture("torch_on_floor.png", tsrc);
|
2011-11-14 20:41:30 +01:00
|
|
|
f->used_texturenames.insert("torch_on_floor.png"); // Add to atlas
|
|
|
|
f->used_texturenames.insert("torch_on_ceiling.png"); // Add to atlas
|
|
|
|
f->used_texturenames.insert("torch.png"); // Add to atlas
|
2011-06-17 21:20:15 +02:00
|
|
|
f->param_type = CPT_LIGHT;
|
|
|
|
f->light_propagates = true;
|
|
|
|
f->sunlight_propagates = true;
|
|
|
|
f->solidness = 0; // drawn separately, makes no faces
|
|
|
|
f->walkable = false;
|
|
|
|
f->wall_mounted = true;
|
|
|
|
f->air_equivalent = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-06-25 03:25:14 +02:00
|
|
|
f->light_source = LIGHT_MAX-1;
|
2011-11-13 11:31:05 +01:00
|
|
|
f->selection_box.type = NODEBOX_WALLMOUNTED;
|
|
|
|
f->selection_box.wall_top = core::aabbox3d<f32>(
|
|
|
|
-BS/10, BS/2-BS/3.333*2, -BS/10, BS/10, BS/2, BS/10);
|
|
|
|
f->selection_box.wall_bottom = core::aabbox3d<f32>(
|
|
|
|
-BS/10, -BS/2, -BS/10, BS/10, -BS/2+BS/3.333*2, BS/10);
|
|
|
|
f->selection_box.wall_side = core::aabbox3d<f32>(
|
|
|
|
-BS/2, -BS/3.333, -BS/10, -BS/2+BS/3.333, BS/3.333, BS/10);
|
2011-11-13 14:45:38 +01:00
|
|
|
setConstantMaterialProperties(f->material, 0.0);
|
2011-06-17 21:20:15 +02:00
|
|
|
|
|
|
|
i = CONTENT_SIGN_WALL;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setInventoryTexture("sign_wall.png", tsrc);
|
2011-11-14 20:41:30 +01:00
|
|
|
f->used_texturenames.insert("sign_wall.png"); // Add to atlas
|
2011-06-17 21:20:15 +02:00
|
|
|
f->param_type = CPT_LIGHT;
|
|
|
|
f->light_propagates = true;
|
|
|
|
f->sunlight_propagates = true;
|
|
|
|
f->solidness = 0; // drawn separately, makes no faces
|
|
|
|
f->walkable = false;
|
|
|
|
f->wall_mounted = true;
|
|
|
|
f->air_equivalent = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-06-17 21:20:15 +02:00
|
|
|
if(f->initial_metadata == NULL)
|
2011-11-13 23:19:48 +01:00
|
|
|
f->initial_metadata = new SignNodeMetadata(NULL, "Some sign");
|
2011-11-13 14:45:38 +01:00
|
|
|
setConstantMaterialProperties(f->material, 0.5);
|
2011-11-13 11:31:05 +01:00
|
|
|
f->selection_box.type = NODEBOX_WALLMOUNTED;
|
2011-06-17 21:20:15 +02:00
|
|
|
|
|
|
|
i = CONTENT_CHEST;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-06-17 21:20:15 +02:00
|
|
|
f->param_type = CPT_FACEDIR_SIMPLE;
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "chest_side.png");
|
|
|
|
f->setTexture(tsrc, 0, "chest_top.png");
|
|
|
|
f->setTexture(tsrc, 1, "chest_top.png");
|
|
|
|
f->setTexture(tsrc, 5, "chest_front.png"); // Z-
|
|
|
|
f->setInventoryTexture("chest_top.png", tsrc);
|
|
|
|
//f->setInventoryTextureCube("chest_top.png", "chest_side.png", "chest_side.png", tsrc);
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-06-17 21:20:15 +02:00
|
|
|
if(f->initial_metadata == NULL)
|
2011-11-13 23:19:48 +01:00
|
|
|
f->initial_metadata = new ChestNodeMetadata(NULL);
|
2011-11-13 14:45:38 +01:00
|
|
|
setWoodLikeMaterialProperties(f->material, 1.0);
|
2011-06-17 21:20:15 +02:00
|
|
|
|
2011-09-22 11:11:48 +02:00
|
|
|
i = CONTENT_LOCKABLE_CHEST;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-09-22 11:11:48 +02:00
|
|
|
f->param_type = CPT_FACEDIR_SIMPLE;
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "chest_side.png");
|
|
|
|
f->setTexture(tsrc, 0, "chest_top.png");
|
|
|
|
f->setTexture(tsrc, 1, "chest_top.png");
|
|
|
|
f->setTexture(tsrc, 5, "chest_lock.png"); // Z-
|
|
|
|
f->setInventoryTexture("chest_lock.png", tsrc);
|
|
|
|
//f->setInventoryTextureCube("chest_top.png", "chest_side.png", "chest_side.png", tsrc);
|
2011-09-22 11:11:48 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
|
|
|
if(f->initial_metadata == NULL)
|
2011-11-13 23:19:48 +01:00
|
|
|
f->initial_metadata = new LockingChestNodeMetadata(NULL);
|
2011-11-13 14:45:38 +01:00
|
|
|
setWoodLikeMaterialProperties(f->material, 1.0);
|
2011-09-22 11:11:48 +02:00
|
|
|
|
2011-06-17 21:20:15 +02:00
|
|
|
i = CONTENT_FURNACE;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-06-17 21:20:15 +02:00
|
|
|
f->param_type = CPT_FACEDIR_SIMPLE;
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "furnace_side.png");
|
|
|
|
f->setTexture(tsrc, 5, "furnace_front.png"); // Z-
|
|
|
|
f->setInventoryTexture("furnace_front.png", tsrc);
|
2011-07-31 01:20:40 +02:00
|
|
|
//f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(CONTENT_COBBLE)+" 6";
|
2011-06-17 21:20:15 +02:00
|
|
|
if(f->initial_metadata == NULL)
|
2011-11-13 23:19:48 +01:00
|
|
|
f->initial_metadata = new FurnaceNodeMetadata(NULL);
|
2011-11-13 14:45:38 +01:00
|
|
|
setStoneLikeMaterialProperties(f->material, 3.0);
|
2011-06-17 21:20:15 +02:00
|
|
|
|
|
|
|
i = CONTENT_COBBLE;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "cobble.png");
|
|
|
|
f->setInventoryTextureCube("cobble.png", "cobble.png", "cobble.png", tsrc);
|
2011-06-17 21:20:15 +02:00
|
|
|
f->param_type = CPT_NONE;
|
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setStoneLikeMaterialProperties(f->material, 0.9);
|
2011-06-25 03:25:14 +02:00
|
|
|
|
|
|
|
i = CONTENT_MOSSYCOBBLE;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "mossycobble.png");
|
|
|
|
f->setInventoryTextureCube("mossycobble.png", "mossycobble.png", "mossycobble.png", tsrc);
|
2011-06-25 03:25:14 +02:00
|
|
|
f->param_type = CPT_NONE;
|
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setStoneLikeMaterialProperties(f->material, 0.8);
|
2011-06-17 21:20:15 +02:00
|
|
|
|
|
|
|
i = CONTENT_STEEL;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "steel_block.png");
|
2011-06-17 21:20:15 +02:00
|
|
|
f->setInventoryTextureCube("steel_block.png", "steel_block.png",
|
2011-11-13 23:19:48 +01:00
|
|
|
"steel_block.png", tsrc);
|
2011-06-17 21:20:15 +02:00
|
|
|
f->param_type = CPT_NONE;
|
|
|
|
f->is_ground_content = true;
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setStoneLikeMaterialProperties(f->material, 5.0);
|
2011-06-17 21:20:15 +02:00
|
|
|
|
2011-07-30 22:33:57 +02:00
|
|
|
i = CONTENT_NC;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-07-30 22:33:57 +02:00
|
|
|
f->param_type = CPT_FACEDIR_SIMPLE;
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "nc_side.png");
|
|
|
|
f->setTexture(tsrc, 5, "nc_front.png"); // Z-
|
|
|
|
f->setTexture(tsrc, 4, "nc_back.png"); // Z+
|
|
|
|
f->setInventoryTexture("nc_front.png", tsrc);
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setStoneLikeMaterialProperties(f->material, 3.0);
|
2011-07-30 22:33:57 +02:00
|
|
|
|
|
|
|
i = CONTENT_NC_RB;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "nc_rb.png");
|
|
|
|
f->setInventoryTexture("nc_rb.png", tsrc);
|
2011-07-31 01:20:40 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
2011-11-13 14:45:38 +01:00
|
|
|
setStoneLikeMaterialProperties(f->material, 3.0);
|
2011-08-16 11:14:49 +02:00
|
|
|
|
|
|
|
i = CONTENT_SAPLING;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-08-16 11:14:49 +02:00
|
|
|
f->param_type = CPT_LIGHT;
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setAllTextures(tsrc, "sapling.png");
|
|
|
|
f->setInventoryTexture("sapling.png", tsrc);
|
2011-11-14 20:41:30 +01:00
|
|
|
f->used_texturenames.insert("sapling.png"); // Add to atlas
|
2011-08-16 11:14:49 +02:00
|
|
|
f->dug_item = std::string("MaterialItem2 ")+itos(i)+" 1";
|
|
|
|
f->light_propagates = true;
|
|
|
|
f->air_equivalent = false;
|
|
|
|
f->solidness = 0; // drawn separately, makes no faces
|
|
|
|
f->walkable = false;
|
2011-11-13 14:45:38 +01:00
|
|
|
setConstantMaterialProperties(f->material, 0.0);
|
2011-07-30 22:33:57 +02:00
|
|
|
|
2011-09-11 17:50:44 +02:00
|
|
|
i = CONTENT_APPLE;
|
2011-11-14 20:41:30 +01:00
|
|
|
f = nodemgr->getModifiable(i);
|
2011-11-13 23:19:48 +01:00
|
|
|
f->setInventoryTexture("apple.png", tsrc);
|
2011-11-14 20:41:30 +01:00
|
|
|
f->used_texturenames.insert("apple.png"); // Add to atlas
|
2011-09-11 17:50:44 +02:00
|
|
|
f->param_type = CPT_LIGHT;
|
|
|
|
f->light_propagates = true;
|
|
|
|
f->sunlight_propagates = true;
|
|
|
|
f->solidness = 0; // drawn separately, makes no faces
|
|
|
|
f->walkable = false;
|
|
|
|
f->air_equivalent = true;
|
|
|
|
f->dug_item = std::string("CraftItem apple 1");
|
2011-11-13 14:45:38 +01:00
|
|
|
setConstantMaterialProperties(f->material, 0.0);
|
2011-06-17 21:20:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|