Normand Briere
2018-07-01 89c1ad67bc65d24ceadfa9e95f8c5515283f1e97
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
/*
 * Java port of Bullet (c) 2008 Martin Dvorak <jezek2@advel.cz>
 *
 * Bullet Continuous Collision Detection and Physics Library
 * Copyright (c) 2003-2008 Erwin Coumans  http://www.bulletphysics.com/
 *
 * This software is provided 'as-is', without any express or implied warranty.
 * In no event will the authors be held liable for any damages arising from
 * the use of this software.
 * 
 * Permission is granted to anyone to use this software for any purpose, 
 * including commercial applications, and to alter it and redistribute it
 * freely, subject to the following restrictions:
 * 
 * 1. The origin of this software must not be misrepresented; you must not
 *    claim that you wrote the original software. If you use this software
 *    in a product, an acknowledgment in the product documentation would be
 *    appreciated but is not required.
 * 2. Altered source versions must be plainly marked as such, and must not be
 *    misrepresented as being the original software.
 * 3. This notice may not be removed or altered from any source distribution.
 */
 
package com.bulletphysics.collision.broadphase;
 
import com.bulletphysics.BulletStats;
import com.bulletphysics.util.ObjectPool;
import com.bulletphysics.linearmath.MiscUtil;
import com.bulletphysics.util.IntArrayList;
import com.bulletphysics.util.ObjectArrayList;
 
/**
 * Hash-space based {@link OverlappingPairCache}.
 * 
 * @author jezek2
 */
public class HashedOverlappingPairCache extends OverlappingPairCache  implements java.io.Serializable {
 
   private final ObjectPool<BroadphasePair> pairsPool = ObjectPool.get(BroadphasePair.class);
   
   private static final int NULL_PAIR = -1; // 0xffffffff;
   
   private ObjectArrayList<BroadphasePair> overlappingPairArray = new ObjectArrayList<BroadphasePair>();
   private OverlapFilterCallback overlapFilterCallback;
   private boolean blockedForChanges = false;
   
   private IntArrayList hashTable = new IntArrayList();
   private IntArrayList next = new IntArrayList();
   protected OverlappingPairCallback ghostPairCallback;
 
   public HashedOverlappingPairCache() {
       int initialAllocatedSize = 2;
       // JAVA TODO: overlappingPairArray.ensureCapacity(initialAllocatedSize);
       growTables();
   }
 
   /**
    * Add a pair and return the new pair. If the pair already exists,
    * no new pair is created and the old one is returned.
    */
   public BroadphasePair addOverlappingPair(BroadphaseProxy proxy0, BroadphaseProxy proxy1) {
       BulletStats.gAddedPairs++;
 
       if (!needsBroadphaseCollision(proxy0, proxy1)) {
           return null;
       }
 
       return internalAddPair(proxy0,proxy1);
   }
 
