#ifndef CTOOL_EXTRACT #define CTOOL_EXTRACT #include "ToolBase.hpp" #include class ToolExtract final : public ToolBase { HECL::Database::IDataSpec::ExtractPassInfo m_einfo; std::vector> m_dataSpecs; std::vector m_reps; public: ToolExtract(const ToolPassInfo& info) : ToolBase(info) { if (!info.project) LogModule.report(LogVisor::FatalError, "hecl extract must be ran within a project directory"); if (!m_info.args.size()) LogModule.report(LogVisor::FatalError, "hecl extract needs a source path as its first argument"); m_einfo.srcpath = &m_info.args[0]; m_einfo.extractArgs.reserve(info.args.size() - 1); for (std::vector::const_iterator it=info.args.begin() + 1; it != info.args.end(); ++it) m_einfo.extractArgs.push_back(&*it); for (const HECL::Database::DataSpecEntry* entry : HECL::Database::DATA_SPEC_REGISTRY) { HECL::Database::IDataSpec* ds = entry->m_factory(HECL::Database::TOOL_EXTRACT); if (ds) { if (ds->canExtract(m_einfo, m_reps)) m_dataSpecs.emplace_back(ds); else delete ds; } } } static void Help(HelpOutput& help) { help.secHead(_S("NAME")); help.beginWrap(); help.wrap(_S("hecl-extract - Extract objects from supported package/image formats\n")); help.endWrap(); help.secHead(_S("SYNOPSIS")); help.beginWrap(); help.wrap(_S("hecl extract [...]\n")); help.endWrap(); help.secHead(_S("DESCRIPTION")); help.beginWrap(); help.wrap(_S("This command recursively extracts all or part of a dataspec-supported " "package format. Each object is decoded to a working format and added to the project.\n\n")); help.endWrap(); help.secHead(_S("OPTIONS")); help.optionHead(_S("[/...]"), _S("input file")); help.beginWrap(); help.wrap(_S("Specifies the package file or disc image to source data from. " "An optional subnode specifies a named hierarchical-node specific " "to the game architecture (levels/areas).")); help.endWrap(); } HECL::SystemString toolName() const {return _S("extract");} static void _recursivePrint(int level, HECL::Database::IDataSpec::ExtractReport& rep) { for (int l=0 ; l& ds : m_dataSpecs) ds->doExtract(*m_info.project, m_einfo); return 0; } }; #endif // CTOOL_EXTRACT