source: git/src/gfxcore.h @ 53496ab3

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

src/: Pass the numeric datestamp to ExportFilter::header(), and use
it to set a timestamp in exported GPX files.

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