   public Object removeOverlappingPair(BroadphaseProxy proxy0, BroadphaseProxy proxy1, Dispatcher dispatcher) {
       BulletStats.gRemovePairs++;
       if (proxy0.getUid() > proxy1.getUid()) {
           BroadphaseProxy tmp = proxy0;
           proxy0 = proxy1;
           proxy1 = tmp;
       }
       int proxyId1 = proxy0.getUid();
       int proxyId2 = proxy1.getUid();
 
       /*if (proxyId1 > proxyId2) 
       btSwap(proxyId1, proxyId2);*/
 
       int hash = getHash(proxyId1, proxyId2) & (overlappingPairArray.capacity() - 1);
 
       BroadphasePair pair = internalFindPair(proxy0, proxy1, hash);
       if (pair == null) {
           return null;
       }
 
       cleanOverlappingPair(pair, dispatcher);
 
       Object userData = pair.userInfo;
 
       assert (pair.pProxy0.getUid() == proxyId1);
       assert (pair.pProxy1.getUid() == proxyId2);
 
       // JAVA TODO: optimize
       //int pairIndex = int(pair - &m_overlappingPairArray[0]);
       int pairIndex = overlappingPairArray.indexOf(pair);
       assert (pairIndex != -1);
 
       assert (pairIndex < overlappingPairArray.size());
 
       // Remove the pair from the hash table.
       int index = hashTable.get(hash);
       assert (index != NULL_PAIR);
 
       int previous = NULL_PAIR;
       while (index != pairIndex) {
           previous = index;
           index = next.get(index);
       }
 
       if (previous != NULL_PAIR) {
           assert (next.get(previous) == pairIndex);
           next.set(previous, next.get(pairIndex));
       }
       else {
           hashTable.set(hash, next.get(pairIndex));
       }
 
       // We now move the last pair into spot of the
       // pair being removed. We need to fix the hash
       // table indices to support the move.
 
       int lastPairIndex = overlappingPairArray.size() - 1;
 
       if (ghostPairCallback != null) {
           ghostPairCallback.removeOverlappingPair(proxy0, proxy1, dispatcher);
       }
 
       // If the removed pair is the last pair, we are done.
       if (lastPairIndex == pairIndex) {
           overlappingPairArray.removeQuick(overlappingPairArray.size() - 1);
           return userData;
       }
 
       // Remove the last pair from the hash table.
       BroadphasePair last = overlappingPairArray.getQuick(lastPairIndex);
       /* missing swap here too, Nat. */
       int lastHash = getHash(last.pProxy0.getUid(), last.pProxy1.getUid()) & (overlappingPairArray.capacity() - 1);
 
       index = hashTable.get(lastHash);
       assert (index != NULL_PAIR);
 
       previous = NULL_PAIR;
       while (index != lastPairIndex) {
           previous = index;
           index = next.get(index);
       }
 
       if (previous != NULL_PAIR) {
           assert (next.get(previous) == lastPairIndex);
           next.set(previous, next.get(lastPairIndex));
       }
       else {
           hashTable.set(lastHash, next.get(lastPairIndex));
       }
 
       // Copy the last pair into the remove pair's spot.
       overlappingPairArray.getQuick(pairIndex).set(overlappingPairArray.getQuick(lastPairIndex));
 
       // Insert the last pair into the hash table
       next.set(pairIndex, hashTable.get(lastHash));
       hashTable.set(lastHash, pairIndex);
 
       overlappingPairArray.removeQuick(overlappingPairArray.size() - 1);
 
       return userData;
   }
 
   public boolean needsBroadphaseCollision(BroadphaseProxy proxy0, BroadphaseProxy proxy1) {
       if (overlapFilterCallback != null) {
           return overlapFilterCallback.needBroadphaseCollision(proxy0, proxy1);
       }
 
       boolean collides = (proxy0.collisionFilterGroup & proxy1.collisionFilterMask) != 0;
       collides = collides && (proxy1.collisionFilterGroup & proxy0.collisionFilterMask) != 0;
 
       return collides;
   }
   
   @Override
   public void processAllOverlappingPairs(OverlapCallback callback, Dispatcher dispatcher) {
       //    printf("m_overlappingPairArray.size()=%d\n",m_overlappingPairArray.size());
       for (int i=0; i<overlappingPairArray.size(); ) {
 
           BroadphasePair pair = overlappingPairArray.getQuick(i);
           if (callback.processOverlap(pair)) {
               removeOverlappingPair(pair.pProxy0, pair.pProxy1, dispatcher);
 
               BulletStats.gOverlappingPairs--;
           }
           else {
               i++;
           }
       }
   }
 
   public void removeOverlappingPairsContainingProxy(BroadphaseProxy proxy, Dispatcher dispatcher) {
       processAllOverlappingPairs(new RemovePairCallback(proxy), dispatcher);
   }
 
   @Override
   public void cleanProxyFromPairs(BroadphaseProxy proxy, Dispatcher dispatcher) {
       processAllOverlappingPairs(new CleanPairCallback(proxy, this, dispatcher), dispatcher);
   }
 
   @Override
   public ObjectArrayList<BroadphasePair> getOverlappingPairArray() {
       return overlappingPairArray;
   }
 
