2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../Defines.h"
|
|
|
|
#include "../Item.h"
|
2014-07-31 17:04:00 -04:00
|
|
|
#include "../Entities/EntityEffect.h"
|
2015-04-14 04:49:01 -04:00
|
|
|
#include "../Blocks/BlockPluginInterface.h"
|
2013-07-29 07:13:03 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// fwd:
|
|
|
|
class cWorld;
|
|
|
|
class cPlayer;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cItemHandler
|
|
|
|
{
|
|
|
|
public:
|
2014-07-23 10:32:09 -04:00
|
|
|
|
|
|
|
enum eDurabilityLostAction
|
|
|
|
{
|
|
|
|
dlaBreakBlock,
|
|
|
|
dlaAttackEntity,
|
|
|
|
};
|
|
|
|
|
2013-07-29 07:13:03 -04:00
|
|
|
cItemHandler(int a_ItemType);
|
|
|
|
|
2014-04-24 14:41:25 -04:00
|
|
|
/** Force virtual destructor */
|
2014-03-07 13:26:07 -05:00
|
|
|
virtual ~cItemHandler() {}
|
2014-12-24 01:20:17 -05:00
|
|
|
|
|
|
|
|
|
|
|
/** Called when the player tries to place the item (right mouse button, IsPlaceable() == true).
|
2015-06-21 13:49:22 -04:00
|
|
|
The block coords are for the block that has been clicked.
|
|
|
|
The default handler uses GetBlocksToPlace() and places the returned blocks.
|
|
|
|
Override if the item needs advanced processing, such as spawning a mob based on the blocks being placed.
|
2014-12-24 01:20:17 -05:00
|
|
|
If the block placement is refused inside this call, it will automatically revert the client-side changes.
|
|
|
|
Returns true if the placement succeeded, false if the placement was aborted for any reason. */
|
|
|
|
virtual bool OnPlayerPlace(
|
|
|
|
cWorld & a_World, cPlayer & a_Player, const cItem & a_EquippedItem,
|
|
|
|
int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace,
|
|
|
|
int a_CursorX, int a_CursorY, int a_CursorZ
|
|
|
|
);
|
2014-03-07 13:26:07 -05:00
|
|
|
|
2014-12-24 01:20:17 -05:00
|
|
|
|
2015-06-21 13:49:22 -04:00
|
|
|
/** Called from OnPlayerPlace() to determine the blocks that the current placement operation should set.
|
|
|
|
The block coords are where the new (main) block should be placed.
|
|
|
|
The default handler uses GetPlacementBlockTypeMeta() and provides that as the single block at the specified coords.
|
|
|
|
Returns true if the placement succeeded, false if the placement was aborted for any reason.
|
|
|
|
If aborted, the server then sends all original blocks in the coords provided in a_BlocksToSet to the client. */
|
|
|
|
virtual bool GetBlocksToPlace(
|
|
|
|
cWorld & a_World, cPlayer & a_Player, const cItem & a_EquippedItem,
|
|
|
|
int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace,
|
|
|
|
int a_CursorX, int a_CursorY, int a_CursorZ,
|
|
|
|
sSetBlockVector & a_BlocksToSet
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
/** Called when the player right-clicks with this item and IsPlaceable() == true, and OnPlayerPlace() is not overridden.
|
2014-12-24 01:20:17 -05:00
|
|
|
This function should provide the block type and meta for the placed block, or refuse the placement.
|
|
|
|
Returns true to allow placement, false to refuse. */
|
|
|
|
virtual bool GetPlacementBlockTypeMeta(
|
|
|
|
cWorld * a_World, cPlayer * a_Player,
|
|
|
|
int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace,
|
|
|
|
int a_CursorX, int a_CursorY, int a_CursorZ,
|
|
|
|
BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
|
|
|
|
);
|
|
|
|
|
|
|
|
|
2015-04-14 04:49:01 -04:00
|
|
|
/** Called when the player tries to use the item (right mouse button).
|
|
|
|
Return false to abort the usage. DEFAULT: False */
|
|
|
|
virtual bool OnItemUse(
|
|
|
|
cWorld * a_World, cPlayer * a_Player, cBlockPluginInterface & a_PluginInterface, const cItem & a_Item,
|
|
|
|
int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace
|
|
|
|
);
|
2013-08-30 08:24:03 -04:00
|
|
|
|
2014-12-24 01:20:17 -05:00
|
|
|
|
2014-04-24 14:41:25 -04:00
|
|
|
/** Called when the client sends the SHOOT status in the lclk packet */
|
2014-07-17 16:50:58 -04:00
|
|
|
virtual void OnItemShoot(cPlayer *, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace)
|
2013-12-22 08:46:55 -05:00
|
|
|
{
|
|
|
|
UNUSED(a_BlockX);
|
|
|
|
UNUSED(a_BlockY);
|
|
|
|
UNUSED(a_BlockZ);
|
|
|
|
UNUSED(a_BlockFace);
|
|
|
|
}
|
2014-02-17 09:27:12 -05:00
|
|
|
|
2015-06-30 10:50:15 -04:00
|
|
|
/** Called every tick while the item is on the player's inventory (used by maps, for example) - For now, called only for equipped items */
|
2014-02-17 09:27:12 -05:00
|
|
|
virtual void OnUpdate(cWorld * a_World, cPlayer * a_Player, const cItem & a_Item)
|
|
|
|
{
|
|
|
|
UNUSED(a_World);
|
|
|
|
UNUSED(a_Player);
|
|
|
|
UNUSED(a_Item);
|
|
|
|
}
|
2013-07-29 07:13:03 -04:00
|
|
|
|
2014-04-24 14:41:25 -04:00
|
|
|
/** Called while the player diggs a block using this item */
|
2014-02-04 13:59:05 -05:00
|
|
|
virtual bool OnDiggingBlock(cWorld * a_World, cPlayer * a_Player, const cItem & a_HeldItem, int a_BlockX, int a_BlockY, int a_BlockZ, eBlockFace a_BlockFace);
|
2013-07-29 07:13:03 -04:00
|
|
|
|
2014-04-24 14:41:25 -04:00
|
|
|
/** Called when the player destroys a block using this item. This also calls the drop function for the destroyed block */
|
2014-07-23 10:32:09 -04:00
|
|
|
virtual void OnBlockDestroyed(cWorld * a_World, cPlayer * a_Player, const cItem & a_Item, int a_BlockX, int a_BlockY, int a_BlockZ);
|
|
|
|
|
|
|
|
/** Called when a player attacks a other entity. */
|
|
|
|
virtual void OnEntityAttack(cPlayer * a_Attacker, cEntity * a_AttackedEntity);
|
2013-07-29 07:13:03 -04:00
|
|
|
|
2014-04-24 14:41:25 -04:00
|
|
|
/** Called after the player has eaten this item. */
|
2013-07-29 07:13:03 -04:00
|
|
|
virtual void OnFoodEaten(cWorld *a_World, cPlayer *a_Player, cItem *a_Item);
|
2014-07-23 10:32:09 -04:00
|
|
|
|
|
|
|
/** Get the durability lost which the item will get, when a specified action was performed. */
|
2014-07-26 07:26:14 -04:00
|
|
|
virtual short GetDurabilityLossByAction(eDurabilityLostAction a_Action);
|
2014-07-23 10:32:09 -04:00
|
|
|
|
2014-04-24 14:41:25 -04:00
|
|
|
/** Returns the maximum stack size for a given item */
|
2013-07-29 07:13:03 -04:00
|
|
|
virtual char GetMaxStackSize(void);
|
|
|
|
|
|
|
|
struct FoodInfo
|
|
|
|
{
|
2014-04-18 15:09:44 -04:00
|
|
|
int FoodLevel;
|
2014-07-31 17:04:00 -04:00
|
|
|
double Saturation;
|
2013-07-29 07:13:03 -04:00
|
|
|
|
2014-08-29 08:44:01 -04:00
|
|
|
FoodInfo(int a_FoodLevel, double a_Saturation) :
|
2014-04-18 16:47:59 -04:00
|
|
|
FoodLevel(a_FoodLevel),
|
2014-07-31 17:04:00 -04:00
|
|
|
Saturation(a_Saturation)
|
2013-07-29 07:13:03 -04:00
|
|
|
{
|
|
|
|
}
|
|
|
|
} ;
|
|
|
|
|
2014-07-31 17:04:00 -04:00
|
|
|
/** Returns the FoodInfo for this item. (FoodRecovery and Saturation) */
|
2013-07-29 07:13:03 -04:00
|
|
|
virtual FoodInfo GetFoodInfo();
|
2014-07-31 17:04:00 -04:00
|
|
|
|
|
|
|
/** If this function returns true, it sets the arguments to a effect who will be activated when you eat the item. */
|
|
|
|
virtual bool GetEatEffect(cEntityEffect::eType & a_EffectType, int & a_EffectDurationTicks, short & a_EffectIntensity, float & a_Chance);
|
|
|
|
|
2014-04-24 14:41:25 -04:00
|
|
|
/** Lets the player eat a selected item. Returns true if the player ate the item */
|
2014-07-31 17:04:00 -04:00
|
|
|
virtual bool EatItem(cPlayer * a_Player, cItem * a_Item);
|
2013-07-29 07:13:03 -04:00
|
|
|
|
2014-04-24 14:41:25 -04:00
|
|
|
/** Indicates if this item is a tool */
|
2013-07-29 07:13:03 -04:00
|
|
|
virtual bool IsTool(void);
|
|
|
|
|
2014-04-24 14:41:25 -04:00
|
|
|
/** Indicates if this item is food */
|
2013-07-29 07:13:03 -04:00
|
|
|
virtual bool IsFood(void);
|
|
|
|
|
2014-06-07 16:45:00 -04:00
|
|
|
/** Indicates if this item is drinkable */
|
2014-06-08 20:06:15 -04:00
|
|
|
virtual bool IsDrinkable(short a_ItemDamage);
|
2014-06-07 16:45:00 -04:00
|
|
|
|
2014-04-24 14:41:25 -04:00
|
|
|
/** Blocks simply get placed */
|
2013-07-29 07:13:03 -04:00
|
|
|
virtual bool IsPlaceable(void);
|
|
|
|
|
2014-04-30 18:47:57 -04:00
|
|
|
/** Can the anvil repair this item, when a_Item is the second input? */
|
2014-05-06 13:38:09 -04:00
|
|
|
virtual bool CanRepairWithRawMaterial(short a_ItemType);
|
2014-04-30 18:47:57 -04:00
|
|
|
|
2014-12-24 01:20:17 -05:00
|
|
|
/** Returns whether this tool / item can harvest a specific block (e.g. iron pickaxe can harvest diamond ore, but wooden one can't).
|
|
|
|
Defaults to false unless overridden. */
|
2013-07-29 07:13:03 -04:00
|
|
|
virtual bool CanHarvestBlock(BLOCKTYPE a_BlockType);
|
|
|
|
|
|
|
|
static cItemHandler * GetItemHandler(int a_ItemType);
|
|
|
|
static cItemHandler * GetItemHandler(const cItem & a_Item) { return GetItemHandler(a_Item.m_ItemType); }
|
|
|
|
|
|
|
|
static void Deinit();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
int m_ItemType;
|
2014-07-17 16:15:34 -04:00
|
|
|
static cItemHandler * CreateItemHandler(int m_ItemType);
|
2013-07-29 07:13:03 -04:00
|
|
|
|
2013-08-30 08:24:03 -04:00
|
|
|
static cItemHandler * m_ItemHandler[E_ITEM_LAST + 1];
|
2014-07-17 16:15:34 -04:00
|
|
|
static bool m_HandlerInitialized; // used to detect if the itemhandlers are initialized
|
2013-07-29 07:13:03 -04:00
|
|
|
};
|
|
|
|
|
2014-07-17 16:15:34 -04:00
|
|
|
// Short function
|
2013-07-29 07:13:03 -04:00
|
|
|
inline cItemHandler *ItemHandler(int a_ItemType) { return cItemHandler::GetItemHandler(a_ItemType); }
|