monorepo/kifu/gtk/src/main.rs

121 lines
3.6 KiB
Rust
Raw Normal View History

2023-08-21 02:12:00 +00:00
use adw::prelude::*;
use kifu_core::{CoreApp, CoreRequest, CoreResponse};
2023-05-26 04:16:40 +00:00
use kifu_gtk::{
perftrace,
ui::{Home, Layout, PlayingField},
2023-05-26 04:16:40 +00:00
CoreApi,
};
use std::sync::{Arc, RwLock};
fn handle_response(api: CoreApi, layout: Layout, message: CoreResponse) {
2023-05-26 04:16:40 +00:00
let playing_field = Arc::new(RwLock::new(None));
match message {
2023-07-24 23:43:22 +00:00
CoreResponse::HomeView(view) => perftrace("HomeView", || {
2023-05-26 04:16:40 +00:00
let api = api.clone();
let home = Home::new(api, view);
layout.set_content(&home);
}),
CoreResponse::PlayingFieldView(view) => perftrace("PlayingFieldView", || {
2023-05-26 04:16:40 +00:00
let api = api.clone();
let mut playing_field = playing_field.write().unwrap();
if playing_field.is_none() {
perftrace("creating a new playing field", || {
let field = PlayingField::new(api, view);
layout.set_content(&field);
*playing_field = Some(field);
})
2023-05-26 04:16:40 +00:00
} else {
playing_field.as_ref().map(|field| field.update_view(view));
}
}),
2023-05-26 04:16:40 +00:00
}
}
fn main() {
2023-03-31 02:25:11 +00:00
gio::resources_register_include!("com.luminescent-dreams.kifu-gtk.gresource")
.expect("Failed to register resources");
let runtime = Arc::new(
tokio::runtime::Builder::new_multi_thread()
.enable_all()
.build()
.unwrap(),
);
let config_path = std::env::var("CONFIG")
.and_then(|config| Ok(std::path::PathBuf::from(config)))
.or({
std::env::var("HOME").and_then(|base| {
let mut config_path = std::path::PathBuf::from(base);
config_path.push(".config");
config_path.push("kifu");
Ok(config_path)
})
})
.expect("no config path could be found");
let core = CoreApp::new(config_path);
let core_handle = runtime.spawn({
let core = core.clone();
async move {
core.run().await;
}
});
2023-08-21 01:37:40 +00:00
let app = adw::Application::builder()
.application_id("com.luminescent-dreams.kifu-gtk")
2023-08-21 01:37:40 +00:00
.resource_base_path("/com/luminescent-dreams/kifu-gtk")
.build();
2023-08-21 01:37:40 +00:00
let action_config = gio::SimpleAction::new("show-config", None);
action_config.connect_activate(|_, _| {
println!("trigger the configuration menu");
});
app.add_action(&action_config);
app.connect_activate({
let runtime = runtime.clone();
move |app| {
let (gtk_tx, gtk_rx) =
gtk::glib::MainContext::channel::<CoreResponse>(gtk::glib::PRIORITY_DEFAULT);
let api = CoreApi {
gtk_tx,
rt: runtime.clone(),
core: core.clone(),
};
2023-08-21 02:12:00 +00:00
let window = adw::ApplicationWindow::builder()
.application(app)
.width_request(800)
.height_request(500)
.build();
let layout = Layout::new();
window.set_content(Some(&layout));
window.present();
2023-04-07 01:52:39 +00:00
gtk_rx.attach(None, {
let api = api.clone();
move |message| {
2023-05-26 04:16:40 +00:00
perftrace("handle_response", || {
handle_response(api.clone(), layout.clone(), message)
2023-05-26 04:16:40 +00:00
});
2023-04-07 01:52:39 +00:00
Continue(true)
2023-03-25 13:24:36 +00:00
}
});
2023-07-24 23:43:22 +00:00
api.dispatch(CoreRequest::Home);
}
});
println!("running the gtk loop");
app.run();
let _ = runtime.block_on(async { core_handle.await });
}