mirror of
https://github.com/aseprite/aseprite.git
synced 2025-03-15 07:21:16 +00:00
* Tools must use the default configuration when we run in -batch mode * Fixed app_get_current_pixel_format() when ENABLE_UI is disabled so the color= parameter of app.useTool{} depends on the activeSprite color mode
205 lines
4.9 KiB
C++
205 lines
4.9 KiB
C++
// Aseprite Config Library
|
|
// Copyright (C) 2019 Igara Studio S.A.
|
|
// Copyright (C) 2014-2017 David Capello
|
|
//
|
|
// This file is released under the terms of the MIT license.
|
|
// Read LICENSE.txt for more information.
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "cfg/cfg.h"
|
|
|
|
#include "base/file_handle.h"
|
|
#include "base/string.h"
|
|
|
|
#include <cstdlib>
|
|
#include <iostream>
|
|
#include <list>
|
|
|
|
#include "SimpleIni.h"
|
|
|
|
#include "base/log.h"
|
|
|
|
namespace cfg {
|
|
|
|
class CfgFile::CfgFileImpl {
|
|
public:
|
|
const std::string& filename() const {
|
|
return m_filename;
|
|
}
|
|
|
|
void getAllSections(std::vector<std::string>& sections) const {
|
|
std::list<CSimpleIniA::Entry> sectionsList;
|
|
m_ini.GetAllSections(sectionsList);
|
|
sections.reserve(sectionsList.size());
|
|
for (const auto& section : sectionsList)
|
|
sections.push_back(section.pItem);
|
|
}
|
|
|
|
void getAllKeys(const char* section, std::vector<std::string>& keys) const {
|
|
std::list<CSimpleIniA::Entry> keysList;
|
|
if (!m_ini.GetAllKeys(section, keysList))
|
|
return;
|
|
|
|
keys.reserve(keysList.size());
|
|
for (const auto& k : keysList)
|
|
keys.push_back(k.pItem);
|
|
}
|
|
|
|
const char* getValue(const char* section, const char* name, const char* defaultValue) const {
|
|
return m_ini.GetValue(section, name, defaultValue);
|
|
}
|
|
|
|
bool getBoolValue(const char* section, const char* name, bool defaultValue) const {
|
|
return m_ini.GetBoolValue(section, name, defaultValue);
|
|
}
|
|
|
|
int getIntValue(const char* section, const char* name, int defaultValue) const {
|
|
return m_ini.GetLongValue(section, name, defaultValue);
|
|
}
|
|
|
|
double getDoubleValue(const char* section, const char* name, double defaultValue) const {
|
|
return m_ini.GetDoubleValue(section, name, defaultValue);
|
|
}
|
|
|
|
void setValue(const char* section, const char* name, const char* value) {
|
|
m_ini.SetValue(section, name, value);
|
|
}
|
|
|
|
void setBoolValue(const char* section, const char* name, bool value) {
|
|
m_ini.SetBoolValue(section, name, value);
|
|
}
|
|
|
|
void setIntValue(const char* section, const char* name, int value) {
|
|
m_ini.SetLongValue(section, name, value);
|
|
}
|
|
|
|
void setDoubleValue(const char* section, const char* name, double value) {
|
|
m_ini.SetDoubleValue(section, name, value);
|
|
}
|
|
|
|
void deleteValue(const char* section, const char* name) {
|
|
m_ini.Delete(section, name, true);
|
|
}
|
|
|
|
void deleteSection(const char* section) {
|
|
m_ini.Delete(section, nullptr, true);
|
|
}
|
|
|
|
void load(const std::string& filename) {
|
|
m_filename = filename;
|
|
|
|
base::FileHandle file(base::open_file(m_filename, "rb"));
|
|
if (file) {
|
|
m_ini.SetMultiLine();
|
|
SI_Error err = m_ini.LoadFile(file.get());
|
|
if (err != SI_OK) {
|
|
LOG(ERROR) << "CFG: Error " << err << " loading configuration from " << m_filename << "\n";
|
|
}
|
|
}
|
|
}
|
|
|
|
void save() {
|
|
base::FileHandle file(base::open_file(m_filename, "wb"));
|
|
if (file) {
|
|
SI_Error err = m_ini.SaveFile(file.get());
|
|
if (err != SI_OK) {
|
|
LOG(ERROR) << "CFG: Error " << err << " saving configuration into " << m_filename << "\n";
|
|
}
|
|
}
|
|
}
|
|
|
|
private:
|
|
std::string m_filename;
|
|
CSimpleIniA m_ini;
|
|
};
|
|
|
|
CfgFile::CfgFile()
|
|
: m_impl(new CfgFileImpl)
|
|
{
|
|
}
|
|
|
|
CfgFile::~CfgFile()
|
|
{
|
|
delete m_impl;
|
|
}
|
|
|
|
const std::string& CfgFile::filename() const
|
|
{
|
|
return m_impl->filename();
|
|
}
|
|
|
|
void CfgFile::getAllSections(std::vector<std::string>& sections) const
|
|
{
|
|
m_impl->getAllSections(sections);
|
|
}
|
|
|
|
void CfgFile::getAllKeys(const char* section, std::vector<std::string>& keys) const
|
|
{
|
|
m_impl->getAllKeys(section, keys);
|
|
}
|
|
|
|
const char* CfgFile::getValue(const char* section, const char* name, const char* defaultValue) const
|
|
{
|
|
return m_impl->getValue(section, name, defaultValue);
|
|
}
|
|
|
|
bool CfgFile::getBoolValue(const char* section, const char* name, bool defaultValue)
|
|
{
|
|
return m_impl->getBoolValue(section, name, defaultValue);
|
|
}
|
|
|
|
int CfgFile::getIntValue(const char* section, const char* name, int defaultValue)
|
|
{
|
|
return m_impl->getIntValue(section, name, defaultValue);
|
|
}
|
|
|
|
double CfgFile::getDoubleValue(const char* section, const char* name, double defaultValue)
|
|
{
|
|
return m_impl->getDoubleValue(section, name, defaultValue);
|
|
}
|
|
|
|
void CfgFile::setValue(const char* section, const char* name, const char* value)
|
|
{
|
|
m_impl->setValue(section, name, value);
|
|
}
|
|
|
|
void CfgFile::setBoolValue(const char* section, const char* name, bool value)
|
|
{
|
|
m_impl->setBoolValue(section, name, value);
|
|
}
|
|
|
|
void CfgFile::setIntValue(const char* section, const char* name, int value)
|
|
{
|
|
m_impl->setIntValue(section, name, value);
|
|
}
|
|
|
|
void CfgFile::setDoubleValue(const char* section, const char* name, double value)
|
|
{
|
|
m_impl->setDoubleValue(section, name, value);
|
|
}
|
|
|
|
void CfgFile::deleteValue(const char* section, const char* name)
|
|
{
|
|
m_impl->deleteValue(section, name);
|
|
}
|
|
|
|
void CfgFile::deleteSection(const char* section)
|
|
{
|
|
m_impl->deleteSection(section);
|
|
}
|
|
|
|
void CfgFile::load(const std::string& filename)
|
|
{
|
|
m_impl->load(filename);
|
|
}
|
|
|
|
void CfgFile::save()
|
|
{
|
|
m_impl->save();
|
|
}
|
|
|
|
} // namespace cfg
|