1
+ use std:: env;
1
2
use std:: { path:: PathBuf , vec} ;
2
3
use clap:: Parser ;
3
4
use xdg:: BaseDirectories ;
@@ -42,22 +43,11 @@ enum Action {
42
43
game : Option < String > ,
43
44
} ,
44
45
45
- /// Wrap an external command in between an activation and deactivation
46
- #[ clap( name = "wrap " ) ]
47
- Wrap {
48
- /// Identifier matching the config file.
46
+ /// Edit or create a configuration file for a game with $EDITOR
47
+ #[ clap( name = "edit " ) ]
48
+ Edit {
49
+ /// Identifier matching the config file. Can be a new identifier.
49
50
game : String ,
50
-
51
- /// Command to wrap around to.
52
- command : Vec < String > ,
53
-
54
- /// Override the "active_set" of the config file.
55
- #[ clap( long = "set" ) ]
56
- set : Option < String > ,
57
-
58
- /// Mount with write access.
59
- #[ clap( long = "writable" ) ]
60
- writable : bool ,
61
51
} ,
62
52
63
53
/// Setup and collect changes for a new mod by making changes to the game
@@ -78,6 +68,24 @@ enum Action {
78
68
#[ clap( long = "set" ) ]
79
69
set : Option < String > ,
80
70
} ,
71
+
72
+ /// Wrap an external command in between an activation and deactivation
73
+ #[ clap( name = "wrap" ) ]
74
+ Wrap {
75
+ /// Identifier matching the config file.
76
+ game : String ,
77
+
78
+ /// Command to wrap around to.
79
+ command : Vec < String > ,
80
+
81
+ /// Override the "active_set" of the config file.
82
+ #[ clap( long = "set" ) ]
83
+ set : Option < String > ,
84
+
85
+ /// Mount with write access.
86
+ #[ clap( long = "writable" ) ]
87
+ writable : bool ,
88
+ } ,
81
89
}
82
90
83
91
fn main ( ) {
@@ -163,16 +171,36 @@ fn main() {
163
171
}
164
172
}
165
173
} ,
166
- Action :: Wrap { game : game_id, command, set, writable } => {
167
- if command. is_empty ( ) {
168
- panic ! ( "Missing command for wrapping game" ) ;
169
- }
174
+ Action :: Edit { game } => {
175
+ let mut arguments: Vec < String > = vec ! [ ] ;
170
176
171
- let game = Game :: from_config ( game_id, set) . unwrap ( ) ;
172
- match game. wrap ( ExternalCommand :: new ( "wrap_command" . to_string ( ) , command, Some ( true ) , None ) , writable) {
177
+ let editor = match env:: var ( "EDITOR" ) {
178
+ Ok ( value) => value,
179
+ Err ( _) => "vi" . to_owned ( ) ,
180
+ } ;
181
+
182
+ arguments. push ( editor) ;
183
+ arguments. push ( xdg_dirs
184
+ . place_config_file ( format ! ( "{}.toml" , game) )
185
+ . expect ( "Unable to place config file." )
186
+ . to_str ( )
187
+ . expect ( "Failed converting config path to string." )
188
+ . to_owned ( ) ) ;
189
+
190
+ ExternalCommand :: new ( "editor" . to_owned ( ) , arguments, Some ( true ) , None )
191
+ . run ( )
192
+ . unwrap ( ) ;
193
+ } ,
194
+ Action :: Setup { game : game_id, mod_id, path : game_path, set } => {
195
+ let game = match game_path {
196
+ Some ( game_path) => Game :: new ( game_id, game_path) . unwrap ( ) ,
197
+ None => Game :: from_config ( game_id, set) . unwrap ( ) ,
198
+ } ;
199
+
200
+ match game. setup ( mod_id) {
173
201
Ok ( ( ) ) => ( ) ,
174
202
Err ( error) => {
175
- println ! ( "Failed wrapping game overlay '{}': {}" , game. id, error) ;
203
+ println ! ( "Failed setup game overlay '{}': {}" , game. id, error) ;
176
204
match game. deactivate ( ) {
177
205
Ok ( ( ) ) => ( ) ,
178
206
Err ( error) => {
@@ -182,16 +210,16 @@ fn main() {
182
210
}
183
211
}
184
212
} ,
185
- Action :: Setup { game : game_id, mod_id, path : game_path, set } => {
186
- let game = match game_path {
187
- Some ( game_path) => Game :: new ( game_id, game_path) . unwrap ( ) ,
188
- None => Game :: from_config ( game_id, set) . unwrap ( ) ,
189
- } ;
213
+ Action :: Wrap { game : game_id, command, set, writable } => {
214
+ if command. is_empty ( ) {
215
+ panic ! ( "Missing command for wrapping game" ) ;
216
+ }
190
217
191
- match game. setup ( mod_id) {
218
+ let game = Game :: from_config ( game_id, set) . unwrap ( ) ;
219
+ match game. wrap ( ExternalCommand :: new ( "wrap_command" . to_string ( ) , command, Some ( true ) , None ) , writable) {
192
220
Ok ( ( ) ) => ( ) ,
193
221
Err ( error) => {
194
- println ! ( "Failed setup game overlay '{}': {}" , game. id, error) ;
222
+ println ! ( "Failed wrapping game overlay '{}': {}" , game. id, error) ;
195
223
match game. deactivate ( ) {
196
224
Ok ( ( ) ) => ( ) ,
197
225
Err ( error) => {
0 commit comments