/* Minetest Copyright (C) 2013 celeron55, Perttu Ahola 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. */ #include "rollback.h" #include #include #include #include "log.h" #include "mapnode.h" #include "gamedef.h" #include "nodedef.h" #include "util/serialize.h" #include "util/string.h" #include "strfnd.h" #include "util/numeric.h" #include "inventorymanager.h" // deserializing InventoryLocations #define PP(x) "("<<(x).X<<","<<(x).Y<<","<<(x).Z<<")" #define POINTS_PER_NODE (16.0) // Get nearness factor for subject's action for this action // Return value: 0 = impossible, >0 = factor static float getSuspectNearness(bool is_guess, v3s16 suspect_p, int suspect_t, v3s16 action_p, int action_t) { // Suspect cannot cause things in the past if(action_t < suspect_t) return 0; // 0 = cannot be // Start from 100 int f = 100; // Distance (1 node = -x points) f -= POINTS_PER_NODE * intToFloat(suspect_p, 1).getDistanceFrom(intToFloat(action_p, 1)); // Time (1 second = -x points) f -= 1 * (action_t - suspect_t); // If is a guess, halve the points if(is_guess) f *= 0.5; // Limit to 0 if(f < 0) f = 0; return f; } class RollbackManager: public IRollbackManager { public: // IRollbackManager interface void reportAction(const RollbackAction &action_) { // Ignore if not important if(!action_.isImportant(m_gamedef)) return; RollbackAction action = action_; action.unix_time = time(0); // Figure out actor action.actor = m_current_actor; action.actor_is_guess = m_current_actor_is_guess; // If actor is not known, find out suspect or cancel if(action.actor.empty()){ v3s16 p; if(!action.getPosition(&p)) return; action.actor = getSuspect(p, 83, 1); if(action.actor.empty()) return; action.actor_is_guess = true; } infostream<<"RollbackManager::reportAction():" <<" time="<::const_reverse_iterator i = m_action_latest_buffer.rbegin(); i != m_action_latest_buffer.rend(); i++) { if(i->unix_time < first_time) break; if(i->actor == "") continue; // Find position of suspect or continue v3s16 suspect_p; if(!i->getPosition(&suspect_p)) continue; float f = getSuspectNearness(i->actor_is_guess, suspect_p, i->unix_time, p, cur_time); if(f >= min_nearness && f > likely_suspect_nearness){ likely_suspect_nearness = f; likely_suspect = *i; if(likely_suspect_nearness >= nearness_shortcut) break; } } // No likely suspect was found if(likely_suspect_nearness == 0) return ""; // Likely suspect was found return likely_suspect.actor; } void flush() { infostream<<"RollbackManager::flush()"<::const_iterator i = m_action_todisk_buffer.begin(); i != m_action_todisk_buffer.end(); i++) { // Do not save stuff that does not have an actor if(i->actor == "") continue; of<unix_time; of<<" "; of<actor); of<<" "; of<toString(); if(i->actor_is_guess){ of<<" "; of<<"actor_is_guess"; } of<= 100) flush(); } bool readFile(std::list &dst) { // Load whole file to memory std::ifstream f(m_filepath.c_str(), std::ios::in); if(!f.good()){ errorstream<<"RollbackManager::readFile(): Could not open " <<"file for reading: \""< getEntriesSince(int first_time) { infostream<<"RollbackManager::getEntriesSince("< action_buffer; // Use the latest buffer if it is long enough if(!m_action_latest_buffer.empty() && m_action_latest_buffer.begin()->unix_time <= first_time){ action_buffer = m_action_latest_buffer; } else { // Save all remaining stuff flush(); // Load whole file to memory bool good = readFile(action_buffer); if(!good){ errorstream<<"RollbackManager::getEntriesSince(): Failed to" <<" open file; using data in memory."< action_buffer = getEntriesSince(first_time); std::list result; for(std::list::const_reverse_iterator i = action_buffer.rbegin(); i != action_buffer.rend(); i++) { if(i->unix_time < first_time) break; // Find position of action or continue v3s16 action_p; if(!i->getPosition(&action_p)) continue; if(range == 0){ if(action_p != p) continue; } else { if(abs(action_p.X - p.X) > range || abs(action_p.Y - p.Y) > range || abs(action_p.Z - p.Z) > range) continue; } if(act_p) *act_p = action_p; if(act_seconds) *act_seconds = cur_time - i->unix_time; return i->actor; } return ""; } std::list getRevertActions(const std::string &actor_filter, int seconds) { infostream<<"RollbackManager::getRevertActions("< action_buffer = getEntriesSince(first_time); std::list result; for(std::list::const_reverse_iterator i = action_buffer.rbegin(); i != action_buffer.rend(); i++) { if(i->unix_time < first_time) break; if(i->actor != actor_filter) continue; const RollbackAction &action = *i; /*infostream<<"RollbackManager::revertAction(): Should revert" <<" time="<