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
|
//
// 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.
// Copyright (c) 2004-2008 AGEIA Technologies, Inc. All rights reserved.
// Copyright (c) 2001-2004 NovodeX AG. All rights reserved.
#ifndef PHYSX_SAMPLE_APPLICATION_H
#define PHYSX_SAMPLE_APPLICATION_H
#include "SamplePreprocessor.h"
#include "SampleApplication.h"
#include "SampleCamera.h"
#include "SampleCameraController.h"
#include "SampleAllocator.h"
#include "PxFiltering.h"
#include "RawLoader.h"
#include "RendererMeshContext.h"
#include "PxTkFPS.h"
#include "PxVisualizationParameter.h"
#include "PxTkRandom.h"
#include <PsThread.h>
#include <PsSync.h>
#include "PsHashMap.h"
#include "PsUtilities.h"
#include "SampleArray.h"
#if PX_WINDOWS
#include "task/PxTask.h"
#endif
#define PHYSX_VERSION_STRING PX_STRINGIZE(PX_PHYSICS_VERSION_MAJOR) "." PX_STRINGIZE(PX_PHYSICS_VERSION_MINOR)
#define SAMPLE_MEDIA_DIR "/PhysX/" PHYSX_VERSION_STRING "/Samples"
#define SAMPLE_OUTPUT_DIR "media" SAMPLE_MEDIA_DIR "/user"
namespace physx
{
class PxDefaultCpuDispatcher;
class PxPhysics;
class PxCooking;
class PxScene;
class PxGeometry;
class PxMaterial;
class PxRigidActor;
};
class RenderPhysX3Debug;
class RenderBaseActor;
class RenderMaterial;
class RenderMeshActor;
class RenderTexture;
class Stepper;
class Console;
class PhysXSampleApplication;
class PhysXSample;
class InputEventBuffer;
namespace Test
{
class TestGroup;
}
class PhysXSampleCreator
{
public:
virtual ~PhysXSampleCreator() {}
virtual PhysXSample* operator()(PhysXSampleApplication& app) const = 0;
};
typedef PhysXSampleCreator *SampleCreator;
typedef PhysXSample* (*FunctionCreator)(PhysXSampleApplication& app);
// typedef PhysXSample* (*SampleCreator)(PhysXSampleApplication& app);
struct SampleSetup
{
SampleSetup() :
mName (NULL),
mWidth (0),
mHeight (0),
mFullscreen (false)
{
}
const char* mName;
PxU32 mWidth;
PxU32 mHeight;
bool mFullscreen;
};
// Default materials created by PhysXSampleApplication
enum MaterialIndex
{
MATERIAL_GREY,
MATERIAL_RED,
MATERIAL_GREEN,
MATERIAL_BLUE,
MATERIAL_YELLOW,
MATERIAL_FLAT,
MATERIAL_COUNT,
};
template <typename Container>
void releaseAll(Container& container)
{
for (PxU32 i = 0; i < container.size(); ++i)
container[i]->release();
container.clear();
}
class PhysXSampleApplication : public SampleFramework::SampleApplication, public SampleAllocateable, public Ps::ThreadT<Ps::RawAllocator>
{
public:
using SampleAllocateable::operator new;
using SampleAllocateable::operator delete;
private:
friend class PhysXSample;
struct PvdParameters
{
char ip[256];
PxU32 port;
PxU32 timeout;
bool useFullPvdConnection;
PvdParameters()
: port(5425)
, timeout(10)
, useFullPvdConnection(true)
{
Ps::strlcpy(ip, 256, "127.0.0.1");
}
};
struct MenuKey
{
enum Enum
{
NONE,
ESCAPE,
SELECT,
NAVI_UP,
NAVI_DOWN,
NAVI_LEFT,
NAVI_RIGHT
};
};
// menu events
struct MenuType
{
enum Enum
{
NONE,
HELP,
SETTINGS,
VISUALIZATIONS,
TESTS
};
};
struct MenuTogglableItem
{
MenuTogglableItem(PxU32 c, const char* n) : toggleCommand(c), toggleState(false), name(n) {}
PxU32 toggleCommand;
bool toggleState;
const char* name;
};
public:
PhysXSampleApplication(const SampleFramework::SampleCommandLine& cmdline);
virtual ~PhysXSampleApplication();
///////////////////////////////////////////////////////////////////////////////
// PsThread interface
virtual void execute();
///////////////////////////////////////////////////////////////////////////////
// Implements SampleApplication/RendererWindow
virtual void onInit();
virtual void onShutdown();
virtual float tweakElapsedTime(float dtime);
virtual void onTickPreRender(float dtime);
virtual void onRender();
virtual void onTickPostRender(float dtime);
void onKeyDownEx(SampleFramework::SampleUserInput::KeyCode keyCode, PxU32 wParam);
void onAnalogInputEvent(const SampleFramework::InputEvent& , float val);
void onDigitalInputEvent(const SampleFramework::InputEvent& , bool val);
void onPointerInputEvent(const SampleFramework::InputEvent&, PxU32 x, PxU32 y, PxReal dx, PxReal dy, bool val);
virtual void onResize(PxU32 width, PxU32 height);
void baseTickPreRender(float dtime);
void baseTickPostRender(float dtime);
void baseResize(PxU32 width, PxU32 height);
///////////////////////////////////////////////////////////////////////////////
void customizeSample(SampleSetup&);
// void onSubstep(float dtime);
///////////////////////////////////////////////////////////////////////////////
void applyDefaultVisualizationSettings();
void saveCameraState();
void restoreCameraState();
// Camera functions
PX_FORCE_INLINE void setDefaultCameraController() { mCurrentCameraController = &mCameraController; mCameraController = DefaultCameraController();}
PX_FORCE_INLINE void resetDefaultCameraController() { mCameraController = DefaultCameraController(); }
PX_FORCE_INLINE void setCameraController(CameraController* c) { mCurrentCameraController = c; }
PX_FORCE_INLINE PxReal getTextAlpha1() const { return mTextAlphaHelp; }
PX_FORCE_INLINE PxReal getTextAlpha2() const { return mTextAlphaDesc; }
PX_FORCE_INLINE bool isPaused() const { return mPause; }
PX_FORCE_INLINE Camera& getCamera() { return mCamera; }
PX_FORCE_INLINE RenderPhysX3Debug* getDebugRenderer() const { return mDebugRenderer; }
PX_FORCE_INLINE Ps::MutexT<Ps::RawAllocator>& getInputMutex() { return mInputMutex; }
bool isConsoleActive() const;
void showCursor(bool show);
void setMouseCursorHiding(bool hide);
void setMouseCursorRecentering(bool recenter);
void handleMouseVisualization();
void updateEngine();
void setPvdParams(const SampleFramework::SampleCommandLine& cmdLine);
PX_FORCE_INLINE void registerLight(SampleRenderer::RendererLight* light) { mLights.push_back(light); }
void collectInputEvents(std::vector<const SampleFramework::InputEvent*>& inputEvents);
const char* inputInfoMsg(const char* firstPart,const char* secondPart, PxI32 inputEventId1, PxI32 inputEventId2);
const char* inputInfoMsg_Aor_BandC(const char* firstPart,const char* secondPart, PxI32 inputEventIdA, PxI32 inputEventIdB, PxI32 inputEventIdC);
const char* inputMoveInfoMsg(const char* firstPart,const char* secondPart, PxI32 inputEventId1, PxI32 inputEventId2,PxI32 inputEventId3,PxI32 inputEventId4);
void requestToClose() { mIsCloseRequested = true; }
bool isCloseRequested() { return mIsCloseRequested; }
private:
PxReal mTextAlphaHelp;
PxReal mTextAlphaDesc;
MenuType::Enum mMenuType;
std::vector<MenuTogglableItem> mMenuVisualizations;
size_t mMenuVisualizationsIndexSelected;
void setMenuVisualizations(MenuTogglableItem& togglableItem);
char m_Msg[512];
PxTransform mSavedView;
bool mIsCloseRequested;
protected:
Console* mConsole;
Camera mCamera;
DefaultCameraController mCameraController;
CameraController* mCurrentCameraController;
std::vector<SampleRenderer::RendererLight*> mLights;
RenderMaterial* mManagedMaterials[MATERIAL_COUNT];
RenderPhysX3Debug* mDebugRenderer;
bool mPause;
bool mOneFrameUpdate;
bool mSwitchSample;
bool mShowHelp;
bool mShowDescription;
bool mShowExtendedHelp;
volatile bool mHideMouseCursor;
InputEventBuffer* mInputEventBuffer;
Ps::MutexT<RawAllocator> mInputMutex;
bool mDrawScreenQuad;
SampleRenderer::RendererColor mScreenQuadTopColor;
SampleRenderer::RendererColor mScreenQuadBottomColor;
PvdParameters mPvdParams;
void updateCameraViewport(PxU32 w, PxU32 h);
bool initLogo();
private:
bool handleMenuKey(MenuKey::Enum menuKey);
void handleSettingMenuKey(MenuKey::Enum menuKey);
void refreshVisualizationMenuState(PxVisualizationParameter::Enum p);
void toggleDebugRenderer();
//-----------------------------------------------------------------------------
// PhysXSampleManager
//-----------------------------------------------------------------------------
public:
static bool registerSample(SampleCreator creator, const char* fullPath)
{
return addSample(getSampleTreeRoot(), creator, fullPath);
}
bool getNextSample();
void switchSample();
protected:
static Test::TestGroup* mSampleTreeRoot;
static Test::TestGroup& getSampleTreeRoot();
static bool addSample(Test::TestGroup& root, SampleCreator creator, const char* fullPath);
public:
bool mMenuExpand;
Test::TestGroup* mRunning;
Test::TestGroup* mSelected;
PhysXSample* mSample;
const char* mDefaultSamplePath;
};
const char* getSampleMediaFilename(const char* filename);
PxToolkit::BasicRandom& getSampleRandom();
PxErrorCallback& getSampleErrorCallback();
//=============================================================================
// macro REGISTER_SAMPLE
//-----------------------------------------------------------------------------
class SampleFunctionCreator : public PhysXSampleCreator
{
public:
SampleFunctionCreator(FunctionCreator func) : mFunc(func) {}
virtual PhysXSample* operator()(PhysXSampleApplication& app) const { return (*mFunc)(app); }
private:
FunctionCreator mFunc;
};
#define SAMPLE_CREATOR(className) create##className
#define SAMPLE_STARTER(className) className##Starter
#define SAMPLE_CREATOR_VAR(className) g##className##creator
#define REGISTER_SAMPLE(className, fullPath) \
static PhysXSample* SAMPLE_CREATOR(className)(PhysXSampleApplication& app) { \
return SAMPLE_NEW(className)(app); \
} \
static SampleFunctionCreator SAMPLE_CREATOR_VAR(className)(SAMPLE_CREATOR(className)); \
struct SAMPLE_STARTER(className) { \
SAMPLE_STARTER(className)() { \
PhysXSampleApplication::registerSample(&SAMPLE_CREATOR_VAR(className), fullPath); \
} \
} g##className##Starter;
///////////////////////////////////////////////////////////////////////////////
#endif
|