source: git/src/gfxcore.h @ 11c7eb6

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

src/gfxcore.cc,src/gfxcore.h: No need to dynamically allocate
m_Pens.

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