NppClone/src/level.h

51 lines
798 B
C
Raw Normal View History

2023-04-21 20:27:02 +02:00
#ifndef BACKGROUND_H
#define BACKGROUND_H
#include <cstdint>
#include <stdlib.h>
#include <azur/gint/render.h>
#include <vector>
#include "num/num.h"
#include "player.h"
struct Map {
/*width, height and the number of layer of the map*/
int w, h, nblayers;
/*the tileset to use*/
bopti_image_t *tileset;
int tileset_size;
/*list of all the tiles*/
short *layers[];
};
2023-04-22 12:50:03 +02:00
class Level
2023-04-21 20:27:02 +02:00
{
public:
2023-04-22 12:50:03 +02:00
Level( );
~Level( );
2023-04-21 20:27:02 +02:00
void Update( float dt );
2023-04-22 12:50:03 +02:00
void Render( void );
void RenderSelected( void );
2023-04-21 20:27:02 +02:00
void ChangeMap( int level, Player *MyPlayer );
void UpdateDataMap( Player *MyPlayer );
bool CanGo( Player *MyPlayer );
2023-04-22 12:50:03 +02:00
private:
int GetTileBackground( uint8_t x, uint8_t y );
int GetTileForeground( uint8_t x, uint8_t y );
2023-04-21 20:27:02 +02:00
};
#endif