aboutsummaryrefslogtreecommitdiff
path: root/lib/lua/src/lauxlib.h
Commit message (Collapse)AuthorAge
* Update embedded jsoncpp from unk version to 0.10.6 + move libs to lib/ ↵Loïc Blot2017-04-02
instead of src/ (#5473) * Update embedded jsoncpp from unk version to 0.10.6 0.10.6 is last release without c++11 * Make jsoncpp more compliant with its amalgamate Jsoncpp cpp file should be upper, make the library like it does in amalgamate * Reorganization: move minetest embedded libs outside of source tree to /lib * Fix a dead grep in LINT
f='#n51'>51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
#include "materials.h"

#define MATERIAL_PROPERTIES_COUNT 256

// These correspond to the CONTENT_* constants
MaterialProperties g_material_properties[MATERIAL_PROPERTIES_COUNT];

bool g_material_properties_initialized = false;

void setStoneLikeDiggingProperties(u8 material, float toughness)
{
	g_material_properties[material].setDiggingProperties("",
			DiggingProperties(true, 15.0*toughness, 0));
	
	g_material_properties[material].setDiggingProperties("WPick",
			DiggingProperties(true, 1.3*toughness, 65535./30.*toughness));
	g_material_properties[material].setDiggingProperties("STPick",
			DiggingProperties(true, 0.75*toughness, 65535./100.*toughness));
	g_material_properties[material].setDiggingProperties("SteelPick",
			DiggingProperties(true, 0.50*toughness, 65535./333.*toughness));

	/*g_material_properties[material].setDiggingProperties("MesePick",
			DiggingProperties(true, 0.0*toughness, 65535./20.*toughness));*/
}

void setDirtLikeDiggingProperties(u8 material, float toughness)
{
	g_material_properties[material].setDiggingProperties("",
			DiggingProperties(true, 0.75*toughness, 0));
	
	g_material_properties[material].setDiggingProperties("WShovel",
			DiggingProperties(true, 0.4*toughness, 65535./50.*toughness));
	g_material_properties[material].setDiggingProperties("STShovel",
			DiggingProperties(true, 0.2*toughness, 65535./150.*toughness));
	g_material_properties[material].setDiggingProperties("SteelShovel",
			DiggingProperties(true, 0.15*toughness, 65535./400.*toughness));
}

void setWoodLikeDiggingProperties(u8 material, float toughness)
{
	g_material_properties[material].setDiggingProperties("",
			DiggingProperties(true, 3.0*toughness, 0));
	
	g_material_properties[material].setDiggingProperties("WAxe",
			DiggingProperties(true, 1.5*toughness, 65535./30.*toughness));
	g_material_properties[material].setDiggingProperties("STAxe",
			DiggingProperties(true, 0.75*toughness, 65535./100.*toughness));
	g_material_properties[material].setDiggingProperties("SteelAxe",
			DiggingProperties(true, 0.5*toughness, 65535./333.*toughness));
}

void initializeMaterialProperties()
{
	/*
		Now, the g_material_properties array is already initialized
		by the constructors to such that no digging is possible.

		Add some digging properties to them.
	*/

	setStoneLikeDiggingProperties(CONTENT_STONE, 1.0);
	setStoneLikeDiggingProperties(CONTENT_SANDSTONE, 1.0);
	setStoneLikeDiggingProperties(CONTENT_BRICK, 3.0);
	setStoneLikeDiggingProperties(CONTENT_MESE, 0.5);
	setStoneLikeDiggingProperties(CONTENT_COALSTONE, 1.5);
	setStoneLikeDiggingProperties(CONTENT_FURNACE, 3.0);
	setStoneLikeDiggingProperties(CONTENT_COBBLE, 1.0);
	setStoneLikeDiggingProperties(CONTENT_STEEL, 5.0);

	setDirtLikeDiggingProperties(CONTENT_MUD, 1.0);
	setDirtLikeDiggingProperties(CONTENT_GRASS, 1.0);
	setDirtLikeDiggingProperties(CONTENT_GRASS_FOOTSTEPS, 1.0);
	setDirtLikeDiggingProperties(CONTENT_SAND, 1.0);
	setDirtLikeDiggingProperties(CONTENT_CLAY, 1.0);
	
	setWoodLikeDiggingProperties(CONTENT_TREE, 1.0);
	setWoodLikeDiggingProperties(CONTENT_LEAVES, 0.15);
	setWoodLikeDiggingProperties(CONTENT_CACTUS, 0.75);
	setWoodLikeDiggingProperties(CONTENT_GLASS, 0.15);
	setWoodLikeDiggingProperties(CONTENT_FENCE, 0.75);
	setWoodLikeDiggingProperties(CONTENT_WOOD, 0.75);
	setWoodLikeDiggingProperties(CONTENT_CHEST, 1.0);

	g_material_properties[CONTENT_SIGN_WALL].setDiggingProperties("",
			DiggingProperties(true, 0.5, 0));
	g_material_properties[CONTENT_TORCH].setDiggingProperties("",
			DiggingProperties(true, 0.0, 0));
	
	/*
		Add MesePick to everything
	*/
	for(u16 i=0; i<MATERIAL_PROPERTIES_COUNT; i++)
	{
		g_material_properties[i].setDiggingProperties("MesePick",
				DiggingProperties(true, 0.0, 65535./1337));
	}

	g_material_properties_initialized = true;
}

MaterialProperties * getMaterialProperties(u8 material)
{
	assert(g_material_properties_initialized);
	return &g_material_properties[material];
}

DiggingProperties getDiggingProperties(u8 material, const std::string &tool)
{
	MaterialProperties *mprop = getMaterialProperties(material);
	if(mprop == NULL)
		// Not diggable
		return DiggingProperties();
	
	return mprop->getDiggingProperties(tool);
}