2011-09-07 21:06:51 +00:00
|
|
|
#ifndef _VIEW_H_
|
|
|
|
#define _VIEW_H_
|
|
|
|
|
2013-08-09 04:57:18 +00:00
|
|
|
#include "lc_glwidget.h"
|
2014-05-03 21:16:48 +00:00
|
|
|
#include "camera.h"
|
2014-05-17 23:03:05 +00:00
|
|
|
#include "project.h"
|
2011-09-07 21:06:51 +00:00
|
|
|
|
|
|
|
class Project;
|
|
|
|
|
2014-05-17 23:03:05 +00:00
|
|
|
enum lcTrackButton
|
|
|
|
{
|
|
|
|
LC_TRACKBUTTON_NONE,
|
|
|
|
LC_TRACKBUTTON_LEFT,
|
|
|
|
LC_TRACKBUTTON_MIDDLE,
|
|
|
|
LC_TRACKBUTTON_RIGHT
|
|
|
|
};
|
|
|
|
|
|
|
|
enum lcTrackTool
|
|
|
|
{
|
|
|
|
LC_TRACKTOOL_NONE,
|
|
|
|
LC_TRACKTOOL_INSERT,
|
|
|
|
LC_TRACKTOOL_POINTLIGHT,
|
|
|
|
LC_TRACKTOOL_SPOTLIGHT,
|
|
|
|
LC_TRACKTOOL_CAMERA,
|
|
|
|
LC_TRACKTOOL_SELECT,
|
|
|
|
LC_TRACKTOOL_MOVE_X,
|
|
|
|
LC_TRACKTOOL_MOVE_Y,
|
|
|
|
LC_TRACKTOOL_MOVE_Z,
|
|
|
|
LC_TRACKTOOL_MOVE_XY,
|
|
|
|
LC_TRACKTOOL_MOVE_XZ,
|
|
|
|
LC_TRACKTOOL_MOVE_YZ,
|
|
|
|
LC_TRACKTOOL_MOVE_XYZ,
|
|
|
|
LC_TRACKTOOL_ROTATE_X,
|
|
|
|
LC_TRACKTOOL_ROTATE_Y,
|
|
|
|
LC_TRACKTOOL_ROTATE_Z,
|
|
|
|
LC_TRACKTOOL_ROTATE_XY,
|
|
|
|
LC_TRACKTOOL_ROTATE_XYZ,
|
|
|
|
LC_TRACKTOOL_ERASER,
|
|
|
|
LC_TRACKTOOL_PAINT,
|
|
|
|
LC_TRACKTOOL_ZOOM,
|
|
|
|
LC_TRACKTOOL_PAN,
|
|
|
|
LC_TRACKTOOL_ORBIT_X,
|
|
|
|
LC_TRACKTOOL_ORBIT_Y,
|
|
|
|
LC_TRACKTOOL_ORBIT_XY,
|
|
|
|
LC_TRACKTOOL_ROLL,
|
|
|
|
LC_TRACKTOOL_ZOOM_REGION
|
|
|
|
};
|
|
|
|
|
2014-05-26 22:58:08 +00:00
|
|
|
enum lcDragState
|
|
|
|
{
|
|
|
|
LC_DRAGSTATE_NONE,
|
|
|
|
LC_DRAGSTATE_PIECE
|
|
|
|
// LC_DRAGSTATE_COLOR
|
|
|
|
};
|
|
|
|
|
2013-08-09 04:57:18 +00:00
|
|
|
class View : public lcGLWidget
|
2011-09-07 21:06:51 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-08-09 04:57:18 +00:00
|
|
|
View(Project *project);
|
2012-02-05 02:50:57 +00:00
|
|
|
virtual ~View();
|
|
|
|
|
|
|
|
void OnDraw();
|
|
|
|
void OnInitialUpdate();
|
2013-08-09 04:57:18 +00:00
|
|
|
void OnUpdateCursor();
|
|
|
|
void OnLeftButtonDown();
|
|
|
|
void OnLeftButtonUp();
|
|
|
|
void OnLeftButtonDoubleClick();
|
|
|
|
void OnMiddleButtonDown();
|
|
|
|
void OnMiddleButtonUp();
|
|
|
|
void OnRightButtonDown();
|
|
|
|
void OnRightButtonUp();
|
|
|
|
void OnMouseMove();
|
|
|
|
void OnMouseWheel(float Direction);
|
2011-09-07 21:06:51 +00:00
|
|
|
|
2014-05-26 22:58:08 +00:00
|
|
|
void BeginPieceDrag();
|
|
|
|
void EndPieceDrag(bool Accept);
|
|
|
|
|
2014-08-07 15:22:33 +00:00
|
|
|
void SetCamera(lcCamera* camera, bool ForceCopy);
|
2012-08-20 04:05:56 +00:00
|
|
|
void SetDefaultCamera();
|
2014-05-03 01:22:24 +00:00
|
|
|
lcMatrix44 GetProjectionMatrix() const;
|
2012-07-31 05:27:40 +00:00
|
|
|
LC_CURSOR_TYPE GetCursor() const;
|
2011-09-07 21:06:51 +00:00
|
|
|
|
2014-05-03 16:59:57 +00:00
|
|
|
lcObjectSection FindObjectUnderPointer(bool PiecesOnly) const;
|
|
|
|
lcArray<lcObjectSection> FindObjectsInBox(float x1, float y1, float x2, float y2) const;
|
|
|
|
|
2014-05-17 23:03:05 +00:00
|
|
|
Project* mProject;
|
|
|
|
lcCamera* mCamera;
|
2013-12-17 02:43:16 +00:00
|
|
|
|
2014-05-03 06:08:52 +00:00
|
|
|
lcVector3 ProjectPoint(const lcVector3& Point) const
|
|
|
|
{
|
|
|
|
int Viewport[4] = { 0, 0, mWidth, mHeight };
|
|
|
|
return lcProjectPoint(Point, mCamera->mWorldView, GetProjectionMatrix(), Viewport);
|
|
|
|
}
|
|
|
|
|
|
|
|
lcVector3 UnprojectPoint(const lcVector3& Point) const
|
|
|
|
{
|
|
|
|
int Viewport[4] = { 0, 0, mWidth, mHeight };
|
|
|
|
return lcUnprojectPoint(Point, mCamera->mWorldView, GetProjectionMatrix(), Viewport);
|
|
|
|
}
|
|
|
|
|
|
|
|
void UnprojectPoints(lcVector3* Points, int NumPoints) const
|
|
|
|
{
|
|
|
|
int Viewport[4] = { 0, 0, mWidth, mHeight };
|
|
|
|
lcUnprojectPoints(Points, NumPoints, mCamera->mWorldView, GetProjectionMatrix(), Viewport);
|
|
|
|
}
|
2014-05-17 23:03:05 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void DrawSelectMoveOverlay();
|
|
|
|
void DrawRotateOverlay();
|
|
|
|
void DrawSelectZoomRegionOverlay();
|
|
|
|
void DrawRotateViewOverlay();
|
2014-08-23 22:56:59 +00:00
|
|
|
void DrawGrid();
|
|
|
|
void DrawAxes();
|
2014-05-17 23:03:05 +00:00
|
|
|
void DrawViewport();
|
|
|
|
|
|
|
|
void UpdateTrackTool();
|
|
|
|
lcTool GetCurrentTool() const;
|
|
|
|
float GetOverlayScale() const;
|
|
|
|
void StartTracking(lcTrackButton TrackButton);
|
|
|
|
void StopTracking(bool Accept);
|
|
|
|
|
2014-05-26 22:58:08 +00:00
|
|
|
lcDragState mDragState;
|
2014-05-17 23:03:05 +00:00
|
|
|
lcTrackButton mTrackButton;
|
|
|
|
lcTrackTool mTrackTool;
|
|
|
|
int mMouseDownX;
|
|
|
|
int mMouseDownY;
|
2014-05-26 22:58:08 +00:00
|
|
|
|
|
|
|
friend class Project;
|
2011-09-07 21:06:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _VIEW_H_
|