2019-12-05 11:50:58 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "game.h"
|
2019-12-09 19:08:05 +01:00
|
|
|
#include "sensors.h"
|
|
|
|
#include "data_source_camera.h"
|
2019-12-05 11:50:58 +01:00
|
|
|
|
2019-12-09 19:08:05 +01:00
|
|
|
#define GOALIE_ATKSPD_LAT 255
|
2019-12-05 12:53:14 +01:00
|
|
|
#define GOALIE_ATKSPD_BAK 350
|
|
|
|
#define GOALIE_ATKSPD_FRT 345
|
|
|
|
#define GOALIE_ATKSPD_STRK 355
|
|
|
|
#define GOALIE_ATKDIR_PLUSANG1 20
|
|
|
|
#define GOALIE_ATKDIR_PLUSANG2 35
|
|
|
|
#define GOALIE_ATKDIR_PLUSANG3 40
|
|
|
|
#define GOALIE_ATKDIR_PLUSANGBAK 40
|
|
|
|
#define GOALIE_ATKDIR_PLUSANG1_COR 60
|
|
|
|
#define GOALIE_ATKDIR_PLUSANG2_COR 70
|
2019-12-09 19:08:05 +01:00
|
|
|
#define GOALIE_ATKDIR_PLUSANG3_COR 70
|
2019-12-05 12:53:14 +01:00
|
|
|
|
2019-12-09 19:08:05 +01:00
|
|
|
class Goalie : public Game{
|
2019-12-05 11:50:58 +01:00
|
|
|
|
|
|
|
public:
|
2019-12-05 13:31:21 +01:00
|
|
|
Goalie();
|
2019-12-09 19:08:05 +01:00
|
|
|
|
|
|
|
void realPlay() override;
|
2019-12-05 11:50:58 +01:00
|
|
|
void goalie();
|
2019-12-05 13:31:21 +01:00
|
|
|
void ballBack();
|
2019-12-09 19:08:05 +01:00
|
|
|
void storcimentoPorta();
|
|
|
|
|
|
|
|
int atk_speed, atk_direction;
|
|
|
|
float cstorc;
|
2019-12-05 11:50:58 +01:00
|
|
|
};
|