Finished Memento implementation in ERacer class with GameMemento basic but workable and extendable so we can add items for it to control
Develop interface between ERacer class and Mementos
Mementos are initially instantiated in ERacer initSingleton() function
pollingLoop() passes keyboard input to current memento
pollingLoop() also calls currentMemento update function to redisplay memento
Tightened up ERacer class' init and reshape functions
Developed Memento base class that can be extended into individual memento singletons
Conversion from Glaux to SDL - ModelLoader.cpp
AUX_RGBImageRec -> SDL_Surface
SDL_LoadBMP
pBitmap.data -> pBitmap.pixels
pBitmap.xValue -> pBitmap.w
pBitmap.yValue -> pBitmap.h
New TODO items
Create audio class using SDL's audio functions
Implement SDL timer functions
Test SDL code above to eliminate dependency ModelLoader on GLAUX. I know it compiles...but does it work? Since Tim hasn't got the ModelLoader working with Glaux I can't test this code.
Further worked on fine tuning SDL so that it compiles and runs
Eliminated all compile warnings and linker errors on Windows through tinkering with project linker and C++ settings
Had to remove a library that was causing linker errors
Worked out a couple errors that occured during execution
Spent way too much time trying to figure out why the sample project code to display a fullscreen selection window won't work in our game. Decided to just scrap it and allow resizing of the window
Worked on figuring out and implementing keyboard input polling. Pressing Alt+F4 now quits the application...good because there was no way to quit other than through TaskManager during fullscreen mode.