   @Override
   public void cleanOverlappingPair(BroadphasePair pair, Dispatcher dispatcher) {
       if (pair.algorithm != null) {
           //pair.algorithm.destroy();
           dispatcher.freeCollisionAlgorithm(pair.algorithm);
           pair.algorithm = null;
       }
   }
 
   @Override
   public BroadphasePair findPair(BroadphaseProxy proxy0, BroadphaseProxy proxy1) {
       BulletStats.gFindPairs++;
       if (proxy0.getUid() > proxy1.getUid()) {
           BroadphaseProxy tmp = proxy0;
           proxy0 = proxy1;
           proxy1 = proxy0;
       }
       int proxyId1 = proxy0.getUid();
       int proxyId2 = proxy1.getUid();
 
       /*if (proxyId1 > proxyId2) 
           btSwap(proxyId1, proxyId2);*/
 
       int hash = getHash(proxyId1, proxyId2) & (overlappingPairArray.capacity()-1);
 
       if (hash >= hashTable.size())
       {
           return null;
       }
 
       int index = hashTable.get(hash);
       while (index != NULL_PAIR && equalsPair(overlappingPairArray.getQuick(index), proxyId1, proxyId2) == false)
       {
           index = next.get(index);
       }
 
       if (index == NULL_PAIR)
       {
           return null;
       }
 
       assert(index < overlappingPairArray.size());
 
       return overlappingPairArray.getQuick(index);
   }
 
   public int getCount() {
       return overlappingPairArray.size();
   }
 
//    btBroadphasePair* GetPairs() { return m_pairs; }
   public OverlapFilterCallback getOverlapFilterCallback() {
       return overlapFilterCallback;
   }
 
   @Override
   public void setOverlapFilterCallback(OverlapFilterCallback overlapFilterCallback) {
       this.overlapFilterCallback = overlapFilterCallback;
   }
 
   @Override
   public int getNumOverlappingPairs() {
       return overlappingPairArray.size();
   }
 
   @Override
   public boolean hasDeferredRemoval() {
       return false;
   }
   
   private BroadphasePair internalAddPair(BroadphaseProxy proxy0, BroadphaseProxy proxy1) {
       if (proxy0.getUid() > proxy1.getUid()) {
           BroadphaseProxy tmp = proxy0;
           proxy0 = proxy1;
           proxy1 = tmp;
       }
       int proxyId1 = proxy0.getUid();
       int proxyId2 = proxy1.getUid();
 
       /*if (proxyId1 > proxyId2) 
       btSwap(proxyId1, proxyId2);*/
 
       int hash = getHash(proxyId1, proxyId2) & (overlappingPairArray.capacity() - 1); // New hash value with new mask
 
       BroadphasePair pair = internalFindPair(proxy0, proxy1, hash);
       if (pair != null) {
           return pair;
       }
       /*for(int i=0;i<m_overlappingPairArray.size();++i)
       {
       if(    (m_overlappingPairArray[i].m_pProxy0==proxy0)&&
       (m_overlappingPairArray[i].m_pProxy1==proxy1))
       {
       printf("Adding duplicated %u<>%u\r\n",proxyId1,proxyId2);
       internalFindPair(proxy0, proxy1, hash);
       }
       }*/
       int count = overlappingPairArray.size();
       int oldCapacity = overlappingPairArray.capacity();
       overlappingPairArray.add(null);
 
       // this is where we add an actual pair, so also call the 'ghost'
       if (ghostPairCallback != null) {
           ghostPairCallback.addOverlappingPair(proxy0, proxy1);
       }
 
       int newCapacity = overlappingPairArray.capacity();
 
       if (oldCapacity < newCapacity) {
           growTables();
           // hash with new capacity
           hash = getHash(proxyId1, proxyId2) & (overlappingPairArray.capacity() - 1);
       }
 
       pair = new BroadphasePair(proxy0, proxy1);
       //    pair->m_pProxy0 = proxy0;
       //    pair->m_pProxy1 = proxy1;
       pair.algorithm = null;
       pair.userInfo = null;
 
       overlappingPairArray.setQuick(overlappingPairArray.size() - 1, pair);
 
       next.set(count, hashTable.get(hash));
       hashTable.set(hash, count);
 
       return pair;
   }
 
