Posted by Tai Tue 20th Mar 2007 20:50 - Syntax is Java - 46 views
Download | New Post | Modify | Hide line numbers
  1.  
  2.     public int getObjectAt(int x, int y) {
  3.         for (int i = 0; i < 4; i++) {
  4.             try {
  5.                 mb ground = jf.n.w[i] [x - je.ib][y - ad.G];
  6.  
  7.                 if (ground != null) {
  8.                     if (ground.L != null) {
  9.                         for (Obj obj : ground.L)
  10.                             if (obj != null && obj.p != -1)
  11.                                 return obj.p;
  12.                     }
  13.                     if (ground.cc != null && ground.cc.o != -1)
  14.                         return ground.cc.o;
  15.                     if (ground.o != null && ground.o.f != -1)
  16.                         return ground.o.f;
  17.                     if (ground.jd != null && ground.jd.g != -1)
  18.                         return ground.jd.g;
  19.                     if (ground.hf != null && ground.hf.k != -1)
  20.                         return ground.hf.k;
  21.                 }
  22.             } catch ( e) {    }
  23.         }
  24.         return -1;
  25.     }

PermaLink to this entry https://pastebin.co.uk/12099
Posted by Tai Tue 20th Mar 2007 20:50 - Syntax is Java - 46 views
Download | New Post | Modify | Hide line numbers

 

Comments: 0