Skip to content
Snippets Groups Projects
Commit 5b7ccc40 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Speed up world map

parent ab85624b
No related branches found
No related tags found
No related merge requests found
...@@ -1607,7 +1607,14 @@ void LLFloaterWorldMap::updateSims(bool found_null_sim) ...@@ -1607,7 +1607,14 @@ void LLFloaterWorldMap::updateSims(bool found_null_sim)
S32 num_results = 0; S32 num_results = 0;
std::vector<std::pair <U64, LLSimInfo*> > sim_info_vec(LLWorldMap::getInstanceFast()->getRegionMap().begin(), LLWorldMap::getInstanceFast()->getRegionMap().end()); const auto& region_map = LLWorldMap::getInstanceFast()->getRegionMap();
std::vector<std::pair <U64, LLSimInfo*> > sim_info_vec;
sim_info_vec.reserve(region_map.size());
for (const auto& region_pair : region_map)
{
sim_info_vec.emplace_back(region_pair.first, region_pair.second.get());
}
std::sort(sim_info_vec.begin(), sim_info_vec.end(), SortRegionNames()); std::sort(sim_info_vec.begin(), sim_info_vec.end(), SortRegionNames());
for (std::vector<std::pair <U64, LLSimInfo*> >::const_iterator it = sim_info_vec.begin(); it != sim_info_vec.end(); ++it) for (std::vector<std::pair <U64, LLSimInfo*> >::const_iterator it = sim_info_vec.begin(); it != sim_info_vec.end(); ++it)
...@@ -1676,7 +1683,7 @@ void LLFloaterWorldMap::onCommitSearchResult() ...@@ -1676,7 +1683,7 @@ void LLFloaterWorldMap::onCommitSearchResult()
for (const auto& sim_info_pair : LLWorldMap::getInstanceFast()->getRegionMap()) for (const auto& sim_info_pair : LLWorldMap::getInstanceFast()->getRegionMap())
{ {
LLSimInfo* info = sim_info_pair.second; LLSimInfo* info = sim_info_pair.second.get();
if (info->isName(sim_name)) if (info->isName(sim_name))
{ {
......
...@@ -262,7 +262,6 @@ void LLWorldMap::reset() ...@@ -262,7 +262,6 @@ void LLWorldMap::reset()
clearSimFlags(); // Clear the block info flags array clearSimFlags(); // Clear the block info flags array
// Finally, clear the region map itself // Finally, clear the region map itself
for_each(mSimInfoMap.begin(), mSimInfoMap.end(), DeletePairedPointer());
mSimInfoMap.clear(); mSimInfoMap.clear();
} }
...@@ -277,7 +276,7 @@ bool LLWorldMap::clearItems(bool force) ...@@ -277,7 +276,7 @@ bool LLWorldMap::clearItems(bool force)
LLSimInfo* sim_info = NULL; LLSimInfo* sim_info = NULL;
for (sim_info_map_t::iterator it = mSimInfoMap.begin(); it != mSimInfoMap.end(); ++it) for (sim_info_map_t::iterator it = mSimInfoMap.begin(); it != mSimInfoMap.end(); ++it)
{ {
sim_info = it->second; sim_info = it->second.get();
if (sim_info) if (sim_info)
{ {
sim_info->clearItems(); sim_info->clearItems();
...@@ -299,7 +298,7 @@ void LLWorldMap::clearImageRefs() ...@@ -299,7 +298,7 @@ void LLWorldMap::clearImageRefs()
LLSimInfo* sim_info = NULL; LLSimInfo* sim_info = NULL;
for (sim_info_map_t::iterator it = mSimInfoMap.begin(); it != mSimInfoMap.end(); ++it) for (sim_info_map_t::iterator it = mSimInfoMap.begin(); it != mSimInfoMap.end(); ++it)
{ {
sim_info = it->second; sim_info = it->second.get();
if (sim_info) if (sim_info)
{ {
sim_info->clearImage(); sim_info->clearImage();
...@@ -316,9 +315,8 @@ void LLWorldMap::clearSimFlags() ...@@ -316,9 +315,8 @@ void LLWorldMap::clearSimFlags()
LLSimInfo* LLWorldMap::createSimInfoFromHandle(const U64 handle) LLSimInfo* LLWorldMap::createSimInfoFromHandle(const U64 handle)
{ {
LLSimInfo* sim_info = new LLSimInfo(handle); auto ret = mSimInfoMap.insert_or_assign(handle, std::make_unique<LLSimInfo>(handle));
mSimInfoMap[handle] = sim_info; return ret.first->second.get();
return sim_info;
} }
void LLWorldMap::equalizeBoostLevels() void LLWorldMap::equalizeBoostLevels()
...@@ -338,7 +336,7 @@ LLSimInfo* LLWorldMap::simInfoFromHandle(const U64 handle) ...@@ -338,7 +336,7 @@ LLSimInfo* LLWorldMap::simInfoFromHandle(const U64 handle)
sim_info_map_t::iterator it = mSimInfoMap.find(handle); sim_info_map_t::iterator it = mSimInfoMap.find(handle);
if (it != mSimInfoMap.end()) if (it != mSimInfoMap.end())
{ {
return it->second; return it->second.get();
} }
U32 x = 0, y = 0; U32 x = 0, y = 0;
from_region_handle(handle, &x, &y); from_region_handle(handle, &x, &y);
...@@ -348,7 +346,7 @@ LLSimInfo* LLWorldMap::simInfoFromHandle(const U64 handle) ...@@ -348,7 +346,7 @@ LLSimInfo* LLWorldMap::simInfoFromHandle(const U64 handle)
U32 checkRegionX, checkRegionY; U32 checkRegionX, checkRegionY;
from_region_handle(sim_info_pair.first, &checkRegionX, &checkRegionY); from_region_handle(sim_info_pair.first, &checkRegionX, &checkRegionY);
LLSimInfo* info = sim_info_pair.second; LLSimInfo* info = sim_info_pair.second.get();
if (x >= checkRegionX && x < (checkRegionX + info->getSizeX()) && if (x >= checkRegionX && x < (checkRegionX + info->getSizeX()) &&
y >= checkRegionY && y < (checkRegionY + info->getSizeY())) y >= checkRegionY && y < (checkRegionY + info->getSizeY()))
{ {
...@@ -367,7 +365,7 @@ LLSimInfo* LLWorldMap::simInfoFromName(const std::string& sim_name) ...@@ -367,7 +365,7 @@ LLSimInfo* LLWorldMap::simInfoFromName(const std::string& sim_name)
// Iterate through the entire sim info map and compare the name // Iterate through the entire sim info map and compare the name
for (const auto& sim_info_pair : mSimInfoMap) for (const auto& sim_info_pair : mSimInfoMap)
{ {
auto temp_sim_info = sim_info_pair.second; auto temp_sim_info = sim_info_pair.second.get();
if (temp_sim_info && temp_sim_info->isName(sim_name) ) if (temp_sim_info && temp_sim_info->isName(sim_name) )
{ {
sim_info = temp_sim_info; sim_info = temp_sim_info;
...@@ -606,7 +604,7 @@ void LLWorldMap::dropImagePriorities() ...@@ -606,7 +604,7 @@ void LLWorldMap::dropImagePriorities()
// Same for the "land for sale" tiles per region // Same for the "land for sale" tiles per region
for (sim_info_map_t::iterator it = mSimInfoMap.begin(); it != mSimInfoMap.end(); ++it) for (sim_info_map_t::iterator it = mSimInfoMap.begin(); it != mSimInfoMap.end(); ++it)
{ {
LLSimInfo* info = it->second; LLSimInfo* info = it->second.get();
info->dropImagePriority(); info->dropImagePriority();
} }
} }
...@@ -657,7 +655,7 @@ void LLWorldMap::dump() ...@@ -657,7 +655,7 @@ void LLWorldMap::dump()
LL_INFOS("WorldMap") << "LLWorldMap::dump()" << LL_ENDL; LL_INFOS("WorldMap") << "LLWorldMap::dump()" << LL_ENDL;
for (sim_info_map_t::iterator it = mSimInfoMap.begin(); it != mSimInfoMap.end(); ++it) for (sim_info_map_t::iterator it = mSimInfoMap.begin(); it != mSimInfoMap.end(); ++it)
{ {
LLSimInfo* info = it->second; LLSimInfo* info = it->second.get();
if (info) if (info)
{ {
info->dump(); info->dump();
......
...@@ -216,7 +216,7 @@ class LLWorldMap final : public LLSingleton<LLWorldMap> ...@@ -216,7 +216,7 @@ class LLWorldMap final : public LLSingleton<LLWorldMap>
void reloadItems(bool force = false); // Reload the items (people, hub, etc...) void reloadItems(bool force = false); // Reload the items (people, hub, etc...)
// Region Map access // Region Map access
typedef std::map<U64, LLSimInfo*> sim_info_map_t; typedef absl::flat_hash_map<U64, std::unique_ptr<LLSimInfo>> sim_info_map_t;
const LLWorldMap::sim_info_map_t& getRegionMap() const { return mSimInfoMap; } const LLWorldMap::sim_info_map_t& getRegionMap() const { return mSimInfoMap; }
void updateRegions(S32 x0, S32 y0, S32 x1, S32 y1); // Requests region info for a rectangle of regions (in grid coordinates) void updateRegions(S32 x0, S32 y0, S32 x1, S32 y1); // Requests region info for a rectangle of regions (in grid coordinates)
......
...@@ -351,7 +351,7 @@ void LLWorldMapView::draw() ...@@ -351,7 +351,7 @@ void LLWorldMapView::draw()
for (const auto& sim_info_pair : LLWorldMap::getInstanceFast()->getRegionMap()) for (const auto& sim_info_pair : LLWorldMap::getInstanceFast()->getRegionMap())
{ {
U64 handle = sim_info_pair.first; U64 handle = sim_info_pair.first;
LLSimInfo* info = sim_info_pair.second; LLSimInfo* info = sim_info_pair.second.get();
LLVector3d origin_global = from_region_handle(handle); LLVector3d origin_global = from_region_handle(handle);
......
...@@ -72,7 +72,7 @@ void LLWorldMipmap::equalizeBoostLevels() ...@@ -72,7 +72,7 @@ void LLWorldMipmap::equalizeBoostLevels()
{ {
sublevel_tiles_t& level_mipmap = mWorldObjectsMipMap[level]; sublevel_tiles_t& level_mipmap = mWorldObjectsMipMap[level];
// For each tile // For each tile
for (sublevel_tiles_t::iterator iter = level_mipmap.begin(); iter != level_mipmap.end(); iter++) for (sublevel_tiles_t::iterator iter = level_mipmap.begin(), end_it = level_mipmap.end(); iter != end_it; ++iter)
{ {
LLPointer<LLViewerFetchedTexture> img = iter->second; LLPointer<LLViewerFetchedTexture> img = iter->second;
S32 current_boost_level = img->getBoostLevel(); S32 current_boost_level = img->getBoostLevel();
...@@ -114,7 +114,7 @@ void LLWorldMipmap::dropBoostLevels() ...@@ -114,7 +114,7 @@ void LLWorldMipmap::dropBoostLevels()
{ {
sublevel_tiles_t& level_mipmap = mWorldObjectsMipMap[level]; sublevel_tiles_t& level_mipmap = mWorldObjectsMipMap[level];
// For each tile // For each tile
for (sublevel_tiles_t::iterator iter = level_mipmap.begin(); iter != level_mipmap.end(); iter++) for (sublevel_tiles_t::iterator iter = level_mipmap.begin(), end_it = level_mipmap.end(); iter != end_it; iter++)
{ {
LLPointer<LLViewerFetchedTexture> img = iter->second; LLPointer<LLViewerFetchedTexture> img = iter->second;
img->setBoostLevel(LLGLTexture::BOOST_NONE); img->setBoostLevel(LLGLTexture::BOOST_NONE);
...@@ -151,9 +151,16 @@ LLPointer<LLViewerFetchedTexture> LLWorldMipmap::getObjectsTile(U32 grid_x, U32 ...@@ -151,9 +151,16 @@ LLPointer<LLViewerFetchedTexture> LLWorldMipmap::getObjectsTile(U32 grid_x, U32
// Load it // Load it
LLPointer<LLViewerFetchedTexture> img = loadObjectsTile(grid_x, grid_y, level); LLPointer<LLViewerFetchedTexture> img = loadObjectsTile(grid_x, grid_y, level);
// Insert the image in the map // Insert the image in the map
level_mipmap.insert(sublevel_tiles_t::value_type( handle, img )); const auto& ret = level_mipmap.emplace(handle, img);
// Find the element again in the map (it's there now...) if (ret.second)
found = level_mipmap.find(handle); {
// Find the element again in the map (it's there now...)
found = ret.first;
}
else
{
return nullptr;
}
} }
else else
{ {
...@@ -193,10 +200,10 @@ LLPointer<LLViewerFetchedTexture> LLWorldMipmap::loadObjectsTile(U32 grid_x, U32 ...@@ -193,10 +200,10 @@ LLPointer<LLViewerFetchedTexture> LLWorldMipmap::loadObjectsTile(U32 grid_x, U32
// END DEBUG // END DEBUG
//LL_INFOS("WorldMap") << "LLWorldMipmap::loadObjectsTile(), URL = " << imageurl << LL_ENDL; //LL_INFOS("WorldMap") << "LLWorldMipmap::loadObjectsTile(), URL = " << imageurl << LL_ENDL;
LLPointer<LLViewerFetchedTexture> img = LLViewerTextureManager::getFetchedTextureFromUrl(imageurl, FTT_MAP_TILE, TRUE, LLGLTexture::BOOST_NONE, LLViewerTexture::LOD_TEXTURE); LLPointer<LLViewerFetchedTexture> img = LLViewerTextureManager::getFetchedTextureFromUrl(imageurl, FTT_MAP_TILE, TRUE, LLGLTexture::BOOST_MAP, LLViewerTexture::LOD_TEXTURE);
#if SHOW_DEBUG
LL_DEBUGS("MAPURL") << "fetching map tile from " << imageurl << LL_ENDL; LL_DEBUGS("MAPURL") << "fetching map tile from " << imageurl << LL_ENDL;
#endif
img->setBoostLevel(LLGLTexture::BOOST_MAP);
// Return the smart pointer // Return the smart pointer
return img; return img;
...@@ -221,19 +228,16 @@ void LLWorldMipmap::cleanMissedTilesFromLevel(S32 level) ...@@ -221,19 +228,16 @@ void LLWorldMipmap::cleanMissedTilesFromLevel(S32 level)
// Iterate through the subresolution level and suppress the tiles that are marked as missing // Iterate through the subresolution level and suppress the tiles that are marked as missing
// Note: erasing in a map while iterating through it is bug prone. Using a postfix increment is mandatory here. // Note: erasing in a map while iterating through it is bug prone. Using a postfix increment is mandatory here.
sublevel_tiles_t& level_mipmap = mWorldObjectsMipMap[level-1]; sublevel_tiles_t& level_mipmap = mWorldObjectsMipMap[level-1];
sublevel_tiles_t::iterator it = level_mipmap.begin(); for (auto it = level_mipmap.begin(), end = level_mipmap.end(); it != end;)
while (it != level_mipmap.end())
{ {
LLPointer<LLViewerFetchedTexture> img = it->second; auto copy_it = it++;
if (img->isMissingAsset()) LLPointer<LLViewerFetchedTexture> img = copy_it->second;
if (img->isMissingAsset())
{ {
level_mipmap.erase(it++); level_mipmap.erase(copy_it);
}
else
{
++it;
} }
} }
return; return;
} }
......
...@@ -84,7 +84,7 @@ class LLWorldMipmap ...@@ -84,7 +84,7 @@ class LLWorldMipmap
// The mipmap is organized by resolution level (MAP_LEVELS of them). Each resolution level is an std::map // The mipmap is organized by resolution level (MAP_LEVELS of them). Each resolution level is an std::map
// using a region_handle as a key and storing a smart pointer to the image as a value. // using a region_handle as a key and storing a smart pointer to the image as a value.
typedef std::map<U64, LLPointer<LLViewerFetchedTexture> > sublevel_tiles_t; typedef absl::flat_hash_map<U64, LLPointer<LLViewerFetchedTexture> > sublevel_tiles_t;
sublevel_tiles_t mWorldObjectsMipMap[MAP_LEVELS]; sublevel_tiles_t mWorldObjectsMipMap[MAP_LEVELS];
// sublevel_tiles_t mWorldTerrainMipMap[MAP_LEVELS]; // sublevel_tiles_t mWorldTerrainMipMap[MAP_LEVELS];
......
...@@ -403,9 +403,7 @@ namespace tut ...@@ -403,9 +403,7 @@ namespace tut
} }
// Test 9 : Verify that all the region list is empty // Test 9 : Verify that all the region list is empty
LLWorldMap::sim_info_map_t list; ensure("LLWorldMap::getRegionMap() empty at init test failed", mWorld->getRegionMap().empty());
list = mWorld->getRegionMap();
ensure("LLWorldMap::getRegionMap() empty at init test failed", list.empty());
// Test 10 : Insert a region // Test 10 : Insert a region
bool success; bool success;
...@@ -417,8 +415,7 @@ namespace tut ...@@ -417,8 +415,7 @@ namespace tut
id, id,
SIM_ACCESS_PG, SIM_ACCESS_PG,
REGION_FLAGS_SANDBOX); REGION_FLAGS_SANDBOX);
list = mWorld->getRegionMap(); ensure("LLWorldMap::insertRegion() failed", success && (mWorld->getRegionMap().size() == 1));
ensure("LLWorldMap::insertRegion() failed", success && (list.size() == 1));
// Test 11 : Insert an item in the same region -> number of regions doesn't increase // Test 11 : Insert an item in the same region -> number of regions doesn't increase
std::string name_item = ITEM_NAME_TEST; std::string name_item = ITEM_NAME_TEST;
...@@ -428,8 +425,7 @@ namespace tut ...@@ -428,8 +425,7 @@ namespace tut
id, id,
MAP_ITEM_LAND_FOR_SALE, MAP_ITEM_LAND_FOR_SALE,
0, 0); 0, 0);
list = mWorld->getRegionMap(); ensure("LLWorldMap::insertItem() in existing region failed", success && (mWorld->getRegionMap().size() == 1));
ensure("LLWorldMap::insertItem() in existing region failed", success && (list.size() == 1));
// Test 12 : Insert an item in another region -> number of regions increases // Test 12 : Insert an item in another region -> number of regions increases
success = mWorld->insertItem( U32(X_WORLD_TEST + REGION_WIDTH_METERS*2), success = mWorld->insertItem( U32(X_WORLD_TEST + REGION_WIDTH_METERS*2),
...@@ -438,8 +434,7 @@ namespace tut ...@@ -438,8 +434,7 @@ namespace tut
id, id,
MAP_ITEM_LAND_FOR_SALE, MAP_ITEM_LAND_FOR_SALE,
0, 0); 0, 0);
list = mWorld->getRegionMap(); ensure("LLWorldMap::insertItem() in unexisting region failed", success && (mWorld->getRegionMap().size() == 2));
ensure("LLWorldMap::insertItem() in unexisting region failed", success && (list.size() == 2));
// Test 13 : simInfoFromPosGlobal() in region // Test 13 : simInfoFromPosGlobal() in region
LLVector3d pos1( X_WORLD_TEST + REGION_WIDTH_METERS*2 + REGION_WIDTH_METERS/2, LLVector3d pos1( X_WORLD_TEST + REGION_WIDTH_METERS*2 + REGION_WIDTH_METERS/2,
...@@ -480,8 +475,7 @@ namespace tut ...@@ -480,8 +475,7 @@ namespace tut
} }
// Test 19 : Verify that all the region list is empty // Test 19 : Verify that all the region list is empty
list = mWorld->getRegionMap(); ensure("LLWorldMap::getRegionMap() empty at end test failed", mWorld->getRegionMap().empty());
ensure("LLWorldMap::getRegionMap() empty at end test failed", list.empty());
} }
// Test tracking // Test tracking
template<> template<> template<> template<>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment