aboutsummaryrefslogtreecommitdiffstats
path: root/src/base (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* added {r,l}trim_newline that only remove '\r' and '\n', remove '\r' from lyricsAlexander Sulfrian2013-01-052-0/+31
|
* remove typoAlexander Sulfrian2013-01-051-1/+1
|
* removed more memory leaksAlexander Sulfrian2013-01-052-0/+12
|
* fix memory leakAlexander Sulfrian2013-01-051-0/+6
|
* added complete song structureAlexander Sulfrian2013-01-059-103/+486
| | | | | | | added LyricLines for lines of lyrics with some words added LyricWords for single words (notes) of lyrics added construction/deconstruction of lines and words form parsed data changed BPM list to list of pointer
* cut big function for parsing song lines in some smallerAlexander Sulfrian2013-01-052-70/+91
|
* added parsing of song lyric linesAlexander Sulfrian2013-01-053-10/+85
|
* Added get methods and made a comment more clearRobin Nehls2013-01-053-1/+122
|
* added txt header loading with test and some preparations for loading notesAlexander Sulfrian2013-01-059-12/+305
|
* added song loading stubs with different strategies chosen by file extensionAlexander Sulfrian2013-01-058-0/+434
|
* major refactor of stats structureAlexander Sulfrian2013-01-056-526/+895
|
* little refactor of the headerAlexander Sulfrian2013-01-051-5/+6
| | | | | moved get_version and set_version from private to protected moved friend declaration for test to end of class definition