-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.cpp
56 lines (51 loc) · 1.56 KB
/
main.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include "Debug.hpp"
#include "MyStrategy.hpp"
#include "TcpStream.hpp"
#include "model/PlayerMessageGame.hpp"
#include "model/ServerMessageGame.hpp"
#include <memory>
#include <string>
#include <unordered_map>
#ifndef CUSTOM_RUNNER
class Runner {
public:
Runner(const std::string &host, int port, const std::string &token) {
std::shared_ptr<TcpStream> tcpStream(new TcpStream(host, port));
inputStream = getInputStream(tcpStream);
outputStream = getOutputStream(tcpStream);
outputStream->write(token);
outputStream->flush();
}
void run() {
MyStrategy myStrategy;
Debug debug(outputStream);
while (true) {
auto message = ServerMessageGame::readFrom(*inputStream);
const auto& playerView = message.playerView;
if (!playerView) {
break;
}
std::unordered_map<int, UnitAction> actions;
for (const Unit &unit : playerView->game.units) {
if (unit.playerId == playerView->myId) {
actions.emplace(std::make_pair(
unit.id,
myStrategy.getAction(unit, playerView->game, debug)));
}
}
PlayerMessageGame::ActionMessage(Versioned(actions)).writeTo(*outputStream);
outputStream->flush();
}
}
private:
std::shared_ptr<InputStream> inputStream;
std::shared_ptr<OutputStream> outputStream;
};
int main(int argc, char *argv[]) {
std::string host = argc < 2 ? "127.0.0.1" : argv[1];
int port = argc < 3 ? 31001 : atoi(argv[2]);
std::string token = argc < 4 ? "0000000000000000" : argv[3];
Runner(host, port, token).run();
return 0;
}
#endif