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
CrossyChicken/CrossyChicken.h@27:e2af196bd9ab, 2020-05-15 (annotated)
- Committer:
- el19tb
- Date:
- Fri May 15 22:47:35 2020 +0000
- Revision:
- 27:e2af196bd9ab
- Parent:
- 19:6d9721ffc078
made end posts for level one, made the sprite as well as position of the post
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
el19tb | 2:86cef2afa648 | 1 | #ifndef CROSSYCHICKEN_H |
el19tb | 2:86cef2afa648 | 2 | #define CROSSYCHICKEN_H |
el19tb | 3:648c9d5001be | 3 | |
el19tb | 2:86cef2afa648 | 4 | #include "mbed.h" |
el19tb | 2:86cef2afa648 | 5 | #include "N5110.h" |
el19tb | 2:86cef2afa648 | 6 | #include "Gamepad.h" |
el19tb | 3:648c9d5001be | 7 | #include "Chicken.h" |
el19tb | 3:648c9d5001be | 8 | #include "Car.h" |
el19tb | 11:cc5861abfca5 | 9 | #include "Level.h" |
el19tb | 13:cd6d2f999057 | 10 | #include "Vehicle.h" |
el19tb | 13:cd6d2f999057 | 11 | |
el19tb | 4:aae7f8d4ab78 | 12 | #include <vector> |
el19tb | 2:86cef2afa648 | 13 | |
el19tb | 2:86cef2afa648 | 14 | |
el19tb | 17:67dbdfcdcec2 | 15 | struct Water |
el19tb | 15:b15bf9357cd9 | 16 | { |
el19tb | 19:6d9721ffc078 | 17 | int x; |
el19tb | 15:b15bf9357cd9 | 18 | int row; |
el19tb | 19:6d9721ffc078 | 19 | char c; |
el19tb | 17:67dbdfcdcec2 | 20 | float speed; |
el19tb | 19:6d9721ffc078 | 21 | }; |
el19tb | 19:6d9721ffc078 | 22 | |
el19tb | 19:6d9721ffc078 | 23 | struct Safety |
el19tb | 19:6d9721ffc078 | 24 | { |
el19tb | 17:67dbdfcdcec2 | 25 | int x; |
el19tb | 19:6d9721ffc078 | 26 | int row; |
el19tb | 19:6d9721ffc078 | 27 | char c; |
el19tb | 19:6d9721ffc078 | 28 | }; |
el19tb | 15:b15bf9357cd9 | 29 | |
el19tb | 2:86cef2afa648 | 30 | class CrossyChicken { |
el19tb | 11:cc5861abfca5 | 31 | public: |
el19tb | 11:cc5861abfca5 | 32 | |
el19tb | 11:cc5861abfca5 | 33 | Level *local_level; |
el19tb | 15:b15bf9357cd9 | 34 | int row_number; |
el19tb | 18:6be4c3c94a3d | 35 | int grid_width; // screen width in grid units |
el19tb | 17:67dbdfcdcec2 | 36 | |
el19tb | 18:6be4c3c94a3d | 37 | std::vector<Background> roads; |
el19tb | 19:6d9721ffc078 | 38 | std::vector<Safety> safety_lane; |
el19tb | 19:6d9721ffc078 | 39 | std::vector<Water> water; |
el19tb | 27:e2af196bd9ab | 40 | |
el19tb | 27:e2af196bd9ab | 41 | WaterObject end_post_one; // level 1 -> end post, if frog touches progress next level |
el19tb | 18:6be4c3c94a3d | 42 | |
el19tb | 18:6be4c3c94a3d | 43 | /* |
el19tb | 17:67dbdfcdcec2 | 44 | std::vector<Water> row_water_one; // multiple water objects |
el19tb | 17:67dbdfcdcec2 | 45 | std::vector<Water> row_water_two; // multiple water objects |
el19tb | 17:67dbdfcdcec2 | 46 | std::vector<Water> row_water_three; // multiple water objects |
el19tb | 17:67dbdfcdcec2 | 47 | std::vector<Water>::size_type it; // iterator used to fill the vector |
el19tb | 18:6be4c3c94a3d | 48 | */ |
el19tb | 13:cd6d2f999057 | 49 | CrossyChicken(Level *level); |
el19tb | 11:cc5861abfca5 | 50 | |
el19tb | 2:86cef2afa648 | 51 | public: |
el19tb | 2:86cef2afa648 | 52 | void start(); |
el19tb | 2:86cef2afa648 | 53 | void input(); |
el19tb | 2:86cef2afa648 | 54 | void process_input(); |
el19tb | 2:86cef2afa648 | 55 | void clear(); |
el19tb | 2:86cef2afa648 | 56 | |
el19tb | 2:86cef2afa648 | 57 | void game(); |
el19tb | 2:86cef2afa648 | 58 | void refresh(); |
el19tb | 3:648c9d5001be | 59 | |
el19tb | 3:648c9d5001be | 60 | void moveChicken(int xWay, int yWay); |
el19tb | 3:648c9d5001be | 61 | |
el19tb | 5:6e3afee7eac3 | 62 | void moveCar(Car *car, int dir, int x); |
el19tb | 3:648c9d5001be | 63 | void move(); |
el19tb | 3:648c9d5001be | 64 | |
el19tb | 3:648c9d5001be | 65 | void setup(); |
el19tb | 8:52794de935b2 | 66 | void setCollision(Car* object); |
el19tb | 8:52794de935b2 | 67 | void frogOnLog(Car* car); |
el19tb | 8:52794de935b2 | 68 | bool returnCollision(Car* log); |
el19tb | 4:aae7f8d4ab78 | 69 | |
el19tb | 3:648c9d5001be | 70 | private: |
el19tb | 2:86cef2afa648 | 71 | }; |
el19tb | 2:86cef2afa648 | 72 | |
el19tb | 2:86cef2afa648 | 73 | |
el19tb | 2:86cef2afa648 | 74 | #endif |
el19tb | 2:86cef2afa648 | 75 | |
el19tb | 2:86cef2afa648 | 76 | |
el19tb | 2:86cef2afa648 | 77 |