Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | changed screen to display (only local naming) | Alexander Sulfrian | 2013-01-05 | 2 | -3/+3 |
| | | | | changed that naming to be consistent to all other draw methods | ||||
* | added overlays | Alexander Sulfrian | 2013-01-05 | 2 | -0/+23 |
| | | | | added list of drawable controls that are drawn over all frames | ||||
* | added event_manager | Alexander Sulfrian | 2013-01-05 | 3 | -4/+250 |
| | | | | | event_manager for passing the events from the SDL thread to the event thread | ||||
* | applied the changes from drawable | Alexander Sulfrian | 2013-01-05 | 2 | -4/+2 |
| | |||||
* | refactor some things with FPSmanager | Alexander Sulfrian | 2013-01-05 | 2 | -7/+35 |
| | |||||
* | reset singleton instance on destruction | Alexander Sulfrian | 2013-01-05 | 1 | -0/+3 |
| | |||||
* | added main application | Alexander Sulfrian | 2013-01-05 | 3 | -0/+254 |
| | | | | | | | | added makefile added main function (src/main.cpp) added Application-class with sdl initialisation and main loop added log4cxx.xml configuration for main application adjusted .gitignore | ||||
* | removed old (converted) opengl display class | Alexander Sulfrian | 2013-01-05 | 2 | -652/+0 |
| | |||||
* | removed unused opengl | Alexander Sulfrian | 2013-01-05 | 1 | -3/+0 |
| | |||||
* | added SDL_Surface* display to all repaint/draw methods | Alexander Sulfrian | 2013-01-05 | 10 | -17/+26 |
| | |||||
* | added parent to control | Alexander Sulfrian | 2013-01-05 | 8 | -10/+37 |
| | | | | parent is used to delete the objects if the parent is deleted | ||||
* | started gui framework | Alexander Sulfrian | 2013-01-05 | 14 | -50/+504 |
| | | | | | | | | | | renamed menubackground to framebackground and splited out framebackgroundcolor created control as base class renamed draw to repaint and on_draw to draw in drawable implemented drawablecontrol as base for all visible controls on windows created container (subclass of drawablecontrol) that could contain other drawablecontrols created frame (subclass of container) with a background added openGL ldflag | ||||
* | added imageloading stuff (load images to sdl_surface) | Alexander Sulfrian | 2013-01-05 | 3 | -1131/+151 |
| | |||||
* | renamed Song::cover to Song::cover_file and added Texture* Song::cover | Alexander Sulfrian | 2013-01-05 | 2 | -6/+7 |
| | |||||
* | renamed texture_plain to texture | Alexander Sulfrian | 2013-01-05 | 3 | -9/+9 |
| | |||||
* | new file classes for text and binary files | Alexander Sulfrian | 2013-01-05 | 6 | -14/+199 |
| | |||||
* | dynamic registration of songloading_strategies with static template | Alexander Sulfrian | 2013-01-05 | 9 | -25/+202 |
| | |||||
* | added Point, Point3D, Dimension, Rectangle, RgbColor and Texture classes | Alexander Sulfrian | 2013-01-05 | 16 | -0/+773 |
| | |||||
* | changed all song paths to boost::filesystem::wpath | Alexander Sulfrian | 2013-01-05 | 9 | -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 units | Alexander Sulfrian | 2013-01-05 | 2 | -1715/+0 |
| | |||||
* | added loading for languages and some test for language class | Alexander Sulfrian | 2013-01-05 | 2 | -23/+104 |
| | |||||
* | fix singleton interface | Alexander Sulfrian | 2013-01-05 | 1 | -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::string | Alexander Sulfrian | 2013-01-05 | 2 | -74/+7 |
| | |||||
* | changed to boost::filesystem::wifstream to support wpath | Alexander Sulfrian | 2013-01-05 | 2 | -3/+11 |
| | | | | | wifstream from boost could be created with a boost::filesystem::wpath to support Unicode paths | ||||
* | delete all members of containers with std::for_each | Alexander Sulfrian | 2013-01-05 | 2 | -6/+23 |
| | |||||
* | made singletons reusable | Alexander Sulfrian | 2013-01-05 | 2 | -0/+6 |
| | | | | | set instance variable to NULL on deletion of singleton, so that it is reconstructed before next usage | ||||
* | added language class for easy translation | Alexander Sulfrian | 2013-01-05 | 2 | -0/+212 |
| | |||||
* | make string constructor argument a constant reference | Alexander Sulfrian | 2013-01-05 | 3 | -3/+3 |
| | |||||
* | converted all strings and chars to wstrings and wchar_ts | Alexander Sulfrian | 2013-01-05 | 16 | -283/+295 |
| | | | | | | | all strings with displayable content are now the wide strings for proper unicode handling added boost dependency for proper reading unicode from files | ||||
* | redraw on property change | Alexander Sulfrian | 2013-01-05 | 2 | -0/+2 |
| | |||||
* | make on_draw protected | Alexander Sulfrian | 2013-01-05 | 2 | -6/+10 |
| | | | | | external classes have to call draw instead of on_draw (so that visible gets evaluated) | ||||
* | added getter/setter for Reflection::spacing | Alexander Sulfrian | 2013-01-05 | 2 | -0/+13 |
| | |||||
* | added Reflection class (descendant of Drawable) | Alexander Sulfrian | 2013-01-05 | 2 | -0/+88 |
| | |||||
* | added drawable abstract base class | Alexander Sulfrian | 2013-01-05 | 2 | -0/+117 |
| | |||||
* | renamed MissingSongTagException to MissingTagException and added tag parameter | Alexander Sulfrian | 2013-01-05 | 2 | -7/+18 |
| | |||||
* | added try ... catch for each line and warn if error at line | Alexander Sulfrian | 2013-01-05 | 1 | -27/+33 |
| | |||||
* | sort includes | Alexander Sulfrian | 2013-01-05 | 1 | -2/+4 |
| | |||||
* | added custom exception classes for better catching them (gotta catch 'em all) | Alexander Sulfrian | 2013-01-05 | 6 | -6/+115 |
| | |||||
* | removed invalid comment | Alexander Sulfrian | 2013-01-05 | 1 | -1/+1 |
| | |||||
* | added missing getter for song header values | Alexander Sulfrian | 2013-01-05 | 2 | -48/+40 |
| | |||||
* | moved todo items down | Alexander Sulfrian | 2013-01-05 | 2 | -9/+9 |
| | |||||
* | parse all special headers | Alexander Sulfrian | 2013-01-05 | 2 | -19/+13 |
| | | | | | renamed finish to stop changed type of year to int | ||||
* | added functions for parsing float, int and bool headers | Alexander Sulfrian | 2013-01-05 | 2 | -0/+60 |
| | |||||
* | changed handling of empty list detection | Alexander Sulfrian | 2013-01-05 | 1 | -4/+2 |
| | | | | std::list.back() returns undefined values if list is empty | ||||
* | added calculations to swap from relative mode to absolute beat times | Alexander Sulfrian | 2013-01-05 | 2 | -4/+20 |
| | |||||
* | added {r,l}trim_newline that only remove '\r' and '\n', remove '\r' from lyrics | Alexander Sulfrian | 2013-01-05 | 2 | -0/+31 |
| | |||||
* | remove typo | Alexander Sulfrian | 2013-01-05 | 1 | -1/+1 |
| | |||||
* | added string constructor and operator= to locale independent float class | Alexander Sulfrian | 2013-01-05 | 2 | -11/+22 |
| | |||||
* | removed more memory leaks | Alexander Sulfrian | 2013-01-05 | 2 | -0/+12 |
| | |||||
* | fix memory leak | Alexander Sulfrian | 2013-01-05 | 1 | -0/+6 |
| |