source: git/src/gfxcore.h @ a405bc1

RELEASE/1.2debug-cidebug-ci-sanitisersstereowalls-data
Last change on this file since a405bc1 was a405bc1, checked in by Olly Betts <olly@…>, 11 years ago

src/: IMG_HOSTED no longer affects the img API at all.

  • Property mode set to 100644
File size: 14.4 KB
RevLine 
[5809313]1//
2//  gfxcore.h
3//
4//  Core drawing code for Aven.
5//
[f4c5932]6//  Copyright (C) 2000-2001,2002,2005 Mark R. Shinwell.
[a405bc1]7//  Copyright (C) 2001-2004,2005,2006,2007,2010,2011,2012,2013 Olly Betts
[887c26e]8//  Copyright (C) 2005 Martin Green
[5809313]9//
10//  This program is free software; you can redistribute it and/or modify
11//  it under the terms of the GNU General Public License as published by
12//  the Free Software Foundation; either version 2 of the License, or
13//  (at your option) any later version.
14//
15//  This program is distributed in the hope that it will be useful,
16//  but WITHOUT ANY WARRANTY; without even the implied warranty of
17//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18//  GNU General Public License for more details.
19//
20//  You should have received a copy of the GNU General Public License
21//  along with this program; if not, write to the Free Software
[5940815]22//  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
[5809313]23//
24
25#ifndef gfxcore_h
26#define gfxcore_h
27
[7aa15c0]28#include <float.h>
29
[a405bc1]30#include "img_hosted.h"
[db36155]31
[5876fcb]32#include "guicontrol.h"
[4a0e6b35]33#include "vector3.h"
[5809313]34#include "wx.h"
[33b2094]35#include "gla.h"
[3ddcad8]36
[156dc16]37#include <list>
[3ddcad8]38#include <utility>
39#include <vector>
[5809313]40
[3ddcad8]41using namespace std;
[003d953]42
[137bf99]43class MainFrm;
[c61aa79]44class traverse;
[5809313]45
[b38cd93]46// Mac OS X headers pollute the global namespace with generic names like
47// "class Point", which clashes with our "class Point".  So for __WXMAC__
[025e84d]48// put our class in a namespace and define Point as a macro.
[b38cd93]49#ifdef __WXMAC__
50namespace svx {
51#endif
52
[d67450e]53class Point : public Vector3 {
[4a0e6b35]54  public:
[cd6ea75]55    Point() {}
[d67450e]56    Point(const Vector3 & v) : Vector3(v) { }
57    Point(const img_point & pt) : Vector3(pt.x, pt.y, pt.z) { }
[4a0e6b35]58    Double GetX() const { return x; }
59    Double GetY() const { return y; }
60    Double GetZ() const { return z; }
[d67450e]61    void Invalidate() { x = DBL_MAX; }
62    bool IsValid() const { return x != DBL_MAX; }
[2a02de2]63};
64
[b38cd93]65#ifdef __WXMAC__
66}
[025e84d]67#define Point svx::Point
[b38cd93]68#endif
69
[ee05463]70class XSect;
[39e460c9]71class LabelInfo;
[d4650b3]72class PointInfo;
[6a4cdcb6]73class MovieMaker;
[39e460c9]74
[4a0e6b35]75class PresentationMark : public Point {
76  public:
[1690fa9]77    Double angle, tilt_angle;
78    Double scale;
[49ce5b0]79    Double time;
[4a0e6b35]80    PresentationMark() : Point(), angle(0), tilt_angle(0), scale(0), time(0)
[1690fa9]81        { }
[d67450e]82    PresentationMark(const Vector3 & v, Double angle_, Double tilt_angle_,
83                     Double scale_, Double time_ = 0)
84        : Point(v), angle(angle_), tilt_angle(tilt_angle_), scale(scale_),
85          time(time_)
[1690fa9]86        { }
87    bool is_valid() const { return scale > 0; }
88};
89
[5293c84]90enum {
91    COLOUR_BY_NONE,
92    COLOUR_BY_DEPTH,
93    COLOUR_BY_DATE,
[fcc3741]94    COLOUR_BY_ERROR,
95    COLOUR_BY_LIMIT_ // Leave this last.
[5293c84]96};
97
98enum {
99    UPDATE_NONE,
100    UPDATE_BLOBS,
101    UPDATE_BLOBS_AND_CROSSES
102};
[9cf3688]103
[8666fc7]104enum {
105      SPLAYS_HIDE,
106      SPLAYS_SHOW_FADED,
107      SPLAYS_SHOW_NORMAL,
108};
109
[33b2094]110class GfxCore : public GLACanvas {
[5b7164d]111    Double m_Scale;
[e2c1671]112    int m_ScaleBarWidth;
[42adb19]113
[d2fcc9b]114    typedef enum {
[fe665c4]115        LIST_COMPASS,
116        LIST_CLINO,
117        LIST_CLINO_BACK,
[9c37beb]118        LIST_SCALE_BAR,
[e2ea75a]119        LIST_DEPTH_KEY,
120        LIST_DATE_KEY,
121        LIST_ERROR_KEY,
[d2fcc9b]122        LIST_UNDERGROUND_LEGS,
123        LIST_TUBES,
124        LIST_SURFACE_LEGS,
[37d7084]125        LIST_BLOBS,
[8bd480e]126        LIST_CROSSES,
[37d7084]127        LIST_GRID,
[c6d5c1c]128        LIST_SHADOW,
129        LIST_LIMIT_ // Leave this last.
[d2fcc9b]130    } drawing_list;
[7aa15c0]131
[97ea48d]132    static const int NUM_COLOUR_BANDS = 13;
133
[e2c1671]134public:
135    typedef enum {
136        CURSOR_DEFAULT,
137        CURSOR_POINTING_HAND,
138        CURSOR_DRAGGING_HAND,
139        CURSOR_HORIZONTAL_RESIZE,
140        CURSOR_ROTATE_HORIZONTALLY,
141        CURSOR_ROTATE_VERTICALLY,
142        CURSOR_ROTATE_EITHER_WAY,
[ecf2d23]143        CURSOR_ZOOM,
144        CURSOR_ZOOM_ROTATE
[e2c1671]145    } cursor;
146
147private:
[5876fcb]148    GUIControl* m_Control;
[33b2094]149    char* m_LabelGrid;
[137bf99]150    MainFrm* m_Parent;
[5809313]151    bool m_DoneFirstShow;
[c6d95d8]152    Double m_TiltAngle;
153    Double m_PanAngle;
[5809313]154    bool m_Rotating;
[c6d95d8]155    Double m_RotationStep;
[3d00693]156    int m_SwitchingTo;
[5809313]157    bool m_Crosses;
158    bool m_Legs;
[8666fc7]159    int m_Splays;
[5809313]160    bool m_Names;
161    bool m_Scalebar;
[97ea48d]162    bool m_ColourKey;
[5809313]163    bool m_OverlappingNames;
164    bool m_Compass;
[c300a04]165    bool m_Clino;
[33b2094]166    bool m_Tubes;
[da6c802]167    int m_ColourBy;
[a7708927]168
169    bool m_HaveData;
[b56df45]170    bool m_MouseOutsideCompass;
171    bool m_MouseOutsideElev;
[e8bc148]172    bool m_Surface;
[fe444b8]173    bool m_Entrances;
174    bool m_FixedPts;
175    bool m_ExportedPts;
[c1cf79d]176    bool m_Grid;
[f4c5932]177    bool m_BoundingBox;
[fa42426]178
[33b2094]179    bool m_Degrees;
180    bool m_Metric;
181
[fa42426]182    list<LabelInfo*> *m_PointGrid;
[dfe4454c]183    bool m_HitTestGridValid;
[156dc16]184
[c00c6713]185    bool m_here_is_temporary;
[ef07952]186    Point m_here, m_there;
[156dc16]187
[a8e9fde]188    wxStopWatch timer;
189    long drawtime;
[9cf3688]190
[0e69efe]191    GLAPen * m_Pens;
192
[1690fa9]193#define PLAYING 1
194    int presentation_mode; // for now, 0 => off, PLAYING => continuous play
[128fac4]195    bool pres_reverse;
196    double pres_speed;
[1690fa9]197    PresentationMark next_mark;
198    double next_mark_time;
[128fac4]199    double this_mark_total;
[6a4cdcb6]200
[75d4a2b]201    MovieMaker * movie;
[6a4cdcb6]202
[e2c1671]203    cursor current_cursor;
204
[7cdb1c3]205    // The legends for each entry in the colour key.
206    wxString key_legends[NUM_COLOUR_BANDS];
207
[fcc3741]208    wxPoint key_lowerleft[COLOUR_BY_LIMIT_];
[d43fa84]209
[d67450e]210    void PlaceVertexWithColour(const Vector3 &v, Double factor = 1.0);
[b839829]211    void PlaceVertexWithColour(const Vector3 & v, GLint tex_x, GLint tex_y,
212                               Double factor);
213    void SetDepthColour(Double z, Double factor);
[d67450e]214    void PlaceVertexWithDepthColour(const Vector3 & v, Double factor = 1.0);
[b839829]215    void PlaceVertexWithDepthColour(const Vector3 & v, GLint tex_x, GLint tex_y, Double factor);
[da6c802]216
[1ee204e]217    void SetColourFromDate(int date, Double factor);
[c61aa79]218    void SetColourFromError(double E, Double factor);
[d4650b3]219
[1eeb55a]220    int GetClinoOffset() const;
[fe665c4]221    void DrawTick(int angle_cw);
[d67450e]222    void DrawArrow(gla_colour col1, gla_colour col2);
[5809313]223
[384534c]224    void SkinPassage(vector<XSect> & centreline, bool draw = true);
[33b2094]225
[d2fcc9b]226    virtual void GenerateList(unsigned int l);
[33b2094]227    void GenerateDisplayList();
[9eb58d0]228    void GenerateDisplayListTubes();
[33b2094]229    void GenerateDisplayListSurface();
[37d7084]230    void GenerateDisplayListShadow();
[d9b3270]231    void GenerateBlobsDisplayList();
[6747314]232
233    void DrawIndicators();
[33b2094]234
[5809313]235    void TryToFreeArrays();
236    void FirstShow();
[84cab34]237
[9c37beb]238    void DrawScaleBar();
[825bdff]239    void DrawColourKey(int num_bands, const wxString & other, const wxString & units);
[e2ea75a]240    void DrawDepthKey();
241    void DrawDateKey();
242    void DrawErrorKey();
[fe665c4]243    void DrawCompass();
244    void DrawClino();
245    void DrawClinoBack();
[6606406]246    void Draw2dIndicators();
[c1cf79d]247    void DrawGrid();
[6606406]248
[84cab34]249    void NattyDrawNames();
250    void SimpleDrawNames();
251
[de7a879]252    void DefaultParameters();
[5809313]253
[0e864da5]254    void Repaint();
255
[dfe4454c]256    void CreateHitTestGrid();
[421b7d2]257
[1eeb55a]258    int GetCompassXPosition() const;
259    int GetClinoXPosition() const;
260    int GetIndicatorYPosition() const;
261    int GetIndicatorRadius() const;
[5876fcb]262
[eff44b9]263    void ToggleFlag(bool* flag, int update = UPDATE_NONE);
[5876fcb]264
[0e69efe]265    GLAPen& GetPen(int band) const {
[97ea48d]266        assert(band >= 0 && band < NUM_COLOUR_BANDS);
[0e69efe]267        return m_Pens[band];
268    }
269
[97ea48d]270    GLAPen& GetSurfacePen() const { return m_Pens[NUM_COLOUR_BANDS]; }
[0e69efe]271
[97ea48d]272    int GetNumColourBands() const { return NUM_COLOUR_BANDS; }
[0e69efe]273
[f4c5932]274    void DrawShadowedBoundingBox();
275    void DrawBoundingBox();
[ad661cc]276
[5809313]277public:
[5876fcb]278    GfxCore(MainFrm* parent, wxWindow* parent_window, GUIControl* control);
[5809313]279    ~GfxCore();
280
[0c6bf5e8]281    void Initialise(bool same_file);
[8000d8f]282    void InitialiseTerrain();
[a87b1f7]283
[429465a]284    void UpdateBlobs();
[fa42426]285    void ForceRefresh();
[156dc16]286
[0580c6a]287    void RefreshLine(const Point& a, const Point& b, const Point& c);
[9cf3688]288
[fd6e0d5]289    void SetHere();
[82c3731]290    void SetHere(const Point &p);
[fd6e0d5]291    void SetThere();
[82c3731]292    void SetThere(const Point &p);
[fd6e0d5]293
[82c3731]294    void CentreOn(const Point &p);
[156dc16]295
[5876fcb]296    void TranslateCave(int dx, int dy);
297    void TiltCave(Double tilt_angle);
298    void TurnCave(Double angle);
299    void TurnCaveTo(Double angle);
300
301    void OnPaint(wxPaintEvent&);
302    void OnSize(wxSizeEvent& event);
[6e4a123]303    void OnIdle(wxIdleEvent& event);
[5876fcb]304
305    void OnMouseMove(wxMouseEvent& event) { m_Control->OnMouseMove(event); }
[887c26e]306    void OnLeaveWindow(wxMouseEvent& event);
307
[ea2485e]308    void OnLButtonDown(wxMouseEvent& event) { SetFocus(); m_Control->OnLButtonDown(event); }
[5876fcb]309    void OnLButtonUp(wxMouseEvent& event) { m_Control->OnLButtonUp(event); }
[ea2485e]310    void OnMButtonDown(wxMouseEvent& event) { SetFocus(); m_Control->OnMButtonDown(event); }
[5876fcb]311    void OnMButtonUp(wxMouseEvent& event) { m_Control->OnMButtonUp(event); }
[ea2485e]312    void OnRButtonDown(wxMouseEvent& event) { SetFocus(); m_Control->OnRButtonDown(event); }
[5876fcb]313    void OnRButtonUp(wxMouseEvent& event) { m_Control->OnRButtonUp(event); }
[ea2485e]314    void OnMouseWheel(wxMouseEvent& event) { SetFocus(); m_Control->OnMouseWheel(event); }
[5876fcb]315    void OnKeyPress(wxKeyEvent &event) { m_Control->OnKeyPress(event); }
316
[1690fa9]317    bool Animate();
[2a3d328]318    bool Animating() const {
319        return m_Rotating || m_SwitchingTo || presentation_mode != 0;
320    }
[84cab34]321
[d877aa2]322    void ClearCoords();
[5876fcb]323    void SetCoords(wxPoint);
324
[2a3d328]325    // Determine whether the compass is currently shown.
326    bool ShowingCompass() const { return m_Compass; }
327    // Determine whether the clino is currently shown.
328    bool ShowingClino() const { return m_Clino; }
[9cf3688]329
[14acdae]330    bool PointWithinCompass(wxPoint point) const;
331    bool PointWithinClino(wxPoint point) const;
332    bool PointWithinScaleBar(wxPoint point) const;
[d43fa84]333    bool PointWithinColourKey(wxPoint point) const;
[9cf3688]334
[5876fcb]335    void SetCompassFromPoint(wxPoint point);
336    void SetClinoFromPoint(wxPoint point);
337    void SetScaleBarFromOffset(wxCoord dx);
[9cf3688]338
[5876fcb]339    void RedrawIndicators();
[9cf3688]340
[5876fcb]341    void StartRotation();
342    void ToggleRotation();
343    void StopRotation();
[eef68f9]344    bool IsExtendedElevation() const;
[5876fcb]345    void ReverseRotation();
346    void RotateSlower(bool accel);
347    void RotateFaster(bool accel);
[9cf3688]348
[5876fcb]349    void SwitchToElevation();
350    void SwitchToPlan();
[9cf3688]351
[d1628e8e]352    void SetViewTo(Double xmin, Double xmax, Double ymin, Double ymax, Double zmin, Double zmax);
353
[11c594a]354    double GetCompassValue() const { return m_PanAngle; }
[14acdae]355    bool ShowingPlan() const;
356    bool ShowingElevation() const;
357    bool ShowingMeasuringLine() const;
[570d62c3]358    bool HereIsReal() const { return m_here.IsValid() && !m_here_is_temporary; }
[5876fcb]359
[14acdae]360    bool CanRaiseViewpoint() const;
361    bool CanLowerViewpoint() const;
[5876fcb]362
[82f584f]363    bool IsRotating() const { return m_Rotating; }
[b61b020]364    bool HasData() const { return m_DoneFirstShow && m_HaveData; }
[78c67a6]365    bool HasDepth() const;
[c61aa79]366    bool HasErrorInformation() const;
[843ee7b]367    bool HasDateInformation() const;
[5876fcb]368
[5b7164d]369    double GetScale() const { return m_Scale; }
[5876fcb]370    void SetScale(Double scale);
[9cf3688]371
[82f584f]372    bool ShowingStationNames() const { return m_Names; }
373    bool ShowingOverlappingNames() const { return m_OverlappingNames; }
374    bool ShowingCrosses() const { return m_Crosses; }
[0580c6a]375    bool ShowingGrid() const { return m_Grid; }
[5876fcb]376
[d4650b3]377    int ColouringBy() const { return m_ColourBy; }
[da6c802]378
[f433fda]379    bool HasUndergroundLegs() const;
[5fe7292]380    bool HasSplays() const;
[f433fda]381    bool HasSurfaceLegs() const;
[50e8979]382    bool HasTubes() const;
[5876fcb]383
[82f584f]384    bool ShowingUndergroundLegs() const { return m_Legs; }
[8666fc7]385    int ShowingSplaysMode() const { return m_Splays; }
[82f584f]386    bool ShowingSurfaceLegs() const { return m_Surface; }
[5876fcb]387
[97ea48d]388    bool ShowingColourKey() const { return m_ColourKey; }
[82f584f]389    bool ShowingScaleBar() const { return m_Scalebar; }
[5876fcb]390
[82f584f]391    bool ShowingEntrances() const { return m_Entrances; }
392    bool ShowingFixedPts() const { return m_FixedPts; }
393    bool ShowingExportedPts() const { return m_ExportedPts; }
[5876fcb]394
[14acdae]395    int GetNumEntrances() const;
396    int GetNumFixedPts() const;
397    int GetNumExportedPts() const;
[5876fcb]398
[ef1870d]399    void ToggleUndergroundLegs() {
400        ToggleFlag(&m_Legs, UPDATE_BLOBS_AND_CROSSES);
401    }
[8666fc7]402    void SetSplaysMode(int mode) {
[ad661cc]403        m_Splays = mode;
[8666fc7]404        UpdateBlobs();
405        InvalidateList(LIST_UNDERGROUND_LEGS);
406        ForceRefresh();
[5fe7292]407    }
[ef1870d]408    void ToggleSurfaceLegs() {
409        ToggleFlag(&m_Surface, UPDATE_BLOBS_AND_CROSSES);
410    }
[9c37beb]411    void ToggleCompass() {
412        ToggleFlag(&m_Compass);
413        InvalidateList(LIST_SCALE_BAR);
414    }
415    void ToggleClino() {
416        ToggleFlag(&m_Clino);
417        InvalidateList(LIST_SCALE_BAR);
418    }
[6747314]419    void ToggleScaleBar() { ToggleFlag(&m_Scalebar); }
[eff44b9]420    void ToggleEntrances() { ToggleFlag(&m_Entrances, UPDATE_BLOBS); }
421    void ToggleFixedPts() { ToggleFlag(&m_FixedPts, UPDATE_BLOBS); }
422    void ToggleExportedPts() { ToggleFlag(&m_ExportedPts, UPDATE_BLOBS); }
[5876fcb]423    void ToggleGrid() { ToggleFlag(&m_Grid); }
[2a3d328]424    void ToggleCrosses() { ToggleFlag(&m_Crosses); }
[eff44b9]425    void ToggleStationNames() { ToggleFlag(&m_Names); }
[5876fcb]426    void ToggleOverlappingNames() { ToggleFlag(&m_OverlappingNames); }
[97ea48d]427    void ToggleColourKey() { ToggleFlag(&m_ColourKey); }
[9c37beb]428    void ToggleMetric() {
429        ToggleFlag(&m_Metric);
430        InvalidateList(LIST_DEPTH_KEY);
431        InvalidateList(LIST_SCALE_BAR);
432    }
[6747314]433    void ToggleDegrees() { ToggleFlag(&m_Degrees); }
[eff44b9]434    void ToggleTubes() { ToggleFlag(&m_Tubes); }
[6747314]435    void TogglePerspective() { GLACanvas::TogglePerspective(); ForceRefresh(); }
[d67450e]436    void ToggleSmoothShading();
[f4c5932]437    bool DisplayingBoundingBox() const { return m_BoundingBox; }
438    void ToggleBoundingBox() { ToggleFlag(&m_BoundingBox); }
[5876fcb]439
[82f584f]440    bool GetMetric() const { return m_Metric; }
441    bool GetDegrees() const { return m_Degrees; }
442    bool GetTubes() const { return m_Tubes; }
[9cf3688]443
[2072157]444    bool CheckHitTestGrid(const wxPoint& point, bool centre);
[5876fcb]445
446    void ClearTreeSelection();
447
448    void Defaults();
[5757725]449
[b13aee4]450    void FullScreenMode();
451
[fdfa926]452    bool IsFullScreen() const;
453
[33b2094]454    void DragFinished();
455
[b5d64e6]456    void SplitLineAcrossBands(int band, int band2,
[4a0e6b35]457                              const Vector3 &p, const Vector3 &q,
[9eb58d0]458                              Double factor = 1.0);
[14acdae]459    int GetDepthColour(Double z) const;
460    Double GetDepthBoundaryBetweenBands(int a, int b) const;
[c61aa79]461    void AddPolyline(const traverse & centreline);
462    void AddPolylineDepth(const traverse & centreline);
463    void AddPolylineDate(const traverse & centreline);
464    void AddPolylineError(const traverse & centreline);
[9cf3688]465    void AddQuadrilateral(const Vector3 &a, const Vector3 &b,
[82f584f]466                          const Vector3 &c, const Vector3 &d);
[c61aa79]467    void AddPolylineShadow(const traverse & centreline);
[9cf3688]468    void AddQuadrilateralDepth(const Vector3 &a, const Vector3 &b,
[da6c802]469                               const Vector3 &c, const Vector3 &d);
[d4650b3]470    void AddQuadrilateralDate(const Vector3 &a, const Vector3 &b,
471                              const Vector3 &c, const Vector3 &d);
[c61aa79]472    void AddQuadrilateralError(const Vector3 &a, const Vector3 &b,
473                               const Vector3 &c, const Vector3 &d);
[46361bc]474    void MoveViewer(double forward, double up, double right);
[1690fa9]475
[da6c802]476    void (GfxCore::* AddQuad)(const Vector3 &a, const Vector3 &b,
477                              const Vector3 &c, const Vector3 &d);
[c61aa79]478    void (GfxCore::* AddPoly)(const traverse & centreline);
[da6c802]479
[1690fa9]480    PresentationMark GetView() const;
481    void SetView(const PresentationMark & p);
[128fac4]482    void PlayPres(double speed, bool change_speed = true);
483    int GetPresentationMode() const { return presentation_mode; }
[762c324]484    double GetPresentationSpeed() const { return presentation_mode ? pres_speed : 0; }
[1690fa9]485
[da6c802]486    void SetColourBy(int colour_by);
[6a4cdcb6]487    bool ExportMovie(const wxString & fnm);
[ce403f1]488    void OnPrint(const wxString &filename, const wxString &title,
489                 const wxString &datestamp);
[5940815]490    void OnExport(const wxString &filename, const wxString &title);
[e2c1671]491    void SetCursor(GfxCore::cursor new_cursor);
[6b061db]492    bool MeasuringLineActive() const;
[6a4cdcb6]493
[acdb8aa]494    bool HandleRClick(wxPoint point);
495
[c6d5c1c]496    void InvalidateAllLists() {
497        for (int i = 0; i < LIST_LIMIT_; ++i) {
498            InvalidateList(i);
499        }
500    }
[5809313]501private:
[84cab34]502    DECLARE_EVENT_TABLE()
[5809313]503};
504
505#endif
Note: See TracBrowser for help on using the repository browser.