2009-09-03 08:53:55 +02:00
|
|
|
// Copyright (c) 2009, Amar Takhar <verm@aegisub.org>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice appear in all copies.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
2009-09-26 11:22:54 +02:00
|
|
|
/// @file aegisub.cpp
|
2009-09-03 08:53:55 +02:00
|
|
|
/// @brief Aegisub specific configuration options and properties.
|
2009-09-26 11:38:17 +02:00
|
|
|
/// @ingroup base
|
2009-09-03 08:53:55 +02:00
|
|
|
|
|
|
|
#ifndef R_PRECOMP
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "aegisub.h"
|
2011-01-08 20:14:02 +01:00
|
|
|
#include "util.h"
|
2011-01-04 05:23:51 +01:00
|
|
|
|
2011-07-16 05:36:42 +02:00
|
|
|
#include <libaegisub/option_value.h>
|
|
|
|
|
2009-10-03 19:16:52 +02:00
|
|
|
#ifdef __WINDOWS__
|
|
|
|
#include "../src/config.h"
|
|
|
|
#else
|
2009-09-03 08:53:55 +02:00
|
|
|
#include "../acconf.h"
|
2009-10-03 19:16:52 +02:00
|
|
|
#endif
|
2009-09-03 08:53:55 +02:00
|
|
|
|
|
|
|
Aegisub::Aegisub() {
|
2011-01-04 05:23:51 +01:00
|
|
|
std::string default_config("{}");
|
2011-01-08 20:16:11 +01:00
|
|
|
opt = new agi::Options(util::config_path() + "config.json", default_config, agi::Options::FLUSH_SKIP);
|
2011-01-04 05:23:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Aegisub::~Aegisub() {
|
|
|
|
delete opt;
|
2009-09-03 08:53:55 +02:00
|
|
|
}
|
|
|
|
|
2011-01-04 05:23:51 +01:00
|
|
|
|
|
|
|
const std::string Aegisub::GetString(std::string key) {
|
|
|
|
return opt->Get(key)->GetString();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int64_t Aegisub::GetInt(std::string key) {
|
|
|
|
return opt->Get(key)->GetInt();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Aegisub::GetBool(std::string key) {
|
|
|
|
return opt->Get(key)->GetBool();
|
2009-09-03 08:53:55 +02:00
|
|
|
}
|