aseprite/src/core/cfg.cpp
2011-01-30 19:12:10 -03:00

112 lines
2.9 KiB
C++

/* ASE - Allegro Sprite Editor
* Copyright (C) 2001-2011 David Capello
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include <allegro/config.h>
#include <allegro/file.h>
#include <allegro/unicode.h>
#include "gui/rect.h"
#include "core/cfg.h"
#include "resource_finder.h"
using namespace gfx;
static char config_filename[512];
ConfigModule::ConfigModule()
{
ResourceFinder rf;
rf.findConfigurationFile();
config_filename[0] = 0;
// Search the configuration file from first to last path
while (const char* path = rf.next()) {
if (exists(path)) {
ustrcpy(config_filename, path);
break;
}
}
// If the file wasn't found, we will create configuration file
// in the first path
if (config_filename[0] == 0 && rf.first())
ustrcpy(config_filename, rf.first());
override_config_file(config_filename);
}
ConfigModule::~ConfigModule()
{
//override_config_file(NULL);
flush_config_file();
}
bool get_config_bool(const char *section, const char *name, bool value)
{
const char *got = get_config_string(section, name, value ? "yes": "no");
return (got &&
(ustricmp(got, "yes") == 0 ||
ustricmp(got, "true") == 0 ||
ustricmp(got, "1") == 0)) ? true: false;
}
void set_config_bool(const char *section, const char *name, bool value)
{
set_config_string(section, name, value ? "yes": "no");
}
Rect get_config_rect(const char *section, const char *name, const Rect& rect)
{
Rect rect2(rect);
char **argv;
int argc;
argv = get_config_argv(section, name, &argc);
if (argv && argc == 4) {
rect2.x = ustrtol(argv[0], NULL, 10);
rect2.y = ustrtol(argv[1], NULL, 10);
rect2.w = ustrtol(argv[2], NULL, 10);
rect2.h = ustrtol(argv[3], NULL, 10);
}
return rect2;
}
void set_config_rect(const char *section, const char *name, const Rect& rect)
{
char buf[128];
uszprintf(buf, sizeof(buf), "%d %d %d %d",
rect.x, rect.y, rect.w, rect.h);
set_config_string(section, name, buf);
}
Color get_config_color(const char *section, const char *name, const Color& value)
{
return Color::fromString(get_config_string(section, name, value.toString().c_str()));
}
void set_config_color(const char *section, const char *name, const Color& value)
{
set_config_string(section, name, value.toString().c_str());
}