/*
* This file is part of laurelin_client
* Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
*
* Licensed under GPL-3.0-only.
* See LICENSE for licensing information.
*/
use crate::{
async_task_start_call, async_task_handle_call,
api::{self, game::{Action, CreateActionResponse}},
NetworkingOptions, plugins::GameData,
};
use bevy::{prelude::*, tasks::{Task, AsyncComputeTaskPool}};
use futures_lite::future;
use super::ParseGameStatusEvent;
#[derive(Component)]
pub struct GameActionCreateCall(Task<CreateActionResponse>);
#[derive(Clone)]
pub struct GameActionCreateCallEvent {
pub action: Action,
}
async_task_start_call!(GameActionCreateCallEvent, GameActionCreateCall, |ev, no| {
let res = api::game::create_action(&no, &ev.action);
res
});
async_task_handle_call!(GameActionCreateCall, |_u0, _u1, response, _game_data, _u2| {
match response {
Err(_err) => panic!("login failed, handle me"),
Ok(resp) => {
info!("created action {}", resp.id);
}
}
});