<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&lt;<wbr>float, 3, boost::geometry::cs::<wbr>cartesian&gt; Point3D;<br>typedef std::pair&lt;Point3D, WorldObject*&gt; RTreeElement;<br><br>// define custom equal comparison is needed for pointer type<br>struct WObjEqualTo<br>{<br>    bool operator()(RTreeElement const&amp; v1, RTreeElement const&amp; v2) const<br>    {<br>        return boost::geometry::equals(v1.<wbr>first, v2.first)<br>            &amp;&amp; v1.second == v2.second;<br>    }<br>};<br><br>// finally we can define our RTree type<br>typedef boost::geometry::index::rtree&lt; RTreeElement, boost::geometry::index::<wbr>quadratic&lt;16&gt;, boost::geometry::index::<wbr>indexable&lt;RTreeElement&gt;, WObjEqualTo &gt; WorldRTree;<br><br><br>// method to do queries<br>template&lt;typename CheckType, class ObjectType&gt;<br>void
 Map::GetNearObject(ObjectType&amp; resultObj, CheckType&amp; 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&lt;Point3D&gt; box;<br>    box visibleBox(Point3D(<wbr>centerPoint.get&lt;0&gt;()
 - radius, centerPoint.get&lt;1&gt;() - radius, 
centerPoint.get&lt;2&gt;() - radius), Point3D(centerPoint.get&lt;0&gt;()
 + radius, centerPoint.get&lt;1&gt;() + radius, 
centerPoint.get&lt;2&gt;() + radius));<br>    for (WorldRTree::const_query_<wbr>iterator it = m_worldRtree.qbegin(bgi::<wbr>within(visibleBox) &amp;&amp; bgi::nearest(centerPoint, 1000)); it != m_worldRtree.qend(); ++it)<br>    {<br>       
 if (it-&gt;second-&gt;isType(typeMask) &amp;&amp; 
bg::distance(it-&gt;first, centerPoint) &lt; radius &amp;&amp; 
check(it-&gt;second))<br>        {<br>            resultObj = static_cast&lt;ObjectType&gt;(it-&gt;<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 &lt; 100000; ++i)<br>    {<br>        player-&gt;GetMap()-&gt;<wbr>GetNearObject(foundUnit, AnyAliveUnitInObjectRangeCheck<wbr>, player-&gt;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&lt;<wbr>std::chrono::microseconds&gt;(<wbr>end7 - begin7).count();</div>