mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-08 09:37:53 +00:00
103 lines
2.2 KiB
C++
103 lines
2.2 KiB
C++
#ifndef OPENMW_MWPHYSICS_PROJECTILE_H
|
|
#define OPENMW_MWPHYSICS_PROJECTILE_H
|
|
|
|
#include <atomic>
|
|
#include <memory>
|
|
#include <mutex>
|
|
|
|
#include <LinearMath/btVector3.h>
|
|
|
|
#include "ptrholder.hpp"
|
|
|
|
class btCollisionObject;
|
|
class btCollisionShape;
|
|
class btConvexShape;
|
|
|
|
namespace osg
|
|
{
|
|
class Vec3f;
|
|
}
|
|
|
|
namespace Resource
|
|
{
|
|
class BulletShape;
|
|
}
|
|
|
|
namespace MWPhysics
|
|
{
|
|
class PhysicsTaskScheduler;
|
|
class PhysicsSystem;
|
|
|
|
class Projectile final : public PtrHolder
|
|
{
|
|
public:
|
|
Projectile(const MWWorld::Ptr& caster, const osg::Vec3f& position, float radius, PhysicsTaskScheduler* scheduler, PhysicsSystem* physicssystem);
|
|
~Projectile() override;
|
|
|
|
btConvexShape* getConvexShape() const { return mConvexShape; }
|
|
|
|
void updateCollisionObjectPosition();
|
|
|
|
bool isActive() const
|
|
{
|
|
return mActive.load(std::memory_order_acquire);
|
|
}
|
|
|
|
MWWorld::Ptr getTarget() const;
|
|
|
|
MWWorld::Ptr getCaster() const;
|
|
void setCaster(const MWWorld::Ptr& caster);
|
|
const btCollisionObject* getCasterCollisionObject() const
|
|
{
|
|
return mCasterColObj;
|
|
}
|
|
|
|
void setHitWater()
|
|
{
|
|
mHitWater = true;
|
|
}
|
|
|
|
bool getHitWater() const
|
|
{
|
|
return mHitWater;
|
|
}
|
|
|
|
void hit(const btCollisionObject* target, btVector3 pos, btVector3 normal);
|
|
|
|
void setValidTargets(const std::vector<MWWorld::Ptr>& targets);
|
|
bool isValidTarget(const btCollisionObject* target) const;
|
|
|
|
btVector3 getHitPosition() const
|
|
{
|
|
return mHitPosition;
|
|
}
|
|
|
|
private:
|
|
|
|
std::unique_ptr<btCollisionShape> mShape;
|
|
btConvexShape* mConvexShape;
|
|
|
|
bool mHitWater;
|
|
std::atomic<bool> mActive;
|
|
MWWorld::Ptr mCaster;
|
|
const btCollisionObject* mCasterColObj;
|
|
const btCollisionObject* mHitTarget;
|
|
btVector3 mHitPosition;
|
|
btVector3 mHitNormal;
|
|
|
|
std::vector<const btCollisionObject*> mValidTargets;
|
|
|
|
mutable std::mutex mMutex;
|
|
|
|
PhysicsSystem *mPhysics;
|
|
PhysicsTaskScheduler *mTaskScheduler;
|
|
|
|
Projectile(const Projectile&);
|
|
Projectile& operator=(const Projectile&);
|
|
};
|
|
|
|
}
|
|
|
|
|
|
#endif
|