]> git.lizzy.rs Git - minetest.git/blob - src/content_inventory.cpp
updated minetest.conf.example and changed client_unload_unused_data_timeout default...
[minetest.git] / src / content_inventory.cpp
1 /*
2 Minetest-c55
3 Copyright (C) 2010-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 #include "content_inventory.h"
21 #include "inventory.h"
22 #include "content_mapnode.h"
23 //#include "serverobject.h"
24 #include "content_sao.h"
25
26 bool item_material_is_cookable(u8 content)
27 {
28         if(content == CONTENT_TREE)
29                 return true;
30         else if(content == CONTENT_COBBLE)
31                 return true;
32         else if(content == CONTENT_SAND)
33                 return true;
34         return false;
35 }
36
37 InventoryItem* item_material_create_cook_result(u8 content)
38 {
39         if(content == CONTENT_TREE)
40                 return new CraftItem("lump_of_coal", 1);
41         else if(content == CONTENT_COBBLE)
42                 return new MaterialItem(CONTENT_STONE, 1);
43         else if(content == CONTENT_SAND)
44                 return new MaterialItem(CONTENT_GLASS, 1);
45         return NULL;
46 }
47
48 std::string item_craft_get_image_name(const std::string &subname)
49 {
50         if(subname == "Stick")
51                 return "stick.png";
52         else if(subname == "lump_of_coal")
53                 return "lump_of_coal.png";
54         else if(subname == "lump_of_iron")
55                 return "lump_of_iron.png";
56         else if(subname == "steel_ingot")
57                 return "steel_ingot.png";
58         else if(subname == "rat")
59                 return "rat.png";
60         else
61                 return "cloud.png"; // just something
62 }
63
64 ServerActiveObject* item_craft_create_object(const std::string &subname,
65                 ServerEnvironment *env, u16 id, v3f pos)
66 {
67         if(subname == "rat")
68         {
69                 ServerActiveObject *obj = new RatSAO(env, id, pos);
70                 return obj;
71         }
72
73         return NULL;
74 }
75
76 s16 item_craft_get_drop_count(const std::string &subname)
77 {
78         if(subname == "rat")
79                 return 1;
80
81         return -1;
82 }
83
84 bool item_craft_is_cookable(const std::string &subname)
85 {
86         if(subname == "lump_of_iron")
87                 return true;
88                 
89         return false;
90 }
91
92 InventoryItem* item_craft_create_cook_result(const std::string &subname)
93 {
94         if(subname == "lump_of_iron")
95                 return new CraftItem("steel_ingot", 1);
96
97         return NULL;
98 }
99