2#include "base/SharedPtr.h"
3#include "../base/BaseTypes.h"
12 ref class SpriteBatch;
13 ref class Manipulator;
14 ref class GameViewDrawHook;
16 ref class InternalCommandBufferHandle;
28 GameView(
const std::shared_ptr<kmyGfx::GameView>& ptr);
30 kmyGfx::GameView*
getNativePtr() {
return obj ? (*obj).get() :
nullptr; }
32 void draw(
bool swapbuffer,
float timeScale);
33 void preDraw(
float timeScale, Action<float>^ startFixedUpdate, Action<float>^ afterAnimate, Action<float>^ afterSimulate);
48 void setViewport(
int x,
int y,
int width,
int height);
65 void setDofParam(
float focalDistance,
float focalRange,
float radius);
68 void getImage(
int x,
int y,
int w,
int h, array<UINT32> ^buffer);
69 void getDepth(
int x,
int y,
int w,
int h, array<float>^ buffer);
70 void getNormal(
int x,
int y,
int w,
int h, array<UINT32>^ buffer);
75 void setFogParam(f32 start, f32 depthDensity, f32 heightFallOff);
76 void setSSAOParam(f32 radius, f32 minLimit, f32 maxLimit, f32 shadowScale,
int sampleCount, f32 contrast,
SharpKmyGfx::Color color,
SSAOALGORITHM algorithm,
SSAOBLURTYPE blurType,
int linearThresholdLevel,
float fadeDistance);
82 int pickupDetail(
float x,
float y, array<UINT16> ^idlist, array<SharpKmyMath::Vector3> ^wposlist, array<float> ^depthlist);
91 void pickupRect(
float left,
float top,
float right,
float bottom, System::Collections::Generic::List<UINT16>^ idlist,
bool ignoreTerrain,
bool ignoreManipulator);
192 bool _setSpriteBatch =
false;
194 bool _setCamera =
false;
197 bool _setDLPosture =
false;
199 bool _setDLColor =
false;
201 bool _setDLShadowColor =
false;
203 bool _setDLShadowVM =
false;
204 f32 _directionalLightShadowVolumeMargin;
205 bool _setDLShadowBias =
false;
206 f32 _directionalLightShadowBias;
207 bool _setDLShadowDistane =
false;
208 f32 _directionalLightShadowDistance;
209 bool _setCascadeStep =
false;
213 bool _setCascadeCount =
false;
214 int _cascadeCount = 4;
215 bool _setEnableCascadeViusalize =
false;
216 bool _enableCascadeVisualize =
false;
217 bool _setAmbientLight =
false;
219 bool _setViewport =
false;
224 bool _setViewportSize =
false;
225 int _viewportSizeWidth;
226 int _viewportSizeHeight;
227 bool _setDisplayID =
false;
228 unsigned int _displayID;
229 bool _setBackGroundColor =
false;
231 bool _setBloom =
false;
233 bool _setBloomParam =
false;
234 float _bloomParamApply;
235 float _bloomParamHilightThreshold;
236 bool _setAutoExposure =
false;
238 bool _setAutoExposureParam =
false;
239 float _autoExposureParamTargetBrightness;
240 float _autoExposureParamMinScale;
241 float _autoExposureParamMaxScale;
242 bool _setChromaticAbberation =
false;
243 bool _chromaticAbberation;
244 bool _setChromaticAbberationParam =
false;
245 float _chromaticAbberationParmSize;
246 bool _setDof =
false;
248 bool _setDofParam =
false;
249 float _dofParamSmoothStart;
250 float _dofParamSmoothRange;
251 float _dofParamRadius;
252 bool _setFxaa =
false;
254 bool _setReflectionMap =
false;
256 bool _setSkyBoxMaterial =
false;
257 System::Guid _skyBoxMaterial;
258 bool _setLutMap =
false;
259 System::Guid _lutMap;
260 bool _setFogColor =
false;
262 bool _setFogParam =
false;
264 f32 _fogParamDepthDensity;
265 f32 _fogParamHeightFallOff;
266 bool _setSSAOParam =
false;
267 f32 _ssaoParamRadius;
268 f32 _ssaoParamMinLimit;
269 f32 _ssaoParamMaxLimit;
270 f32 _ssaoParamShadowScle;
271 int _ssaoParamSampleCount;
272 f32 _ssaoParamContrast;
276 int _ssaoLinearThresholdLevel;
277 float _ssaoFadeDistance;
278 bool _setSSSSS =
false;
280 bool _setSSSSSParam =
false;
281 f32 _SSSSSParamRadius;
282 int _SSSSSParamSampleCount;
283 f32 _SSSSSParamApply;
284 bool _setShadowMapScale =
false;
285 float _shadowMapScale;
287 bool _setEnableVignette =
false;
288 bool _enableVignette;
289 bool _setVignette =
false;
291 bool _setIBLIntensity =
false;
293 bool _setBillboardLightModulation =
false;
294 float _billboardLightModulation;
295 bool _setReflectionIntensity =
false;
296 float _reflectionIntensity;
297 bool _setUsetDeferredLighting =
false;
298 bool _usetDeferredLighting;
300 bool _setSharpen =
false;
301 bool _sharpen =
false;
302 bool _setSharpenParam =
false;
303 float _sharpenParamStrength;
304 float _sharpenParamDistance;
306 void copy(settings% o)
308 _setSpriteBatch = o._setSpriteBatch;
309 _spriteBatch = o._spriteBatch;
310 _setCamera = o._setCamera;
311 _cameraProj = o._cameraProj;
312 _cameraView = o._cameraView;
313 _setDLPosture = o._setDLPosture;
314 _directionalLightPosture = o._directionalLightPosture;
315 _setDLColor = o._setDLColor;
316 _directionalLightColor = o._directionalLightColor;
317 _setDLShadowColor = o._setDLShadowColor;
318 _directionalLightShadowColor = o._directionalLightShadowColor;
319 _setDLShadowVM = o._setDLShadowVM;
320 _directionalLightShadowVolumeMargin = o._directionalLightShadowVolumeMargin;
321 _setDLShadowBias = o._setDLShadowBias;
322 _directionalLightShadowBias = o._directionalLightShadowBias;
323 _setDLShadowDistane = o._setDLShadowDistane;
324 _directionalLightShadowDistance = o._directionalLightShadowDistance;
325 _cascadeStep1 = o._cascadeStep1;
326 _cascadeStep2 = o._cascadeStep2;
327 _cascadeStep3 = o._cascadeStep3;
328 _cascadeCount = o._cascadeCount;
329 _enableCascadeVisualize = o._enableCascadeVisualize;
330 _setAmbientLight = o._setAmbientLight;
331 _ambientLight = o._ambientLight;
332 _setViewportSize = o._setViewportSize;
333 _viewportSizeWidth = o._viewportSizeWidth;
334 _viewportSizeHeight = o._viewportSizeHeight;
335 _setDisplayID = o._setDisplayID;
336 _displayID = o._displayID;
337 _setBackGroundColor = o._setBackGroundColor;
338 _backGroundColor = o._backGroundColor;
339 _setBloom = o._setBloom;
341 _setBloomParam = o._setBloomParam;
342 _bloomParamApply = o._bloomParamApply;
343 _bloomParamHilightThreshold = o._bloomParamHilightThreshold;
344 _setAutoExposure = o._setAutoExposure;
345 _autoExposure = o._autoExposure;
346 _setAutoExposureParam = o._setAutoExposureParam;
347 _autoExposureParamTargetBrightness = o._autoExposureParamTargetBrightness;
348 _autoExposureParamMinScale = o._autoExposureParamMinScale;
349 _autoExposureParamMaxScale = o._autoExposureParamMaxScale;
350 _setChromaticAbberation = o._setChromaticAbberation;
351 _chromaticAbberation = o._chromaticAbberation;
352 _setChromaticAbberationParam = o._setChromaticAbberationParam;
353 _chromaticAbberationParmSize = o._chromaticAbberationParmSize;
356 _setDofParam = o._setDofParam;
357 _dofParamSmoothStart = o._dofParamSmoothStart;
358 _dofParamSmoothRange = o._dofParamSmoothRange;
359 _dofParamRadius = o._dofParamRadius;
360 _setFxaa = o._setFxaa;
362 _setReflectionMap = o._setReflectionMap;
363 _reflectionMap = o._reflectionMap;
364 _setSkyBoxMaterial = o._setSkyBoxMaterial;
365 _skyBoxMaterial = o._skyBoxMaterial;
366 _setLutMap = o._setLutMap;
368 _setFogColor = o._setFogColor;
369 _fogColor = o._fogColor;
370 _setFogParam = o._setFogParam;
371 _fogParamStart = o._fogParamStart;
372 _fogParamDepthDensity = o._fogParamDepthDensity;
373 _fogParamHeightFallOff = o._fogParamHeightFallOff;
374 _setSSAOParam = o._setSSAOParam;
375 _ssaoParamRadius = o._ssaoParamRadius;
376 _ssaoParamMinLimit = o._ssaoParamMinLimit;
377 _ssaoParamMaxLimit = o._ssaoParamMaxLimit;
378 _ssaoParamShadowScle = o._ssaoParamShadowScle;
379 _ssaoParamSampleCount = o._ssaoParamSampleCount;
380 _ssaoParamContrast = o._ssaoParamContrast;
381 _ssaoParamColor = o._ssaoParamColor;
382 _setSSSSS = o._setSSSSS;
384 _setSSSSSParam = o._setSSSSSParam;
385 _SSSSSParamRadius = o._SSSSSParamRadius;
386 _SSSSSParamSampleCount = o._SSSSSParamSampleCount;
387 _SSSSSParamApply = o._SSSSSParamApply;
388 _setShadowMapScale = o._setShadowMapScale;
389 _shadowMapScale = o._shadowMapScale;
391 _setEnableVignette = o._setEnableVignette;
392 _enableVignette = o._enableVignette;
393 _setVignette = o._setVignette;
394 _vignatte = o._vignatte;
395 _setIBLIntensity = o._setIBLIntensity;
396 _IBLIntensity = o._IBLIntensity;
397 _setReflectionIntensity = o._setReflectionIntensity;
398 _reflectionIntensity = o._reflectionIntensity;
399 _setUsetDeferredLighting = o._setUsetDeferredLighting;
400 _usetDeferredLighting = o._usetDeferredLighting;
405 settings contextSaved;
Definition: GameViewDrawHook.h:17
Definition: GameView.h:19
virtual bool drawEnable()
Definition: GameView.h:21
Definition: GameView.h:25
void setShadowMapScale(float s)
Definition: GameView.cpp:1133
void setSelectionDrawEnabled(bool flg)
Definition: GameView.cpp:1004
void resetQualityAdjust()
Definition: GameView.h:118
void preDraw(float timeScale, Action< float >^ startFixedUpdate, Action< float >^ afterAnimate, Action< float >^ afterSimulate)
Definition: GameView.cpp:92
void setHiddenStencilColor(float r, float g, float b, float a)
Definition: GameView.h:142
void setPhysicsDebugDrawContactPoints(bool flg)
Definition: GameView.cpp:1018
bool XZPlaneHitTest(float u, float v, float yoffset, SharpKmyMath::Vector3 %hitpos)
Definition: GameView.cpp:924
void getTerrainNormal(float x, float y, SharpKmyMath::Vector3% nrm)
Definition: GameView.cpp:500
void baseImageCapture(bool flg)
Definition: GameView.cpp:1119
static Texture getBaseDepthTexture()
Definition: GameView.cpp:1096
static void setPerformanceMeterDrawMode(int mode)
Definition: GameView.h:155
void setDistanceFadeStart(float v)
Definition: GameView.h:109
void clearHoverHilightPickupID()
Definition: GameView.cpp:589
SharpKmyMath::Matrix4 getCameraView()
Definition: GameView.h:182
static GameView getMainGameView()
Definition: GameView.cpp:63
void showDevelopHint(bool flg)
Definition: GameView.h:176
void pickupRect(float left, float top, float right, float bottom, System::Collections::Generic::List< UINT16 >^ idlist, bool ignoreTerrain, bool ignoreManipulator)
Definition: GameView.cpp:535
Texture getCaptureColorTexture()
Definition: GameView.cpp:1074
void setChromaticAbberationParam(float size)
Definition: GameView.cpp:413
static void enableLimitFPS(bool flg)
Definition: GameView.cpp:46
void setVignette(float value)
Definition: GameView.cpp:644
void addDrawHook(GameViewDrawHook ^d)
Definition: GameView.cpp:1145
void addPhysics()
Definition: GameView.h:112
static int getCurrentGameView3DScreenWidth()
Definition: GameView.cpp:1473
void setShapenParam(float strength, float distance)
Definition: GameView.cpp:462
void setDirectionalLightShadowBias(f32 bias)
Definition: GameView.cpp:200
void setDirectionalLightPosture(SharpKmyMath::Matrix4^ posture)
Definition: GameView.cpp:152
static void setMainGameView(GameView^ gv)
Definition: GameView.cpp:58
Manipulator getManipulator()
Definition: GameView.cpp:957
static void windowsMessageEvent(IntPtr hWnd, UINT message, WPARAM wparam, LPARAM lparam)
Definition: GameView.cpp:1465
array< unsigned short > getHilightPicupIDs()
Definition: GameView.cpp:558
void setModelBoundSphereDrawType(ModelBoundSphereDrawType flg)
Definition: GameView.h:120
void setAmbientLight(SharpKmyGfx::Color color)
Definition: GameView.cpp:259
void setViewport(int x, int y, int width, int height)
Definition: GameView.cpp:271
void setSSSSSParam(f32 radius, int sampleCount, f32 apply)
Definition: GameView.cpp:896
~GameView()
Definition: GameView.cpp:29
void getCaptureFrame(array< UINT32 > ^color, array< UINT32 > ^depth)
Definition: GameView.cpp:792
void setViewportSize(int width, int height)
Definition: GameView.cpp:285
void enableChromaticAbberation(bool flg)
Definition: GameView.cpp:401
void enableBloom(bool flg)
Definition: GameView.cpp:350
SharpKmyMath::Vector2 getViewportSize()
Definition: GameView.cpp:298
void setCascadeCount(int num)
Definition: GameView.cpp:237
void setLutMap(System::Guid id)
Definition: GameView.cpp:620
void addSubGameView(GameView^ sub)
Definition: GameView.cpp:1046
void ignoreSuspendChecker()
Definition: GameView.h:141
void setFogParam(f32 start, f32 depthDensity, f32 heightFallOff)
Definition: GameView.cpp:844
void setPhysicsDebugDrawConstraints(bool flg)
Definition: GameView.cpp:1025
void enableSSSSS(bool flg)
Definition: GameView.cpp:884
void removeSubGameView(GameView^ sub)
Definition: GameView.h:130
void enableFxaa(bool flg)
Definition: GameView.cpp:475
void setBillboardLightModulation(float value)
Definition: GameView.cpp:668
void usetDeferredLighting(bool flg)
Definition: GameView.cpp:911
void setDirectionalLightShadowVolumeMargin(f32 margin)
Definition: GameView.cpp:188
void addPickupFrame(int size)
Definition: GameView.cpp:329
void setDirectionalLightShadowDistance(f32 distance)
Definition: GameView.cpp:212
void enableAsSubGameView(bool flg)
Definition: GameView.cpp:1054
void setCascadeStep(float s1, float s2, float s3)
Definition: GameView.cpp:224
static void setSpriteBatchToTaskGameView(SpriteBatch^ s)
Definition: GameView.cpp:963
void enableCascadeVisualize(bool flg)
Definition: GameView.cpp:248
int pickupDetail(float x, float y, array< UINT16 > ^idlist, array< SharpKmyMath::Vector3 > ^wposlist, array< float > ^depthlist)
Definition: GameView.cpp:511
void addDrawCommand(DrawEvent ev, InternalCommandBufferHandle^ icb)
Definition: GameView.cpp:1438
float getBlockElapsed(SharpKmyBase::PerformancePeriodType type)
Definition: GameView.cpp:1448
static void waitPreviousDrawingFinished()
Definition: GameView.cpp:117
void setPhysicsProcessEnabled(bool flag)
Definition: GameView.cpp:1032
void addManipulator()
Definition: GameView.h:114
static void setDrawSuspendChecker(GameViewDrawSuspendChecker^ body)
Definition: GameView.cpp:1422
void setDirectionalLightColor(SharpKmyGfx::Color color)
Definition: GameView.cpp:164
bool isDebugPause()
Definition: GameView.cpp:132
void enableVignette(bool flg)
Definition: GameView.cpp:632
static void setMaximumFPS(int fps)
Definition: GameView.cpp:52
SharpKmyPhysics::PhysicsBase getPhysics()
Definition: GameView.cpp:945
static void enableDraw(bool flg)
Definition: GameView.cpp:40
void save()
Definition: GameView.cpp:1188
void enableSharpen(bool flg)
Definition: GameView.cpp:451
Texture getCaptureDepthTexture()
Definition: GameView.cpp:1085
void restore()
Definition: GameView.cpp:1199
static void bootProgressMessage(System::String^ text)
Definition: GameView.cpp:989
GameView()
Definition: GameView.cpp:10
static GameViewDrawSuspendChecker s_checker
Definition: GameView.h:158
static bool isDrawSuspending()
Definition: GameView.cpp:1430
unsigned short pickup(float x, float y, SharpKmyMath::Vector3% wpos)
Definition: GameView.cpp:486
void addHilightPickupID(unsigned short id)
Definition: GameView.cpp:551
u32 getDisplayID()
Definition: GameView.h:51
void enableDynamicResolution(bool flg)
Definition: GameView.cpp:1126
void set3DGizmoDrawEnabled(bool flg)
Definition: GameView.cpp:997
void setDofParam(float focalDistance, float focalRange, float radius)
Definition: GameView.cpp:437
bool owning
Definition: GameView.h:169
void setCamera(SharpKmyMath::Matrix4^ proj, SharpKmyMath::Matrix4^ view)
Definition: GameView.cpp:139
static void setMaximumResolution(int w, int h)
Definition: GameView.cpp:972
void addHoverHilightPickupID(unsigned short id)
Definition: GameView.cpp:582
void clearSettings()
Definition: GameView.h:79
void enableDof(bool flg)
Definition: GameView.cpp:425
void setReflectionMap(Texture^ tex)
Definition: GameView.cpp:596
void setIBLIntensity(float value)
Definition: GameView.cpp:656
bool viewVolumeCheck(float x, float y, float z, float radius)
Definition: GameView.cpp:1039
void setDisplayID(unsigned int id)
Definition: GameView.cpp:305
void setReflectionIntensity(float value)
Definition: GameView.cpp:680
void postDraw(bool swapbuffer)
Definition: GameView.cpp:109
void removeDrawHook(GameViewDrawHook^ d)
Definition: GameView.cpp:1161
void enableAutoExposure(bool flg)
Definition: GameView.cpp:375
void setSpriteBatch(SpriteBatch^ s)
Definition: GameView.cpp:814
static GameView getTaskGameView()
Definition: GameView.cpp:979
void removeSubGameView(GameView^ sub, bool removeForce)
Definition: GameView.cpp:1061
void use2DGizmo()
Definition: GameView.h:101
void debugPause(bool flg)
Definition: GameView.cpp:125
void getNormal(int x, int y, int w, int h, array< UINT32 >^ buffer)
Definition: GameView.cpp:707
void setBackGroundColor(SharpKmyGfx::Color color)
Definition: GameView.cpp:317
void setBloomParam(float apply, float hilightThreshold)
Definition: GameView.cpp:362
void setFogColor(SharpKmyGfx::Color color)
Definition: GameView.cpp:832
void copyBaseRenderingEnviroment(GameView^ src)
Definition: GameView.cpp:1110
void draw(bool swapbuffer, float timeScale)
Definition: GameView.cpp:69
static Texture getPickupIDTexture()
Definition: GameView.cpp:1103
bool m_ignoreSuspendChecker
Definition: GameView.h:168
void getImage(int x, int y, int w, int h, array< UINT32 > ^buffer)
Definition: GameView.cpp:692
void setDistanceFadeEnable(bool flg)
Definition: GameView.h:108
void setSSAOParam(f32 radius, f32 minLimit, f32 maxLimit, f32 shadowScale, int sampleCount, f32 contrast, SharpKmyGfx::Color color, SSAOALGORITHM algorithm, SSAOBLURTYPE blurType, int linearThresholdLevel, float fadeDistance)
Definition: GameView.cpp:858
void setPhysicsDebugDrawEnabled(int flag)
Definition: GameView.cpp:1011
void clearHilightPickupID()
Definition: GameView.cpp:575
void setAutoExposureParam(float targetBrightness, float minScale, float maxScale)
Definition: GameView.cpp:387
SharpKmyMath::Matrix4 getCameraProj()
Definition: GameView.h:178
static void useAsyncCommandExec()
Definition: GameView.h:151
static void globalEnablePostFX(bool flg)
Definition: GameView.cpp:1179
void setDirectionalLightShadowColor(SharpKmyGfx::Color color)
Definition: GameView.cpp:176
int getFixedUpdateStepCount()
Definition: GameView.cpp:1456
void enableIconDrawer(bool enable)
Definition: GameView.h:174
kmyGfx::GameView * getNativePtr()
Definition: GameView.h:30
void showMiniMeter(bool flg)
Definition: GameView.h:175
static int getCurrentGameView3DScreenHeight()
Definition: GameView.cpp:1481
void getDepth(int x, int y, int w, int h, array< float >^ buffer)
Definition: GameView.cpp:722
void clearDrawHook()
Definition: GameView.cpp:1171
void removeCaptureFrame()
Definition: GameView.cpp:343
void addCaptureFrame(int width, int height)
Definition: GameView.cpp:336
void setSkyBoxMaterial(System::Guid mtl)
Definition: GameView.cpp:608
void createScreenShot(System::String^ path)
Definition: GameView.cpp:783
Definition: GameView.h:409
static void addParticleResourceForLoadTest(System::String^ path)
Definition: GameView.cpp:1413
Definition: InternalCommandBuffer.h:12
Definition: Manipulator.h:8
Definition: SpriteBatch.h:9
static Matrix4 identity()
Definition: Matrix4.h:101
PerformancePeriodType
Definition: BaseTypes.h:6
SSAOBLURTYPE
Definition: GfxTypes.h:220
DrawEvent
Definition: GfxTypes.h:52
SSAOALGORITHM
Definition: GfxTypes.h:213
ModelBoundSphereDrawType
Definition: GfxTypes.h:60
Definition: Billboard.h:6