source: git/src/gfxcore.h @ 09ad6d7

RELEASE/1.2debug-cidebug-ci-sanitisersfaster-cavernloglog-selectstereo-2025walls-datawalls-data-hanging-as-warningwarn-only-for-hanging-survey
Last change on this file since 09ad6d7 was d7078b4, checked in by Olly Betts <olly@…>, 7 years ago

Make use of C++11 to avoid needing to write > >

  • Property mode set to 100644
File size: 17.9 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.
[672459c]7//  Copyright (C) 2001-2004,2005,2006,2007,2010,2011,2012,2013,2014,2015,2016,2017,2018 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>
[dd6af8b]29#include <limits.h>
[f10cf8f]30#include <time.h>
[7aa15c0]31
[a405bc1]32#include "img_hosted.h"
[db36155]33
[5876fcb]34#include "guicontrol.h"
[381ae6e]35#include "labelinfo.h"
[4a0e6b35]36#include "vector3.h"
[5809313]37#include "wx.h"
[33b2094]38#include "gla.h"
[3ddcad8]39
[156dc16]40#include <list>
[3ddcad8]41#include <utility>
42#include <vector>
[5809313]43
[3ddcad8]44using namespace std;
[003d953]45
[137bf99]46class MainFrm;
[c61aa79]47class traverse;
[5809313]48
[ee05463]49class XSect;
[d4650b3]50class PointInfo;
[6a4cdcb6]51class MovieMaker;
[39e460c9]52
[4a0e6b35]53class PresentationMark : public Point {
54  public:
[1690fa9]55    Double angle, tilt_angle;
56    Double scale;
[49ce5b0]57    Double time;
[4a0e6b35]58    PresentationMark() : Point(), angle(0), tilt_angle(0), scale(0), time(0)
[1690fa9]59        { }
[d67450e]60    PresentationMark(const Vector3 & v, Double angle_, Double tilt_angle_,
61                     Double scale_, Double time_ = 0)
62        : Point(v), angle(angle_), tilt_angle(tilt_angle_), scale(scale_),
63          time(time_)
[1690fa9]64        { }
65    bool is_valid() const { return scale > 0; }
66};
67
[dd6af8b]68struct ZoomBox {
69  public:
70    int x1, y1, x2, y2;
71
72    ZoomBox()
73        : x1(INT_MAX) { }
74
75    bool active() const { return x1 != INT_MAX; }
76
77    void set(const wxPoint & p1, const wxPoint & p2) {
78        x1 = p1.x;
79        y1 = p1.y;
80        x2 = p2.x;
81        y2 = p2.y;
82    }
83
84    void unset() {
85        x1 = INT_MAX;
86    }
87};
88
[5293c84]89enum {
90    COLOUR_BY_NONE,
91    COLOUR_BY_DEPTH,
92    COLOUR_BY_DATE,
[fcc3741]93    COLOUR_BY_ERROR,
[cc9e2c65]94    COLOUR_BY_GRADIENT,
[af50685]95    COLOUR_BY_LENGTH,
[fcc3741]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 {
[cca3cee]106    SHOW_HIDE,
107    SHOW_DASHED,
108    SHOW_FADED,
109    SHOW_NORMAL,
[e5c5f3c]110};
111
[ba828d4]112struct Split {
113    Vector3 vec;
114    glaCoord tx, ty;
115
116    Split(const Vector3& vec_, glaCoord tx_, glaCoord ty_)
117        : vec(vec_), tx(tx_), ty(ty_) { }
118};
119
[ff1601e]120// It's pointless to redraw the screen as often as we can on a fast machine,
121// since the display hardware will only update so many times per second.
122// This is the maximum framerate we'll redraw at.
123const int MAX_FRAMERATE = 50;
124
[33b2094]125class GfxCore : public GLACanvas {
[5b7164d]126    Double m_Scale;
[39bd2ef]127    Double initial_scale;
[e2c1671]128    int m_ScaleBarWidth;
[42adb19]129
[d2fcc9b]130    typedef enum {
[fe665c4]131        LIST_COMPASS,
132        LIST_CLINO,
133        LIST_CLINO_BACK,
[9c37beb]134        LIST_SCALE_BAR,
[e2ea75a]135        LIST_DEPTH_KEY,
136        LIST_DATE_KEY,
137        LIST_ERROR_KEY,
[cc9e2c65]138        LIST_GRADIENT_KEY,
[af50685]139        LIST_LENGTH_KEY,
[d2fcc9b]140        LIST_UNDERGROUND_LEGS,
141        LIST_TUBES,
142        LIST_SURFACE_LEGS,
[37d7084]143        LIST_BLOBS,
[8bd480e]144        LIST_CROSSES,
[37d7084]145        LIST_GRID,
[c6d5c1c]146        LIST_SHADOW,
[22b0a8f]147        LIST_TERRAIN,
[c6d5c1c]148        LIST_LIMIT_ // Leave this last.
[d2fcc9b]149    } drawing_list;
[7aa15c0]150
[97ea48d]151    static const int NUM_COLOUR_BANDS = 13;
152
[5455bb2]153    void SetPanBase() {
154        base_pan = m_PanAngle;
[ff1601e]155        base_pan_time = timer.Time() - (1000 / MAX_FRAMERATE);
[5455bb2]156    }
157
158    void SetTiltBase() {
159        base_tilt = m_TiltAngle;
[ff1601e]160        base_tilt_time = timer.Time() - (1000 / MAX_FRAMERATE);
[5455bb2]161    }
162
[2a26b45]163    int GetCompassWidth() const;
164    int GetClinoWidth() const;
165
[e2c1671]166public:
167    typedef enum {
168        CURSOR_DEFAULT,
169        CURSOR_POINTING_HAND,
170        CURSOR_DRAGGING_HAND,
171        CURSOR_HORIZONTAL_RESIZE,
172        CURSOR_ROTATE_HORIZONTALLY,
173        CURSOR_ROTATE_VERTICALLY,
174        CURSOR_ROTATE_EITHER_WAY,
[ecf2d23]175        CURSOR_ZOOM,
176        CURSOR_ZOOM_ROTATE
[e2c1671]177    } cursor;
178
179private:
[5876fcb]180    GUIControl* m_Control;
[33b2094]181    char* m_LabelGrid;
[137bf99]182    MainFrm* m_Parent;
[5809313]183    bool m_DoneFirstShow;
[c6d95d8]184    Double m_TiltAngle;
185    Double m_PanAngle;
[5809313]186    bool m_Rotating;
[c6d95d8]187    Double m_RotationStep;
[3d00693]188    int m_SwitchingTo;
[5809313]189    bool m_Crosses;
190    bool m_Legs;
[8666fc7]191    int m_Splays;
[e5c5f3c]192    int m_Dupes;
[5809313]193    bool m_Names;
194    bool m_Scalebar;
[97ea48d]195    bool m_ColourKey;
[5809313]196    bool m_OverlappingNames;
197    bool m_Compass;
[c300a04]198    bool m_Clino;
[33b2094]199    bool m_Tubes;
[da6c802]200    int m_ColourBy;
[a7708927]201
202    bool m_HaveData;
[4938bcd]203    bool m_HaveTerrain;
[b56df45]204    bool m_MouseOutsideCompass;
205    bool m_MouseOutsideElev;
[e8bc148]206    bool m_Surface;
[fe444b8]207    bool m_Entrances;
208    bool m_FixedPts;
209    bool m_ExportedPts;
[c1cf79d]210    bool m_Grid;
[f4c5932]211    bool m_BoundingBox;
[4938bcd]212    bool m_Terrain;
[fa42426]213
[33b2094]214    bool m_Degrees;
215    bool m_Metric;
[d171c0c]216    bool m_Percent;
[33b2094]217
[5e0b3a13]218    bool m_HitTestDebug;
[11169cb]219    bool m_RenderStats;
[5e0b3a13]220
[fa42426]221    list<LabelInfo*> *m_PointGrid;
[dfe4454c]222    bool m_HitTestGridValid;
[156dc16]223
[381ae6e]224    LabelInfo temp_here;
225    const LabelInfo * m_here;
226    const LabelInfo * m_there;
[156dc16]227
[a8e9fde]228    wxStopWatch timer;
[5455bb2]229    long base_tilt_time;
230    long base_pan_time;
231    Double base_tilt;
232    Double base_pan;
[9cf3688]233
[11c7eb6]234    GLAPen m_Pens[NUM_COLOUR_BANDS + 1];
[0e69efe]235
[1690fa9]236#define PLAYING 1
237    int presentation_mode; // for now, 0 => off, PLAYING => continuous play
[128fac4]238    bool pres_reverse;
239    double pres_speed;
[1690fa9]240    PresentationMark next_mark;
241    double next_mark_time;
[128fac4]242    double this_mark_total;
[6a4cdcb6]243
[75d4a2b]244    MovieMaker * movie;
[6a4cdcb6]245
[e2c1671]246    cursor current_cursor;
247
[d96c95c]248    int sqrd_measure_threshold;
249
[7cdb1c3]250    // The legends for each entry in the colour key.
251    wxString key_legends[NUM_COLOUR_BANDS];
252
[fcc3741]253    wxPoint key_lowerleft[COLOUR_BY_LIMIT_];
[d43fa84]254
[dd6af8b]255    ZoomBox zoombox;
256
[8b0a077]257    // Copied from parent, so we can adjust view when reloading the same
258    // file with the view restricted.
259    Vector3 offsets;
260
[5314a0e]261    // DEM:
[9df33bc]262    unsigned short * dem;
[5314a0e]263    unsigned long dem_width, dem_height;
264    double o_x, o_y, step_x, step_y;
265    long nodata_value;
[9df33bc]266    bool bigendian;
[11169cb]267    long last_time;
[6388423]268    size_t n_tris;
269
[d67450e]270    void PlaceVertexWithColour(const Vector3 &v, Double factor = 1.0);
[06ff820]271    void PlaceVertexWithColour(const Vector3 & v,
272                               glaTexCoord tex_x, glaTexCoord tex_y,
[b839829]273                               Double factor);
274    void SetDepthColour(Double z, Double factor);
[d67450e]275    void PlaceVertexWithDepthColour(const Vector3 & v, Double factor = 1.0);
[06ff820]276    void PlaceVertexWithDepthColour(const Vector3 & v,
277                                    glaTexCoord tex_x, glaTexCoord tex_y,
278                                    Double factor);
[da6c802]279
[371f9ed]280    void SetColourFrom01(double how_far, Double factor);
281
[1ee204e]282    void SetColourFromDate(int date, Double factor);
[c61aa79]283    void SetColourFromError(double E, Double factor);
[cc9e2c65]284    void SetColourFromGradient(double angle, Double factor);
[af50685]285    void SetColourFromLength(double len, Double factor);
[d4650b3]286
[1eeb55a]287    int GetClinoOffset() const;
[fe665c4]288    void DrawTick(int angle_cw);
[d67450e]289    void DrawArrow(gla_colour col1, gla_colour col2);
[5809313]290
[384534c]291    void SkinPassage(vector<XSect> & centreline, bool draw = true);
[33b2094]292
[d2fcc9b]293    virtual void GenerateList(unsigned int l);
[b96edeb]294    void GenerateDisplayList(bool surface);
[9eb58d0]295    void GenerateDisplayListTubes();
[6388423]296    void DrawTerrainTriangle(const Vector3 & a, const Vector3 & b, const Vector3 & c);
297    void DrawTerrain();
[37d7084]298    void GenerateDisplayListShadow();
[d9b3270]299    void GenerateBlobsDisplayList();
[6747314]300
301    void DrawIndicators();
[33b2094]302
[5809313]303    void TryToFreeArrays();
304    void FirstShow();
[84cab34]305
[9c37beb]306    void DrawScaleBar();
[825bdff]307    void DrawColourKey(int num_bands, const wxString & other, const wxString & units);
[e2ea75a]308    void DrawDepthKey();
309    void DrawDateKey();
310    void DrawErrorKey();
[cc9e2c65]311    void DrawGradientKey();
[af50685]312    void DrawLengthKey();
[fe665c4]313    void DrawCompass();
314    void DrawClino();
315    void DrawClinoBack();
[6606406]316    void Draw2dIndicators();
[c1cf79d]317    void DrawGrid();
[6606406]318
[84cab34]319    void NattyDrawNames();
320    void SimpleDrawNames();
321
[de7a879]322    void DefaultParameters();
[5809313]323
[0e864da5]324    void Repaint();
325
[dfe4454c]326    void CreateHitTestGrid();
[421b7d2]327
[1eeb55a]328    int GetCompassXPosition() const;
329    int GetClinoXPosition() const;
330    int GetIndicatorYPosition() const;
331    int GetIndicatorRadius() const;
[5876fcb]332
[eff44b9]333    void ToggleFlag(bool* flag, int update = UPDATE_NONE);
[5876fcb]334
[11c7eb6]335    const GLAPen& GetPen(int band) const {
[97ea48d]336        assert(band >= 0 && band < NUM_COLOUR_BANDS);
[0e69efe]337        return m_Pens[band];
338    }
339
[11c7eb6]340    const GLAPen& GetSurfacePen() const { return m_Pens[NUM_COLOUR_BANDS]; }
[0e69efe]341
[97ea48d]342    int GetNumColourBands() const { return NUM_COLOUR_BANDS; }
[0e69efe]343
[f4c5932]344    void DrawShadowedBoundingBox();
345    void DrawBoundingBox();
[ad661cc]346
[5809313]347public:
[5876fcb]348    GfxCore(MainFrm* parent, wxWindow* parent_window, GUIControl* control);
[5809313]349    ~GfxCore();
350
[0c6bf5e8]351    void Initialise(bool same_file);
[a87b1f7]352
[429465a]353    void UpdateBlobs();
[fa42426]354    void ForceRefresh();
[156dc16]355
[381ae6e]356    void RefreshLine(const Point* a, const Point* b, const Point* c);
357
358    void SetHereFromTree(const LabelInfo * p);
[9cf3688]359
[5d18821]360    void SetHere(const LabelInfo * p = NULL);
361    void SetThere(const LabelInfo * p = NULL);
[fd6e0d5]362
[672459c]363    const LabelInfo* GetThere() const { return m_there; }
364
[82c3731]365    void CentreOn(const Point &p);
[156dc16]366
[5876fcb]367    void TranslateCave(int dx, int dy);
368    void TiltCave(Double tilt_angle);
369    void TurnCave(Double angle);
370    void TurnCaveTo(Double angle);
371
372    void OnPaint(wxPaintEvent&);
373    void OnSize(wxSizeEvent& event);
[6e4a123]374    void OnIdle(wxIdleEvent& event);
[5876fcb]375
376    void OnMouseMove(wxMouseEvent& event) { m_Control->OnMouseMove(event); }
[887c26e]377    void OnLeaveWindow(wxMouseEvent& event);
378
[ea2485e]379    void OnLButtonDown(wxMouseEvent& event) { SetFocus(); m_Control->OnLButtonDown(event); }
[5876fcb]380    void OnLButtonUp(wxMouseEvent& event) { m_Control->OnLButtonUp(event); }
[ea2485e]381    void OnMButtonDown(wxMouseEvent& event) { SetFocus(); m_Control->OnMButtonDown(event); }
[5876fcb]382    void OnMButtonUp(wxMouseEvent& event) { m_Control->OnMButtonUp(event); }
[ea2485e]383    void OnRButtonDown(wxMouseEvent& event) { SetFocus(); m_Control->OnRButtonDown(event); }
[5876fcb]384    void OnRButtonUp(wxMouseEvent& event) { m_Control->OnRButtonUp(event); }
[ea2485e]385    void OnMouseWheel(wxMouseEvent& event) { SetFocus(); m_Control->OnMouseWheel(event); }
[5876fcb]386    void OnKeyPress(wxKeyEvent &event) { m_Control->OnKeyPress(event); }
387
[5455bb2]388    void Animate();
[2a3d328]389    bool Animating() const {
390        return m_Rotating || m_SwitchingTo || presentation_mode != 0;
391    }
[84cab34]392
[d877aa2]393    void ClearCoords();
[5876fcb]394    void SetCoords(wxPoint);
395
[2a3d328]396    // Determine whether the compass is currently shown.
397    bool ShowingCompass() const { return m_Compass; }
398    // Determine whether the clino is currently shown.
399    bool ShowingClino() const { return m_Clino; }
[9cf3688]400
[14acdae]401    bool PointWithinCompass(wxPoint point) const;
402    bool PointWithinClino(wxPoint point) const;
403    bool PointWithinScaleBar(wxPoint point) const;
[d43fa84]404    bool PointWithinColourKey(wxPoint point) const;
[9cf3688]405
[5876fcb]406    void SetCompassFromPoint(wxPoint point);
407    void SetClinoFromPoint(wxPoint point);
408    void SetScaleBarFromOffset(wxCoord dx);
[9cf3688]409
[5876fcb]410    void RedrawIndicators();
[9cf3688]411
[5876fcb]412    void StartRotation();
413    void ToggleRotation();
414    void StopRotation();
[eef68f9]415    bool IsExtendedElevation() const;
[5876fcb]416    void ReverseRotation();
417    void RotateSlower(bool accel);
418    void RotateFaster(bool accel);
[9cf3688]419
[5876fcb]420    void SwitchToElevation();
421    void SwitchToPlan();
[9cf3688]422
[d1628e8e]423    void SetViewTo(Double xmin, Double xmax, Double ymin, Double ymax, Double zmin, Double zmax);
424
[11c594a]425    double GetCompassValue() const { return m_PanAngle; }
[14acdae]426    bool ShowingPlan() const;
427    bool ShowingElevation() const;
428    bool ShowingMeasuringLine() const;
[381ae6e]429    bool HereIsReal() const { return m_here && m_here != &temp_here; }
[5876fcb]430
[14acdae]431    bool CanRaiseViewpoint() const;
432    bool CanLowerViewpoint() const;
[5876fcb]433
[82f584f]434    bool IsRotating() const { return m_Rotating; }
[b61b020]435    bool HasData() const { return m_DoneFirstShow && m_HaveData; }
[4938bcd]436    bool HasTerrain() const { return m_DoneFirstShow && m_HaveTerrain; }
[78c67a6]437    bool HasDepth() const;
[c61aa79]438    bool HasErrorInformation() const;
[843ee7b]439    bool HasDateInformation() const;
[5876fcb]440
[5b7164d]441    double GetScale() const { return m_Scale; }
[5876fcb]442    void SetScale(Double scale);
[9cf3688]443
[82f584f]444    bool ShowingStationNames() const { return m_Names; }
445    bool ShowingOverlappingNames() const { return m_OverlappingNames; }
446    bool ShowingCrosses() const { return m_Crosses; }
[0580c6a]447    bool ShowingGrid() const { return m_Grid; }
[5876fcb]448
[d4650b3]449    int ColouringBy() const { return m_ColourBy; }
[da6c802]450
[f433fda]451    bool HasUndergroundLegs() const;
[5fe7292]452    bool HasSplays() const;
[e5c5f3c]453    bool HasDupes() const;
[f433fda]454    bool HasSurfaceLegs() const;
[50e8979]455    bool HasTubes() const;
[5876fcb]456
[82f584f]457    bool ShowingUndergroundLegs() const { return m_Legs; }
[8666fc7]458    int ShowingSplaysMode() const { return m_Splays; }
[e5c5f3c]459    int ShowingDupesMode() const { return m_Dupes; }
[82f584f]460    bool ShowingSurfaceLegs() const { return m_Surface; }
[5876fcb]461
[97ea48d]462    bool ShowingColourKey() const { return m_ColourKey; }
[82f584f]463    bool ShowingScaleBar() const { return m_Scalebar; }
[5876fcb]464
[82f584f]465    bool ShowingEntrances() const { return m_Entrances; }
466    bool ShowingFixedPts() const { return m_FixedPts; }
467    bool ShowingExportedPts() const { return m_ExportedPts; }
[5876fcb]468
[14acdae]469    int GetNumEntrances() const;
470    int GetNumFixedPts() const;
471    int GetNumExportedPts() const;
[5876fcb]472
[ef1870d]473    void ToggleUndergroundLegs() {
474        ToggleFlag(&m_Legs, UPDATE_BLOBS_AND_CROSSES);
475    }
[8666fc7]476    void SetSplaysMode(int mode) {
[ad661cc]477        m_Splays = mode;
[8666fc7]478        UpdateBlobs();
[b96edeb]479        InvalidateList(LIST_SURFACE_LEGS);
[8666fc7]480        InvalidateList(LIST_UNDERGROUND_LEGS);
481        ForceRefresh();
[5fe7292]482    }
[e5c5f3c]483    void SetDupesMode(int mode) {
484        m_Dupes = mode;
485        UpdateBlobs();
[b96edeb]486        InvalidateList(LIST_SURFACE_LEGS);
[e5c5f3c]487        InvalidateList(LIST_UNDERGROUND_LEGS);
488        ForceRefresh();
489    }
[ef1870d]490    void ToggleSurfaceLegs() {
491        ToggleFlag(&m_Surface, UPDATE_BLOBS_AND_CROSSES);
492    }
[9c37beb]493    void ToggleCompass() {
494        ToggleFlag(&m_Compass);
495        InvalidateList(LIST_SCALE_BAR);
496    }
497    void ToggleClino() {
498        ToggleFlag(&m_Clino);
499        InvalidateList(LIST_SCALE_BAR);
500    }
[6747314]501    void ToggleScaleBar() { ToggleFlag(&m_Scalebar); }
[eff44b9]502    void ToggleEntrances() { ToggleFlag(&m_Entrances, UPDATE_BLOBS); }
503    void ToggleFixedPts() { ToggleFlag(&m_FixedPts, UPDATE_BLOBS); }
504    void ToggleExportedPts() { ToggleFlag(&m_ExportedPts, UPDATE_BLOBS); }
[5876fcb]505    void ToggleGrid() { ToggleFlag(&m_Grid); }
[2a3d328]506    void ToggleCrosses() { ToggleFlag(&m_Crosses); }
[eff44b9]507    void ToggleStationNames() { ToggleFlag(&m_Names); }
[5876fcb]508    void ToggleOverlappingNames() { ToggleFlag(&m_OverlappingNames); }
[97ea48d]509    void ToggleColourKey() { ToggleFlag(&m_ColourKey); }
[9c37beb]510    void ToggleMetric() {
511        ToggleFlag(&m_Metric);
512        InvalidateList(LIST_DEPTH_KEY);
[91756e4]513        InvalidateList(LIST_LENGTH_KEY);
[9c37beb]514        InvalidateList(LIST_SCALE_BAR);
515    }
[5e0b3a13]516    void ToggleHitTestDebug() {
517        ToggleFlag(&m_HitTestDebug);
518    }
[11169cb]519    void ToggleRenderStats() {
520        ToggleFlag(&m_RenderStats);
521    }
[cc9e2c65]522    void ToggleDegrees() {
523        ToggleFlag(&m_Degrees);
524        InvalidateList(LIST_GRADIENT_KEY);
525    }
[d171c0c]526    void TogglePercent() { ToggleFlag(&m_Percent); }
[eff44b9]527    void ToggleTubes() { ToggleFlag(&m_Tubes); }
[6747314]528    void TogglePerspective() { GLACanvas::TogglePerspective(); ForceRefresh(); }
[d67450e]529    void ToggleSmoothShading();
[f4c5932]530    bool DisplayingBoundingBox() const { return m_BoundingBox; }
531    void ToggleBoundingBox() { ToggleFlag(&m_BoundingBox); }
[4938bcd]532    bool DisplayingTerrain() const { return m_Terrain; }
[622460e]533    void ToggleTerrain();
[d96c95c]534    void ToggleFatFinger();
[2f91a4c]535    void ToggleTextured() {
536        GLACanvas::ToggleTextured();
537        ForceRefresh();
538    }
[5876fcb]539
[82f584f]540    bool GetMetric() const { return m_Metric; }
541    bool GetDegrees() const { return m_Degrees; }
[d171c0c]542    bool GetPercent() const { return m_Percent; }
[82f584f]543    bool GetTubes() const { return m_Tubes; }
[9cf3688]544
[2072157]545    bool CheckHitTestGrid(const wxPoint& point, bool centre);
[5876fcb]546
547    void ClearTreeSelection();
548
549    void Defaults();
[5757725]550
[b13aee4]551    void FullScreenMode();
552
[fdfa926]553    bool IsFullScreen() const;
554
[b75a37d]555    bool FullScreenModeShowingMenus() const;
556
557    void FullScreenModeShowMenus(bool show);
558
[33b2094]559    void DragFinished();
560
[b5d64e6]561    void SplitLineAcrossBands(int band, int band2,
[4a0e6b35]562                              const Vector3 &p, const Vector3 &q,
[9eb58d0]563                              Double factor = 1.0);
[d7078b4]564    void SplitPolyAcrossBands(vector<vector<Split>>& splits,
[f62e3dc9]565                              int band, int band2,
[ba828d4]566                              const Vector3 &p, const Vector3 &q,
567                              glaTexCoord ptx, glaTexCoord pty,
568                              glaTexCoord w, glaTexCoord h);
[14acdae]569    int GetDepthColour(Double z) const;
570    Double GetDepthBoundaryBetweenBands(int a, int b) const;
[c61aa79]571    void AddPolyline(const traverse & centreline);
572    void AddPolylineDepth(const traverse & centreline);
573    void AddPolylineDate(const traverse & centreline);
574    void AddPolylineError(const traverse & centreline);
[cc9e2c65]575    void AddPolylineGradient(const traverse & centreline);
[af50685]576    void AddPolylineLength(const traverse & centreline);
[9cf3688]577    void AddQuadrilateral(const Vector3 &a, const Vector3 &b,
[82f584f]578                          const Vector3 &c, const Vector3 &d);
[c61aa79]579    void AddPolylineShadow(const traverse & centreline);
[9cf3688]580    void AddQuadrilateralDepth(const Vector3 &a, const Vector3 &b,
[da6c802]581                               const Vector3 &c, const Vector3 &d);
[d4650b3]582    void AddQuadrilateralDate(const Vector3 &a, const Vector3 &b,
583                              const Vector3 &c, const Vector3 &d);
[c61aa79]584    void AddQuadrilateralError(const Vector3 &a, const Vector3 &b,
585                               const Vector3 &c, const Vector3 &d);
[cc9e2c65]586    void AddQuadrilateralGradient(const Vector3 &a, const Vector3 &b,
587                                  const Vector3 &c, const Vector3 &d);
[af50685]588    void AddQuadrilateralLength(const Vector3 &a, const Vector3 &b,
589                                const Vector3 &c, const Vector3 &d);
[46361bc]590    void MoveViewer(double forward, double up, double right);
[1690fa9]591
[da6c802]592    void (GfxCore::* AddQuad)(const Vector3 &a, const Vector3 &b,
[b49ac56]593                              const Vector3 &c, const Vector3 &d);
[c61aa79]594    void (GfxCore::* AddPoly)(const traverse & centreline);
[da6c802]595
[1690fa9]596    PresentationMark GetView() const;
597    void SetView(const PresentationMark & p);
[128fac4]598    void PlayPres(double speed, bool change_speed = true);
599    int GetPresentationMode() const { return presentation_mode; }
[762c324]600    double GetPresentationSpeed() const { return presentation_mode ? pres_speed : 0; }
[1690fa9]601
[da6c802]602    void SetColourBy(int colour_by);
[6a4cdcb6]603    bool ExportMovie(const wxString & fnm);
[ce403f1]604    void OnPrint(const wxString &filename, const wxString &title,
[1798716]605                 const wxString &datestamp,
[4ed8154]606                 bool close_after_print = false);
[70462c8]607    void OnExport(const wxString &filename, const wxString &title,
[60d7755]608                  const wxString &datestamp);
[242cb07]609    void UpdateCursor(GfxCore::cursor new_cursor);
[6b061db]610    bool MeasuringLineActive() const;
[6a4cdcb6]611
[acdb8aa]612    bool HandleRClick(wxPoint point);
613
[c6d5c1c]614    void InvalidateAllLists() {
615        for (int i = 0; i < LIST_LIMIT_; ++i) {
616            InvalidateList(i);
617        }
618    }
[dd6af8b]619
620    void SetZoomBox(wxPoint p1, wxPoint p2, bool centred, bool aspect);
621
622    void UnsetZoomBox() {
623        if (!zoombox.active()) return;
624        zoombox.unset();
625        ForceRefresh();
626    }
627
628    void ZoomBoxGo();
629
[112f80c]630    void parse_hgt_filename(const wxString & lc_name);
631    size_t parse_hdr(wxInputStream & is, unsigned long & skipbytes);
632    bool read_bil(wxInputStream & is, size_t size, unsigned long skipbytes);
[622460e]633    bool LoadDEM(const wxString & file);
634
[5809313]635private:
[84cab34]636    DECLARE_EVENT_TABLE()
[5809313]637};
638
639#endif
Note: See TracBrowser for help on using the repository browser.