<div dir="ltr">Hi,<br><br>I will try to explain clearly my performence issue.<br>The following code work great and result is as expected.<br>Idea is to store on my RTree position and pointer of the WorldObject.<br>I can so use RTree for spacial queries and do required check on element before returning the result.<br><br>My RTree is filled by approximatly 50k elements.<br>The queries by the core have to be done 100k times every 100ms (about 2 times per object with differents check)<br><br>I should mention that my cpu is not obsolete with 4core/8T at 3.6Ghz.<br>So i used that code for testing it.<br>It look like that nearest predicate is pretty slow on my system. I got the min return time between 600-700ms after 100k queries.<br>Do not consider the check in the loop time as the result of within and nearest predicate contain never more than 20 objects and check is pretty fast.<br><br>Is that normal? Maybe i made some mistake or there is something that i can do to optimize that.<br>I would love to have your opinion.<br><br>Thank you.<br><br>typedef boost::geometry::model::point<<wbr>float, 3, boost::geometry::cs::<wbr>cartesian> Point3D;<br>typedef std::pair<Point3D, WorldObject*> RTreeElement;<br><br>// define custom equal comparison is needed for pointer type<br>struct WObjEqualTo<br>{<br> bool operator()(RTreeElement const& v1, RTreeElement const& v2) const<br> {<br> return boost::geometry::equals(v1.<wbr>first, v2.first)<br> && v1.second == v2.second;<br> }<br>};<br><br>// finally we can define our RTree type<br>typedef boost::geometry::index::rtree< RTreeElement, boost::geometry::index::<wbr>quadratic<16>, boost::geometry::index::<wbr>indexable<RTreeElement>, WObjEqualTo > WorldRTree;<br><br><br>// method to do queries<br>template<typename CheckType, class ObjectType><br>void Map::GetNearObject(ObjectType& resultObj, CheckType& check, Point3D centerPoint, float radius, TypeMask typeMask /*= TYPEMASK_WORLDOBJECT*/) const<br>{<br> namespace bg = boost::geometry;<br> namespace bgi = boost::geometry::index;<br><br> typedef bg::model::box<Point3D> box;<br> box visibleBox(Point3D(<wbr>centerPoint.get<0>() - radius, centerPoint.get<1>() - radius, centerPoint.get<2>() - radius), Point3D(centerPoint.get<0>() + radius, centerPoint.get<1>() + radius, centerPoint.get<2>() + radius));<br> for (WorldRTree::const_query_<wbr>iterator it = m_worldRtree.qbegin(bgi::<wbr>within(visibleBox) && bgi::nearest(centerPoint, 1000)); it != m_worldRtree.qend(); ++it)<br> {<br> if (it->second->isType(typeMask) && bg::distance(it->first, centerPoint) < radius && check(it->second))<br> {<br> resultObj = static_cast<ObjectType>(it-><wbr>second);<br> break;<br> }<br> }<br>};<br><br>// loop i used for testing<br> foundUnit = nullptr;<br> std::chrono::steady_clock::<wbr>time_point begin7 = std::chrono::steady_clock::<wbr>now();<br> for (uint32 i = 0; i < 100000; ++i)<br> {<br> player->GetMap()-><wbr>GetNearObject(foundUnit, AnyAliveUnitInObjectRangeCheck<wbr>, player->GetPosition(), 100, TYPEMASK_PLAYER_OR_UNIT);<br> }<br> std::chrono::steady_clock::<wbr>time_point end7 = std::chrono::steady_clock::<wbr>now();<br> auto mtdiff7 = std::chrono::duration_cast<<wbr>std::chrono::microseconds>(<wbr>end7 - begin7).count();</div>