2022-10-01 16:58:22 +00:00
// Gupax - GUI Uniting P2Pool And XMRig
//
// Copyright (c) 2022 hinto-janaiyo
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2022-11-16 19:40:25 +00:00
use crate ::State ;
2022-11-14 02:56:25 +00:00
use egui ::{
2022-12-07 02:13:37 +00:00
TextEdit ,
2022-11-14 02:56:25 +00:00
TextStyle ::Monospace ,
2022-11-23 04:21:46 +00:00
Checkbox , ProgressBar , Spinner , Button , Label , Slider ,
SelectableLabel ,
2022-11-24 04:03:56 +00:00
RichText ,
2022-11-23 04:21:46 +00:00
Vec2 ,
2022-11-14 02:56:25 +00:00
} ;
2022-11-25 01:28:13 +00:00
use crate ::{
constants ::* ,
2022-11-27 03:26:32 +00:00
disk ::Gupax ,
2022-11-25 01:28:13 +00:00
update ::* ,
2022-11-27 03:26:32 +00:00
ErrorState ,
2022-11-27 20:11:00 +00:00
Restart ,
2022-12-06 03:33:35 +00:00
Tab ,
2022-11-25 01:28:13 +00:00
} ;
2022-11-20 18:31:00 +00:00
use std ::{
thread ,
sync ::{ Arc , Mutex } ,
2022-11-24 04:03:56 +00:00
path ::Path ,
2022-11-20 18:31:00 +00:00
} ;
2022-10-27 03:15:56 +00:00
use log ::* ;
2022-11-23 04:21:46 +00:00
use serde ::{ Serialize , Deserialize } ;
2022-10-01 16:58:22 +00:00
2022-11-17 18:03:45 +00:00
//---------------------------------------------------------------------------------------------------- FileWindow
// Struct for writing/reading the path state.
// The opened file picker is started in a new
// thread so main() needs to be in sync.
pub struct FileWindow {
thread : bool , // Is there already a FileWindow thread?
picked_p2pool : bool , // Did the user pick a path for p2pool?
picked_xmrig : bool , // Did the user pick a path for xmrig?
p2pool_path : String , // The picked p2pool path
xmrig_path : String , // The picked p2pool path
}
impl FileWindow {
pub fn new ( ) -> Arc < Mutex < Self > > {
Arc ::new ( Mutex ::new ( Self {
thread : false ,
picked_p2pool : false ,
picked_xmrig : false ,
p2pool_path : String ::new ( ) ,
xmrig_path : String ::new ( ) ,
} ) )
}
}
2022-11-22 00:57:36 +00:00
#[ derive(Debug,Clone) ]
pub enum FileType {
P2pool ,
Xmrig ,
}
2022-11-23 04:21:46 +00:00
//---------------------------------------------------------------------------------------------------- Ratio Lock
// Enum for the lock ratio in the advanced tab.
#[ derive(Clone,Copy,Eq,PartialEq,Debug,Deserialize,Serialize) ]
pub enum Ratio {
Width ,
Height ,
None ,
}
2022-11-17 18:03:45 +00:00
//---------------------------------------------------------------------------------------------------- Gupax
2022-10-01 16:58:22 +00:00
impl Gupax {
2022-12-14 03:41:05 +00:00
pub fn show ( & mut self , og : & Arc < Mutex < State > > , state_path : & Path , update : & Arc < Mutex < Update > > , file_window : & Arc < Mutex < FileWindow > > , error_state : & mut ErrorState , restart : & Arc < Mutex < Restart > > , width : f32 , height : f32 , frame : & mut eframe ::Frame , _ctx : & egui ::Context , ui : & mut egui ::Ui ) {
2022-10-27 03:15:56 +00:00
// Update button + Progress bar
2022-12-12 19:34:17 +00:00
debug! ( " Gupax Tab | Rendering [Update] button + progress bar " ) ;
2022-10-27 03:15:56 +00:00
ui . group ( | ui | {
// These are in unnecessary [ui.vertical()]'s
// because I need to use [ui.set_enabled]s, but I can't
// find a way to use a [ui.xxx()] with [ui.add_sized()].
// I have to pick one. This one seperates them though.
2022-12-06 03:33:35 +00:00
let height = if self . simple { height / 5.0 } else { height / 10.0 } ;
2022-10-27 03:15:56 +00:00
let width = width - SPACE ;
update: save [Version] to state, use runtime [og: State]
[og: State] is now completely wrapped in an [Arc<Mutex>] so that
when the update is done, it can [.lock()] the CURRENT runtime
settings of the user and save to [gupax.toml] instead of using an
old copy that was given to it at the beginning of the thread.
In practice, this means users can change settings around during
an update and the update finishing and saving to disk won't be
using their old settings, but the current ones. Wrapping all of
[og: State] within in [Arc<Mutex>] might be overkill compared to
message channels but [State] really is just a few [bool]'s, [u*],
and small [String]'s, so it's not much data.
To bypass a deadlock when comparing [og == state] every frame,
[og]'s struct fields get cloned every frame into separate
variables, then it gets compared. This is also pretty stupid, but
again, the data being cloned is so tiny that it doesn't seem to
slow anything down.
2022-11-02 17:58:44 +00:00
let updating = * update . lock ( ) . unwrap ( ) . updating . lock ( ) . unwrap ( ) ;
2022-10-27 03:15:56 +00:00
ui . vertical ( | ui | {
2022-10-27 15:52:18 +00:00
ui . set_enabled ( ! updating ) ;
2022-11-23 04:21:46 +00:00
if ui . add_sized ( [ width , height ] , Button ::new ( " Check for updates " ) ) . on_hover_text ( GUPAX_UPDATE ) . clicked ( ) {
2022-12-14 03:41:05 +00:00
Update ::spawn_thread ( og , self , state_path , update , error_state , restart ) ;
2022-10-27 03:15:56 +00:00
}
} ) ;
ui . vertical ( | ui | {
2022-10-27 15:52:18 +00:00
ui . set_enabled ( updating ) ;
update: save [Version] to state, use runtime [og: State]
[og: State] is now completely wrapped in an [Arc<Mutex>] so that
when the update is done, it can [.lock()] the CURRENT runtime
settings of the user and save to [gupax.toml] instead of using an
old copy that was given to it at the beginning of the thread.
In practice, this means users can change settings around during
an update and the update finishing and saving to disk won't be
using their old settings, but the current ones. Wrapping all of
[og: State] within in [Arc<Mutex>] might be overkill compared to
message channels but [State] really is just a few [bool]'s, [u*],
and small [String]'s, so it's not much data.
To bypass a deadlock when comparing [og == state] every frame,
[og]'s struct fields get cloned every frame into separate
variables, then it gets compared. This is also pretty stupid, but
again, the data being cloned is so tiny that it doesn't seem to
slow anything down.
2022-11-02 17:58:44 +00:00
let prog = * update . lock ( ) . unwrap ( ) . prog . lock ( ) . unwrap ( ) ;
let msg = format! ( " {} \n {} {} " , * update . lock ( ) . unwrap ( ) . msg . lock ( ) . unwrap ( ) , prog , " % " ) ;
2022-11-23 04:21:46 +00:00
ui . add_sized ( [ width , height * 1.4 ] , Label ::new ( RichText ::text_style ( RichText ::new ( msg ) , Monospace ) ) ) ;
2022-10-27 03:15:56 +00:00
let height = height / 2.0 ;
2022-10-28 19:45:13 +00:00
if updating {
2022-11-23 04:21:46 +00:00
ui . add_sized ( [ width , height ] , Spinner ::new ( ) . size ( height ) ) ;
2022-10-28 19:45:13 +00:00
} else {
2022-11-23 04:21:46 +00:00
ui . add_sized ( [ width , height ] , Label ::new ( " ... " ) ) ;
2022-10-28 19:45:13 +00:00
}
2022-11-23 04:21:46 +00:00
ui . add_sized ( [ width , height ] , ProgressBar ::new ( update . lock ( ) . unwrap ( ) . prog . lock ( ) . unwrap ( ) . round ( ) / 100.0 ) ) ;
2022-10-27 03:15:56 +00:00
} ) ;
} ) ;
2022-10-01 16:58:22 +00:00
2022-12-12 19:34:17 +00:00
debug! ( " Gupax Tab | Rendering bool buttons " ) ;
2022-10-01 16:58:22 +00:00
ui . horizontal ( | ui | {
ui . group ( | ui | {
2022-12-11 04:06:24 +00:00
let width = ( width - SPACE * 12.0 ) / 6.0 ;
2022-12-06 03:33:35 +00:00
let height = height / 10.0 ;
2022-12-11 04:06:24 +00:00
ui . style_mut ( ) . override_text_style = Some ( egui ::TextStyle ::Small ) ;
2022-11-23 04:21:46 +00:00
ui . add_sized ( [ width , height ] , Checkbox ::new ( & mut self . update_via_tor , " Update via Tor " ) ) . on_hover_text ( GUPAX_UPDATE_VIA_TOR ) ;
2022-10-27 03:15:56 +00:00
ui . separator ( ) ;
2022-12-11 04:06:24 +00:00
ui . add_sized ( [ width , height ] , Checkbox ::new ( & mut self . auto_update , " Auto-Update " ) ) . on_hover_text ( GUPAX_AUTO_UPDATE ) ;
ui . separator ( ) ;
ui . add_sized ( [ width , height ] , Checkbox ::new ( & mut self . auto_p2pool , " Auto-P2Pool " ) ) . on_hover_text ( GUPAX_AUTO_P2POOL ) ;
ui . separator ( ) ;
ui . add_sized ( [ width , height ] , Checkbox ::new ( & mut self . auto_xmrig , " Auto-XMRig " ) ) . on_hover_text ( GUPAX_AUTO_XMRIG ) ;
ui . separator ( ) ;
2022-11-23 04:21:46 +00:00
ui . add_sized ( [ width , height ] , Checkbox ::new ( & mut self . ask_before_quit , " Ask before quit " ) ) . on_hover_text ( GUPAX_ASK_BEFORE_QUIT ) ;
2022-10-27 03:15:56 +00:00
ui . separator ( ) ;
2022-11-23 04:21:46 +00:00
ui . add_sized ( [ width , height ] , Checkbox ::new ( & mut self . save_before_quit , " Save before quit " ) ) . on_hover_text ( GUPAX_SAVE_BEFORE_QUIT ) ;
2022-10-01 16:58:22 +00:00
} ) ;
} ) ;
2022-11-23 04:21:46 +00:00
if self . simple { return }
2022-12-12 19:34:17 +00:00
debug! ( " Gupax Tab | Rendering P2Pool/XMRig path selection " ) ;
2022-11-23 04:21:46 +00:00
// P2Pool/XMRig binary path selection
ui . add_space ( SPACE ) ;
2022-11-14 02:56:25 +00:00
ui . style_mut ( ) . override_text_style = Some ( Monospace ) ;
2022-12-07 02:13:37 +00:00
let height = height / 28.0 ;
2022-11-14 02:56:25 +00:00
let text_edit = ( ui . available_width ( ) / 10.0 ) - SPACE ;
2022-10-01 16:58:22 +00:00
ui . horizontal ( | ui | {
2022-11-14 02:56:25 +00:00
if self . p2pool_path . is_empty ( ) {
2022-11-23 04:21:46 +00:00
ui . add_sized ( [ text_edit , height ] , Label ::new ( RichText ::new ( " P2Pool Binary Path ➖ " ) . color ( LIGHT_GRAY ) ) ) ;
2022-11-14 02:56:25 +00:00
} else {
match crate ::disk ::into_absolute_path ( self . p2pool_path . clone ( ) ) {
Ok ( path ) = > {
if path . is_file ( ) {
2022-11-23 04:21:46 +00:00
ui . add_sized ( [ text_edit , height ] , Label ::new ( RichText ::new ( " P2Pool Binary Path ✔ " ) . color ( GREEN ) ) )
2022-11-14 02:56:25 +00:00
} else {
2022-11-23 04:21:46 +00:00
ui . add_sized ( [ text_edit , height ] , Label ::new ( RichText ::new ( " P2Pool Binary Path ❌ " ) . color ( RED ) ) )
2022-11-14 02:56:25 +00:00
}
} ,
2022-11-23 04:21:46 +00:00
_ = > ui . add_sized ( [ text_edit , height ] , Label ::new ( RichText ::new ( " P2Pool Binary Path ❌ " ) . color ( RED ) ) ) ,
2022-11-14 02:56:25 +00:00
} ;
}
2022-10-28 19:45:13 +00:00
ui . spacing_mut ( ) . text_edit_width = ui . available_width ( ) - SPACE ;
2022-11-17 21:53:55 +00:00
ui . set_enabled ( ! file_window . lock ( ) . unwrap ( ) . thread ) ;
2022-11-18 03:45:57 +00:00
if ui . button ( " Open " ) . on_hover_text ( GUPAX_SELECT ) . clicked ( ) {
2022-11-24 04:03:56 +00:00
Self ::spawn_file_window_thread ( file_window , FileType ::P2pool ) ;
2022-11-17 18:03:45 +00:00
}
2022-12-07 02:13:37 +00:00
ui . add_sized ( [ ui . available_width ( ) - SPACE , height ] , TextEdit ::hint_text ( TextEdit ::singleline ( & mut self . p2pool_path ) , GUPAX_PATH_P2POOL ) ) ;
2022-10-01 16:58:22 +00:00
} ) ;
ui . horizontal ( | ui | {
2022-11-14 02:56:25 +00:00
if self . xmrig_path . is_empty ( ) {
2022-11-23 04:21:46 +00:00
ui . add_sized ( [ text_edit , height ] , Label ::new ( RichText ::new ( " XMRig Binary Path ➖ " ) . color ( LIGHT_GRAY ) ) ) ;
2022-11-14 02:56:25 +00:00
} else {
2022-12-09 01:24:37 +00:00
match Self ::path_is_exe ( & self . xmrig_path ) {
true = > ui . add_sized ( [ text_edit , height ] , Label ::new ( RichText ::new ( " XMRig Binary Path ✔ " ) . color ( GREEN ) ) ) ,
false = > ui . add_sized ( [ text_edit , height ] , Label ::new ( RichText ::new ( " XMRig Binary Path ❌ " ) . color ( RED ) ) ) ,
2022-11-14 02:56:25 +00:00
} ;
}
2022-10-28 19:45:13 +00:00
ui . spacing_mut ( ) . text_edit_width = ui . available_width ( ) - SPACE ;
2022-11-17 21:53:55 +00:00
ui . set_enabled ( ! file_window . lock ( ) . unwrap ( ) . thread ) ;
2022-11-18 19:25:13 +00:00
if ui . button ( " Open " ) . on_hover_text ( GUPAX_SELECT ) . clicked ( ) {
2022-11-24 04:03:56 +00:00
Self ::spawn_file_window_thread ( file_window , FileType ::Xmrig ) ;
2022-11-17 18:03:45 +00:00
}
2022-12-07 02:13:37 +00:00
ui . add_sized ( [ ui . available_width ( ) - SPACE , height ] , TextEdit ::hint_text ( TextEdit ::singleline ( & mut self . xmrig_path ) , GUPAX_PATH_XMRIG ) ) ;
2022-10-01 16:58:22 +00:00
} ) ;
2022-11-17 18:03:45 +00:00
let mut guard = file_window . lock ( ) . unwrap ( ) ;
if guard . picked_p2pool { self . p2pool_path = guard . p2pool_path . clone ( ) ; guard . picked_p2pool = false ; }
if guard . picked_xmrig { self . xmrig_path = guard . xmrig_path . clone ( ) ; guard . picked_xmrig = false ; }
drop ( guard ) ;
2022-11-23 04:21:46 +00:00
// Gupax App resolution sliders
2022-12-12 19:34:17 +00:00
debug! ( " Gupax Tab | Rendering resolution sliders " ) ;
2022-11-23 04:21:46 +00:00
ui . vertical ( | ui | {
let width = width / 10.0 ;
ui . spacing_mut ( ) . icon_width = width / 25.0 ;
ui . spacing_mut ( ) . slider_width = width * 7.6 ;
match self . ratio {
Ratio ::None = > ( ) ,
Ratio ::Width = > {
let width = self . selected_width as f64 ;
2022-11-24 04:03:56 +00:00
let _height = self . selected_height as f64 ;
2022-12-07 03:01:36 +00:00
let height = ( width / 1.333 ) . round ( ) ;
2022-11-23 04:21:46 +00:00
self . selected_height = height as u16 ;
} ,
Ratio ::Height = > {
2022-11-24 04:03:56 +00:00
let _width = self . selected_width as f64 ;
2022-11-23 04:21:46 +00:00
let height = self . selected_height as f64 ;
2022-12-07 03:01:36 +00:00
let width = ( height * 1.333 ) . round ( ) ;
2022-11-23 04:21:46 +00:00
self . selected_width = width as u16 ;
} ,
}
ui . horizontal ( | ui | {
ui . set_enabled ( self . ratio ! = Ratio ::Height ) ;
ui . add_sized ( [ width , height ] , Label ::new ( format! ( " Width [ {} - {} ]: " , APP_MIN_WIDTH as u16 , APP_MAX_WIDTH as u16 ) ) ) ;
ui . add_sized ( [ width , height ] , Slider ::new ( & mut self . selected_width , APP_MIN_WIDTH as u16 ..= APP_MAX_WIDTH as u16 ) ) . on_hover_text ( GUPAX_WIDTH ) ;
} ) ;
ui . horizontal ( | ui | {
ui . set_enabled ( self . ratio ! = Ratio ::Width ) ;
ui . add_sized ( [ width , height ] , Label ::new ( format! ( " Height [ {} - {} ]: " , APP_MIN_HEIGHT as u16 , APP_MAX_HEIGHT as u16 ) ) ) ;
ui . add_sized ( [ width , height ] , Slider ::new ( & mut self . selected_height , APP_MIN_HEIGHT as u16 ..= APP_MAX_HEIGHT as u16 ) ) . on_hover_text ( GUPAX_HEIGHT ) ;
} ) ;
} ) ;
ui . style_mut ( ) . override_text_style = Some ( egui ::TextStyle ::Button ) ;
2022-12-06 03:33:35 +00:00
// Width/Height locks
2022-11-23 04:21:46 +00:00
ui . group ( | ui | {
2022-12-06 03:33:35 +00:00
let height = ui . available_height ( ) / 4.0 ;
2022-11-23 04:21:46 +00:00
ui . horizontal ( | ui | {
2022-12-06 03:33:35 +00:00
use Ratio ::* ;
let width = ( width / 4.0 ) - ( SPACE * 1.5 ) ;
if ui . add_sized ( [ width , height ] , SelectableLabel ::new ( self . ratio = = Width , " Lock to width " ) ) . on_hover_text ( GUPAX_LOCK_WIDTH ) . clicked ( ) { self . ratio = Width ; }
2022-11-23 04:21:46 +00:00
ui . separator ( ) ;
2022-12-06 03:33:35 +00:00
if ui . add_sized ( [ width , height ] , SelectableLabel ::new ( self . ratio = = Height , " Lock to height " ) ) . on_hover_text ( GUPAX_LOCK_HEIGHT ) . clicked ( ) { self . ratio = Height ; }
2022-11-23 04:21:46 +00:00
ui . separator ( ) ;
2022-12-06 03:33:35 +00:00
if ui . add_sized ( [ width , height ] , SelectableLabel ::new ( self . ratio = = None , " No lock " ) ) . on_hover_text ( GUPAX_NO_LOCK ) . clicked ( ) { self . ratio = None ; }
2022-11-23 04:21:46 +00:00
if ui . add_sized ( [ width , height ] , Button ::new ( " Set " ) ) . on_hover_text ( GUPAX_SET ) . clicked ( ) {
frame . set_window_size ( Vec2 ::new ( self . selected_width as f32 , self . selected_height as f32 ) ) ;
}
} ) } ) ;
2022-12-06 03:33:35 +00:00
// Saved [Tab]
2022-12-12 19:34:17 +00:00
debug! ( " Gupax Tab | Rendering [Tab] selector " ) ;
2022-12-06 03:33:35 +00:00
ui . group ( | ui | {
2022-12-11 20:49:01 +00:00
let height = ui . available_height ( ) / 1.85 ;
2022-12-08 23:31:20 +00:00
let width = ( width / 5.0 ) - ( SPACE * 1.93 ) ;
2022-12-06 03:33:35 +00:00
ui . horizontal ( | ui | {
if ui . add_sized ( [ width , height ] , SelectableLabel ::new ( self . tab = = Tab ::About , " About " ) ) . on_hover_text ( GUPAX_TAB_ABOUT ) . clicked ( ) { self . tab = Tab ::About ; }
ui . separator ( ) ;
if ui . add_sized ( [ width , height ] , SelectableLabel ::new ( self . tab = = Tab ::Status , " Status " ) ) . on_hover_text ( GUPAX_TAB_STATUS ) . clicked ( ) { self . tab = Tab ::Status ; }
ui . separator ( ) ;
if ui . add_sized ( [ width , height ] , SelectableLabel ::new ( self . tab = = Tab ::Gupax , " Gupax " ) ) . on_hover_text ( GUPAX_TAB_GUPAX ) . clicked ( ) { self . tab = Tab ::Gupax ; }
ui . separator ( ) ;
if ui . add_sized ( [ width , height ] , SelectableLabel ::new ( self . tab = = Tab ::P2pool , " P2Pool " ) ) . on_hover_text ( GUPAX_TAB_P2POOL ) . clicked ( ) { self . tab = Tab ::P2pool ; }
ui . separator ( ) ;
if ui . add_sized ( [ width , height ] , SelectableLabel ::new ( self . tab = = Tab ::Xmrig , " XMRig " ) ) . on_hover_text ( GUPAX_TAB_XMRIG ) . clicked ( ) { self . tab = Tab ::Xmrig ; }
} ) } ) ;
2022-10-01 16:58:22 +00:00
}
2022-11-22 00:57:36 +00:00
2022-12-09 01:24:37 +00:00
// Checks if a path is a valid path to an executable.
pub fn path_is_exe ( path : & str ) -> bool {
let path = path . to_string ( ) ;
match crate ::disk ::into_absolute_path ( path ) {
2022-12-14 03:41:05 +00:00
Ok ( path ) = > path . is_file ( ) ,
2022-12-09 01:24:37 +00:00
_ = > false ,
}
}
2022-11-22 00:57:36 +00:00
fn spawn_file_window_thread ( file_window : & Arc < Mutex < FileWindow > > , file_type : FileType ) {
use FileType ::* ;
let name = match file_type {
P2pool = > " P2Pool " ,
Xmrig = > " XMRig " ,
} ;
let file_window = file_window . clone ( ) ;
file_window . lock ( ) . unwrap ( ) . thread = true ;
thread ::spawn ( move | | {
match rfd ::FileDialog ::new ( ) . set_title ( & format! ( " Select {} Binary for Gupax " , name ) ) . pick_file ( ) {
Some ( path ) = > {
info! ( " Gupax | Path selected for {} ... {} " , name , path . display ( ) ) ;
match file_type {
P2pool = > { file_window . lock ( ) . unwrap ( ) . p2pool_path = path . display ( ) . to_string ( ) ; file_window . lock ( ) . unwrap ( ) . picked_p2pool = true ; } ,
Xmrig = > { file_window . lock ( ) . unwrap ( ) . xmrig_path = path . display ( ) . to_string ( ) ; file_window . lock ( ) . unwrap ( ) . picked_xmrig = true ; } ,
} ;
} ,
None = > info! ( " Gupax | No path selected for {} " , name ) ,
} ;
file_window . lock ( ) . unwrap ( ) . thread = false ;
} ) ;
}
2022-10-01 16:58:22 +00:00
}