|
@@ -50,31 +50,20 @@ int main(int argc, char *argv[])
|
|
|
ClientWrapper *wrap = new ClientWrapper(client.get());
|
|
|
|
|
|
snakesimulator::Snake *snake = new snakesimulator::Snake;
|
|
|
- snakesimulator::Field *field = new snakesimulator::Field;
|
|
|
- snakesimulator::Stats *stats = new snakesimulator::Stats;
|
|
|
- snakesimulator::PlayingBestState *isPlaying = new snakesimulator::PlayingBestState;
|
|
|
+ QPointer<snakesimulator::Field> field = new snakesimulator::Field;
|
|
|
+ QPointer<snakesimulator::Stats> stats = new snakesimulator::Stats;
|
|
|
+ QPointer<snakesimulator::PlayingBestState> isPlaying = new snakesimulator::PlayingBestState;
|
|
|
|
|
|
- QObject::connect(client.get(), &snakesimulator::SnakeSimulatorClient::isPlayingUpdated, [isPlaying](const snakesimulator::PlayingBestState & _isPlaying){
|
|
|
- *isPlaying = _isPlaying;
|
|
|
- });
|
|
|
+ client->subscribeFieldUpdates({}, field);
|
|
|
+ client->subscribeStatsUpdates({}, stats);
|
|
|
+ client->subscribeIsPlayingUpdates({}, isPlaying);
|
|
|
|
|
|
- QObject::connect(client.get(), &snakesimulator::SnakeSimulatorClient::fieldUpdated, [field](const snakesimulator::Field & _field){
|
|
|
- *field = _field;
|
|
|
- });
|
|
|
+ auto subscription = client->subscribeSnakeUpdates({});
|
|
|
|
|
|
- QObject::connect(client.get(), &snakesimulator::SnakeSimulatorClient::snakeUpdated, [snake](const snakesimulator::Snake & _snake){
|
|
|
- *snake = _snake;
|
|
|
+ QObject::connect(subscription, &QtProtobuf::QGrpcSubscription::updated, [subscription, snake](){
|
|
|
+ snake->setPoints(subscription->read<snakesimulator::Snake>().points()); //Issue https://github.com/semlanik/qtprotobuf/issues/48
|
|
|
});
|
|
|
|
|
|
- QObject::connect(client.get(), &snakesimulator::SnakeSimulatorClient::statsUpdated, [stats](const snakesimulator::Stats & _stats){
|
|
|
- *stats = _stats;
|
|
|
- });
|
|
|
-
|
|
|
- client->subscribeFieldUpdates({});
|
|
|
- client->subscribeSnakeUpdates({});
|
|
|
- client->subscribeStatsUpdates({});
|
|
|
- client->subscribeIsPlayingUpdates({});
|
|
|
-
|
|
|
QQmlApplicationEngine engine;
|
|
|
engine.rootContext()->setContextProperty("field", field);
|
|
|
engine.rootContext()->setContextProperty("snake", snake);
|