aboutsummaryrefslogtreecommitdiff
path: root/APEX_1.4/shared/general/ConvexDecomposition/app/TestConvexDecomposition/TestConvexDecomposition.cpp
blob: dee0e98bae0b5747da53832ced99ccaa178c5b77 (plain) (blame)
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
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//  * Redistributions of source code must retain the above copyright
//    notice, this list of conditions and the following disclaimer.
//  * Redistributions in binary form must reproduce the above copyright
//    notice, this list of conditions and the following disclaimer in the
//    documentation and/or other materials provided with the distribution.
//  * Neither the name of NVIDIA CORPORATION nor the names of its
//    contributors may be used to endorse or promote products derived
//    from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Copyright (c) 2008-2018 NVIDIA Corporation. All rights reserved.


#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <math.h>
#include <conio.h>

#pragma warning(disable:4996 4100)

#include "ConvexDecomposition.h"
#include "wavefront.h"
#include "PxAllocatorCallback.h"
#include "PxErrorCallback.h"
#include "PsShare.h"
#include "PxFoundation.h"
#include "PsFoundation.h"

namespace CONVEX_DECOMPOSITION
{
	ConvexDecomposition *gConvexDecomposition = NULL;
};

float getFloatArg(int arg,int argc,const char **argv)
{
	float ret = 0;
	if ( arg < argc )
	{
		ret = (float)atof(argv[arg]);
	}
	else
	{
		printf("Error: Missing input argument value at argument location %d.\r\n",arg+1);
	}
	return ret;
}

int getIntArg(int arg,int argc,const char **argv)
{
	int ret = 0;
	if ( arg < argc )
	{
		ret = atoi(argv[arg]);
	}
	else
	{
		printf("Error: Missing input argument value at argument location %d.\r\n",arg+1);
	}
	return ret;
}

class AppUserAllocator : public physx::PxAllocatorCallback
{
public:

	virtual void* allocate(size_t size, const char * , const char* , int ) 
	{
#ifdef PX_WINDOWS
		return ::_aligned_malloc(size, 16);
#else
		return ::malloc(size);
#endif
	}

	// this method needs to be removed
	virtual void* allocate(size_t size, physx::PxU32 , const char* , int ) 
	{
#ifdef PX_WINDOWS
		return ::_aligned_malloc(size, 16);
#else
		return ::malloc(size);
#endif
	}

	virtual void deallocate(void* ptr) 
	{
#ifdef PX_WINDOWS
		::_aligned_free(ptr);
#else
		::free(ptr);
#endif
	}

};

class AppUserOutputStream : public physx::PxErrorCallback
{
public:
	virtual void reportError(physx::PxErrorCode::Enum code, const char* message, const char* file, int line) 
	{

	}

};


static AppUserAllocator appAlloc;
static AppUserOutputStream appOutputStream;

