Asset Processor: Remove gem loading from AP (#6488)
* AssetBuilder sends builder registration network message to AP Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com> * Add AP activating status message Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com> * First builder handles registration. Fixed deadlock caused by AP and AssetBuilder waiting on each other when registering by moving AP builder start code to a thread Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com> * Clean up external builder registration Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com> * Add thread description for builder manager idle thread Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com> * Remove gem loading Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com> * Clean up builder registration and remove unused functions Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com> * Remove PostActivate call from batch application since it will be called after builders are registered Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com> * Removal external builder dependency scanning since we no longer support builder dlls Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com> * Fix missing bus disconnect Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com> * Remove unused variable Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com> * Moved AP-AssetBuilder specific types into AssetBuilder.Static library. Also removed some unused/old code Signed-off-by: amzn-mike <80125227+amzn-mike@users.noreply.github.com>
This commit is contained in:
@@ -139,7 +139,7 @@ protected:
|
||||
void RegisterObjectForQuit(QObject* source, bool insertInFront = false);
|
||||
bool NeedRestart() const;
|
||||
void addRunningThread(AssetProcessor::ThreadWorker* thread);
|
||||
|
||||
|
||||
template<class BuilderClass>
|
||||
void RegisterInternalBuilder(const QString& builderName);
|
||||
|
||||
@@ -151,9 +151,6 @@ protected:
|
||||
bool m_duringStartup = true;
|
||||
AssetProcessorAZApplication m_frameworkApp;
|
||||
QCoreApplication* m_qApp = nullptr;
|
||||
|
||||
//! Get the list of external builder files for this asset processor
|
||||
void GetExternalBuilderFileList(QStringList& externalBuilderModules);
|
||||
|
||||
virtual void Reflect() = 0;
|
||||
virtual const char* GetLogBaseName() = 0;
|
||||
|
||||
Reference in New Issue
Block a user