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.

Map/Map_test.h

Committer:
evanso
Date:
2020-05-21
Revision:
67:a2984682d641
Parent:
27:8bb2bd97c319
Child:
82:3211b31e9421

File content as of revision 67:a2984682d641:

#ifndef MAP_TEST_H
#define MAP_TEST_H

/** Map Test
 * @brief Checks that the map moves to the correct x position depedning on 
 * joystick input
 * @author Benjamin Evans, University of Leeds
 * @date April 2020
 * @return true if test are passed 
 */
bool map_move_test(Direction d_, int expected_x_position){
    // Objects reqired for test
    Map map;
    N5110 lcd;
    Gamepad pad;
    
    // Initialise map in start postion of -84,42
    pad.init();
    map.init(pad); 
    
    printf("Espected map x position = %d, : ",expected_x_position);
    
    // Draws map but with move variable set so it starts above 0
    // As can't rea pixel of the LCD
    map.draw_map(lcd, d_);
    
    //Reads start postion of map drawn
    int map_start_draw_postion = map.get_position_x_map();
    
    // Checks final position with espected
    if (map_start_draw_postion  == expected_x_position) {
        printf ( "Passed!\n");
        return true;
    } else {
        printf ( "Failed! value = %d,  (expecting  %d)\n",
        map_start_draw_postion, expected_x_position);
        return false;
    }
}

#endif