summaryrefslogtreecommitdiffstats
path: root/tdepacman/monster.h
blob: 385c513187bdecad7a647f0e9730fe0d5e526edb (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
#ifndef MONSTER_H
#define MONSTER_H

#include <stdlib.h>
#include <tqpixmap.h>
#include <tqwidget.h>

#include "board.h"

enum monsterState { dangerous, harmless, rem, arrested };

class Monster {
public:
    Monster(Board *b, int mid = 0);
    void setMaxPixmaps(int maxBody, int maxEyes);
    void setArrested(int ticks, int duration);
    void setDangerous(int ticks, int IQ);
    void setHarmless(int ticks, int hDuration, int wDuration);
    void setREM(int ticks);
    void setPosition(int pos);
    void setPrison(int pos);
    void setFreedom(int pos);
    void setDirection(int dir);
    monsterState state();
    int position();
    int direction();
    int id();
    bool move();
    int body();
    int eyes();
private:
    Board   *board;
    int  ID;                            // ID of monster (0 = 1st, 1 = 2nd ... 7 = last)
    int  IQ;                            // Intelligence of movement (0 = dumb..180 = smart)

    monsterState actualState;           // The state of the monster

    int  pauseDuration;                 // Number of ticks before movement
    int  pause;                         // actual ticks before moevment (0 = move)
    int  dangerousPause;                // pause in dangerous-state

    int  harmlessDuration;              // Length of harmless-time in ticks
    int  harmlessLeft;                  // rest of the time in harmless-state
    int  warningDuration;               // warningtime before monster get dangerous again

    int  arrestDuration;                // Length of arrest in ticks
    int  arrestLeft;                    // time left of arrest
    int  arrestPause;                   // pause in arrest-state

    int  actualDirection;               // actual direction of monster
    int  lastDirection;                 // last direction, before no movement (X)
    int  actualPosition;                // actual position on board
    int  lastPosition;                  // the last position of the monster
    int  feetPosition;                  // left, right, left, right, ...
    int  maxBodyPixmaps;                
    int  maxEyesPixmaps;
    int  prisonPosition;                // where to go, if arrested
    int  freedomPosition;               // where to go, if released from prison
};

#endif // MONSTER_H