-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyStrategy.cpp
36 lines (29 loc) · 1006 Bytes
/
MyStrategy.cpp
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
#include "MyStrategy.h"
using namespace model;
MyStrategy::MyStrategy() { }
void MyStrategy::act(const Robot& me, const Rules& rules, const Game& game, Action& action)
{
if (curTick == -1)
{
arena = convertMyArena(rules);
}
if (curTick != game.current_tick)
{
Simulator sim = convertSimulator(&arena, game);
strat.compute(sim);
curTick = game.current_tick;
}
for (const MyRobot &r : strat.sim.robots)
{
if (r.side == Side::NEG && r.id == me.id)
{
action.target_velocity_x = r.action.target_velocity.x;
action.target_velocity_y = r.action.target_velocity.y;
action.target_velocity_z = r.action.target_velocity.z;
action.jump_speed = r.action.jump_speed;
action.use_nitro = r.action.use_nitro;
LOG("ACTION " << r.id << " " << r.action.target_velocity << " " << r.action.jump_speed << " " << r.action.use_nitro);
break;
}
}
}