aboutsummaryrefslogtreecommitdiffstats
path: root/src/gameplay.hpp
blob: f66e0a691e1bd9c9b80675e71f242be5a60180da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*********************************/
/*   THRESHOLD        (  //      */
/*   gameplayh         ( )/      */
/*   by salade         )(/       */
/*  ________________  ( /)       */
/* ()__)____________)))))   :^}  */
/*********************************/

#ifndef GAMEPLAY_H_
#define GAMEPLAY_H_

#include "terrain.hpp"
#include "window.hpp"
#include "entity.hpp"

#include <vector>
#include <iostream>

// sound defines
#define SHOTTY_BANG    "../meta/media/mp3/shotty_shoot.mp3"
#define SHOTTY_RELOAD  "../meta/media/mp3/shotty_reload.mp3"

// player textures
#define MUCHACHO_TEX "../meta/media/sprites/cowboy_idle.png"

// bad boy textures
#define SBIRE_TEX_IDLE "../meta/media/sprites/sbire_idle.png"
#define SBIRE_TEX_HURT "../meta/media/sprites/sbire_hurt.png"

// TODO: boss textures

#define COOLPURPLE CLITERAL(Color){ 170, 153, 255, 255 }    // cool Purple
//rgb(170,153,255)
class Game {
    int nEnemies; // number of enemies on given level

    std::vector<Entity> * enemies;

    std::vector<Terrain*> * terrain;

    Entity * player;

    std::string next; // next level
    std::string current; // next level

    Camera2D * camera;

    int frameWidth;
    int frameHeight;

    Rectangle sourceRec;

    Vector2 origin;

  public:
    Game(std::string const &path);
    ~Game();

    void start() ;
    void draw() const;
    int tick() const;
    int getKeys() const;
    int shoot() const;
    int hit(Entity en, Vector2 add1, Vector2 add2) const ;

    std::string const &getNext() const; // returns next level's string
    std::string const &getCurrent() const; // returns next level's string
};

#endif // GAMEPLAY_H_