aboutsummaryrefslogtreecommitdiff
path: root/src/serialization.cpp
Commit message (Expand)AuthorAge
* Add limit parameter to decompressZlibBen Deutsch2020-02-01
* Add compatibility to vcpkg buildsystem (#8317)adrido2019-06-10
* compressZlib: don't use a SharedBuffer but a raw u8 * pointerLoic Blot2017-07-27
* Don't use ZLIB_WINAPI if the required DLL is not provided to CMakesfan52016-09-21
* Replace instance of readsome with read in decompressZlib Make decompressZlib ...gregorycu2016-01-09
* Add compression APIShadowNinja2014-09-20
* Revert "Don't use msvc libs for mingw build"kwolekr2013-11-17
* Don't use msvc libs for mingw buildsapier2013-11-17
* Update Copyright YearsSfan52013-02-24
* Change Minetest-c55 to MinetestPilzAdam2013-02-24
* Fix compressZlib()Perttu Ahola2012-07-22
* Properly and efficiently use split utility headersPerttu Ahola2012-06-17
* Switch the license to be LGPLv2/later, with small parts still remaining as GP...Perttu Ahola2012-06-05
* the zlib error print function now prints to dstream (debug.txt)Perttu Ahola2011-08-08
* Messed around with genmap.py. Now supports format version 17.Perttu Ahola2011-06-05
* Some work-in-progress in hp and mobs and a frightening amount of random fixes.Perttu Ahola2011-04-21
* better graphics, zlib to work on vc++Perttu Ahola2010-12-14
* commit before content-tile separationPerttu Ahola2010-12-13
* license stuffPerttu Ahola2010-11-29
* Initial filesPerttu Ahola2010-11-27
pan>name, u16 recursion = 0) const; bool getStringToRef(const std::string &name, std::string &str, u16 recursion = 0) const; virtual bool setString(const std::string &name, const std::string &var); inline bool removeString(const std::string &name) { return setString(name, ""); } const StringMap &getStrings() const { return m_stringvars; } // Add support for variable names in values const std::string &resolveString(const std::string &str, u16 recursion = 0) const; inline bool isModified() const { return m_modified; } inline void setModified(bool v) { m_modified = v; } protected: StringMap m_stringvars; };