2019-12-05 11:50:58 +01:00
|
|
|
#pragma once
|
|
|
|
|
2020-02-29 22:10:53 +01:00
|
|
|
#include "sensors/data_source_camera_vshapedmirror.h"
|
|
|
|
#include "sensors/sensors.h"
|
|
|
|
#include "strategy_roles/game.h"
|
2019-12-05 11:50:58 +01:00
|
|
|
|
2021-04-19 19:14:51 +02:00
|
|
|
#define STRIKER_ATTACK_DISTANCE 110
|
|
|
|
#define STRIKER_TILT_STOP_DISTANCE 140
|
2021-05-14 17:53:47 +02:00
|
|
|
#define STRIKER_PLUSANG 62
|
2021-05-10 18:28:41 +02:00
|
|
|
#define STRIKER_PLUSANG_VISIONCONE 7
|
2019-12-05 12:53:14 +01:00
|
|
|
|
2020-12-23 21:16:50 +01:00
|
|
|
class Striker : public Game{
|
2019-12-05 11:50:58 +01:00
|
|
|
|
|
|
|
public:
|
2020-11-04 17:46:14 +01:00
|
|
|
Striker();
|
|
|
|
Striker(LineSystem* ls, PositionSystem* ps);
|
2019-12-09 19:08:05 +01:00
|
|
|
|
2019-12-26 17:44:58 +01:00
|
|
|
private:
|
2019-12-09 19:08:05 +01:00
|
|
|
void realPlay() override;
|
2019-12-26 17:44:58 +01:00
|
|
|
void init() override;
|
2020-11-04 17:46:14 +01:00
|
|
|
void striker();
|
2021-04-14 14:58:15 +02:00
|
|
|
int tilt();
|
2019-12-09 19:08:05 +01:00
|
|
|
|
2021-04-14 14:58:15 +02:00
|
|
|
int atk_speed, atk_direction, atk_tilt;
|
2019-12-09 19:08:05 +01:00
|
|
|
float cstorc;
|
2019-12-26 17:44:58 +01:00
|
|
|
|
2021-04-19 19:14:51 +02:00
|
|
|
bool gotta_tilt;
|
2019-12-05 11:50:58 +01:00
|
|
|
};
|