2010-12-25 01:54:39 +02:00
|
|
|
#include "materials.h"
|
2011-06-17 22:20:15 +03:00
|
|
|
#include "mapnode.h"
|
2011-11-13 10:57:55 +02:00
|
|
|
#include "mapnode_contentfeatures.h"
|
2011-11-13 16:38:14 +02:00
|
|
|
#include "tool.h"
|
2010-12-25 01:54:39 +02:00
|
|
|
|
2011-11-13 15:45:38 +02:00
|
|
|
DiggingProperties getDiggingProperties(u16 material, const std::string &tool)
|
2010-12-25 01:54:39 +02:00
|
|
|
{
|
2011-11-13 15:45:38 +02:00
|
|
|
MaterialProperties &mp = content_features(material).material;
|
|
|
|
if(mp.diggability == DIGGABLE_NOT)
|
|
|
|
return DiggingProperties(false, 0, 0);
|
|
|
|
if(mp.diggability == DIGGABLE_CONSTANT)
|
|
|
|
return DiggingProperties(true, mp.constant_time, 0);
|
|
|
|
|
2011-11-13 16:38:14 +02:00
|
|
|
ToolDiggingProperties tp = tool_get_digging_properties(tool);
|
2010-12-25 01:54:39 +02:00
|
|
|
|
2011-11-13 15:45:38 +02:00
|
|
|
float time = tp.basetime;
|
|
|
|
time += tp.dt_weight * mp.weight;
|
|
|
|
time += tp.dt_crackiness * mp.crackiness;
|
|
|
|
time += tp.dt_crumbliness * mp.crumbliness;
|
|
|
|
time += tp.dt_cuttability * mp.cuttability;
|
|
|
|
if(time < 0.2)
|
|
|
|
time = 0.2;
|
|
|
|
|
|
|
|
float durability = tp.basedurability;
|
|
|
|
durability += tp.dd_weight * mp.weight;
|
|
|
|
durability += tp.dd_crackiness * mp.crackiness;
|
|
|
|
durability += tp.dd_crumbliness * mp.crumbliness;
|
|
|
|
durability += tp.dd_cuttability * mp.cuttability;
|
|
|
|
if(durability < 1)
|
|
|
|
durability = 1;
|
|
|
|
|
|
|
|
float wear = 1.0 / durability;
|
|
|
|
u16 wear_i = wear/65535.;
|
|
|
|
return DiggingProperties(true, time, wear_i);
|
2010-12-25 01:54:39 +02:00
|
|
|
}
|
|
|
|
|