@@ -179,15 +181,50 @@ This document describes the requirements for the Rogue Reborn project. The temp
\subsubsection{Work Partitioning}
\textcolor{red}{ This is not quite what this section is for, see "volere Template16" in the course repo for more information - CM}\\
The work required to complete this project has been partitioned between the Rogue++ team of Ian, Mikhail, and Or. Each member has been assigned a highly-cohesive, loosely-coupled segment of the code to be written. It was unanimously agreed upon that each person is to present their API to the rest of the team as soon as it is ready. This API materializes as a C++ header file which other modules can interpret and use.\\
\begin{itemize}
\item Ian is responsible for the game state control, flow, and graphics. This includes handling user input, rendering graphics, and displaying menus and high scores.\\
\item Mikhail is responsible for most player-tangibles. This includes eating, quaffing potions, handling weaponry, as well as using armor, rings, wands, and scrolls. This work will also transfer over to monster actions, which Mikhail will also actively develop.\\
The below table illustrates the events of the system:\\
\vspace{5mm}
\begin{tabular}{c | c | c }
Event & Input System & Response \\
\midrule
user presses key & libtcod detects keypress & system updates model and/or transitions ui \\
playerchar dies & system detects death & system reads and updates high scores \\
gameworld updates & system detects change & system renders onto virtual console \\
game prompts user & system detects UI change & system transitions to prompt state
\end{tabular}
\vspace{5mm}
The below flowchart illustrates the high level flow of the application:
\item Or is responsible for dungeon and feature generation. This includes generating room, corridor, wall, and door locations, in addition to handling vision and the placement of treasure and traps.