GameDef compiles
[oweals/minetest.git] / src / tooldef.h
1 /*
2 Minetest-c55
3 Copyright (C) 2011 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #ifndef TOOLDEF_HEADER
21 #define TOOLDEF_HEADER
22
23 #include <string>
24
25 /*
26         TODO: Rename to tooldef.h
27 */
28
29 struct ToolDiggingProperties
30 {
31         // time = basetime + sum(feature here * feature in MaterialProperties)
32         float basetime;
33         float dt_weight;
34         float dt_crackiness;
35         float dt_crumbliness;
36         float dt_cuttability;
37         float basedurability;
38         float dd_weight;
39         float dd_crackiness;
40         float dd_crumbliness;
41         float dd_cuttability;
42
43         ToolDiggingProperties(float a=0.75, float b=0, float c=0, float d=0, float e=0,
44                         float f=50, float g=0, float h=0, float i=0, float j=0):
45                 basetime(a),
46                 dt_weight(b),
47                 dt_crackiness(c),
48                 dt_crumbliness(d),
49                 dt_cuttability(e),
50                 basedurability(f),
51                 dd_weight(g),
52                 dd_crackiness(h),
53                 dd_crumbliness(i),
54                 dd_cuttability(j)
55         {}
56 };
57
58 struct ToolDefinition
59 {
60         std::string imagename;
61         ToolDiggingProperties properties;
62
63         ToolDefinition(){}
64         ToolDefinition(const std::string &imagename_,
65                         ToolDiggingProperties properties_):
66                 imagename(imagename_),
67                 properties(properties_)
68         {}
69 };
70
71 class IToolDefManager
72 {
73 public:
74         IToolDefManager(){}
75         virtual ~IToolDefManager(){}
76         virtual const ToolDefinition* getToolDefinition(const std::string &toolname) const=0;
77         virtual std::string getImagename(const std::string &toolname) const =0;
78         virtual ToolDiggingProperties getDiggingProperties(
79                         const std::string &toolname) const =0;
80 };
81
82 class IWritableToolDefManager : public IToolDefManager
83 {
84 public:
85         IWritableToolDefManager(){}
86         virtual ~IWritableToolDefManager(){}
87         virtual const ToolDefinition* getToolDefinition(const std::string &toolname) const=0;
88         virtual std::string getImagename(const std::string &toolname) const =0;
89         virtual ToolDiggingProperties getDiggingProperties(
90                         const std::string &toolname) const =0;
91                         
92         virtual bool registerTool(std::string toolname, const ToolDefinition &def)=0;
93 };
94
95 IWritableToolDefManager* createToolDefManager();
96
97 #endif
98