aboutsummaryrefslogtreecommitdiff
path: root/src/client/clientenvironment.cpp
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2022-05-22 00:37:58 +0200
committersfan5 <sfan5@live.de>2022-05-23 22:50:58 +0200
commit5daafc9d336d3f946854874e56a38ae9ac130811 (patch)
tree142ee0a8244f147bfbd54ffb6f3190660acbc690 /src/client/clientenvironment.cpp
parente16a470d59069692d654f5c1529ab313a01ded67 (diff)
downloadminetest-5daafc9d336d3f946854874e56a38ae9ac130811.tar.gz
minetest-5daafc9d336d3f946854874e56a38ae9ac130811.tar.bz2
minetest-5daafc9d336d3f946854874e56a38ae9ac130811.zip
Fix hash implementation for SerializedBlockCache
Diffstat (limited to 'src/client/clientenvironment.cpp')
0 files changed, 0 insertions, 0 deletions
d='n130' href='#n130'>130 131 132 133 134
/*
Minetest-c55
Copyright (C) 2010-2011 celeron55, Perttu Ahola <celeron55@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

#ifndef TOOL_HEADER
#define TOOL_HEADER

#include "common_irrlicht.h"
#include <string>
#include <iostream>
#include <map>
#include "itemgroup.h"

struct ToolGroupCap
{
	std::map<int, float> times;
	float maxwear;
	int maxlevel;

	ToolGroupCap():
		maxwear(0.05),
		maxlevel(1)
	{}

	bool getTime(int rating, float *time) const
	{
		std::map<int, float>::const_iterator i = times.find(rating);
		if(i == times.end()){
			*time = 0;
			return false;
		}
		*time = i->second;
		return true;
	}
};

struct ToolCapabilities
{
	float full_punch_interval;
	int max_drop_level;
	std::map<std::string, ToolGroupCap> groupcaps;

	ToolCapabilities(
			float full_punch_interval_=1.4,
			int max_drop_level_=1,
			std::map<std::string, ToolGroupCap> groupcaps_ =
					std::map<std::string, ToolGroupCap>()
	):
		full_punch_interval(full_punch_interval_),
		max_drop_level(max_drop_level_),
		groupcaps(groupcaps_)
	{}

	void serialize(std::ostream &os) const;
	void deSerialize(std::istream &is);
};

struct DigParams
{
	bool diggable;
	// Digging time in seconds
	float time;
	// Caused wear
	u16 wear;