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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
|
use clap::{Parser, Subcommand};
use std::path::{Path, PathBuf};
use std::fs::write;
use std::process::exit;
use std::fs;
use json;
mod content;
mod utils;
#[derive(Parser)]
struct Cli {
#[clap(subcommand)]
command: Commands,
}
#[derive(Subcommand)]
enum Commands {
Init {
},
/// Install new addon
Install {
/// Addon project git
git_repo: String
},
Update {
},
Remove {
},
}
#[derive(Clone)]
#[derive(Debug)]
struct GlamObject {
name : String,
git_repo : String
}
fn main() {
let cli = Cli::parse();
match &cli.command {
Commands::Init {} => {
initialize();
},
Commands::Install {git_repo: git_address} => {
check_initialization();
install_addon(git_address);
},
Commands::Update {} => {
check_initialization();
update_addon();
},
Commands::Remove {} => {
check_initialization();
remove_addon();
},
}
}
fn initialize() {
if !Path::new("./.gitignore").exists() {
match write("./.gitignore", content::create_gitignore_file()) {
Ok(_v) => (),
Err(_e) => {
println!("There was a problem creating the .gitignore file!");
exit(1);
}
}
}
if !Path::new("./.gdignore").exists() {
match write("./.gdignore", content::create_gdignore_file()) {
Ok(_v) => (),
Err(_e) => {
println!("There was a problem creating the .gdignore file!");
exit(1);
}
}
}
}
fn check_initialization() {
if !Path::new("./.gitignore").exists() {
println!(".gitignore file does not exist!");
}
if !Path::new("./.gdignore").exists() {
println!(".gdignore file does not exist!");
}
}
fn install_addon(git_repo : &str) {
// Search for project root folder
let root = search_project_root();
println!("Found root project in: {}", root);
// Create glam.d/ folder if it doesn't exist
if !Path::new(&format!("{}/.glam.d/", root)).exists() {
utils::run_shell_command(
&format!("mkdir -p {}/.glam.d/", root),
None
);
}
// Create .glam file if it doesn't exist
if !Path::new(&format!("{}/.glam", root)).exists() {
fs::write(&format!("{}/.glam",root),
content::create_glam_file())
.expect("Couldn't create .glam file!");
}
// Find glam object or create one with default configuration
let mut glam_objects = read_glam_file();
let mut glam_obj : Option<GlamObject> = None;
let name = utils::get_repo_name(git_repo);
for obj in glam_objects.iter() {
if obj.name == name {
glam_obj = Some(obj.clone());
}
}
match glam_obj {
None => {
let obj = GlamObject{
git_repo : git_repo.to_string(),
name : name.to_string()
};
glam_obj = Some(obj.clone());
glam_objects.push(obj);
}
_ => {}
}
let target_obj = glam_obj.unwrap();
// If glam addon folder doesn't exist, clone project
if !Path::new(&format!("{}/.glam.d/{}", root, target_obj.name)).exists() {
utils::run_shell_command(
&format!("cd {}/.glam.d/ && git clone {} {}", root, target_obj.git_repo, target_obj.name),
None
);
println!("Created addon folder on .glam.d!");
} else {
println!("Not Created!");
}
// If project addon folder doesn't exist, create it
utils::run_shell_command(
&format!("mkdir -p {}/addons/{}", root, name),
None
);
// TODO: use source_folder to copy files from (default: /addons/)
// TODO: use target_folder to copy files to (defautl: (root)/)
// Copy addon repository content to target folder
utils::run_shell_command(
&format!("cp -f -r {}/.glam.d/{}/addons/* -t {}/addons/",root, name, root),
None
);
// Write .glam file
write_glam_file(&glam_objects);
}
// TODO: Use root folder
fn read_glam_file() -> Vec<GlamObject> {
if !Path::new("./.glam").exists() {
fs::write("./.glam", content::create_glam_file()).expect("Couldn't create .glam file!");
}
let glam_content = fs::read_to_string("./.glam").expect("Couldn't read .glam file!");
let glam_obj = json::parse(&glam_content).expect("Couldn't parse .glam file!");
let packages = &glam_obj["packages"];
let mut glam_objects = Vec::new();
println!("{}", packages);
for i in packages.entries() {
println!("{}", i.1);
glam_objects.push(
GlamObject{
name : i.1["name"].to_string(),
git_repo : i.1["git_repo"].to_string()
}
);
}
return glam_objects;
}
// TODO: Use root folder
fn write_glam_file(glam_objects : &Vec<GlamObject>) {
let mut data = json::object!{};
data["packages"] = json::object!{};
for glam_obj in glam_objects {
println!("{:?}", glam_obj);
data["packages"][&glam_obj.name] = json::object!{};
data["packages"][&glam_obj.name]["name"] = glam_obj.clone().name.into();
data["packages"][&glam_obj.name]["git_repo"] = glam_obj.clone().git_repo.into();
}
let json_string = json::stringify(data);
println!("{}", json_string);
fs::write("./.glam", json_string).expect("Couldn't create .glam file!");
}
fn update_addon() {
}
fn remove_addon() {
}
fn search_project_root() -> String{
let path = PathBuf::from("./");
let mut dir = path.canonicalize().unwrap();
loop {
let dir_path = dir.to_str().unwrap();
let proj_path = format!("{}/project.godot", dir_path);
println!("{}", proj_path);
let godot_project = Path::new(&proj_path);
if godot_project.exists() {
break;
}
else {
let parent = dir.parent();
if parent.is_none() {
panic!("Godot project not found!");
}
dir = dir.parent().unwrap().to_path_buf();
}
}
return dir.to_str().unwrap().to_string();
}
|