mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-01 00:27:44 +00:00
51 lines
947 B
C
51 lines
947 B
C
![]() |
#ifndef EXPORTMGR_H
|
||
|
#define EXPORTMGR_H
|
||
|
|
||
|
#include "exporter.h"
|
||
|
#include "navmesh_exporter.h"
|
||
|
#include "obj_exporter.h"
|
||
|
#include "threadpool.h"
|
||
|
|
||
|
class ExportMgr
|
||
|
{
|
||
|
public:
|
||
|
ExportMgr( unsigned int maxJobs = 0 )
|
||
|
{
|
||
|
m_threadpool.addWorkers( maxJobs );
|
||
|
}
|
||
|
~ExportMgr()
|
||
|
{
|
||
|
waitForTasks();
|
||
|
}
|
||
|
|
||
|
void restart( bool cancel = false, unsigned int maxJobs = 0 )
|
||
|
{
|
||
|
if( cancel )
|
||
|
m_threadpool.cancel();
|
||
|
|
||
|
m_threadpool.complete();
|
||
|
|
||
|
m_threadpool.addWorkers( maxJobs );
|
||
|
}
|
||
|
|
||
|
void exportZone(const ExportedZone& zone, ExportFileType exportFileTypes)
|
||
|
{
|
||
|
m_threadpool.queue( [zone, exportFileTypes]()
|
||
|
{
|
||
|
if( exportFileTypes & ExportFileType::WavefrontObj )
|
||
|
ObjExporter::exportZone( zone );
|
||
|
|
||
|
if( exportFileTypes & ExportFileType::Navmesh )
|
||
|
NavmeshExporter::exportZone( zone );
|
||
|
} );
|
||
|
}
|
||
|
|
||
|
void waitForTasks()
|
||
|
{
|
||
|
m_threadpool.complete();
|
||
|
}
|
||
|
private:
|
||
|
ThreadPool m_threadpool;
|
||
|
};
|
||
|
|
||
|
#endif
|