2011-12-06 14:21:56 +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>
|
2011-12-06 14:21:56 +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
|
2011-12-06 14:21:56 +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.
|
2011-12-06 14:21:56 +01:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-12-06 14:21:56 +01:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INVENTORYMANAGER_HEADER
|
|
|
|
#define INVENTORYMANAGER_HEADER
|
|
|
|
|
|
|
|
#include "inventory.h"
|
2012-01-12 06:10:39 +01:00
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
class ServerActiveObject;
|
2011-12-06 14:21:56 +01:00
|
|
|
|
|
|
|
struct InventoryLocation
|
|
|
|
{
|
|
|
|
enum Type{
|
|
|
|
UNDEFINED,
|
2012-01-12 06:10:39 +01:00
|
|
|
CURRENT_PLAYER,
|
2011-12-06 14:21:56 +01:00
|
|
|
PLAYER,
|
2012-01-12 06:10:39 +01:00
|
|
|
NODEMETA,
|
2012-07-24 19:57:17 +02:00
|
|
|
DETACHED,
|
2011-12-06 14:21:56 +01:00
|
|
|
} type;
|
|
|
|
|
2012-07-24 19:57:17 +02:00
|
|
|
std::string name; // PLAYER, DETACHED
|
2011-12-06 14:21:56 +01:00
|
|
|
v3s16 p; // NODEMETA
|
|
|
|
|
2012-01-12 06:10:39 +01:00
|
|
|
InventoryLocation()
|
|
|
|
{
|
|
|
|
setUndefined();
|
|
|
|
}
|
|
|
|
void setUndefined()
|
|
|
|
{
|
|
|
|
type = UNDEFINED;
|
|
|
|
}
|
|
|
|
void setCurrentPlayer()
|
|
|
|
{
|
|
|
|
type = CURRENT_PLAYER;
|
|
|
|
}
|
2011-12-06 14:21:56 +01:00
|
|
|
void setPlayer(const std::string &name_)
|
|
|
|
{
|
|
|
|
type = PLAYER;
|
|
|
|
name = name_;
|
|
|
|
}
|
|
|
|
void setNodeMeta(v3s16 p_)
|
|
|
|
{
|
|
|
|
type = NODEMETA;
|
|
|
|
p = p_;
|
|
|
|
}
|
2012-07-24 19:57:17 +02:00
|
|
|
void setDetached(const std::string &name_)
|
|
|
|
{
|
|
|
|
type = DETACHED;
|
|
|
|
name = name_;
|
|
|
|
}
|
2011-12-06 14:21:56 +01:00
|
|
|
|
2012-09-02 21:51:38 +02:00
|
|
|
bool operator==(const InventoryLocation &other) const
|
|
|
|
{
|
|
|
|
if(type != other.type)
|
|
|
|
return false;
|
|
|
|
switch(type){
|
|
|
|
case UNDEFINED:
|
|
|
|
return false;
|
|
|
|
case CURRENT_PLAYER:
|
|
|
|
return true;
|
|
|
|
case PLAYER:
|
|
|
|
return (name == other.name);
|
|
|
|
case NODEMETA:
|
|
|
|
return (p == other.p);
|
|
|
|
case DETACHED:
|
|
|
|
return (name == other.name);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bool operator!=(const InventoryLocation &other) const
|
|
|
|
{
|
|
|
|
return !(*this == other);
|
|
|
|
}
|
|
|
|
|
2012-01-12 06:10:39 +01:00
|
|
|
void applyCurrentPlayer(const std::string &name_)
|
|
|
|
{
|
|
|
|
if(type == CURRENT_PLAYER)
|
|
|
|
setPlayer(name_);
|
|
|
|
}
|
2011-12-06 14:21:56 +01:00
|
|
|
|
2012-01-12 06:10:39 +01:00
|
|
|
std::string dump() const;
|
|
|
|
void serialize(std::ostream &os) const;
|
|
|
|
void deSerialize(std::istream &is);
|
|
|
|
void deSerialize(std::string s);
|
2011-12-06 14:21:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct InventoryAction;
|
|
|
|
|
|
|
|
class InventoryManager
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
InventoryManager(){}
|
|
|
|
virtual ~InventoryManager(){}
|
|
|
|
|
2012-07-24 19:57:17 +02:00
|
|
|
// Get an inventory (server and client)
|
2011-12-06 14:21:56 +01:00
|
|
|
virtual Inventory* getInventory(const InventoryLocation &loc){return NULL;}
|
2012-07-24 19:57:17 +02:00
|
|
|
// Set modified (will be saved and sent over network; only on server)
|
2015-03-24 09:36:54 +01:00
|
|
|
virtual void setInventoryModified(const InventoryLocation &loc, bool playerSend = true){}
|
2012-07-24 19:57:17 +02:00
|
|
|
// Send inventory action to server (only on client)
|
2011-12-06 14:21:56 +01:00
|
|
|
virtual void inventoryAction(InventoryAction *a){}
|
|
|
|
};
|
|
|
|
|
|
|
|
#define IACTION_MOVE 0
|
|
|
|
#define IACTION_DROP 1
|
2012-01-21 21:21:41 +01:00
|
|
|
#define IACTION_CRAFT 2
|
2011-12-06 14:21:56 +01:00
|
|
|
|
|
|
|
struct InventoryAction
|
|
|
|
{
|
|
|
|
static InventoryAction * deSerialize(std::istream &is);
|
|
|
|
|
|
|
|
virtual u16 getType() const = 0;
|
|
|
|
virtual void serialize(std::ostream &os) const = 0;
|
2012-01-21 21:21:41 +01:00
|
|
|
virtual void apply(InventoryManager *mgr, ServerActiveObject *player,
|
|
|
|
IGameDef *gamedef) = 0;
|
2012-01-22 00:49:02 +01:00
|
|
|
virtual void clientApply(InventoryManager *mgr, IGameDef *gamedef) = 0;
|
2012-01-23 20:23:56 +01:00
|
|
|
virtual ~InventoryAction() {};
|
2011-12-06 14:21:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct IMoveAction : public InventoryAction
|
|
|
|
{
|
|
|
|
// count=0 means "everything"
|
|
|
|
u16 count;
|
2012-01-12 06:10:39 +01:00
|
|
|
InventoryLocation from_inv;
|
2011-12-06 14:21:56 +01:00
|
|
|
std::string from_list;
|
|
|
|
s16 from_i;
|
2012-01-12 06:10:39 +01:00
|
|
|
InventoryLocation to_inv;
|
2011-12-06 14:21:56 +01:00
|
|
|
std::string to_list;
|
|
|
|
s16 to_i;
|
|
|
|
|
|
|
|
IMoveAction()
|
|
|
|
{
|
|
|
|
count = 0;
|
|
|
|
from_i = -1;
|
|
|
|
to_i = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
IMoveAction(std::istream &is);
|
|
|
|
|
|
|
|
u16 getType() const
|
|
|
|
{
|
|
|
|
return IACTION_MOVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void serialize(std::ostream &os) const
|
|
|
|
{
|
|
|
|
os<<"Move ";
|
|
|
|
os<<count<<" ";
|
2012-01-12 06:10:39 +01:00
|
|
|
os<<from_inv.dump()<<" ";
|
2011-12-06 14:21:56 +01:00
|
|
|
os<<from_list<<" ";
|
|
|
|
os<<from_i<<" ";
|
2012-01-12 06:10:39 +01:00
|
|
|
os<<to_inv.dump()<<" ";
|
2011-12-06 14:21:56 +01:00
|
|
|
os<<to_list<<" ";
|
|
|
|
os<<to_i;
|
|
|
|
}
|
|
|
|
|
2012-01-21 21:21:41 +01:00
|
|
|
void apply(InventoryManager *mgr, ServerActiveObject *player, IGameDef *gamedef);
|
2012-01-22 00:49:02 +01:00
|
|
|
|
|
|
|
void clientApply(InventoryManager *mgr, IGameDef *gamedef);
|
2011-12-06 14:21:56 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
struct IDropAction : public InventoryAction
|
|
|
|
{
|
|
|
|
// count=0 means "everything"
|
|
|
|
u16 count;
|
2012-01-12 06:10:39 +01:00
|
|
|
InventoryLocation from_inv;
|
2011-12-06 14:21:56 +01:00
|
|
|
std::string from_list;
|
|
|
|
s16 from_i;
|
|
|
|
|
|
|
|
IDropAction()
|
|
|
|
{
|
|
|
|
count = 0;
|
|
|
|
from_i = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
IDropAction(std::istream &is);
|
|
|
|
|
|
|
|
u16 getType() const
|
|
|
|
{
|
|
|
|
return IACTION_DROP;
|
|
|
|
}
|
|
|
|
|
|
|
|
void serialize(std::ostream &os) const
|
|
|
|
{
|
|
|
|
os<<"Drop ";
|
|
|
|
os<<count<<" ";
|
2012-01-12 06:10:39 +01:00
|
|
|
os<<from_inv.dump()<<" ";
|
2011-12-06 14:21:56 +01:00
|
|
|
os<<from_list<<" ";
|
|
|
|
os<<from_i;
|
|
|
|
}
|
|
|
|
|
2012-01-21 21:21:41 +01:00
|
|
|
void apply(InventoryManager *mgr, ServerActiveObject *player, IGameDef *gamedef);
|
2012-01-22 00:49:02 +01:00
|
|
|
|
|
|
|
void clientApply(InventoryManager *mgr, IGameDef *gamedef);
|
2011-12-06 14:21:56 +01:00
|
|
|
};
|
|
|
|
|
2012-01-21 21:21:41 +01:00
|
|
|
struct ICraftAction : public InventoryAction
|
|
|
|
{
|
|
|
|
// count=0 means "everything"
|
|
|
|
u16 count;
|
|
|
|
InventoryLocation craft_inv;
|
|
|
|
|
|
|
|
ICraftAction()
|
|
|
|
{
|
|
|
|
count = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ICraftAction(std::istream &is);
|
|
|
|
|
|
|
|
u16 getType() const
|
|
|
|
{
|
|
|
|
return IACTION_CRAFT;
|
|
|
|
}
|
|
|
|
|
|
|
|
void serialize(std::ostream &os) const
|
|
|
|
{
|
|
|
|
os<<"Craft ";
|
|
|
|
os<<count<<" ";
|
|
|
|
os<<craft_inv.dump()<<" ";
|
|
|
|
}
|
|
|
|
|
|
|
|
void apply(InventoryManager *mgr, ServerActiveObject *player, IGameDef *gamedef);
|
2012-01-22 00:49:02 +01:00
|
|
|
|
|
|
|
void clientApply(InventoryManager *mgr, IGameDef *gamedef);
|
2012-01-21 21:21:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// Crafting helper
|
|
|
|
bool getCraftingResult(Inventory *inv, ItemStack& result,
|
|
|
|
bool decrementInput, IGameDef *gamedef);
|
|
|
|
|
2011-12-06 14:21:56 +01:00
|
|
|
#endif
|
|
|
|
|