mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 12:01:51 +00:00
50 lines
1.1 KiB
C++
50 lines
1.1 KiB
C++
#ifndef OPENMW_MWPHYSICS_HEIGHTFIELD_H
|
|
#define OPENMW_MWPHYSICS_HEIGHTFIELD_H
|
|
|
|
#include <osg/ref_ptr>
|
|
|
|
#include <LinearMath/btScalar.h>
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
class btCollisionObject;
|
|
class btHeightfieldTerrainShape;
|
|
|
|
namespace osg
|
|
{
|
|
class Object;
|
|
}
|
|
|
|
namespace MWPhysics
|
|
{
|
|
class PhysicsTaskScheduler;
|
|
|
|
class HeightField
|
|
{
|
|
public:
|
|
HeightField(const float* heights, int x, int y, int size, int verts, float minH, float maxH,
|
|
const osg::Object* holdObject, PhysicsTaskScheduler* scheduler);
|
|
~HeightField();
|
|
|
|
btCollisionObject* getCollisionObject();
|
|
const btCollisionObject* getCollisionObject() const;
|
|
const btHeightfieldTerrainShape* getShape() const;
|
|
|
|
private:
|
|
std::unique_ptr<btHeightfieldTerrainShape> mShape;
|
|
std::unique_ptr<btCollisionObject> mCollisionObject;
|
|
osg::ref_ptr<const osg::Object> mHoldObject;
|
|
#if BT_BULLET_VERSION < 310
|
|
std::vector<btScalar> mHeights;
|
|
#endif
|
|
|
|
PhysicsTaskScheduler* mTaskScheduler;
|
|
|
|
void operator=(const HeightField&);
|
|
HeightField(const HeightField&);
|
|
};
|
|
}
|
|
|
|
#endif
|