29 lines
607 B
C++
29 lines
607 B
C++
#pragma once
|
|
|
|
#include "sensors/data_source_camera_vshapedmirror.h"
|
|
#include "sensors/sensors.h"
|
|
#include "strategy_roles/game.h"
|
|
|
|
#define STRIKER_ATTACK_DISTANCE 110
|
|
#define STRIKER_TILT_STOP_DISTANCE 140
|
|
#define STRIKER_PLUSANG 57
|
|
#define STRIKER_PLUSANG_VISIONCONE 7
|
|
|
|
class Striker : public Game{
|
|
|
|
public:
|
|
Striker();
|
|
Striker(LineSystem* ls, PositionSystem* ps);
|
|
|
|
private:
|
|
void realPlay() override;
|
|
void init() override;
|
|
void striker();
|
|
int tilt();
|
|
|
|
int atk_speed, atk_direction, atk_tilt;
|
|
float cstorc;
|
|
|
|
bool gotta_tilt;
|
|
};
|