/* * Copyright (C) 2017-2019 Christopher J. Howard * * This file is part of Antkeeper Source Code. * * Antkeeper Source Code is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Antkeeper Source Code is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Antkeeper Source Code. If not, see . */ #include "resource-loader.hpp" #include "resource-manager.hpp" #include "string-table.hpp" #include #include #include using namespace Emergent; template <> ParameterDict* ResourceLoader::load(ResourceManager* resourceManager, std::istream* is) { // Load string table from input stream StringTable* table = ResourceLoader::load(resourceManager, is); // Ensure table is not empty. if (!table || table->empty()) { delete table; return nullptr; } // Create new parameter dict ParameterDict* dict = new ParameterDict(); // Load parameters from table rows for (const StringTableRow& row: *table) { // Skip comments, blank parameter names, and rows that don't have exactly two columns if (row.size() != 2 || row[0].empty() || row[0][0] == '#') { continue; } // Add parameter to dict dict->set(row[0], row[1]); } return dict; } template <> void ResourceLoader::save(ResourceManager* resourceManager, std::ostream* os, const ParameterDict* dict) { // Build string table StringTable table; const std::map* parameters = dict->getParameters(); for (auto it = parameters->begin(); it != parameters->end(); ++it) { table.push_back({it->first, it->second}); } // Save string table ResourceLoader::save(resourceManager, os, &table); }