-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathteamstrategycontroller.h
56 lines (47 loc) · 1.28 KB
/
teamstrategycontroller.h
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
#ifndef TEAMSTRATEGYCONTROLLER_H
#define TEAMSTRATEGYCONTROLLER_H
#include <memory>
#include <nullmq.h>
#include <order.h>
#include <QCheckBox>
#include <QComboBox>
#include <QGridLayout>
#include <QLabel>
#include <QLineEdit>
#include <QPushButton>
#include <QWidget>
#include "qballwidget.h"
#include "qrobotwidget.h"
#include "qsoccerfieldwidget.h"
#include "soccerfield.h"
#define NUM_PLAYERS 5
class TeamStrategyController : public QObject {
Q_OBJECT
public:
TeamStrategyController(std::string teamStrategyName, QWidget *window);
void run();
private slots:
void runTeamStrategy();
private:
bool recvTeamStrategy(std::shared_ptr<Order> *ts, bool nonblock, uint8_t ownIdx);
QRobotWidget *robot[NUM_PLAYERS];
QCheckBox *penalized[NUM_PLAYERS];
QCheckBox *alive[NUM_PLAYERS];
QCheckBox *kickoff;
QComboBox *gamestate;
QComboBox *ballPrecision[NUM_PLAYERS];
QLineEdit *teamBallQuali;
QSoccerFieldWidget *sf;
QBallWidget *ball;
QGridLayout *outer;
QGridLayout *right;
QPushButton *run_ts;
QLineEdit *dcm_time;
nullMQ::socket_t gcInfoSocket;
nullMQ::socket_t dcmTimeSocket;
nullMQ::socket_t worldInfoSocket[NUM_PLAYERS];
nullMQ::socket_t ownOrderSocket[NUM_PLAYERS];
char* strategyBuffer;
size_t strategyBufferSize;
};
#endif // TEAMSTRATEGYCONTROLLER_H