You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
3.3 KiB
C++
80 lines
3.3 KiB
C++
/*
|
|
* Copyright (c) Contributors to the Open 3D Engine Project.
|
|
* For complete copyright and license terms please see the LICENSE at the root of this distribution.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "PlistDictionary.h"
|
|
|
|
#include <AzCore/JSON/document.h>
|
|
#include <AzCore/std/smart_ptr/unique_ptr.h>
|
|
|
|
namespace AzToolsFramework
|
|
{
|
|
class InstanceDataNode;
|
|
}
|
|
|
|
namespace ProjectSettingsTool
|
|
{
|
|
class Serializer
|
|
{
|
|
public:
|
|
Serializer(AzToolsFramework::InstanceDataNode* root, rapidjson::Document* doc, rapidjson::Value* jsonRoot = nullptr);
|
|
Serializer(AzToolsFramework::InstanceDataNode* root, AZStd::unique_ptr<PlistDictionary> dict);
|
|
// Sets Json document
|
|
void SetDocumentRoot(rapidjson::Document* doc);
|
|
// Sets Json root
|
|
void SetJsonRoot(rapidjson::Value* jsonRoot);
|
|
// Sets pList dictionary
|
|
void SetDocumentRoot(AZStd::unique_ptr<PlistDictionary> dict);
|
|
// Returns true if all properties in ui are equal to settings
|
|
bool UiEqualToSettings() const;
|
|
// Loads properties into the ui from the settings
|
|
void LoadFromSettings();
|
|
// Saves properties from the ui to the settings
|
|
void SaveToSettings();
|
|
bool UiEqualToJson(rapidjson::Value* root) const;
|
|
void LoadFromSettings(rapidjson::Value* root);
|
|
void SaveToSettings(rapidjson::Value* root);
|
|
|
|
|
|
protected:
|
|
bool UiEqualToJson(rapidjson::Value* root, AzToolsFramework::InstanceDataNode* node) const;
|
|
bool UiEqualToPlist(AzToolsFramework::InstanceDataNode* node) const;
|
|
bool UiEqualToPlistArray(AZ::rapidxml::xml_node<char>* array, AzToolsFramework::InstanceDataNode* node) const;
|
|
bool UiEqualToPlistImages(AzToolsFramework::InstanceDataNode* node) const;
|
|
void LoadFromSettings(rapidjson::Value* root, AzToolsFramework::InstanceDataNode* node);
|
|
void LoadFromSettings(AzToolsFramework::InstanceDataNode* node);
|
|
void LoadOrientations(AZ::rapidxml::xml_node<char>* array, AzToolsFramework::InstanceDataNode* node);
|
|
void SetDefaults(AzToolsFramework::InstanceDataNode& node, const AZ::Uuid& type);
|
|
void SetClassToDefaults(AzToolsFramework::InstanceDataNode* node);
|
|
void SaveToSettings(rapidjson::Value* root, AzToolsFramework::InstanceDataNode* node);
|
|
void SaveToSettings(AzToolsFramework::InstanceDataNode* node);
|
|
bool SaveOrientations(AZ::rapidxml::xml_node<char>* array, AzToolsFramework::InstanceDataNode* node);
|
|
void OverwriteImages(AzToolsFramework::InstanceDataNode* node);
|
|
|
|
// The RPE root relative to the document's root
|
|
AzToolsFramework::InstanceDataNode* m_root;
|
|
// The Json document if using Json for this RPE
|
|
rapidjson::Document* m_jsonDoc;
|
|
// The root of the json for this serializer
|
|
rapidjson::Value* m_jsonRoot;
|
|
// The pList Dictionary wrapper if using a pList for this RPE
|
|
AZStd::unique_ptr<PlistDictionary> m_plistDict;
|
|
|
|
private:
|
|
Serializer(AzToolsFramework::InstanceDataNode* root);
|
|
|
|
// Uuid for AZStd::string
|
|
const AZ::Uuid m_idString;
|
|
// Uuid for int
|
|
const AZ::Uuid m_idInt;
|
|
// Uuid for bool
|
|
const AZ::Uuid m_idBool;
|
|
};
|
|
} // ProjectSettingsTool
|