COEN 4830 - Intro to Computer Graphics
Fall 2019
Wild and Smokey is a turn-based wildfire fighting game. Players are given various wildfire fighting personnel and equipment which will aid them in the battle against the fire. Each turn the player will have the option to move, deploy, or evacuate these assets as the fire rages on.
Task | Deadline | Done |
---|---|---|
Project proposal | 09/20 |
✅ |
Project specifications | 10/11 |
✅ |
Project report 1 | 11/01 |
❌ |
Project report 2 | 11/22 |
❌ |
Project presentations | 12/06 |
❌ |
- Create readme
- Create todo section
- Make level class
- Make tile class
- Make code to render a level
- 2D
- 3D
- Level schema
- Code to read in level files
All projects can be contained in the same solution in order to easily switch between them. All projects must be contained in a subfolder to stay organized.
wildfire # repo folder
├── main # subfolder/category
│ ├── Smokey # project folder
│ │ ├── Source.cpp # project files
│ ├── Wildfire
│ │ ├── Source.cpp
├── demo
│ ├── FireDemo1
│ │ ├── Source.cpp
│ ├── Render2D
│ │ ├── Source.cpp
├── Development # files to include
│ ├── tile.cpp
│ ├── tile.h
│ ├── level.cpp
│ ├── level.h
└── ...
- Clone this repository. The repository root folder will also be the Visual Studio solution root folder.
git clone https://github.com/hattas/wildfire
- Select File > Create new project from existing code.
- Set the project file location to the location of the clone repository.
- Set the project name to the main solution name, whatever you want (WildfireSolution).
- Uncheck add files to the project...
- Click finish.
- Add existing projects as described below.
- Create a new empty project (Ctrl+Shift+N).
- Select "Add to solution".
- Add the appropriate subfolder to the end of the Location, e.g.
\demo
.
This method sucks but it's the only way.
- Change the name of the folder with the project you want to add.
- Create a new project from scratch with the old folder name as the project name.
- Copy the source files from the renamed folder into the new project.
- Delete the renamed folder.
- John Hattas - hattas
- Russell Reding - RussReding
- Paula Van Camp - Paulavancamp