Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2013-01-05 | dynamic registration of songloading_strategies with static template | Alexander Sulfrian | 9 | -25/+202 | |
2013-01-05 | changed all song paths to boost::filesystem::wpath | Alexander Sulfrian | 7 | -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 | |||||
2013-01-05 | use trim, trim_left, trim_right from boost::algorithm::string | Alexander Sulfrian | 2 | -74/+7 | |
2013-01-05 | delete all members of containers with std::for_each | Alexander Sulfrian | 1 | -6/+9 | |
2013-01-05 | made singletons reusable | Alexander Sulfrian | 1 | -0/+3 | |
set instance variable to NULL on deletion of singleton, so that it is reconstructed before next usage | |||||
2013-01-05 | make string constructor argument a constant reference | Alexander Sulfrian | 1 | -1/+1 | |
2013-01-05 | converted all strings and chars to wstrings and wchar_ts | Alexander Sulfrian | 2 | -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 | |||||
2013-01-05 | added try ... catch for each line and warn if error at line | Alexander Sulfrian | 1 | -27/+33 | |
2013-01-05 | sort includes | Alexander Sulfrian | 1 | -2/+4 | |
2013-01-05 | added custom exception classes for better catching them (gotta catch 'em all) | Alexander Sulfrian | 2 | -2/+10 | |
2013-01-05 | added {r,l}trim_newline that only remove '\r' and '\n', remove '\r' from lyrics | Alexander Sulfrian | 2 | -0/+31 | |
2013-01-05 | remove typo | Alexander Sulfrian | 1 | -1/+1 | |
2013-01-05 | fix memory leak | Alexander Sulfrian | 1 | -0/+6 | |
2013-01-05 | added complete song structure | Alexander Sulfrian | 1 | -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 | |||||
2013-01-05 | cut big function for parsing song lines in some smaller | Alexander Sulfrian | 2 | -70/+91 | |
2013-01-05 | added parsing of song lyric lines | Alexander Sulfrian | 3 | -10/+85 | |
2013-01-05 | Added get methods and made a comment more clear | Robin Nehls | 1 | -1/+1 | |
2013-01-05 | added txt header loading with test and some preparations for loading notes | Alexander Sulfrian | 7 | -11/+174 | |
2013-01-05 | added song loading stubs with different strategies chosen by file extension | Alexander Sulfrian | 7 | -0/+360 | |