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.
Dependencies: mbed
Levelengine.h@15:2bda80896a84, 2019-03-29 (annotated)
- Committer:
- el17arm
- Date:
- Fri Mar 29 19:03:10 2019 +0000
- Revision:
- 15:2bda80896a84
- Parent:
- 14:dc3524d11921
- Child:
- 16:8384e9a480ef
major restructuring of classes and functions so no need for global variables anymore.; ; added collision with specific blocks on level.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| el17arm | 2:725c213b2396 | 1 | #ifndef Levelengine_H |
| el17arm | 2:725c213b2396 | 2 | #define Levelengine_H |
| el17arm | 2:725c213b2396 | 3 | |
| el17arm | 2:725c213b2396 | 4 | #include "mbed.h" |
| el17arm | 2:725c213b2396 | 5 | #include "N5110.h" |
| el17arm | 2:725c213b2396 | 6 | #include "Gamepad.h" |
| el17arm | 2:725c213b2396 | 7 | #include "Minerengine.h" |
| el17arm | 2:725c213b2396 | 8 | |
| el17arm | 14:dc3524d11921 | 9 | const int solid_block[9] = { |
| el17arm | 14:dc3524d11921 | 10 | 1,1,1, |
| el17arm | 14:dc3524d11921 | 11 | 1,0,1, |
| el17arm | 14:dc3524d11921 | 12 | 1,1,1, |
| el17arm | 14:dc3524d11921 | 13 | |
| el17arm | 14:dc3524d11921 | 14 | }; |
| el17arm | 14:dc3524d11921 | 15 | |
| el17arm | 2:725c213b2396 | 16 | class Levelengine |
| el17arm | 2:725c213b2396 | 17 | { |
| el17arm | 2:725c213b2396 | 18 | public: |
| el17arm | 2:725c213b2396 | 19 | |
| el17arm | 2:725c213b2396 | 20 | Levelengine(); |
| el17arm | 2:725c213b2396 | 21 | ~Levelengine(); |
| el17arm | 15:2bda80896a84 | 22 | void level_one(N5110 &lcd); |
| el17arm | 12:adf4ec04ced2 | 23 | |
| el17arm | 2:725c213b2396 | 24 | |
| el17arm | 2:725c213b2396 | 25 | private: |
| el17arm | 15:2bda80896a84 | 26 | int _collision; |
| el17arm | 3:d27ee2440829 | 27 | |
| el17arm | 2:725c213b2396 | 28 | |
| el17arm | 2:725c213b2396 | 29 | }; |
| el17arm | 2:725c213b2396 | 30 | |
| el17arm | 2:725c213b2396 | 31 | #endif |