Ben Evans University Second Year Project. Game Called Defender.

Dependencies:   mbed

https://os.mbed.com/media/uploads/evanso/84bc1a30759fd6a1e3f1fd1fae3e97c2.png

Hello, soldier, you have been specially selected as the defender of planet earth.

Your mission, if you choose to accept it. Fly around the planet and pulverise invading alien ships for as long as you can. Stop the aliens abducting the innocent people on the ground. Be warned if an alien ship manages to abduct a person and take them to top of the screen, they will no longer move randomly and will begin to hunt you down. This sounds like a challenge you were trained for.

But don’t worry soldier you’re not going into battle empty-handed. Your ship is equipped with a state of the art laser beam that has unlimited ammo and four smart bombs that will destroy anything on the screen. The ship also has three lives so use them wisely.

As time goes on more alien ships will arrive on planet earth increasing the difficulty of your mission. And remember the landscape bellow loops around so if you continually fly in the same direction you go to your original position. Good luck soldier.

Revision:
37:a05eac7fcb4c
Parent:
27:8bb2bd97c319
Child:
38:75bd968daa31
--- a/test.h	Fri May 15 16:31:25 2020 +0000
+++ b/test.h	Sat May 16 16:16:43 2020 +0000
@@ -7,13 +7,13 @@
 #include "Alien_test.h"
 #include "Weapons_test.h"
 #include "Explosion_test.h"
+#include "People_test.h"
  
 /** Test
  * @brief Runs all tests for game 
  * @author Benjamin Evans, University of Leeds
  * @date April 2020 
  */
