/* * This file is part of laurelin_client * Copyright (C) 2023 Jonni Liljamo * * Licensed under GPL-3.0-only. * See LICENSE for licensing information. */ use crate::{ async_task_start_call, async_task_handle_call, api::{self, game::FormingResponse}, NetworkingOptions, plugins::menu::MenuData, }; use bevy::{prelude::*, tasks::{Task, AsyncComputeTaskPool}}; use futures_lite::future; #[derive(Component)] pub struct GameFormingCall(Task); #[derive(Clone)] pub struct GameFormingCallEvent; async_task_start_call!(GameFormingCallEvent, GameFormingCall, |_ev, no| { let res = api::game::forming(&no); res }); async_task_handle_call!(GameFormingCall, |response, menu_data| { match response { Err(_err) => panic!("forming games failed, handle me"), Ok(resp) => { menu_data.waiting = false; menu_data.forming_games = resp; } } });