   private void growTables() {
       int newCapacity = overlappingPairArray.capacity();
 
       if (hashTable.size() < newCapacity) {
           // grow hashtable and next table
           int curHashtableSize = hashTable.size();
 
           MiscUtil.resize(hashTable, newCapacity, 0);
           MiscUtil.resize(next, newCapacity, 0);
 
           for (int i=0; i<newCapacity; ++i) {
               hashTable.set(i, NULL_PAIR);
           }
           for (int i=0; i<newCapacity; ++i) {
               next.set(i, NULL_PAIR);
           }
 
           for (int i=0; i<curHashtableSize; i++) {
 
               BroadphasePair pair = overlappingPairArray.getQuick(i);
               int proxyId1 = pair.pProxy0.getUid();
               int proxyId2 = pair.pProxy1.getUid();
               /*if (proxyId1 > proxyId2) 
               btSwap(proxyId1, proxyId2);*/
               int hashValue = getHash(proxyId1, proxyId2) & (overlappingPairArray.capacity() - 1); // New hash value with new mask
               next.set(i, hashTable.get(hashValue));
               hashTable.set(hashValue, i);
           }
       }
   }
 
   private boolean equalsPair(BroadphasePair pair, int proxyId1, int proxyId2) {
       return pair.pProxy0.getUid() == proxyId1 && pair.pProxy1.getUid() == proxyId2;
   }
 
   private int getHash(int proxyId1, int proxyId2) {
       int key = (proxyId1) | (proxyId2 << 16);
       // Thomas Wang's hash
 
       key += ~(key << 15);
       key ^= (key >>> 10);
       key += (key << 3);
       key ^= (key >>> 6);
       key += ~(key << 11);
       key ^= (key >>> 16);
       return key;
   }
 
   private BroadphasePair internalFindPair(BroadphaseProxy proxy0, BroadphaseProxy proxy1, int hash) {
       int proxyId1 = proxy0.getUid();
       int proxyId2 = proxy1.getUid();
       //#if 0 // wrong, 'equalsPair' use unsorted uids, copy-past devil striked again. Nat.
       //if (proxyId1 > proxyId2) 
       //    btSwap(proxyId1, proxyId2);
       //#endif
 
       int index = hashTable.get(hash);
 
       while (index != NULL_PAIR && equalsPair(overlappingPairArray.getQuick(index), proxyId1, proxyId2) == false) {
           index = next.get(index);
       }
 
       if (index == NULL_PAIR) {
           return null;
       }
 
       assert (index < overlappingPairArray.size());
 
       return overlappingPairArray.getQuick(index);
   }
 
   public void setInternalGhostPairCallback(OverlappingPairCallback ghostPairCallback) {
       this.ghostPairCallback = ghostPairCallback;
   }
   
   ////////////////////////////////////////////////////////////////////////////
 
   private static class RemovePairCallback extends OverlapCallback {
       private BroadphaseProxy obsoleteProxy;
 
       public RemovePairCallback(BroadphaseProxy obsoleteProxy) {
           this.obsoleteProxy = obsoleteProxy;
       }
 
       public boolean processOverlap(BroadphasePair pair) {
           return ((pair.pProxy0 == obsoleteProxy) ||
                   (pair.pProxy1 == obsoleteProxy));
       }
   }
 
   private static class CleanPairCallback extends OverlapCallback {
       private BroadphaseProxy cleanProxy;
       private OverlappingPairCache pairCache;
       private Dispatcher dispatcher;
 
       public CleanPairCallback(BroadphaseProxy cleanProxy, OverlappingPairCache pairCache, Dispatcher dispatcher) {
           this.cleanProxy = cleanProxy;
           this.pairCache = pairCache;
           this.dispatcher = dispatcher;
       }
 
       public boolean processOverlap(BroadphasePair pair) {
           if ((pair.pProxy0 == cleanProxy) ||
                   (pair.pProxy1 == cleanProxy)) {
               pairCache.cleanOverlappingPair(pair, dispatcher);
           }
           return false;
       }
   }
   
}