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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
|
/*************************************************************************
* *
* Open Dynamics Engine, Copyright (C) 2001-2003 Russell L. Smith. *
* All rights reserved. Email: russ@q12.org Web: www.q12.org *
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of EITHER: *
* (1) The GNU Lesser General Public License as published by the Free *
* Software Foundation; either version 2.1 of the License, or (at *
* your option) any later version. The text of the GNU Lesser *
* General Public License is included with this library in the *
* file LICENSE.TXT. *
* (2) The BSD-style license that is included with this library in *
* the file LICENSE-BSD.TXT. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the files *
* LICENSE.TXT and LICENSE-BSD.TXT for more details. *
* *
*************************************************************************/
/*
ODE initialization/finalization code
*/
#include <ode/common.h>
#include <ode/odeinit.h>
// <ode/objects.h> included for dWorldQuickStepCleanup()
#include <ode/objects.h>
#include "config.h"
#include "odemath.h"
#include "collision_kernel.h"
#include "collision_trimesh_internal.h"
#include "odetls.h"
#include "odeou.h"
#include "default_threading.h"
//****************************************************************************
// Initialization tracking variables
static unsigned int g_uiODEInitCounter = 0;
static unsigned int g_uiODEInitModes = 0;
#if dTRIMESH_ENABLED && dTRIMESH_OPCODE
static
void OPCODEAbort()
{
dICHECK(!"OPCODE Library Abort");
}
#endif // #if dTRIMESH_ENABLED && dTRIMESH_OPCODE
enum EODEINITMODE
{
OIM__MIN,
OIM_AUTOTLSCLEANUP = OIM__MIN,
OIM_MANUALTLSCLEANUP,
OIM__MAX
};
#if dTLS_ENABLED
static const EODETLSKIND g_atkTLSKindsByInitMode[OIM__MAX] =
{
OTK_AUTOCLEANUP, // OIM_AUTOTLSCLEANUP,
OTK_MANUALCLEANUP, // OIM_MANUALTLSCLEANUP,
};
#endif // #if dTLS_ENABLED
static inline bool IsODEModeInitialized(EODEINITMODE imInitMode)
{
return (g_uiODEInitModes & (1U << imInitMode)) != 0;
}
static inline void SetODEModeInitialized(EODEINITMODE imInitMode)
{
g_uiODEInitModes |= (1U << imInitMode);
}
static inline void ResetODEModeInitialized(EODEINITMODE imInitMode)
{
g_uiODEInitModes &= ~(1U << imInitMode);
}
static inline bool IsODEAnyModeInitialized()
{
return g_uiODEInitModes != 0;
}
enum
{
TLD_INTERNAL_COLLISIONDATA_ALLOCATED = 0x00000001
};
static bool AllocateThreadBasicDataIfNecessary(EODEINITMODE imInitMode)
{
bool bResult = false;
do
{
#if dTLS_ENABLED
EODETLSKIND tkTlsKind = g_atkTLSKindsByInitMode[imInitMode];
const unsigned uDataAllocationFlags = COdeTls::GetDataAllocationFlags(tkTlsKind);
// If no flags are set it may mean that TLS slot is not allocated yet
if (uDataAllocationFlags == 0)
{
// Assign zero flags to make sure that TLS slot has been allocated
if (!COdeTls::AssignDataAllocationFlags(tkTlsKind, 0))
{
break;
}
}
#else
(void)imInitMode; // unused
#endif // #if dTLS_ENABLED
bResult = true;
}
while (false);
return bResult;
}
static void FreeThreadBasicDataOnFailureIfNecessary(EODEINITMODE imInitMode)
{
#if dTLS_ENABLED
if (imInitMode == OIM_MANUALTLSCLEANUP)
{
EODETLSKIND tkTlsKind = g_atkTLSKindsByInitMode[imInitMode];
const unsigned uDataAllocationFlags = COdeTls::GetDataAllocationFlags(tkTlsKind);
if (uDataAllocationFlags == 0)
{
// So far, only free TLS slot, if no subsystems have data allocated
COdeTls::CleanupForThread();
}
}
#else
(void)imInitMode; // unused
#endif // #if dTLS_ENABLED
}
#if dTLS_ENABLED
static bool AllocateThreadCollisionData(EODETLSKIND tkTlsKind)
{
bool bResult = false;
do
{
dIASSERT(!(COdeTls::GetDataAllocationFlags(tkTlsKind) & TLD_INTERNAL_COLLISIONDATA_ALLOCATED));
#if dTRIMESH_ENABLED
TrimeshCollidersCache *pccColliderCache = new TrimeshCollidersCache();
if (!COdeTls::AssignTrimeshCollidersCache(tkTlsKind, pccColliderCache))
{
delete pccColliderCache;
break;
}
#endif // dTRIMESH_ENABLED
COdeTls::SignalDataAllocationFlags(tkTlsKind, TLD_INTERNAL_COLLISIONDATA_ALLOCATED);
bResult = true;
}
while (false);
return bResult;
}
#endif // dTLS_ENABLED
static bool AllocateThreadCollisionDataIfNecessary(EODEINITMODE imInitMode, bool &bOutDataAllocated)
{
bool bResult = false;
bOutDataAllocated = false;
do
{
#if dTLS_ENABLED
EODETLSKIND tkTlsKind = g_atkTLSKindsByInitMode[imInitMode];
const unsigned uDataAllocationFlags = COdeTls::GetDataAllocationFlags(tkTlsKind);
if ((uDataAllocationFlags & TLD_INTERNAL_COLLISIONDATA_ALLOCATED) == 0)
{
if (!AllocateThreadCollisionData(tkTlsKind))
{
break;
}
bOutDataAllocated = true;
}
#else
(void)imInitMode; // unused
#endif // #if dTLS_ENABLED
bResult = true;
}
while (false);
return bResult;
}
static void FreeThreadCollisionData(EODEINITMODE imInitMode)
{
#if dTLS_ENABLED
EODETLSKIND tkTlsKind = g_atkTLSKindsByInitMode[imInitMode];
COdeTls::DestroyTrimeshCollidersCache(tkTlsKind);
COdeTls::DropDataAllocationFlags(tkTlsKind, TLD_INTERNAL_COLLISIONDATA_ALLOCATED);
#else
(void)imInitMode; // unused
#endif // dTLS_ENABLED
}
static bool InitODEForMode(EODEINITMODE imInitMode)
{
bool bResult = false;
#if dOU_ENABLED
bool bOUCustomizationsDone = false;
#endif
#if dATOMICS_ENABLED
bool bAtomicsInitialized = false;
#endif
#if dTLS_ENABLED
EODETLSKIND tkTLSKindToInit = g_atkTLSKindsByInitMode[imInitMode];
bool bTlsInitialized = false;
#else
(void)imInitMode; // unused
#endif
bool bWorldThreadingInitialized = false;
do
{
bool bAnyModeAlreadyInitialized = IsODEAnyModeInitialized();
if (!bAnyModeAlreadyInitialized)
{
#if dOU_ENABLED
if (!COdeOu::DoOUCustomizations())
{
break;
}
bOUCustomizationsDone = true;
#endif
#if dATOMICS_ENABLED
if (!COdeOu::InitializeAtomics())
{
break;
}
bAtomicsInitialized = true;
#endif
}
#if dTLS_ENABLED
if (!COdeTls::Initialize(tkTLSKindToInit))
{
break;
}
bTlsInitialized = true;
#endif
if (!bAnyModeAlreadyInitialized)
{
if (!DefaultThreadingHolder::initializeDefaultThreading())
{
break;
}
bWorldThreadingInitialized = true;
#if dTRIMESH_ENABLED && dTRIMESH_OPCODE
if (!Opcode::InitOpcode(&OPCODEAbort))
{
break;
}
#endif
#if dTRIMESH_ENABLED && dTRIMESH_GIMPACT
gimpact_init();
#endif
dInitColliders();
}
bResult = true;
}
while (false);
if (!bResult)
{
if (bWorldThreadingInitialized)
{
DefaultThreadingHolder::finalizeDefaultThreading();
}
#if dTLS_ENABLED
if (bTlsInitialized)
{
COdeTls::Finalize(tkTLSKindToInit);
}
#endif
#if dATOMICS_ENABLED
if (bAtomicsInitialized)
{
COdeOu::FinalizeAtomics();
}
#endif
#if dOU_ENABLED
if (bOUCustomizationsDone)
{
COdeOu::UndoOUCustomizations();
}
#endif
}
return bResult;
}
static bool AllocateODEDataForThreadForMode(EODEINITMODE imInitMode, unsigned int uiAllocateFlags)
{
bool bResult = false;
bool bCollisionDataAllocated = false;
do
{
if (!AllocateThreadBasicDataIfNecessary(imInitMode))
{
break;
}
if (uiAllocateFlags & dAllocateFlagCollisionData)
{
if (!AllocateThreadCollisionDataIfNecessary(imInitMode, bCollisionDataAllocated))
{
break;
}
}
bResult = true;
}
while (false);
if (!bResult)
{
if (bCollisionDataAllocated)
{
FreeThreadCollisionData(imInitMode);
}
FreeThreadBasicDataOnFailureIfNecessary(imInitMode);
}
return bResult;
}
static void CloseODEForMode(EODEINITMODE imInitMode)
{
bool bAnyModeStillInitialized = IsODEAnyModeInitialized();
if (!bAnyModeStillInitialized)
{
dClearPosrCache();
dFinitUserClasses();
dFinitColliders();
#if dTRIMESH_ENABLED && dTRIMESH_GIMPACT
gimpact_terminate();
#endif
#if dTRIMESH_ENABLED && dTRIMESH_OPCODE
extern void opcode_collider_cleanup();
// Free up static allocations in opcode
opcode_collider_cleanup();
Opcode::CloseOpcode();
#endif
DefaultThreadingHolder::finalizeDefaultThreading();
}
#if dTLS_ENABLED
EODETLSKIND tkTLSKindToFinalize = g_atkTLSKindsByInitMode[imInitMode];
COdeTls::Finalize(tkTLSKindToFinalize);
#else
(void)imInitMode; // unused
#endif
if (!bAnyModeStillInitialized)
{
#if dATOMICS_ENABLED
COdeOu::FinalizeAtomics();
#endif
#if dOU_ENABLED
COdeOu::UndoOUCustomizations();
#endif
}
}
//****************************************************************************
// internal initialization and close routine implementations
static bool InternalInitODE(unsigned int uiInitFlags)
{
bool bResult = false;
do
{
EODEINITMODE imInitMode = (uiInitFlags & dInitFlagManualThreadCleanup) ? OIM_MANUALTLSCLEANUP : OIM_AUTOTLSCLEANUP;
if (!IsODEModeInitialized(imInitMode))
{
if (!InitODEForMode(imInitMode))
{
break;
}
SetODEModeInitialized(imInitMode);
}
++g_uiODEInitCounter;
bResult = true;
}
while (false);
return bResult;
}
static void InternalCloseODE()
{
unsigned int uiCurrentMode = (--g_uiODEInitCounter == 0) ? OIM__MIN : OIM__MAX;
for (; uiCurrentMode != OIM__MAX; ++uiCurrentMode)
{
if (IsODEModeInitialized((EODEINITMODE)uiCurrentMode))
{
// Must be called before CloseODEForMode()
ResetODEModeInitialized((EODEINITMODE)uiCurrentMode);
// Must be called after ResetODEModeInitialized()
CloseODEForMode((EODEINITMODE)uiCurrentMode);
}
}
}
static bool InternalAllocateODEDataForThread(unsigned int uiAllocateFlags)
{
bool bAnyFailure = false;
for (unsigned uiCurrentMode = OIM__MIN; uiCurrentMode != OIM__MAX; ++uiCurrentMode)
{
if (IsODEModeInitialized((EODEINITMODE)uiCurrentMode))
{
if (!AllocateODEDataForThreadForMode((EODEINITMODE)uiCurrentMode, uiAllocateFlags))
{
bAnyFailure = true;
break;
}
}
}
bool bResult = !bAnyFailure;
return bResult;
}
static void InternalCleanupODEAllDataForThread()
{
#if dTLS_ENABLED
COdeTls::CleanupForThread();
#endif
}
//****************************************************************************
// initialization and shutdown routines - allocate and initialize data,
// cleanup before exiting
void dInitODE()
{
int bInitResult = InternalInitODE(0);
dIVERIFY(bInitResult);
int ibAllocResult = InternalAllocateODEDataForThread(dAllocateMaskAll);
dIVERIFY(ibAllocResult);
}
int dInitODE2(unsigned int uiInitFlags/*=0*/)
{
bool bResult = false;
bool bODEInitialized = false;
do
{
if (!InternalInitODE(uiInitFlags))
{
break;
}
bODEInitialized = true;
if (!InternalAllocateODEDataForThread(dAllocateFlagBasicData))
{
break;
}
bResult = true;
}
while (false);
if (!bResult)
{
if (bODEInitialized)
{
InternalCloseODE();
}
}
return bResult;
}
int dAllocateODEDataForThread(unsigned int uiAllocateFlags)
{
dUASSERT(g_uiODEInitCounter != 0, "Call dInitODE2 first");
bool bResult = InternalAllocateODEDataForThread(uiAllocateFlags);
return bResult;
}
void dCleanupODEAllDataForThread()
{
dUASSERT(g_uiODEInitCounter != 0, "Call dInitODE2 first or delay dCloseODE until all threads exit");
InternalCleanupODEAllDataForThread();
}
void dCloseODE()
{
dUASSERT(g_uiODEInitCounter != 0, "dCloseODE must not be called without dInitODE2 or if dInitODE2 fails"); // dCloseODE must not be called without dInitODE2 or if dInitODE2 fails
InternalCloseODE();
}
|