leocad/common/lc_viewsphere.h

55 lines
1.1 KiB
C
Raw Normal View History

2018-08-20 05:27:58 +02:00
#pragma once
#include "lc_math.h"
#include "lc_context.h"
2018-08-20 05:27:58 +02:00
#include <bitset>
2020-12-05 19:29:39 +01:00
enum class lcViewSphereLocation
{
TopLeft,
TopRight,
BottomLeft,
BottomRight
};
2018-10-29 01:59:01 +01:00
class lcViewSphere
2018-08-20 05:27:58 +02:00
{
public:
2020-12-25 19:54:33 +01:00
lcViewSphere(lcView* View);
2018-08-20 05:27:58 +02:00
void Draw();
bool OnMouseMove();
bool OnLeftButtonUp();
bool OnLeftButtonDown();
bool IsDragging() const;
2018-08-20 05:27:58 +02:00
static void CreateResources(lcContext* Context);
static void DestroyResources(lcContext* Context);
2018-10-29 01:59:01 +01:00
2018-08-20 05:27:58 +02:00
protected:
2020-12-05 19:29:39 +01:00
void UpdateSettings();
2018-08-20 05:27:58 +02:00
lcMatrix44 GetViewMatrix() const;
lcMatrix44 GetProjectionMatrix() const;
std::bitset<6> GetIntersectionFlags(lcVector3& Intersection) const;
2018-08-20 05:27:58 +02:00
2020-12-25 19:54:33 +01:00
lcView* const mView = nullptr;
2020-12-05 19:29:39 +01:00
int mSize = 1;
bool mEnabled = false;
2020-12-05 19:29:39 +01:00
lcViewSphereLocation mLocation = lcViewSphereLocation::TopRight;
2020-12-05 17:45:29 +01:00
int mMouseDownX = 0;
int mMouseDownY = 0;
bool mMouseDown = false;
2020-12-05 19:29:39 +01:00
lcVector3 mIntersection;
std::bitset<6> mIntersectionFlags;
2018-10-29 01:59:01 +01:00
static lcTexture* mTexture;
static lcVertexBuffer mVertexBuffer;
static lcIndexBuffer mIndexBuffer;
static const float mRadius;
2019-01-20 05:04:08 +01:00
static const float mHighlightRadius;
static const int mSubdivisions;
2018-08-20 05:27:58 +02:00
};