
Final Submission. I have read and agreed with Statement of Academic Integrity.
Dependencies: mbed
N5110/Bitmap.h
- Committer:
- Nicholas75179
- Date:
- 2020-05-22
- Revision:
- 2:bb50c3a9a05c
- Parent:
- 0:fde420d18f42
File content as of revision 2:bb50c3a9a05c:
#ifndef BITMAP_H #define BITMAP_H #include <vector> // Forward declarations class N5110; /** * @brief A black & white bitmap that can be rendered on an N5110 screen * @author Alex Valavanis <a.valavanis@leeds.ac.uk> * * @code // First declare the pixel map data using '1' for black, // or '0' for white pixels static int sprite_data[] = { 0,0,1,0,0, 0,1,1,1,0, 0,0,1,0,0, 0,1,1,1,0, 1,1,1,1,1, 1,1,1,1,1, 1,1,0,1,1, 1,1,0,1,1 }; // Instantiate the Bitmap object using the data above Bitmap sprite(sprite_data, 8, 5); // Specify rows and columns in sprite // We can render the bitmap wherever we want on the screen sprite.render(lcd, 20, 6); // x and y locations for rendering sprite.render(lcd, 30, 10); // We can also print its values to the terminal sprite.print(); * @endcode */ static int title[] = { 0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0, 0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0, 0,0,0,1,0,1,1,1,1,1,1,0,1,1,1,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,0,1,1,1,1,1,1,0,1,0,0,0,0, 0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0, 0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,1,0,0,0,0, 0,0,0,1,0,0,1,1,1,1,1,0,1,0,0,1,1,0,1,1,1,1,1,0,1,0,0,0,0,0,1,1,1,1,1,0,1,0,0,1,1,0,0,1,0,0,0,0, 0,0,0,1,0,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,1,0,0,0,1,0,0,1,0,0,0,0, 0,0,0,1,0,0,1,0,0,0,1,0,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,1,1,0,1,0,0,0,1,0,1,1,1,1,1,0,0,1,0,0,0,0, 0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0, 0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0, }; static int player_ship0[] = { 2,2,2,2,2,2,2,2,2,0,0,2, 2,2,2,2,2,0,0,0,0,1,1,0, 2,2,2,0,0,1,1,1,1,1,1,0, 2,0,0,1,1,1,1,0,0,0,0,0, 0,1,1,1,0,0,1,1,0,2,2,2, 2,0,0,1,1,1,1,0,0,0,0,0, 2,2,2,0,0,1,1,1,1,1,1,0, 2,2,2,2,2,0,0,0,0,1,1,0, 2,2,2,2,2,2,2,2,2,0,0,2, }; static int player_ship1[] = { 2,2,2,0,1,1,1,0,2,2,2,2, 2,2,2,2,0,1,1,1,0,0,0,2, 2,2,2,0,0,0,1,1,1,1,1,0, 2,0,1,1,1,1,1,0,0,0,2,2, 1,1,1,0,1,0,1,1,0,2,2,2, 2,0,1,1,1,1,1,0,0,0,2,2, 2,2,2,0,0,0,1,1,1,1,1,0, 2,2,2,2,0,1,1,1,0,0,0,2, 2,2,2,0,1,1,1,0,2,2,2,2 };//see line 93 of Bitmap.cpp class Bitmap{ private: /** * @brief The contents of the drawing, with pixels stored in row-major order * @details '1' represents a black pixel; '0' represents white */ std::vector<int> _contents; unsigned int _height; ///< The height of the drawing in pixels unsigned int _width; ///< The width of the drawing in pixels public: Bitmap(int const *contents, unsigned int const height, unsigned int const width); int get_pixel(unsigned int const row, unsigned int const column) const; void print() const; void render(N5110 &lcd, unsigned int const x0, unsigned int const y0) const; }; #endif // BITMAP_H