summaryrefslogblamecommitdiffstats
path: root/Tools/QtBiomeVisualiser/RegionLoader.h
blob: 5a993f5ca44705b1b1bb70e452f6cedb8203276e (plain) (tree)

















































                                                                                                     
#pragma once

#include <QObject>
#include <QRunnable>
#include <memory>




// fwd:
class Region;
typedef std::shared_ptr<Region> RegionPtr;

class ChunkSource;
typedef std::shared_ptr<ChunkSource> ChunkSourcePtr;





class RegionLoader :
	public QObject,
	public QRunnable
{
	Q_OBJECT

public:
	RegionLoader(int a_RegionX, int a_RegionZ, RegionPtr a_Region, ChunkSourcePtr a_ChunkSource);
	virtual ~RegionLoader() {}

signals:
	void loaded(int a_RegionX, int a_RegionZ);

protected:
	virtual void run() override;

private:
	/** Coords of the region to be loaded. */
	int m_RegionX, m_RegionZ;

	/** The region to be loaded. */
	RegionPtr m_Region;

	/** The chunk source to be used for individual chunks within the region. */
	ChunkSourcePtr m_ChunkSource;
};