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
|
#include "compat/assert.hpp"
#include "compat/sysexits.hpp"
#include "compat/fix-argv0.hpp"
#include "src/wall-atlas.hpp"
#include "serialize/wall-atlas.hpp"
#include "serialize/json-helper.hpp"
#include "loader/loader.hpp"
#include <utility>
#include <tuple>
#include <Corrade/Utility/DebugStl.h>
#include <Corrade/Containers/StringView.h>
#include <Corrade/Containers/String.h>
#include <Corrade/Containers/TripleStl.h>
#include <Corrade/Utility/Path.h>
#include <Corrade/Utility/Arguments.h>
#include <nlohmann/json.hpp>
#include <opencv2/core/mat.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <opencv2/imgcodecs/imgcodecs.hpp>
namespace floormat {
using Corrade::Utility::Arguments;
using namespace std::string_literals;
namespace {
struct options
{
String input_dir, input_file, output_dir;
};
std::shared_ptr<wall_atlas> read_from_file(StringView filename)
{
using namespace floormat::Wall::detail;
auto def = wall_atlas_def::deserialize(filename);
const auto jroot = json_helper::from_json_(filename);
auto header = read_info_header(jroot);
if (!loader.check_atlas_name(header.name))
fm_abort("bad atlas name '%s'!", header.name.data());
return {};
}
inline String fixsep(String str)
{
#ifdef _WIN32
for (char& c : str)
if (c == '\\')
c = '/';
#endif
return str;
}
Triple<options, Arguments, bool> parse_cmdline(int argc, const char* const* argv) noexcept
{
Corrade::Utility::Arguments args{};
args.addOption('o', "output"s).setHelp("output"s, ""s, "DIR"s);
args.addArgument("input.json"s);
args.parse(argc, argv);
options opts;
opts.output_dir = Path::join(loader.startup_directory(), fixsep(args.value<StringView>("output")));
opts.input_file = Path::join(loader.startup_directory(), fixsep(args.value<StringView>("input.json")));
opts.input_dir = Path::split(opts.input_file).first();
if (opts.output_dir.isEmpty())
opts.output_dir = opts.input_dir;
if (!Path::exists(opts.input_file))
Error{Error::Flag::NoSpace} << "fatal: input file '" << opts.input_file << "' doesn't exist";
else if (!Path::isDirectory(opts.output_dir))
Error{Error::Flag::NoSpace} << "fatal: output directory '" << opts.output_dir << "' doesn't exist";
else if (Path::isDirectory(opts.input_file))
Error{Error::Flag::NoSpace} << "fatal: input file '" << opts.input_file << "' is a directory";
else
return { std::move(opts), std::move(args), true };
return {};
}
[[nodiscard]] static int usage(const Arguments& args) noexcept
{
Error{Error::Flag::NoNewlineAtTheEnd} << args.usage();
return EX_USAGE;
}
} // namespace
} // namespace floormat
using namespace floormat;
int main(int argc, char** argv)
{
argv[0] = fix_argv0(argv[0]);
auto [opts, args, opts_ok] = parse_cmdline(argc, argv);
return 0;
}
|