diff options
author | Perttu Ahola <celeron55@gmail.com> | 2012-03-04 14:22:35 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-03-10 11:28:13 +0200 |
commit | 07ed57476f56c54e781ab33467d3373d976d24b1 (patch) | |
tree | 5643802c01133f963cf440c7486691c31dc31d89 /src | |
parent | 0b21618a054fbfa9f4b5e99a5044f2b2dd1d642b (diff) | |
download | minetest-07ed57476f56c54e781ab33467d3373d976d24b1.tar.gz minetest-07ed57476f56c54e781ab33467d3373d976d24b1.tar.bz2 minetest-07ed57476f56c54e781ab33467d3373d976d24b1.zip |
itemgroup.h and ItemGroupList typedef
Diffstat (limited to 'src')
-rw-r--r-- | src/content_sao.cpp | 4 | ||||
-rw-r--r-- | src/itemdef.h | 17 | ||||
-rw-r--r-- | src/nodedef.cpp | 2 | ||||
-rw-r--r-- | src/nodedef.h | 3 | ||||
-rw-r--r-- | src/serverremoteplayer.cpp | 2 | ||||
-rw-r--r-- | src/tool.cpp | 8 | ||||
-rw-r--r-- | src/tool.h | 9 |
7 files changed, 17 insertions, 28 deletions
diff --git a/src/content_sao.cpp b/src/content_sao.cpp index cb4d81f9a..b7a6db906 100644 --- a/src/content_sao.cpp +++ b/src/content_sao.cpp @@ -724,7 +724,7 @@ void Oerkki1SAO::punch(ServerActiveObject *puncher, float time_from_last_punch) m_speed_f += dir*12*BS; // "Material" groups of the object - std::map<std::string, int> groups; + ItemGroupList groups; groups["snappy"] = 1; groups["choppy"] = 1; groups["fleshy"] = 3; @@ -1419,7 +1419,7 @@ void MobV2SAO::punch(ServerActiveObject *puncher, float time_from_last_punch) // "Material" groups of the object - std::map<std::string, int> groups; + ItemGroupList groups; groups["snappy"] = 1; groups["choppy"] = 1; groups["fleshy"] = 3; diff --git a/src/itemdef.h b/src/itemdef.h index 15734ff44..904b4a221 100644 --- a/src/itemdef.h +++ b/src/itemdef.h @@ -25,24 +25,11 @@ with this program; if not, write to the Free Software Foundation, Inc., #include <string> #include <iostream> #include <set> -#include <map> +#include "itemgroup.h" class IGameDef; struct ToolCapabilities; /* - Some helpers -*/ - -static inline int itemgroup_get(const std::map<std::string, int> &groups, - const std::string &name) -{ - std::map<std::string, int>::const_iterator i = groups.find(name); - if(i == groups.end()) - return 0; - return i->second; -} - -/* Base item definition */ @@ -78,7 +65,7 @@ struct ItemDefinition bool liquids_pointable; // May be NULL. If non-NULL, deleted by destructor ToolCapabilities *tool_capabilities; - std::map<std::string, int> groups; + ItemGroupList groups; /* Cached stuff diff --git a/src/nodedef.cpp b/src/nodedef.cpp index 7d0408eb7..cc8009ab7 100644 --- a/src/nodedef.cpp +++ b/src/nodedef.cpp @@ -154,7 +154,7 @@ void ContentFeatures::serialize(std::ostream &os) writeU8(os, 2); // version os<<serializeString(name); writeU16(os, groups.size()); - for(std::map<std::string, int>::const_iterator + for(ItemGroupList::const_iterator i = groups.begin(); i != groups.end(); i++){ os<<serializeString(i->first); writeS16(os, i->second); diff --git a/src/nodedef.h b/src/nodedef.h index 5196e0233..c875e0b75 100644 --- a/src/nodedef.h +++ b/src/nodedef.h @@ -28,6 +28,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #ifndef SERVER #include "tile.h" #endif +#include "itemgroup.h" class IItemDefManager; class ITextureSource; class IGameDef; @@ -148,7 +149,7 @@ struct ContentFeatures */ std::string name; // "" = undefined node - std::map<std::string, int> groups; // Same as in itemdef + ItemGroupList groups; // Same as in itemdef // Visual definition enum NodeDrawType drawtype; diff --git a/src/serverremoteplayer.cpp b/src/serverremoteplayer.cpp index 9dd4723fd..c57794ea2 100644 --- a/src/serverremoteplayer.cpp +++ b/src/serverremoteplayer.cpp @@ -182,7 +182,7 @@ void ServerRemotePlayer::punch(ServerActiveObject *puncher, } // "Material" groups of the player - std::map<std::string, int> groups; + ItemGroupList groups; groups["choppy"] = 2; groups["fleshy"] = 3; diff --git a/src/tool.cpp b/src/tool.cpp index 69141f4e5..38994c620 100644 --- a/src/tool.cpp +++ b/src/tool.cpp @@ -68,7 +68,7 @@ void ToolCapabilities::deSerialize(std::istream &is) } } -DigParams getDigParams(const std::map<std::string, int> &groups, +DigParams getDigParams(const ItemGroupList &groups, const ToolCapabilities *tp, float time_from_last_punch) { //infostream<<"getDigParams"<<std::endl; @@ -123,13 +123,13 @@ DigParams getDigParams(const std::map<std::string, int> &groups, return DigParams(result_diggable, result_time, wear_i); } -DigParams getDigParams(const std::map<std::string, int> &groups, +DigParams getDigParams(const ItemGroupList &groups, const ToolCapabilities *tp) { return getDigParams(groups, tp, 1000000); } -HitParams getHitParams(const std::map<std::string, int> &groups, +HitParams getHitParams(const ItemGroupList &groups, const ToolCapabilities *tp, float time_from_last_punch) { DigParams digprop = getDigParams(groups, tp, @@ -145,7 +145,7 @@ HitParams getHitParams(const std::map<std::string, int> &groups, return HitParams(hp, wear); } -HitParams getHitParams(const std::map<std::string, int> &groups, +HitParams getHitParams(const ItemGroupList &groups, const ToolCapabilities *tp) { return getHitParams(groups, tp, 1000000); diff --git a/src/tool.h b/src/tool.h index cc2401a0d..d2a9c13c8 100644 --- a/src/tool.h +++ b/src/tool.h @@ -24,6 +24,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #include <string> #include <iostream> #include <map> +#include "itemgroup.h" struct ToolGroupCap { @@ -84,10 +85,10 @@ struct DigParams {} }; -DigParams getDigParams(const std::map<std::string, int> &groups, +DigParams getDigParams(const ItemGroupList &groups, const ToolCapabilities *tp, float time_from_last_punch); -DigParams getDigParams(const std::map<std::string, int> &groups, +DigParams getDigParams(const ItemGroupList &groups, const ToolCapabilities *tp); struct HitParams @@ -101,10 +102,10 @@ struct HitParams {} }; -HitParams getHitParams(const std::map<std::string, int> &groups, +HitParams getHitParams(const ItemGroupList &groups, const ToolCapabilities *tp, float time_from_last_punch); -HitParams getHitParams(const std::map<std::string, int> &groups, +HitParams getHitParams(const ItemGroupList &groups, const ToolCapabilities *tp); #endif |