public:problem_solving_challenge_2016
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
public:problem_solving_challenge_2016 [2016/10/08 09:19] – [Sensing the Environment] davidthue | public:problem_solving_challenge_2016 [2024/04/29 13:33] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 6: | Line 6: | ||
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 39: | Line 39: | ||
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]); | ||
| | ||
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 | + | // 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]; | ||
Line 117: | Line 117: | ||
while(!asteroidFound && col < 5) | while(!asteroidFound && col < 5) | ||
{ | { | ||
- | if(grid[col][0] == " | + | if(grid[0][col] == " |
{ | { | ||
asteroidFound = true; | asteroidFound = true; |
/var/www/cadia.ru.is/wiki/data/attic/public/problem_solving_challenge_2016.1475918395.txt.gz · Last modified: 2024/04/29 13:33 (external edit)