Changeset - r28008:ed6b6ea6330e
[Not reviewed]
master
0 3 0
Peter Nelson - 11 months ago 2023-10-10 18:25:57
peter1138@openttd.org
Codechange: Add CreateGroup/CreateItem methods for ini files.

This abstracts the internals a bit.
3 files changed with 32 insertions and 12 deletions:
0 comments (0 inline, 0 general)
src/ini_load.cpp
Show inline comments
 
@@ -107,6 +107,16 @@ IniItem &IniGroup::GetOrCreateItem(const
 
	}
 

	
 
	/* Item doesn't exist, make a new one. */
 
	return this->CreateItem(name);
 
}
 

	
 
/**
 
 * Create an item with the given name. This does not reuse an existing item of the same name.
 
 * @param name name of the item to create.
 
 * @return the created item.
 
 */
 
IniItem &IniGroup::CreateItem(const std::string &name)
 
{
 
	return *(new IniItem(this, name));
 
}
 

	
 
@@ -180,9 +190,19 @@ IniGroup *IniLoadFile::GetGroup(const st
 
	if (!create_new) return nullptr;
 

	
 
	/* otherwise make a new one */
 
	return &this->CreateGroup(name);
 
}
 

	
 
/**
 
 * Create an group with the given name. This does not reuse an existing group of the same name.
 
 * @param name name of the group to create.
 
 * @return the created group.
 
 */
 
IniGroup &IniLoadFile::CreateGroup(const std::string &name)
 
{
 
	IniGroup *group = new IniGroup(this, name);
 
	group->comment = "\n";
 
	return group;
 
	return *group;
 
}
 

	
 
/**
 
@@ -275,7 +295,7 @@ void IniLoadFile::LoadFromDisk(const std
 
				e--;
 
			}
 
			s++; // skip [
 
			group = new IniGroup(this, std::string(s, e - s));
 
			group = &this->CreateGroup(std::string(s, e - s));
 
			if (comment_size != 0) {
 
				group->comment.assign(comment, comment_size);
 
				comment_size = 0;
 
@@ -283,9 +303,9 @@ void IniLoadFile::LoadFromDisk(const std
 
		} else if (group != nullptr) {
 
			if (group->type == IGT_SEQUENCE) {
 
				/* A sequence group, use the line as item name without further interpretation. */
 
				IniItem *item = new IniItem(group, std::string(buffer, e - buffer));
 
				IniItem &item = group->CreateItem(std::string(buffer, e - buffer));
 
				if (comment_size) {
 
					item->comment.assign(comment, comment_size);
 
					item.comment.assign(comment, comment_size);
 
					comment_size = 0;
 
				}
 
				continue;
 
@@ -301,9 +321,9 @@ void IniLoadFile::LoadFromDisk(const std
 
			}
 

	
 
			/* it's an item in an existing group */
 
			IniItem *item = new IniItem(group, std::string(s, t - s));
 
			IniItem &item = group->CreateItem(std::string(s, t - s));
 
			if (comment_size != 0) {
 
				item->comment.assign(comment, comment_size);
 
				item.comment.assign(comment, comment_size);
 
				comment_size = 0;
 
			}
 

	
 
@@ -320,9 +340,9 @@ void IniLoadFile::LoadFromDisk(const std
 

	
 
			/* If the value was not quoted and empty, it must be nullptr */
 
			if (!quoted && e == t) {
 
				item->value.reset();
 
				item.value.reset();
 
			} else {
 
				item->value = StrMakeValid(std::string(t));
 
				item.value = StrMakeValid(std::string(t));
 
			}
 
		} else {
 
			/* it's an orphan item */
src/ini_type.h
Show inline comments
 
@@ -46,6 +46,7 @@ struct IniGroup {
 

	
 
	IniItem *GetItem(const std::string &name) const;
 
	IniItem &GetOrCreateItem(const std::string &name);
 
	IniItem &CreateItem(const std::string &name);
 
	void RemoveItem(const std::string &name);
 
	void Clear();
 
};
 
@@ -62,6 +63,7 @@ struct IniLoadFile {
 
	virtual ~IniLoadFile();
 

	
 
	IniGroup *GetGroup(const std::string &name, bool create_new = true);
 
	IniGroup &CreateGroup(const std::string &name);
 
	void RemoveGroup(const std::string &name);
 

	
 
	void LoadFromDisk(const std::string &filename, Subdirectory subdir);
src/settings.cpp
Show inline comments
 
@@ -1121,8 +1121,7 @@ static void AISaveConfig(IniFile &ini, c
 
			name = "none";
 
		}
 

	
 
		IniItem *item = new IniItem(group, name);
 
		item->SetValue(value);
 
		group->CreateItem(name).SetValue(value);
 
	}
 
}
 

	
 
@@ -1143,8 +1142,7 @@ static void GameSaveConfig(IniFile &ini,
 
		name = "none";
 
	}
 

	
 
	IniItem *item = new IniItem(group, name);
 
	item->SetValue(value);
 
	group->CreateItem(name).SetValue(value);
 
}
 

	
 
/**
0 comments (0 inline, 0 general)