Difference between revisions of "GAM531/Team A"
(→Assigned Tasks) |
(→Assigned Tasks) |
||
Line 16: | Line 16: | ||
! Team Member !! Task !! Location | ! Team Member !! Task !! Location | ||
|- | |- | ||
− | | Justin Wilkin || Frame Rate Calculator || | + | | Justin Wilkin || Frame Rate Calculator || FPS enhancement class located in Graphics/FPS.hpp |
+ | |||
+ | Engine.hpp updated to hold pointer to FPS instance: | ||
+ | |||
+ | FPS* fps; | ||
+ | |||
+ | Engine.cpp updated to initialize FPS: | ||
+ | |||
+ | //Within Engine<RS>::initialize | ||
+ | |||
+ | fps = new FPS(); | ||
+ | |||
+ | Engine.cpp updated to update FPS calculation: | ||
+ | |||
+ | //Within Engine<RS>::render | ||
+ | |||
+ | if (fps) { | ||
+ | |||
+ | fps->update(); | ||
+ | fps->getFPS(); | ||
+ | fps->display(); | ||
+ | |||
+ | } | ||
+ | |||
|- | |- | ||
| Dima Rudeshko || Scene Ordering || reorderScene() function is located in Managers.cpp file and is called from Engine.cpp right after updateValues() | | Dima Rudeshko || Scene Ordering || reorderScene() function is located in Managers.cpp file and is called from Engine.cpp right after updateValues() |
Revision as of 15:19, 7 December 2014
GAM531/DPS931 | Weekly Schedule | Student List | Project Requirements | Teams and their Projects | Student Resources
Group Repository
Link to the assignment repository
Team Members
Assigned Tasks
Team Member | Task | Location |
---|---|---|
Justin Wilkin | Frame Rate Calculator | FPS enhancement class located in Graphics/FPS.hpp
Engine.hpp updated to hold pointer to FPS instance: FPS* fps; Engine.cpp updated to initialize FPS: //Within Engine<RS>::initialize fps = new FPS(); Engine.cpp updated to update FPS calculation: //Within Engine<RS>::render if (fps) { fps->update(); fps->getFPS(); fps->display(); } |
Dima Rudeshko | Scene Ordering | reorderScene() function is located in Managers.cpp file and is called from Engine.cpp right after updateValues() |
Davson Wandja | LOD Calculator |
Lab contribution
Team Member | Labs | OpenGL |
---|---|---|
Justin Wilkin | 2, 3, 4 | 8 |
Dima Rudeshko | 1, 5, 7, 10 | 7, 10 |
Davson Wandja | 6, 8, 9 | 9 |