Include backtrace in error message when LuaErrors occur
[minetest-c55.git] / src / database-dummy.cpp
blob2e5de5ed11fcd57f914d1c56ffca8b78c9937a39
1 /*
2 Minetest
3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 Dummy database class
24 #include "database-dummy.h"
27 bool Database_Dummy::saveBlock(const v3s16 &pos, const std::string &data)
29 m_database[getBlockAsInteger(pos)] = data;
30 return true;
33 std::string Database_Dummy::loadBlock(const v3s16 &pos)
35 s64 i = getBlockAsInteger(pos);
36 std::map<s64, std::string>::iterator it = m_database.find(i);
37 if (it == m_database.end())
38 return "";
39 return it->second;
42 bool Database_Dummy::deleteBlock(const v3s16 &pos)
44 m_database.erase(getBlockAsInteger(pos));
45 return true;
48 void Database_Dummy::listAllLoadableBlocks(std::vector<v3s16> &dst)
50 for (std::map<s64, std::string>::const_iterator x = m_database.begin();
51 x != m_database.end(); ++x) {
52 dst.push_back(getIntegerAsBlock(x->first));