User Tools

Site Tools


public:problem_solving_challenge_2016

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
public:problem_solving_challenge_2016 [2016/10/07 06:55] – created davidthuepublic: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://ru.is/davidthue|David Thue]]** ([[http://cadia.ru.is|CADIA]] & SCS @ RU)+**Design & Code: [[http://ru.is/~davidthue|David Thue]]** ([[http://cadia.ru.is|CADIA]] & SCS @ RU)
    
 =====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.
  
-{{ :public:problem_solving_challenge_2015:codeship_intro.png?nolink&600 |}}+{{ :public:problem_solving_challenge_2015:codeship.png?nolink&600 |}}
 =====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**: a bool about your ship's weapon.   * **weaponReady**: a bool about your ship's weapon.
  
 For example, you can say things like: For example, you can say things like:
  
-    // print out grid cell at column 0, row +    // print out grid cell at row 0, column 
-    print(grid[00]);+    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's an asteroid there and our weapon is ready +    // test grid location 0][2] and try shooting if there's an asteroid there and our weapon is ready 
-    if(grid[x, y] == "A" && weaponReady)+    if(grid[0][2] == "A" && weaponReady)
     {     {
         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 and add the grid cell [ij] to our output string+    // for each row i, step along the columns with and add the grid cell [i][j] to our output string
     output = "";         output = "";    
-    for(= 0; < 7; j++)+    for(= 0; < 7; i++)
     {     {
-        for(= 0; < 5; i++)+        for(= 0; < 5; j++)
         {         {
-            output = output + grid[ij];+            output = output + grid[i][j];
         }         }
         output = output + "\n"; // add a line break in between rows         output = output + "\n"; // add a line break in between rows
Line 117: Line 117:
     while(!asteroidFound && col < 5)     while(!asteroidFound && col < 5)
     {     {
-        if(grid[col, 0] == "A")+        if(grid[0][col] == "A")
         {         {
             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. (//You'll still have a copy of your code in an external editor, right?//) 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. (//You'll still have a copy of your code in an external editor, right?//)
 +
 +=====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**, and **ensure that you submit at least one score in Challenge Mode**. Scores are submitted in Challenge Mode whenever either your ship explodes or you press the Reset button. Only scores earned in Challenge Mode will count toward your grade; scores earned in Training Mode will not count. 
 +
 +=====Hand-ins=====
 +
 +To receive a grade for your ship's performance, you must **register your team in MySchool** and **submit a text file containing your ship's code**.
  
 =====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)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki