public:problem_solving_challenge_2016
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
public:problem_solving_challenge_2016 [2016/10/07 06:55] – created davidthue | public:problem_solving_challenge_2016 [2024/04/29 13:33] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ======Game AI Problem Solving Challenge, Fall 2015 ====== | + | ======Game AI Problem Solving Challenge, Fall 2016 ====== |
- | **Design & Code: [[http:// | + | **Design & Code: [[http:// |
=====Introduction===== | =====Introduction===== | ||
Artificial Intelligence (AI) is an important part of many computer games, where it's often used to create dynamic challenges for players to overcome. In this problem solving task, your objective is to create an AI controller for a space ship in a simple 2D game. Survive for as long as you can by dodging incoming hazards, and earn a high score in Challenge Mode by shooting asteroids along the way. Welcome to Code Ship. | Artificial Intelligence (AI) is an important part of many computer games, where it's often used to create dynamic challenges for players to overcome. In this problem solving task, your objective is to create an AI controller for a space ship in a simple 2D game. Survive for as long as you can by dodging incoming hazards, and earn a high score in Challenge Mode by shooting asteroids along the way. Welcome to Code Ship. | ||
- | {{ : | + | {{ : |
=====Getting Oriented===== | =====Getting Oriented===== | ||
Line 17: | Line 17: | ||
===Training Mode vs. Challenge Mode=== | ===Training Mode vs. Challenge Mode=== | ||
- | The game can be run in two modes. In **Training Mode**, the stream of asteroids that your ship files through will always be the same after each reset. This can be useful while you test your code, but any high scores that you tally won't get counted. In **Challenge Mode**, the stream of asteroids will be different each time, but your high scores will be saved when your ship meets its end. | + | The game can be run in two modes. In **Training Mode**, the stream of asteroids that your ship files through will always be the same after each reset. This can be useful while you test your code, but any high scores that you tally won't get counted. In **Challenge Mode**, the stream of asteroids will be different each time, but your high scores will be saved when your ship meets its end or when you reset the game. |
====The Code Window==== | ====The Code Window==== | ||
Line 34: | Line 34: | ||
There are two things that your code can read about the environment: | There are two things that your code can read about the environment: | ||
- | * **grid[,]**: a 2D array of strings with 7 rows and 5 columns. Each string is a single character and represents something on the Playing Field. | + | * **grid[][]**: a 2D array of strings with 7 rows and 5 columns. Each string is a single character and represents something on the Playing Field. |
* **weaponReady**: | * **weaponReady**: | ||
For example, you can say things like: | For example, you can say things like: | ||
- | // print out grid cell at column | + | // print out grid cell at row 0, column |
- | print(grid[0, 0]); | + | print(grid[0][0]); |
| | ||
// test if the gun has finished recharging | // test if the gun has finished recharging | ||
Line 58: | Line 58: | ||
For example, you can say things like: | For example, you can say things like: | ||
- | // move to column 3, row 5 | + | // move to row 5 (Y-axis), column 3 (X-axis) |
command.moveX = 3; | command.moveX = 3; | ||
command.moveY = 5; | command.moveY = 5; | ||
Line 87: | Line 87: | ||
Conditionals are identical to C & C++. An example: | Conditionals are identical to C & C++. An example: | ||
- | // test grid location [x, y] and try shooting if there' | + | // test grid location |
- | if(grid[x, y] == " | + | if(grid[0][2] == " |
{ | { | ||
command.shootFirst = true; | command.shootFirst = true; | ||
Line 98: | Line 98: | ||
// print out the grid (the upper left corner is 0, 0) | // print out the grid (the upper left corner is 0, 0) | ||
- | // for each row j, step along the columns with i and add the grid cell [i, j] to our output string | + | // for each row i, step along the columns with j and add the grid cell [i][j] to our output string |
output = ""; | output = ""; | ||
- | for(j = 0; j < 7; j++) | + | for(i = 0; i < 7; i++) |
{ | { | ||
- | for(i = 0; i < 5; i++) | + | for(j = 0; j < 5; j++) |
{ | { | ||
- | output = output + grid[i, j]; | + | output = output + grid[i][j]; |
} | } | ||
output = output + " | output = output + " | ||
Line 117: | Line 117: | ||
while(!asteroidFound && col < 5) | while(!asteroidFound && col < 5) | ||
{ | { | ||
- | if(grid[col, 0] == " | + | if(grid[0][col] == " |
{ | { | ||
asteroidFound = true; | asteroidFound = true; | ||
Line 137: | Line 137: | ||
If, on the other hand, you would rather **avoid** this sort of thing, please try to avoid writing infinite loops in your code. If you happen to write one anyway, just refresh the page to start over. (// | If, on the other hand, you would rather **avoid** this sort of thing, please try to avoid writing infinite loops in your code. If you happen to write one anyway, just refresh the page to start over. (// | ||
+ | |||
+ | =====Grading===== | ||
+ | |||
+ | This project is meant to be tackled in teams of two, and your team's grade will be based on the highest score that your ship earns in Challenge Mode. To have your score be counted, be sure to **enter the names and kennitalas of your team members at the top of the game's interface**, | ||
+ | |||
+ | =====Hand-ins===== | ||
+ | |||
+ | To receive a grade for your ship's performance, | ||
=====Out in the Real World===== | =====Out in the Real World===== |
/var/www/cadia.ru.is/wiki/data/attic/public/problem_solving_challenge_2016.1475823300.txt.gz · Last modified: 2024/04/29 13:33 (external edit)