OGRE
1.10.12
Object-Oriented Graphics Rendering Engine
|
Class for quickly loading settings from a text file. More...
#include <OgreConfigFile.h>
Public Types | |
typedef MapIterator< SettingsBySection > | SectionIterator |
typedef map< String, SettingsMultiMap * >::type | SettingsBySection |
Gets an iterator for stepping through all the keys / values in the file. More... | |
typedef map< String, SettingsMultiMap >::type | SettingsBySection_ |
typedef MapIterator< SettingsMultiMap > | SettingsIterator |
typedef multimap< String, String >::type | SettingsMultiMap |
Public Member Functions | |
ConfigFile () | |
void | clear (void) |
Clear the settings. More... | |
StringVector | getMultiSetting (const String &key, const String §ion=BLANKSTRING) const |
Gets all settings from the file with the named key. More... | |
SectionIterator | getSectionIterator (void) |
String | getSetting (const String &key, const String §ion=BLANKSTRING, const String &defaultValue=BLANKSTRING) const |
Gets the first setting from the file with the named key. More... | |
const SettingsMultiMap & | getSettings (const String §ion=BLANKSTRING) const |
Get all the available settings in a section. More... | |
const SettingsBySection_ & | getSettingsBySection () const |
Get all the available settings grouped by sections. More... | |
SettingsIterator | getSettingsIterator (const String §ion=BLANKSTRING) |
void | load (const String &filename, const String &separators="\=", bool trimWhitespace=true) |
load from a filename (not using resource group locations) More... | |
void | load (const String &filename, const String &resourceGroup, const String &separators="\=", bool trimWhitespace=true) |
load from a filename (using resource group locations) More... | |
void | load (const DataStreamPtr &stream, const String &separators="\=", bool trimWhitespace=true) |
load from a data stream More... | |
void | loadDirect (const String &filename, const String &separators="\=", bool trimWhitespace=true) |
load from a filename (not using resource group locations) More... | |
void | loadFromResourceSystem (const String &filename, const String &resourceGroup, const String &separators="\=", bool trimWhitespace=true) |
load from a filename (using resource group locations) More... | |
Class for quickly loading settings from a text file.
typedef multimap<String, String>::type Ogre::ConfigFile::SettingsMultiMap |
typedef map<String, SettingsMultiMap*>::type Ogre::ConfigFile::SettingsBySection |
Gets an iterator for stepping through all the keys / values in the file.
typedef map<String, SettingsMultiMap>::type Ogre::ConfigFile::SettingsBySection_ |
Ogre::ConfigFile::ConfigFile | ( | ) |
void Ogre::ConfigFile::load | ( | const String & | filename, |
const String & | separators = "\=" , |
||
bool | trimWhitespace = true |
||
) |
load from a filename (not using resource group locations)
void Ogre::ConfigFile::load | ( | const String & | filename, |
const String & | resourceGroup, | ||
const String & | separators = "\=" , |
||
bool | trimWhitespace = true |
||
) |
load from a filename (using resource group locations)
void Ogre::ConfigFile::load | ( | const DataStreamPtr & | stream, |
const String & | separators = "\=" , |
||
bool | trimWhitespace = true |
||
) |
load from a data stream
void Ogre::ConfigFile::loadDirect | ( | const String & | filename, |
const String & | separators = "\=" , |
||
bool | trimWhitespace = true |
||
) |
load from a filename (not using resource group locations)
void Ogre::ConfigFile::loadFromResourceSystem | ( | const String & | filename, |
const String & | resourceGroup, | ||
const String & | separators = "\=" , |
||
bool | trimWhitespace = true |
||
) |
load from a filename (using resource group locations)
String Ogre::ConfigFile::getSetting | ( | const String & | key, |
const String & | section = BLANKSTRING , |
||
const String & | defaultValue = BLANKSTRING |
||
) | const |
Gets the first setting from the file with the named key.
key | The name of the setting |
section | The name of the section it must be in (if any) |
defaultValue | The value to return if the setting is not found |
StringVector Ogre::ConfigFile::getMultiSetting | ( | const String & | key, |
const String & | section = BLANKSTRING |
||
) | const |
Gets all settings from the file with the named key.
SectionIterator Ogre::ConfigFile::getSectionIterator | ( | void | ) |
|
inline |
Get all the available settings grouped by sections.
References Ogre::BLANKSTRING.
SettingsIterator Ogre::ConfigFile::getSettingsIterator | ( | const String & | section = BLANKSTRING | ) |
const SettingsMultiMap& Ogre::ConfigFile::getSettings | ( | const String & | section = BLANKSTRING | ) | const |
Get all the available settings in a section.
void Ogre::ConfigFile::clear | ( | void | ) |
Clear the settings.