mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-09 06:18:05 -05:00
107 lines
2.3 KiB
C++
107 lines
2.3 KiB
C++
#include "ZoneCodeGenerator.h"
|
|
|
|
#include <cstdio>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
#include "ZoneCodeGeneratorArguments.h"
|
|
#include "Parsing/Commands/CommandsFileReader.h"
|
|
#include "Parsing/Header/HeaderFileReader.h"
|
|
#include "Persistence/IDataRepository.h"
|
|
#include "Persistence/InMemory/InMemoryRepository.h"
|
|
#include "Printing/PrettyPrinter.h"
|
|
|
|
class ZoneCodeGenerator::Impl
|
|
{
|
|
ZoneCodeGeneratorArguments m_args;
|
|
std::unique_ptr<IDataRepository> m_repository;
|
|
|
|
bool ReadHeaderData()
|
|
{
|
|
for (const auto& headerFile : m_args.m_header_paths)
|
|
{
|
|
HeaderFileReader headerFileReader(&m_args, headerFile);
|
|
|
|
if (!headerFileReader.ReadHeaderFile(m_repository.get()))
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool ReadCommandsData()
|
|
{
|
|
for (const auto& commandsFile : m_args.m_command_paths)
|
|
{
|
|
CommandsFileReader commandsFileReader(&m_args, commandsFile);
|
|
|
|
if (!commandsFileReader.ReadCommandsFile(m_repository.get()))
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void PrintData() const
|
|
{
|
|
const PrettyPrinter prettyPrinter(std::cout, m_repository.get());
|
|
prettyPrinter.PrintAll();
|
|
}
|
|
|
|
bool GenerateCode()
|
|
{
|
|
for(const auto& generationTask : m_args.m_generation_tasks)
|
|
{
|
|
// TODO: Implement
|
|
std::cout << "Generating code for asset \"" << generationTask.m_asset_name << "\" and preset \"" << generationTask.m_preset_name << "\" ..." << std::endl;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public:
|
|
Impl()
|
|
{
|
|
m_repository = std::make_unique<InMemoryRepository>();
|
|
}
|
|
|
|
int Run(const int argc, const char** argv)
|
|
{
|
|
if (!m_args.Parse(argc, argv))
|
|
return 1;
|
|
|
|
if (!ReadHeaderData() || !ReadCommandsData())
|
|
return 1;
|
|
|
|
if(m_args.ShouldPrint())
|
|
{
|
|
PrintData();
|
|
}
|
|
|
|
if(m_args.ShouldGenerate())
|
|
{
|
|
if (!GenerateCode())
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
};
|
|
|
|
ZoneCodeGenerator::ZoneCodeGenerator()
|
|
{
|
|
m_impl = new Impl();
|
|
}
|
|
|
|
ZoneCodeGenerator::~ZoneCodeGenerator()
|
|
{
|
|
delete m_impl;
|
|
m_impl = nullptr;
|
|
}
|
|
|
|
int ZoneCodeGenerator::Run(const int argc, const char** argv) const
|
|
{
|
|
return m_impl->Run(argc, argv);
|
|
}
|