2012-07-26 15:06:45 -04:00
|
|
|
/*
|
2013-02-24 12:40:43 -05:00
|
|
|
Minetest
|
2013-02-24 13:38:45 -05:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2012-07-26 15:06:45 -04:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
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
|
|
|
|
(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 Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser 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 ROLLBACK_INTERFACE_HEADER
|
|
|
|
#define ROLLBACK_INTERFACE_HEADER
|
|
|
|
|
|
|
|
#include "irr_v3d.h"
|
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
2014-06-25 20:28:41 -04:00
|
|
|
#include <list>
|
2012-07-26 15:06:45 -04:00
|
|
|
#include "exceptions.h"
|
2014-06-25 20:28:41 -04:00
|
|
|
#include "inventory.h"
|
2012-07-26 15:06:45 -04:00
|
|
|
|
|
|
|
class Map;
|
|
|
|
class IGameDef;
|
|
|
|
struct MapNode;
|
|
|
|
class InventoryManager;
|
|
|
|
|
|
|
|
struct RollbackNode
|
|
|
|
{
|
|
|
|
std::string name;
|
|
|
|
int param1;
|
|
|
|
int param2;
|
|
|
|
std::string meta;
|
|
|
|
|
2014-06-25 20:28:41 -04:00
|
|
|
bool operator == (const RollbackNode &other)
|
2012-07-26 15:06:45 -04:00
|
|
|
{
|
|
|
|
return (name == other.name && param1 == other.param1 &&
|
|
|
|
param2 == other.param2 && meta == other.meta);
|
|
|
|
}
|
2014-06-25 20:28:41 -04:00
|
|
|
bool operator != (const RollbackNode &other) { return !(*this == other); }
|
2012-07-26 15:06:45 -04:00
|
|
|
|
|
|
|
RollbackNode():
|
|
|
|
param1(0),
|
|
|
|
param2(0)
|
|
|
|
{}
|
|
|
|
|
|
|
|
RollbackNode(Map *map, v3s16 p, IGameDef *gamedef);
|
|
|
|
};
|
|
|
|
|
2014-06-25 20:28:41 -04:00
|
|
|
|
2012-07-26 15:06:45 -04:00
|
|
|
struct RollbackAction
|
|
|
|
{
|
|
|
|
enum Type{
|
|
|
|
TYPE_NOTHING,
|
|
|
|
TYPE_SET_NODE,
|
|
|
|
TYPE_MODIFY_INVENTORY_STACK,
|
|
|
|
} type;
|
|
|
|
|
2013-11-12 16:13:00 -05:00
|
|
|
time_t unix_time;
|
2012-07-26 15:06:45 -04:00
|
|
|
std::string actor;
|
2012-07-27 06:24:28 -04:00
|
|
|
bool actor_is_guess;
|
2012-07-26 15:06:45 -04:00
|
|
|
|
|
|
|
v3s16 p;
|
|
|
|
RollbackNode n_old;
|
|
|
|
RollbackNode n_new;
|
|
|
|
|
|
|
|
std::string inventory_location;
|
|
|
|
std::string inventory_list;
|
|
|
|
u32 inventory_index;
|
|
|
|
bool inventory_add;
|
2014-06-25 20:28:41 -04:00
|
|
|
ItemStack inventory_stack;
|
2012-07-26 15:06:45 -04:00
|
|
|
|
|
|
|
RollbackAction():
|
2012-07-27 06:24:28 -04:00
|
|
|
type(TYPE_NOTHING),
|
|
|
|
unix_time(0),
|
|
|
|
actor_is_guess(false)
|
2012-07-26 15:06:45 -04:00
|
|
|
{}
|
|
|
|
|
|
|
|
void setSetNode(v3s16 p_, const RollbackNode &n_old_,
|
|
|
|
const RollbackNode &n_new_)
|
|
|
|
{
|
|
|
|
type = TYPE_SET_NODE;
|
|
|
|
p = p_;
|
|
|
|
n_old = n_old_;
|
|
|
|
n_new = n_new_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void setModifyInventoryStack(const std::string &inventory_location_,
|
|
|
|
const std::string &inventory_list_, int index_,
|
2014-06-25 20:28:41 -04:00
|
|
|
bool add_, const ItemStack &inventory_stack_)
|
2012-07-26 15:06:45 -04:00
|
|
|
{
|
|
|
|
type = TYPE_MODIFY_INVENTORY_STACK;
|
|
|
|
inventory_location = inventory_location_;
|
|
|
|
inventory_list = inventory_list_;
|
|
|
|
inventory_index = index_;
|
|
|
|
inventory_add = add_;
|
|
|
|
inventory_stack = inventory_stack_;
|
|
|
|
}
|
|
|
|
|
|
|
|
// String should not contain newlines or nulls
|
|
|
|
std::string toString() const;
|
|
|
|
|
|
|
|
// Eg. flowing water level changes are not important
|
|
|
|
bool isImportant(IGameDef *gamedef) const;
|
2012-07-27 06:24:28 -04:00
|
|
|
|
|
|
|
bool getPosition(v3s16 *dst) const;
|
2012-07-26 15:06:45 -04:00
|
|
|
|
|
|
|
bool applyRevert(Map *map, InventoryManager *imgr, IGameDef *gamedef) const;
|
|
|
|
};
|
|
|
|
|
2014-06-25 20:28:41 -04:00
|
|
|
|
|
|
|
class IRollbackManager
|
2012-07-26 15:06:45 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void reportAction(const RollbackAction &action) = 0;
|
|
|
|
virtual std::string getActor() = 0;
|
2012-07-27 06:24:28 -04:00
|
|
|
virtual bool isActorGuess() = 0;
|
|
|
|
virtual void setActor(const std::string &actor, bool is_guess) = 0;
|
2012-07-27 08:46:51 -04:00
|
|
|
virtual std::string getSuspect(v3s16 p, float nearness_shortcut,
|
2014-06-25 20:28:41 -04:00
|
|
|
float min_nearness) = 0;
|
|
|
|
|
|
|
|
virtual ~IRollbackManager() {};
|
|
|
|
virtual void flush() = 0;
|
|
|
|
// Get all actors that did something to position p, but not further than
|
|
|
|
// <seconds> in history
|
|
|
|
virtual std::list<RollbackAction> getNodeActors(v3s16 pos, int range,
|
|
|
|
time_t seconds, int limit) = 0;
|
|
|
|
// Get actions to revert <seconds> of history made by <actor>
|
|
|
|
virtual std::list<RollbackAction> getRevertActions(const std::string &actor,
|
|
|
|
time_t seconds) = 0;
|
2012-07-26 15:06:45 -04:00
|
|
|
};
|
|
|
|
|
2014-06-25 20:28:41 -04:00
|
|
|
|
2012-07-26 15:06:45 -04:00
|
|
|
class RollbackScopeActor
|
|
|
|
{
|
|
|
|
public:
|
2014-06-25 20:28:41 -04:00
|
|
|
RollbackScopeActor(IRollbackManager * rollback_,
|
|
|
|
const std::string & actor, bool is_guess = false) :
|
|
|
|
rollback(rollback_)
|
2012-07-26 15:06:45 -04:00
|
|
|
{
|
2014-06-25 20:28:41 -04:00
|
|
|
if (rollback) {
|
|
|
|
old_actor = rollback->getActor();
|
|
|
|
old_actor_guess = rollback->isActorGuess();
|
|
|
|
rollback->setActor(actor, is_guess);
|
2012-07-26 15:06:45 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
~RollbackScopeActor()
|
|
|
|
{
|
2014-06-25 20:28:41 -04:00
|
|
|
if (rollback) {
|
|
|
|
rollback->setActor(old_actor, old_actor_guess);
|
2012-07-26 15:06:45 -04:00
|
|
|
}
|
|
|
|
}
|
2014-06-25 20:28:41 -04:00
|
|
|
|
2012-07-26 15:06:45 -04:00
|
|
|
private:
|
2014-06-25 20:28:41 -04:00
|
|
|
IRollbackManager * rollback;
|
|
|
|
std::string old_actor;
|
|
|
|
bool old_actor_guess;
|
2012-07-26 15:06:45 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|