• Type: Bug
    • Resolution: Unresolved
    • Priority: Minor
    • None
    • Affects Version/s: None

      Entity#a(AxisAlignedBB) attempts to fix the AABB given to it. This forces the cretaion of a new AABB every time the method is invoked (which is quite often).

      This patch skips many AABB allocations on my test server and reduced their allocation count by 16% (many entities on that server)

      public void a(AxisAlignedBB axisalignedbb) {
      // Changes start - block invalid bounding boxes
      // Fix: Do not allocate if not required.
      double a = axisalignedbb.a,
      b = axisalignedbb.b,
      c = axisalignedbb.c,
      d = axisalignedbb.d,
      e = axisalignedbb.e,
      f = axisalignedbb.f;
      if (d - a > 64 || d - a < 0 || e - b > 64 || e - b < 0 || f - c > 64 || f - c < 0)

      { // This should rarely happen! assignFixedAABB(a, b, c, d, e, f); }

      else

      { this.boundingBox = axisalignedbb; }

      // Changes end
      }

      // Changes start - block invalid bounding boxes
      private void assignFixedAABB(double a, double b, double c, double d, double e,
      double f)

      { d = clamp(d, a, a + 64); e = clamp(e, b, b+64); f = clamp(f, c, c+64); this.boundingBox = new AxisAlignedBB(a, b, c, d, e, f); }

      private double clamp(double d, double min, double max)

      { if (d < min) return min; if (d > max) return max; return d; }

      // Changes end

            Assignee:
            md_5
            Reporter:
            Michael Zangl
            Votes:
            1 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated: