aboutsummaryrefslogtreecommitdiffstats
path: root/src/base/songloading (follow)
Commit message (Collapse)AuthorAgeFilesLines
* remove semicolon after namespaceAlexander Sulfrian2014-05-0410-10/+10
| | | | | Class definitions have to end with a semicolon but not namespaces. So remove this everywhere.
* fix includesAlexander Sulfrian2013-01-203-0/+6
|
* remove legacy keywords from file headerAlexander Sulfrian2013-01-1310-20/+0
|
* Makefile.inc: modularized flags, removed include dirsAlexander Sulfrian2013-01-052-2/+2
|
* 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
* ported from log4cxx to log4cppAlexander Sulfrian2013-01-054-34/+45
| | | | | | 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-057-68/+67
|
* dynamic registration of songloading_strategies with static templateAlexander Sulfrian2013-01-059-25/+202
|
* changed all song paths to boost::filesystem::wpathAlexander Sulfrian2013-01-057-35/+26
| | | | | | 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
* 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-051-6/+9
|
* made singletons reusableAlexander Sulfrian2013-01-051-0/+3
| | | | | set instance variable to NULL on deletion of singleton, so that it is reconstructed before next usage
* make string constructor argument a constant referenceAlexander Sulfrian2013-01-051-1/+1
|
* converted all strings and chars to wstrings and wchar_tsAlexander Sulfrian2013-01-052-62/+63
| | | | | | | all strings with displayable content are now the wide strings for proper unicode handling added boost dependency for proper reading unicode from files
* 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-052-2/+10
|
* 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
|
* fix memory leakAlexander Sulfrian2013-01-051-0/+6
|
* added complete song structureAlexander Sulfrian2013-01-051-3/+3
| | | | | | | 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-051-1/+1
|
* added txt header loading with test and some preparations for loading notesAlexander Sulfrian2013-01-057-11/+174
|
* added song loading stubs with different strategies chosen by file extensionAlexander Sulfrian2013-01-057-0/+360