mindustry logic execution, map- and schematic- parsing and rendering
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
use std::borrow::Cow;
use std::env::Args;
use std::fs;
use std::io::{self, Write};

use plandustry::block::build_registry;
use plandustry::data::schematic::{Schematic, SchematicSerializer};
use plandustry::data::{DataRead, Serializer};

use crate::args::{self, ArgCount, ArgOption, OptionHandler};
use crate::print_err;

pub fn main(mut args: Args, arg_off: usize) {
    let mut handler = OptionHandler::default();
    let opt_file = handler
        .add(ArgOption::new(
            Some('f'),
            Some(Cow::Borrowed("file")),
            ArgCount::Required(usize::MAX),
        ))
        .unwrap();
    let opt_interact = handler
        .add(ArgOption::new(
            Some('i'),
            Some(Cow::Borrowed("interactive")),
            ArgCount::Forbidden,
        ))
        .unwrap();
    if let Err(e) = args::parse(&mut args, &mut handler, arg_off) {
        print_err!(e, "Command error");
        return;
    }

    let reg = build_registry();
    let mut ss = SchematicSerializer(&reg);
    let mut first = true;
    let mut need_space = false;
    // process the files if any
    let file = match handler.get_value(opt_file).get_values() {
        None => false,
        Some(paths) => {
            for path in paths {
                match fs::read(path) {
                    Ok(data) => {
                        match ss.deserialize(&mut DataRead::new(&data)) {
                            Ok(s) => {
                                if !first || need_space {
                                    println!();
                                }
                                first = false;
                                need_space = true;
                                println!("Schematic: @{path}");
                                print_schematic(&s);
                            }
                            // continue processing files, literals & maybe interactive mode
                            Err(e) => {
                                if need_space {
                                    println!();
                                }
                                first = false;
                                need_space = false;
                                print_err!(e, "Could not read schematic from {path}");
                            }
                        }
                    }
                    // continue processing files, literals & maybe interactive mode
                    Err(e) => {
                        if need_space {
                            println!();
                        }
                        first = false;
                        need_space = false;
                        print_err!(e, "Could not read file {path:?}");
                    }
                }
            }
            true
        }
    };
    // process schematics from command line
    for curr in handler.get_literals() {
        match ss.deserialize_base64(curr) {
            Ok(s) => {
                if !first || need_space {
                    println!();
                }
                first = false;
                need_space = true;
                println!("Schematic: {curr}");
                print_schematic(&s);
            }
            // continue processing literals & maybe interactive mode
            Err(e) => {
                if need_space {
                    println!();
                }
                first = false;
                need_space = false;
                print_err!(e, "Could not read schematic");
            }
        }
    }
    // if --interactive or no schematics: continue parsing from console
    if handler.get_value(opt_interact).is_present() || (!file && handler.get_literals().is_empty())
    {
        if need_space {
            println!();
        }
        need_space = false;
        println!("Entering interactive mode, paste schematic to print details.");
        let mut buff = String::new();
        let stdin = io::stdin();
        loop {
            buff.clear();
            if need_space {
                println!();
            }
            need_space = false;
            print!("> ");
            if let Err(e) = io::stdout().flush() {
                // what the print & println macros would do
                panic!("failed printing to stdout: {e}");
            }
            match stdin.read_line(&mut buff) {
                Ok(..) => {
                    let data = buff.trim();
                    if data.is_empty() {
                        break;
                    }
                    match ss.deserialize_base64(data) {
                        Ok(s) => {
                            println!();
                            need_space = true;
                            print_schematic(&s)
                        }
                        // continue interactive mode, typos are especially likely here
                        Err(e) => {
                            if need_space {
                                println!();
                            }
                            need_space = false;
                            print_err!(e, "Could not read schematic");
                        }
                    }
                }
                Err(e) => {
                    if need_space {
                        println!();
                    }
                    print_err!(e, "Failed to read next schematic");
                    break;
                }
            }
        }
    }
}

pub fn print_schematic(s: &Schematic) {
    if let Some(name) = s.get_tags().get("name") {
        if !name.is_empty() {
            println!("Name: {name}");
        }
    }
    if let Some(desc) = s.get_tags().get("description") {
        if !desc.is_empty() {
            println!("Desc: {desc}");
        }
    }
    if let Some(labels) = s.get_tags().get("labels") {
        if !labels.is_empty() && labels != "[]" {
            println!("Tags: {:?}", labels);
        }
    }
    let (cost, sandbox) = s.compute_total_cost();
    if !cost.is_empty() {
        println!(
            "Build cost: {cost}{}",
            if sandbox { " (Sandbox only)" } else { "" }
        );
    } else if sandbox {
        println!("Can only be built in the Sandbox");
    }
    println!("\n{s}");
}