For the team project, you will build a real-time massively multiplayer online (MMO) game. You have a large amount of freedom in the design of your project as long as it meets the criteria outlined in this document.
The term "game" is used fairly loosely here. If you have an app idea that is not technically a game, you might still be able to build it as long as it satisfies all the requirements.
If you are forming a team, please use the following form to let us know the members of your team, your public GitHub repository link, and your team name. Teams must consist of either 4 or 5 members. If you have a team of 3, you must find a 4th member to agree to be part of your team.
Team Formation Form: https://docs.google.com/forms/d/e/1FAIpQLSfVOpVZRhIanL66FFp7ZwsjkZUIH-T21W57pvUSM_Y2OBIIUA/viewform?usp=dialog
If you prefer to be placed on a random team instead of finding your own teammates, please fill out this form. When you are notified of your random team, via email, please fill out the team formation form letting us know your chosen team name and GitHub link.
Random Team Form: https://docs.google.com/forms/d/e/1FAIpQLSeXZGfnOcWILZ50GPdtDtcKrK7LFxddgbA6H9eIt8DhqV2-3w/viewform?usp=dialog
Anyone who is not part of team and didn't fill out the random team form will be placed on a random team after the team formation deadline.
You must fill out the team meeting and eval form for each week of the project. There are 4 weeks for the project so you are expected to have at least 4 submissions of this form. These are submitted on an individual basis and must be completed by each team member. You are expected to meet with your team [at least] weekly and fill out the form after each meeting, though you must still fill out the form even if there was no meeting (Where you should explain why you went a whole week without meeting).
All the AO grading described in this document determines your team score for the project. Your actual grade (number of AOs earned) may be adjusted based on your individual contributions to the project. These decisions will be made on a case-by-case basis at the discretion of the course staff. Factors used to determine these adjustments include:
These objectives are due by the team project checkpoint. For grading purposes, we will check out your latest commit that was made before the deadline. You should continue working on your project during grading of the checkpoint.
You have the freedom to choose any web framework or language for this project. However, you are required to use a web framework (You cannot start from a TCP socket. That's what the homework was all about). Examples of web frameworks, and their language, are provided. Any web framework that is not on this list is also allowed.
Once your team agrees on a framework, you should build out the foundation of your app using the framework. For this objective, your app must contain the following features and structure:
Grading Note: If any one of these features are missing or non-functional, the objective is not complete.
All objectives [except deployment] will be tested by:
It is strongly recommended that you test your app by cloning a fresh copy of your repo, after the last commit for the deadline, and going through these steps. This will simulate exactly what we'll do during grading and will expose any setup issues you may have. It is common for an app to run in your working directory, but not from a fresh clone (eg. If you have dependencies installed locally in a .venv or node_modules directory). Test your app to make sure it will run during grading.
Build a real-time MMO. This game must support any number [within reason] of players playing together in the same instance of your game. You have much freedom in the design of your game as long as all these featured are implemented:
You have many options for the visuals of your game. You will not be graded on how visually appealing your game is so an HTML canvas with basics shapes will suffice. If you want to make something more impressive though, you should consider using a game framework like phaser.io.
If you're lacking ideas, agar.io is an example of a game that meets all these criteria.
Deploy your app on a publicly available server with a domain name and HTTPS with a valid certificate. You may use any means available to accomplish this, though it is recommended that you take advantage of the GitHub Student Developer Pack which includes offers for free domain names for 1 year. You will be provided an AWS instance to deploy your app and add a DNS record for your domain name to point to your instance.
When deployed, add a link to your app in the readme of your repository so we can find your deployment.
Note the following implications of this objective:
Security: If using MongoDB, do not map port 27017:27017 for your MongoDB in your docker-compose file. This is a major security risk that makes your database publicly available. Since you are deploying on the Internet in this objective, that means everyone on the planet would have access to your DB and attackers will steal your data. You may want ot map this port for testing purposes in your development environments, but this MUST be removed before deploying.
These objectives are due by the team project deadline.
Expand the logging that was set up in checkpoint AO1. Add the following features to your logging:
Users can upload custom images to be used as their avatar in the game. These images must appear in the game and move with the player's character. You must support at least jpg and png images of any resolution or aspect ratio. If the uploaded image does not fit the aspect ratio expected for your game, you must choose a way to modify the image so it can be used without distorting/stretching the original image (eg. By cropping the image)
Of the following features, add at least 3 of them of your choice to your app:
Sing up for a presentation time: https://calendly.com/hartloff/cse312-presentations
You will give a presentation demoing your project and opening it for the audience to test. Your project must be deployed to a live server before your presentation and the audience will use your app during your demo.
Your presentation should be 8-10 minutes. Not all team members have to talk during the presentation, but all must be present and at the front of the room. Any team members who are not present will earn 0 application objectives for the presentation (Having absent members does not affect the grade of those who are present).
Your app must be deployed and publicly available during your presentation. You must share the link and the app must be functional for anyone in the audience.
Your deployed app must be accessible via HTTPS with a valid certificate. There must not be any security warnings (ie. self-signed certificates) when a user visits your app.
If your app is not properly deployed, your team will earn 0 application objectives for the presentation.
Demo the functionality of your app from the user perspective. Run your app and show all the functionality of the required features as well as any additional features your team implemented. For any features that are incomplete, you should still mention the feature and the status of development. You can still earn full credit for the presentation even if some features are not complete or functional.
During the demo portion of your presentation, it is recommended that you hide your URL from the audience. Leaking the URL early can entice someone in the audience to use your app during the demo. You should lock up this AO before revealing your URL and moving to AO2.
After your demo, reveal your URL to the audience so everyone in attendance can test your app. During this test, everyone should be able to play your game without issue. Your app should be able to handle the load of all the users playing simultaneously without crashing or suffering severe performance issues.
Logging: After the presentation, submit the logs of your app that were generated during the presentation to Autolab. These logs must at least contain the required logging from checkpoint AO1 (Requests with IP, method, path, and timestamp).
Each objective will be scored on a 0-3 scale as follows:
3 (Complete) | Clearly correct |
2 (Complete) | Mostly correct, but with some minor issues |
1 (Incomplete) | Not all requirements outlined in this document are functional, but an honest attempt was made to complete the objective. This includes issues running Docker or docker-compose even if the code for the objective is correct |
0.3 (Incomplete) | The objective would earn a 3, but a security risk was found while testing |
0.2 (Incomplete) | The objective would earn a 2, but a security risk was found while testing |
0.1 (Incomplete) | The objective would earn a 1, but a security risk was found while testing |
0 (Incomplete) | No attempt to complete the objective or violation of the assignment (Ex. Using an HTTP library) |
Note that for your final grade there is no difference between a 2 and 3, or a 0 and a 1. The numeric score is meant to give you more feedback on your work.
3 | Objective Complete |
2 | Objective Complete |
1 | Objective Not Complete |
0 | Objective Not Complete |
For each objective for which you earned a 0.3 or 0.2, you will still have an opportunity to earn credit for the objective by submitting an essay about the security issue you exposed. These essays must:
Any submission that does not meet all these criteria will be rejected and your objective will remain incomplete.
Due Date: Security essays are due 1-week after grades are released.
Security essays are individual assignments. It is important that every member of the team understands the importance of preventing security vulnerabilities even if they did not write the offending code. Multiple members of a team submitting the same, or similar, essays is an academic integrity violation.
Any essay may be subject to an interview with the course staff to verify that you understand the importance of the security issue that you exposed. If an interview is required, you will be contacted by the course staff for scheduling. Decisions of whether or not an interview is required will be made at the discretion of the course staff.