aseprite/src/gen/strings_class.cpp
2017-12-01 15:10:21 -03:00

109 lines
2.4 KiB
C++

// Aseprite Code Generator
// Copyright (c) 2016-2017 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#include "gen/strings_class.h"
#include "base/fs.h"
#include "base/replace_string.h"
#include "base/string.h"
#include "cfg/cfg.h"
#include <iostream>
static std::string to_cpp(std::string stringId)
{
base::replace_string(stringId, ".", "_");
return stringId;
}
void gen_strings_class(const std::string& inputFn)
{
cfg::CfgFile cfg;
cfg.load(inputFn);
std::cout
<< "// Don't modify, generated file from " << inputFn << "\n"
<< "\n";
std::cout
<< "#ifndef GENERATED_STRINGS_INI_H_INCLUDED\n"
<< "#define GENERATED_STRINGS_INI_H_INCLUDED\n"
<< "#pragma once\n"
<< "\n"
<< "namespace app {\n"
<< "namespace gen {\n"
<< "\n"
<< " template<typename T>\n"
<< " class Strings {\n"
<< " public:\n";
std::vector<std::string> sections;
std::vector<std::string> keys;
cfg.getAllSections(sections);
for (const auto& section : sections) {
keys.clear();
cfg.getAllKeys(section.c_str(), keys);
std::string textId = section;
textId.push_back('.');
for (auto key : keys) {
textId.append(key);
std::cout << " static const std::string& " << to_cpp(textId) << "() { return T::instance()->translate(\"" << textId << "\"); }\n";
textId.erase(section.size()+1);
}
}
std::cout
<< " };\n"
<< "\n"
<< "} // namespace gen\n"
<< "} // namespace app\n"
<< "\n"
<< "#endif\n";
}
void gen_command_ids(const std::string& inputFn)
{
cfg::CfgFile cfg;
cfg.load(inputFn);
std::cout
<< "// Don't modify, generated file from " << inputFn << "\n"
<< "\n";
std::cout
<< "#ifndef GENERATED_COMMAND_IDS_H_INCLUDED\n"
<< "#define GENERATED_COMMAND_IDS_H_INCLUDED\n"
<< "#pragma once\n"
<< "\n"
<< "namespace app {\n"
<< "namespace gen {\n"
<< "\n"
<< " class CommandId {\n"
<< " public:\n";
std::vector<std::string> keys;
cfg.getAllKeys("commands", keys);
for (auto key : keys) {
if (key.find('_') != std::string::npos)
continue;
std::cout << " static const char* "
<< key << "() { return \""
<< key << "\"; }\n";
}
std::cout
<< " };\n"
<< "\n"
<< "} // namespace gen\n"
<< "} // namespace app\n"
<< "\n"
<< "#endif\n";
}