Update the build environment and some architectural elements of the Kifu app #210

Merged
savanni merged 13 commits from kifu/flake into main 2024-02-28 04:42:58 +00:00
1 changed files with 18 additions and 13 deletions
Showing only changes of commit da7b40c396 - Show all commits

View File

@ -14,10 +14,7 @@ General Public License for more details.
You should have received a copy of the GNU General Public License along with Kifu. If not, see <https://www.gnu.org/licenses/>.
*/
use async_std::{
channel::Receiver,
task::{spawn, yield_now, JoinHandle},
};
use async_std::{channel::Receiver, task::yield_now};
use kifu_core::{Color, Core, CoreNotification, Goban, Observable, Player};
use std::{cell::RefCell, rc::Rc, time::Duration};
@ -40,6 +37,7 @@ struct GameViewModelPrivate {
/// The Game View Model manages the current state of the game. It shows the two player cards, the board, the current capture count, the current player, and it maintains the UI for the clock (bearing in mind that the real clock is managed in the core). This view model should only be created once the details of the game, whether a game in progress or a new game (this view model won't know the difference) is known.
pub struct GameViewModel {
core: Core,
notification_handler: glib::JoinHandle<()>,
widget: gtk::Box,
data: Rc<RefCell<GameViewModelPrivate>>,
}
@ -56,17 +54,18 @@ impl GameViewModel {
state: game,
}));
let s = Self {
core,
widget: gtk::Box::new(gtk::Orientation::Horizontal, 0),
data,
let notification_handler = {
let notifications = core.subscribe();
let data: Rc<RefCell<GameViewModelPrivate>> = data.clone();
glib::spawn_future_local(Self::listen(notifications, data))
};
let notifications = s.core.subscribe();
let data = s.data.clone();
glib::spawn_future_local(Self::listen(notifications, data));
s
Self {
core,
notification_handler,
widget: gtk::Box::new(gtk::Orientation::Horizontal, 0),
data,
}
}
async fn listen(
@ -84,3 +83,9 @@ impl GameViewModel {
}
}
}
impl Drop for GameViewModel {
fn drop(&mut self) {
self.notification_handler.abort();
}
}