Please enable JavaScript.
Coggle requires JavaScript to display documents.
Game with a Database - Coggle Diagram
Game with a Database
Documentation
Main focus is the data transfer
10 A3 pages including annotated code
2 minute video of high score table functioning
Ensure proforma is detailed
Annotated pseudocode
Include annotated screenshots
Show data tables
Evaluate against prescribed and self-determined criteria
Consider the impacts of the game/data
Security of data
References
Database
Use C# scripts in Game to call PHP scripts
PHP scripts to use SQL to manage database
Use PHP echo for debug
Use C# Debug.Log for error reporting
Collect username, scores distinct to particular user
Show data flow diagram
User Aspects
Login existing users
Take user to game menu
Register a new user
Do not allow repeated usernames
Only 6 characters allowed for username and password
Save game
Compares current score to previous high score and only saves if less than (time)
See high score table
Sorts the scores in ascending order (lowest to highest)
Return top 5 scores
Logout/exit game
Game
Auto saving with database
Login and Register pages
Consistent menus
Testing new features
Ensure scoring works effectively