| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235 |
- //
- // Copyright (c) 2014-2016 THUNDERBEAST GAMES LLC
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- #include <Atomic/Core/Variant.h>
- #include <Atomic/IO/Log.h>
- #include <Atomic/IO/File.h>
- #include <Atomic/Resource/ResourceCache.h>
- #include <Atomic/Resource/Image.h>
- #include <AtomicNET/NETScript/NETScriptEvents.h>
- #include <AtomicNET/NETScript/CSComponentAssembly.h>
- #include "Asset.h"
- #include "AssetDatabase.h"
- #include "../NETTools/AtomicNETService.h"
- #include "NETAssemblyImporter.h"
- namespace ToolCore
- {
- NETAssemblyImporter::NETAssemblyImporter(Context* context, Asset *asset) : AssetImporter(context, asset)
- {
- requiresCacheFile_ = true;
- resultHandler_ = new NETAssemblyImporterResultHandler(context, this);
- }
- NETAssemblyImporter::~NETAssemblyImporter()
- {
- }
- void NETAssemblyImporter::SetDefaults()
- {
- AssetImporter::SetDefaults();
- }
- void NETAssemblyImporter::HandleResult(unsigned cmdID, const VariantMap& cmdResult)
- {
- const String& command = cmdResult["command"]->GetString();
- if (command == "parse")
- {
- // Assembly parse results
- const String& resultJSON = cmdResult["result"]->GetString();
- assemblyJSON_.SetType(JSON_NULL);
- JSONFile::ParseJSON(resultJSON, assemblyJSON_);
- if (!assemblyJSON_.IsObject())
- {
- ATOMIC_LOGERRORF("NETAssemblyImporter::HandleResult - Unable to parse assembly json for %s", asset_->GetPath().CString());
- }
- else
- {
- if (!SaveAssemblyCacheFile())
- {
- return;
- }
- if (!assemblyJSON_.IsObject())
- {
- ATOMIC_LOGERRORF("NETAssemblyImporter::HandleResult - Unable to parse assembly json for %s", asset_->GetPath().CString());
- }
- using namespace CSComponentAssemblyChanged;
- VariantMap assemblyChangedEventData;
- assemblyChangedEventData[P_RESOURCE] = asset_->GetResource();
- assemblyChangedEventData[P_ASSEMBLYPATH] = asset_->GetPath();
- SendEvent(E_CSCOMPONENTASSEMBLYCHANGED, assemblyChangedEventData);
-
- }
-
- }
- }
- bool NETAssemblyImporter::SaveAssemblyCacheFile()
- {
- if (!assemblyJSON_.IsObject())
- return false;
- SharedPtr<JSONFile> jsonFile(new JSONFile(context_));
- JSONValue& root = jsonFile->GetRoot();
- root = assemblyJSON_;
- jsonFile->SaveFile(asset_->GetCachePath());
- ResourceCache* cache = GetSubsystem<ResourceCache>();
- CSComponentAssembly* assemblyFile = cache->GetResource<CSComponentAssembly>(asset_->GetCachePath());
- if (!assemblyFile)
- {
- ATOMIC_LOGERRORF("NETAssemblyImporter::Import - invalid cached assembly json importing %s", asset_->GetPath().CString());
- return false;
- }
- asset_->Save();
- return true;
- }
- bool NETAssemblyImporter::Import()
- {
- AtomicNETService* service = GetSubsystem<AtomicNETService>();
- if (!service)
- {
- if (assemblyJSON_.IsObject())
- {
- if (!SaveAssemblyCacheFile())
- return false;
- ATOMIC_LOGINFOF("NETAssemblyImporter::Import - AtomicNETService process unavailable, using cached assembly JSON for %s", asset_->GetPath().CString());
- return true;
- }
- else
- {
- ATOMIC_LOGERRORF("NETAssemblyImporter::Import - Unable to get AtomicNETService subsystem and no cached assembly json importing %s", asset_->GetPath().CString());
- return false;
- }
- }
- assemblyJSON_.SetType(JSON_NULL);
- VariantMap cmdMap;
- cmdMap["command"] = "parse";
- cmdMap["assemblyPath"] = asset_->GetPath();
- service->QueueCommand(resultHandler_, cmdMap);
- return true;
- }
- bool NETAssemblyImporter::LoadSettingsInternal(JSONValue& jsonRoot)
- {
- if (!AssetImporter::LoadSettingsInternal(jsonRoot))
- return false;
- JSONValue import = jsonRoot.Get("NETAssemblyImporter");
- assemblyJSON_.SetType(JSON_NULL);
- const JSONValue& ajson = import.Get("AssemblyJSON");
- if (ajson.IsObject())
- {
- assemblyJSON_ = ajson.GetObject();
- ResourceCache* cache = GetSubsystem<ResourceCache>();
- cache->GetResource<CSComponentAssembly>(asset_->GetCachePath());
- }
- return true;
- }
- bool NETAssemblyImporter::SaveSettingsInternal(JSONValue& jsonRoot)
- {
- if (!AssetImporter::SaveSettingsInternal(jsonRoot))
- return false;
- JSONValue import;
- import.SetType(JSON_OBJECT);
- import.Set("AssemblyJSON", assemblyJSON_);
- jsonRoot.Set("NETAssemblyImporter", import);
- return true;
- }
- Resource* NETAssemblyImporter::GetResource(const String& typeName)
- {
- ResourceCache* cache = GetSubsystem<ResourceCache>();
- CSComponentAssembly* assemblyFile = cache->GetResource<CSComponentAssembly>(asset_->GetCachePath());
- return assemblyFile;
- }
- void NETAssemblyImporter::GetAssetCacheMap(HashMap<String, String>& assetMap)
- {
- if (asset_.Null())
- return;
- String assetPath = asset_->GetRelativePath().ToLower();
- String cachePath = asset_->GetGUID().ToLower();
- // Default is load node xml
- assetMap["CSComponentAssembly;" + assetPath] = cachePath;
- }
- // NETAssemblyImporterClient
- NETAssemblyImporterResultHandler::NETAssemblyImporterResultHandler(Context* context, NETAssemblyImporter* importer) :
- IPCResultHandler(context),
- importer_(importer)
- {
- }
- NETAssemblyImporterResultHandler::~NETAssemblyImporterResultHandler()
- {
- }
- void NETAssemblyImporterResultHandler::HandleResult(unsigned cmdID, const VariantMap& cmdResult)
- {
- importer_->HandleResult(cmdID, cmdResult);
- }
- }
|