2012-01-12 06:10:39 +01:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
Copyright (C) 2013 Kahrl <kahrl@gmx.net>
|
2012-01-12 06:10:39 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 16:56:56 +02:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2012-01-12 06:10:39 +01:00
|
|
|
(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
|
2012-06-05 16:56:56 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2012-01-12 06:10:39 +01:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2012-01-12 06:10:39 +01:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2017-08-17 22:19:39 +02:00
|
|
|
#pragma once
|
2012-01-12 06:10:39 +01:00
|
|
|
|
2012-06-17 03:00:31 +02:00
|
|
|
#include "irrlichttypes_extrabloated.h"
|
2012-01-12 06:10:39 +01:00
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
2023-09-13 13:57:57 +02:00
|
|
|
#include <optional>
|
2012-01-12 06:10:39 +01:00
|
|
|
#include <set>
|
2012-03-04 13:22:35 +01:00
|
|
|
#include "itemgroup.h"
|
2013-03-25 23:59:17 +01:00
|
|
|
#include "sound.h"
|
2020-04-14 20:41:29 +02:00
|
|
|
#include "texture_override.h" // TextureOverride
|
2024-02-02 21:21:00 +01:00
|
|
|
#include "tool.h"
|
2024-01-22 18:27:08 +01:00
|
|
|
#include "util/pointabilities.h"
|
2012-01-12 06:10:39 +01:00
|
|
|
class IGameDef;
|
2017-01-09 20:39:22 +01:00
|
|
|
class Client;
|
2012-02-28 18:45:23 +01:00
|
|
|
struct ToolCapabilities;
|
2024-01-21 17:44:08 +01:00
|
|
|
struct PointedThing;
|
2017-03-10 18:25:58 +01:00
|
|
|
#ifndef SERVER
|
2024-02-27 10:56:22 +01:00
|
|
|
#include "client/texturesource.h"
|
2017-03-10 18:25:58 +01:00
|
|
|
struct ItemMesh;
|
|
|
|
struct ItemStack;
|
|
|
|
#endif
|
2012-02-28 18:45:23 +01:00
|
|
|
|
2012-01-12 06:10:39 +01:00
|
|
|
/*
|
|
|
|
Base item definition
|
|
|
|
*/
|
|
|
|
|
2024-01-17 20:05:46 +01:00
|
|
|
enum ItemType : u8
|
2012-01-12 06:10:39 +01:00
|
|
|
{
|
|
|
|
ITEM_NONE,
|
|
|
|
ITEM_NODE,
|
|
|
|
ITEM_CRAFT,
|
2015-12-29 19:55:50 +01:00
|
|
|
ITEM_TOOL,
|
2024-01-17 20:05:46 +01:00
|
|
|
ItemType_END // Dummy for validity check
|
2012-01-12 06:10:39 +01:00
|
|
|
};
|
|
|
|
|
2024-01-21 17:44:08 +01:00
|
|
|
enum TouchInteractionMode : u8
|
|
|
|
{
|
|
|
|
LONG_DIG_SHORT_PLACE,
|
|
|
|
SHORT_DIG_LONG_PLACE,
|
|
|
|
TouchInteractionMode_END, // Dummy for validity check
|
|
|
|
};
|
|
|
|
|
|
|
|
struct TouchInteraction
|
|
|
|
{
|
|
|
|
TouchInteractionMode pointed_nothing;
|
|
|
|
TouchInteractionMode pointed_node;
|
|
|
|
TouchInteractionMode pointed_object;
|
|
|
|
|
|
|
|
TouchInteraction();
|
|
|
|
TouchInteractionMode getMode(const PointedThing &pointed) const;
|
|
|
|
void serialize(std::ostream &os) const;
|
|
|
|
void deSerialize(std::istream &is);
|
|
|
|
};
|
|
|
|
|
2012-01-12 06:10:39 +01:00
|
|
|
struct ItemDefinition
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
Basic item properties
|
|
|
|
*/
|
|
|
|
ItemType type;
|
|
|
|
std::string name; // "" = hand
|
|
|
|
std::string description; // Shown in tooltip.
|
2020-10-09 20:11:21 +02:00
|
|
|
std::string short_description;
|
2012-01-12 06:10:39 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
Visual properties
|
|
|
|
*/
|
|
|
|
std::string inventory_image; // Optional for nodes, mandatory for tools/craftitems
|
2017-08-25 13:20:53 +02:00
|
|
|
std::string inventory_overlay; // Overlay of inventory_image.
|
2012-01-12 06:10:39 +01:00
|
|
|
std::string wield_image; // If empty, inventory_image or mesh (only nodes) is used
|
2017-08-25 13:20:53 +02:00
|
|
|
std::string wield_overlay; // Overlay of wield_image.
|
2017-03-10 18:25:58 +01:00
|
|
|
std::string palette_image; // If specified, the item will be colorized based on this
|
|
|
|
video::SColor color; // The fallback color of the node.
|
2012-01-12 06:10:39 +01:00
|
|
|
v3f wield_scale;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Item stack and interaction properties
|
|
|
|
*/
|
2016-09-06 19:13:52 +02:00
|
|
|
u16 stack_max;
|
2012-01-12 06:10:39 +01:00
|
|
|
bool usable;
|
|
|
|
bool liquids_pointable;
|
2024-01-22 18:27:08 +01:00
|
|
|
std::optional<Pointabilities> pointabilities;
|
|
|
|
|
|
|
|
// They may be NULL. If non-NULL, deleted by destructor
|
2012-02-28 18:45:23 +01:00
|
|
|
ToolCapabilities *tool_capabilities;
|
2024-01-22 18:27:08 +01:00
|
|
|
|
2024-02-02 21:21:00 +01:00
|
|
|
std::optional<WearBarParams> wear_bar_params;
|
|
|
|
|
2012-03-04 13:22:35 +01:00
|
|
|
ItemGroupList groups;
|
2023-06-16 20:15:21 +02:00
|
|
|
SoundSpec sound_place;
|
|
|
|
SoundSpec sound_place_failed;
|
|
|
|
SoundSpec sound_use, sound_use_air;
|
2013-07-20 14:50:19 +02:00
|
|
|
f32 range;
|
2012-01-12 06:10:39 +01:00
|
|
|
|
2012-06-10 11:46:48 +02:00
|
|
|
// Client shall immediately place this node when player places the item.
|
|
|
|
// Server will update the precise end result a moment later.
|
|
|
|
// "" = no prediction
|
|
|
|
std::string node_placement_prediction;
|
2023-09-13 13:57:57 +02:00
|
|
|
std::optional<u8> place_param2;
|
2024-01-17 17:47:06 +01:00
|
|
|
bool wallmounted_rotate_vertical;
|
2012-06-10 11:46:48 +02:00
|
|
|
|
2024-01-21 17:44:08 +01:00
|
|
|
TouchInteraction touch_interaction;
|
|
|
|
|
2012-01-12 06:10:39 +01:00
|
|
|
/*
|
|
|
|
Some helpful methods
|
|
|
|
*/
|
|
|
|
ItemDefinition();
|
|
|
|
ItemDefinition(const ItemDefinition &def);
|
|
|
|
ItemDefinition& operator=(const ItemDefinition &def);
|
|
|
|
~ItemDefinition();
|
|
|
|
void reset();
|
2013-03-28 21:40:44 +01:00
|
|
|
void serialize(std::ostream &os, u16 protocol_version) const;
|
2022-06-20 21:56:12 +02:00
|
|
|
void deSerialize(std::istream &is, u16 protocol_version);
|
2012-01-12 06:10:39 +01:00
|
|
|
private:
|
|
|
|
void resetInitial();
|
|
|
|
};
|
|
|
|
|
|
|
|
class IItemDefManager
|
|
|
|
{
|
|
|
|
public:
|
2017-08-20 13:30:50 +02:00
|
|
|
IItemDefManager() = default;
|
|
|
|
|
|
|
|
virtual ~IItemDefManager() = default;
|
2012-01-12 06:10:39 +01:00
|
|
|
|
|
|
|
// Get item definition
|
|
|
|
virtual const ItemDefinition& get(const std::string &name) const=0;
|
|
|
|
// Get alias definition
|
2017-03-22 21:41:02 +01:00
|
|
|
virtual const std::string &getAlias(const std::string &name) const=0;
|
2012-01-12 06:10:39 +01:00
|
|
|
// Get set of all defined item names and aliases
|
2017-03-22 21:41:02 +01:00
|
|
|
virtual void getAll(std::set<std::string> &result) const=0;
|
2012-01-12 06:10:39 +01:00
|
|
|
// Check if item is known
|
|
|
|
virtual bool isKnown(const std::string &name) const=0;
|
2012-11-30 17:12:32 +01:00
|
|
|
#ifndef SERVER
|
|
|
|
// Get item inventory texture
|
2023-04-17 20:44:41 +02:00
|
|
|
virtual video::ITexture* getInventoryTexture(const ItemStack &item, Client *client) const=0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get wield mesh
|
|
|
|
*
|
|
|
|
* Returns nullptr if there is an inventory image
|
|
|
|
*/
|
|
|
|
virtual ItemMesh* getWieldMesh(const ItemStack &item, Client *client) const = 0;
|
2017-03-10 18:25:58 +01:00
|
|
|
// Get item palette
|
2023-04-17 20:44:41 +02:00
|
|
|
virtual Palette* getPalette(const ItemStack &item, Client *client) const = 0;
|
2017-03-10 18:25:58 +01:00
|
|
|
// Returns the base color of an item stack: the color of all
|
|
|
|
// tiles that do not define their own color.
|
|
|
|
virtual video::SColor getItemstackColor(const ItemStack &stack,
|
|
|
|
Client *client) const = 0;
|
2012-11-30 17:12:32 +01:00
|
|
|
#endif
|
2012-01-12 06:10:39 +01:00
|
|
|
|
2013-03-28 21:40:44 +01:00
|
|
|
virtual void serialize(std::ostream &os, u16 protocol_version)=0;
|
2012-01-12 06:10:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
class IWritableItemDefManager : public IItemDefManager
|
|
|
|
{
|
|
|
|
public:
|
2017-08-20 13:30:50 +02:00
|
|
|
IWritableItemDefManager() = default;
|
|
|
|
|
|
|
|
virtual ~IWritableItemDefManager() = default;
|
2012-01-12 06:10:39 +01:00
|
|
|
|
2020-04-14 20:41:29 +02:00
|
|
|
// Replace the textures of registered nodes with the ones specified in
|
|
|
|
// the texture pack's override.txt files
|
|
|
|
virtual void applyTextureOverrides(const std::vector<TextureOverride> &overrides)=0;
|
|
|
|
|
2012-01-12 06:10:39 +01:00
|
|
|
// Remove all registered item and node definitions and aliases
|
|
|
|
// Then re-add the builtin item definitions
|
|
|
|
virtual void clear()=0;
|
|
|
|
// Register item definition
|
|
|
|
virtual void registerItem(const ItemDefinition &def)=0;
|
2016-07-10 15:15:43 +02:00
|
|
|
virtual void unregisterItem(const std::string &name)=0;
|
2012-01-12 06:10:39 +01:00
|
|
|
// Set an alias so that items named <name> will load as <convert_to>.
|
|
|
|
// Alias is not set if <name> has already been defined.
|
|
|
|
// Alias will be removed if <name> is defined at a later point of time.
|
|
|
|
virtual void registerAlias(const std::string &name,
|
|
|
|
const std::string &convert_to)=0;
|
|
|
|
|
2022-06-20 21:56:12 +02:00
|
|
|
virtual void deSerialize(std::istream &is, u16 protocol_version)=0;
|
2012-01-12 06:10:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
IWritableItemDefManager* createItemDefManager();
|