mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 05:53:41 +02:00
Merge branch 'main' of https://github.com/PhilipK/BoilR
This commit is contained in:
+2
-2
@@ -22,8 +22,8 @@ use std::error::Error;
|
||||
async fn main() -> Result<(), Box<dyn Error>> {
|
||||
let settings = settings::Settings::new()?;
|
||||
settings::Settings::write_config_if_missing();
|
||||
let usersinfo = sync::run_sync(&settings).unwrap();
|
||||
sync::download_images(&settings,&usersinfo).await;
|
||||
let usersinfo = sync::run_sync(&settings,&mut None).unwrap();
|
||||
sync::download_images(&settings,&usersinfo,&mut None).await;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
||||
@@ -175,7 +175,7 @@ fn get_default_locations() -> OriginPathData {
|
||||
let origin_folder = Path::new(&program_data)
|
||||
.join("Origin");
|
||||
if origin_folder.exists(){
|
||||
res.exe_path = Some(origin_folder.to_owned());
|
||||
res.local_content_path = Some(origin_folder.to_owned());
|
||||
}
|
||||
}
|
||||
res
|
||||
|
||||
@@ -5,6 +5,7 @@ use std::{collections::HashMap, path::Path};
|
||||
|
||||
use futures::{stream, StreamExt};
|
||||
use serde::{Deserialize, Serialize};
|
||||
use tokio::sync::watch::Sender;
|
||||
use std::error::Error;
|
||||
use steamgriddb_api::query_parameters::{GridDimentions, Nsfw}; // 0.3.1
|
||||
|
||||
@@ -14,6 +15,7 @@ use steamgriddb_api::Client;
|
||||
use crate::settings::Settings;
|
||||
use crate::steam::{get_shortcuts_for_user, get_users_images, SteamUsersInfo};
|
||||
use crate::steamgriddb::ImageType;
|
||||
use crate::sync::SyncProgress;
|
||||
|
||||
use super::CachedSearch;
|
||||
|
||||
@@ -23,6 +25,7 @@ pub async fn download_images_for_users<'b>(
|
||||
settings: &Settings,
|
||||
users: &[SteamUsersInfo],
|
||||
download_animated: bool,
|
||||
sender:&mut Option<Sender<SyncProgress>>
|
||||
) {
|
||||
let auth_key = &settings.steamgrid_db.auth_key;
|
||||
if let Some(auth_key) = auth_key {
|
||||
@@ -32,6 +35,9 @@ pub async fn download_images_for_users<'b>(
|
||||
let search = CachedSearch::new(&client);
|
||||
let search = &search;
|
||||
let client = &client;
|
||||
if let Some(sender) = sender{
|
||||
let _ = sender.send(SyncProgress::FindingImages);
|
||||
}
|
||||
let to_downloads = stream::iter(users)
|
||||
.map(|user| {
|
||||
let shortcut_info = get_shortcuts_for_user(user);
|
||||
@@ -54,9 +60,12 @@ pub async fn download_images_for_users<'b>(
|
||||
.collect::<Vec<Vec<ToDownload>>>()
|
||||
.await;
|
||||
let to_downloads = to_downloads.iter().flatten().collect::<Vec<&ToDownload>>();
|
||||
let total = to_downloads.len();
|
||||
if !to_downloads.is_empty() {
|
||||
if let Some(sender) = sender{
|
||||
let _ = sender.send(SyncProgress::DownloadingImages { to_download: total });
|
||||
}
|
||||
search.save();
|
||||
|
||||
stream::iter(to_downloads)
|
||||
.map(|to_download| async move {
|
||||
if let Err(e) = download_to_download(to_download).await {
|
||||
@@ -73,7 +82,7 @@ pub async fn download_images_for_users<'b>(
|
||||
}
|
||||
} else {
|
||||
println!("Steamgrid DB Auth Key not found, please add one as described here: https://github.com/PhilipK/steam_shortcuts_sync#configuration");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Serialize, Deserialize, Debug, Clone)]
|
||||
|
||||
+3
-1
@@ -4,4 +4,6 @@ mod synchronization;
|
||||
|
||||
pub use synchronization::run_sync;
|
||||
pub use synchronization::download_images;
|
||||
pub use synchronization::get_platform_shortcuts;
|
||||
pub use synchronization::get_platform_shortcuts;
|
||||
|
||||
pub use synchronization::SyncProgress;
|
||||
+31
-13
@@ -1,4 +1,5 @@
|
||||
use steam_shortcuts_util::{shortcut::ShortcutOwned, shortcuts_to_bytes};
|
||||
use tokio::sync::watch::Sender;
|
||||
|
||||
use crate::{
|
||||
egs::EpicPlatform,
|
||||
@@ -11,7 +12,7 @@ use crate::{
|
||||
Collection, ShortcutInfo, SteamUsersInfo,
|
||||
},
|
||||
steamgriddb::{download_images_for_users, ImageType},
|
||||
uplay::Uplay,
|
||||
uplay::Uplay,
|
||||
};
|
||||
|
||||
#[cfg(target_family = "unix")]
|
||||
@@ -24,7 +25,25 @@ use std::{fs::File, io::Write, path::Path};
|
||||
|
||||
const BOILR_TAG: &str = "boilr";
|
||||
|
||||
pub fn run_sync(settings: &Settings) -> Result<Vec<SteamUsersInfo>, String> {
|
||||
|
||||
pub enum SyncProgress{
|
||||
NotStarted,
|
||||
Starting,
|
||||
FoundGames{
|
||||
games_found:usize
|
||||
},
|
||||
FindingImages,
|
||||
DownloadingImages{
|
||||
to_download:usize,
|
||||
},
|
||||
Done
|
||||
}
|
||||
|
||||
|
||||
pub fn run_sync(settings: &Settings, sender: &mut Option<Sender<SyncProgress>>) -> Result<Vec<SteamUsersInfo>, String> {
|
||||
if let Some(sender) = &sender{
|
||||
let _ = sender.send(SyncProgress::Starting);
|
||||
}
|
||||
let mut userinfo_shortcuts = get_shortcuts_paths(&settings.steam)
|
||||
.map_err(|e| format!("Getting shortcut paths failed: {e}"))?;
|
||||
|
||||
@@ -34,6 +53,9 @@ pub fn run_sync(settings: &Settings) -> Result<Vec<SteamUsersInfo>, String> {
|
||||
.flat_map(|s| s.1.clone())
|
||||
.filter(|s| !settings.blacklisted_games.contains(&s.app_id))
|
||||
.collect();
|
||||
if let Some(sender) = &sender{
|
||||
let _ = sender.send(SyncProgress::FoundGames { games_found: all_shortcuts.len() });
|
||||
}
|
||||
for shortcut in &all_shortcuts {
|
||||
println!("Appid: {} name: {}", shortcut.app_id, shortcut.app_name);
|
||||
}
|
||||
@@ -69,18 +91,18 @@ pub fn run_sync(settings: &Settings) -> Result<Vec<SteamUsersInfo>, String> {
|
||||
|
||||
let duration = start_time.elapsed();
|
||||
println!("Finished synchronizing games in: {:?}", duration);
|
||||
}
|
||||
}
|
||||
|
||||
Ok(userinfo_shortcuts)
|
||||
}
|
||||
|
||||
pub async fn download_images(settings: &Settings, userinfo_shortcuts: &Vec<SteamUsersInfo>) {
|
||||
pub async fn download_images(settings: &Settings, userinfo_shortcuts: &Vec<SteamUsersInfo>,sender: &mut Option<Sender<SyncProgress>>) {
|
||||
if settings.steamgrid_db.enabled {
|
||||
if settings.steamgrid_db.prefer_animated {
|
||||
println!("downloading animated images");
|
||||
download_images_for_users(settings, userinfo_shortcuts, true).await;
|
||||
download_images_for_users(settings, userinfo_shortcuts, true,sender).await;
|
||||
}
|
||||
download_images_for_users(settings, userinfo_shortcuts, false).await;
|
||||
download_images_for_users(settings, userinfo_shortcuts, false,sender).await;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -108,18 +130,14 @@ fn fix_shortcut_icons(
|
||||
ImageType::Icon
|
||||
};
|
||||
|
||||
for shortcut in shortcuts {
|
||||
#[cfg(not(target_family = "unix"))]
|
||||
let replace_icon = shortcut.icon.trim().eq("") || !Path::new(shortcut.icon.trim()).exists();
|
||||
#[cfg(target_family = "unix")]
|
||||
let replace_icon = shortcut.icon.trim().eq("") || !Path::new(shortcut.icon.trim()).exists() ||shortcut.icon.eq(&shortcut.exe);
|
||||
for shortcut in shortcuts {
|
||||
let replace_icon = shortcut.icon.trim().eq("") || !Path::new(shortcut.icon.trim()).exists() || shortcut.icon.eq(&shortcut.exe);
|
||||
if replace_icon {
|
||||
let app_id = steam_shortcuts_util::app_id_generator::calculate_app_id(
|
||||
&shortcut.exe,
|
||||
&shortcut.app_name,
|
||||
);
|
||||
let new_icon_path = image_folder.join(image_type.file_name(app_id));
|
||||
shortcut.icon = new_icon_path.to_string_lossy().to_string();
|
||||
shortcut.icon = image_folder.join(image_type.file_name(app_id)).to_string_lossy().to_string();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+46
-14
@@ -1,11 +1,11 @@
|
||||
use eframe::{egui, epi::{self, IconData},};
|
||||
use egui::{ScrollArea, TextureHandle, Stroke, Rounding, Image};
|
||||
use eframe::{egui, epi::{self},};
|
||||
use egui::{ScrollArea, TextureHandle, Stroke, Rounding, ImageButton};
|
||||
use futures::executor::block_on;
|
||||
use steam_shortcuts_util::shortcut::ShortcutOwned;
|
||||
use std::error::Error;
|
||||
use tokio::runtime::Runtime;
|
||||
use std::{error::Error};
|
||||
use tokio::{runtime::Runtime, sync::watch::{Receiver, self}};
|
||||
|
||||
use crate::{settings::Settings, sync::{download_images, self}, };
|
||||
use crate::{settings::Settings, sync::{download_images, self, SyncProgress}};
|
||||
|
||||
use super::{ui_images::{get_import_image, get_logo, get_logo_icon}, ui_colors::{TEXT_COLOR, BACKGROUND_COLOR, BG_STROKE_COLOR, ORANGE, PURLPLE, LIGHT_ORANGE}};
|
||||
|
||||
@@ -22,9 +22,12 @@ struct MyEguiApp {
|
||||
settings: Settings,
|
||||
rt: Runtime,
|
||||
ui_images: UiImages,
|
||||
games_to_sync:Option<Vec<(String, Vec<ShortcutOwned>)>>
|
||||
games_to_sync:Option<Vec<(String, Vec<ShortcutOwned>)>>,
|
||||
status_reciever: Receiver<SyncProgress>,
|
||||
}
|
||||
|
||||
|
||||
|
||||
impl MyEguiApp {
|
||||
pub fn new() -> Self {
|
||||
let runtime = Runtime::new().unwrap();
|
||||
@@ -34,17 +37,24 @@ impl MyEguiApp {
|
||||
rt: runtime,
|
||||
games_to_sync:None,
|
||||
ui_images: UiImages::default(),
|
||||
status_reciever: watch::channel(SyncProgress::NotStarted).1,
|
||||
}
|
||||
}
|
||||
pub fn run_sync(&self) {
|
||||
let settings = self.settings.clone();
|
||||
self.rt.spawn_blocking(move || {
|
||||
|
||||
pub fn run_sync(&mut self) {
|
||||
let (sender,mut reciever ) = watch::channel(SyncProgress::NotStarted);
|
||||
let settings = self.settings.clone();
|
||||
self.status_reciever = reciever;
|
||||
self.rt.spawn_blocking(move || {
|
||||
|
||||
MyEguiApp::save_settings_to_file(&settings);
|
||||
//TODO get status back to ui
|
||||
let usersinfo = sync::run_sync(&settings).unwrap();
|
||||
let task = download_images(&settings, &usersinfo);
|
||||
let mut some_sender =Some(sender);
|
||||
let usersinfo = sync::run_sync(&settings,&mut some_sender).unwrap();
|
||||
let task = download_images(&settings, &usersinfo,&mut some_sender);
|
||||
block_on(task);
|
||||
if let Some(sender) = some_sender{
|
||||
let _ = sender.send(SyncProgress::Done);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@@ -93,9 +103,31 @@ impl epi::App for MyEguiApp {
|
||||
|
||||
egui::TopBottomPanel::new(egui::panel::TopBottomSide::Bottom, "Bottom Panel")
|
||||
.show(ctx,|ui|{
|
||||
{
|
||||
let status = &*self.status_reciever.borrow();
|
||||
match status{
|
||||
SyncProgress::NotStarted => {},
|
||||
SyncProgress::Starting => {
|
||||
ui.label("Starting Import");
|
||||
},
|
||||
SyncProgress::FoundGames { games_found } => {
|
||||
ui.label(format!("Found {} games to import",games_found));
|
||||
},
|
||||
SyncProgress::FindingImages => {
|
||||
ui.label(format!("Searching for images"));
|
||||
},
|
||||
SyncProgress::DownloadingImages { to_download } => {
|
||||
ui.label(format!("Downloading {} images ",to_download));
|
||||
},
|
||||
SyncProgress::Done =>{
|
||||
ui.label(format!("Done importing games"));
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
let texture = self.get_import_image(ui);
|
||||
let size = texture.size_vec2();
|
||||
let image_button = Image::new(texture, size);
|
||||
let image_button = ImageButton::new(texture, size);
|
||||
if ui.add(image_button).on_hover_text("Import your games into steam").clicked() {
|
||||
self.run_sync();
|
||||
}
|
||||
@@ -325,7 +357,7 @@ impl MyEguiApp{
|
||||
|
||||
|
||||
pub fn run_sync() {
|
||||
let app = MyEguiApp::new();
|
||||
let mut app = MyEguiApp::new();
|
||||
app.run_sync();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user