- 
 // Spaceship tests -------------------------------------------------------------
 void run_spaceship_movement_tests(){
     printf ("\nTesting spaceship_movement_test() \n");
@@ -31,12 +31,12 @@
     if (spaceship_movement_test(NW, 37, 21)) passed_counter++;
     
     // prints results
-    printf ("\nspaceship_movement_test passed %d tests out of 9\n",
+    printf ("\nspaceship_movement_test passed %d tests out of 9\n\n\n",
     passed_counter);
 }
 
 void run_spaceship_draw_tests(){
-    printf ("\nTesting spaceship_draw_tests() \n");
+    printf ("\nTesting spaceship_draw_tests() \n\n");
     int passed_counter = 0;
     
     // Runs test with max movement directions 
@@ -46,13 +46,13 @@
     if (spaceship_draw_test(NW, 1, 64, 0)) passed_counter++;
     
     // prints results
-    printf ("\nspaceship_draw_test passed %d tests out of 4\n",passed_counter);
+    printf ("\nspaceship_draw_test passed %d tests out of 4\n\n\n",passed_counter);
 }
 
 // Map tests -------------------------------------------------------------------
 
 void run_map_draw_tests(){
-    printf ("\nTesting map_draw_tests() \n");
+    printf ("\nTesting map_draw_tests() \n\n");
     int passed_counter = 0;
     
     // Runs multiple map tests
@@ -67,28 +67,31 @@
     if (map_move_test(NW, -82)) passed_counter++;
     
     // prints results
-    printf ("\nmap_draw_test passed %d tests out of 9\n",passed_counter);
+    printf ("\nmap_draw_test passed %d tests out of 9\n\n\n",passed_counter);
 }
 
 // Alien tests -----------------------------------------------------------------
-void run_alien_movement_tests(){
-    printf ("\nTesting alien_movement_test() \n");
+void run_alien_draw_tests(){
+    printf ("\nTesting alien_draw_test() \n\n");
     int passed_counter = 0;
 
     // Runs test with all posible movment directions 
-    if (alien_movement_test(0, 1, 0)) passed_counter++;
-    if (alien_movement_test(1, 1, 1)) passed_counter++;
-    if (alien_movement_test(2, 1, -1)) passed_counter++;
-    if (alien_movement_test(3, -1, 0)) passed_counter++;
-    if (alien_movement_test(4, -1, 1)) passed_counter++;
-    if (alien_movement_test(5, -1, -1)) passed_counter++;
+    if (alien_draw_test(1,CENTRE, 1, 1)) passed_counter++;
+    if (alien_draw_test(1,N, 43, 20)) passed_counter++;
+    if (alien_draw_test(0,NE, -23, 6)) passed_counter++;
+    if (alien_draw_test(0,E, 23, -34)) passed_counter++;
+    if (alien_draw_test(0,SE, -23, -43)) passed_counter++;
+    if (alien_draw_test(0,S, 100, 26)) passed_counter++;
+    if (alien_draw_test(0,SE, 40, 100)) passed_counter++;
+    if (alien_draw_test(1,E, 70, 5)) passed_counter++;
+    if (alien_draw_test(1,NE, 6, 44)) passed_counter++;
     
     // prints results
-    printf ("\nalien_movement_test passed %d tests out of 6\n",passed_counter);
+    printf ("\nalien_draw_test passed %d tests out of 9\n\n\n",passed_counter);
 }
 
 void run_alien_collision_test(){
-    printf ("\nTesting alien_collision_test() \n");
+    printf ("\nTesting alien_collision_test() \n\n");
     int passed_counter = 0;
 
     // Runs test with all differnt possible inputs
@@ -98,12 +101,12 @@
     if (alien_collision_test(0, 0, 20,22)) passed_counter++;
     
     // prints results
-    printf ("\nalien_movement_test passed %d tests out of 4\n",passed_counter);
+    printf ("\nalien_draw_test passed %d tests out of 4\n\n\n",passed_counter);
 }
 
 // Weapons tests ---------------------------------------------------------------
 void run_weapons_draw_tests(){
-    printf ("\nTesting spaceship_draw_tests() \n");
+    printf ("\nTesting spaceship_draw_tests() \n\n");
     int passed_counter = 0;
     
     // Runs test with max movement directions 
@@ -115,12 +118,12 @@
     if (weapons_draw_test(0, 0, 2, 33, 24)) passed_counter++;
     
     // prints results
-    printf ("\nspaceship_draw_test passed %d tests out of 6\n",passed_counter);
+    printf ("\nspaceship_draw_test passed %d tests out of 6\n\n\n",passed_counter);
 }
 
 // Explosion tests -------------------------------------------------------------
 void run_explosion_draw_tests(){
-    printf ("\nTesting explosion_draw_tests() \n");
+    printf ("\nTesting explosion_draw_tests() \n\n");
     int passed_counter = 0;
     
     // Runs test with max movement directions 
@@ -130,7 +133,28 @@
     if (explosion_draw_test(1, 64, 2)) passed_counter++;
     
     // prints results
-    printf ("\nspaceship_draw_test passed %d tests out of 4\n",passed_counter);
+    printf ("\nspaceship_draw_test passed %d tests out of 4\n\n\n",passed_counter);
+}
+
+// People tests ----------------------------------------------------------------
+
+void run_people_draw_tests(){
+    printf ("\nTesting people_draw_tests() \n\n");
+    int passed_counter = 0;
+    
+    // Runs test with max movement directions 
+    if (people_draw_test(CENTRE, 1,44)) passed_counter++;
+    if (people_draw_test(N, 0,100)) passed_counter++;
+    if (people_draw_test(NE, 0, -100)) passed_counter++;
+    if (people_draw_test(E, 1,0)) passed_counter++;
+    if (people_draw_test(SE, 1,82)) passed_counter++;
+    if (people_draw_test(S, 1,43)) passed_counter++;
+    if (people_draw_test(SW, 0,-64)) passed_counter++;
+    if (people_draw_test(W, 0,-6)) passed_counter++;
+    if (people_draw_test(NW, 0,84)) passed_counter++;
+    
+    // prints results
+    printf ("\npeople_draw_test passed %d tests out of 9\n\n\n",passed_counter);
 }
 
 #endif
\ No newline at end of file