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