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
Minerengine.h
- Committer:
- el17arm
- Date:
- 2019-03-28
- Revision:
- 11:61f28e3448d3
- Parent:
- 10:65a6866d418b
- Child:
- 12:adf4ec04ced2
File content as of revision 11:61f28e3448d3:
#ifndef MINERENGINE_H
#define MINERENGINE_H
#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
const int miner_right[24] = {
1,1,1,
1,1,0,
1,1,1,
0,1,0,
1,1,1,
1,1,1,
0,1,0,
0,1,1,
};
const int miner_left[24] = {
1,1,1,
0,1,1,
1,1,1,
0,1,0,
1,1,1,
1,1,1,
0,1,0,
1,1,0,
};
class Minerengine
{
public:
Minerengine();
~Minerengine();
void read_direction(Gamepad &pad);
void miner_move();
void miner_draw(N5110 &lcd);
void miner_gravity(N5110 &lcd);
void miner_jump(N5110 &lcd, Gamepad &pad);
void miner_init();
void miner_collision(N5110 &lcd);
private:
Direction _d;
int _direction;
int _jump;
int _x;
int _y;
int _right_collision;
int _left_collision;
int _stop_jump;
int _gravity;
};
#endif