About
This is an Java based Android application that utilises the MVC (Model View Controller) development process.
The model was made first and had to pass a series of unit tests to ensure functionality of the application met the given requirements by the stakeholder. The functionality of the model was focused around:
- Creation of the level.
- Sizing of the level.
- Data entry.
- Movements of the player.
- Creation and deletion of goals.
- Movement rules.
Once the model was made and passed all of its tests, the model had to have a GUI for end user to interact with. This was where creating the view and controller came into it. The view is what the user sees and interacts with. This is the maze itself, alerts, dropdowns, sounds, and gameboard updates.
The controller was used to handle the interactions of the view and pass them back to the model and update the view accordingly. The controller also will display messages back to the user for errors.