1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
use clap::{Parser, Subcommand};
mod commands;
#[derive(Parser)]
struct Cli {
#[clap(subcommand)]
command: Commands,
/// Verbose (output subshell commands)
#[clap(short, long, takes_value = false)]
verbose: bool,
}
#[derive(Subcommand)]
enum Commands {
/// Initialize Godot project for GLAM
Init {},
/// Add new repository
Add {
/// Package project git
git_repo: String,
},
/// Update a repository
Update {},
/// Install all addons on glam file
Install {},
// Apply changes to a repository
//Apply {},
}
fn main() {
let cli = Cli::parse();
match &cli.command {
Commands::Init {} => {
let root = commands::search_project_root();
commands::initialize_glam_files(&root);
commands::initialize(&root);
}
Commands::Add { git_repo } => {
let root = commands::search_project_root();
if commands::check_initialization(&root) {
commands::add_repository(&root, git_repo, cli.verbose);
}
}
Commands::Update {} => {
let root = commands::search_project_root();
if commands::check_initialization(&root) {
commands::update_repository(&root, cli.verbose);
}
}
Commands::Install {} => {
let root = commands::search_project_root();
if commands::check_initialization(&root) {
commands::install_repositories(&root, cli.verbose);
}
}
/*Commands::Apply {} => {
let root = commands::search_project_root();
if commands::check_initialization(&root) {
commands::apply_changes(&root, cli.verbose);
}
}*/
}
}
|