git mv Code\Sandbox\Plugins Code/Editor/Plugins
Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
@@ -0,0 +1,113 @@
|
||||
/*
|
||||
* Copyright (c) Contributors to the Open 3D Engine Project
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "Platforms.h"
|
||||
#include "PlistDictionary.h"
|
||||
|
||||
#include <AzCore/JSON/document.h>
|
||||
#include <AzCore/Outcome/Outcome.h>
|
||||
#include <AzCore/std/smart_ptr/unique_ptr.h>
|
||||
#include <AzCore/std/string/string.h>
|
||||
|
||||
#include <AzFramework/StringFunc/StringFunc.h>
|
||||
|
||||
|
||||
namespace ProjectSettingsTool
|
||||
{
|
||||
|
||||
struct SettingsError
|
||||
{
|
||||
SettingsError(const AZStd::string& error, const AZStd::string& reason);
|
||||
|
||||
// The error that occurred
|
||||
AZStd::string m_error;
|
||||
// The reason the error occurred
|
||||
AZStd::string m_reason;
|
||||
};
|
||||
|
||||
// Loads, saves, and provides access to all of the project settings files
|
||||
class ProjectSettingsContainer
|
||||
{
|
||||
public:
|
||||
typedef AZStd::pair<PlatformId, AZStd::string> PlatformAndPath;
|
||||
typedef AZStd::vector<PlatformAndPath> PlistInitVector;
|
||||
|
||||
template<class DocType>
|
||||
struct PlatformSettings
|
||||
{
|
||||
// File path to document
|
||||
AZStd::string m_path;
|
||||
// Raw string loaded from file
|
||||
AZStd::string m_rawData;
|
||||
// The document itself
|
||||
AZStd::unique_ptr<DocType> m_document;
|
||||
|
||||
};
|
||||
|
||||
using JsonSettings = PlatformSettings<rapidjson::Document>;
|
||||
using PlistSettings = PlatformSettings<AZ::rapidxml::xml_document<char>>;
|
||||
|
||||
// Constructs the main manager of a document
|
||||
ProjectSettingsContainer(const AZStd::string& projectJsonFileName, PlistInitVector& plistPaths);
|
||||
|
||||
// Used to destroy valueDoesNotExist
|
||||
~ProjectSettingsContainer();
|
||||
|
||||
// Returns the PlistSettings for given platform
|
||||
PlistSettings* GetPlistSettingsForPlatform(const Platform& plat);
|
||||
// Returns true if PlistSettings are found for platform
|
||||
bool IsPlistPlatform(const Platform& plat);
|
||||
|
||||
// Gets the earliest error not seen
|
||||
AZ::Outcome<void, SettingsError> GetError();
|
||||
// Save settings for given platform
|
||||
void SavePlatformData(const Platform& plat);
|
||||
// Saves project.json to disk
|
||||
void SaveProjectJsonData();
|
||||
// Reloads Project.json from disk
|
||||
void ReloadProjectJsonData();
|
||||
// Save all pLists back to disk
|
||||
void SavePlistsData();
|
||||
// Save platform's plist data back to disk
|
||||
void SavePlistData(const Platform& plat);
|
||||
// Reloads all plists from disk
|
||||
void ReloadPlistData();
|
||||
// Returns a reference to the project.json Document
|
||||
rapidjson::Document& GetProjectJsonDocument();
|
||||
// Gets reference to value in project.json
|
||||
// returns null type if not found
|
||||
AZ::Outcome<rapidjson::Value*, void> GetProjectJsonValue(const char* key);
|
||||
|
||||
AZStd::unique_ptr<PlistDictionary> GetPlistDictionary(const Platform& plat);
|
||||
|
||||
// Returns the allocator used by ProjectJson
|
||||
rapidjson::MemoryPoolAllocator<rapidjson::CrtAllocator>& GetProjectJsonAllocator();
|
||||
|
||||
static const char* GetFailedLoadingPlistText();
|
||||
|
||||
|
||||
protected:
|
||||
// Loads project.json from disk
|
||||
void LoadProjectJsonData();
|
||||
// Loads info.plist from filePath into given document
|
||||
void LoadPlist(PlistSettings& plistSettings);
|
||||
void SavePlist(PlistSettings& plistSettings);
|
||||
|
||||
// Errors that have occurred
|
||||
AZStd::queue<SettingsError> m_errors;
|
||||
// The project.json document
|
||||
JsonSettings m_projectJson;
|
||||
// A map to all of the loaded pLists
|
||||
AZStd::unordered_map<PlatformId, PlistSettings> m_pListsMap;
|
||||
|
||||
|
||||
private:
|
||||
AZ_DISABLE_COPY_MOVE(ProjectSettingsContainer);
|
||||
};
|
||||
} // namespace ProjectSettingsTool
|
||||
Reference in New Issue
Block a user