bgfx/examples/common/debugdraw/debugdraw.h

166 lines
3.2 KiB
C
Raw Normal View History

2016-02-26 09:20:24 +03:00
/*
2018-01-01 22:16:06 +03:00
* Copyright 2011-2018 Branimir Karadzic. All rights reserved.
2017-01-01 11:18:41 +03:00
* License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
2016-02-26 09:20:24 +03:00
*/
#ifndef DEBUGDRAW_H_HEADER_GUARD
#define DEBUGDRAW_H_HEADER_GUARD
#include <bx/allocator.h>
#include "../bounds.h"
struct Axis
{
enum Enum
{
X,
Y,
Z,
Count
};
};
struct DdVertex
{
float x, y, z;
};
struct SpriteHandle { uint16_t idx; };
inline bool isValid(SpriteHandle _handle) { return _handle.idx != UINT16_MAX; }
2016-02-26 09:20:24 +03:00
///
2016-03-25 02:16:56 +03:00
void ddInit(bool _depthTestLess = true, bx::AllocatorI* _allocator = NULL);
2016-02-26 09:20:24 +03:00
///
void ddShutdown();
///
SpriteHandle ddCreateSprite(uint16_t _width, uint16_t _height, const void* _data);
///
void ddDestroy(SpriteHandle _handle);
2016-02-26 09:20:24 +03:00
///
void ddBegin(uint8_t _viewId);
///
void ddEnd();
///
void ddPush();
///
void ddPop();
2016-03-03 10:09:45 +03:00
///
void ddSetState(bool _depthTest, bool _depthWrite, bool _clockwise);
2016-02-26 09:20:24 +03:00
///
void ddSetColor(uint32_t _abgr);
///
void ddSetLod(uint8_t _lod);
///
void ddSetWireframe(bool _wireframe);
///
void ddSetStipple(bool _stipple, float _scale = 1.0f, float _offset = 0.0f);
2016-12-14 08:58:18 +03:00
///
void ddSetSpin(float _spin);
2016-02-26 09:20:24 +03:00
///
void ddSetTransform(const void* _mtx);
///
void ddSetTranslate(float _x, float _y, float _z);
///
void ddMoveTo(float _x, float _y, float _z = 0.0f);
///
void ddMoveTo(const void* _pos);
///
void ddLineTo(float _x, float _y, float _z = 0.0f);
///
void ddLineTo(const void* _pos);
///
void ddClose();
///
void ddDraw(const Aabb& _aabb);
///
void ddDraw(const Cylinder& _cylinder);
///
void ddDraw(const Capsule& _capsule);
2016-02-26 09:20:24 +03:00
///
void ddDraw(const Disk& _disk);
///
void ddDraw(const Obb& _obb);
///
void ddDraw(const Sphere& _sphere);
///
void ddDraw(const Cone& _cone);
///
2018-01-10 04:14:27 +03:00
void ddDrawLineList(uint32_t _numVertices, const DdVertex* _vertices, uint32_t _numIndices = 0, const uint16_t* _indices = NULL);
///
void ddDrawTriList(uint32_t _numVertices, const DdVertex* _vertices, uint32_t _numIndices = 0, const uint16_t* _indices = NULL);
2016-02-26 09:20:24 +03:00
///
2016-03-03 10:09:45 +03:00
void ddDrawFrustum(const void* _viewProj);
2016-02-26 09:20:24 +03:00
///
void ddDrawArc(Axis::Enum _axis, float _x, float _y, float _z, float _radius, float _degrees);
///
2016-03-06 11:07:20 +03:00
void ddDrawCircle(const void* _normal, const void* _center, float _radius, float _weight = 0.0f);
2016-02-26 09:20:24 +03:00
///
2016-03-06 11:07:20 +03:00
void ddDrawCircle(Axis::Enum _axis, float _x, float _y, float _z, float _radius, float _weight = 0.0f);
2016-02-26 09:20:24 +03:00
2016-12-14 08:58:18 +03:00
///
void ddDrawQuad(const float* _normal, const float* _center, float _size);
///
void ddDrawQuad(SpriteHandle _handle, const float* _normal, const float* _center, float _size);
///
void ddDrawQuad(bgfx::TextureHandle _handle, const float* _normal, const float* _center, float _size);
2016-04-06 03:10:48 +03:00
///
2016-06-20 08:00:24 +03:00
void ddDrawCone(const void* _from, const void* _to, float _radius);
2016-04-06 03:10:48 +03:00
2016-04-07 08:21:46 +03:00
///
2017-11-21 08:43:00 +03:00
void ddDrawCylinder(const void* _from, const void* _to, float _radius);
2016-06-20 08:00:24 +03:00
///
void ddDrawCapsule(const void* _from, const void* _to, float _radius);
2016-04-07 08:21:46 +03:00
2016-02-26 09:20:24 +03:00
///
2016-06-16 06:28:54 +03:00
void ddDrawAxis(float _x, float _y, float _z, float _len = 1.0f, Axis::Enum _highlight = Axis::Count, float _thickness = 0.0f);
2016-02-26 09:20:24 +03:00
///
void ddDrawGrid(const void* _normal, const void* _center, uint32_t _size = 20, float _step = 1.0f);
///
void ddDrawGrid(Axis::Enum _axis, const void* _center, uint32_t _size = 20, float _step = 1.0f);
///
void ddDrawOrb(float _x, float _y, float _z, float _radius, Axis::Enum _highlight = Axis::Count);
#endif // DEBUGDRAW_H_HEADER_GUARD