source: git/src/gfxcore.cc @ 2c1c52e

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

Use https for more URLs which support it

  • Property mode set to 100644
File size: 108.4 KB
RevLine 
[5809313]1//
[156dc16]2//  gfxcore.cc
[5809313]3//
[33b2094]4//  Core drawing code for Aven.
[5809313]5//
[b72f4b5]6//  Copyright (C) 2000-2003,2005,2006 Mark R. Shinwell
[8b0a077]7//  Copyright (C) 2001-2003,2004,2005,2006,2007,2010,2011,2012,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
[cbfa50d]25#ifdef HAVE_CONFIG_H
26#include <config.h>
27#endif
28
[892a40c]29#include <assert.h>
[7aa15c0]30#include <float.h>
31
[7a89dc2]32#include "aven.h"
[1ee204e]33#include "date.h"
[112f80c]34#include "filename.h"
[5809313]35#include "gfxcore.h"
[137bf99]36#include "mainfrm.h"
[93c3f97]37#include "message.h"
[7a89dc2]38#include "useful.h"
[4283d6f]39#include "printing.h"
[5876fcb]40#include "guicontrol.h"
[6a4cdcb6]41#include "moviemaker.h"
[8000d8f]42
43#include <wx/confbase.h>
[be98901]44#include <wx/wfstream.h>
[8000d8f]45#include <wx/image.h>
[be98901]46#include <wx/zipstrm.h>
[5809313]47
[22b0a8f]48#include <proj_api.h>
49
[9df33bc]50const unsigned long DEFAULT_HGT_DIM = 3601;
51const unsigned long DEFAULT_HGT_SIZE = sqrd(DEFAULT_HGT_DIM) * 2;
52
[3d00693]53// Values for m_SwitchingTo
54#define PLAN 1
55#define ELEVATION 2
[3ddd351]56#define NORTH 3
57#define EAST 4
58#define SOUTH 5
59#define WEST 6
[3d00693]60
[c61aa79]61// Any error value higher than this is clamped to this.
62#define MAX_ERROR 12.0
63
[af50685]64// Any length greater than pow(10, LOG_LEN_MAX) will be clamped to this.
65const Double LOG_LEN_MAX = 1.5;
66
[86cdcf2]67// How many bins per letter height to use when working out non-overlapping
68// labels.
69const unsigned int QUANTISE_FACTOR = 2;
70
[0e69efe]71#include "avenpal.h"
72
[6606406]73static const int INDICATOR_BOX_SIZE = 60;
[c300a04]74static const int INDICATOR_GAP = 2;
[6606406]75static const int INDICATOR_MARGIN = 5;
76static const int INDICATOR_OFFSET_X = 15;
[c300a04]77static const int INDICATOR_OFFSET_Y = 15;
[fe665c4]78static const int INDICATOR_RADIUS = INDICATOR_BOX_SIZE / 2 - INDICATOR_MARGIN;
[62da267]79static const int KEY_OFFSET_X = 10;
80static const int KEY_OFFSET_Y = 10;
81static const int KEY_EXTRA_LEFT_MARGIN = 2;
82static const int KEY_BLOCK_WIDTH = 20;
83static const int KEY_BLOCK_HEIGHT = 16;
[b56df45]84static const int TICK_LENGTH = 4;
[42adb19]85static const int SCALE_BAR_OFFSET_X = 15;
86static const int SCALE_BAR_OFFSET_Y = 12;
87static const int SCALE_BAR_HEIGHT = 12;
[aa048c3]88
89static const gla_colour TEXT_COLOUR = col_GREEN;
90static const gla_colour HERE_COLOUR = col_WHITE;
91static const gla_colour NAME_COLOUR = col_GREEN;
[dd6af8b]92static const gla_colour SEL_COLOUR = col_WHITE;
[33b2094]93
[0b0520c]94// Number of entries across and down the hit-test grid:
[39e460c9]95#define HITTEST_SIZE 20
96
[395c3f8]97// How close the pointer needs to be to a station to be considered:
98#define MEASURE_THRESHOLD 7
99
[dde4fe7]100// vector for lighting angle
101static const Vector3 light(.577, .577, .577);
102
[9071cf5]103BEGIN_EVENT_TABLE(GfxCore, GLACanvas)
[5809313]104    EVT_PAINT(GfxCore::OnPaint)
105    EVT_LEFT_DOWN(GfxCore::OnLButtonDown)
106    EVT_LEFT_UP(GfxCore::OnLButtonUp)
107    EVT_MIDDLE_DOWN(GfxCore::OnMButtonDown)
108    EVT_MIDDLE_UP(GfxCore::OnMButtonUp)
109    EVT_RIGHT_DOWN(GfxCore::OnRButtonDown)
110    EVT_RIGHT_UP(GfxCore::OnRButtonUp)
[34d8d1a]111    EVT_MOUSEWHEEL(GfxCore::OnMouseWheel)
[5809313]112    EVT_MOTION(GfxCore::OnMouseMove)
[887c26e]113    EVT_LEAVE_WINDOW(GfxCore::OnLeaveWindow)
[5809313]114    EVT_SIZE(GfxCore::OnSize)
[a8e9fde]115    EVT_IDLE(GfxCore::OnIdle)
[4b1fc48]116    EVT_CHAR(GfxCore::OnKeyPress)
[5809313]117END_EVENT_TABLE()
118
[5876fcb]119GfxCore::GfxCore(MainFrm* parent, wxWindow* parent_win, GUIControl* control) :
[88707e0b]120    GLACanvas(parent_win, 100),
121    m_Scale(0.0),
[39bd2ef]122    initial_scale(1.0),
[88707e0b]123    m_ScaleBarWidth(0),
124    m_Control(control),
125    m_LabelGrid(NULL),
126    m_Parent(parent),
127    m_DoneFirstShow(false),
128    m_TiltAngle(0.0),
129    m_PanAngle(0.0),
130    m_Rotating(false),
131    m_RotationStep(0.0),
132    m_SwitchingTo(0),
133    m_Crosses(false),
134    m_Legs(true),
[8666fc7]135    m_Splays(SPLAYS_SHOW_FADED),
[88707e0b]136    m_Names(false),
137    m_Scalebar(true),
[97ea48d]138    m_ColourKey(true),
[88707e0b]139    m_OverlappingNames(false),
140    m_Compass(true),
141    m_Clino(true),
142    m_Tubes(false),
143    m_ColourBy(COLOUR_BY_DEPTH),
144    m_HaveData(false),
[22b0a8f]145    m_HaveTerrain(true),
[88707e0b]146    m_MouseOutsideCompass(false),
147    m_MouseOutsideElev(false),
148    m_Surface(false),
149    m_Entrances(false),
150    m_FixedPts(false),
151    m_ExportedPts(false),
152    m_Grid(false),
153    m_BoundingBox(false),
[4938bcd]154    m_Terrain(false),
[88707e0b]155    m_Degrees(false),
156    m_Metric(false),
[d171c0c]157    m_Percent(false),
[7171240]158    m_HitTestDebug(false),
[11169cb]159    m_RenderStats(false),
[7171240]160    m_PointGrid(NULL),
[88707e0b]161    m_HitTestGridValid(false),
[381ae6e]162    m_here(NULL),
163    m_there(NULL),
[88707e0b]164    presentation_mode(0),
165    pres_reverse(false),
166    pres_speed(0.0),
[75d4a2b]167    movie(NULL),
[d96c95c]168    current_cursor(GfxCore::CURSOR_DEFAULT),
[6388423]169    sqrd_measure_threshold(sqrd(MEASURE_THRESHOLD)),
[9df33bc]170    dem(NULL),
[11169cb]171    last_time(0),
[6388423]172    n_tris(0)
[5809313]173{
[da6c802]174    AddQuad = &GfxCore::AddQuadrilateralDepth;
175    AddPoly = &GfxCore::AddPolylineDepth;
[5627cbb]176    wxConfigBase::Get()->Read(wxT("metric"), &m_Metric, true);
177    wxConfigBase::Get()->Read(wxT("degrees"), &m_Degrees, true);
[82277dd]178    wxConfigBase::Get()->Read(wxT("percent"), &m_Percent, false);
[5809313]179
[97ea48d]180    for (int pen = 0; pen < NUM_COLOUR_BANDS + 1; ++pen) {
[4a1cede]181        m_Pens[pen].SetColour(REDS[pen] / 255.0,
[0e69efe]182                              GREENS[pen] / 255.0,
183                              BLUES[pen] / 255.0);
184    }
[5455bb2]185
186    timer.Start();
[5809313]187}
188
189GfxCore::~GfxCore()
190{
191    TryToFreeArrays();
[156dc16]192
[39e460c9]193    delete[] m_PointGrid;
[5809313]194}
195
196void GfxCore::TryToFreeArrays()
197{
198    // Free up any memory allocated for arrays.
[81f1266]199    delete[] m_LabelGrid;
200    m_LabelGrid = NULL;
[5809313]201}
202
203//
204//  Initialisation methods
205//
206
[0c6bf5e8]207void GfxCore::Initialise(bool same_file)
[5809313]208{
209    // Initialise the view from the parent holding the survey data.
210
211    TryToFreeArrays();
212
[33b2094]213    m_DoneFirstShow = false;
214
[dfe4454c]215    m_HitTestGridValid = false;
[381ae6e]216    m_here = NULL;
217    m_there = NULL;
[dfe4454c]218
[d35144d]219    m_MouseOutsideCompass = m_MouseOutsideElev = false;
220
[0c6bf5e8]221    if (!same_file) {
222        // Apply default parameters unless reloading the same file.
223        DefaultParameters();
224    }
[9eb58d0]225
226    m_HaveData = true;
[936a197]227
[92cf7a8]228    // Clear any cached OpenGL lists which depend on the data.
229    InvalidateList(LIST_SCALE_BAR);
230    InvalidateList(LIST_DEPTH_KEY);
231    InvalidateList(LIST_DATE_KEY);
232    InvalidateList(LIST_ERROR_KEY);
[cc9e2c65]233    InvalidateList(LIST_GRADIENT_KEY);
[af50685]234    InvalidateList(LIST_LENGTH_KEY);
[92cf7a8]235    InvalidateList(LIST_UNDERGROUND_LEGS);
236    InvalidateList(LIST_TUBES);
237    InvalidateList(LIST_SURFACE_LEGS);
238    InvalidateList(LIST_BLOBS);
239    InvalidateList(LIST_CROSSES);
240    InvalidateList(LIST_GRID);
241    InvalidateList(LIST_SHADOW);
[22b0a8f]242    InvalidateList(LIST_TERRAIN);
[92cf7a8]243
[39bd2ef]244    // Set diameter of the viewing volume.
245    double cave_diameter = sqrt(sqrd(m_Parent->GetXExtent()) +
246                                sqrd(m_Parent->GetYExtent()) +
247                                sqrd(m_Parent->GetZExtent()));
248
249    // Allow for terrain.
250    double diameter = max(1000.0 * 2, cave_diameter * 2);
251
252    if (!same_file) {
253        SetVolumeDiameter(diameter);
254
255        // Set initial scale based on the size of the cave.
256        initial_scale = diameter / cave_diameter;
257        SetScale(initial_scale);
258    } else {
[8b0a077]259        // Adjust the position when restricting the view to a subsurvey (or
260        // expanding the view to show the whole survey).
261        AddTranslation(m_Parent->GetOffset() - offsets);
262
[39bd2ef]263        // Try to keep the same scale, allowing for the
264        // cave having grown (or shrunk).
265        double rescale = GetVolumeDiameter() / diameter;
266        SetVolumeDiameter(diameter);
[8b0a077]267        SetScale(GetScale() / rescale); // ?
[39bd2ef]268        initial_scale = initial_scale * rescale;
269    }
270
[8b0a077]271    offsets = m_Parent->GetOffset();
272
[936a197]273    ForceRefresh();
[9eb58d0]274}
275
276void GfxCore::FirstShow()
277{
278    GLACanvas::FirstShow();
279
[8bd480e]280    const unsigned int quantise(GetFontSize() / QUANTISE_FACTOR);
[86cdcf2]281    list<LabelInfo*>::iterator pos = m_Parent->GetLabelsNC();
282    while (pos != m_Parent->GetLabelsNCEnd()) {
283        LabelInfo* label = *pos++;
284        // Calculate and set the label width for use when plotting
285        // none-overlapping labels.
286        int ext_x;
287        GLACanvas::GetTextExtent(label->GetText(), &ext_x, NULL);
[5a24583]288        label->set_width(unsigned(ext_x) / quantise + 1);
[86cdcf2]289    }
290
[5809313]291    m_DoneFirstShow = true;
292}
293
294//
295//  Recalculating methods
296//
297
[cd6ea75]298void GfxCore::SetScale(Double scale)
[5047c53]299{
[8b0d57f]300    if (scale < 0.05) {
301        scale = 0.05;
[70acad9]302    } else if (scale > GetVolumeDiameter()) {
303        scale = GetVolumeDiameter();
[5047c53]304    }
305
[5b7164d]306    m_Scale = scale;
[00a68e0]307    m_HitTestGridValid = false;
[381ae6e]308    if (m_here && m_here == &temp_here) SetHere();
[33b2094]309
310    GLACanvas::SetScale(scale);
[d9b3270]311}
312
[f433fda]313bool GfxCore::HasUndergroundLegs() const
314{
315    return m_Parent->HasUndergroundLegs();
316}
317
[5fe7292]318bool GfxCore::HasSplays() const
319{
320    return m_Parent->HasSplays();
321}
322
[f433fda]323bool GfxCore::HasSurfaceLegs() const
324{
325    return m_Parent->HasSurfaceLegs();
326}
327
[50e8979]328bool GfxCore::HasTubes() const
329{
330    return m_Parent->HasTubes();
331}
332
[d9b3270]333void GfxCore::UpdateBlobs()
334{
[d2fcc9b]335    InvalidateList(LIST_BLOBS);
[33b2094]336}
337
[cd6ea75]338//
[5876fcb]339//  Event handlers
[cd6ea75]340//
[5047c53]341
[41f7a27]342void GfxCore::OnLeaveWindow(wxMouseEvent&) {
[887c26e]343    SetHere();
344    ClearCoords();
345}
346
[5876fcb]347void GfxCore::OnIdle(wxIdleEvent& event)
348{
349    // Handle an idle event.
[5455bb2]350    if (Animating()) {
351        Animate();
352        // If still animating, we want more idle events.
353        if (Animating())
354            event.RequestMore();
[11169cb]355    } else {
356        // If we're idle, don't show a bogus FPS next time we render.
357        last_time = 0;
[b72f4b5]358    }
[5809313]359}
360
[b4fe9fb]361void GfxCore::OnPaint(wxPaintEvent&)
[5809313]362{
363    // Redraw the window.
[b462168]364
365    // Get a graphics context.
[1b12b82]366    wxPaintDC dc(this);
[5809313]367
[815eab2]368    if (m_HaveData) {
[01d91fd]369        // Make sure we're initialised.
370        bool first_time = !m_DoneFirstShow;
371        if (first_time) {
372            FirstShow();
373        }
374
[58dfdd21]375        StartDrawing();
376
377        // Clear the background.
378        Clear();
379
[429465a]380        // Set up model transformation matrix.
381        SetDataTransform();
382
383        if (m_Legs || m_Tubes) {
384            if (m_Tubes) {
[d67450e]385                EnableSmoothPolygons(true); // FIXME: allow false for wireframe view
[d2fcc9b]386                DrawList(LIST_TUBES);
[429465a]387                DisableSmoothPolygons();
388            }
[e4d40792]389
[50e8979]390            // Draw the underground legs.  Do this last so that anti-aliasing
[e4d40792]391            // works over polygons.
392            SetColour(col_GREEN);
[d2fcc9b]393            DrawList(LIST_UNDERGROUND_LEGS);
[429465a]394        }
[33b2094]395
[429465a]396        if (m_Surface) {
397            // Draw the surface legs.
[d2fcc9b]398            DrawList(LIST_SURFACE_LEGS);
[429465a]399        }
[bbc22ca]400
[f4c5932]401        if (m_BoundingBox) {
402            DrawShadowedBoundingBox();
403        }
[429465a]404        if (m_Grid) {
405            // Draw the grid.
[37d7084]406            DrawList(LIST_GRID);
[429465a]407        }
[b13aee4]408
[6a4c11b7]409        DrawList(LIST_BLOBS);
410
411        if (m_Crosses) {
412            DrawList(LIST_CROSSES);
413        }
414
[d347a2c]415        if (m_Terrain) {
[6a4c11b7]416            // This is needed if blobs and/or crosses are drawn using lines -
417            // otherwise the terrain doesn't appear when they are enabled.
418            SetDataTransform();
419
[11fe902]420            // We don't want to be able to see the terrain through itself, so
421            // do a "Z-prepass" - plot the terrain once only updating the
422            // Z-buffer, then again with Z-clipping only plotting where the
423            // depth matches the value in the Z-buffer.
424            DrawListZPrepass(LIST_TERRAIN);
[d347a2c]425        }
426
[429465a]427        SetIndicatorTransform();
428
[6adffadf]429        // Draw station names.
430        if (m_Names /*&& !m_Control->MouseDown() && !Animating()*/) {
431            SetColour(NAME_COLOUR);
432
433            if (m_OverlappingNames) {
434                SimpleDrawNames();
435            } else {
436                NattyDrawNames();
437            }
438        }
439
[5e0b3a13]440        if (m_HitTestDebug) {
441            // Show the hit test grid bucket sizes...
442            SetColour(m_HitTestGridValid ? col_LIGHT_GREY : col_DARK_GREY);
[7171240]443            if (m_PointGrid) {
444                for (int i = 0; i != HITTEST_SIZE; ++i) {
445                    int x = (GetXSize() + 1) * i / HITTEST_SIZE + 2;
446                    for (int j = 0; j != HITTEST_SIZE; ++j) {
447                        int square = i + j * HITTEST_SIZE;
[a49a023]448                        unsigned long bucket_size = m_PointGrid[square].size();
[7171240]449                        if (bucket_size) {
450                            int y = (GetYSize() + 1) * (HITTEST_SIZE - 1 - j) / HITTEST_SIZE;
[7b9b700]451                            DrawIndicatorText(x, y, wxString::Format(wxT("%lu"), bucket_size));
[7171240]452                        }
[5e0b3a13]453                    }
454                }
455            }
456
457            EnableDashedLines();
458            BeginLines();
459            for (int i = 0; i != HITTEST_SIZE; ++i) {
460                int x = (GetXSize() + 1) * i / HITTEST_SIZE;
461                PlaceIndicatorVertex(x, 0);
462                PlaceIndicatorVertex(x, GetYSize());
463            }
464            for (int j = 0; j != HITTEST_SIZE; ++j) {
465                int y = (GetYSize() + 1) * (HITTEST_SIZE - 1 - j) / HITTEST_SIZE;
466                PlaceIndicatorVertex(0, y);
467                PlaceIndicatorVertex(GetXSize(), y);
468            }
469            EndLines();
470            DisableDashedLines();
471        }
472
[11169cb]473        long now = timer.Time();
474        if (m_RenderStats) {
475            // Show stats about rendering.
476            SetColour(col_TURQUOISE);
477            int y = GetYSize() - GetFontSize();
478            if (last_time != 0.0) {
479                // timer.Time() measure in milliseconds.
480                double fps = 1000.0 / (now - last_time);
481                DrawIndicatorText(1, y, wxString::Format(wxT("FPS:% 5.1f"), fps));
482            }
483            y -= GetFontSize();
484            DrawIndicatorText(1, y, wxString::Format(wxT("▲:%lu"), (unsigned long)n_tris));
485        }
486        last_time = now;
487
[c091027]488        // Draw indicators.
489        //
490        // There's no advantage in generating an OpenGL list for the
491        // indicators since they change with almost every redraw (and
492        // sometimes several times between redraws).  This way we avoid
493        // the need to track when to update the indicator OpenGL list,
494        // and also avoid indicator update bugs when we don't quite get this
495        // right...
496        DrawIndicators();
497
[dd6af8b]498        if (zoombox.active()) {
499            SetColour(SEL_COLOUR);
500            EnableDashedLines();
501            BeginPolyline();
502            glaCoord Y = GetYSize();
503            PlaceIndicatorVertex(zoombox.x1, Y - zoombox.y1);
504            PlaceIndicatorVertex(zoombox.x1, Y - zoombox.y2);
505            PlaceIndicatorVertex(zoombox.x2, Y - zoombox.y2);
506            PlaceIndicatorVertex(zoombox.x2, Y - zoombox.y1);
507            PlaceIndicatorVertex(zoombox.x1, Y - zoombox.y1);
508            EndPolyline();
509            DisableDashedLines();
510        } else if (MeasuringLineActive()) {
[429465a]511            // Draw "here" and "there".
[f6d8375]512            double hx, hy;
[aa048c3]513            SetColour(HERE_COLOUR);
[381ae6e]514            if (m_here) {
[f6d8375]515                double dummy;
[381ae6e]516                Transform(*m_here, &hx, &hy, &dummy);
517                if (m_here != &temp_here) DrawRing(hx, hy);
[429465a]518            }
[381ae6e]519            if (m_there) {
[f6d8375]520                double tx, ty;
521                double dummy;
[381ae6e]522                Transform(*m_there, &tx, &ty, &dummy);
523                if (m_here) {
[429465a]524                    BeginLines();
525                    PlaceIndicatorVertex(hx, hy);
526                    PlaceIndicatorVertex(tx, ty);
[42d23c5]527                    EndLines();
[429465a]528                }
[e633bb1]529                BeginBlobs();
[81aea4e]530                DrawBlob(tx, ty);
[e633bb1]531                EndBlobs();
[429465a]532            }
533        }
[f433fda]534
[58dfdd21]535        FinishDrawing();
[5997ffd]536    } else {
537        dc.SetBackground(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWFRAME));
538        dc.Clear();
[58dfdd21]539    }
[5809313]540}
541
[f4c5932]542void GfxCore::DrawBoundingBox()
543{
[d67450e]544    const Vector3 v = 0.5 * m_Parent->GetExtent();
[f4c5932]545
546    SetColour(col_BLUE);
547    EnableDashedLines();
548    BeginPolyline();
[d67450e]549    PlaceVertex(-v.GetX(), -v.GetY(), v.GetZ());
550    PlaceVertex(-v.GetX(), v.GetY(), v.GetZ());
551    PlaceVertex(v.GetX(), v.GetY(), v.GetZ());
552    PlaceVertex(v.GetX(), -v.GetY(), v.GetZ());
553    PlaceVertex(-v.GetX(), -v.GetY(), v.GetZ());
[f4c5932]554    EndPolyline();
555    BeginPolyline();
[d67450e]556    PlaceVertex(-v.GetX(), -v.GetY(), -v.GetZ());
557    PlaceVertex(-v.GetX(), v.GetY(), -v.GetZ());
558    PlaceVertex(v.GetX(), v.GetY(), -v.GetZ());
559    PlaceVertex(v.GetX(), -v.GetY(), -v.GetZ());
560    PlaceVertex(-v.GetX(), -v.GetY(), -v.GetZ());
[f4c5932]561    EndPolyline();
562    BeginLines();
[d67450e]563    PlaceVertex(-v.GetX(), -v.GetY(), v.GetZ());
564    PlaceVertex(-v.GetX(), -v.GetY(), -v.GetZ());
565    PlaceVertex(-v.GetX(), v.GetY(), v.GetZ());
566    PlaceVertex(-v.GetX(), v.GetY(), -v.GetZ());
567    PlaceVertex(v.GetX(), v.GetY(), v.GetZ());
568    PlaceVertex(v.GetX(), v.GetY(), -v.GetZ());
569    PlaceVertex(v.GetX(), -v.GetY(), v.GetZ());
570    PlaceVertex(v.GetX(), -v.GetY(), -v.GetZ());
[f4c5932]571    EndLines();
572    DisableDashedLines();
573}
574
575void GfxCore::DrawShadowedBoundingBox()
576{
[d67450e]577    const Vector3 v = 0.5 * m_Parent->GetExtent();
[f4c5932]578
[f7dae86]579    DrawBoundingBox();
580
[f9ca87c]581    PolygonOffset(true);
[f4c5932]582    SetColour(col_DARK_GREY);
583    BeginQuadrilaterals();
[d67450e]584    PlaceVertex(-v.GetX(), -v.GetY(), -v.GetZ());
585    PlaceVertex(-v.GetX(), v.GetY(), -v.GetZ());
586    PlaceVertex(v.GetX(), v.GetY(), -v.GetZ());
587    PlaceVertex(v.GetX(), -v.GetY(), -v.GetZ());
[f4c5932]588    EndQuadrilaterals();
[f9ca87c]589    PolygonOffset(false);
[f4c5932]590
[d2fcc9b]591    DrawList(LIST_SHADOW);
[f4c5932]592}
593
[c1cf79d]594void GfxCore::DrawGrid()
595{
596    // Draw the grid.
[156dc16]597    SetColour(col_RED);
[c1cf79d]598
599    // Calculate the extent of the survey, in metres across the screen plane.
[b81eee2]600    Double m_across_screen = SurveyUnitsAcrossViewport();
[c1cf79d]601    // Calculate the length of the scale bar in metres.
602    //--move this elsewhere
[c6d95d8]603    Double size_snap = pow(10.0, floor(log10(0.75 * m_across_screen)));
604    Double t = m_across_screen * 0.75 / size_snap;
[c1cf79d]605    if (t >= 5.0) {
[429465a]606        size_snap *= 5.0;
[c1cf79d]607    }
608    else if (t >= 2.0) {
[429465a]609        size_snap *= 2.0;
[c1cf79d]610    }
611
[d67450e]612    Double grid_size = size_snap * 0.1;
[c6d95d8]613    Double edge = grid_size * 2.0;
[d67450e]614    Double grid_z = -m_Parent->GetZExtent() * 0.5 - grid_size;
615    Double left = -m_Parent->GetXExtent() * 0.5 - edge;
616    Double right = m_Parent->GetXExtent() * 0.5 + edge;
617    Double bottom = -m_Parent->GetYExtent() * 0.5 - edge;
618    Double top = m_Parent->GetYExtent() * 0.5 + edge;
[c1cf79d]619    int count_x = (int) ceil((right - left) / grid_size);
620    int count_y = (int) ceil((top - bottom) / grid_size);
[c6d95d8]621    Double actual_right = left + count_x*grid_size;
622    Double actual_top = bottom + count_y*grid_size;
[c1cf79d]623
[b81eee2]624    BeginLines();
625
[c1cf79d]626    for (int xc = 0; xc <= count_x; xc++) {
[429465a]627        Double x = left + xc*grid_size;
[f433fda]628
[b81eee2]629        PlaceVertex(x, bottom, grid_z);
630        PlaceVertex(x, actual_top, grid_z);
[c1cf79d]631    }
632
633    for (int yc = 0; yc <= count_y; yc++) {
[429465a]634        Double y = bottom + yc*grid_size;
[b81eee2]635        PlaceVertex(left, y, grid_z);
636        PlaceVertex(actual_right, y, grid_z);
[c1cf79d]637    }
[b81eee2]638
639    EndLines();
[c1cf79d]640}
641
[1eeb55a]642int GfxCore::GetClinoOffset() const
[c300a04]643{
[2a26b45]644    int result = INDICATOR_OFFSET_X;
645    if (m_Compass) {
646        result += 6 + GetCompassWidth() + INDICATOR_GAP;
647    }
648    return result;
[c300a04]649}
650
[fe665c4]651void GfxCore::DrawTick(int angle_cw)
[6606406]652{
[fe665c4]653    const Double theta = rad(angle_cw);
654    const wxCoord length1 = INDICATOR_RADIUS;
655    const wxCoord length0 = length1 + TICK_LENGTH;
656    wxCoord x0 = wxCoord(length0 * sin(theta));
657    wxCoord y0 = wxCoord(length0 * cos(theta));
658    wxCoord x1 = wxCoord(length1 * sin(theta));
659    wxCoord y1 = wxCoord(length1 * cos(theta));
[6606406]660
[fe665c4]661    PlaceIndicatorVertex(x0, y0);
662    PlaceIndicatorVertex(x1, y1);
[6606406]663}
664
[d67450e]665void GfxCore::DrawArrow(gla_colour col1, gla_colour col2) {
666    Vector3 p1(0, INDICATOR_RADIUS, 0);
667    Vector3 p2(INDICATOR_RADIUS/2, INDICATOR_RADIUS*-.866025404, 0); // 150deg
668    Vector3 p3(-INDICATOR_RADIUS/2, INDICATOR_RADIUS*-.866025404, 0); // 210deg
669    Vector3 pc(0, 0, 0);
670
671    DrawTriangle(col_LIGHT_GREY, col1, p2, p1, pc);
672    DrawTriangle(col_LIGHT_GREY, col2, p3, p1, pc);
673}
674
[fe665c4]675void GfxCore::DrawCompass() {
676    // Ticks.
677    BeginLines();
678    for (int angle = 315; angle > 0; angle -= 45) {
679        DrawTick(angle);
680    }
681    SetColour(col_GREEN);
682    DrawTick(0);
683    EndLines();
684
685    // Compass background.
686    DrawCircle(col_LIGHT_GREY_2, col_GREY, 0, 0, INDICATOR_RADIUS);
[6606406]687
[fe665c4]688    // Compass arrow.
[d67450e]689    DrawArrow(col_INDICATOR_1, col_INDICATOR_2);
[6606406]690}
691
[fe665c4]692// Draw the non-rotating background to the clino.
693void GfxCore::DrawClinoBack() {
694    BeginLines();
695    for (int angle = 0; angle <= 180; angle += 90) {
696        DrawTick(angle);
697    }
698
699    SetColour(col_GREY);
700    PlaceIndicatorVertex(0, INDICATOR_RADIUS);
701    PlaceIndicatorVertex(0, -INDICATOR_RADIUS);
702    PlaceIndicatorVertex(0, 0);
703    PlaceIndicatorVertex(INDICATOR_RADIUS, 0);
[b56df45]704
[fe665c4]705    EndLines();
706}
707
708void GfxCore::DrawClino() {
709    // Ticks.
710    SetColour(col_GREEN);
[33b2094]711    BeginLines();
[fe665c4]712    DrawTick(0);
[33b2094]713    EndLines();
[fe665c4]714
715    // Clino background.
716    DrawSemicircle(col_LIGHT_GREY_2, col_GREY, 0, 0, INDICATOR_RADIUS, 0);
717
718    // Elevation arrow.
[d67450e]719    DrawArrow(col_INDICATOR_2, col_INDICATOR_1);
[b56df45]720}
721
[6606406]722void GfxCore::Draw2dIndicators()
723{
[76dd228]724    // Draw the compass and elevation indicators.
725
726    const int centre_y = INDICATOR_BOX_SIZE / 2 + INDICATOR_OFFSET_Y;
727
[fe665c4]728    const int comp_centre_x = GetCompassXPosition();
[6606406]729
[eef68f9]730    if (m_Compass && !m_Parent->IsExtendedElevation()) {
[fe665c4]731        // If the user is dragging the compass with the pointer outside the
732        // compass, we snap to 45 degree multiples, and the ticks go white.
[76dd228]733        SetColour(m_MouseOutsideCompass ? col_WHITE : col_LIGHT_GREY_2);
[fe665c4]734        DrawList2D(LIST_COMPASS, comp_centre_x, centre_y, -m_PanAngle);
[c300a04]735    }
[76dd228]736
[fe665c4]737    const int elev_centre_x = GetClinoXPosition();
[76dd228]738
[eef68f9]739    if (m_Clino) {
[fe665c4]740        // If the user is dragging the clino with the pointer outside the
741        // clino, we snap to 90 degree multiples, and the ticks go white.
742        SetColour(m_MouseOutsideElev ? col_WHITE : col_LIGHT_GREY_2);
743        DrawList2D(LIST_CLINO_BACK, elev_centre_x, centre_y, 0);
[7a57dc7]744        DrawList2D(LIST_CLINO, elev_centre_x, centre_y, 90 - m_TiltAngle);
[c300a04]745    }
[6606406]746
[aa048c3]747    SetColour(TEXT_COLOUR);
[6606406]748
[21958ec]749    static int triple_zero_width = 0;
750    static int height = 0;
751    if (!triple_zero_width) {
[5627cbb]752        GetTextExtent(wxT("000"), &triple_zero_width, &height);
[21958ec]753    }
754    const int y_off = INDICATOR_OFFSET_Y + INDICATOR_BOX_SIZE + height / 2;
[421b7d2]755
[eef68f9]756    if (m_Compass && !m_Parent->IsExtendedElevation()) {
[21958ec]757        wxString str;
758        int value;
[d171c0c]759        int brg_unit;
[429465a]760        if (m_Degrees) {
[21958ec]761            value = int(m_PanAngle);
[736f7df]762            /* TRANSLATORS: degree symbol - probably should be translated to
763             * itself. */
[d171c0c]764            brg_unit = /*°*/344;
[429465a]765        } else {
[21958ec]766            value = int(m_PanAngle * 200.0 / 180.0);
[736f7df]767            /* TRANSLATORS: symbol for grad (400 grad = 360 degrees = full
768             * circle). */
[d171c0c]769            brg_unit = /*ᵍ*/76;
[f433fda]770        }
[5627cbb]771        str.Printf(wxT("%03d"), value);
[d171c0c]772        str += wmsg(brg_unit);
[21958ec]773        DrawIndicatorText(comp_centre_x - triple_zero_width / 2, y_off, str);
774
[1c507cf]775        // TRANSLATORS: Used in aven above the compass indicator at the lower
776        // right of the display, with a bearing below "Facing".  This indicates the
777        // direction the viewer is "facing" in.
778        //
779        // Try to keep this translation short - ideally at most 10 characters -
780        // as otherwise the compass and clino will be moved further apart to
781        // make room. */
[5627cbb]782        str = wmsg(/*Facing*/203);
[21958ec]783        int w;
[d92d282]784        GetTextExtent(str, &w, NULL);
[21958ec]785        DrawIndicatorText(comp_centre_x - w / 2, y_off + height, str);
[c300a04]786    }
787
[eef68f9]788    if (m_Clino) {
[c13d121f]789        if (m_TiltAngle == -90.0) {
790            // TRANSLATORS: Label used for "clino" in Aven when the view is
791            // from directly above.
[1c507cf]792            //
793            // Try to keep this translation short - ideally at most 10
794            // characters - as otherwise the compass and clino will be moved
795            // further apart to make room. */
[c13d121f]796            wxString str = wmsg(/*Plan*/432);
797            static int width = 0;
798            if (!width) {
799                GetTextExtent(str, &width, NULL);
[d171c0c]800            }
[c13d121f]801            int x = elev_centre_x - width / 2;
802            DrawIndicatorText(x, y_off + height / 2, str);
803        } else if (m_TiltAngle == 90.0) {
804            // TRANSLATORS: Label used for "clino" in Aven when the view is
805            // from directly below.
[1c507cf]806            //
807            // Try to keep this translation short - ideally at most 10
808            // characters - as otherwise the compass and clino will be moved
809            // further apart to make room. */
[c13d121f]810            wxString str = wmsg(/*Kiwi Plan*/433);
811            static int width = 0;
812            if (!width) {
813                GetTextExtent(str, &width, NULL);
[d171c0c]814            }
[c13d121f]815            int x = elev_centre_x - width / 2;
816            DrawIndicatorText(x, y_off + height / 2, str);
817        } else {
818            int angle;
819            wxString str;
820            int width;
821            int unit;
822            if (m_Percent) {
823                static int zero_width = 0;
824                if (!zero_width) {
825                    GetTextExtent(wxT("0"), &zero_width, NULL);
826                }
827                width = zero_width;
828                if (m_TiltAngle > 89.99) {
829                    angle = 1000000;
830                } else if (m_TiltAngle < -89.99) {
831                    angle = -1000000;
832                } else {
833                    angle = int(100 * tan(rad(m_TiltAngle)));
834                }
835                if (angle > 99999 || angle < -99999) {
836                    str = angle > 0 ? wxT("+") : wxT("-");
[0b8c321]837                    /* TRANSLATORS: infinity symbol - used for the percentage gradient on
[feefc6a]838                     * vertical angles. */
[c13d121f]839                    str += wmsg(/*∞*/431);
840                } else {
841                    str = angle ? wxString::Format(wxT("%+03d"), angle) : wxT("0");
842                }
[feefc6a]843                /* TRANSLATORS: symbol for percentage gradient (100% = 45
844                 * degrees = 50 grad). */
[c13d121f]845                unit = /*%*/96;
846            } else if (m_Degrees) {
847                static int zero_zero_width = 0;
848                if (!zero_zero_width) {
849                    GetTextExtent(wxT("00"), &zero_zero_width, NULL);
850                }
851                width = zero_zero_width;
852                angle = int(m_TiltAngle);
853                str = angle ? wxString::Format(wxT("%+03d"), angle) : wxT("00");
854                unit = /*°*/344;
[d171c0c]855            } else {
[c13d121f]856                width = triple_zero_width;
857                angle = int(m_TiltAngle * 200.0 / 180.0);
858                str = angle ? wxString::Format(wxT("%+04d"), angle) : wxT("000");
859                unit = /*ᵍ*/76;
[21958ec]860            }
861
[c13d121f]862            int sign_offset = 0;
863            if (unit == /*%*/96) {
864                // Right align % since the width changes so much.
865                GetTextExtent(str, &sign_offset, NULL);
866                sign_offset -= width;
867            } else if (angle < 0) {
868                // Adjust horizontal position so the left of the first digit is
869                // always in the same place.
870                static int minus_width = 0;
871                if (!minus_width) {
872                    GetTextExtent(wxT("-"), &minus_width, NULL);
873                }
874                sign_offset = minus_width;
875            } else if (angle > 0) {
876                // Adjust horizontal position so the left of the first digit is
877                // always in the same place.
878                static int plus_width = 0;
879                if (!plus_width) {
880                    GetTextExtent(wxT("+"), &plus_width, NULL);
881                }
882                sign_offset = plus_width;
[21958ec]883            }
[d171c0c]884
[c13d121f]885            str += wmsg(unit);
886            DrawIndicatorText(elev_centre_x - sign_offset - width / 2, y_off, str);
[21958ec]887
[1c507cf]888            // TRANSLATORS: Label used for "clino" in Aven when the view is
889            // neither from directly above nor from directly below.  It is
890            // also used in the dialog for editing a marked position in a
891            // presentation.
892            //
893            // Try to keep this translation short - ideally at most 10
894            // characters - as otherwise the compass and clino will be moved
895            // further apart to make room. */
[c13d121f]896            str = wmsg(/*Elevation*/118);
897            static int elevation_width = 0;
898            if (!elevation_width) {
899                GetTextExtent(str, &elevation_width, NULL);
900            }
901            int x = elev_centre_x - elevation_width / 2;
902            DrawIndicatorText(x, y_off + height, str);
[d171c0c]903        }
[c300a04]904    }
[5809313]905}
906
907void GfxCore::NattyDrawNames()
908{
[84cab34]909    // Draw station names, without overlapping.
[f433fda]910
[d92d282]911    const unsigned int quantise(GetFontSize() / QUANTISE_FACTOR);
[90430f2]912    const unsigned int quantised_x = GetXSize() / quantise;
913    const unsigned int quantised_y = GetYSize() / quantise;
[84cab34]914    const size_t buffer_size = quantised_x * quantised_y;
[f433fda]915
[69463a0]916    if (!m_LabelGrid) m_LabelGrid = new char[buffer_size];
[5809313]917
[33b2094]918    memset((void*) m_LabelGrid, 0, buffer_size);
[156dc16]919
[33b2094]920    list<LabelInfo*>::const_iterator label = m_Parent->GetLabels();
[36c3285]921    for ( ; label != m_Parent->GetLabelsEnd(); ++label) {
[ece003f]922        if (!((m_Surface && (*label)->IsSurface()) ||
923              (m_Legs && (*label)->IsUnderground()) ||
924              (!(*label)->IsSurface() && !(*label)->IsUnderground()))) {
925            // if this station isn't to be displayed, skip to the next
926            // (last case is for stns with no legs attached)
927            continue;
928        }
929
[f6d8375]930        double x, y, z;
[f433fda]931
[d67450e]932        Transform(**label, &x, &y, &z);
[36c3285]933        // Check if the label is behind us (in perspective view).
[d92d282]934        if (z <= 0.0 || z >= 1.0) continue;
[421b7d2]935
[1eeb55a]936        // Apply a small shift so that translating the view doesn't make which
937        // labels are displayed change as the resulting twinkling effect is
938        // distracting.
[f6d8375]939        double tx, ty, tz;
[d67450e]940        Transform(Vector3(), &tx, &ty, &tz);
[429465a]941        tx -= floor(tx / quantise) * quantise;
942        ty -= floor(ty / quantise) * quantise;
[5809313]943
[f12e8cc]944        tx = x - tx;
945        if (tx < 0) continue;
946
947        ty = y - ty;
948        if (ty < 0) continue;
[421b7d2]949
[f12e8cc]950        unsigned int iy = unsigned(ty) / quantise;
[d92d282]951        if (iy >= quantised_y) continue;
[5a24583]952        unsigned int width = (*label)->get_width();
[f12e8cc]953        unsigned int ix = unsigned(tx) / quantise;
954        if (ix + width >= quantised_x) continue;
[33b2094]955
[f12e8cc]956        char * test = m_LabelGrid + ix + iy * quantised_x;
[d92d282]957        if (memchr(test, 1, width)) continue;
[33b2094]958
[8bd480e]959        x += 3;
960        y -= GetFontSize() / 2;
[d92d282]961        DrawIndicatorText((int)x, (int)y, (*label)->GetText());
962
963        if (iy > QUANTISE_FACTOR) iy = QUANTISE_FACTOR;
964        test -= quantised_x * iy;
[f12e8cc]965        iy += 4;
966        while (--iy && test < m_LabelGrid + buffer_size) {
[d92d282]967            memset(test, 1, width);
968            test += quantised_x;
[429465a]969        }
[84cab34]970    }
[5809313]971}
972
973void GfxCore::SimpleDrawNames()
974{
[a8aedf4]975    // Draw all station names, without worrying about overlaps
[d5de678]976    list<LabelInfo*>::const_iterator label = m_Parent->GetLabels();
[01d91fd]977    for ( ; label != m_Parent->GetLabelsEnd(); ++label) {
[ece003f]978        if (!((m_Surface && (*label)->IsSurface()) ||
979              (m_Legs && (*label)->IsUnderground()) ||
980              (!(*label)->IsSurface() && !(*label)->IsUnderground()))) {
981            // if this station isn't to be displayed, skip to the next
982            // (last case is for stns with no legs attached)
983            continue;
984        }
985
[f6d8375]986        double x, y, z;
[d67450e]987        Transform(**label, &x, &y, &z);
[d92d282]988
989        // Check if the label is behind us (in perspective view).
990        if (z <= 0) continue;
991
[8bd480e]992        x += 3;
993        y -= GetFontSize() / 2;
[d92d282]994        DrawIndicatorText((int)x, (int)y, (*label)->GetText());
[84cab34]995    }
[5809313]996}
997
[825bdff]998void GfxCore::DrawColourKey(int num_bands, const wxString & other, const wxString & units)
[5809313]999{
[7cdb1c3]1000    int total_block_height =
[62da267]1001        KEY_BLOCK_HEIGHT * (num_bands == 1 ? num_bands : num_bands - 1);
1002    if (!other.empty()) total_block_height += KEY_BLOCK_HEIGHT * 2;
[825bdff]1003    if (!units.empty()) total_block_height += KEY_BLOCK_HEIGHT;
[5809313]1004
[3585243]1005    const int bottom = -total_block_height;
[a74b014]1006
[d4650b3]1007    int size = 0;
[7cdb1c3]1008    if (!other.empty()) GetTextExtent(other, &size, NULL);
[d4650b3]1009    int band;
[2043961]1010    for (band = 0; band < num_bands; ++band) {
[a74b014]1011        int x;
[7cdb1c3]1012        GetTextExtent(key_legends[band], &x, NULL);
[d4650b3]1013        if (x > size) size = x;
1014    }
1015
[3585243]1016    int left = -KEY_BLOCK_WIDTH - size;
[d4650b3]1017
[fcc3741]1018    key_lowerleft[m_ColourBy].x = left - KEY_EXTRA_LEFT_MARGIN;
1019    key_lowerleft[m_ColourBy].y = bottom;
[d4650b3]1020
[d43fa84]1021    int y = bottom;
[825bdff]1022    if (!units.empty()) y += KEY_BLOCK_HEIGHT;
[a74b014]1023
[7cdb1c3]1024    if (!other.empty()) {
[a74b014]1025        DrawShadedRectangle(GetSurfacePen(), GetSurfacePen(), left, y,
[62da267]1026                KEY_BLOCK_WIDTH, KEY_BLOCK_HEIGHT);
[2779338f]1027        SetColour(col_BLACK);
1028        BeginPolyline();
1029        PlaceIndicatorVertex(left, y);
1030        PlaceIndicatorVertex(left + KEY_BLOCK_WIDTH, y);
1031        PlaceIndicatorVertex(left + KEY_BLOCK_WIDTH, y + KEY_BLOCK_HEIGHT);
1032        PlaceIndicatorVertex(left, y + KEY_BLOCK_HEIGHT);
1033        PlaceIndicatorVertex(left, y);
1034        EndPolyline();
[62da267]1035        y += KEY_BLOCK_HEIGHT * 2;
[a74b014]1036    }
1037
[2779338f]1038    int start = y;
[2043961]1039    if (num_bands == 1) {
1040        DrawShadedRectangle(GetPen(0), GetPen(0), left, y,
[62da267]1041                            KEY_BLOCK_WIDTH, KEY_BLOCK_HEIGHT);
[2779338f]1042        y += KEY_BLOCK_HEIGHT;
[2043961]1043    } else {
1044        for (band = 0; band < num_bands - 1; ++band) {
1045            DrawShadedRectangle(GetPen(band), GetPen(band + 1), left, y,
[62da267]1046                                KEY_BLOCK_WIDTH, KEY_BLOCK_HEIGHT);
1047            y += KEY_BLOCK_HEIGHT;
[2043961]1048        }
[d4650b3]1049    }
1050
[2779338f]1051    SetColour(col_BLACK);
1052    BeginPolyline();
1053    PlaceIndicatorVertex(left, y);
1054    PlaceIndicatorVertex(left + KEY_BLOCK_WIDTH, y);
1055    PlaceIndicatorVertex(left + KEY_BLOCK_WIDTH, start);
1056    PlaceIndicatorVertex(left, start);
1057    PlaceIndicatorVertex(left, y);
1058    EndPolyline();
1059
[825bdff]1060    SetColour(TEXT_COLOUR);
1061
1062    y = bottom;
1063    if (!units.empty()) {
1064        GetTextExtent(units, &size, NULL);
1065        DrawIndicatorText(left + (KEY_BLOCK_WIDTH - size) / 2, y, units);
1066        y += KEY_BLOCK_HEIGHT;
1067    }
1068    y -= GetFontSize() / 2;
[62da267]1069    left += KEY_BLOCK_WIDTH + 5;
[d4650b3]1070
[7cdb1c3]1071    if (!other.empty()) {
[62da267]1072        y += KEY_BLOCK_HEIGHT / 2;
[7cdb1c3]1073        DrawIndicatorText(left, y, other);
[62da267]1074        y += KEY_BLOCK_HEIGHT * 2 - KEY_BLOCK_HEIGHT / 2;
[a74b014]1075    }
1076
[2043961]1077    if (num_bands == 1) {
[62da267]1078        y += KEY_BLOCK_HEIGHT / 2;
[7cdb1c3]1079        DrawIndicatorText(left, y, key_legends[0]);
[2043961]1080    } else {
[62c5fc6]1081        for (band = 0; band < num_bands; ++band) {
[7cdb1c3]1082            DrawIndicatorText(left, y, key_legends[band]);
[62da267]1083            y += KEY_BLOCK_HEIGHT;
[2043961]1084        }
[d4650b3]1085    }
1086}
1087
[e2ea75a]1088void GfxCore::DrawDepthKey()
[c61aa79]1089{
[62c5fc6]1090    Double z_ext = m_Parent->GetDepthExtent();
[825bdff]1091    int num_bands = 1;
1092    int sf = 0;
1093    if (z_ext > 0.0) {
[62c5fc6]1094        num_bands = GetNumColourBands();
[825bdff]1095        Double z_range = z_ext;
1096        if (!m_Metric) z_range /= METRES_PER_FOOT;
1097        sf = max(0, 1 - (int)floor(log10(z_range)));
[62c5fc6]1098    }
1099
[825bdff]1100    Double z_min = m_Parent->GetDepthMin() + m_Parent->GetOffset().GetZ();
1101    for (int band = 0; band < num_bands; ++band) {
1102        Double z = z_min;
[62c5fc6]1103        if (band)
1104            z += z_ext * band / (num_bands - 1);
[825bdff]1105
1106        if (!m_Metric)
1107            z /= METRES_PER_FOOT;
1108
1109        key_legends[band].Printf(wxT("%.*f"), sf, z);
[c61aa79]1110    }
1111
[ccb83b7]1112    DrawColourKey(num_bands, wxString(), wmsg(m_Metric ? /*m*/424: /*ft*/428));
[7cdb1c3]1113}
[a74b014]1114
[e2ea75a]1115void GfxCore::DrawDateKey()
[7cdb1c3]1116{
1117    int num_bands;
[62c5fc6]1118    if (!HasDateInformation()) {
1119        num_bands = 0;
[7cdb1c3]1120    } else {
[62c5fc6]1121        int date_ext = m_Parent->GetDateExtent();
1122        if (date_ext == 0) {
1123            num_bands = 1;
1124        } else {
1125            num_bands = GetNumColourBands();
1126        }
1127        for (int band = 0; band < num_bands; ++band) {
1128            int y, m, d;
1129            int days = m_Parent->GetDateMin();
1130            if (band)
1131                days += date_ext * band / (num_bands - 1);
1132            ymd_from_days_since_1900(days, &y, &m, &d);
1133            key_legends[band].Printf(wxT("%04d-%02d-%02d"), y, m, d);
1134        }
[7cdb1c3]1135    }
[62c5fc6]1136
[7cdb1c3]1137    wxString other;
1138    if (!m_Parent->HasCompleteDateInfo()) {
[736f7df]1139        /* TRANSLATORS: Used in the "colour key" for "colour by date" if there
[0b8c321]1140         * are surveys without date information.  Try to keep this fairly short.
1141         */
[7cdb1c3]1142        other = wmsg(/*Undated*/221);
[c61aa79]1143    }
1144
[825bdff]1145    DrawColourKey(num_bands, other, wxString());
[7cdb1c3]1146}
[a74b014]1147
[e2ea75a]1148void GfxCore::DrawErrorKey()
[7cdb1c3]1149{
[62c5fc6]1150    int num_bands;
1151    if (HasErrorInformation()) {
1152        // Use fixed colours for each error factor so it's directly visually
1153        // comparable between surveys.
1154        num_bands = GetNumColourBands();
1155        for (int band = 0; band < num_bands; ++band) {
1156            double E = MAX_ERROR * band / (num_bands - 1);
1157            key_legends[band].Printf(wxT("%.2f"), E);
1158        }
1159    } else {
1160        num_bands = 0;
[c61aa79]1161    }
1162
[7cdb1c3]1163    // Always show the "Not in loop" legend for now (FIXME).
[736f7df]1164    /* TRANSLATORS: Used in the "colour key" for "colour by error" for surveys
[0b8c321]1165     * which aren’t part of a loop and so have no error information. Try to keep
1166     * this fairly short. */
[825bdff]1167    DrawColourKey(num_bands, wmsg(/*Not in loop*/290), wxString());
[ac537e9]1168}
1169
[cc9e2c65]1170void GfxCore::DrawGradientKey()
1171{
1172    int num_bands;
1173    // Use fixed colours for each gradient so it's directly visually comparable
1174    // between surveys.
1175    num_bands = GetNumColourBands();
1176    wxString units = wmsg(m_Degrees ? /*°*/344 : /*ᵍ*/76);
1177    for (int band = 0; band < num_bands; ++band) {
1178        double gradient = double(band) / (num_bands - 1);
1179        if (m_Degrees) {
1180            gradient *= 90.0;
1181        } else {
1182            gradient *= 100.0;
1183        }
1184        key_legends[band].Printf(wxT("%.f%s"), gradient, units);
1185    }
1186
1187    DrawColourKey(num_bands, wxString(), wxString());
1188}
1189
[af50685]1190void GfxCore::DrawLengthKey()
1191{
1192    int num_bands;
1193    // Use fixed colours for each length so it's directly visually comparable
1194    // between surveys.
1195    num_bands = GetNumColourBands();
1196    for (int band = 0; band < num_bands; ++band) {
1197        double len = pow(10, LOG_LEN_MAX * band / (num_bands - 1));
1198        if (!m_Metric) {
1199            len /= METRES_PER_FOOT;
1200        }
[355809f]1201        key_legends[band].Printf(wxT("%.1f"), len);
[af50685]1202    }
1203
[355809f]1204    DrawColourKey(num_bands, wxString(), wmsg(m_Metric ? /*m*/424: /*ft*/428));
[af50685]1205}
1206
[9c37beb]1207void GfxCore::DrawScaleBar()
[5809313]1208{
[84cab34]1209    // Draw the scalebar.
[eef68f9]1210    if (GetPerspective()) return;
[5809313]1211
[37bc1f5]1212    // Calculate how many metres of survey are currently displayed across the
1213    // screen.
[087bc72]1214    Double across_screen = SurveyUnitsAcrossViewport();
[156dc16]1215
[90430f2]1216    double f = double(GetClinoXPosition() - INDICATOR_BOX_SIZE / 2 - SCALE_BAR_OFFSET_X) / GetXSize();
[5f50488]1217    if (f > 0.75) {
1218        f = 0.75;
1219    } else if (f < 0.5) {
1220        // Stop it getting squeezed to nothing.
1221        // FIXME: In this case we should probably move the compass and clino up
1222        // to make room rather than letting stuff overlap.
1223        f = 0.5;
1224    }
1225
[087bc72]1226    // Convert to imperial measurements if required.
[7a89dc2]1227    Double multiplier = 1.0;
1228    if (!m_Metric) {
[429465a]1229        across_screen /= METRES_PER_FOOT;
1230        multiplier = METRES_PER_FOOT;
[5f50488]1231        if (across_screen >= 5280.0 / f) {
[429465a]1232            across_screen /= 5280.0;
1233            multiplier *= 5280.0;
1234        }
[7a89dc2]1235    }
[5757725]1236
[7a89dc2]1237    // Calculate the length of the scale bar.
[5f50488]1238    Double size_snap = pow(10.0, floor(log10(f * across_screen)));
1239    Double t = across_screen * f / size_snap;
[98860c5]1240    if (t >= 5.0) {
[429465a]1241        size_snap *= 5.0;
[7a89dc2]1242    } else if (t >= 2.0) {
[429465a]1243        size_snap *= 2.0;
[98860c5]1244    }
1245
[7a89dc2]1246    if (!m_Metric) size_snap *= multiplier;
1247
[84cab34]1248    // Actual size of the thing in pixels:
[90430f2]1249    int size = int((size_snap / SurveyUnitsAcrossViewport()) * GetXSize());
[e2c1671]1250    m_ScaleBarWidth = size;
[421b7d2]1251
[5809313]1252    // Draw it...
[e2c1671]1253    const int end_y = SCALE_BAR_OFFSET_Y + SCALE_BAR_HEIGHT;
[5809313]1254    int interval = size / 10;
1255
[aa048c3]1256    gla_colour col = col_WHITE;
[5809313]1257    for (int ix = 0; ix < 10; ix++) {
[e2c1671]1258        int x = SCALE_BAR_OFFSET_X + int(ix * ((Double) size / 10.0));
[421b7d2]1259
[e2c1671]1260        DrawRectangle(col, col, x, end_y, interval + 2, SCALE_BAR_HEIGHT);
[421b7d2]1261
[aa048c3]1262        col = (col == col_WHITE) ? col_GREY : col_WHITE;
[5809313]1263    }
1264
[84cab34]1265    // Add labels.
[825bdff]1266    wxString str;
[ccb83b7]1267    int units;
[825bdff]1268    if (m_Metric) {
[ccb83b7]1269        Double km = size_snap * 1e-3;
1270        if (km >= 1.0) {
1271            size_snap = km;
[736f7df]1272            /* TRANSLATORS: abbreviation for "kilometres" (unit of length),
1273             * used e.g.  "5km".
1274             *
1275             * If there should be a space between the number and this, include
1276             * one in the translation. */
[ccb83b7]1277            units = /*km*/423;
[825bdff]1278        } else if (size_snap >= 1.0) {
[736f7df]1279            /* TRANSLATORS: abbreviation for "metres" (unit of length), used
1280             * e.g. "10m".
[b49ac56]1281             *
[736f7df]1282             * If there should be a space between the number and this, include
1283             * one in the translation. */
[ccb83b7]1284            units = /*m*/424;
[825bdff]1285        } else {
[ccb83b7]1286            size_snap *= 1e2;
[736f7df]1287            /* TRANSLATORS: abbreviation for "centimetres" (unit of length),
1288             * used e.g.  "50cm".
[b49ac56]1289             *
[736f7df]1290             * If there should be a space between the number and this, include
1291             * one in the translation. */
[ccb83b7]1292            units = /*cm*/425;
[825bdff]1293        }
1294    } else {
1295        size_snap /= METRES_PER_FOOT;
1296        Double miles = size_snap / 5280.0;
[ccb83b7]1297        if (miles >= 1.0) {
1298            size_snap = miles;
1299            if (size_snap >= 2.0) {
[736f7df]1300                /* TRANSLATORS: abbreviation for "miles" (unit of length,
1301                 * plural), used e.g.  "2 miles".
[b49ac56]1302                 *
[736f7df]1303                 * If there should be a space between the number and this,
1304                 * include one in the translation. */
[ccb83b7]1305                units = /* miles*/426;
[825bdff]1306            } else {
[736f7df]1307                /* TRANSLATORS: abbreviation for "mile" (unit of length,
1308                 * singular), used e.g.  "1 mile".
[b49ac56]1309                 *
[736f7df]1310                 * If there should be a space between the number and this,
1311                 * include one in the translation. */
[ccb83b7]1312                units = /* mile*/427;
[825bdff]1313            }
[ccb83b7]1314        } else if (size_snap >= 1.0) {
[736f7df]1315            /* TRANSLATORS: abbreviation for "feet" (unit of length), used e.g.
1316             * as "10ft".
[b49ac56]1317             *
[736f7df]1318             * If there should be a space between the number and this, include
1319             * one in the translation. */
[ccb83b7]1320            units = /*ft*/428;
1321        } else {
1322            size_snap *= 12.0;
[736f7df]1323            /* TRANSLATORS: abbreviation for "inches" (unit of length), used
1324             * e.g. as "6in".
[b49ac56]1325             *
[736f7df]1326             * If there should be a space between the number and this, include
1327             * one in the translation. */
[ccb83b7]1328            units = /*in*/429;
[825bdff]1329        }
1330    }
[ccb83b7]1331    if (size_snap >= 1.0) {
1332        str.Printf(wxT("%.f%s"), size_snap, wmsg(units).c_str());
1333    } else {
1334        int sf = -(int)floor(log10(size_snap));
1335        str.Printf(wxT("%.*f%s"), sf, size_snap, wmsg(units).c_str());
1336    }
[84cab34]1337
[1eeb55a]1338    int text_width, text_height;
[56da40e]1339    GetTextExtent(str, &text_width, &text_height);
[8bd480e]1340    const int text_y = end_y - text_height + 1;
1341    SetColour(TEXT_COLOUR);
[5627cbb]1342    DrawIndicatorText(SCALE_BAR_OFFSET_X, text_y, wxT("0"));
[8bd480e]1343    DrawIndicatorText(SCALE_BAR_OFFSET_X + size - text_width, text_y, str);
[5809313]1344}
[56da40e]1345
[2072157]1346bool GfxCore::CheckHitTestGrid(const wxPoint& point, bool centre)
[2effbf1]1347{
[0874c07e]1348    if (Animating()) return false;
1349
[90430f2]1350    if (point.x < 0 || point.x >= GetXSize() ||
1351        point.y < 0 || point.y >= GetYSize()) {
[429465a]1352        return false;
[137e31b]1353    }
[421b7d2]1354
[156f645]1355    SetDataTransform();
[00a68e0]1356
[69463a0]1357    if (!m_HitTestGridValid) CreateHitTestGrid();
[fa42426]1358
[0b0520c]1359    int grid_x = point.x * HITTEST_SIZE / (GetXSize() + 1);
1360    int grid_y = point.y * HITTEST_SIZE / (GetYSize() + 1);
[137e31b]1361
[fa42426]1362    LabelInfo *best = NULL;
[d96c95c]1363    int dist_sqrd = sqrd_measure_threshold;
[2effbf1]1364    int square = grid_x + grid_y * HITTEST_SIZE;
[fa42426]1365    list<LabelInfo*>::iterator iter = m_PointGrid[square].begin();
[00a68e0]1366
[fa42426]1367    while (iter != m_PointGrid[square].end()) {
[429465a]1368        LabelInfo *pt = *iter++;
[fa42426]1369
[f6d8375]1370        double cx, cy, cz;
[00a68e0]1371
[d67450e]1372        Transform(*pt, &cx, &cy, &cz);
[00a68e0]1373
[90430f2]1374        cy = GetYSize() - cy;
[00a68e0]1375
[429465a]1376        int dx = point.x - int(cx);
1377        int ds = dx * dx;
1378        if (ds >= dist_sqrd) continue;
1379        int dy = point.y - int(cy);
[fa42426]1380
[429465a]1381        ds += dy * dy;
1382        if (ds >= dist_sqrd) continue;
[f433fda]1383
[429465a]1384        dist_sqrd = ds;
1385        best = pt;
[f433fda]1386
[429465a]1387        if (ds == 0) break;
[2effbf1]1388    }
[f433fda]1389
[fa42426]1390    if (best) {
[381ae6e]1391        m_Parent->ShowInfo(best, m_there);
[429465a]1392        if (centre) {
[e67ed1b]1393            // FIXME: allow Ctrl-Click to not set there or something?
[82c3731]1394            CentreOn(*best);
[90430f2]1395            WarpPointer(GetXSize() / 2, GetYSize() / 2);
[381ae6e]1396            SetThere(best);
[429465a]1397            m_Parent->SelectTreeItem(best);
1398        }
[e67ed1b]1399    } else {
1400        // Left-clicking not on a survey cancels the measuring line.
[0633bcc]1401        if (centre) {
1402            ClearTreeSelection();
1403        } else {
[381ae6e]1404            m_Parent->ShowInfo(best, m_there);
[f6d8375]1405            double x, y, z;
[90430f2]1406            ReverseTransform(point.x, GetYSize() - point.y, &x, &y, &z);
[381ae6e]1407            temp_here.assign(Vector3(x, y, z));
1408            SetHere(&temp_here);
[0633bcc]1409        }
[2effbf1]1410    }
[203d2a7]1411
1412    return best;
[2effbf1]1413}
1414
[5876fcb]1415void GfxCore::OnSize(wxSizeEvent& event)
[5809313]1416{
[5876fcb]1417    // Handle a change in window size.
1418    wxSize size = event.GetSize();
[5809313]1419
[78beaf1]1420    if (size.GetWidth() <= 0 || size.GetHeight() <= 0) {
[0580c6a]1421        // Before things are fully initialised, we sometimes get a bogus
1422        // resize message...
[6ef8bd73]1423        // FIXME have changes in MainFrm cured this?  It still happens with
[880b954]1424        // 1.0.32 and wxGTK 2.5.2 (load a file from the command line).
1425        // With 1.1.6 and wxGTK 2.4.2 we only get negative sizes if MainFrm
[78beaf1]1426        // is resized such that the GfxCore window isn't visible.
1427        //printf("OnSize(%d,%d)\n", size.GetWidth(), size.GetHeight());
[0580c6a]1428        return;
1429    }
[b72f4b5]1430
[9071cf5]1431    event.Skip();
[39e460c9]1432
[5876fcb]1433    if (m_DoneFirstShow) {
[81f1266]1434        TryToFreeArrays();
[6ebc0ce]1435
[69463a0]1436        m_HitTestGridValid = false;
[33b2094]1437
[d67450e]1438        ForceRefresh();
[5809313]1439    }
1440}
1441
[de7a879]1442void GfxCore::DefaultParameters()
[5809313]1443{
[33b2094]1444    // Set default viewing parameters.
[b462168]1445
[f433fda]1446    m_Surface = false;
1447    if (!m_Parent->HasUndergroundLegs()) {
1448        if (m_Parent->HasSurfaceLegs()) {
1449            // If there are surface legs, but no underground legs, turn
1450            // surface surveys on.
1451            m_Surface = true;
1452        } else {
1453            // If there are no legs (e.g. after loading a .pos file), turn
1454            // crosses on.
1455            m_Crosses = true;
1456        }
[b462168]1457    }
1458
[714daae]1459    m_PanAngle = 0.0;
[eef68f9]1460    if (m_Parent->IsExtendedElevation()) {
1461        m_TiltAngle = 0.0;
1462    } else {
[7a57dc7]1463        m_TiltAngle = -90.0;
[b462168]1464    }
[714daae]1465
[08253d9]1466    SetRotation(m_PanAngle, m_TiltAngle);
[d67450e]1467    SetTranslation(Vector3());
[33b2094]1468
[e577f89]1469    m_RotationStep = 30.0;
[5809313]1470    m_Rotating = false;
[3d00693]1471    m_SwitchingTo = 0;
[fe444b8]1472    m_Entrances = false;
1473    m_FixedPts = false;
1474    m_ExportedPts = false;
[c1cf79d]1475    m_Grid = false;
[f4c5932]1476    m_BoundingBox = false;
[33b2094]1477    m_Tubes = false;
[1eeb55a]1478    if (GetPerspective()) TogglePerspective();
[39bd2ef]1479
1480    // Set the initial scale.
1481    SetScale(initial_scale);
[de7a879]1482}
[5809313]1483
[de7a879]1484void GfxCore::Defaults()
1485{
1486    // Restore default scale, rotation and translation parameters.
1487    DefaultParameters();
[ba358fc]1488
1489    // Invalidate all the cached lists.
1490    GLACanvas::FirstShow();
1491
[fa42426]1492    ForceRefresh();
[5809313]1493}
[84cab34]1494
[5455bb2]1495void GfxCore::Animate()
[5809313]1496{
[2a3d328]1497    // Don't show pointer coordinates while animating.
[4b031c0]1498    // FIXME : only do this when we *START* animating!  Use a static copy
1499    // of the value of "Animating()" last time we were here to track this?
1500    // MainFrm now checks if we're trying to clear already cleared labels
1501    // and just returns, but it might be simpler to check here!
[2a3d328]1502    ClearCoords();
[381ae6e]1503    m_Parent->ShowInfo();
[5809313]1504
[5455bb2]1505    long t;
[75d4a2b]1506    if (movie) {
[aea4f8b]1507        ReadPixels(movie->GetWidth(), movie->GetHeight(), movie->GetBuffer());
[98fd937]1508        if (!movie->AddFrame()) {
1509            wxGetApp().ReportError(wxString(movie->get_error_string(), wxConvUTF8));
1510            delete movie;
1511            movie = NULL;
1512            presentation_mode = 0;
[5455bb2]1513            return;
[98fd937]1514        }
[5455bb2]1515        t = 1000 / 25; // 25 frames per second
[6a4cdcb6]1516    } else {
[5455bb2]1517        static long t_prev = 0;
1518        t = timer.Time();
1519        // Avoid redrawing twice in the same frame.
[ff1601e]1520        long delta_t = (t_prev == 0 ? 1000 / MAX_FRAMERATE : t - t_prev);
1521        if (delta_t < 1000 / MAX_FRAMERATE)
[6987d2a]1522            return;
[5455bb2]1523        t_prev = t;
[6987d2a]1524        if (presentation_mode == PLAYING && pres_speed != 0.0)
1525            t = delta_t;
[6a4cdcb6]1526    }
[5809313]1527
[128fac4]1528    if (presentation_mode == PLAYING && pres_speed != 0.0) {
[6987d2a]1529        // FIXME: It would probably be better to work relative to the time we
1530        // passed the last mark, but that's complicated by the speed
1531        // potentially changing (or even the direction of playback reversing)
1532        // at any point during playback.
1533        Double tick = t * 0.001 * fabs(pres_speed);
1534        while (tick >= next_mark_time) {
1535            tick -= next_mark_time;
[128fac4]1536            this_mark_total = 0;
[58dfdd21]1537            PresentationMark prev_mark = next_mark;
[e577f89]1538            if (prev_mark.angle < 0) prev_mark.angle += 360.0;
1539            else if (prev_mark.angle >= 360.0) prev_mark.angle -= 360.0;
[128fac4]1540            if (pres_reverse)
1541                next_mark = m_Parent->GetPresMark(MARK_PREV);
1542            else
1543                next_mark = m_Parent->GetPresMark(MARK_NEXT);
[1690fa9]1544            if (!next_mark.is_valid()) {
[128fac4]1545                SetView(prev_mark);
[1690fa9]1546                presentation_mode = 0;
[387babf]1547                if (movie && !movie->Close()) {
[98fd937]1548                    wxGetApp().ReportError(wxString(movie->get_error_string(), wxConvUTF8));
1549                }
[81f1266]1550                delete movie;
1551                movie = NULL;
[1690fa9]1552                break;
1553            }
[58dfdd21]1554
[128fac4]1555            double tmp = (pres_reverse ? prev_mark.time : next_mark.time);
1556            if (tmp > 0) {
1557                next_mark_time = tmp;
[58dfdd21]1558            } else {
[d67450e]1559                double d = (next_mark - prev_mark).magnitude();
[49ce5b0]1560                // FIXME: should ignore component of d which is unseen in
1561                // non-perspective mode?
[8674eea]1562                next_mark_time = sqrd(d / 30.0);
[49ce5b0]1563                double a = next_mark.angle - prev_mark.angle;
1564                if (a > 180.0) {
1565                    next_mark.angle -= 360.0;
1566                    a = 360.0 - a;
1567                } else if (a < -180.0) {
1568                    next_mark.angle += 360.0;
1569                    a += 360.0;
1570                } else {
1571                    a = fabs(a);
1572                }
1573                next_mark_time += sqrd(a / 60.0);
1574                double ta = fabs(next_mark.tilt_angle - prev_mark.tilt_angle);
1575                next_mark_time += sqrd(ta / 60.0);
1576                double s = fabs(log(next_mark.scale) - log(prev_mark.scale));
[8674eea]1577                next_mark_time += sqrd(s / 2.0);
[49ce5b0]1578                next_mark_time = sqrt(next_mark_time);
[8674eea]1579                // was: next_mark_time = max(max(d / 30, s / 2), max(a, ta) / 60);
[49ce5b0]1580                //printf("*** %.6f from (\nd: %.6f\ns: %.6f\na: %.6f\nt: %.6f )\n",
[8674eea]1581                //       next_mark_time, d/30.0, s/2.0, a/60.0, ta/60.0);
1582                if (tmp < 0) next_mark_time /= -tmp;
[58dfdd21]1583            }
[1690fa9]1584        }
1585
1586        if (presentation_mode) {
1587            // Advance position towards next_mark
[6987d2a]1588            double p = tick / next_mark_time;
[1690fa9]1589            double q = 1 - p;
1590            PresentationMark here = GetView();
[d877aa2]1591            if (next_mark.angle < 0) {
[e577f89]1592                if (here.angle >= next_mark.angle + 360.0)
1593                    here.angle -= 360.0;
1594            } else if (next_mark.angle >= 360.0) {
1595                if (here.angle <= next_mark.angle - 360.0)
1596                    here.angle += 360.0;
[d877aa2]1597            }
[8674eea]1598            here.assign(q * here + p * next_mark);
[1690fa9]1599            here.angle = q * here.angle + p * next_mark.angle;
[e577f89]1600            if (here.angle < 0) here.angle += 360.0;
1601            else if (here.angle >= 360.0) here.angle -= 360.0;
[1690fa9]1602            here.tilt_angle = q * here.tilt_angle + p * next_mark.tilt_angle;
[58dfdd21]1603            here.scale = exp(q * log(here.scale) + p * log(next_mark.scale));
[1690fa9]1604            SetView(here);
[6987d2a]1605            this_mark_total += tick;
1606            next_mark_time -= tick;
[1690fa9]1607        }
[6987d2a]1608
1609        ForceRefresh();
1610        return;
[1690fa9]1611    }
1612
[5876fcb]1613    // When rotating...
1614    if (m_Rotating) {
[5455bb2]1615        Double step = base_pan + (t - base_pan_time) * 1e-3 * m_RotationStep - m_PanAngle;
1616        TurnCave(step);
[5876fcb]1617    }
[5809313]1618
[5876fcb]1619    if (m_SwitchingTo == PLAN) {
[429465a]1620        // When switching to plan view...
[5455bb2]1621        Double step = base_tilt - (t - base_tilt_time) * 1e-3 * 90.0 - m_TiltAngle;
1622        TiltCave(step);
[7a57dc7]1623        if (m_TiltAngle == -90.0) {
[429465a]1624            m_SwitchingTo = 0;
1625        }
[1690fa9]1626    } else if (m_SwitchingTo == ELEVATION) {
[429465a]1627        // When switching to elevation view...
[5455bb2]1628        Double step;
1629        if (m_TiltAngle > 0.0) {
1630            step = base_tilt - (t - base_tilt_time) * 1e-3 * 90.0 - m_TiltAngle;
[7a57dc7]1631        } else {
[5455bb2]1632            step = base_tilt + (t - base_tilt_time) * 1e-3 * 90.0 - m_TiltAngle;
[429465a]1633        }
[5455bb2]1634        if (fabs(step) >= fabs(m_TiltAngle)) {
[3ddd351]1635            m_SwitchingTo = 0;
[5455bb2]1636            step = -m_TiltAngle;
1637        }
1638        TiltCave(step);
1639    } else if (m_SwitchingTo) {
1640        // Rotate the shortest way around to the destination angle.  If we're
1641        // 180 off, we favour turning anticlockwise, as auto-rotation does by
1642        // default.
1643        Double target = (m_SwitchingTo - NORTH) * 90;
1644        Double diff = target - m_PanAngle;
1645        diff = fmod(diff, 360);
1646        if (diff <= -180)
1647            diff += 360;
1648        else if (diff > 180)
1649            diff -= 360;
1650        if (m_RotationStep < 0 && diff == 180.0)
1651            diff = -180.0;
1652        Double step = base_pan - m_PanAngle;
1653        Double delta = (t - base_pan_time) * 1e-3 * fabs(m_RotationStep);
1654        if (diff > 0) {
1655            step += delta;
[3ddd351]1656        } else {
[5455bb2]1657            step -= delta;
[3ddd351]1658        }
[5455bb2]1659        step = fmod(step, 360);
1660        if (step <= -180)
1661            step += 360;
1662        else if (step > 180)
1663            step -= 360;
1664        if (fabs(step) >= fabs(diff)) {
1665            m_SwitchingTo = 0;
1666            step = diff;
1667        }
1668        TurnCave(step);
[5876fcb]1669    }
[5809313]1670
[5455bb2]1671    ForceRefresh();
[5809313]1672}
[84cab34]1673
[0580c6a]1674// How much to allow around the box - this is because of the ring shape
1675// at one end of the line.
1676static const int HIGHLIGHTED_PT_SIZE = 2; // FIXME: tie in to blob and ring size
1677#define MARGIN (HIGHLIGHTED_PT_SIZE * 2 + 1)
[381ae6e]1678void GfxCore::RefreshLine(const Point *a, const Point *b, const Point *c)
[7a89dc2]1679{
[0f86024]1680#ifdef __WXMSW__
1681    (void)a;
1682    (void)b;
1683    (void)c;
1684    // FIXME: We get odd redraw artifacts if we just update the line, and
1685    // redrawing the whole scene doesn't actually seem to be measurably
1686    // slower.  That may not be true with software rendering though...
1687    ForceRefresh();
1688#else
[06d367d]1689    // Best of all might be to copy the window contents before we draw the
1690    // line, then replace each time we redraw.
[796d7bf]1691
[5876fcb]1692    // Calculate the minimum rectangle which includes the old and new
1693    // measuring lines to minimise the redraw time
1694    int l = INT_MAX, r = INT_MIN, u = INT_MIN, d = INT_MAX;
[f6d8375]1695    double X, Y, Z;
[381ae6e]1696    if (a) {
1697        if (!Transform(*a, &X, &Y, &Z)) {
[796d7bf]1698            printf("oops\n");
1699        } else {
1700            int x = int(X);
[90430f2]1701            int y = GetYSize() - 1 - int(Y);
[1c448e1]1702            l = x;
1703            r = x;
1704            u = y;
1705            d = y;
[796d7bf]1706        }
[5876fcb]1707    }
[381ae6e]1708    if (b) {
1709        if (!Transform(*b, &X, &Y, &Z)) {
[796d7bf]1710            printf("oops\n");
1711        } else {
1712            int x = int(X);
[90430f2]1713            int y = GetYSize() - 1 - int(Y);
[1c448e1]1714            l = min(l, x);
1715            r = max(r, x);
1716            u = max(u, y);
1717            d = min(d, y);
[796d7bf]1718        }
[5876fcb]1719    }
[381ae6e]1720    if (c) {
1721        if (!Transform(*c, &X, &Y, &Z)) {
[796d7bf]1722            printf("oops\n");
1723        } else {
1724            int x = int(X);
[90430f2]1725            int y = GetYSize() - 1 - int(Y);
[1c448e1]1726            l = min(l, x);
1727            r = max(r, x);
1728            u = max(u, y);
1729            d = min(d, y);
[796d7bf]1730        }
[5876fcb]1731    }
[1c448e1]1732    l -= MARGIN;
1733    r += MARGIN;
1734    u += MARGIN;
1735    d -= MARGIN;
[0ca8fe0]1736    RefreshRect(wxRect(l, d, r - l, u - d), false);
[0f86024]1737#endif
[7a89dc2]1738}
1739
[381ae6e]1740void GfxCore::SetHereFromTree(const LabelInfo * p)
1741{
1742    SetHere(p);
1743    m_Parent->ShowInfo(m_here, m_there);
1744}
1745
[5876fcb]1746void GfxCore::SetHere()
[7a89dc2]1747{
[381ae6e]1748    if (!m_here) return;
[6b061db]1749    bool line_active = MeasuringLineActive();
[381ae6e]1750    const LabelInfo * old = m_here;
1751    m_here = NULL;
[6b061db]1752    if (line_active || MeasuringLineActive())
1753        RefreshLine(old, m_there, m_here);
[7a89dc2]1754}
1755
[381ae6e]1756void GfxCore::SetHere(const LabelInfo *p)
[c6d95d8]1757{
[6b061db]1758    bool line_active = MeasuringLineActive();
[381ae6e]1759    const LabelInfo * old = m_here;
[82c3731]1760    m_here = p;
[6b061db]1761    if (line_active || MeasuringLineActive())
1762        RefreshLine(old, m_there, m_here);
[156dc16]1763}
1764
[5876fcb]1765void GfxCore::SetThere()
[156dc16]1766{
[381ae6e]1767    if (!m_there) return;
1768    const LabelInfo * old = m_there;
1769    m_there = NULL;
[0580c6a]1770    RefreshLine(m_here, old, m_there);
[156dc16]1771}
1772
[381ae6e]1773void GfxCore::SetThere(const LabelInfo * p)
[156dc16]1774{
[381ae6e]1775    const LabelInfo * old = m_there;
[82c3731]1776    m_there = p;
[0580c6a]1777    RefreshLine(m_here, old, m_there);
[156dc16]1778}
1779
[5876fcb]1780void GfxCore::CreateHitTestGrid()
[156dc16]1781{
[7171240]1782    if (!m_PointGrid) {
1783        // Initialise hit-test grid.
1784        m_PointGrid = new list<LabelInfo*>[HITTEST_SIZE * HITTEST_SIZE];
1785    } else {
1786        // Clear hit-test grid.
1787        for (int i = 0; i < HITTEST_SIZE * HITTEST_SIZE; i++) {
1788            m_PointGrid[i].clear();
1789        }
[5876fcb]1790    }
[156dc16]1791
[5876fcb]1792    // Fill the grid.
1793    list<LabelInfo*>::const_iterator pos = m_Parent->GetLabels();
1794    list<LabelInfo*>::const_iterator end = m_Parent->GetLabelsEnd();
1795    while (pos != end) {
[429465a]1796        LabelInfo* label = *pos++;
[33b2094]1797
[429465a]1798        if (!((m_Surface && label->IsSurface()) ||
[dc42b8e]1799              (m_Legs && label->IsUnderground()) ||
1800              (!label->IsSurface() && !label->IsUnderground()))) {
1801            // if this station isn't to be displayed, skip to the next
1802            // (last case is for stns with no legs attached)
[429465a]1803            continue;
1804        }
[33b2094]1805
[429465a]1806        // Calculate screen coordinates.
[f6d8375]1807        double cx, cy, cz;
[d67450e]1808        Transform(*label, &cx, &cy, &cz);
[90430f2]1809        if (cx < 0 || cx >= GetXSize()) continue;
1810        if (cy < 0 || cy >= GetYSize()) continue;
[33b2094]1811
[90430f2]1812        cy = GetYSize() - cy;
[00a68e0]1813
[429465a]1814        // On-screen, so add to hit-test grid...
[0b0520c]1815        int grid_x = int(cx * HITTEST_SIZE / (GetXSize() + 1));
1816        int grid_y = int(cy * HITTEST_SIZE / (GetYSize() + 1));
[33b2094]1817
[429465a]1818        m_PointGrid[grid_x + grid_y * HITTEST_SIZE].push_back(label);
[33b2094]1819    }
1820
[00a68e0]1821    m_HitTestGridValid = true;
[33b2094]1822}
[c6d95d8]1823
[2a02de2]1824//
[5876fcb]1825//  Methods for controlling the orientation of the survey
[2a02de2]1826//
1827
[5876fcb]1828void GfxCore::TurnCave(Double angle)
[156dc16]1829{
[5876fcb]1830    // Turn the cave around its z-axis by a given angle.
[156dc16]1831
[5876fcb]1832    m_PanAngle += angle;
[5a7597a]1833    // Wrap to range [0, 360):
1834    m_PanAngle = fmod(m_PanAngle, 360.0);
1835    if (m_PanAngle < 0.0) {
[e577f89]1836        m_PanAngle += 360.0;
[156dc16]1837    }
[33b2094]1838
[00a68e0]1839    m_HitTestGridValid = false;
[381ae6e]1840    if (m_here && m_here == &temp_here) SetHere();
[00a68e0]1841
[08253d9]1842    SetRotation(m_PanAngle, m_TiltAngle);
[156dc16]1843}
1844
[5876fcb]1845void GfxCore::TurnCaveTo(Double angle)
[d80805e]1846{
[5455bb2]1847    if (m_Rotating) {
1848        // If we're rotating, jump to the specified angle.
1849        TurnCave(angle - m_PanAngle);
1850        SetPanBase();
1851        return;
1852    }
1853
[3ddd351]1854    int new_switching_to = ((int)angle) / 90 + NORTH;
1855    if (new_switching_to == m_SwitchingTo) {
1856        // A second order to switch takes us there right away
1857        TurnCave(angle - m_PanAngle);
1858        m_SwitchingTo = 0;
1859        ForceRefresh();
1860    } else {
[5455bb2]1861        SetPanBase();
[3ddd351]1862        m_SwitchingTo = new_switching_to;
1863    }
[d80805e]1864}
1865
[5876fcb]1866void GfxCore::TiltCave(Double tilt_angle)
[156dc16]1867{
[5876fcb]1868    // Tilt the cave by a given angle.
[e577f89]1869    if (m_TiltAngle + tilt_angle > 90.0) {
[08253d9]1870        m_TiltAngle = 90.0;
[e577f89]1871    } else if (m_TiltAngle + tilt_angle < -90.0) {
[08253d9]1872        m_TiltAngle = -90.0;
1873    } else {
1874        m_TiltAngle += tilt_angle;
[d80805e]1875    }
1876
[00a68e0]1877    m_HitTestGridValid = false;
[381ae6e]1878    if (m_here && m_here == &temp_here) SetHere();
[00a68e0]1879
[08253d9]1880    SetRotation(m_PanAngle, m_TiltAngle);
[5ffa439]1881}
1882
[5876fcb]1883void GfxCore::TranslateCave(int dx, int dy)
[5ffa439]1884{
[33b2094]1885    AddTranslationScreenCoordinates(dx, dy);
[00a68e0]1886    m_HitTestGridValid = false;
1887
[381ae6e]1888    if (m_here && m_here == &temp_here) SetHere();
[c00c6713]1889
[33b2094]1890    ForceRefresh();
1891}
[5876fcb]1892
[33b2094]1893void GfxCore::DragFinished()
1894{
[76dd228]1895    m_MouseOutsideCompass = m_MouseOutsideElev = false;
[5876fcb]1896    ForceRefresh();
[2173dbd]1897}
1898
[d877aa2]1899void GfxCore::ClearCoords()
1900{
1901    m_Parent->ClearCoords();
1902}
1903
[5876fcb]1904void GfxCore::SetCoords(wxPoint point)
[fd6e0d5]1905{
[0874c07e]1906    // We can't work out 2D coordinates from a perspective view, and it
1907    // doesn't really make sense to show coordinates while we're animating.
1908    if (GetPerspective() || Animating()) return;
[0a811ab]1909
[5876fcb]1910    // Update the coordinate or altitude display, given the (x, y) position in
1911    // window coordinates.  The relevant display is updated depending on
1912    // whether we're in plan or elevation view.
1913
[f6d8375]1914    double cx, cy, cz;
[5876fcb]1915
[a2b3d62]1916    SetDataTransform();
[90430f2]1917    ReverseTransform(point.x, GetYSize() - 1 - point.y, &cx, &cy, &cz);
[5876fcb]1918
[0633bcc]1919    if (ShowingPlan()) {
[d67450e]1920        m_Parent->SetCoords(cx + m_Parent->GetOffset().GetX(),
[381ae6e]1921                            cy + m_Parent->GetOffset().GetY(),
1922                            m_there);
[0633bcc]1923    } else if (ShowingElevation()) {
[381ae6e]1924        m_Parent->SetAltitude(cz + m_Parent->GetOffset().GetZ(),
1925                              m_there);
[d479c15]1926    } else {
[429465a]1927        m_Parent->ClearCoords();
[a2b3d62]1928    }
[fd6e0d5]1929}
1930
[2a26b45]1931int GfxCore::GetCompassWidth() const
1932{
1933    static int result = 0;
1934    if (result == 0) {
1935        result = INDICATOR_BOX_SIZE;
1936        int width;
1937        const wxString & msg = wmsg(/*Facing*/203);
1938        GetTextExtent(msg, &width, NULL);
1939        if (width > result) result = width;
1940    }
1941    return result;
1942}
1943
1944int GfxCore::GetClinoWidth() const
1945{
1946    static int result = 0;
1947    if (result == 0) {
1948        result = INDICATOR_BOX_SIZE;
1949        int width;
1950        const wxString & msg1 = wmsg(/*Plan*/432);
1951        GetTextExtent(msg1, &width, NULL);
1952        if (width > result) result = width;
1953        const wxString & msg2 = wmsg(/*Kiwi Plan*/433);
1954        GetTextExtent(msg2, &width, NULL);
1955        if (width > result) result = width;
1956        const wxString & msg3 = wmsg(/*Elevation*/118);
1957        GetTextExtent(msg3, &width, NULL);
1958        if (width > result) result = width;
1959    }
1960    return result;
1961}
1962
[1eeb55a]1963int GfxCore::GetCompassXPosition() const
[1fd2edb]1964{
[f433fda]1965    // Return the x-coordinate of the centre of the compass in window
1966    // coordinates.
[2a26b45]1967    return GetXSize() - INDICATOR_OFFSET_X - GetCompassWidth() / 2;
[1fd2edb]1968}
1969
[1eeb55a]1970int GfxCore::GetClinoXPosition() const
[1fd2edb]1971{
[f433fda]1972    // Return the x-coordinate of the centre of the compass in window
1973    // coordinates.
[2a26b45]1974    return GetXSize() - GetClinoOffset() - GetClinoWidth() / 2;
[1fd2edb]1975}
1976
[1eeb55a]1977int GfxCore::GetIndicatorYPosition() const
[dfe4454c]1978{
[f433fda]1979    // Return the y-coordinate of the centre of the indicators in window
1980    // coordinates.
[90430f2]1981    return GetYSize() - INDICATOR_OFFSET_Y - INDICATOR_BOX_SIZE / 2;
[5876fcb]1982}
[fa42426]1983
[1eeb55a]1984int GfxCore::GetIndicatorRadius() const
[5876fcb]1985{
1986    // Return the radius of each indicator.
[1eeb55a]1987    return (INDICATOR_BOX_SIZE - INDICATOR_MARGIN * 2) / 2;
[5876fcb]1988}
[dfe4454c]1989
[14acdae]1990bool GfxCore::PointWithinCompass(wxPoint point) const
[5876fcb]1991{
[f433fda]1992    // Determine whether a point (in window coordinates) lies within the
1993    // compass.
[e2c1671]1994    if (!ShowingCompass()) return false;
1995
[33b2094]1996    glaCoord dx = point.x - GetCompassXPosition();
1997    glaCoord dy = point.y - GetIndicatorYPosition();
1998    glaCoord radius = GetIndicatorRadius();
[f433fda]1999
[5876fcb]2000    return (dx * dx + dy * dy <= radius * radius);
2001}
[fa42426]2002
[14acdae]2003bool GfxCore::PointWithinClino(wxPoint point) const
[5876fcb]2004{
2005    // Determine whether a point (in window coordinates) lies within the clino.
[e2c1671]2006    if (!ShowingClino()) return false;
2007
[33b2094]2008    glaCoord dx = point.x - GetClinoXPosition();
2009    glaCoord dy = point.y - GetIndicatorYPosition();
2010    glaCoord radius = GetIndicatorRadius();
[f433fda]2011
[5876fcb]2012    return (dx * dx + dy * dy <= radius * radius);
[dfe4454c]2013}
[8000d8f]2014
[14acdae]2015bool GfxCore::PointWithinScaleBar(wxPoint point) const
[5876fcb]2016{
[e2c1671]2017    // Determine whether a point (in window coordinates) lies within the scale
2018    // bar.
2019    if (!ShowingScaleBar()) return false;
[8000d8f]2020
[e2c1671]2021    return (point.x >= SCALE_BAR_OFFSET_X &&
2022            point.x <= SCALE_BAR_OFFSET_X + m_ScaleBarWidth &&
[90430f2]2023            point.y <= GetYSize() - SCALE_BAR_OFFSET_Y - SCALE_BAR_HEIGHT &&
2024            point.y >= GetYSize() - SCALE_BAR_OFFSET_Y - SCALE_BAR_HEIGHT*2);
[5876fcb]2025}
[8000d8f]2026
[d43fa84]2027bool GfxCore::PointWithinColourKey(wxPoint point) const
2028{
2029    // Determine whether a point (in window coordinates) lies within the key.
[62da267]2030    point.x -= GetXSize() - KEY_OFFSET_X;
2031    point.y = KEY_OFFSET_Y - point.y;
[fcc3741]2032    return (point.x >= key_lowerleft[m_ColourBy].x && point.x <= 0 &&
2033            point.y >= key_lowerleft[m_ColourBy].y && point.y <= 0);
[d43fa84]2034}
2035
[5876fcb]2036void GfxCore::SetCompassFromPoint(wxPoint point)
[8000d8f]2037{
[d877aa2]2038    // Given a point in window coordinates, set the heading of the survey.  If
2039    // the point is outside the compass, it snaps to 45 degree intervals;
2040    // otherwise it operates as normal.
[8000d8f]2041
[5876fcb]2042    wxCoord dx = point.x - GetCompassXPosition();
2043    wxCoord dy = point.y - GetIndicatorYPosition();
2044    wxCoord radius = GetIndicatorRadius();
[7aa15c0]2045
[0580c6a]2046    double angle = deg(atan2(double(dx), double(dy))) - 180.0;
[5876fcb]2047    if (dx * dx + dy * dy <= radius * radius) {
[3ddd351]2048        TurnCave(angle - m_PanAngle);
[429465a]2049        m_MouseOutsideCompass = false;
[e577f89]2050    } else {
[3ddd351]2051        TurnCave(int(angle / 45.0) * 45.0 - m_PanAngle);
[429465a]2052        m_MouseOutsideCompass = true;
[7aa15c0]2053    }
[8000d8f]2054
[5876fcb]2055    ForceRefresh();
2056}
2057
2058void GfxCore::SetClinoFromPoint(wxPoint point)
2059{
[d877aa2]2060    // Given a point in window coordinates, set the elevation of the survey.
2061    // If the point is outside the clino, it snaps to 90 degree intervals;
2062    // otherwise it operates as normal.
[8000d8f]2063
[33b2094]2064    glaCoord dx = point.x - GetClinoXPosition();
2065    glaCoord dy = point.y - GetIndicatorYPosition();
2066    glaCoord radius = GetIndicatorRadius();
[f433fda]2067
[5876fcb]2068    if (dx >= 0 && dx * dx + dy * dy <= radius * radius) {
[7a57dc7]2069        TiltCave(-deg(atan2(double(dy), double(dx))) - m_TiltAngle);
[429465a]2070        m_MouseOutsideElev = false;
[e577f89]2071    } else if (dy >= INDICATOR_MARGIN) {
[7a57dc7]2072        TiltCave(-90.0 - m_TiltAngle);
[429465a]2073        m_MouseOutsideElev = true;
[e577f89]2074    } else if (dy <= -INDICATOR_MARGIN) {
[7a57dc7]2075        TiltCave(90.0 - m_TiltAngle);
[429465a]2076        m_MouseOutsideElev = true;
[e577f89]2077    } else {
[429465a]2078        TiltCave(-m_TiltAngle);
2079        m_MouseOutsideElev = true;
[5876fcb]2080    }
[8000d8f]2081
[5876fcb]2082    ForceRefresh();
[8000d8f]2083}
2084
[5876fcb]2085void GfxCore::SetScaleBarFromOffset(wxCoord dx)
[8000d8f]2086{
[5876fcb]2087    // Set the scale of the survey, given an offset as to how much the mouse has
2088    // been dragged over the scalebar since the last scale change.
[8000d8f]2089
[5b7164d]2090    SetScale((m_ScaleBarWidth + dx) * m_Scale / m_ScaleBarWidth);
[5876fcb]2091    ForceRefresh();
2092}
[8000d8f]2093
[5876fcb]2094void GfxCore::RedrawIndicators()
2095{
2096    // Redraw the compass and clino indicators.
[8000d8f]2097
[2a26b45]2098    int total_width = GetCompassWidth() + INDICATOR_GAP + GetClinoWidth();
2099    RefreshRect(wxRect(GetXSize() - INDICATOR_OFFSET_X - total_width,
[e24b7fb]2100                       GetYSize() - INDICATOR_OFFSET_Y - INDICATOR_BOX_SIZE,
[2a26b45]2101                       total_width,
[e24b7fb]2102                       INDICATOR_BOX_SIZE), false);
[8000d8f]2103}
2104
[5876fcb]2105void GfxCore::StartRotation()
[8000d8f]2106{
[5876fcb]2107    // Start the survey rotating.
[f433fda]2108
[5455bb2]2109    if (m_SwitchingTo >= NORTH)
2110        m_SwitchingTo = 0;
[5876fcb]2111    m_Rotating = true;
[5455bb2]2112    SetPanBase();
[5876fcb]2113}
[8000d8f]2114
[5876fcb]2115void GfxCore::ToggleRotation()
2116{
2117    // Toggle the survey rotation on/off.
[f433fda]2118
[5876fcb]2119    if (m_Rotating) {
[2a3d328]2120        StopRotation();
2121    } else {
2122        StartRotation();
[5876fcb]2123    }
2124}
[8000d8f]2125
[5876fcb]2126void GfxCore::StopRotation()
2127{
2128    // Stop the survey rotating.
[8000d8f]2129
[5876fcb]2130    m_Rotating = false;
[33b2094]2131    ForceRefresh();
[5876fcb]2132}
[8000d8f]2133
[eef68f9]2134bool GfxCore::IsExtendedElevation() const
[5876fcb]2135{
[eef68f9]2136    return m_Parent->IsExtendedElevation();
[5876fcb]2137}
[8000d8f]2138
[5876fcb]2139void GfxCore::ReverseRotation()
2140{
2141    // Reverse the direction of rotation.
[8000d8f]2142
[5876fcb]2143    m_RotationStep = -m_RotationStep;
[5455bb2]2144    if (m_Rotating)
2145        SetPanBase();
[5876fcb]2146}
[8000d8f]2147
[5876fcb]2148void GfxCore::RotateSlower(bool accel)
2149{
2150    // Decrease the speed of rotation, optionally by an increased amount.
[5455bb2]2151    if (fabs(m_RotationStep) == 1.0)
2152        return;
[8000d8f]2153
[5455bb2]2154    m_RotationStep *= accel ? (1 / 1.44) : (1 / 1.2);
2155
2156    if (fabs(m_RotationStep) < 1.0) {
2157        m_RotationStep = (m_RotationStep > 0 ? 1.0 : -1.0);
[1690fa9]2158    }
[5455bb2]2159    if (m_Rotating)
2160        SetPanBase();
[8000d8f]2161}
2162
[5876fcb]2163void GfxCore::RotateFaster(bool accel)
2164{
2165    // Increase the speed of rotation, optionally by an increased amount.
[5455bb2]2166    if (fabs(m_RotationStep) == 180.0)
2167        return;
[5876fcb]2168
2169    m_RotationStep *= accel ? 1.44 : 1.2;
[5455bb2]2170    if (fabs(m_RotationStep) > 180.0) {
2171        m_RotationStep = (m_RotationStep > 0 ? 180.0 : -180.0);
[1690fa9]2172    }
[5455bb2]2173    if (m_Rotating)
2174        SetPanBase();
[5876fcb]2175}
[8000d8f]2176
[5876fcb]2177void GfxCore::SwitchToElevation()
[8000d8f]2178{
[5876fcb]2179    // Perform an animated switch to elevation view.
[8000d8f]2180
[5455bb2]2181    if (m_SwitchingTo != ELEVATION) {
2182        SetTiltBase();
2183        m_SwitchingTo = ELEVATION;
2184    } else {
2185        // A second order to switch takes us there right away
2186        TiltCave(-m_TiltAngle);
2187        m_SwitchingTo = 0;
2188        ForceRefresh();
[5876fcb]2189    }
[8000d8f]2190}
2191
[5876fcb]2192void GfxCore::SwitchToPlan()
[8000d8f]2193{
[5876fcb]2194    // Perform an animated switch to plan view.
[8000d8f]2195
[5455bb2]2196    if (m_SwitchingTo != PLAN) {
2197        SetTiltBase();
2198        m_SwitchingTo = PLAN;
2199    } else {
2200        // A second order to switch takes us there right away
2201        TiltCave(-90.0 - m_TiltAngle);
2202        m_SwitchingTo = 0;
2203        ForceRefresh();
[8000d8f]2204    }
[5876fcb]2205}
[8000d8f]2206
[d1628e8e]2207void GfxCore::SetViewTo(Double xmin, Double xmax, Double ymin, Double ymax, Double zmin, Double zmax)
2208{
2209
2210    SetTranslation(-Vector3((xmin + xmax) / 2, (ymin + ymax) / 2, (zmin + zmax) / 2));
[d0f5918]2211    Double scale = HUGE_VAL;
[d1628e8e]2212    const Vector3 ext = m_Parent->GetExtent();
2213    if (xmax > xmin) {
2214        Double s = ext.GetX() / (xmax - xmin);
2215        if (s < scale) scale = s;
2216    }
2217    if (ymax > ymin) {
2218        Double s = ext.GetY() / (ymax - ymin);
2219        if (s < scale) scale = s;
2220    }
2221    if (!ShowingPlan() && zmax > zmin) {
2222        Double s = ext.GetZ() / (zmax - zmin);
2223        if (s < scale) scale = s;
2224    }
[d0f5918]2225    if (scale != HUGE_VAL) SetScale(scale);
[d1628e8e]2226    ForceRefresh();
2227}
2228
[14acdae]2229bool GfxCore::CanRaiseViewpoint() const
[5876fcb]2230{
2231    // Determine if the survey can be viewed from a higher angle of elevation.
[f433fda]2232
[7a57dc7]2233    return GetPerspective() ? (m_TiltAngle < 90.0) : (m_TiltAngle > -90.0);
[8000d8f]2234}
2235
[14acdae]2236bool GfxCore::CanLowerViewpoint() const
[2effbf1]2237{
[5876fcb]2238    // Determine if the survey can be viewed from a lower angle of elevation.
[2effbf1]2239
[7a57dc7]2240    return GetPerspective() ? (m_TiltAngle > -90.0) : (m_TiltAngle < 90.0);
[5876fcb]2241}
[2effbf1]2242
[78c67a6]2243bool GfxCore::HasDepth() const
[bd21214]2244{
[78c67a6]2245    return m_Parent->GetDepthExtent() == 0.0;
[bd21214]2246}
2247
[843ee7b]2248bool GfxCore::HasErrorInformation() const
[d4650b3]2249{
[843ee7b]2250    return m_Parent->HasErrorInformation();
[d4650b3]2251}
2252
[843ee7b]2253bool GfxCore::HasDateInformation() const
[c61aa79]2254{
[843ee7b]2255    return m_Parent->GetDateMin() >= 0;
[c61aa79]2256}
2257
[14acdae]2258bool GfxCore::ShowingPlan() const
[5876fcb]2259{
2260    // Determine if the survey is in plan view.
[f433fda]2261
[7a57dc7]2262    return (m_TiltAngle == -90.0);
[2effbf1]2263}
2264
[14acdae]2265bool GfxCore::ShowingElevation() const
[8000d8f]2266{
[5876fcb]2267    // Determine if the survey is in elevation view.
[f433fda]2268
[5876fcb]2269    return (m_TiltAngle == 0.0);
[8000d8f]2270}
2271
[14acdae]2272bool GfxCore::ShowingMeasuringLine() const
[8000d8f]2273{
[0afefe6]2274    // Determine if the measuring line is being shown.  Only check if "there"
2275    // is valid, since that means the measuring line anchor is out.
[f433fda]2276
[381ae6e]2277    return m_there;
[8000d8f]2278}
2279
[eff44b9]2280void GfxCore::ToggleFlag(bool* flag, int update)
[5876fcb]2281{
2282    *flag = !*flag;
[6747314]2283    if (update == UPDATE_BLOBS) {
[eff44b9]2284        UpdateBlobs();
[ef1870d]2285    } else if (update == UPDATE_BLOBS_AND_CROSSES) {
2286        UpdateBlobs();
2287        InvalidateList(LIST_CROSSES);
[de43be7]2288        m_HitTestGridValid = false;
[6cd6bbe]2289    }
[eff44b9]2290    ForceRefresh();
[5876fcb]2291}
[93744a5]2292
[14acdae]2293int GfxCore::GetNumEntrances() const
[4b1fc48]2294{
[5876fcb]2295    return m_Parent->GetNumEntrances();
2296}
[bd7a61b]2297
[14acdae]2298int GfxCore::GetNumFixedPts() const
[5876fcb]2299{
2300    return m_Parent->GetNumFixedPts();
2301}
[7757a4ed]2302
[14acdae]2303int GfxCore::GetNumExportedPts() const
[5876fcb]2304{
2305    return m_Parent->GetNumExportedPts();
2306}
2307
[622460e]2308void GfxCore::ToggleTerrain()
2309{
2310    ToggleFlag(&m_Terrain);
2311    if (m_Terrain && !dem) {
2312        wxCommandEvent dummy;
2313        m_Parent->OnOpenTerrain(dummy);
2314    }
2315}
2316
[d96c95c]2317void GfxCore::ToggleFatFinger()
2318{
2319    if (sqrd_measure_threshold == sqrd(MEASURE_THRESHOLD)) {
2320        sqrd_measure_threshold = sqrd(5 * MEASURE_THRESHOLD);
[7b9b700]2321        wxMessageBox(wxT("Fat finger enabled"), wxT("Aven Debug"), wxOK | wxICON_INFORMATION);
[d96c95c]2322    } else {
2323        sqrd_measure_threshold = sqrd(MEASURE_THRESHOLD);
[7b9b700]2324        wxMessageBox(wxT("Fat finger disabled"), wxT("Aven Debug"), wxOK | wxICON_INFORMATION);
[d96c95c]2325    }
2326}
2327
[5876fcb]2328void GfxCore::ClearTreeSelection()
2329{
2330    m_Parent->ClearTreeSelection();
2331}
2332
[82c3731]2333void GfxCore::CentreOn(const Point &p)
[5876fcb]2334{
[d67450e]2335    SetTranslation(-p);
[00a68e0]2336    m_HitTestGridValid = false;
[f433fda]2337
[5876fcb]2338    ForceRefresh();
[4b1fc48]2339}
[5876fcb]2340
[33b2094]2341void GfxCore::ForceRefresh()
2342{
2343    Refresh(false);
2344}
2345
[d2fcc9b]2346void GfxCore::GenerateList(unsigned int l)
[33b2094]2347{
[9eb58d0]2348    assert(m_HaveData);
[3ddcad8]2349
[d2fcc9b]2350    switch (l) {
[fe665c4]2351        case LIST_COMPASS:
2352            DrawCompass();
2353            break;
2354        case LIST_CLINO:
2355            DrawClino();
2356            break;
2357        case LIST_CLINO_BACK:
2358            DrawClinoBack();
2359            break;
[9c37beb]2360        case LIST_SCALE_BAR:
2361            DrawScaleBar();
2362            break;
[e2ea75a]2363        case LIST_DEPTH_KEY:
2364            DrawDepthKey();
[252d759]2365            break;
[e2ea75a]2366        case LIST_DATE_KEY:
2367            DrawDateKey();
[d4650b3]2368            break;
[e2ea75a]2369        case LIST_ERROR_KEY:
2370            DrawErrorKey();
[c61aa79]2371            break;
[cc9e2c65]2372        case LIST_GRADIENT_KEY:
2373            DrawGradientKey();
2374            break;
[af50685]2375        case LIST_LENGTH_KEY:
2376            DrawLengthKey();
2377            break;
[d2fcc9b]2378        case LIST_UNDERGROUND_LEGS:
2379            GenerateDisplayList();
2380            break;
2381        case LIST_TUBES:
2382            GenerateDisplayListTubes();
2383            break;
2384        case LIST_SURFACE_LEGS:
2385            GenerateDisplayListSurface();
2386            break;
[86fe6e4]2387        case LIST_BLOBS:
2388            GenerateBlobsDisplayList();
[37d7084]2389            break;
[86fe6e4]2390        case LIST_CROSSES: {
2391            BeginCrosses();
2392            SetColour(col_LIGHT_GREY);
2393            list<LabelInfo*>::const_iterator pos = m_Parent->GetLabels();
2394            while (pos != m_Parent->GetLabelsEnd()) {
2395                const LabelInfo* label = *pos++;
2396
2397                if ((m_Surface && label->IsSurface()) ||
2398                    (m_Legs && label->IsUnderground()) ||
2399                    (!label->IsSurface() && !label->IsUnderground())) {
2400                    // Check if this station should be displayed
2401                    // (last case is for stns with no legs attached)
2402                    DrawCross(label->GetX(), label->GetY(), label->GetZ());
2403                }
2404            }
2405            EndCrosses();
2406            break;
2407        }
[37d7084]2408        case LIST_GRID:
2409            DrawGrid();
[d2fcc9b]2410            break;
[86fe6e4]2411        case LIST_SHADOW:
2412            GenerateDisplayListShadow();
[d2fcc9b]2413            break;
[6388423]2414        case LIST_TERRAIN:
2415            DrawTerrain();
[22b0a8f]2416            break;
[d2fcc9b]2417        default:
2418            assert(false);
2419            break;
2420    }
2421}
2422
[d67450e]2423void GfxCore::ToggleSmoothShading()
2424{
2425    GLACanvas::ToggleSmoothShading();
2426    InvalidateList(LIST_TUBES);
2427    ForceRefresh();
2428}
2429
[d2fcc9b]2430void GfxCore::GenerateDisplayList()
2431{
2432    // Generate the display list for the underground legs.
[c61aa79]2433    list<traverse>::const_iterator trav = m_Parent->traverses_begin();
2434    list<traverse>::const_iterator tend = m_Parent->traverses_end();
[8666fc7]2435
[ad661cc]2436    if (m_Splays == SPLAYS_SHOW_FADED) {
[bd77a6a]2437        SetAlpha(0.4);
[ad661cc]2438        while (trav != tend) {
2439            if ((*trav).isSplay)
2440                (this->*AddPoly)(*trav);
2441            ++trav;
2442        }
[4a1cede]2443        SetAlpha(1.0);
[ad661cc]2444        trav = m_Parent->traverses_begin();
[8666fc7]2445    }
2446
[3ddcad8]2447    while (trav != tend) {
[ad661cc]2448        if (m_Splays == SPLAYS_SHOW_NORMAL || !(*trav).isSplay)
[8666fc7]2449            (this->*AddPoly)(*trav);
[3ddcad8]2450        ++trav;
2451    }
[33b2094]2452}
2453
[9eb58d0]2454void GfxCore::GenerateDisplayListTubes()
[33b2094]2455{
[9eb58d0]2456    // Generate the display list for the tubes.
[fc68ad5]2457    list<vector<XSect> >::iterator trav = m_Parent->tubes_begin();
2458    list<vector<XSect> >::iterator tend = m_Parent->tubes_end();
[3ddcad8]2459    while (trav != tend) {
2460        SkinPassage(*trav);
2461        ++trav;
2462    }
[9eb58d0]2463}
[33b2094]2464
[9eb58d0]2465void GfxCore::GenerateDisplayListSurface()
2466{
2467    // Generate the display list for the surface legs.
[3ddcad8]2468    EnableDashedLines();
[c61aa79]2469    list<traverse>::const_iterator trav = m_Parent->surface_traverses_begin();
2470    list<traverse>::const_iterator tend = m_Parent->surface_traverses_end();
[3ddcad8]2471    while (trav != tend) {
[c61aa79]2472        if (m_ColourBy == COLOUR_BY_ERROR) {
2473            AddPolylineError(*trav);
2474        } else {
2475            AddPolyline(*trav);
2476        }
[3ddcad8]2477        ++trav;
2478    }
2479    DisableDashedLines();
[d9b3270]2480}
[33b2094]2481
[37d7084]2482void GfxCore::GenerateDisplayListShadow()
[f4c5932]2483{
2484    SetColour(col_BLACK);
[c61aa79]2485    list<traverse>::const_iterator trav = m_Parent->traverses_begin();
2486    list<traverse>::const_iterator tend = m_Parent->traverses_end();
[f4c5932]2487    while (trav != tend) {
2488        AddPolylineShadow(*trav);
2489        ++trav;
2490    }
2491}
2492
[112f80c]2493void
2494GfxCore::parse_hgt_filename(const wxString & lc_name)
2495{
[8562abc]2496    char * leaf = leaf_from_fnm(lc_name.utf8_str());
[112f80c]2497    const char * p = leaf;
2498    char * q;
2499    char dirn = *p++;
2500    o_y = strtoul(p, &q, 10);
2501    p = q;
2502    if (dirn == 's')
2503        o_y = -o_y;
2504    ++o_y;
2505    dirn = *p++;
2506    o_x = strtoul(p, &q, 10);
2507    if (dirn == 'w')
2508        o_x = -o_x;
2509    bigendian = true;
2510    nodata_value = -32768;
2511    osfree(leaf);
2512}
2513
2514size_t
2515GfxCore::parse_hdr(wxInputStream & is, unsigned long & skipbytes)
2516{
2517    unsigned long nbits;
2518    while (!is.Eof()) {
2519        wxString line;
2520        int ch;
2521        while ((ch = is.GetC()) != wxEOF) {
2522            if (ch == '\n' || ch == '\r') break;
2523            line += wxChar(ch);
2524        }
[6388423]2525#define CHECK(X, COND) \
[1c55fb5]2526} else if (line.StartsWith(wxT(X " "))) { \
[6388423]2527size_t v = line.find_first_not_of(wxT(' '), sizeof(X)); \
2528if (v == line.npos || !(COND)) { \
[1c55fb5]2529err += wxT("Unexpected value for " X); \
[5314a0e]2530}
[112f80c]2531        wxString err;
2532        unsigned long dummy;
2533        if (false) {
2534        // I = little-endian; M = big-endian
2535        CHECK("BYTEORDER", (bigendian = (line[v] == 'M')) || line[v] == 'I')
2536        CHECK("LAYOUT", line.substr(v) == wxT("BIL"))
2537        CHECK("NROWS", line.substr(v).ToCULong(&dem_width))
2538        CHECK("NCOLS", line.substr(v).ToCULong(&dem_height))
2539        CHECK("NBANDS", line.substr(v).ToCULong(&dummy) && dummy == 1)
2540        CHECK("NBITS", line.substr(v).ToCULong(&nbits) && nbits == 16)
2541        //: BANDROWBYTES   7202
2542        //: TOTALROWBYTES  7202
2543        // PIXELTYPE is a GDAL extension, so may not be present.
2544        CHECK("PIXELTYPE", line.substr(v) == wxT("SIGNEDINT"))
2545        CHECK("ULXMAP", line.substr(v).ToCDouble(&o_x))
2546        CHECK("ULYMAP", line.substr(v).ToCDouble(&o_y))
2547        CHECK("XDIM", line.substr(v).ToCDouble(&step_x))
2548        CHECK("YDIM", line.substr(v).ToCDouble(&step_y))
2549        CHECK("NODATA", line.substr(v).ToCLong(&nodata_value))
2550        CHECK("SKIPBYTES", line.substr(v).ToCULong(&skipbytes))
2551        }
2552        if (!err.empty()) {
2553            wxMessageBox(err);
[6388423]2554        }
[c2fa50c]2555    }
[112f80c]2556    return ((nbits + 7) / 8) * dem_width * dem_height;
2557}
[c2fa50c]2558
[112f80c]2559bool
2560GfxCore::read_bil(wxInputStream & is, size_t size, unsigned long skipbytes)
2561{
2562    bool know_size = true;
2563    if (!size) {
2564        // If the stream doesn't know its size, GetSize() returns 0.
2565        size = is.GetSize();
2566        if (!size) {
2567            size = DEFAULT_HGT_SIZE;
2568            know_size = false;
2569        }
[c2fa50c]2570    }
2571    dem = new unsigned short[size / 2];
2572    if (skipbytes) {
[112f80c]2573        if (is.SeekI(skipbytes, wxFromStart) == ::wxInvalidOffset) {
[c2fa50c]2574            while (skipbytes) {
2575                unsigned long to_read = skipbytes;
2576                if (size < to_read) to_read = size;
[112f80c]2577                is.Read(reinterpret_cast<char *>(dem), to_read);
2578                size_t c = is.LastRead();
[c2fa50c]2579                if (c == 0) {
2580                    wxMessageBox(wxT("Failed to skip terrain data header"));
2581                    break;
[bfb3ab0]2582                }
[c2fa50c]2583                skipbytes -= c;
[bfb3ab0]2584            }
[5314a0e]2585        }
[c2fa50c]2586    }
[bfb3ab0]2587
[6388423]2588#if wxCHECK_VERSION(2,9,5)
[112f80c]2589    if (!is.ReadAll(dem, size)) {
2590        if (know_size) {
2591            // FIXME: On __WXMSW__ currently we fail to
2592            // read any data from files in zips.
2593            delete [] dem;
2594            dem = NULL;
2595            wxMessageBox(wxT("Failed to read terrain data"));
2596            return false;
[c2fa50c]2597        }
[112f80c]2598        size = is.LastRead();
[c2fa50c]2599    }
2600#else
2601    char * p = reinterpret_cast<char *>(dem);
2602    while (size) {
[112f80c]2603        is.Read(p, size);
2604        size_t c = is.LastRead();
[c2fa50c]2605        if (c == 0) {
[112f80c]2606            if (!know_size) {
[c2fa50c]2607                size = DEFAULT_HGT_SIZE - size;
[112f80c]2608                if (size)
[c2fa50c]2609                    break;
[9df33bc]2610            }
[112f80c]2611            delete [] dem;
2612            dem = NULL;
[5314a0e]2613            wxMessageBox(wxT("Failed to read terrain data"));
[f60efe4]2614            return false;
[6388423]2615        }
[c2fa50c]2616        p += c;
2617        size -= c;
2618    }
[5314a0e]2619#endif
[112f80c]2620
2621    if (dem_width == 0 && dem_height == 0) {
2622        dem_width = dem_height = sqrt(size / 2);
2623        if (dem_width * dem_height * 2 != size) {
2624            delete [] dem;
2625            dem = NULL;
2626            wxMessageBox(wxT("HGT format data doesn't form a square"));
2627            return false;
2628        }
2629        step_x = step_y = 1.0 / dem_width;
2630    }
2631
2632    return true;
2633}
2634
2635bool GfxCore::LoadDEM(const wxString & file)
2636{
2637    if (m_Parent->m_cs_proj.empty()) {
2638        wxMessageBox(wxT("No coordinate system specified in survey data"));
2639        return false;
2640    }
2641
2642    delete [] dem;
2643    dem = NULL;
2644
2645    size_t size = 0;
2646    // Default is to not skip any bytes.
2647    unsigned long skipbytes = 0;
2648    // For .hgt files, default to using filesize to determine.
2649    dem_width = dem_height = 0;
2650    // ESRI say "The default byte order is the same as that of the host machine
2651    // executing the software", but that's stupid so we default to
2652    // little-endian.
2653    bigendian = false;
2654
[522fb4c]2655    wxFileInputStream fs(file);
2656    if (!fs.IsOk()) {
[112f80c]2657        wxMessageBox(wxT("Failed to open DEM file"));
2658        return false;
[6388423]2659    }
[c2fa50c]2660
[112f80c]2661    const wxString & lc_file = file.Lower();
2662    if (lc_file.EndsWith(wxT(".hgt"))) {
2663        parse_hgt_filename(lc_file);
2664        read_bil(fs, size, skipbytes);
2665    } else if (lc_file.EndsWith(wxT(".bil"))) {
2666        wxString hdr_file = file;
2667        hdr_file.replace(file.size() - 4, 4, wxT(".hdr"));
[522fb4c]2668        wxFileInputStream hdr_is(hdr_file);
2669        if (!hdr_is.IsOk()) {
[112f80c]2670            wxMessageBox(wxT("Failed to open HDR file '") + hdr_file + wxT("'"));
2671            return false;
2672        }
2673        size = parse_hdr(hdr_is, skipbytes);
2674        read_bil(fs, size, skipbytes);
2675    } else if (lc_file.EndsWith(wxT(".zip"))) {
2676        wxZipEntry * ze_data = NULL;
2677        wxZipInputStream zs(fs);
2678        wxZipEntry * ze;
2679        while ((ze = zs.GetNextEntry()) != NULL) {
2680            if (!ze->IsDir()) {
2681                const wxString & lc_name = ze->GetName().Lower();
2682                if (!ze_data && lc_name.EndsWith(wxT(".hgt"))) {
2683                    // SRTM .hgt files are raw binary data, with the filename
2684                    // encoding the coordinates.
2685                    parse_hgt_filename(lc_name);
2686                    read_bil(zs, size, skipbytes);
2687                    delete ze;
2688                    break;
2689                }
2690
2691                if (!ze_data && lc_name.EndsWith(wxT(".bil"))) {
2692                    if (size) {
2693                        read_bil(zs, size, skipbytes);
2694                        break;
2695                    }
2696                    ze_data = ze;
2697                    continue;
2698                }
2699
2700                if (lc_name.EndsWith(wxT(".hdr"))) {
2701                    size = parse_hdr(zs, skipbytes);
2702                    if (ze_data) {
2703                        if (!zs.OpenEntry(*ze_data)) {
2704                            wxMessageBox(wxT("Couldn't read DEM data from .zip file"));
2705                            break;
2706                        }
2707                        read_bil(zs, size, skipbytes);
2708                    }
2709                } else if (lc_name.EndsWith(wxT(".prj"))) {
2710                    //FIXME: check this matches the datum string we use
2711                    //Projection    GEOGRAPHIC
2712                    //Datum         WGS84
2713                    //Zunits        METERS
2714                    //Units         DD
2715                    //Spheroid      WGS84
2716                    //Xshift        0.0000000000
2717                    //Yshift        0.0000000000
2718                    //Parameters
2719                }
2720            }
2721            delete ze;
2722        }
2723        delete ze_data;
2724    }
2725
2726    if (!dem) {
2727        return false;
2728    }
[622460e]2729
2730    InvalidateList(LIST_TERRAIN);
[74869a7]2731    ForceRefresh();
[5314a0e]2732    return true;
2733}
2734
2735void GfxCore::DrawTerrainTriangle(const Vector3 & a, const Vector3 & b, const Vector3 & c)
2736{
2737    Vector3 n = (b - a) * (c - a);
2738    n.normalise();
2739    Double factor = dot(n, light) * .95 + .05;
2740    SetColour(col_WHITE, factor);
2741    PlaceVertex(a);
2742    PlaceVertex(b);
2743    PlaceVertex(c);
2744    ++n_tris;
2745}
2746
2747void GfxCore::DrawTerrain()
2748{
[622460e]2749    if (!dem) return;
2750
[c26455e]2751    wxBusyCursor hourglass;
2752
[6388423]2753    // Draw terrain to twice the extent, or at least 1km.
2754    double r_sqrd = sqrd(max(m_Parent->GetExtent().magnitude(), 1000.0));
2755#define WGS84_DATUM_STRING "+proj=longlat +ellps=WGS84 +datum=WGS84"
2756    static projPJ pj_in = pj_init_plus(WGS84_DATUM_STRING);
2757    if (!pj_in) {
[9df33bc]2758        ToggleTerrain();
2759        error(/*Failed to initialise input coordinate system “%s”*/287, WGS84_DATUM_STRING);
2760        return;
[6388423]2761    }
2762    static projPJ pj_out = pj_init_plus(m_Parent->m_cs_proj.c_str());
2763    if (!pj_out) {
[9df33bc]2764        ToggleTerrain();
2765        error(/*Failed to initialise output coordinate system “%s”*/288, (const char *)m_Parent->m_cs_proj.c_str());
2766        return;
[6388423]2767    }
2768    n_tris = 0;
2769    SetAlpha(0.3);
2770    BeginTriangles();
2771    const Vector3 & off = m_Parent->GetOffset();
[5314a0e]2772    vector<Vector3> prevcol(dem_height + 1);
2773    for (size_t x = 0; x < dem_width; ++x) {
[6388423]2774        double X_ = (o_x + x * step_x) * DEG_TO_RAD;
2775        Vector3 prev;
[5314a0e]2776        for (size_t y = 0; y < dem_height; ++y) {
[9df33bc]2777            unsigned short elev = dem[x + y * dem_width];
[194503c]2778#ifdef WORDS_BIGENDIAN
[9df33bc]2779            const bool MACHINE_BIGENDIAN = true;
2780#else
2781            const bool MACHINE_BIGENDIAN = false;
2782#endif
2783            if (bigendian != MACHINE_BIGENDIAN) {
2784#if defined __GNUC__ && (__GNUC__ * 100 + __GNUC_MINOR__ >= 408)
2785                elev = __builtin_bswap16(elev);
2786#else
2787                elev = (elev >> 8) | (elev << 8);
[194503c]2788#endif
[9df33bc]2789            }
[194503c]2790            double Z = (short)elev;
[6388423]2791            Vector3 pt;
2792            if (Z == nodata_value) {
2793                pt = Vector3(DBL_MAX, DBL_MAX, DBL_MAX);
2794            } else {
2795                double X = X_;
2796                double Y = (o_y - y * step_y) * DEG_TO_RAD;
2797                pj_transform(pj_in, pj_out, 1, 1, &X, &Y, &Z);
2798                pt = Vector3(X, Y, Z) - off;
2799                double dist_2 = sqrd(pt.GetX()) + sqrd(pt.GetY());
2800                if (dist_2 > r_sqrd) {
2801                    pt = Vector3(DBL_MAX, DBL_MAX, DBL_MAX);
2802                }
2803            }
2804            if (x > 0 && y > 0) {
2805                const Vector3 & a = prevcol[y - 1];
2806                const Vector3 & b = prevcol[y];
2807                // If all points are valid, split the quadrilateral into
2808                // triangles along the shorter 3D diagonal, which typically
2809                // looks better:
2810                //
2811                //               ----->
2812                //     prev---a    x     prev---a
2813                //   |   |P  /|            |\  S|
2814                // y |   |  / |    or      | \  |
2815                //   V   | /  |            |  \ |
2816                //       |/  Q|            |R  \|
2817                //       b----pt           b----pt
2818                //
2819                //       FORWARD           BACKWARD
2820                enum { NONE = 0, P = 1, Q = 2, R = 4, S = 8, ALL = P|Q|R|S };
2821                int valid =
2822                    ((prev.GetZ() != DBL_MAX)) |
2823                    ((a.GetZ() != DBL_MAX) << 1) |
2824                    ((b.GetZ() != DBL_MAX) << 2) |
2825                    ((pt.GetZ() != DBL_MAX) << 3);
2826                static const int tris_map[16] = {
2827                    NONE, // nothing valid
2828                    NONE, // prev
2829                    NONE, // a
2830                    NONE, // a, prev
2831                    NONE, // b
2832                    NONE, // b, prev
2833                    NONE, // b, a
2834                    P, // b, a, prev
2835                    NONE, // pt
2836                    NONE, // pt, prev
2837                    NONE, // pt, a
2838                    S, // pt, a, prev
2839                    NONE, // pt, b
2840                    R, // pt, b, prev
2841                    Q, // pt, b, a
2842                    ALL, // pt, b, a, prev
2843                };
2844                int tris = tris_map[valid];
2845                if (tris == ALL) {
2846                    // All points valid.
2847                    if ((a - b).magnitude() < (prev - pt).magnitude()) {
2848                        tris = P | Q;
2849                    } else {
2850                        tris = R | S;
2851                    }
2852                }
2853                if (tris & P)
2854                    DrawTerrainTriangle(a, prev, b);
2855                if (tris & Q)
2856                    DrawTerrainTriangle(a, b, pt);
2857                if (tris & R)
2858                    DrawTerrainTriangle(pt, prev, b);
2859                if (tris & S)
2860                    DrawTerrainTriangle(a, prev, pt);
2861            }
2862            prev = prevcol[y];
2863            prevcol[y].assign(pt);
2864        }
2865    }
2866    EndTriangles();
2867    SetAlpha(1.0);
2868}
2869
[d2fcc9b]2870// Plot blobs.
[d9b3270]2871void GfxCore::GenerateBlobsDisplayList()
2872{
[e633bb1]2873    if (!(m_Entrances || m_FixedPts || m_ExportedPts ||
2874          m_Parent->GetNumHighlightedPts()))
2875        return;
[429465a]2876
[e633bb1]2877    // Plot blobs.
2878    gla_colour prev_col = col_BLACK; // not a colour used for blobs
2879    list<LabelInfo*>::const_iterator pos = m_Parent->GetLabels();
2880    BeginBlobs();
2881    while (pos != m_Parent->GetLabelsEnd()) {
[429465a]2882        const LabelInfo* label = *pos++;
2883
2884        // When more than one flag is set on a point:
2885        // search results take priority over entrance highlighting
2886        // which takes priority over fixed point
2887        // highlighting, which in turn takes priority over exported
2888        // point highlighting.
2889
2890        if (!((m_Surface && label->IsSurface()) ||
2891              (m_Legs && label->IsUnderground()) ||
2892              (!label->IsSurface() && !label->IsUnderground()))) {
2893            // if this station isn't to be displayed, skip to the next
2894            // (last case is for stns with no legs attached)
2895            continue;
2896        }
2897
[e633bb1]2898        gla_colour col;
2899
[429465a]2900        if (label->IsHighLighted()) {
2901            col = col_YELLOW;
2902        } else if (m_Entrances && label->IsEntrance()) {
2903            col = col_GREEN;
2904        } else if (m_FixedPts && label->IsFixedPt()) {
2905            col = col_RED;
2906        } else if (m_ExportedPts && label->IsExportedPt()) {
2907            col = col_TURQUOISE;
2908        } else {
2909            continue;
2910        }
2911
[e633bb1]2912        // Stations are sorted by blob type, so colour changes are infrequent.
2913        if (col != prev_col) {
[aa048c3]2914            SetColour(col);
[e633bb1]2915            prev_col = col;
[429465a]2916        }
[e633bb1]2917        DrawBlob(label->GetX(), label->GetY(), label->GetZ());
[d9b3270]2918    }
[e633bb1]2919    EndBlobs();
[33b2094]2920}
2921
[6747314]2922void GfxCore::DrawIndicators()
[33b2094]2923{
[97ea48d]2924    // Draw colour key.
2925    if (m_ColourKey) {
[47c62d04]2926        drawing_list key_list = LIST_LIMIT_;
2927        switch (m_ColourBy) {
2928            case COLOUR_BY_DEPTH:
2929                key_list = LIST_DEPTH_KEY; break;
2930            case COLOUR_BY_DATE:
2931                key_list = LIST_DATE_KEY; break;
2932            case COLOUR_BY_ERROR:
2933                key_list = LIST_ERROR_KEY; break;
[cc9e2c65]2934            case COLOUR_BY_GRADIENT:
2935                key_list = LIST_GRADIENT_KEY; break;
[47c62d04]2936            case COLOUR_BY_LENGTH:
2937                key_list = LIST_LENGTH_KEY; break;
2938        }
2939        if (key_list != LIST_LIMIT_) {
2940            DrawList2D(key_list, GetXSize() - KEY_OFFSET_X,
[af50685]2941                       GetYSize() - KEY_OFFSET_Y, 0);
[1b164a0]2942        }
[33b2094]2943    }
[56da40e]2944
[203d2a7]2945    // Draw compass or elevation/heading indicators.
[eef68f9]2946    if (m_Compass || m_Clino) {
2947        if (!m_Parent->IsExtendedElevation()) Draw2dIndicators();
[203d2a7]2948    }
[f433fda]2949
[56da40e]2950    // Draw scalebar.
2951    if (m_Scalebar) {
[9c37beb]2952        DrawList2D(LIST_SCALE_BAR, 0, 0, 0);
[56da40e]2953    }
[33b2094]2954}
2955
[f336ab9]2956void GfxCore::PlaceVertexWithColour(const Vector3 & v,
2957                                    glaTexCoord tex_x, glaTexCoord tex_y,
[b839829]2958                                    Double factor)
[f383708]2959{
[d1ce9bd]2960    SetColour(col_WHITE, factor);
[b839829]2961    PlaceVertex(v, tex_x, tex_y);
[da6c802]2962}
[f433fda]2963
[b839829]2964void GfxCore::SetDepthColour(Double z, Double factor) {
[da6c802]2965    // Set the drawing colour based on the altitude.
[78c67a6]2966    Double z_ext = m_Parent->GetDepthExtent();
[f383708]2967
[b839829]2968    z -= m_Parent->GetDepthMin();
[f383708]2969    // points arising from tubes may be slightly outside the limits...
[78c67a6]2970    if (z < 0) z = 0;
2971    if (z > z_ext) z = z_ext;
[a6f081c]2972
[2a9d2fa]2973    if (z == 0) {
2974        SetColour(GetPen(0), factor);
2975        return;
2976    }
2977
2978    assert(z_ext > 0.0);
[78c67a6]2979    Double how_far = z / z_ext;
[f383708]2980    assert(how_far >= 0.0);
2981    assert(how_far <= 1.0);
2982
[97ea48d]2983    int band = int(floor(how_far * (GetNumColourBands() - 1)));
[0e69efe]2984    GLAPen pen1 = GetPen(band);
[97ea48d]2985    if (band < GetNumColourBands() - 1) {
[d4650b3]2986        const GLAPen& pen2 = GetPen(band + 1);
[f433fda]2987
[97ea48d]2988        Double interval = z_ext / (GetNumColourBands() - 1);
[78c67a6]2989        Double into_band = z / interval - band;
[f433fda]2990
[d4650b3]2991//      printf("%g z_offset=%g interval=%g band=%d\n", into_band,
2992//             z_offset, interval, band);
2993        // FIXME: why do we need to clamp here?  Is it because the walls can
2994        // extend further up/down than the centre-line?
2995        if (into_band < 0.0) into_band = 0.0;
2996        if (into_band > 1.0) into_band = 1.0;
2997        assert(into_band >= 0.0);
2998        assert(into_band <= 1.0);
[f433fda]2999
[d4650b3]3000        pen1.Interpolate(pen2, into_band);
3001    }
[aa048c3]3002    SetColour(pen1, factor);
[b839829]3003}
[f383708]3004
[b839829]3005void GfxCore::PlaceVertexWithDepthColour(const Vector3 &v, Double factor)
3006{
3007    SetDepthColour(v.GetZ(), factor);
[d67450e]3008    PlaceVertex(v);
[f383708]3009}
3010
[b839829]3011void GfxCore::PlaceVertexWithDepthColour(const Vector3 &v,
[f336ab9]3012                                         glaTexCoord tex_x, glaTexCoord tex_y,
[b839829]3013                                         Double factor)
3014{
3015    SetDepthColour(v.GetZ(), factor);
3016    PlaceVertex(v, tex_x, tex_y);
3017}
3018
[82f584f]3019void GfxCore::SplitLineAcrossBands(int band, int band2,
[4a0e6b35]3020                                   const Vector3 &p, const Vector3 &q,
[82f584f]3021                                   Double factor)
[b5d64e6]3022{
[4a0e6b35]3023    const int step = (band < band2) ? 1 : -1;
[b5d64e6]3024    for (int i = band; i != band2; i += step) {
[4a0e6b35]3025        const Double z = GetDepthBoundaryBetweenBands(i, i + step);
3026
3027        // Find the intersection point of the line p -> q
3028        // with the plane parallel to the xy-plane with z-axis intersection z.
[d67450e]3029        assert(q.GetZ() - p.GetZ() != 0.0);
[4a0e6b35]3030
[d67450e]3031        const Double t = (z - p.GetZ()) / (q.GetZ() - p.GetZ());
[4a0e6b35]3032//      assert(0.0 <= t && t <= 1.0);           FIXME: rounding problems!
3033
[d67450e]3034        const Double x = p.GetX() + t * (q.GetX() - p.GetX());
3035        const Double y = p.GetY() + t * (q.GetY() - p.GetY());
[4a0e6b35]3036
[d67450e]3037        PlaceVertexWithDepthColour(Vector3(x, y, z), factor);
[b5d64e6]3038    }
3039}
3040
[14acdae]3041int GfxCore::GetDepthColour(Double z) const
[b5d64e6]3042{
[82f584f]3043    // Return the (0-based) depth colour band index for a z-coordinate.
[78c67a6]3044    Double z_ext = m_Parent->GetDepthExtent();
3045    z -= m_Parent->GetDepthMin();
[2ba3882]3046    // We seem to get rounding differences causing z to sometimes be slightly
[0a2aab8]3047    // less than GetDepthMin() here, and it can certainly be true for passage
3048    // tubes, so just clamp the value to 0.
[2ba3882]3049    if (z <= 0) return 0;
[6027220]3050    // We seem to get rounding differences causing z to sometimes exceed z_ext
[2c1c52e]3051    // by a small amount here (see: https://trac.survex.com/ticket/26) and it
[0a2aab8]3052    // can certainly be true for passage tubes, so just clamp the value.
3053    if (z >= z_ext) return GetNumColourBands() - 1;
[97ea48d]3054    return int(z / z_ext * (GetNumColourBands() - 1));
[b5d64e6]3055}
3056
[14acdae]3057Double GfxCore::GetDepthBoundaryBetweenBands(int a, int b) const
[b5d64e6]3058{
[82f584f]3059    // Return the z-coordinate of the depth colour boundary between
3060    // two adjacent depth colour bands (specified by 0-based indices).
3061
3062    assert((a == b - 1) || (a == b + 1));
[97ea48d]3063    if (GetNumColourBands() == 1) return 0;
[82f584f]3064
3065    int band = (a > b) ? a : b; // boundary N lies on the bottom of band N.
[78c67a6]3066    Double z_ext = m_Parent->GetDepthExtent();
[2a9d2fa]3067    return (z_ext * band / (GetNumColourBands() - 1)) + m_Parent->GetDepthMin();
[b5d64e6]3068}
3069
[c61aa79]3070void GfxCore::AddPolyline(const traverse & centreline)
[da6c802]3071{
3072    BeginPolyline();
[d1ce9bd]3073    SetColour(col_WHITE);
[d4650b3]3074    vector<PointInfo>::const_iterator i = centreline.begin();
[d67450e]3075    PlaceVertex(*i);
[da6c802]3076    ++i;
3077    while (i != centreline.end()) {
[d67450e]3078        PlaceVertex(*i);
[da6c802]3079        ++i;
3080    }
3081    EndPolyline();
3082}
[2a3d328]3083
[c61aa79]3084void GfxCore::AddPolylineShadow(const traverse & centreline)
[f4c5932]3085{
3086    BeginPolyline();
[78c67a6]3087    const double z = -0.5 * m_Parent->GetZExtent();
[d4650b3]3088    vector<PointInfo>::const_iterator i = centreline.begin();
[78c67a6]3089    PlaceVertex(i->GetX(), i->GetY(), z);
[f4c5932]3090    ++i;
3091    while (i != centreline.end()) {
[78c67a6]3092        PlaceVertex(i->GetX(), i->GetY(), z);
[f4c5932]3093        ++i;
3094    }
3095    EndPolyline();
3096}
3097
[c61aa79]3098void GfxCore::AddPolylineDepth(const traverse & centreline)
[da6c802]3099{
3100    BeginPolyline();
[d4650b3]3101    vector<PointInfo>::const_iterator i, prev_i;
[da6c802]3102    i = centreline.begin();
[ee7af72]3103    int band0 = GetDepthColour(i->GetZ());
[d67450e]3104    PlaceVertexWithDepthColour(*i);
[da6c802]3105    prev_i = i;
3106    ++i;
3107    while (i != centreline.end()) {
[ee7af72]3108        int band = GetDepthColour(i->GetZ());
[da6c802]3109        if (band != band0) {
[d67450e]3110            SplitLineAcrossBands(band0, band, *prev_i, *i);
[da6c802]3111            band0 = band;
3112        }
[d67450e]3113        PlaceVertexWithDepthColour(*i);
[da6c802]3114        prev_i = i;
3115        ++i;
3116    }
3117    EndPolyline();
3118}
3119
[f433fda]3120void GfxCore::AddQuadrilateral(const Vector3 &a, const Vector3 &b,
[14acdae]3121                               const Vector3 &c, const Vector3 &d)
[da6c802]3122{
3123    Vector3 normal = (a - c) * (d - b);
3124    normal.normalise();
3125    Double factor = dot(normal, light) * .3 + .7;
[f336ab9]3126    glaTexCoord w(ceil(((b - a).magnitude() + (d - c).magnitude()) * .5));
3127    glaTexCoord h(ceil(((b - c).magnitude() + (d - a).magnitude()) * .5));
[9b57c71b]3128    // FIXME: should plot triangles instead to avoid rendering glitches.
[da6c802]3129    BeginQuadrilaterals();
[b839829]3130    PlaceVertexWithColour(a, 0, 0, factor);
3131    PlaceVertexWithColour(b, w, 0, factor);
3132    PlaceVertexWithColour(c, w, h, factor);
3133    PlaceVertexWithColour(d, 0, h, factor);
[da6c802]3134    EndQuadrilaterals();
3135}
3136
3137void GfxCore::AddQuadrilateralDepth(const Vector3 &a, const Vector3 &b,
3138                                    const Vector3 &c, const Vector3 &d)
[2b02270]3139{
3140    Vector3 normal = (a - c) * (d - b);
3141    normal.normalise();
3142    Double factor = dot(normal, light) * .3 + .7;
3143    int a_band, b_band, c_band, d_band;
[d67450e]3144    a_band = GetDepthColour(a.GetZ());
[97ea48d]3145    a_band = min(max(a_band, 0), GetNumColourBands());
[d67450e]3146    b_band = GetDepthColour(b.GetZ());
[97ea48d]3147    b_band = min(max(b_band, 0), GetNumColourBands());
[d67450e]3148    c_band = GetDepthColour(c.GetZ());
[97ea48d]3149    c_band = min(max(c_band, 0), GetNumColourBands());
[d67450e]3150    d_band = GetDepthColour(d.GetZ());
[97ea48d]3151    d_band = min(max(d_band, 0), GetNumColourBands());
[97fb83a]3152    // All this splitting is incorrect - we need to make a separate polygon
3153    // for each depth band...
[f336ab9]3154    glaTexCoord w(ceil(((b - a).magnitude() + (d - c).magnitude()) * .5));
3155    glaTexCoord h(ceil(((b - c).magnitude() + (d - a).magnitude()) * .5));
[b5d64e6]3156    BeginPolygon();
[d67450e]3157////    PlaceNormal(normal);
[b839829]3158    PlaceVertexWithDepthColour(a, 0, 0, factor);
[2b02270]3159    if (a_band != b_band) {
[b5d64e6]3160        SplitLineAcrossBands(a_band, b_band, a, b, factor);
[2b02270]3161    }
[b839829]3162    PlaceVertexWithDepthColour(b, w, 0, factor);
[2b02270]3163    if (b_band != c_band) {
[b5d64e6]3164        SplitLineAcrossBands(b_band, c_band, b, c, factor);
[2b02270]3165    }
[b839829]3166    PlaceVertexWithDepthColour(c, w, h, factor);
[2b02270]3167    if (c_band != d_band) {
[b5d64e6]3168        SplitLineAcrossBands(c_band, d_band, c, d, factor);
[2b02270]3169    }
[b839829]3170    PlaceVertexWithDepthColour(d, 0, h, factor);
[2b02270]3171    if (d_band != a_band) {
[b5d64e6]3172        SplitLineAcrossBands(d_band, a_band, d, a, factor);
[2b02270]3173    }
[b5d64e6]3174    EndPolygon();
[2b02270]3175}
3176
[1ee204e]3177void GfxCore::SetColourFromDate(int date, Double factor)
[d4650b3]3178{
3179    // Set the drawing colour based on a date.
3180
[1ee204e]3181    if (date == -1) {
[2043961]3182        // Undated.
[d1ce9bd]3183        SetColour(col_WHITE, factor);
[d4650b3]3184        return;
3185    }
3186
[1ee204e]3187    int date_offset = date - m_Parent->GetDateMin();
[2043961]3188    if (date_offset == 0) {
3189        // Earliest date - handle as a special case for the single date case.
3190        SetColour(GetPen(0), factor);
3191        return;
3192    }
[d4650b3]3193
[2043961]3194    int date_ext = m_Parent->GetDateExtent();
[d4650b3]3195    Double how_far = (Double)date_offset / date_ext;
3196    assert(how_far >= 0.0);
3197    assert(how_far <= 1.0);
[371f9ed]3198    SetColourFrom01(how_far, factor);
[d4650b3]3199}
3200
[c61aa79]3201void GfxCore::AddPolylineDate(const traverse & centreline)
[d4650b3]3202{
3203    BeginPolyline();
3204    vector<PointInfo>::const_iterator i, prev_i;
3205    i = centreline.begin();
[1ee204e]3206    int date = i->GetDate();
[d4650b3]3207    SetColourFromDate(date, 1.0);
[d67450e]3208    PlaceVertex(*i);
[d4650b3]3209    prev_i = i;
3210    while (++i != centreline.end()) {
[1ee204e]3211        int newdate = i->GetDate();
[d4650b3]3212        if (newdate != date) {
3213            EndPolyline();
3214            BeginPolyline();
3215            date = newdate;
3216            SetColourFromDate(date, 1.0);
[d67450e]3217            PlaceVertex(*prev_i);
[d4650b3]3218        }
[d67450e]3219        PlaceVertex(*i);
[d4650b3]3220        prev_i = i;
3221    }
3222    EndPolyline();
3223}
3224
[1ee204e]3225static int static_date_hack; // FIXME
[d4650b3]3226
3227void GfxCore::AddQuadrilateralDate(const Vector3 &a, const Vector3 &b,
3228                                   const Vector3 &c, const Vector3 &d)
3229{
3230    Vector3 normal = (a - c) * (d - b);
3231    normal.normalise();
3232    Double factor = dot(normal, light) * .3 + .7;
3233    int w = int(ceil(((b - a).magnitude() + (d - c).magnitude()) / 2));
3234    int h = int(ceil(((b - c).magnitude() + (d - a).magnitude()) / 2));
3235    // FIXME: should plot triangles instead to avoid rendering glitches.
[b839829]3236    BeginQuadrilaterals();
[d67450e]3237////    PlaceNormal(normal);
[d4650b3]3238    SetColourFromDate(static_date_hack, factor);
[b839829]3239    PlaceVertex(a, 0, 0);
3240    PlaceVertex(b, w, 0);
3241    PlaceVertex(c, w, h);
3242    PlaceVertex(d, 0, h);
3243    EndQuadrilaterals();
[d4650b3]3244}
3245
[c61aa79]3246static double static_E_hack; // FIXME
3247
3248void GfxCore::SetColourFromError(double E, Double factor)
3249{
3250    // Set the drawing colour based on an error value.
3251
3252    if (E < 0) {
[d1ce9bd]3253        SetColour(col_WHITE, factor);
[c61aa79]3254        return;
3255    }
3256
3257    Double how_far = E / MAX_ERROR;
3258    assert(how_far >= 0.0);
3259    if (how_far > 1.0) how_far = 1.0;
[371f9ed]3260    SetColourFrom01(how_far, factor);
[c61aa79]3261}
3262
3263void GfxCore::AddQuadrilateralError(const Vector3 &a, const Vector3 &b,
3264                                    const Vector3 &c, const Vector3 &d)
3265{
3266    Vector3 normal = (a - c) * (d - b);
3267    normal.normalise();
3268    Double factor = dot(normal, light) * .3 + .7;
3269    int w = int(ceil(((b - a).magnitude() + (d - c).magnitude()) / 2));
3270    int h = int(ceil(((b - c).magnitude() + (d - a).magnitude()) / 2));
3271    // FIXME: should plot triangles instead to avoid rendering glitches.
[b839829]3272    BeginQuadrilaterals();
[c61aa79]3273////    PlaceNormal(normal);
3274    SetColourFromError(static_E_hack, factor);
[b839829]3275    PlaceVertex(a, 0, 0);
3276    PlaceVertex(b, w, 0);
3277    PlaceVertex(c, w, h);
3278    PlaceVertex(d, 0, h);
3279    EndQuadrilaterals();
[c61aa79]3280}
3281
3282void GfxCore::AddPolylineError(const traverse & centreline)
3283{
3284    BeginPolyline();
3285    SetColourFromError(centreline.E, 1.0);
3286    vector<PointInfo>::const_iterator i;
3287    for(i = centreline.begin(); i != centreline.end(); ++i) {
3288        PlaceVertex(*i);
3289    }
3290    EndPolyline();
3291}
3292
[cc9e2c65]3293// gradient is in *radians*.
3294void GfxCore::SetColourFromGradient(double gradient, Double factor)
3295{
3296    // Set the drawing colour based on the gradient of the leg.
3297
3298    const Double GRADIENT_MAX = M_PI_2;
3299    gradient = fabs(gradient);
3300    Double how_far = gradient / GRADIENT_MAX;
3301    SetColourFrom01(how_far, factor);
3302}
3303
3304void GfxCore::AddPolylineGradient(const traverse & centreline)
3305{
3306    vector<PointInfo>::const_iterator i, prev_i;
3307    i = centreline.begin();
3308    prev_i = i;
3309    while (++i != centreline.end()) {
3310        BeginPolyline();
3311        SetColourFromGradient((*i - *prev_i).gradient(), 1.0);
3312        PlaceVertex(*prev_i);
3313        PlaceVertex(*i);
3314        prev_i = i;
3315        EndPolyline();
3316    }
3317}
3318
3319static double static_gradient_hack; // FIXME
3320
3321void GfxCore::AddQuadrilateralGradient(const Vector3 &a, const Vector3 &b,
3322                                       const Vector3 &c, const Vector3 &d)
3323{
3324    Vector3 normal = (a - c) * (d - b);
3325    normal.normalise();
3326    Double factor = dot(normal, light) * .3 + .7;
3327    int w = int(ceil(((b - a).magnitude() + (d - c).magnitude()) / 2));
3328    int h = int(ceil(((b - c).magnitude() + (d - a).magnitude()) / 2));
3329    // FIXME: should plot triangles instead to avoid rendering glitches.
3330    BeginQuadrilaterals();
3331////    PlaceNormal(normal);
3332    SetColourFromGradient(static_gradient_hack, factor);
3333    PlaceVertex(a, 0, 0);
3334    PlaceVertex(b, w, 0);
3335    PlaceVertex(c, w, h);
3336    PlaceVertex(d, 0, h);
3337    EndQuadrilaterals();
3338}
3339
[af50685]3340void GfxCore::SetColourFromLength(double length, Double factor)
3341{
3342    // Set the drawing colour based on log(length_of_leg).
3343
3344    Double log_len = log10(length);
3345    Double how_far = log_len / LOG_LEN_MAX;
3346    how_far = max(how_far, 0.0);
3347    how_far = min(how_far, 1.0);
[371f9ed]3348    SetColourFrom01(how_far, factor);
3349}
[af50685]3350
[371f9ed]3351void GfxCore::SetColourFrom01(double how_far, Double factor)
3352{
3353    double b;
3354    double into_band = modf(how_far * (GetNumColourBands() - 1), &b);
3355    int band(b);
[af50685]3356    GLAPen pen1 = GetPen(band);
[371f9ed]3357    // With 24bit colour, interpolating by less than this can have no effect.
3358    if (into_band >= 1.0 / 512.0) {
[af50685]3359        const GLAPen& pen2 = GetPen(band + 1);
3360        pen1.Interpolate(pen2, into_band);
3361    }
3362    SetColour(pen1, factor);
3363}
3364
3365void GfxCore::AddPolylineLength(const traverse & centreline)
3366{
3367    vector<PointInfo>::const_iterator i, prev_i;
3368    i = centreline.begin();
3369    prev_i = i;
3370    while (++i != centreline.end()) {
3371        BeginPolyline();
[5afbd60]3372        SetColourFromLength((*i - *prev_i).magnitude(), 1.0);
[af50685]3373        PlaceVertex(*prev_i);
3374        PlaceVertex(*i);
3375        prev_i = i;
3376        EndPolyline();
3377    }
3378}
3379
3380static double static_length_hack; // FIXME
3381
3382void GfxCore::AddQuadrilateralLength(const Vector3 &a, const Vector3 &b,
3383                                     const Vector3 &c, const Vector3 &d)
3384{
3385    Vector3 normal = (a - c) * (d - b);
3386    normal.normalise();
3387    Double factor = dot(normal, light) * .3 + .7;
3388    int w = int(ceil(((b - a).magnitude() + (d - c).magnitude()) / 2));
3389    int h = int(ceil(((b - c).magnitude() + (d - a).magnitude()) / 2));
3390    // FIXME: should plot triangles instead to avoid rendering glitches.
3391    BeginQuadrilaterals();
3392////    PlaceNormal(normal);
3393    SetColourFromLength(static_length_hack, factor);
3394    PlaceVertex(a, 0, 0);
3395    PlaceVertex(b, w, 0);
3396    PlaceVertex(c, w, h);
3397    PlaceVertex(d, 0, h);
3398    EndQuadrilaterals();
3399}
3400
[da6c802]3401void
[384534c]3402GfxCore::SkinPassage(vector<XSect> & centreline, bool draw)
[3ddcad8]3403{
[b3852b5]3404    assert(centreline.size() > 1);
[3ddcad8]3405    Vector3 U[4];
[ee05463]3406    XSect prev_pt_v;
[3ddcad8]3407    Vector3 last_right(1.0, 0.0, 0.0);
3408
[c61aa79]3409//  FIXME: it's not simple to set the colour of a tube based on error...
3410//    static_E_hack = something...
[fc68ad5]3411    vector<XSect>::iterator i = centreline.begin();
[ee05463]3412    vector<XSect>::size_type segment = 0;
[3ddcad8]3413    while (i != centreline.end()) {
3414        // get the coordinates of this vertex
[fc68ad5]3415        XSect & pt_v = *i++;
[3ddcad8]3416
3417        bool cover_end = false;
3418
3419        Vector3 right, up;
3420
3421        const Vector3 up_v(0.0, 0.0, 1.0);
3422
3423        if (segment == 0) {
3424            assert(i != centreline.end());
3425            // first segment
3426
3427            // get the coordinates of the next vertex
[ee05463]3428            const XSect & next_pt_v = *i;
[3ddcad8]3429
3430            // calculate vector from this pt to the next one
[d67450e]3431            Vector3 leg_v = next_pt_v - pt_v;
[3ddcad8]3432
3433            // obtain a vector in the LRUD plane
3434            right = leg_v * up_v;
3435            if (right.magnitude() == 0) {
3436                right = last_right;
3437                // Obtain a second vector in the LRUD plane,
3438                // perpendicular to the first.
[760ad29d]3439                //up = right * leg_v;
3440                up = up_v;
[3ddcad8]3441            } else {
3442                last_right = right;
3443                up = up_v;
[da6c802]3444            }
3445
[3ddcad8]3446            cover_end = true;
[d4650b3]3447            static_date_hack = next_pt_v.GetDate();
[3ddcad8]3448        } else if (segment + 1 == centreline.size()) {
3449            // last segment
3450
3451            // Calculate vector from the previous pt to this one.
[d67450e]3452            Vector3 leg_v = pt_v - prev_pt_v;
[3ddcad8]3453
3454            // Obtain a horizontal vector in the LRUD plane.
3455            right = leg_v * up_v;
3456            if (right.magnitude() == 0) {
[d67450e]3457                right = Vector3(last_right.GetX(), last_right.GetY(), 0.0);
[3ddcad8]3458                // Obtain a second vector in the LRUD plane,
3459                // perpendicular to the first.
[760ad29d]3460                //up = right * leg_v;
3461                up = up_v;
[3ddcad8]3462            } else {
3463                last_right = right;
3464                up = up_v;
3465            }
[da6c802]3466
[3ddcad8]3467            cover_end = true;
[d4650b3]3468            static_date_hack = pt_v.GetDate();
[3ddcad8]3469        } else {
3470            assert(i != centreline.end());
3471            // Intermediate segment.
3472
3473            // Get the coordinates of the next vertex.
[ee05463]3474            const XSect & next_pt_v = *i;
[3ddcad8]3475
3476            // Calculate vectors from this vertex to the
3477            // next vertex, and from the previous vertex to
3478            // this one.
[d67450e]3479            Vector3 leg1_v = pt_v - prev_pt_v;
3480            Vector3 leg2_v = next_pt_v - pt_v;
[3ddcad8]3481
3482            // Obtain horizontal vectors perpendicular to
3483            // both legs, then normalise and average to get
3484            // a horizontal bisector.
3485            Vector3 r1 = leg1_v * up_v;
3486            Vector3 r2 = leg2_v * up_v;
3487            r1.normalise();
3488            r2.normalise();
3489            right = r1 + r2;
3490            if (right.magnitude() == 0) {
3491                // This is the "mid-pitch" case...
3492                right = last_right;
3493            }
3494            if (r1.magnitude() == 0) {
[760ad29d]3495                up = up_v;
[3ddcad8]3496
3497                // Rotate pitch section to minimise the
3498                // "tortional stress" - FIXME: use
3499                // triangles instead of rectangles?
3500                int shift = 0;
3501                Double maxdotp = 0;
3502
3503                // Scale to unit vectors in the LRUD plane.
3504                right.normalise();
3505                up.normalise();
3506                Vector3 vec = up - right;
3507                for (int orient = 0; orient <= 3; ++orient) {
[d67450e]3508                    Vector3 tmp = U[orient] - prev_pt_v;
[3ddcad8]3509                    tmp.normalise();
3510                    Double dotp = dot(vec, tmp);
3511                    if (dotp > maxdotp) {
3512                        maxdotp = dotp;
3513                        shift = orient;
3514                    }
3515                }
3516                if (shift) {
3517                    if (shift != 2) {
3518                        Vector3 temp(U[0]);
[b3852b5]3519                        U[0] = U[shift];
3520                        U[shift] = U[2];
3521                        U[2] = U[shift ^ 2];
3522                        U[shift ^ 2] = temp;
[ee7af72]3523                    } else {
[3ddcad8]3524                        swap(U[0], U[2]);
3525                        swap(U[1], U[3]);
[ee7af72]3526                    }
[3ddcad8]3527                }
3528#if 0
3529                // Check that the above code actually permuted
3530                // the vertices correctly.
3531                shift = 0;
3532                maxdotp = 0;
[b3852b5]3533                for (int j = 0; j <= 3; ++j) {
[d67450e]3534                    Vector3 tmp = U[j] - prev_pt_v;
[3ddcad8]3535                    tmp.normalise();
3536                    Double dotp = dot(vec, tmp);
3537                    if (dotp > maxdotp) {
3538                        maxdotp = dotp + 1e-6; // Add small tolerance to stop 45 degree offset cases being flagged...
[b3852b5]3539                        shift = j;
[da6c802]3540                    }
[3ddcad8]3541                }
3542                if (shift) {
3543                    printf("New shift = %d!\n", shift);
3544                    shift = 0;
3545                    maxdotp = 0;
[b3852b5]3546                    for (int j = 0; j <= 3; ++j) {
[d67450e]3547                        Vector3 tmp = U[j] - prev_pt_v;
[3ddcad8]3548                        tmp.normalise();
3549                        Double dotp = dot(vec, tmp);
[b3852b5]3550                        printf("    %d : %.8f\n", j, dotp);
[da6c802]3551                    }
3552                }
[3ddcad8]3553#endif
3554            } else {
3555                up = up_v;
[da6c802]3556            }
[3ddcad8]3557            last_right = right;
[d4650b3]3558            static_date_hack = pt_v.GetDate();
[da6c802]3559        }
3560
[3ddcad8]3561        // Scale to unit vectors in the LRUD plane.
3562        right.normalise();
3563        up.normalise();
[33b2094]3564
[57a3cd4]3565        Double l = fabs(pt_v.GetL());
3566        Double r = fabs(pt_v.GetR());
3567        Double u = fabs(pt_v.GetU());
3568        Double d = fabs(pt_v.GetD());
[3ddcad8]3569
3570        // Produce coordinates of the corners of the LRUD "plane".
3571        Vector3 v[4];
[d67450e]3572        v[0] = pt_v - right * l + up * u;
3573        v[1] = pt_v + right * r + up * u;
3574        v[2] = pt_v + right * r - up * d;
3575        v[3] = pt_v - right * l - up * d;
[3ddcad8]3576
[384534c]3577        if (draw) {
[cc9e2c65]3578            const Vector3 & delta = pt_v - prev_pt_v;
3579            static_length_hack = delta.magnitude();
3580            static_gradient_hack = delta.gradient();
[384534c]3581            if (segment > 0) {
3582                (this->*AddQuad)(v[0], v[1], U[1], U[0]);
3583                (this->*AddQuad)(v[2], v[3], U[3], U[2]);
3584                (this->*AddQuad)(v[1], v[2], U[2], U[1]);
3585                (this->*AddQuad)(v[3], v[0], U[0], U[3]);
3586            }
[9eb58d0]3587
[384534c]3588            if (cover_end) {
[8fc6473]3589                if (segment == 0) {
3590                    (this->*AddQuad)(v[0], v[1], v[2], v[3]);
3591                } else {
3592                    (this->*AddQuad)(v[3], v[2], v[1], v[0]);
3593                }
[384534c]3594            }
[3ddcad8]3595        }
[9eb58d0]3596
[3ddcad8]3597        prev_pt_v = pt_v;
3598        U[0] = v[0];
3599        U[1] = v[1];
3600        U[2] = v[2];
3601        U[3] = v[3];
[9eb58d0]3602
[fc68ad5]3603        pt_v.set_right_bearing(deg(atan2(right.GetY(), right.GetX())));
3604
[3ddcad8]3605        ++segment;
3606    }
[33b2094]3607}
[b13aee4]3608
3609void GfxCore::FullScreenMode()
3610{
[ea940373]3611    m_Parent->ViewFullScreen();
[b13aee4]3612}
[fdfa926]3613
3614bool GfxCore::IsFullScreen() const
3615{
3616    return m_Parent->IsFullScreen();
3617}
[1690fa9]3618
[b75a37d]3619bool GfxCore::FullScreenModeShowingMenus() const
3620{
3621    return m_Parent->FullScreenModeShowingMenus();
3622}
3623
3624void GfxCore::FullScreenModeShowMenus(bool show)
3625{
3626    m_Parent->FullScreenModeShowMenus(show);
3627}
3628
[46361bc]3629void
3630GfxCore::MoveViewer(double forward, double up, double right)
3631{
[e577f89]3632    double cT = cos(rad(m_TiltAngle));
3633    double sT = sin(rad(m_TiltAngle));
3634    double cP = cos(rad(m_PanAngle));
3635    double sP = sin(rad(m_PanAngle));
[7a57dc7]3636    Vector3 v_forward(cT * sP, cT * cP, sT);
3637    Vector3 v_up(sT * sP, sT * cP, -cT);
[867a1141]3638    Vector3 v_right(-cP, sP, 0);
[d4a5aaf]3639    assert(fabs(dot(v_forward, v_up)) < 1e-6);
3640    assert(fabs(dot(v_forward, v_right)) < 1e-6);
3641    assert(fabs(dot(v_right, v_up)) < 1e-6);
[46361bc]3642    Vector3 move = v_forward * forward + v_up * up + v_right * right;
[d67450e]3643    AddTranslation(-move);
[d877aa2]3644    // Show current position.
[d67450e]3645    m_Parent->SetCoords(m_Parent->GetOffset() - GetTranslation());
[46361bc]3646    ForceRefresh();
3647}
3648
[1690fa9]3649PresentationMark GfxCore::GetView() const
3650{
[d67450e]3651    return PresentationMark(GetTranslation() + m_Parent->GetOffset(),
[7a57dc7]3652                            m_PanAngle, -m_TiltAngle, m_Scale);
[1690fa9]3653}
3654
3655void GfxCore::SetView(const PresentationMark & p)
3656{
3657    m_SwitchingTo = 0;
[d67450e]3658    SetTranslation(p - m_Parent->GetOffset());
[1690fa9]3659    m_PanAngle = p.angle;
[7a57dc7]3660    m_TiltAngle = -p.tilt_angle; // FIXME: nasty reversed sense (and above)
[08253d9]3661    SetRotation(m_PanAngle, m_TiltAngle);
[1690fa9]3662    SetScale(p.scale);
3663    ForceRefresh();
3664}
3665
[128fac4]3666void GfxCore::PlayPres(double speed, bool change_speed) {
3667    if (!change_speed || presentation_mode == 0) {
3668        if (speed == 0.0) {
3669            presentation_mode = 0;
3670            return;
3671        }
3672        presentation_mode = PLAYING;
3673        next_mark = m_Parent->GetPresMark(MARK_FIRST);
3674        SetView(next_mark);
3675        next_mark_time = 0; // There already!
3676        this_mark_total = 0;
3677        pres_reverse = (speed < 0);
3678    }
3679
[d67450e]3680    if (change_speed) pres_speed = speed;
3681
[128fac4]3682    if (speed != 0.0) {
3683        bool new_pres_reverse = (speed < 0);
3684        if (new_pres_reverse != pres_reverse) {
3685            pres_reverse = new_pres_reverse;
3686            if (pres_reverse) {
3687                next_mark = m_Parent->GetPresMark(MARK_PREV);
3688            } else {
3689                next_mark = m_Parent->GetPresMark(MARK_NEXT);
3690            }
3691            swap(this_mark_total, next_mark_time);
3692        }
3693    }
[1690fa9]3694}
[6a4cdcb6]3695
[da6c802]3696void GfxCore::SetColourBy(int colour_by) {
3697    m_ColourBy = colour_by;
3698    switch (colour_by) {
3699        case COLOUR_BY_DEPTH:
3700            AddQuad = &GfxCore::AddQuadrilateralDepth;
3701            AddPoly = &GfxCore::AddPolylineDepth;
3702            break;
[d4650b3]3703        case COLOUR_BY_DATE:
3704            AddQuad = &GfxCore::AddQuadrilateralDate;
3705            AddPoly = &GfxCore::AddPolylineDate;
3706            break;
[c61aa79]3707        case COLOUR_BY_ERROR:
3708            AddQuad = &GfxCore::AddQuadrilateralError;
3709            AddPoly = &GfxCore::AddPolylineError;
3710            break;
[cc9e2c65]3711        case COLOUR_BY_GRADIENT:
3712            AddQuad = &GfxCore::AddQuadrilateralGradient;
3713            AddPoly = &GfxCore::AddPolylineGradient;
3714            break;
[af50685]3715        case COLOUR_BY_LENGTH:
3716            AddQuad = &GfxCore::AddQuadrilateralLength;
3717            AddPoly = &GfxCore::AddPolylineLength;
3718            break;
[da6c802]3719        default: // case COLOUR_BY_NONE:
3720            AddQuad = &GfxCore::AddQuadrilateral;
3721            AddPoly = &GfxCore::AddPolyline;
3722            break;
3723    }
3724
[d2fcc9b]3725    InvalidateList(LIST_UNDERGROUND_LEGS);
[c61aa79]3726    InvalidateList(LIST_SURFACE_LEGS);
[d2fcc9b]3727    InvalidateList(LIST_TUBES);
[da6c802]3728
3729    ForceRefresh();
3730}
3731
[6a4cdcb6]3732bool GfxCore::ExportMovie(const wxString & fnm)
3733{
[8f9bade6]3734    FILE* fh = wxFopen(fnm.fn_str(), wxT("wb"));
[f4e4b56]3735    if (fh == NULL) {
3736        wxGetApp().ReportError(wxString::Format(wmsg(/*Failed to open output file “%s”*/47), fnm.c_str()));
3737        return false;
3738    }
3739
3740    wxString ext;
3741    wxFileName::SplitPath(fnm, NULL, NULL, NULL, &ext, wxPATH_NATIVE);
3742
[6a4cdcb6]3743    int width;
3744    int height;
3745    GetSize(&width, &height);
[028829f]3746    // Round up to next multiple of 2 (required by ffmpeg).
3747    width += (width & 1);
[6a4cdcb6]3748    height += (height & 1);
3749
[75d4a2b]3750    movie = new MovieMaker();
[6a4cdcb6]3751
[f4e4b56]3752    // movie takes ownership of fh.
3753    if (!movie->Open(fh, ext.utf8_str(), width, height)) {
[091069f]3754        wxGetApp().ReportError(wxString(movie->get_error_string(), wxConvUTF8));
[75d4a2b]3755        delete movie;
[81f1266]3756        movie = NULL;
[6a4cdcb6]3757        return false;
3758    }
[f433fda]3759
[d10d369]3760    PlayPres(1);
[6a4cdcb6]3761    return true;
3762}
[223f1ad]3763
[ce403f1]3764void
3765GfxCore::OnPrint(const wxString &filename, const wxString &title,
[4ed8154]3766                 const wxString &datestamp, time_t datestamp_numeric,
[6d3938b]3767                 const wxString &cs_proj,
[4ed8154]3768                 bool close_after_print)
[ce403f1]3769{
3770    svxPrintDlg * p;
[6d3938b]3771    p = new svxPrintDlg(m_Parent, filename, title, cs_proj,
[f10cf8f]3772                        datestamp, datestamp_numeric,
[ce403f1]3773                        m_PanAngle, m_TiltAngle,
[ddcf585]3774                        m_Names, m_Crosses, m_Legs, m_Surface, m_Splays,
3775                        m_Tubes, m_Entrances, m_FixedPts, m_ExportedPts,
[4ed8154]3776                        true, close_after_print);
[6d1bc83]3777    p->Show(true);
[ce403f1]3778}
3779
[5940815]3780void
[70462c8]3781GfxCore::OnExport(const wxString &filename, const wxString &title,
[6d3938b]3782                  const wxString &datestamp, time_t datestamp_numeric,
3783                  const wxString &cs_proj)
[223f1ad]3784{
[384534c]3785    // Fill in "right_bearing" for each cross-section.
3786    list<vector<XSect> >::iterator trav = m_Parent->tubes_begin();
3787    list<vector<XSect> >::iterator tend = m_Parent->tubes_end();
3788    while (trav != tend) {
3789        SkinPassage(*trav, false);
3790        ++trav;
3791    }
3792
[5940815]3793    svxPrintDlg * p;
[6d3938b]3794    p = new svxPrintDlg(m_Parent, filename, title, cs_proj,
[f10cf8f]3795                        datestamp, datestamp_numeric,
[5940815]3796                        m_PanAngle, m_TiltAngle,
[ddcf585]3797                        m_Names, m_Crosses, m_Legs, m_Surface, m_Splays,
3798                        m_Tubes, m_Entrances, m_FixedPts, m_ExportedPts,
[5940815]3799                        false);
[6d1bc83]3800    p->Show(true);
[223f1ad]3801}
[e2c1671]3802
3803static wxCursor
3804make_cursor(const unsigned char * bits, const unsigned char * mask,
3805            int hotx, int hoty)
3806{
[b72f4b5]3807#if defined __WXMSW__ || defined __WXMAC__
[60adbce]3808# ifdef __WXMAC__
3809    // The default Mac cursor is black with a white edge, so
3810    // invert our custom cursors to match.
3811    char b[128];
3812    for (int i = 0; i < 128; ++i)
3813        b[i] = bits[i] ^ 0xff;
3814# else
3815    const char * b = reinterpret_cast<const char *>(bits);
3816# endif
3817    wxBitmap cursor_bitmap(b, 32, 32);
[7f3fe6d]3818    wxBitmap mask_bitmap(reinterpret_cast<const char *>(mask), 32, 32);
[4dc4384]3819    cursor_bitmap.SetMask(new wxMask(mask_bitmap, *wxWHITE));
[e2c1671]3820    wxImage cursor_image = cursor_bitmap.ConvertToImage();
3821    cursor_image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_X, hotx);
3822    cursor_image.SetOption(wxIMAGE_OPTION_CUR_HOTSPOT_Y, hoty);
[7f3fe6d]3823    return wxCursor(cursor_image);
[e2c1671]3824#else
3825    return wxCursor((const char *)bits, 32, 32, hotx, hoty,
[4dc4384]3826                    (const char *)mask, wxBLACK, wxWHITE);
[e2c1671]3827#endif
3828}
3829
3830const
3831#include "hand.xbm"
3832const
3833#include "handmask.xbm"
3834
3835const
3836#include "brotate.xbm"
3837const
3838#include "brotatemask.xbm"
3839
3840const
3841#include "vrotate.xbm"
3842const
3843#include "vrotatemask.xbm"
3844
3845const
3846#include "rotate.xbm"
3847const
3848#include "rotatemask.xbm"
3849
[ecf2d23]3850const
3851#include "rotatezoom.xbm"
3852const
3853#include "rotatezoommask.xbm"
3854
[e2c1671]3855void
[242cb07]3856GfxCore::UpdateCursor(GfxCore::cursor new_cursor)
[e2c1671]3857{
3858    // Check if we're already showing that cursor.
3859    if (current_cursor == new_cursor) return;
3860
3861    current_cursor = new_cursor;
3862    switch (current_cursor) {
3863        case GfxCore::CURSOR_DEFAULT:
3864            GLACanvas::SetCursor(wxNullCursor);
3865            break;
3866        case GfxCore::CURSOR_POINTING_HAND:
3867            GLACanvas::SetCursor(wxCursor(wxCURSOR_HAND));
3868            break;
3869        case GfxCore::CURSOR_DRAGGING_HAND:
3870            GLACanvas::SetCursor(make_cursor(hand_bits, handmask_bits, 12, 18));
3871            break;
3872        case GfxCore::CURSOR_HORIZONTAL_RESIZE:
3873            GLACanvas::SetCursor(wxCursor(wxCURSOR_SIZEWE));
3874            break;
3875        case GfxCore::CURSOR_ROTATE_HORIZONTALLY:
3876            GLACanvas::SetCursor(make_cursor(rotate_bits, rotatemask_bits, 15, 15));
3877            break;
3878        case GfxCore::CURSOR_ROTATE_VERTICALLY:
3879            GLACanvas::SetCursor(make_cursor(vrotate_bits, vrotatemask_bits, 15, 15));
3880            break;
3881        case GfxCore::CURSOR_ROTATE_EITHER_WAY:
3882            GLACanvas::SetCursor(make_cursor(brotate_bits, brotatemask_bits, 15, 15));
3883            break;
3884        case GfxCore::CURSOR_ZOOM:
3885            GLACanvas::SetCursor(wxCursor(wxCURSOR_MAGNIFIER));
3886            break;
[ecf2d23]3887        case GfxCore::CURSOR_ZOOM_ROTATE:
3888            GLACanvas::SetCursor(make_cursor(rotatezoom_bits, rotatezoommask_bits, 15, 15));
3889            break;
[e2c1671]3890    }
3891}
[6b061db]3892
3893bool GfxCore::MeasuringLineActive() const
3894{
3895    if (Animating()) return false;
[381ae6e]3896    return HereIsReal() || m_there;
[6b061db]3897}
[acdb8aa]3898
3899bool GfxCore::HandleRClick(wxPoint point)
3900{
3901    if (PointWithinCompass(point)) {
3902        // Pop up menu.
3903        wxMenu menu;
[736f7df]3904        /* TRANSLATORS: View *looking* North */
[055bfc58]3905        menu.Append(menu_ORIENT_MOVE_NORTH, wmsg(/*View &North*/240));
[736f7df]3906        /* TRANSLATORS: View *looking* East */
[055bfc58]3907        menu.Append(menu_ORIENT_MOVE_EAST, wmsg(/*View &East*/241));
[736f7df]3908        /* TRANSLATORS: View *looking* South */
[055bfc58]3909        menu.Append(menu_ORIENT_MOVE_SOUTH, wmsg(/*View &South*/242));
[736f7df]3910        /* TRANSLATORS: View *looking* West */
[055bfc58]3911        menu.Append(menu_ORIENT_MOVE_WEST, wmsg(/*View &West*/243));
3912        menu.AppendSeparator();
[736f7df]3913        /* TRANSLATORS: Menu item which turns off the "north arrow" in aven. */
[4d2301e]3914        menu.AppendCheckItem(menu_IND_COMPASS, wmsg(/*&Hide Compass*/387));
[0b8c321]3915        /* TRANSLATORS: tickable menu item in View menu.
3916         *
3917         * Degrees are the angular measurement where there are 360 in a full
3918         * circle. */
[acdb8aa]3919        menu.AppendCheckItem(menu_CTL_DEGREES, wmsg(/*&Degrees*/343));
[ee3e284]3920        menu.Connect(wxEVT_COMMAND_MENU_SELECTED, (wxObjectEventFunction)&wxEvtHandler::ProcessEvent, NULL, m_Parent->GetEventHandler());
[acdb8aa]3921        PopupMenu(&menu);
3922        return true;
3923    }
3924
3925    if (PointWithinClino(point)) {
3926        // Pop up menu.
3927        wxMenu menu;
[055bfc58]3928        menu.Append(menu_ORIENT_PLAN, wmsg(/*&Plan View*/248));
3929        menu.Append(menu_ORIENT_ELEVATION, wmsg(/*Ele&vation*/249));
3930        menu.AppendSeparator();
[736f7df]3931        /* TRANSLATORS: Menu item which turns off the tilt indicator in aven. */
[acdb8aa]3932        menu.AppendCheckItem(menu_IND_CLINO, wmsg(/*&Hide Clino*/384));
[736f7df]3933        /* TRANSLATORS: tickable menu item in View menu.
3934         *
3935         * Degrees are the angular measurement where there are 360 in a full
3936         * circle. */
[acdb8aa]3937        menu.AppendCheckItem(menu_CTL_DEGREES, wmsg(/*&Degrees*/343));
[736f7df]3938        /* TRANSLATORS: tickable menu item in View menu.
3939         *
3940         * Show the tilt of the survey as a percentage gradient (100% = 45
3941         * degrees = 50 grad). */
[d171c0c]3942        menu.AppendCheckItem(menu_CTL_PERCENT, wmsg(/*&Percent*/430));
[ee3e284]3943        menu.Connect(wxEVT_COMMAND_MENU_SELECTED, (wxObjectEventFunction)&wxEvtHandler::ProcessEvent, NULL, m_Parent->GetEventHandler());
3944        PopupMenu(&menu);
[acdb8aa]3945        return true;
3946    }
3947
3948    if (PointWithinScaleBar(point)) {
3949        // Pop up menu.
3950        wxMenu menu;
[736f7df]3951        /* TRANSLATORS: Menu item which turns off the scale bar in aven. */
[acdb8aa]3952        menu.AppendCheckItem(menu_IND_SCALE_BAR, wmsg(/*&Hide scale bar*/385));
[0b8c321]3953        /* TRANSLATORS: tickable menu item in View menu.
3954         *
3955         * "Metric" here means metres, km, etc (rather than feet, miles, etc)
3956         */
[acdb8aa]3957        menu.AppendCheckItem(menu_CTL_METRIC, wmsg(/*&Metric*/342));
[ee3e284]3958        menu.Connect(wxEVT_COMMAND_MENU_SELECTED, (wxObjectEventFunction)&wxEvtHandler::ProcessEvent, NULL, m_Parent->GetEventHandler());
[acdb8aa]3959        PopupMenu(&menu);
3960        return true;
3961    }
3962
3963    if (PointWithinColourKey(point)) {
3964        // Pop up menu.
3965        wxMenu menu;
[46beda0]3966        menu.AppendCheckItem(menu_COLOUR_BY_DEPTH, wmsg(/*Colour by &Depth*/292));
3967        menu.AppendCheckItem(menu_COLOUR_BY_DATE, wmsg(/*Colour by D&ate*/293));
3968        menu.AppendCheckItem(menu_COLOUR_BY_ERROR, wmsg(/*Colour by &Error*/289));
3969        menu.AppendCheckItem(menu_COLOUR_BY_GRADIENT, wmsg(/*Colour by &Gradient*/85));
3970        menu.AppendCheckItem(menu_COLOUR_BY_LENGTH, wmsg(/*Colour by &Length*/82));
[d43fa84]3971        menu.AppendSeparator();
[736f7df]3972        /* TRANSLATORS: Menu item which turns off the colour key.
3973         * The "Colour Key" is the thing in aven showing which colour
3974         * corresponds to which depth, date, survey closure error, etc. */
[97ea48d]3975        menu.AppendCheckItem(menu_IND_COLOUR_KEY, wmsg(/*&Hide colour key*/386));
[391af6a]3976        if (m_ColourBy == COLOUR_BY_DEPTH || m_ColourBy == COLOUR_BY_LENGTH)
[d43fa84]3977            menu.AppendCheckItem(menu_CTL_METRIC, wmsg(/*&Metric*/342));
[cc9e2c65]3978        else if (m_ColourBy == COLOUR_BY_GRADIENT)
3979            menu.AppendCheckItem(menu_CTL_DEGREES, wmsg(/*&Degrees*/343));
[ee3e284]3980        menu.Connect(wxEVT_COMMAND_MENU_SELECTED, (wxObjectEventFunction)&wxEvtHandler::ProcessEvent, NULL, m_Parent->GetEventHandler());
[acdb8aa]3981        PopupMenu(&menu);
3982        return true;
3983    }
3984
3985    return false;
3986}
[dd6af8b]3987
3988void GfxCore::SetZoomBox(wxPoint p1, wxPoint p2, bool centred, bool aspect)
3989{
3990    if (centred) {
3991        p1.x = p2.x + (p1.x - p2.x) * 2;
3992        p1.y = p2.y + (p1.y - p2.y) * 2;
3993    }
3994    if (aspect) {
3995#if 0 // FIXME: This needs more work.
3996        int sx = GetXSize();
3997        int sy = GetYSize();
3998        int dx = p1.x - p2.x;
3999        int dy = p1.y - p2.y;
4000        int dy_new = dx * sy / sx;
4001        if (abs(dy_new) >= abs(dy)) {
4002            p1.y += (dy_new - dy) / 2;
4003            p2.y -= (dy_new - dy) / 2;
4004        } else {
4005            int dx_new = dy * sx / sy;
4006            p1.x += (dx_new - dx) / 2;
4007            p2.x -= (dx_new - dx) / 2;
4008        }
4009#endif
4010    }
4011    zoombox.set(p1, p2);
4012    ForceRefresh();
4013}
4014
4015void GfxCore::ZoomBoxGo()
4016{
4017    if (!zoombox.active()) return;
4018
4019    int width = GetXSize();
4020    int height = GetYSize();
4021
4022    TranslateCave(-0.5 * (zoombox.x1 + zoombox.x2 - width),
4023                  -0.5 * (zoombox.y1 + zoombox.y2 - height));
4024    int box_w = abs(zoombox.x1 - zoombox.x2);
4025    int box_h = abs(zoombox.y1 - zoombox.y2);
4026
4027    double factor = min(double(width) / box_w, double(height) / box_h);
4028
4029    zoombox.unset();
4030
4031    SetScale(GetScale() * factor);
4032}
Note: See TracBrowser for help on using the repository browser.