aboutsummaryrefslogtreecommitdiffstats
path: root/src/base (follow)
Commit message (Collapse)AuthorAgeFilesLines
* base/time: Replaces by std::chrono.Alexander Sulfrian2015-04-034-101/+8
|
* remove semicolon after namespaceAlexander Sulfrian2014-05-0426-27/+26
| | | | | Class definitions have to end with a semicolon but not namespaces. So remove this everywhere.
* base/time: use float value to force float resultAlexander Sulfrian2013-01-211-1/+1
|
* fix includesAlexander Sulfrian2013-01-204-2/+10
|
* base/timestamp: add class to store a point of timeAlexander Sulfrian2013-01-182-0/+108
|
* base/time: make get_time static, constructor protectedAlexander Sulfrian2013-01-182-3/+18
| | | | | | The Time class does not have any state so the get_time method could be static. Because the Time class now has only static methods, deny creation by making the ctor protected.
* base/time: removed unused RelativeTimerAlexander Sulfrian2013-01-182-110/+0
|
* base/config: add debug.boxes config optionAlexander Sulfrian2013-01-132-1/+19
| | | | | if debug.boxes is true in configuration file, a red border is drawn around all controls
* base/config: add graphics.fullscreen optionAlexander Sulfrian2013-01-132-1/+18
|
* base/config: add graphics.resolution config optionAlexander Sulfrian2013-01-132-0/+26
| | | | | | The resolution could controlled by the appropriate config option. The value from the config file is parsed/serialized with the DimensionTranslator.
* base/config: add basic config infrastructureAlexander Sulfrian2013-01-132-0/+112
|
* remove legacy keywords from file headerAlexander Sulfrian2013-01-1323-46/+0
|
* fixed include pathsAlexander Sulfrian2013-01-051-2/+2
|
* base: moved Image and Texture to more appropriate locationsAlexander Sulfrian2013-01-058-528/+0
|
* Makefile.inc: modularized flags, removed include dirsAlexander Sulfrian2013-01-054-4/+4
|
* moved all log messages a level upAlexander Sulfrian2013-01-051-8/+8
| | | | | | log4cpp does not provide the TRACE log level. so it is needed that all log messages shift a level up, so that DEBUG is used in replacement of TRACE and INFO is now used for all messages that were DEBUG
* code formattingAlexander Sulfrian2013-01-052-3/+4
|
* ported from log4cxx to log4cppAlexander Sulfrian2013-01-0511-59/+73
| | | | | | log4cxx depends on Apache Portable Runtime Utility Library, so we switch to log4cpp with nearly the same features but with no dependencies for easier porting to other platforms
* changed all wstring/wchar_t to string/charAlexander Sulfrian2013-01-0514-178/+177
|
* removed orphaned filesAlexander Sulfrian2013-01-052-310/+0
|
* removed deprecated filesAlexander Sulfrian2013-01-055-904/+0
|
* removed pascal codeAlexander Sulfrian2013-01-0540-25622/+0
|
* changed from SDL rendering to OpenGLAlexander Sulfrian2013-01-054-17/+127
| | | | draw, repaint methods do not have the SDL_Surface* parameter anymore
* added imageloading stuff (load images to sdl_surface)Alexander Sulfrian2013-01-053-1131/+151
|
* renamed Song::cover to Song::cover_file and added Texture* Song::coverAlexander Sulfrian2013-01-052-6/+7
|
* renamed texture_plain to textureAlexander Sulfrian2013-01-053-9/+9
|
* new file classes for text and binary filesAlexander Sulfrian2013-01-051-2/+2
|
* dynamic registration of songloading_strategies with static templateAlexander Sulfrian2013-01-059-25/+202
|
* added Point, Point3D, Dimension, Rectangle, RgbColor and Texture classesAlexander Sulfrian2013-01-056-0/+263
|
* changed all song paths to boost::filesystem::wpathAlexander Sulfrian2013-01-059-44/+39
| | | | | | all song paths are now wpath so all extensions are also std::wstring and all logging with song filename have to be also std::wstring
* removed converted pascal unitsAlexander Sulfrian2013-01-052-1715/+0
|
* added loading for languages and some test for language classAlexander Sulfrian2013-01-052-23/+104
|
* fix singleton interfaceAlexander Sulfrian2013-01-051-1/+1
| | | | get_instance have to be static, there is no other possibility to create an object
* use trim, trim_left, trim_right from boost::algorithm::stringAlexander Sulfrian2013-01-052-74/+7
|
* delete all members of containers with std::for_eachAlexander Sulfrian2013-01-052-6/+23
|
* made singletons reusableAlexander Sulfrian2013-01-052-0/+6
| | | | | set instance variable to NULL on deletion of singleton, so that it is reconstructed before next usage
* added language class for easy translationAlexander Sulfrian2013-01-052-0/+212
|
* make string constructor argument a constant referenceAlexander Sulfrian2013-01-051-1/+1
|
* converted all strings and chars to wstrings and wchar_tsAlexander Sulfrian2013-01-0512-266/+271
| | | | | | | all strings with displayable content are now the wide strings for proper unicode handling added boost dependency for proper reading unicode from files
* renamed MissingSongTagException to MissingTagException and added tag parameterAlexander Sulfrian2013-01-052-7/+18
|
* added try ... catch for each line and warn if error at lineAlexander Sulfrian2013-01-051-27/+33
|
* sort includesAlexander Sulfrian2013-01-051-2/+4
|
* added custom exception classes for better catching them (gotta catch 'em all)Alexander Sulfrian2013-01-054-6/+22
|
* removed invalid commentAlexander Sulfrian2013-01-051-1/+1
|
* added missing getter for song header valuesAlexander Sulfrian2013-01-052-48/+40
|
* moved todo items downAlexander Sulfrian2013-01-052-9/+9
|
* parse all special headersAlexander Sulfrian2013-01-052-19/+13
| | | | | renamed finish to stop changed type of year to int
* added functions for parsing float, int and bool headersAlexander Sulfrian2013-01-052-0/+60
|
* changed handling of empty list detectionAlexander Sulfrian2013-01-051-4/+2
| | | | std::list.back() returns undefined values if list is empty
* added calculations to swap from relative mode to absolute beat timesAlexander Sulfrian2013-01-052-4/+20
|