mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 05:53:41 +02:00
Art for steam games (#125)
This commit is contained in:
+128
-22
@@ -7,6 +7,7 @@ use crate::{
|
||||
config::get_thumbnails_folder,
|
||||
steam::{get_shortcuts_paths, SteamUsersInfo},
|
||||
steamgriddb::{get_image_extension, get_query_type, CachedSearch, ImageType, ToDownload},
|
||||
steam::{get_installed_games, SteamGameInfo},
|
||||
};
|
||||
use dashmap::DashMap;
|
||||
use egui::{ImageButton, ScrollArea};
|
||||
@@ -18,16 +19,16 @@ use tokio::sync::watch::{self, Receiver};
|
||||
use super::{ui_images::load_image_from_path, FetcStatus, MyEguiApp};
|
||||
|
||||
pub struct ImageSelectState {
|
||||
pub selected_shortcut: Option<ShortcutOwned>,
|
||||
pub selected_shortcut: Option<GameType>,
|
||||
pub grid_id: Option<usize>,
|
||||
|
||||
pub steam_user: Option<SteamUsersInfo>,
|
||||
pub steam_users: Option<Vec<SteamUsersInfo>>,
|
||||
pub user_shortcuts: Option<Vec<ShortcutOwned>>,
|
||||
|
||||
pub game_mode: GameMode,
|
||||
pub image_type_selected: Option<ImageType>,
|
||||
pub image_options: Receiver<FetcStatus<Vec<PossibleImage>>>,
|
||||
|
||||
pub steam_games: Option<Vec<crate::steam::SteamGameInfo>>,
|
||||
pub image_handles: std::sync::Arc<DashMap<String, TextureState>>,
|
||||
|
||||
pub possible_names: Option<Vec<steamgriddb_api::search::SearchResult>>,
|
||||
@@ -40,6 +41,21 @@ pub enum TextureState {
|
||||
Loaded(egui::TextureHandle),
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
pub enum GameMode {
|
||||
Shortcuts,
|
||||
SteamGames,
|
||||
}
|
||||
|
||||
impl GameMode {
|
||||
pub fn is_shortcuts(&self) -> bool {
|
||||
match self {
|
||||
GameMode::Shortcuts => true,
|
||||
GameMode::SteamGames => false,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl ImageSelectState {
|
||||
pub fn has_multiple_users(&self) -> bool {
|
||||
match &self.steam_users {
|
||||
@@ -66,10 +82,34 @@ impl Default for ImageSelectState {
|
||||
steam_user: Default::default(),
|
||||
steam_users: Default::default(),
|
||||
user_shortcuts: Default::default(),
|
||||
game_mode: GameMode::Shortcuts,
|
||||
image_type_selected: Default::default(),
|
||||
possible_names: None,
|
||||
image_options: watch::channel(FetcStatus::NeedsFetched).1,
|
||||
image_handles: Arc::new(DashMap::new()),
|
||||
steam_games: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Debug, Clone)]
|
||||
pub enum GameType {
|
||||
Shortcut(ShortcutOwned),
|
||||
SteamGame(SteamGameInfo),
|
||||
}
|
||||
|
||||
impl GameType {
|
||||
pub fn app_id(&self) -> u32 {
|
||||
match self {
|
||||
GameType::Shortcut(shortcut) => shortcut.app_id,
|
||||
GameType::SteamGame(game) => game.appid,
|
||||
}
|
||||
}
|
||||
|
||||
pub fn name(&self) -> &str {
|
||||
match self {
|
||||
GameType::Shortcut(s) => s.app_name.as_ref(),
|
||||
GameType::SteamGame(g) => g.name.as_ref(),
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -78,11 +118,12 @@ impl Default for ImageSelectState {
|
||||
enum UserAction {
|
||||
CorrectGridId,
|
||||
UserSelected(SteamUsersInfo),
|
||||
ShortcutSelected(ShortcutOwned),
|
||||
ShortcutSelected(GameType),
|
||||
ImageTypeSelected(ImageType),
|
||||
ImageTypeCleared(ImageType, bool),
|
||||
ImageSelected(PossibleImage),
|
||||
GridIdChanged(usize),
|
||||
SetGamesMode(GameMode),
|
||||
BackButton,
|
||||
NoAction,
|
||||
}
|
||||
@@ -101,7 +142,7 @@ impl MyEguiApp {
|
||||
return render_user_select(state, ui);
|
||||
}
|
||||
if let Some(shortcut) = state.selected_shortcut.as_ref() {
|
||||
ui.heading(&shortcut.app_name);
|
||||
ui.heading(shortcut.name());
|
||||
|
||||
if let Some(possible_names) = state.possible_names.as_ref() {
|
||||
if let Some(value) = render_possible_names(possible_names, ui) {
|
||||
@@ -112,12 +153,36 @@ impl MyEguiApp {
|
||||
if let Some(action) = self.render_possible_images(ui, image_type, state) {
|
||||
return action;
|
||||
}
|
||||
} else if let Some(action) = render_shortcut_images(ui, state) {
|
||||
} else {
|
||||
if let Some(action) = render_shortcut_images(ui, state) {
|
||||
return action;
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
let is_shortcut = state.game_mode.is_shortcuts();
|
||||
if ui
|
||||
.selectable_label(is_shortcut, "Images for shortcuts")
|
||||
.clicked()
|
||||
{
|
||||
return UserAction::SetGamesMode(GameMode::Shortcuts);
|
||||
}
|
||||
|
||||
if ui
|
||||
.selectable_label(!is_shortcut, "Images for steam games")
|
||||
.clicked()
|
||||
{
|
||||
return UserAction::SetGamesMode(GameMode::SteamGames);
|
||||
}
|
||||
if is_shortcut {
|
||||
if let Some(action) = self.render_shortcut_select(ui) {
|
||||
return action;
|
||||
}
|
||||
} else {
|
||||
if let Some(action) = render_steam_game_select(ui, state) {
|
||||
return action;
|
||||
}
|
||||
}
|
||||
} else if let Some(action) = self.render_shortcut_select(ui) {
|
||||
return action;
|
||||
}
|
||||
UserAction::NoAction
|
||||
}
|
||||
@@ -150,7 +215,9 @@ impl MyEguiApp {
|
||||
let button = ui.button(&shortcut.app_name);
|
||||
clicked = clicked || button.clicked();
|
||||
if clicked {
|
||||
return Some(UserAction::ShortcutSelected(shortcut.clone()));
|
||||
return Some(UserAction::ShortcutSelected(GameType::Shortcut(
|
||||
shortcut.clone(),
|
||||
)));
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -296,7 +363,9 @@ impl MyEguiApp {
|
||||
UserAction::GridIdChanged(grid_id) => {
|
||||
self.handle_grid_change(grid_id);
|
||||
}
|
||||
|
||||
UserAction::SetGamesMode(game_mode) => {
|
||||
self.handle_set_game_mode(game_mode);
|
||||
}
|
||||
UserAction::NoAction => {}
|
||||
UserAction::CorrectGridId => {
|
||||
self.handle_correct_grid_request();
|
||||
@@ -307,7 +376,7 @@ impl MyEguiApp {
|
||||
.selected_shortcut
|
||||
.as_ref()
|
||||
.unwrap()
|
||||
.app_id;
|
||||
.app_id();
|
||||
self.settings
|
||||
.steamgrid_db
|
||||
.set_image_banned(&image_type, app_id, should_ban);
|
||||
@@ -329,7 +398,7 @@ impl MyEguiApp {
|
||||
.selected_shortcut
|
||||
.as_ref()
|
||||
.unwrap()
|
||||
.app_id,
|
||||
.app_id(),
|
||||
ext,
|
||||
);
|
||||
let path = Path::new(data_folder)
|
||||
@@ -350,7 +419,7 @@ impl MyEguiApp {
|
||||
.image_selected_state
|
||||
.selected_shortcut
|
||||
.as_ref()
|
||||
.map(|s| s.app_name.clone())
|
||||
.map(|s| s.name().clone())
|
||||
.unwrap_or_default();
|
||||
let auth_key = self
|
||||
.settings
|
||||
@@ -363,6 +432,10 @@ impl MyEguiApp {
|
||||
self.image_selected_state.possible_names = search_results.ok();
|
||||
}
|
||||
|
||||
fn handle_set_game_mode(&mut self, game_mode: GameMode) {
|
||||
self.image_selected_state.game_mode = game_mode;
|
||||
self.image_selected_state.steam_games = Some(get_installed_games(&self.settings.steam));
|
||||
}
|
||||
fn handle_grid_change(&mut self, grid_id: usize) {
|
||||
self.image_selected_state.grid_id = Some(grid_id);
|
||||
self.image_selected_state.possible_names = None;
|
||||
@@ -370,7 +443,7 @@ impl MyEguiApp {
|
||||
let client = steamgriddb_api::Client::new(auth_key);
|
||||
let mut cache = CachedSearch::new(&client);
|
||||
if let Some(shortcut) = &self.image_selected_state.selected_shortcut {
|
||||
cache.set_cache(shortcut.app_id, shortcut.app_name.clone(), grid_id);
|
||||
cache.set_cache(shortcut.app_id(), shortcut.name().clone(), grid_id);
|
||||
cache.save();
|
||||
}
|
||||
}
|
||||
@@ -456,7 +529,7 @@ impl MyEguiApp {
|
||||
let to = Path::new(&user.steam_user_data_folder)
|
||||
.join("config")
|
||||
.join("grid")
|
||||
.join(selected_image_type.file_name(selected_image.app_id, ext));
|
||||
.join(selected_image_type.file_name(selected_image.app_id(), ext));
|
||||
|
||||
if to.exists() {
|
||||
let old_key = to.to_string_lossy().to_string();
|
||||
@@ -470,11 +543,11 @@ impl MyEguiApp {
|
||||
}
|
||||
}
|
||||
|
||||
let app_name = selected_image.app_name.clone();
|
||||
let app_name = selected_image.name();
|
||||
let to_download = ToDownload {
|
||||
path: to,
|
||||
url: image.full_url.clone(),
|
||||
app_name,
|
||||
app_name: app_name.to_string(),
|
||||
image_type: *selected_image_type,
|
||||
};
|
||||
self.rt.spawn_blocking(move || {
|
||||
@@ -500,7 +573,7 @@ impl MyEguiApp {
|
||||
}
|
||||
}
|
||||
|
||||
fn handle_shortcut_selected(&mut self, shortcut: ShortcutOwned, ui: &mut egui::Ui) {
|
||||
fn handle_shortcut_selected(&mut self, shortcut: GameType, ui: &mut egui::Ui) {
|
||||
let state = &mut self.image_selected_state;
|
||||
//We must have a user to make see this action;
|
||||
let user = state.steam_user.as_ref().unwrap();
|
||||
@@ -509,7 +582,7 @@ impl MyEguiApp {
|
||||
let search = CachedSearch::new(&client);
|
||||
state.grid_id = self
|
||||
.rt
|
||||
.block_on(search.search(shortcut.app_id, &shortcut.app_name))
|
||||
.block_on(search.search(shortcut.app_id(), shortcut.name()))
|
||||
.ok()
|
||||
.flatten();
|
||||
}
|
||||
@@ -556,6 +629,19 @@ fn render_possible_names(
|
||||
None
|
||||
}
|
||||
|
||||
fn render_steam_game_select(ui: &mut egui::Ui, state: &ImageSelectState) -> Option<UserAction> {
|
||||
if let Some(steam_games) = state.steam_games.as_ref() {
|
||||
for game in steam_games {
|
||||
if ui.button(&game.name).clicked() {
|
||||
return Some(UserAction::ShortcutSelected(GameType::SteamGame(
|
||||
game.clone(),
|
||||
)));
|
||||
}
|
||||
}
|
||||
}
|
||||
None
|
||||
}
|
||||
|
||||
fn render_shortcut_images(ui: &mut egui::Ui, state: &ImageSelectState) -> Option<UserAction> {
|
||||
let mut grid_id_text = state.grid_id.map(|id| id.to_string()).unwrap_or_default();
|
||||
if ui.text_edit_singleline(&mut grid_id_text).changed() {
|
||||
@@ -635,11 +721,31 @@ trait HasImageKey {
|
||||
}
|
||||
const POSSIBLE_EXTENSIONS: [&'static str; 4] = ["png", "jpg", "ico", "webp"];
|
||||
|
||||
impl HasImageKey for GameType {
|
||||
fn key(&self, image_type: &ImageType, user_path: &Path) -> (PathBuf, String) {
|
||||
match self {
|
||||
GameType::Shortcut(s) => s.key(image_type, user_path),
|
||||
GameType::SteamGame(g) => g.key(image_type, user_path),
|
||||
}
|
||||
}
|
||||
}
|
||||
impl HasImageKey for SteamGameInfo {
|
||||
fn key(&self, image_type: &ImageType, user_path: &Path) -> (PathBuf, String) {
|
||||
let mut keys = POSSIBLE_EXTENSIONS
|
||||
.iter()
|
||||
.map(|ext| key_from_extension(self.appid, image_type, user_path, ext));
|
||||
let first = keys.next().unwrap();
|
||||
let other = keys.filter(|(exsists, _, _)| *exsists).next();
|
||||
let (_, path, key) = other.unwrap_or(first);
|
||||
(path, key)
|
||||
}
|
||||
}
|
||||
|
||||
impl HasImageKey for ShortcutOwned {
|
||||
fn key(&self, image_type: &ImageType, user_path: &Path) -> (PathBuf, String) {
|
||||
let mut keys = POSSIBLE_EXTENSIONS
|
||||
.iter()
|
||||
.map(|ext| key_from_extension(self, image_type, user_path, ext));
|
||||
.map(|ext| key_from_extension(self.app_id, image_type, user_path, ext));
|
||||
let first = keys.next().unwrap();
|
||||
let other = keys.filter(|(exsists, _, _)| *exsists).next();
|
||||
let (_, path, key) = other.unwrap_or(first);
|
||||
@@ -648,12 +754,12 @@ impl HasImageKey for ShortcutOwned {
|
||||
}
|
||||
|
||||
fn key_from_extension(
|
||||
shortcut: &ShortcutOwned,
|
||||
app_id: u32,
|
||||
image_type: &ImageType,
|
||||
user_path: &Path,
|
||||
ext: &str,
|
||||
) -> (bool, PathBuf, String) {
|
||||
let file_name = image_type.file_name(shortcut.app_id, ext);
|
||||
let file_name = image_type.file_name(app_id, ext);
|
||||
let path = user_path.join("config").join("grid").join(&file_name);
|
||||
let key = path.to_string_lossy().to_string();
|
||||
(path.exists(), path, key)
|
||||
|
||||
Reference in New Issue
Block a user