2010-12-24 18:54:39 -05:00
|
|
|
#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));
|
2010-12-24 19:33:41 -05:00
|
|
|
|
2010-12-24 18:54:39 -05:00
|
|
|
g_material_properties[material].setDiggingProperties("WPick",
|
2011-04-02 13:55:22 -04:00
|
|
|
DiggingProperties(true, 1.3*toughness, 65535./30.*toughness));
|
2010-12-24 18:54:39 -05:00
|
|
|
g_material_properties[material].setDiggingProperties("STPick",
|
2011-04-05 11:23:30 -04:00
|
|
|
DiggingProperties(true, 0.75*toughness, 65535./100.*toughness));
|
|
|
|
g_material_properties[material].setDiggingProperties("SteelPick",
|
|
|
|
DiggingProperties(true, 0.50*toughness, 65535./333.*toughness));
|
2010-12-24 19:33:41 -05:00
|
|
|
|
|
|
|
/*g_material_properties[material].setDiggingProperties("MesePick",
|
|
|
|
DiggingProperties(true, 0.0*toughness, 65535./20.*toughness));*/
|
2010-12-24 18:54:39 -05:00
|
|
|
}
|
|
|
|
|
2011-04-05 11:23:30 -04:00
|
|
|
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));
|
|
|
|
}
|
|
|
|
|
2010-12-24 18:54:39 -05:00
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2011-04-05 11:23:30 -04:00
|
|
|
setStoneLikeDiggingProperties(CONTENT_STONE, 1.0);
|
2010-12-24 18:54:39 -05:00
|
|
|
setStoneLikeDiggingProperties(CONTENT_MESE, 0.5);
|
|
|
|
setStoneLikeDiggingProperties(CONTENT_COALSTONE, 1.5);
|
2011-04-05 11:23:30 -04:00
|
|
|
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);
|
2011-04-03 09:21:06 -04:00
|
|
|
|
2011-04-05 11:23:30 -04:00
|
|
|
setWoodLikeDiggingProperties(CONTENT_TREE, 1.0);
|
|
|
|
setWoodLikeDiggingProperties(CONTENT_LEAVES, 0.15);
|
2011-05-09 14:22:07 -04:00
|
|
|
setWoodLikeDiggingProperties(CONTENT_GLASS, 0.15);
|
2011-05-24 12:52:04 -04:00
|
|
|
setWoodLikeDiggingProperties(CONTENT_FENCE, 0.75);
|
2011-04-05 11:23:30 -04:00
|
|
|
setWoodLikeDiggingProperties(CONTENT_WOOD, 0.75);
|
|
|
|
setWoodLikeDiggingProperties(CONTENT_CHEST, 1.0);
|
|
|
|
|
2011-04-04 04:18:14 -04:00
|
|
|
g_material_properties[CONTENT_SIGN_WALL].setDiggingProperties("",
|
2011-04-05 11:23:30 -04:00
|
|
|
DiggingProperties(true, 0.5, 0));
|
|
|
|
g_material_properties[CONTENT_TORCH].setDiggingProperties("",
|
2011-04-04 04:18:14 -04:00
|
|
|
DiggingProperties(true, 0.0, 0));
|
2011-04-05 11:23:30 -04:00
|
|
|
|
2010-12-24 19:33:41 -05:00
|
|
|
/*
|
|
|
|
Add MesePick to everything
|
|
|
|
*/
|
|
|
|
for(u16 i=0; i<MATERIAL_PROPERTIES_COUNT; i++)
|
|
|
|
{
|
|
|
|
g_material_properties[i].setDiggingProperties("MesePick",
|
2011-01-14 18:26:29 -05:00
|
|
|
DiggingProperties(true, 0.0, 65535./1337));
|
2010-12-24 19:33:41 -05:00
|
|
|
}
|
2010-12-24 18:54:39 -05:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|