Falling sand and gravel
[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 #include <iostream>
25
26 struct ToolDiggingProperties
27 {
28         // time = basetime + sum(feature here * feature in MaterialProperties)
29         float basetime;
30         float dt_weight;
31         float dt_crackiness;
32         float dt_crumbliness;
33         float dt_cuttability;
34         float basedurability;
35         float dd_weight;
36         float dd_crackiness;
37         float dd_crumbliness;
38         float dd_cuttability;
39
40         ToolDiggingProperties(
41                         float a=0.75, float b=0, float c=0, float d=0, float e=0,
42                         float f=50, float g=0, float h=0, float i=0, float j=0);
43 };
44
45 struct ToolDefinition
46 {
47         std::string imagename;
48         ToolDiggingProperties properties;
49
50         ToolDefinition(){}
51         ToolDefinition(const std::string &imagename_,
52                         ToolDiggingProperties properties_):
53                 imagename(imagename_),
54                 properties(properties_)
55         {}
56         
57         std::string dump();
58         void serialize(std::ostream &os);
59         void deSerialize(std::istream &is);
60 };
61
62 class IToolDefManager
63 {
64 public:
65         IToolDefManager(){}
66         virtual ~IToolDefManager(){}
67         virtual const ToolDefinition* getToolDefinition(const std::string &toolname) const=0;
68         virtual std::string getImagename(const std::string &toolname) const =0;
69         virtual ToolDiggingProperties getDiggingProperties(
70                         const std::string &toolname) const =0;
71         
72         virtual void serialize(std::ostream &os)=0;
73 };
74
75 class IWritableToolDefManager : public IToolDefManager
76 {
77 public:
78         IWritableToolDefManager(){}
79         virtual ~IWritableToolDefManager(){}
80         virtual const ToolDefinition* getToolDefinition(const std::string &toolname) const=0;
81         virtual std::string getImagename(const std::string &toolname) const =0;
82         virtual ToolDiggingProperties getDiggingProperties(
83                         const std::string &toolname) const =0;
84                         
85         virtual bool registerTool(std::string toolname, const ToolDefinition &def)=0;
86         virtual void clear()=0;
87
88         virtual void serialize(std::ostream &os)=0;
89         virtual void deSerialize(std::istream &is)=0;
90 };
91
92 IWritableToolDefManager* createToolDefManager();
93
94 #endif
95