aboutsummaryrefslogtreecommitdiff
path: root/engines/savestate.cpp
AgeCommit message (Collapse)Author
2018-07-21GRAPHICS: Add playtime in milliseconds to SaveStateDescriptorDavid Fioramonti
This will make setting the playtime for the engine easier since the current savestate stores it as a string. This value gets set at the same time that the string playtime gets set.
2017-11-18COMMON: Add limited support for custom deleters to ScopedPtrColin Snover
Custom deleters of ScopedPtr are not currently fully conforming to C++11's support for custom deleters in std::unique_ptr for the sake of simplicity of implementation. Unlike in the standard library, plain functions and lvalue references are not supported, nor may custom deleters be passed to the constructor at runtime. This can be improved in the future, if necessary, by doing what standard library implementations usually do and creating a Pair class that uses the Empty Base Optimization idiom to avoid extra storage overhead of the deleter instance when it is not needed, as in typical standard library implementations, plus some additional type traits to support the necessary metaprogramming for the different type overloads.
2017-06-09ENGINES: Display savestate date as YYYY-MM-DDTarek Soliman
This avoids confusion in locales that use MM/DD/YYYY vs DD/MM/YYYY
2016-08-24GUI: Show "locked" saves during syncAlexander Tkachev
2014-02-18ENGINES: Make GPL headers consistent in themselves.Johannes Schickel
2011-08-07JANITORIAL: Remove trailing empty lines.Christoph Mallon
2011-07-02ENGINES: Clean up SaveStateDescriptor.Johannes Schickel
Now SaveStateDescriptor no longer subclasses HashMap. Instead all possible saved meta data is included directly into SaveStateDescriptor. This is slightly less flexible, but we never needed that flexibility so far. On the other hand it should reduce the memory usage. At least on my system (Linux/amd64) the old SaveStateDescriptor had a size of 928 and the new SaveStateDescriptor has a size of 200.
2011-06-02ENGINES: Get rid of some s(n)printf callsMax Horn
2011-05-12GIT: Clean up: Suppress SVN tags, now uselessstrangerke
2011-04-28JANITORIAL: Reduce header dependencies in shared codeOri Avtalion
Some backends may break as I only compiled SDL
2010-10-29ENGINE: Add a setPlayTime to SaveStateDescriptor taking an ms value.Johannes Schickel
svn-id: r53922
2010-04-06Switch SaveStateDescriptor::getBool to use Common::parseBoolMax Horn
svn-id: r48567
2010-03-18ENGINES: Move SaveStateDescriptor etc. to engine/savestate.*Max Horn
svn-id: r48283