Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Sprite/Sprite.h@1:37802772843e, 2019-03-25 (annotated)
- Committer:
- joshdavy
- Date:
- Mon Mar 25 10:48:23 2019 +0000
- Revision:
- 1:37802772843e
- Child:
- 2:b62e8be35a5d
Basic Classes defined. Simple sprite drawing.;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
joshdavy | 1:37802772843e | 1 | #ifndef SPRITE_H |
joshdavy | 1:37802772843e | 2 | #define SPRITE_H |
joshdavy | 1:37802772843e | 3 | |
joshdavy | 1:37802772843e | 4 | #include "mbed.h" |
joshdavy | 1:37802772843e | 5 | #include "N5110.h" |
joshdavy | 1:37802772843e | 6 | #include "Gamepad.h" |
joshdavy | 1:37802772843e | 7 | #include "Bitmap.h" |
joshdavy | 1:37802772843e | 8 | |
joshdavy | 1:37802772843e | 9 | /*Sprite Class*/ |
joshdavy | 1:37802772843e | 10 | |
joshdavy | 1:37802772843e | 11 | extern N5110 lcd; |
joshdavy | 1:37802772843e | 12 | |
joshdavy | 1:37802772843e | 13 | class Sprite { |
joshdavy | 1:37802772843e | 14 | |
joshdavy | 1:37802772843e | 15 | public: |
joshdavy | 1:37802772843e | 16 | Sprite(); |
joshdavy | 1:37802772843e | 17 | ~Sprite(); |
joshdavy | 1:37802772843e | 18 | void init(int height,int width, int * bitmap,Vector2D pos); |
joshdavy | 1:37802772843e | 19 | void render(N5110 lcd); |
joshdavy | 1:37802772843e | 20 | Vector2D getPos(); |
joshdavy | 1:37802772843e | 21 | void setPos(Vector2D pos); |
joshdavy | 1:37802772843e | 22 | private: |
joshdavy | 1:37802772843e | 23 | Vector2D _pos; |
joshdavy | 1:37802772843e | 24 | Vector2D _velocity; |
joshdavy | 1:37802772843e | 25 | int _height; |
joshdavy | 1:37802772843e | 26 | int _width; |
joshdavy | 1:37802772843e | 27 | int * _bitmap; |
joshdavy | 1:37802772843e | 28 | }; |
joshdavy | 1:37802772843e | 29 | |
joshdavy | 1:37802772843e | 30 | #endif |