|
|
|
@ -15,6 +15,8 @@
|
|
|
|
|
#include <components/settings/settings.hpp>
|
|
|
|
|
#include <components/files/memorystream.hpp>
|
|
|
|
|
|
|
|
|
|
#include <components/sceneutil/workqueue.hpp>
|
|
|
|
|
|
|
|
|
|
#include <components/esm/globalmap.hpp>
|
|
|
|
|
|
|
|
|
|
#include "../mwbase/environment.hpp"
|
|
|
|
@ -95,52 +97,16 @@ namespace
|
|
|
|
|
namespace MWRender
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
GlobalMap::GlobalMap(osg::Group* root)
|
|
|
|
|
: mRoot(root)
|
|
|
|
|
, mWidth(0)
|
|
|
|
|
, mHeight(0)
|
|
|
|
|
, mMinX(0), mMaxX(0)
|
|
|
|
|
, mMinY(0), mMaxY(0)
|
|
|
|
|
|
|
|
|
|
class CreateMapWorkItem : public SceneUtil::WorkItem
|
|
|
|
|
{
|
|
|
|
|
mCellSize = Settings::Manager::getInt("global map cell size", "Map");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GlobalMap::~GlobalMap()
|
|
|
|
|
public:
|
|
|
|
|
CreateMapWorkItem(int width, int height, int minX, int minY, int maxX, int maxY, int cellSize, const MWWorld::Store<ESM::Land>& landStore)
|
|
|
|
|
: mWidth(width), mHeight(height), mMinX(minX), mMinY(minY), mMaxX(maxX), mMaxY(maxY), mCellSize(cellSize), mLandStore(landStore)
|
|
|
|
|
{
|
|
|
|
|
for (CameraVector::iterator it = mCamerasPendingRemoval.begin(); it != mCamerasPendingRemoval.end(); ++it)
|
|
|
|
|
removeCamera(*it);
|
|
|
|
|
for (CameraVector::iterator it = mActiveCameras.begin(); it != mActiveCameras.end(); ++it)
|
|
|
|
|
removeCamera(*it);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GlobalMap::render (Loading::Listener* loadingListener)
|
|
|
|
|
virtual void doWork()
|
|
|
|
|
{
|
|
|
|
|
const MWWorld::ESMStore &esmStore =
|
|
|
|
|
MWBase::Environment::get().getWorld()->getStore();
|
|
|
|
|
|
|
|
|
|
// get the size of the world
|
|
|
|
|
MWWorld::Store<ESM::Cell>::iterator it = esmStore.get<ESM::Cell>().extBegin();
|
|
|
|
|
for (; it != esmStore.get<ESM::Cell>().extEnd(); ++it)
|
|
|
|
|
{
|
|
|
|
|
if (it->getGridX() < mMinX)
|
|
|
|
|
mMinX = it->getGridX();
|
|
|
|
|
if (it->getGridX() > mMaxX)
|
|
|
|
|
mMaxX = it->getGridX();
|
|
|
|
|
if (it->getGridY() < mMinY)
|
|
|
|
|
mMinY = it->getGridY();
|
|
|
|
|
if (it->getGridY() > mMaxY)
|
|
|
|
|
mMaxY = it->getGridY();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mWidth = mCellSize*(mMaxX-mMinX+1);
|
|
|
|
|
mHeight = mCellSize*(mMaxY-mMinY+1);
|
|
|
|
|
|
|
|
|
|
loadingListener->loadingOn();
|
|
|
|
|
loadingListener->setLabel("Creating map");
|
|
|
|
|
loadingListener->setProgressRange((mMaxX-mMinX+1) * (mMaxY-mMinY+1));
|
|
|
|
|
loadingListener->setProgress(0);
|
|
|
|
|
|
|
|
|
|
osg::ref_ptr<osg::Image> image = new osg::Image;
|
|
|
|
|
image->allocateImage(mWidth, mHeight, 1, GL_RGB, GL_UNSIGNED_BYTE);
|
|
|
|
|
unsigned char* data = image->data();
|
|
|
|
@ -153,7 +119,7 @@ namespace MWRender
|
|
|
|
|
{
|
|
|
|
|
for (int y = mMinY; y <= mMaxY; ++y)
|
|
|
|
|
{
|
|
|
|
|
const ESM::Land* land = esmStore.get<ESM::Land>().search (x,y);
|
|
|
|
|
const ESM::Land* land = mLandStore.search (x,y);
|
|
|
|
|
|
|
|
|
|
for (int cellY=0; cellY<mCellSize; ++cellY)
|
|
|
|
|
{
|
|
|
|
@ -207,7 +173,6 @@ namespace MWRender
|
|
|
|
|
alphaData[texelY * mWidth+ texelX] = (y2 < 0) ? static_cast<unsigned char>(0) : static_cast<unsigned char>(255);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
loadingListener->increaseProgress();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -227,9 +192,78 @@ namespace MWRender
|
|
|
|
|
mAlphaTexture->setImage(alphaImage);
|
|
|
|
|
mAlphaTexture->setResizeNonPowerOfTwoHint(false);
|
|
|
|
|
|
|
|
|
|
clear();
|
|
|
|
|
mOverlayImage = new osg::Image;
|
|
|
|
|
mOverlayImage->allocateImage(mWidth, mHeight, 1, GL_RGBA, GL_UNSIGNED_BYTE);
|
|
|
|
|
assert(mOverlayImage->isDataContiguous());
|
|
|
|
|
|
|
|
|
|
memset(mOverlayImage->data(), 0, mOverlayImage->getTotalSizeInBytes());
|
|
|
|
|
|
|
|
|
|
mOverlayTexture = new osg::Texture2D;
|
|
|
|
|
mOverlayTexture->setWrap(osg::Texture::WRAP_S, osg::Texture::CLAMP_TO_EDGE);
|
|
|
|
|
mOverlayTexture->setWrap(osg::Texture::WRAP_T, osg::Texture::CLAMP_TO_EDGE);
|
|
|
|
|
mOverlayTexture->setFilter(osg::Texture::MIN_FILTER, osg::Texture::LINEAR);
|
|
|
|
|
mOverlayTexture->setFilter(osg::Texture::MAG_FILTER, osg::Texture::LINEAR);
|
|
|
|
|
mOverlayTexture->setResizeNonPowerOfTwoHint(false);
|
|
|
|
|
mOverlayTexture->setInternalFormat(GL_RGBA);
|
|
|
|
|
mOverlayTexture->setTextureSize(mWidth, mHeight);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int mWidth, mHeight;
|
|
|
|
|
int mMinX, mMinY, mMaxX, mMaxY;
|
|
|
|
|
int mCellSize;
|
|
|
|
|
const MWWorld::Store<ESM::Land>& mLandStore;
|
|
|
|
|
|
|
|
|
|
osg::ref_ptr<osg::Texture2D> mBaseTexture;
|
|
|
|
|
osg::ref_ptr<osg::Texture2D> mAlphaTexture;
|
|
|
|
|
|
|
|
|
|
osg::ref_ptr<osg::Image> mOverlayImage;
|
|
|
|
|
osg::ref_ptr<osg::Texture2D> mOverlayTexture;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
GlobalMap::GlobalMap(osg::Group* root, SceneUtil::WorkQueue* workQueue)
|
|
|
|
|
: mRoot(root)
|
|
|
|
|
, mWorkQueue(workQueue)
|
|
|
|
|
, mWidth(0)
|
|
|
|
|
, mHeight(0)
|
|
|
|
|
, mMinX(0), mMaxX(0)
|
|
|
|
|
, mMinY(0), mMaxY(0)
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
mCellSize = Settings::Manager::getInt("global map cell size", "Map");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GlobalMap::~GlobalMap()
|
|
|
|
|
{
|
|
|
|
|
for (CameraVector::iterator it = mCamerasPendingRemoval.begin(); it != mCamerasPendingRemoval.end(); ++it)
|
|
|
|
|
removeCamera(*it);
|
|
|
|
|
for (CameraVector::iterator it = mActiveCameras.begin(); it != mActiveCameras.end(); ++it)
|
|
|
|
|
removeCamera(*it);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GlobalMap::render ()
|
|
|
|
|
{
|
|
|
|
|
const MWWorld::ESMStore &esmStore =
|
|
|
|
|
MWBase::Environment::get().getWorld()->getStore();
|
|
|
|
|
|
|
|
|
|
// get the size of the world
|
|
|
|
|
MWWorld::Store<ESM::Cell>::iterator it = esmStore.get<ESM::Cell>().extBegin();
|
|
|
|
|
for (; it != esmStore.get<ESM::Cell>().extEnd(); ++it)
|
|
|
|
|
{
|
|
|
|
|
if (it->getGridX() < mMinX)
|
|
|
|
|
mMinX = it->getGridX();
|
|
|
|
|
if (it->getGridX() > mMaxX)
|
|
|
|
|
mMaxX = it->getGridX();
|
|
|
|
|
if (it->getGridY() < mMinY)
|
|
|
|
|
mMinY = it->getGridY();
|
|
|
|
|
if (it->getGridY() > mMaxY)
|
|
|
|
|
mMaxY = it->getGridY();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
mWidth = mCellSize*(mMaxX-mMinX+1);
|
|
|
|
|
mHeight = mCellSize*(mMaxY-mMinY+1);
|
|
|
|
|
|
|
|
|
|
loadingListener->loadingOff();
|
|
|
|
|
mWorkItem = new CreateMapWorkItem(mWidth, mHeight, mMinX, mMinY, mMaxX, mMaxY, mCellSize, esmStore.get<ESM::Land>());
|
|
|
|
|
mWorkQueue->addWorkItem(mWorkItem);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GlobalMap::worldPosToImageSpace(float x, float z, float& imageX, float& imageY)
|
|
|
|
@ -334,6 +368,8 @@ namespace MWRender
|
|
|
|
|
|
|
|
|
|
void GlobalMap::exploreCell(int cellX, int cellY, osg::ref_ptr<osg::Texture2D> localMapTexture)
|
|
|
|
|
{
|
|
|
|
|
ensureLoaded();
|
|
|
|
|
|
|
|
|
|
if (!localMapTexture)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
@ -348,25 +384,9 @@ namespace MWRender
|
|
|
|
|
|
|
|
|
|
void GlobalMap::clear()
|
|
|
|
|
{
|
|
|
|
|
if (!mOverlayImage)
|
|
|
|
|
{
|
|
|
|
|
mOverlayImage = new osg::Image;
|
|
|
|
|
mOverlayImage->allocateImage(mWidth, mHeight, 1, GL_RGBA, GL_UNSIGNED_BYTE);
|
|
|
|
|
assert(mOverlayImage->isDataContiguous());
|
|
|
|
|
}
|
|
|
|
|
memset(mOverlayImage->data(), 0, mOverlayImage->getTotalSizeInBytes());
|
|
|
|
|
ensureLoaded();
|
|
|
|
|
|
|
|
|
|
if (!mOverlayTexture)
|
|
|
|
|
{
|
|
|
|
|
mOverlayTexture = new osg::Texture2D;
|
|
|
|
|
mOverlayTexture->setWrap(osg::Texture::WRAP_S, osg::Texture::CLAMP_TO_EDGE);
|
|
|
|
|
mOverlayTexture->setWrap(osg::Texture::WRAP_T, osg::Texture::CLAMP_TO_EDGE);
|
|
|
|
|
mOverlayTexture->setFilter(osg::Texture::MIN_FILTER, osg::Texture::LINEAR);
|
|
|
|
|
mOverlayTexture->setFilter(osg::Texture::MAG_FILTER, osg::Texture::LINEAR);
|
|
|
|
|
mOverlayTexture->setResizeNonPowerOfTwoHint(false);
|
|
|
|
|
mOverlayTexture->setInternalFormat(GL_RGBA);
|
|
|
|
|
mOverlayTexture->setTextureSize(mWidth, mHeight);
|
|
|
|
|
}
|
|
|
|
|
memset(mOverlayImage->data(), 0, mOverlayImage->getTotalSizeInBytes());
|
|
|
|
|
|
|
|
|
|
mPendingImageDest.clear();
|
|
|
|
|
|
|
|
|
@ -377,6 +397,8 @@ namespace MWRender
|
|
|
|
|
|
|
|
|
|
void GlobalMap::write(ESM::GlobalMap& map)
|
|
|
|
|
{
|
|
|
|
|
ensureLoaded();
|
|
|
|
|
|
|
|
|
|
map.mBounds.mMinX = mMinX;
|
|
|
|
|
map.mBounds.mMaxX = mMaxX;
|
|
|
|
|
map.mBounds.mMinY = mMinY;
|
|
|
|
@ -417,6 +439,8 @@ namespace MWRender
|
|
|
|
|
|
|
|
|
|
void GlobalMap::read(ESM::GlobalMap& map)
|
|
|
|
|
{
|
|
|
|
|
ensureLoaded();
|
|
|
|
|
|
|
|
|
|
const ESM::GlobalMap::Bounds& bounds = map.mBounds;
|
|
|
|
|
|
|
|
|
|
if (bounds.mMaxX-bounds.mMinX < 0)
|
|
|
|
@ -513,14 +537,33 @@ namespace MWRender
|
|
|
|
|
|
|
|
|
|
osg::ref_ptr<osg::Texture2D> GlobalMap::getBaseTexture()
|
|
|
|
|
{
|
|
|
|
|
ensureLoaded();
|
|
|
|
|
return mBaseTexture;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
osg::ref_ptr<osg::Texture2D> GlobalMap::getOverlayTexture()
|
|
|
|
|
{
|
|
|
|
|
ensureLoaded();
|
|
|
|
|
return mOverlayTexture;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GlobalMap::ensureLoaded()
|
|
|
|
|
{
|
|
|
|
|
if (mWorkItem)
|
|
|
|
|
{
|
|
|
|
|
mWorkItem->waitTillDone();
|
|
|
|
|
|
|
|
|
|
mOverlayImage = mWorkItem->mOverlayImage;
|
|
|
|
|
mBaseTexture = mWorkItem->mBaseTexture;
|
|
|
|
|
mAlphaTexture = mWorkItem->mAlphaTexture;
|
|
|
|
|
mOverlayTexture = mWorkItem->mOverlayTexture;
|
|
|
|
|
|
|
|
|
|
requestOverlayTextureUpdate(0, 0, mWidth, mHeight, osg::ref_ptr<osg::Texture2D>(), true, false);
|
|
|
|
|
|
|
|
|
|
mWorkItem = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void GlobalMap::markForRemoval(osg::Camera *camera)
|
|
|
|
|
{
|
|
|
|
|
CameraVector::iterator found = std::find(mActiveCameras.begin(), mActiveCameras.end(), camera);
|
|
|
|
@ -549,6 +592,7 @@ namespace MWRender
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ensureLoaded();
|
|
|
|
|
mOverlayImage->copySubImage(imageDest.mX, imageDest.mY, 0, imageDest.mImage);
|
|
|
|
|
|
|
|
|
|
it = mPendingImageDest.erase(it);
|
|
|
|
|