source: git/src/gfxcore.h @ f62e3dc9

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

Add new method to header too

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