void main(int argc,const char ** argv)
{
	PX_UNUSED(argc);
	PX_UNUSED(argv);

	physx::Foundation::createInstance(PX_PUBLIC_FOUNDATION_VERSION, appOutputStream, appAlloc);


	if ( argc == 1 )
	{
		printf("Usage: TestConvexDecomposition <wavefront.obj> (options)\r\n");
		printf("\r\n");
		printf("Options:\r\n");
		printf("\r\n");
		printf("-split				: Tests mesh splitting.\r\n");
		printf("-plane A B C D		: Specifies the plane equation to split the mesh by, if testing split only.\r\n");
		printf("-closed				: Indicates that the mesh should be closed when it is split.  Off by default; experimental.\r\n");
		printf("-depth <value>		: Specify the convex decomposition depth.\r\n");
		printf("-merge <value>		: Specify the merge threshold percentage.  Reasonable ranges 0-10.\r\n");
		printf("-concavity <value>	: Specify the concavity threshold as a percentage reasonable ranges 0-10.\r\n");
		printf("-hacd <concavity> <minCluster> : Use HACD (recommended).  Specify the concavity value for HACD (default 100) and the mininum number of clusters (hulls)\r\n");
		printf("-connect : Is using HACD; this specifies the connectivity distance.\r\n");
		printf("-maxhullverts <v>	: Specify the maxmium number of vertices in the output convex hulls.\r\n");
	}
	else
	{
		const char *wavefront = argv[1];

		bool			splitOnly = false;
		bool			closed = false;
		bool			useHACD = false;
		physx::PxF32	hacdConcavity = 100;
		physx::PxU32	hacdMinClusterSize = 10;
		physx::PxF32	connectionDistance = 0;

		physx::PxF32 plane[4] = { 1, 0, 0, 0 };
		physx::PxU32 depth = 5;
		physx::PxF32 mergePercentage = 3; //1;
		physx::PxF32 concavityPercentage = 3; //;
		physx::PxU32 maxHullVerts = 64;

		int scan = 2;
		while ( scan < argc )
		{
			const char *option = argv[scan];
			if ( strcmp(option,"-split") == 0 )
			{
				splitOnly = true;
				printf("Testing a single split operation.\r\n");
				scan++;
			}
			else if ( strcmp(option,"-plane") == 0 )
			{
				plane[0] = getFloatArg(scan+1,argc,argv);
				plane[1] = getFloatArg(scan+2,argc,argv);
				plane[2] = getFloatArg(scan+3,argc,argv);
				plane[3] = getFloatArg(scan+4,argc,argv);
				scan+=5;
			}
			else if ( strcmp(option,"-closed") == 0 )
			{
				closed = true;
				printf("Will produce closed split meshes.\r\n");
				scan++;
			}
			else if ( strcmp(option,"-depth") == 0 )
			{
				depth = getIntArg(scan+1,argc,argv);
				scan+=2;
			}
			else if ( strcmp(option,"-connect") == 0 )
			{
				connectionDistance = getFloatArg(scan+1,argc,argv);
				scan+=2;
			}
			else if ( strcmp(option,"-merge") == 0 )
			{
				mergePercentage = getFloatArg(scan+1,argc,argv);
				scan+=2;
			}
			else if ( strcmp(option,"-concavity") == 0 )
			{
				concavityPercentage = getFloatArg(scan+1,argc,argv);
				scan+=2;
			}
			else if ( strcmp(option,"-maxhullverts") == 0 )
			{
				maxHullVerts = getIntArg(scan+1,argc,argv);
				scan+=2;
			}
			else if ( strcmp(option,"-hacd")== 0)
			{
				useHACD = true;
				hacdConcavity = getFloatArg(scan+1,argc,argv);
				hacdMinClusterSize = getIntArg(scan+2,argc,argv);
				scan+=3;
			}
			else
			{
				printf("Unknown option: %s\r\n", option );
				scan++;
			}

		}

		CONVEX_DECOMPOSITION::gConvexDecomposition = CONVEX_DECOMPOSITION::createConvexDecomposition();
		if  ( CONVEX_DECOMPOSITION::gConvexDecomposition )
		{
			WavefrontObj obj;
			unsigned int tcount = obj.loadObj(wavefront,false);
			if ( tcount )
			{
				if ( splitOnly )
				{
					CONVEX_DECOMPOSITION::TriangleMesh input;
					CONVEX_DECOMPOSITION::TriangleMesh left;
					CONVEX_DECOMPOSITION::TriangleMesh right;
					input.mVcount = obj.mVertexCount;
					input.mVertices = obj.mVertices;
					input.mTriCount = obj.mTriCount;
					input.mIndices = (physx::PxU32 *)obj.mIndices;
					CONVEX_DECOMPOSITION::gConvexDecomposition->splitMesh(plane,input,left,right,closed);

					if ( left.mTriCount )
					{
						printf("Left Half of the split mesh has %d triangles.  Saving as 'left.obj'\r\n", left.mTriCount);
						WavefrontObj::saveObj("left.obj", left.mVcount, left.mVertices, left.mTriCount,(const int *) left.mIndices );
					}
					else
					{
						printf("No triangles on the left half of the split mesh.\r\n");
					}
					if ( right.mTriCount )
					{
						printf("Left Half of the split mesh has %d triangles.  Saving as 'right.obj'\r\n", right.mTriCount);
						WavefrontObj::saveObj("right.obj", right.mVcount, right.mVertices, right.mTriCount, (const int *)right.mIndices );
					}
					else
					{
						printf("No triangles on the right half of the split mesh.\r\n");
					}

					CONVEX_DECOMPOSITION::gConvexDecomposition->releaseTriangleMeshMemory(left);
					CONVEX_DECOMPOSITION::gConvexDecomposition->releaseTriangleMeshMemory(right);
				}
				else
				{
					CONVEX_DECOMPOSITION::DecompDesc desc;
					desc.mClosedSplit = closed;
					desc.mDepth		= depth;
					desc.mCpercent	= concavityPercentage;
					desc.mPpercent	= mergePercentage;
					desc.mTcount	= obj.mTriCount;
					desc.mVcount	= obj.mVertexCount;
					desc.mVertices	= obj.mVertices;
					desc.mIndices	= (physx::PxU32 *)obj.mIndices;
					desc.mUseHACD	= useHACD;
					desc.mConcavityHACD = hacdConcavity;
					desc.mMinClusterSizeHACD = hacdMinClusterSize;
					desc.mConnectionDistanceHACD = connectionDistance;


					printf("Performing convex decomposition.\r\n");

					physx::PxU32 count = CONVEX_DECOMPOSITION::gConvexDecomposition->performConvexDecomposition(desc);
					if ( count )
					{
						printf("Produced %d output convex hulls.\r\n", count );
						FILE *fph = fopen("ConvexDecomposition.obj", "wb");
						if ( fph )
						{
							fprintf(fph,"# Input mesh '%s' produced %d convex hulls.\r\n", wavefront, count );
							physx::PxU32 *baseVertex = new physx::PxU32[count];
							physx::PxU32 vertexCount = 0;
							for (physx::PxU32 i=0; i<count; i++)
							{
								baseVertex[i] = vertexCount;
								const CONVEX_DECOMPOSITION::ConvexResult &r = *CONVEX_DECOMPOSITION::gConvexDecomposition->getConvexResult(i);
								fprintf(fph,"## Hull %d has %d vertices.\r\n", i+1, r.mHullVcount );
								for (physx::PxU32 i=0; i<r.mHullVcount; i++)
								{
									const physx::PxF32 *p = &r.mHullVertices[i*3];
									fprintf(fph,"v %0.9f %0.9f %0.9f\r\n", p[0], p[1], p[2] );
								}
								vertexCount+=r.mHullVcount;
							}

							for (physx::PxU32 i=0; i<count; i++)
							{
								const CONVEX_DECOMPOSITION::ConvexResult &r = *CONVEX_DECOMPOSITION::gConvexDecomposition->getConvexResult(i);
								physx::PxU32 startVertex = baseVertex[i];
								fprintf(fph,"# Convex Hull %d contains %d triangles and %d vertices.  Starting vertex index is: %d It has a volume of: %0.9f\r\n", i+1, r.mHullTcount, r.mHullVcount, startVertex, r.mHullVolume );
								for (physx::PxU32 j=0; j<r.mHullTcount; j++)
								{
									physx::PxU32 i1 = r.mHullIndices[j*3+0]+startVertex+1;
									physx::PxU32 i2 = r.mHullIndices[j*3+1]+startVertex+1;
									physx::PxU32 i3 = r.mHullIndices[j*3+2]+startVertex+1;
									fprintf(fph,"f %d %d %d\r\n", i1, i2, i3 );
								}
							}
							fclose(fph);
							delete []baseVertex;
						}
						else
						{
							printf("Failed to open file 'ConvexDecomposition.obj' for output.\r\n");
						}
					}
					else
					{
						printf("Failed to produce any convex hull results!?\r\n");
					}

				}
			}
			else
			{
				printf("Failed to load Wavefront OBJ file '%s'\r\n",wavefront);
			}
		}
		else
		{
			printf("Failed to load the convex decomposition plugin DLL.\r\n");
		}
	}
}