52 lines
1.8 KiB
C
52 lines
1.8 KiB
C
#pragma once
|
|
#include <Arduino.h>
|
|
#include "game.h"
|
|
#include "systems.h"
|
|
|
|
/**
|
|
* STATUS VECTOR:
|
|
* The status vector consists in two arrays of two different structs.
|
|
* One (inputs) holds the raw input read by the various sensors on the robot
|
|
* The other (datas) contains the useful data obtained by the eventual manipulation of the raw inputs
|
|
* This is made so that it ha an history of the inputs and datas if needed.
|
|
* This is an intermediator between all the classes representing the different components of the robot. It's preferable to not make the classes call one another
|
|
* All the data held by the structs in the status vector will be described here.
|
|
*
|
|
* REMEMBER: The value of a sensor in the status vector MUST be updated also if the sensor data didn't change
|
|
*
|
|
**/
|
|
|
|
#ifdef STATUS_VECTOR_CPP
|
|
#define sv_extr
|
|
#else
|
|
#define sv_extr extern
|
|
#endif
|
|
|
|
#define dim 20
|
|
#define CURRENT_DATA_READ ( datas[((currentSVIndex-1+dim) % dim)] )
|
|
#define CURRENT_DATA_WRITE ( datas[((currentSVIndex))] )
|
|
#define CURRENT_INPUT_READ ( inputs[((currentSVIndex-1+dim) % dim)] )
|
|
#define CURRENT_INPUT_WRITE ( inputs[((currentSVIndex))] )
|
|
|
|
typedef struct input{
|
|
int IMUAngle, USfr, USsx, USdx, USrr, BT;
|
|
byte ballByte, cameraByte, lineByte, xb, yb, xy, yy;
|
|
bool SW_DX, SW_SX;
|
|
}input;
|
|
|
|
typedef struct data{
|
|
int IMUAngle, ballAngle, ballDistance, yAngle, bAngle, yAngleFix, bAngleFix, yDist, bDist, angleAtk, angleAtkFix, angleDef, angleDefFix,
|
|
speed, tilt, dir, USfr, USsx, USdx, USrr, lineOutDir, matePos, role, axisBlock[4];
|
|
Game* game;
|
|
LineSystem* lineSystem;
|
|
PositionSystem* posSystem;
|
|
byte xb, yb, xy, yy, lineSeen, lineActive;
|
|
bool mate, ATKgoal, DEFgoal, ballSeen;
|
|
}data;
|
|
|
|
sv_extr input inputs[dim];
|
|
sv_extr data datas[dim];
|
|
sv_extr int currentSVIndex;
|
|
|
|
void initStatusVector();
|
|
void updateStatusVector(); |