2017-07-19 23:20:32 +02:00
|
|
|
#pragma once
|
2011-09-07 23:06:51 +02:00
|
|
|
|
2013-08-09 06:57:18 +02:00
|
|
|
#include "lc_glwidget.h"
|
2014-05-03 23:16:48 +02:00
|
|
|
#include "camera.h"
|
2018-10-29 01:59:01 +01:00
|
|
|
#include "lc_viewsphere.h"
|
2014-05-18 01:03:05 +02:00
|
|
|
|
2013-08-09 06:57:18 +02:00
|
|
|
class View : public lcGLWidget
|
2011-09-07 23:06:51 +02:00
|
|
|
{
|
2020-12-13 19:33:42 +01:00
|
|
|
Q_OBJECT
|
|
|
|
|
2011-09-07 23:06:51 +02:00
|
|
|
public:
|
2014-12-08 08:32:39 +01:00
|
|
|
View(lcModel* Model);
|
2020-03-22 23:44:41 +01:00
|
|
|
~View();
|
2012-02-05 03:50:57 +01:00
|
|
|
|
2020-05-04 00:39:39 +02:00
|
|
|
View(const View&) = delete;
|
|
|
|
View& operator=(const View&) = delete;
|
|
|
|
|
2018-03-29 19:20:36 +02:00
|
|
|
void Clear()
|
|
|
|
{
|
|
|
|
mModel = nullptr;
|
|
|
|
mActiveSubmodelInstance = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
lcModel* GetModel() const
|
|
|
|
{
|
|
|
|
return mModel;
|
|
|
|
}
|
|
|
|
|
2018-10-14 01:45:14 +02:00
|
|
|
void SetTopSubmodelActive();
|
2018-03-29 19:20:36 +02:00
|
|
|
void SetSelectedSubmodelActive();
|
|
|
|
|
2015-04-27 02:47:31 +02:00
|
|
|
static void CreateResources(lcContext* Context);
|
|
|
|
static void DestroyResources(lcContext* Context);
|
|
|
|
|
2020-03-22 23:44:41 +01:00
|
|
|
void OnDraw() override;
|
|
|
|
void OnInitialUpdate() override;
|
|
|
|
void OnLeftButtonDown() override;
|
|
|
|
void OnLeftButtonUp() override;
|
|
|
|
void OnLeftButtonDoubleClick() override;
|
|
|
|
void OnMiddleButtonDown() override;
|
|
|
|
void OnMiddleButtonUp() override;
|
|
|
|
void OnRightButtonDown() override;
|
|
|
|
void OnRightButtonUp() override;
|
|
|
|
void OnBackButtonUp() override;
|
|
|
|
void OnForwardButtonUp() override;
|
|
|
|
void OnMouseMove() override;
|
2020-11-14 21:47:55 +01:00
|
|
|
void BeginDrag(lcDragState DragState) override;
|
|
|
|
void EndDrag(bool Accept) override;
|
2011-09-07 23:06:51 +02:00
|
|
|
|
2018-09-12 01:36:10 +02:00
|
|
|
void StartOrbitTracking();
|
2014-11-29 03:55:58 +01:00
|
|
|
void CancelTrackingOrClearSelection();
|
2014-11-30 18:53:09 +01:00
|
|
|
|
|
|
|
void SetProjection(bool Ortho);
|
|
|
|
void LookAt();
|
2018-01-15 20:35:15 +01:00
|
|
|
void MoveCamera(const lcVector3& Direction);
|
2019-02-10 01:30:11 +01:00
|
|
|
void Zoom(float Amount);
|
2014-05-27 00:58:08 +02:00
|
|
|
|
2014-11-25 01:51:34 +01:00
|
|
|
void RemoveCamera();
|
2015-12-04 21:32:10 +01:00
|
|
|
void ShowContextMenu() const;
|
2011-09-07 23:06:51 +02:00
|
|
|
|
2014-11-30 18:53:09 +01:00
|
|
|
lcVector3 GetMoveDirection(const lcVector3& Direction) const;
|
2017-11-13 04:38:07 +01:00
|
|
|
lcMatrix44 GetPieceInsertPosition(bool IgnoreSelected, PieceInfo* Info) const;
|
2016-03-03 01:04:49 +01:00
|
|
|
void GetRayUnderPointer(lcVector3& Start, lcVector3& End) const;
|
2017-11-13 04:38:07 +01:00
|
|
|
lcObjectSection FindObjectUnderPointer(bool PiecesOnly, bool IgnoreSelected) const;
|
2014-11-29 03:55:58 +01:00
|
|
|
lcArray<lcObject*> FindObjectsInBox(float x1, float y1, float x2, float y2) const;
|
2014-05-03 18:59:57 +02:00
|
|
|
|
2017-07-30 23:18:57 +02:00
|
|
|
bool BeginRenderToImage(int Width, int Height);
|
|
|
|
void EndRenderToImage();
|
|
|
|
|
|
|
|
QImage GetRenderImage() const
|
|
|
|
{
|
|
|
|
return mRenderImage;
|
|
|
|
}
|
|
|
|
|
2014-05-18 01:03:05 +02:00
|
|
|
protected:
|
2015-04-27 02:47:31 +02:00
|
|
|
static void CreateSelectMoveOverlayMesh(lcContext* Context);
|
|
|
|
|
2014-05-18 01:03:05 +02:00
|
|
|
void DrawSelectMoveOverlay();
|
|
|
|
void DrawRotateOverlay();
|
|
|
|
void DrawSelectZoomRegionOverlay();
|
|
|
|
void DrawRotateViewOverlay();
|
2014-08-24 00:56:59 +02:00
|
|
|
void DrawGrid();
|
2014-05-18 01:03:05 +02:00
|
|
|
|
|
|
|
void UpdateTrackTool();
|
2017-12-02 21:22:04 +01:00
|
|
|
bool IsTrackToolAllowed(lcTrackTool TrackTool, quint32 AllowedTransforms) const;
|
2016-04-23 02:17:33 +02:00
|
|
|
lcTrackTool GetOverrideTrackTool(Qt::MouseButton Button) const;
|
2014-05-18 01:03:05 +02:00
|
|
|
float GetOverlayScale() const;
|
|
|
|
void StopTracking(bool Accept);
|
2016-05-09 03:59:10 +02:00
|
|
|
void OnButtonDown(lcTrackButton TrackButton);
|
2017-08-05 21:02:45 +02:00
|
|
|
lcMatrix44 GetTileProjectionMatrix(int CurrentRow, int CurrentColumn, int CurrentTileWidth, int CurrentTileHeight) const;
|
2014-05-18 01:03:05 +02:00
|
|
|
|
2014-05-27 00:58:08 +02:00
|
|
|
lcDragState mDragState;
|
2018-02-06 23:47:11 +01:00
|
|
|
bool mTrackToolFromOverlay;
|
2017-11-13 04:38:07 +01:00
|
|
|
lcVector3 mMouseDownPosition;
|
|
|
|
PieceInfo* mMouseDownPiece;
|
2017-07-30 23:18:57 +02:00
|
|
|
QImage mRenderImage;
|
2017-12-29 15:50:18 +01:00
|
|
|
std::pair<lcFramebuffer, lcFramebuffer> mRenderFramebuffer;
|
2018-10-29 01:59:01 +01:00
|
|
|
lcViewSphere mViewSphere;
|
2015-04-14 06:14:10 +02:00
|
|
|
|
2015-04-26 20:14:33 +02:00
|
|
|
lcVertexBuffer mGridBuffer;
|
2015-04-14 06:14:10 +02:00
|
|
|
int mGridSettings[7];
|
2015-04-27 02:47:31 +02:00
|
|
|
|
|
|
|
static lcVertexBuffer mRotateMoveVertexBuffer;
|
|
|
|
static lcIndexBuffer mRotateMoveIndexBuffer;
|
2011-09-07 23:06:51 +02:00
|
|
|
};
|
|
|
|
|