source: branches/1.3/gui/scripts/vtksurfaceviewer.tcl @ 5796

Last change on this file since 5796 was 5796, checked in by ldelgass, 9 years ago

merge r5795 from trunk

File size: 79.3 KB
Line 
1# -*- mode: tcl; indent-tabs-mode: nil -*-
2# ----------------------------------------------------------------------
3#  COMPONENT: vtksurfaceviewer - Vtk 3D boundary surface viewer
4#
5#  It connects to the Vtk server running on a rendering farm,
6#  transmits data, and displays the results.
7# ======================================================================
8#  AUTHOR:  Michael McLennan, Purdue University
9#  Copyright (c) 2004-2014  HUBzero Foundation, LLC
10#
11#  See the file "license.terms" for information on usage and
12#  redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
13# ======================================================================
14package require Itk
15package require BLT
16#package require Img
17
18option add *VtkSurfaceViewer.width 4i widgetDefault
19option add *VtkSurfaceViewer*cursor crosshair widgetDefault
20option add *VtkSurfaceViewer.height 4i widgetDefault
21option add *VtkSurfaceViewer.foreground black widgetDefault
22option add *VtkSurfaceViewer.controlBackground gray widgetDefault
23option add *VtkSurfaceViewer.controlDarkBackground #999999 widgetDefault
24option add *VtkSurfaceViewer.plotBackground black widgetDefault
25option add *VtkSurfaceViewer.plotForeground white widgetDefault
26option add *VtkSurfaceViewer.font \
27    -*-helvetica-medium-r-normal-*-12-* widgetDefault
28
29# must use this name -- plugs into Rappture::resources::load
30proc VtkSurfaceViewer_init_resources {} {
31    Rappture::resources::register \
32        vtkvis_server Rappture::VtkSurfaceViewer::SetServerList
33}
34
35itcl::class Rappture::VtkSurfaceViewer {
36    inherit Rappture::VisViewer
37
38    itk_option define -plotforeground plotForeground Foreground ""
39    itk_option define -plotbackground plotBackground Background ""
40
41    constructor { hostlist args } {
42        Rappture::VisViewer::constructor $hostlist
43    } {
44        # defined below
45    }
46    destructor {
47        # defined below
48    }
49    public proc SetServerList { namelist } {
50        Rappture::VisViewer::SetServerList "vtkvis" $namelist
51    }
52    public method add {dataobj {settings ""}}
53    public method camera {option args}
54    public method delete {args}
55    public method disconnect {}
56    public method download {option args}
57    public method get {args}
58    public method isconnected {}
59    public method parameters {title args} {
60        # do nothing
61    }
62    public method scale {args}
63
64    # The following methods are only used by this class.
65    private method AdjustSetting {what {value ""}}
66    private method BuildAxisTab {}
67    private method BuildCameraTab {}
68    private method BuildColormap { name }
69    private method BuildDownloadPopup { widget command }
70    private method BuildSurfaceTab {}
71    private method Combo { option }
72    private method Connect {}
73    private method CurrentDatasets {args}
74    private method Disconnect {}
75    private method DoResize {}
76    private method DoRotate {}
77    private method DrawLegend {}
78    private method EnterLegend { x y }
79    private method EventuallyRequestLegend {}
80    private method EventuallyResize { w h }
81    private method EventuallyRotate { q }
82    private method GetImage { args }
83    private method GetVtkData { args }
84    private method InitSettings { args  }
85    private method IsValidObject { dataobj }
86    private method LeaveLegend {}
87    private method MotionLegend { x y }
88    private method Pan {option x y}
89    private method PanCamera {}
90    private method Pick {x y}
91    private method QuaternionToView { q } {
92        foreach { _view(-qw) _view(-qx) _view(-qy) _view(-qz) } $q break
93    }
94    private method Rebuild {}
95    private method ReceiveDataset { args }
96    private method ReceiveImage { args }
97    private method ReceiveLegend { colormap title vmin vmax size }
98    private method RequestLegend {}
99    private method Rotate {option x y}
100    private method SetCurrentColormap { color }
101    private method SetCurrentFieldName { dataobj }
102    private method SetLegendTip { x y }
103    private method SetObjectStyle { dataobj comp }
104    private method SetOrientation { side }
105    private method UpdateContourList {}
106    private method ViewToQuaternion {} {
107        return [list $_view(-qw) $_view(-qx) $_view(-qy) $_view(-qz)]
108    }
109    private method Zoom {option}
110
111    private variable _arcball ""
112
113    private variable _dlist ""     ;    # list of data objects
114    private variable _obj2ovride   ;    # maps dataobj => style override
115    private variable _datasets     ;    # contains all the dataobj-component
116                                   ;    # datasets in the server
117    private variable _colormaps    ;    # contains all the colormaps
118                                   ;    # in the server.
119    # The name of the current colormap used.  The colormap is global to all
120    # heightmaps displayed.
121    private variable _currentColormap ""
122    private variable _currentNumContours -1
123
124    private variable _click        ;    # info used for rotate operations
125    private variable _limits       ;    # autoscale min/max for all axes
126    private variable _view         ;    # view params for 3D view
127    private variable _settings
128    private variable _changed
129    private variable _reset 1;          # Connection to server has been reset.
130
131    private variable _first ""     ;    # This is the topmost dataset.
132    private variable _start 0
133    private variable _title ""
134    private variable _isolines
135    private variable _contourList ""
136    private variable _width 0
137    private variable _height 0
138    private variable _resizePending 0
139    private variable _rotatePending 0
140    private variable _legendPending 0
141    private variable _field      ""
142    private variable _colorMode "scalar"; #  Mode of colormap (vmag or scalar)
143    private variable _fields
144    private variable _curFldName ""
145    private variable _curFldLabel ""
146
147    private common _downloadPopup;      # download options from popup
148    private common _hardcopy
149}
150
151itk::usual VtkSurfaceViewer {
152    keep -background -foreground -cursor -font
153    keep -plotbackground -plotforeground
154}
155
156# ----------------------------------------------------------------------
157# CONSTRUCTOR
158# ----------------------------------------------------------------------
159itcl::body Rappture::VtkSurfaceViewer::constructor {hostlist args} {
160    set _serverType "vtkvis"
161
162    # Rebuild event
163    $_dispatcher register !rebuild
164    $_dispatcher dispatch $this !rebuild "[itcl::code $this Rebuild]; list"
165
166    # Resize event
167    $_dispatcher register !resize
168    $_dispatcher dispatch $this !resize "[itcl::code $this DoResize]; list"
169
170    # Rotate event
171    $_dispatcher register !rotate
172    $_dispatcher dispatch $this !rotate "[itcl::code $this DoRotate]; list"
173
174    # Legend event
175    $_dispatcher register !legend
176    $_dispatcher dispatch $this !legend "[itcl::code $this RequestLegend]; list"
177
178    #
179    # Populate parser with commands handle incoming requests
180    #
181    $_parser alias image [itcl::code $this ReceiveImage]
182    $_parser alias dataset [itcl::code $this ReceiveDataset]
183    $_parser alias legend [itcl::code $this ReceiveLegend]
184
185    # Initialize the view to some default parameters.
186    array set _view {
187        -ortho           0
188        -qw              0.853553
189        -qx              -0.353553
190        -qy              0.353553
191        -qz              0.146447
192        -xpan            0
193        -ypan            0
194        -zoom            1.0
195    }
196    set _arcball [blt::arcball create 100 100]
197    $_arcball quaternion [ViewToQuaternion]
198
199    array set _settings {
200        -axesvisible                1
201        -axislabels                 1
202        -axisminorticks             1
203        -axismode                   "static"
204        -background                 black
205        -colormap                   BCGYR
206        -colormapvisible            1
207        -field                      "Default"
208        -isolinecolor               white
209        -isolinesvisible            0
210        -legendvisible              1
211        -numcontours                10
212        -outline                    0
213        -surfaceedges               0
214        -surfacelighting            1
215        -surfaceopacity             100
216        -surfacevisible             1
217        -surfacewireframe           0
218        -xgrid                      0
219        -ygrid                      0
220        -zgrid                      0
221    }
222    array set _changed {
223        -colormap                0
224        -isolinecolor            0
225        -isolinesvisible         0
226        -numcontours             0
227        -outline                 0
228        -surfaceedges            0
229        -surfacelighting         0
230        -surfaceopacity          0
231        -surfacevisible          0
232        -surfacewireframe        0
233    }
234
235    itk_component add view {
236        canvas $itk_component(plotarea).view \
237            -highlightthickness 0 -borderwidth 0
238    } {
239        usual
240        ignore -highlightthickness -borderwidth  -background
241    }
242
243    itk_component add fieldmenu {
244        menu $itk_component(plotarea).menu -bg black -fg white -relief flat \
245            -tearoff 0
246    } {
247        usual
248        ignore -background -foreground -relief -tearoff
249    }
250    set c $itk_component(view)
251    bind $c <Configure> [itcl::code $this EventuallyResize %w %h]
252    bind $c <4> [itcl::code $this Zoom in 0.25]
253    bind $c <5> [itcl::code $this Zoom out 0.25]
254    bind $c <KeyPress-Left>  [list %W xview scroll 10 units]
255    bind $c <KeyPress-Right> [list %W xview scroll -10 units]
256    bind $c <KeyPress-Up>    [list %W yview scroll 10 units]
257    bind $c <KeyPress-Down>  [list %W yview scroll -10 units]
258    bind $c <Enter> "focus %W"
259    bind $c <Control-F1> [itcl::code $this ToggleConsole]
260
261    # Fix the scrollregion in case we go off screen
262    $c configure -scrollregion [$c bbox all]
263
264    set _map(id) [$c create image 0 0 -anchor nw -image $_image(plot)]
265    set _map(cwidth) -1
266    set _map(cheight) -1
267    set _map(zoom) 1.0
268    set _map(original) ""
269
270    set f [$itk_component(main) component controls]
271    itk_component add reset {
272        button $f.reset -borderwidth 1 -padx 1 -pady 1 \
273            -highlightthickness 0 \
274            -image [Rappture::icon reset-view] \
275            -command [itcl::code $this Zoom reset]
276    } {
277        usual
278        ignore -highlightthickness
279    }
280    pack $itk_component(reset) -side top -padx 2 -pady 2
281    Rappture::Tooltip::for $itk_component(reset) \
282        "Reset the view to the default zoom level"
283
284    itk_component add zoomin {
285        button $f.zin -borderwidth 1 -padx 1 -pady 1 \
286            -highlightthickness 0 \
287            -image [Rappture::icon zoom-in] \
288            -command [itcl::code $this Zoom in]
289    } {
290        usual
291        ignore -highlightthickness
292    }
293    pack $itk_component(zoomin) -side top -padx 2 -pady 2
294    Rappture::Tooltip::for $itk_component(zoomin) "Zoom in"
295
296    itk_component add zoomout {
297        button $f.zout -borderwidth 1 -padx 1 -pady 1 \
298            -highlightthickness 0 \
299            -image [Rappture::icon zoom-out] \
300            -command [itcl::code $this Zoom out]
301    } {
302        usual
303        ignore -highlightthickness
304    }
305    pack $itk_component(zoomout) -side top -padx 2 -pady 2
306    Rappture::Tooltip::for $itk_component(zoomout) "Zoom out"
307
308    itk_component add surface {
309        Rappture::PushButton $f.surface \
310            -onimage [Rappture::icon volume-on] \
311            -offimage [Rappture::icon volume-off] \
312            -variable [itcl::scope _settings(-surfacevisible)] \
313            -command [itcl::code $this AdjustSetting -surfacevisible]
314    }
315    $itk_component(surface) select
316    Rappture::Tooltip::for $itk_component(surface) \
317        "Hide the surface"
318    pack $itk_component(surface) -padx 2 -pady 2
319
320    if { [catch {
321        BuildSurfaceTab
322        BuildAxisTab
323        BuildCameraTab
324    } errs] != 0 } {
325        puts stderr errs=$errs
326    }
327
328    # Legend
329    set _image(legend) [image create photo]
330    itk_component add legend {
331        canvas $itk_component(plotarea).legend -width 50 -highlightthickness 0
332    } {
333        usual
334        ignore -highlightthickness
335        rename -background -plotbackground plotBackground Background
336    }
337
338    # Hack around the Tk panewindow.  The problem is that the requested
339    # size of the 3d view isn't set until an image is retrieved from
340    # the server.  So the panewindow uses the tiny size.
341    set w 10000
342    pack forget $itk_component(view)
343    blt::table $itk_component(plotarea) \
344        0,0 $itk_component(view) -fill both -reqwidth $w
345    blt::table configure $itk_component(plotarea) c1 -resize none
346
347    # Bindings for rotation via mouse
348    bind $itk_component(view) <ButtonPress-1> \
349        [itcl::code $this Rotate click %x %y]
350    bind $itk_component(view) <B1-Motion> \
351        [itcl::code $this Rotate drag %x %y]
352    bind $itk_component(view) <ButtonRelease-1> \
353        [itcl::code $this Rotate release %x %y]
354
355    # Bindings for panning via mouse
356    bind $itk_component(view) <ButtonPress-2> \
357        [itcl::code $this Pan click %x %y]
358    bind $itk_component(view) <B2-Motion> \
359        [itcl::code $this Pan drag %x %y]
360    bind $itk_component(view) <ButtonRelease-2> \
361        [itcl::code $this Pan release %x %y]
362
363    #bind $itk_component(view) <ButtonRelease-3> \
364    #    [itcl::code $this Pick %x %y]
365
366    # Bindings for panning via keyboard
367    bind $itk_component(view) <KeyPress-Left> \
368        [itcl::code $this Pan set -10 0]
369    bind $itk_component(view) <KeyPress-Right> \
370        [itcl::code $this Pan set 10 0]
371    bind $itk_component(view) <KeyPress-Up> \
372        [itcl::code $this Pan set 0 -10]
373    bind $itk_component(view) <KeyPress-Down> \
374        [itcl::code $this Pan set 0 10]
375    bind $itk_component(view) <Shift-KeyPress-Left> \
376        [itcl::code $this Pan set -2 0]
377    bind $itk_component(view) <Shift-KeyPress-Right> \
378        [itcl::code $this Pan set 2 0]
379    bind $itk_component(view) <Shift-KeyPress-Up> \
380        [itcl::code $this Pan set 0 -2]
381    bind $itk_component(view) <Shift-KeyPress-Down> \
382        [itcl::code $this Pan set 0 2]
383
384    # Bindings for zoom via keyboard
385    bind $itk_component(view) <KeyPress-Prior> \
386        [itcl::code $this Zoom out]
387    bind $itk_component(view) <KeyPress-Next> \
388        [itcl::code $this Zoom in]
389
390    bind $itk_component(view) <Enter> "focus $itk_component(view)"
391
392    if {[string equal "x11" [tk windowingsystem]]} {
393        # Bindings for zoom via mouse
394        bind $itk_component(view) <4> [itcl::code $this Zoom out]
395        bind $itk_component(view) <5> [itcl::code $this Zoom in]
396    }
397
398    set _image(download) [image create photo]
399
400    eval itk_initialize $args
401
402    EnableWaitDialog 900
403    Connect
404}
405
406# ----------------------------------------------------------------------
407# DESTRUCTOR
408# ----------------------------------------------------------------------
409itcl::body Rappture::VtkSurfaceViewer::destructor {} {
410    Disconnect
411    image delete $_image(plot)
412    image delete $_image(download)
413    catch { blt::arcball destroy $_arcball }
414}
415
416itcl::body Rappture::VtkSurfaceViewer::DoResize {} {
417    if { $_width < 2 } {
418        set _width 500
419    }
420    if { $_height < 2 } {
421        set _height 500
422    }
423    set _start [clock clicks -milliseconds]
424    SendCmd "screen size $_width $_height"
425
426    EventuallyRequestLegend
427    set _resizePending 0
428}
429
430itcl::body Rappture::VtkSurfaceViewer::DoRotate {} {
431    SendCmd "camera orient [ViewToQuaternion]"
432    set _rotatePending 0
433}
434
435itcl::body Rappture::VtkSurfaceViewer::EventuallyRequestLegend {} {
436    if { !$_legendPending } {
437        set _legendPending 1
438        $_dispatcher event -idle !legend
439    }
440}
441
442itcl::body Rappture::VtkSurfaceViewer::EventuallyResize { w h } {
443    set _width $w
444    set _height $h
445    $_arcball resize $w $h
446    if { !$_resizePending } {
447        set _resizePending 1
448        $_dispatcher event -after 400 !resize
449    }
450}
451
452set rotate_delay 100
453
454itcl::body Rappture::VtkSurfaceViewer::EventuallyRotate { q } {
455    QuaternionToView $q
456    if { !$_rotatePending } {
457        set _rotatePending 1
458        global rotate_delay
459        $_dispatcher event -after $rotate_delay !rotate
460    }
461}
462
463# ----------------------------------------------------------------------
464# USAGE: add <dataobj> ?<settings>?
465#
466# Clients use this to add a data object to the plot.  The optional
467# <settings> are used to configure the plot.  Allowed settings are
468# -color, -brightness, -width, -linestyle, and -raise.
469# ----------------------------------------------------------------------
470itcl::body Rappture::VtkSurfaceViewer::add {dataobj {settings ""}} {
471    if { ![$dataobj isvalid] } {
472        return;                         # Object doesn't contain valid data.
473    }
474    array set params {
475        -color auto
476        -width 1
477        -linestyle solid
478        -brightness 0
479        -raise 0
480        -description ""
481        -param ""
482        -type ""
483    }
484    array set params $settings
485    set params(-description) ""
486    set params(-param) ""
487    array set params $settings
488
489    if {$params(-color) == "auto" || $params(-color) == "autoreset"} {
490        # can't handle -autocolors yet
491        set params(-color) black
492    }
493    set pos [lsearch -exact $_dlist $dataobj]
494    if {$pos < 0} {
495        lappend _dlist $dataobj
496    }
497    set _obj2ovride($dataobj-color) $params(-color)
498    set _obj2ovride($dataobj-width) $params(-width)
499    set _obj2ovride($dataobj-raise) $params(-raise)
500    $_dispatcher event -idle !rebuild
501}
502
503# ----------------------------------------------------------------------
504# USAGE: delete ?<dataobj1> <dataobj2> ...?
505#
506#       Clients use this to delete a dataobj from the plot.  If no dataobjs
507#       are specified, then all dataobjs are deleted.  No data objects are
508#       deleted.  They are only removed from the display list.
509#
510# ----------------------------------------------------------------------
511itcl::body Rappture::VtkSurfaceViewer::delete {args} {
512    if { [llength $args] == 0} {
513        set args $_dlist
514    }
515    # Delete all specified dataobjs
516    set changed 0
517    foreach dataobj $args {
518        set pos [lsearch -exact $_dlist $dataobj]
519        if { $pos < 0 } {
520            continue;                   # Don't know anything about it.
521        }
522        # Remove it from the dataobj list.
523        set _dlist [lreplace $_dlist $pos $pos]
524        array unset _obj2ovride $dataobj-*
525        array unset _settings $dataobj-*
526        set changed 1
527    }
528    # If anything changed, then rebuild the plot
529    if { $changed } {
530        $_dispatcher event -idle !rebuild
531    }
532}
533
534# ----------------------------------------------------------------------
535# USAGE: get ?-objects?
536# USAGE: get ?-visible?
537# USAGE: get ?-image view?
538#
539# Clients use this to query the list of objects being plotted, in
540# order from bottom to top of this result.  The optional "-image"
541# flag can also request the internal images being shown.
542# ----------------------------------------------------------------------
543itcl::body Rappture::VtkSurfaceViewer::get {args} {
544    if {[llength $args] == 0} {
545        set args "-objects"
546    }
547
548    set op [lindex $args 0]
549    switch -- $op {
550        "-objects" {
551            # put the dataobj list in order according to -raise options
552            set dlist {}
553            foreach dataobj $_dlist {
554                if { ![IsValidObject $dataobj] } {
555                    continue
556                }
557                if {[info exists _obj2ovride($dataobj-raise)] &&
558                    $_obj2ovride($dataobj-raise)} {
559                    set dlist [linsert $dlist 0 $dataobj]
560                } else {
561                    lappend dlist $dataobj
562                }
563            }
564            return $dlist
565        }
566        "-visible" {
567            set dlist {}
568            foreach dataobj $_dlist {
569                if { ![IsValidObject $dataobj] } {
570                    continue
571                }
572                if { ![info exists _obj2ovride($dataobj-raise)] } {
573                    # No setting indicates that the object isn't visible.
574                    continue
575                }
576                # Otherwise use the -raise parameter to put the object to
577                # the front of the list.
578                if { $_obj2ovride($dataobj-raise) } {
579                    set dlist [linsert $dlist 0 $dataobj]
580                } else {
581                    lappend dlist $dataobj
582                }
583            }
584            return $dlist
585        }
586        -image {
587            if {[llength $args] != 2} {
588                error "wrong # args: should be \"get -image view\""
589            }
590            switch -- [lindex $args end] {
591                view {
592                    return $_image(plot)
593                }
594                default {
595                    error "bad image name \"[lindex $args end]\": should be view"
596                }
597            }
598        }
599        default {
600            error "bad option \"$op\": should be -objects or -image"
601        }
602    }
603}
604
605# ----------------------------------------------------------------------
606# USAGE: scale ?<data1> <data2> ...?
607#
608# Sets the default limits for the overall plot according to the
609# limits of the data for all of the given <data> objects.  This
610# accounts for all objects--even those not showing on the screen.
611# Because of this, the limits are appropriate for all objects as
612# the user scans through data in the ResultSet viewer.
613# ----------------------------------------------------------------------
614itcl::body Rappture::VtkSurfaceViewer::scale { args } {
615    foreach dataobj $args {
616        if { ![$dataobj isvalid] } {
617            continue;                   # Object doesn't contain valid data.
618        }
619        foreach axis { x y z } {
620            set lim [$dataobj limits $axis]
621            if { ![info exists _limits($axis)] } {
622                set _limits($axis) $lim
623                continue
624            }
625            foreach {min max} $lim break
626            foreach {amin amax} $_limits($axis) break
627            if { $amin > $min } {
628                set amin $min
629            }
630            if { $amax < $max } {
631                set amax $max
632            }
633            set _limits($axis) [list $amin $amax]
634        }
635        foreach { fname lim } [$dataobj fieldlimits] {
636            if { ![info exists _limits($fname)] } {
637                set _limits($fname) $lim
638                continue
639            }
640            foreach {min max} $lim break
641            foreach {fmin fmax} $_limits($fname) break
642            if { $fmin > $min } {
643                set fmin $min
644            }
645            if { $fmax < $max } {
646                set fmax $max
647            }
648            set _limits($fname) [list $fmin $fmax]
649        }
650    }
651}
652
653# ----------------------------------------------------------------------
654# USAGE: download coming
655# USAGE: download controls <downloadCommand>
656# USAGE: download now
657#
658# Clients use this method to create a downloadable representation
659# of the plot.  Returns a list of the form {ext string}, where
660# "ext" is the file extension (indicating the type of data) and
661# "string" is the data itself.
662# ----------------------------------------------------------------------
663itcl::body Rappture::VtkSurfaceViewer::download {option args} {
664    switch $option {
665        coming {
666            if {[catch {
667                blt::winop snap $itk_component(plotarea) $_image(download)
668            }]} {
669                $_image(download) configure -width 1 -height 1
670                $_image(download) put #000000
671            }
672        }
673        controls {
674            set popup .vtkviewerdownload
675            if { ![winfo exists .vtkviewerdownload] } {
676                set inner [BuildDownloadPopup $popup [lindex $args 0]]
677            } else {
678                set inner [$popup component inner]
679            }
680            set _downloadPopup(image_controls) $inner.image_frame
681            set num [llength [get]]
682            set num [expr {($num == 1) ? "1 result" : "$num results"}]
683            set word [Rappture::filexfer::label downloadWord]
684            $inner.summary configure -text "$word $num in the following format:"
685            update idletasks            ;# Fix initial sizes
686            return $popup
687        }
688        now {
689            set popup .vtkviewerdownload
690            if {[winfo exists .vtkviewerdownload]} {
691                $popup deactivate
692            }
693            switch -- $_downloadPopup(format) {
694                "image" {
695                    return [$this GetImage [lindex $args 0]]
696                }
697                "vtk" {
698                    return [$this GetVtkData [lindex $args 0]]
699                }
700            }
701            return ""
702        }
703        default {
704            error "bad option \"$option\": should be coming, controls, now"
705        }
706    }
707}
708
709# ----------------------------------------------------------------------
710# USAGE: Connect ?<host:port>,<host:port>...?
711#
712# Clients use this method to establish a connection to a new
713# server, or to reestablish a connection to the previous server.
714# Any existing connection is automatically closed.
715# ----------------------------------------------------------------------
716itcl::body Rappture::VtkSurfaceViewer::Connect {} {
717    set _hosts [GetServerList "vtkvis"]
718    if { "" == $_hosts } {
719        return 0
720    }
721    set _reset 1
722    set result [VisViewer::Connect $_hosts]
723    if { $result } {
724        if { $_reportClientInfo }  {
725            # Tell the server the viewer, hub, user and session.
726            # Do this immediately on connect before buffering any commands
727            global env
728
729            set info {}
730            set user "???"
731            if { [info exists env(USER)] } {
732                set user $env(USER)
733            }
734            set session "???"
735            if { [info exists env(SESSION)] } {
736                set session $env(SESSION)
737            }
738            lappend info "version" "$Rappture::version"
739            lappend info "build" "$Rappture::build"
740            lappend info "svnurl" "$Rappture::svnurl"
741            lappend info "installdir" "$Rappture::installdir"
742            lappend info "hub" [exec hostname]
743            lappend info "client" "vtksurfaceviewer"
744            lappend info "user" $user
745            lappend info "session" $session
746            SendCmd "clientinfo [list $info]"
747        }
748
749        set w [winfo width $itk_component(view)]
750        set h [winfo height $itk_component(view)]
751        EventuallyResize $w $h
752    }
753    return $result
754}
755
756#
757# isconnected --
758#
759#       Indicates if we are currently connected to the visualization server.
760#
761itcl::body Rappture::VtkSurfaceViewer::isconnected {} {
762    return [VisViewer::IsConnected]
763}
764
765#
766# disconnect --
767#
768itcl::body Rappture::VtkSurfaceViewer::disconnect {} {
769    Disconnect
770    set _reset 1
771}
772
773#
774# Disconnect --
775#
776#       Clients use this method to disconnect from the current rendering
777#       server.
778#
779itcl::body Rappture::VtkSurfaceViewer::Disconnect {} {
780    VisViewer::Disconnect
781
782    $_dispatcher cancel !rebuild
783    $_dispatcher cancel !resize
784    $_dispatcher cancel !rotate
785    $_dispatcher cancel !legend
786    # disconnected -- no more data sitting on server
787    array unset _datasets
788    array unset _colormaps
789}
790
791# ----------------------------------------------------------------------
792# USAGE: ReceiveImage -bytes <size> -type <type> -token <token>
793#
794# Invoked automatically whenever the "image" command comes in from
795# the rendering server.  Indicates that binary image data with the
796# specified <size> will follow.
797# ----------------------------------------------------------------------
798itcl::body Rappture::VtkSurfaceViewer::ReceiveImage { args } {
799    array set info {
800        -token "???"
801        -bytes 0
802        -type image
803    }
804    array set info $args
805    set bytes [ReceiveBytes $info(-bytes)]
806    if { $info(-type) == "image" } {
807        if 0 {
808            set f [open "last.ppm" "w"]
809            fconfigure $f -encoding binary
810            puts -nonewline $f $bytes
811            close $f
812        }
813        $_image(plot) configure -data $bytes
814        #set time [clock seconds]
815        #set date [clock format $time]
816        #set w [image width $_image(plot)]
817        #set h [image height $_image(plot)]
818        #puts stderr "$date: received image ${w}x${h} image"
819        if { $_start > 0 } {
820            set finish [clock clicks -milliseconds]
821            #puts stderr "round trip time [expr $finish -$_start] milliseconds"
822            set _start 0
823        }
824    } elseif { $info(type) == "print" } {
825        set tag $this-print-$info(-token)
826        set _hardcopy($tag) $bytes
827    }
828}
829
830#
831# ReceiveDataset --
832#
833itcl::body Rappture::VtkSurfaceViewer::ReceiveDataset { args } {
834    if { ![isconnected] } {
835        return
836    }
837    set option [lindex $args 0]
838    switch -- $option {
839        "scalar" {
840            set option [lindex $args 1]
841            switch -- $option {
842                "world" {
843                    foreach { x y z value tag } [lrange $args 2 end] break
844                }
845                "pixel" {
846                    foreach { x y value tag } [lrange $args 2 end] break
847                }
848            }
849        }
850        "vector" {
851            set option [lindex $args 1]
852            switch -- $option {
853                "world" {
854                    foreach { x y z vx vy vz tag } [lrange $args 2 end] break
855                }
856                "pixel" {
857                    foreach { x y vx vy vz tag } [lrange $args 2 end] break
858                }
859            }
860        }
861        "names" {
862            foreach { name } [lindex $args 1] {
863                #puts stderr "Dataset: $name"
864            }
865        }
866        default {
867            error "unknown dataset option \"$option\" from server"
868        }
869    }
870}
871
872# ----------------------------------------------------------------------
873# USAGE: Rebuild
874#
875# Called automatically whenever something changes that affects the
876# data in the widget.  Clears any existing data and rebuilds the
877# widget to display new data.
878# ----------------------------------------------------------------------
879itcl::body Rappture::VtkSurfaceViewer::Rebuild {} {
880    set w [winfo width $itk_component(view)]
881    set h [winfo height $itk_component(view)]
882    if { $w < 2 || $h < 2 } {
883        update
884        $_dispatcher event -idle !rebuild
885        return
886    }
887
888    # Turn on buffering of commands to the server.  We don't want to
889    # be preempted by a server disconnect/reconnect (which automatically
890    # generates a new call to Rebuild).
891    StartBufferingCommands
892
893    if { $_reset } {
894        set _width $w
895        set _height $h
896        $_arcball resize $w $h
897        DoResize
898        # Reset the camera and other view parameters
899        $_arcball quaternion [ViewToQuaternion]
900        if {$_view(-ortho)} {
901            SendCmd "camera mode ortho"
902        } else {
903            SendCmd "camera mode persp"
904        }
905        DoRotate
906        PanCamera
907        set _first ""
908        InitSettings -xgrid -ygrid -zgrid -axismode \
909            -axesvisible -axislabels -axisminorticks
910        #SendCmd "axis lformat all %g"
911        StopBufferingCommands
912        SendCmd "imgflush"
913        StartBufferingCommands
914    }
915    set _first ""
916    SendCmd "dataset visible 0"
917    eval scale $_dlist
918    foreach dataobj [get -objects] {
919        if { [info exists _obj2ovride($dataobj-raise)] &&  $_first == "" } {
920            set _first $dataobj
921            SetCurrentFieldName $dataobj
922        }
923        foreach comp [$dataobj components] {
924            set tag $dataobj-$comp
925            if { ![info exists _datasets($tag)] } {
926                set bytes [$dataobj vtkdata $comp]
927                if 0 {
928                    set f [open "/tmp/surface.vtk" "w"]
929                    fconfigure $f -translation binary -encoding binary
930                    puts -nonewline $f $bytes
931                    close $f
932                }
933                set length [string length $bytes]
934                if { $_reportClientInfo }  {
935                    set info {}
936                    lappend info "tool_id"       [$dataobj hints toolid]
937                    lappend info "tool_name"     [$dataobj hints toolname]
938                    lappend info "tool_title"    [$dataobj hints tooltitle]
939                    lappend info "tool_command"  [$dataobj hints toolcommand]
940                    lappend info "tool_revision" [$dataobj hints toolrevision]
941                    lappend info "dataset_label" [$dataobj hints label]
942                    lappend info "dataset_size"  $length
943                    lappend info "dataset_tag"   $tag
944                    SendCmd "clientinfo [list $info]"
945                }
946                SendCmd "dataset add $tag data follows $length"
947                SendData $bytes
948                set _datasets($tag) 1
949                SetObjectStyle $dataobj $comp
950            }
951            if { [info exists _obj2ovride($dataobj-raise)] } {
952                SendCmd "polydata visible 1 $tag"
953            }
954        }
955    }
956
957    InitSettings -isolinesvisible -surfacevisible -outline
958    if { $_reset } {
959        # These are settings that rely on a dataset being loaded.
960        InitSettings \
961            -surfacelighting \
962            -field \
963            -surfaceedges -surfacelighting -surfaceopacity \
964            -surfacewireframe \
965            -numcontours
966
967        Zoom reset
968        foreach axis { x y z } {
969            set label ""
970            if { $_first != "" } {
971                set label [$_first hints ${axis}label]
972            }
973            if { $label == "" } {
974                set label [string toupper $axis]
975            }
976            # May be a space in the axis label.
977            SendCmd [list axis name $axis $label]
978        }
979        if { [array size _fields] < 2 } {
980            catch {blt::table forget $itk_component(field) $itk_component(field_l)}
981        }
982        set _reset 0
983    }
984    # Redraw the legend even if we're using the same colormap. The position
985    # of the isolines may have changed because the range of data changed.
986    DrawLegend
987
988    # Actually write the commands to the server socket.  If it fails, we don't
989    # care.  We're finished here.
990    blt::busy hold $itk_component(hull)
991    StopBufferingCommands;              # Turn off buffering and send commands.
992    blt::busy release $itk_component(hull)
993}
994
995# ----------------------------------------------------------------------
996# USAGE: CurrentDatasets ?-all -visible? ?dataobjs?
997#
998# Returns a list of server IDs for the current datasets being displayed.  This
999# is normally a single ID, but it might be a list of IDs if the current data
1000# object has multiple components.
1001# ----------------------------------------------------------------------
1002itcl::body Rappture::VtkSurfaceViewer::CurrentDatasets {args} {
1003    set flag [lindex $args 0]
1004    switch -- $flag {
1005        "-all" {
1006            if { [llength $args] > 1 } {
1007                error "CurrentDatasets: can't specify dataobj after \"-all\""
1008            }
1009            set dlist [get -objects]
1010        }
1011        "-visible" {
1012            if { [llength $args] > 1 } {
1013                set dlist {}
1014                set args [lrange $args 1 end]
1015                foreach dataobj $args {
1016                    if { [info exists _obj2ovride($dataobj-raise)] } {
1017                        lappend dlist $dataobj
1018                    }
1019                }
1020            } else {
1021                set dlist [get -visible]
1022            }
1023        }
1024        default {
1025            set dlist $args
1026        }
1027    }
1028    set rlist ""
1029    foreach dataobj $dlist {
1030        foreach comp [$dataobj components] {
1031            set tag $dataobj-$comp
1032            if { [info exists _datasets($tag)] && $_datasets($tag) } {
1033                lappend rlist $tag
1034            }
1035        }
1036    }
1037    return $rlist
1038}
1039
1040# ----------------------------------------------------------------------
1041# USAGE: Zoom in
1042# USAGE: Zoom out
1043# USAGE: Zoom reset
1044#
1045# Called automatically when the user clicks on one of the zoom
1046# controls for this widget.  Changes the zoom for the current view.
1047# ----------------------------------------------------------------------
1048itcl::body Rappture::VtkSurfaceViewer::Zoom {option} {
1049    switch -- $option {
1050        "in" {
1051            set _view(-zoom) [expr {$_view(-zoom)*1.25}]
1052            SendCmd "camera zoom $_view(-zoom)"
1053        }
1054        "out" {
1055            set _view(-zoom) [expr {$_view(-zoom)*0.8}]
1056            SendCmd "camera zoom $_view(-zoom)"
1057        }
1058        "reset" {
1059            array set _view {
1060                -qw      0.853553
1061                -qx      -0.353553
1062                -qy      0.353553
1063                -qz      0.146447
1064                -xpan    0
1065                -ypan    0
1066                -zoom    1.0
1067            }
1068            if { $_first != "" } {
1069                set location [$_first hints camera]
1070                if { $location != "" } {
1071                    array set _view $location
1072                }
1073            }
1074            $_arcball quaternion [ViewToQuaternion]
1075            DoRotate
1076            SendCmd "camera reset"
1077        }
1078    }
1079}
1080
1081itcl::body Rappture::VtkSurfaceViewer::PanCamera {} {
1082    set x $_view(-xpan)
1083    set y $_view(-ypan)
1084    SendCmd "camera pan $x $y"
1085}
1086
1087# ----------------------------------------------------------------------
1088# USAGE: Rotate click <x> <y>
1089# USAGE: Rotate drag <x> <y>
1090# USAGE: Rotate release <x> <y>
1091#
1092# Called automatically when the user clicks/drags/releases in the
1093# plot area.  Moves the plot according to the user's actions.
1094# ----------------------------------------------------------------------
1095itcl::body Rappture::VtkSurfaceViewer::Rotate {option x y} {
1096    switch -- $option {
1097        "click" {
1098            $itk_component(view) configure -cursor fleur
1099            set _click(x) $x
1100            set _click(y) $y
1101        }
1102        "drag" {
1103            if {[array size _click] == 0} {
1104                Rotate click $x $y
1105            } else {
1106                set w [winfo width $itk_component(view)]
1107                set h [winfo height $itk_component(view)]
1108                if {$w <= 0 || $h <= 0} {
1109                    return
1110                }
1111
1112                if {[catch {
1113                    # this fails sometimes for no apparent reason
1114                    set dx [expr {double($x-$_click(x))/$w}]
1115                    set dy [expr {double($y-$_click(y))/$h}]
1116                }]} {
1117                    return
1118                }
1119                if { $dx == 0 && $dy == 0 } {
1120                    return
1121                }
1122                set q [$_arcball rotate $x $y $_click(x) $_click(y)]
1123                EventuallyRotate $q
1124                set _click(x) $x
1125                set _click(y) $y
1126            }
1127        }
1128        "release" {
1129            Rotate drag $x $y
1130            $itk_component(view) configure -cursor ""
1131            catch {unset _click}
1132        }
1133        default {
1134            error "bad option \"$option\": should be click, drag, release"
1135        }
1136    }
1137}
1138
1139itcl::body Rappture::VtkSurfaceViewer::Pick {x y} {
1140    foreach tag [CurrentDatasets -visible] {
1141        SendCmd "dataset getscalar pixel $x $y $tag"
1142    }
1143}
1144
1145# ----------------------------------------------------------------------
1146# USAGE: $this Pan click x y
1147#        $this Pan drag x y
1148#        $this Pan release x y
1149#
1150# Called automatically when the user clicks on one of the zoom
1151# controls for this widget.  Changes the zoom for the current view.
1152# ----------------------------------------------------------------------
1153itcl::body Rappture::VtkSurfaceViewer::Pan {option x y} {
1154    switch -- $option {
1155        "set" {
1156            set w [winfo width $itk_component(view)]
1157            set h [winfo height $itk_component(view)]
1158            set x [expr $x / double($w)]
1159            set y [expr $y / double($h)]
1160            set _view(-xpan) [expr $_view(-xpan) + $x]
1161            set _view(-ypan) [expr $_view(-ypan) + $y]
1162            PanCamera
1163            return
1164        }
1165        "click" {
1166            set _click(x) $x
1167            set _click(y) $y
1168            $itk_component(view) configure -cursor hand1
1169        }
1170        "drag" {
1171            if { ![info exists _click(x)] } {
1172                set _click(x) $x
1173            }
1174            if { ![info exists _click(y)] } {
1175                set _click(y) $y
1176            }
1177            set w [winfo width $itk_component(view)]
1178            set h [winfo height $itk_component(view)]
1179            set dx [expr ($_click(x) - $x)/double($w)]
1180            set dy [expr ($_click(y) - $y)/double($h)]
1181            set _click(x) $x
1182            set _click(y) $y
1183            set _view(-xpan) [expr $_view(-xpan) - $dx]
1184            set _view(-ypan) [expr $_view(-ypan) - $dy]
1185            PanCamera
1186        }
1187        "release" {
1188            Pan drag $x $y
1189            $itk_component(view) configure -cursor ""
1190        }
1191        default {
1192            error "unknown option \"$option\": should set, click, drag, or release"
1193        }
1194    }
1195}
1196
1197# ----------------------------------------------------------------------
1198# USAGE: InitSettings <what> ?<value>?
1199#
1200# Used internally to update rendering settings whenever parameters
1201# change in the popup settings panel.  Sends the new settings off
1202# to the back end.
1203# ----------------------------------------------------------------------
1204itcl::body Rappture::VtkSurfaceViewer::InitSettings { args } {
1205    foreach spec $args {
1206        if { [info exists _settings($_first-$spec)] } {
1207            # Reset global setting with dataobj specific setting
1208            set _settings($spec) $_settings($_first-$spec)
1209        }
1210        AdjustSetting $spec
1211    }
1212}
1213
1214#
1215# AdjustSetting --
1216#
1217#       Changes/updates a specific setting in the widget.  There are
1218#       usually user-setable option.  Commands are sent to the render
1219#       server.
1220#
1221itcl::body Rappture::VtkSurfaceViewer::AdjustSetting {what {value ""}} {
1222    if { ![isconnected] } {
1223        return
1224    }
1225    switch -- $what {
1226        "-axesvisible" {
1227            set bool $_settings($what)
1228            SendCmd "axis visible all $bool"
1229        }
1230        "-axislabels" {
1231            set bool $_settings($what)
1232            SendCmd "axis labels all $bool"
1233        }
1234        "-axisminorticks" {
1235            set bool $_settings($what)
1236            SendCmd "axis minticks all $bool"
1237        }
1238        "-axismode" {
1239            set mode [$itk_component(axisMode) value]
1240            set mode [$itk_component(axisMode) translate $mode]
1241            set _settings($what) $mode
1242            SendCmd "axis flymode $mode"
1243        }
1244        "-background" {
1245            set bgcolor [$itk_component(background) value]
1246            array set fgcolors {
1247                "black" "white"
1248                "white" "black"
1249                "grey"  "black"
1250            }
1251            configure -plotbackground $bgcolor \
1252                -plotforeground $fgcolors($bgcolor)
1253            $itk_component(view) delete "legend"
1254            DrawLegend
1255        }
1256        "-colormap" {
1257            set _changed($what) 1
1258            StartBufferingCommands
1259            set color [$itk_component(colormap) value]
1260            set _settings($what) $color
1261            if { $color == "none" } {
1262                if { $_settings(-colormapvisible) } {
1263                    SendCmd "contour2d colormode constant {}"
1264                    SendCmd "polydata colormode constant {}"
1265                    set _settings(-colormapvisible) 0
1266                }
1267            } else {
1268                if { !$_settings(-colormapvisible) } {
1269                    #SendCmd "contour2d colormode $_colorMode $_curFldName"
1270                    SendCmd "polydata colormode $_colorMode $_curFldName"
1271                    set _settings(-colormapvisible) 1
1272                }
1273                SetCurrentColormap $color
1274                if {$_settings(-colormapdiscrete)} {
1275                    set numColors [expr $_settings(-numcontours) + 1]
1276                    SendCmd "colormap res $numColors $color"
1277                }
1278            }
1279            StopBufferingCommands
1280            EventuallyRequestLegend
1281        }
1282        "-colormapdiscrete" {
1283            set bool $_settings($what)
1284            set numColors [expr $_settings(-numcontours) + 1]
1285            StartBufferingCommands
1286            if {$bool} {
1287                SendCmd "colormap res $numColors"
1288                # Discrete colormap requires preinterp on
1289                SendCmd "polydata preinterp on"
1290            } else {
1291                SendCmd "colormap res default"
1292                # FIXME: add setting for preinterp (default on)
1293                SendCmd "polydata preinterp on"
1294            }
1295            StopBufferingCommands
1296            EventuallyRequestLegend
1297        }
1298        "-field" {
1299            set label [$itk_component(field) value]
1300            set fname [$itk_component(field) translate $label]
1301            set _settings($what) $fname
1302            if { [info exists _fields($fname)] } {
1303                foreach { label units components } $_fields($fname) break
1304                if { $components > 1 } {
1305                    set _colorMode vmag
1306                } else {
1307                    set _colorMode scalar
1308                }
1309                set _curFldName $fname
1310                set _curFldLabel $label
1311            } else {
1312                puts stderr "unknown field \"$fname\""
1313                return
1314            }
1315            SendCmd "dataset scalar $_curFldName"
1316            if { ![info exists _limits($_curFldName)] } {
1317                SendCmd "dataset maprange all"
1318            } else {
1319                SendCmd "dataset maprange explicit $_limits($_curFldName) $_curFldName"
1320            }
1321            #SendCmd "contour2d colormode $_colorMode $_curFldName"
1322            SendCmd "polydata colormode $_colorMode $_curFldName"
1323            UpdateContourList
1324            SendCmd "contour2d contourlist [list $_contourList]"
1325            SendCmd "camera reset"
1326            DrawLegend
1327        }
1328        "-isolinecolor" {
1329            set _changed($what) 1
1330            set color [$itk_component(isolineColor) value]
1331            set _settings($what) $color
1332            SendCmd "contour2d linecolor [Color2RGB $color]"
1333            DrawLegend
1334        }
1335        "-isolinesvisible" {
1336            set _changed($what) 1
1337            set bool $_settings($what)
1338            SendCmd "contour2d visible 0"
1339            if { $bool } {
1340                foreach tag [CurrentDatasets -visible] {
1341                    SendCmd "contour2d visible $bool $tag"
1342                }
1343            }
1344            DrawLegend
1345        }
1346        "-legendvisible" {
1347            if { !$_settings($what) } {
1348                $itk_component(view) delete legend
1349            }
1350            DrawLegend
1351        }
1352        "-numcontours" {
1353            set _settings($what) [$itk_component(numcontours) value]
1354            set _currentNumContours $_settings($what)
1355            UpdateContourList
1356            set _changed($what) 1
1357            SendCmd "contour2d contourlist [list $_contourList]"
1358            if {$_settings(-colormapdiscrete)} {
1359                set numColors [expr $_settings($what) + 1]
1360                SendCmd "colormap res $numColors"
1361                EventuallyRequestLegend
1362            } else {
1363                DrawLegend
1364            }
1365        }
1366        "-outline" {
1367            set _changed($what) 1
1368            set bool $_settings($what)
1369            SendCmd "outline visible 0"
1370            if { $bool } {
1371                foreach tag [CurrentDatasets -visible] {
1372                    SendCmd "outline visible $bool $tag"
1373                }
1374            }
1375        }
1376        "-surfaceedges" {
1377            set _changed($what) 1
1378            set bool $_settings($what)
1379            SendCmd "polydata edges $bool"
1380        }
1381        "-surfacelighting" {
1382            set _changed($what) 1
1383            set bool $_settings($what)
1384            SendCmd "polydata lighting $bool"
1385        }
1386        "-surfaceopacity" {
1387            set _changed($what) 1
1388            set val $_settings($what)
1389            set sval [expr { 0.01 * double($val) }]
1390            SendCmd "polydata opacity $sval"
1391        }
1392        "-surfacevisible" {
1393            set _changed($what) 1
1394            set bool $_settings($what)
1395            SendCmd "polydata visible 0"
1396            if { $bool } {
1397                foreach tag [CurrentDatasets -visible] {
1398                    SendCmd "polydata visible $bool $tag"
1399                }
1400                Rappture::Tooltip::for $itk_component(surface) \
1401                    "Hide the surface"
1402            } else {
1403                Rappture::Tooltip::for $itk_component(surface) \
1404                    "Show the surface"
1405            }
1406            DrawLegend
1407        }
1408        "-surfacewireframe" {
1409            set _changed($what) 1
1410            set bool $_settings($what)
1411            SendCmd "polydata wireframe $bool"
1412        }
1413        "-xgrid" - "-ygrid" - "-zgrid" {
1414            set axis [string tolower [string range $what 1 1]]
1415            set bool $_settings($what)
1416            SendCmd "axis grid $axis $bool"
1417        }
1418        default {
1419            error "don't know how to fix $what"
1420        }
1421    }
1422}
1423
1424#
1425# RequestLegend --
1426#
1427#       Request a new legend from the server.  The size of the legend
1428#       is determined from the height of the canvas.
1429#
1430# This should be called when
1431#        1.  A new current colormap is set.
1432#        2.  Window is resized.
1433#        3.  The limits of the data have changed.  (Just need a redraw).
1434#        4.  Number of isolines have changed. (Just need a redraw).
1435#        5.  Legend becomes visible (Just need a redraw).
1436#
1437itcl::body Rappture::VtkSurfaceViewer::RequestLegend {} {
1438    set _legendPending 0
1439    if { ![info exists _fields($_curFldName)] } {
1440        return
1441    }
1442    set fname $_curFldName
1443    set font "Arial 8"
1444    set lineht [font metrics $font -linespace]
1445    set w 12
1446    set h [expr {$_height - 2 * ($lineht + 2)}]
1447    if { $h < 1 } {
1448        return
1449    }
1450    if { [string match "component*" $fname] } {
1451        set title ""
1452    } else {
1453        if { [info exists _fields($fname)] } {
1454            foreach { title units } $_fields($fname) break
1455            if { $units != "" } {
1456                set title [format "%s (%s)" $title $units]
1457            }
1458        } else {
1459            set title $fname
1460        }
1461    }
1462    # If there's a title too, subtract one more line
1463    if { $title != "" } {
1464        incr h -$lineht
1465    }
1466    # Set the legend on the first heightmap dataset.
1467    if { $_currentColormap != "" } {
1468        set cmap $_currentColormap
1469        if { ![info exists _colormaps($cmap)] } {
1470            BuildColormap $cmap
1471            set _colormaps($cmap) 1
1472        }
1473        #SendCmd "legend $cmap scalar $_curFldName {} $w $h 0"
1474        SendCmd "legend2 $cmap $w $h"
1475    }
1476}
1477
1478# ----------------------------------------------------------------------
1479# CONFIGURATION OPTION: -plotbackground
1480# ----------------------------------------------------------------------
1481itcl::configbody Rappture::VtkSurfaceViewer::plotbackground {
1482    if { [isconnected] } {
1483        set rgb [Color2RGB $itk_option(-plotbackground)]
1484        SendCmd "screen bgcolor $rgb"
1485    }
1486}
1487
1488# ----------------------------------------------------------------------
1489# CONFIGURATION OPTION: -plotforeground
1490# ----------------------------------------------------------------------
1491itcl::configbody Rappture::VtkSurfaceViewer::plotforeground {
1492    if { [isconnected] } {
1493        set rgb [Color2RGB $itk_option(-plotforeground)]
1494        SendCmd "axis color all $rgb"
1495        SendCmd "outline color $rgb"
1496    }
1497}
1498
1499itcl::body Rappture::VtkSurfaceViewer::BuildSurfaceTab {} {
1500
1501    set fg [option get $itk_component(hull) font Font]
1502    #set bfg [option get $itk_component(hull) boldFont Font]
1503
1504    set inner [$itk_component(main) insert end \
1505        -title "Surface Settings" \
1506        -icon [Rappture::icon volume-on]]
1507    $inner configure -borderwidth 4
1508
1509    checkbutton $inner.surface \
1510        -text "Surface" \
1511        -variable [itcl::scope _settings(-surfacevisible)] \
1512        -command [itcl::code $this AdjustSetting -surfacevisible] \
1513        -font "Arial 9"
1514
1515    checkbutton $inner.isolines \
1516        -text "Isolines" \
1517        -variable [itcl::scope _settings(-isolinesvisible)] \
1518        -command [itcl::code $this AdjustSetting -isolinesvisible] \
1519        -font "Arial 9"
1520
1521    checkbutton $inner.colormapDiscrete \
1522        -text "Discrete Colormap" \
1523        -variable [itcl::scope _settings(-colormapdiscrete)] \
1524        -command [itcl::code $this AdjustSetting -colormapdiscrete] \
1525        -font "Arial 9"
1526
1527    checkbutton $inner.wireframe \
1528        -text "Wireframe" \
1529        -variable [itcl::scope _settings(-surfacewireframe)] \
1530        -command [itcl::code $this AdjustSetting -surfacewireframe] \
1531        -font "Arial 9"
1532
1533    checkbutton $inner.lighting \
1534        -text "Enable Lighting" \
1535        -variable [itcl::scope _settings(-surfacelighting)] \
1536        -command [itcl::code $this AdjustSetting -surfacelighting] \
1537        -font "Arial 9"
1538
1539    checkbutton $inner.edges \
1540        -text "Edges" \
1541        -variable [itcl::scope _settings(-surfaceedges)] \
1542        -command [itcl::code $this AdjustSetting -surfaceedges] \
1543        -font "Arial 9"
1544
1545    checkbutton $inner.outline \
1546        -text "Outline" \
1547        -variable [itcl::scope _settings(-outline)] \
1548        -command [itcl::code $this AdjustSetting -outline] \
1549        -font "Arial 9"
1550
1551    checkbutton $inner.legend \
1552        -text "Legend" \
1553        -variable [itcl::scope _settings(-legendvisible)] \
1554        -command [itcl::code $this AdjustSetting -legendvisible] \
1555        -font "Arial 9"
1556
1557    label $inner.linecolor_l -text "Isolines" -font "Arial 9"
1558    itk_component add isolineColor {
1559        Rappture::Combobox $inner.linecolor -width 10 -editable 0
1560    }
1561    $inner.linecolor choices insert end \
1562        "black"              "black"            \
1563        "blue"               "blue"             \
1564        "cyan"               "cyan"             \
1565        "green"              "green"            \
1566        "grey"               "grey"             \
1567        "magenta"            "magenta"          \
1568        "orange"             "orange"           \
1569        "red"                "red"              \
1570        "white"              "white"            \
1571        "none"               "none"
1572
1573    $itk_component(isolineColor) value "white"
1574    bind $inner.linecolor <<Value>> \
1575        [itcl::code $this AdjustSetting -isolinecolor]
1576
1577    label $inner.background_l -text "Background" -font "Arial 9"
1578    itk_component add background {
1579        Rappture::Combobox $inner.background -width 10 -editable 0
1580    }
1581    $inner.background choices insert end \
1582        "black"              "black"            \
1583        "white"              "white"            \
1584        "grey"               "grey"
1585
1586    $itk_component(background) value $_settings(-background)
1587    bind $inner.background <<Value>> \
1588        [itcl::code $this AdjustSetting -background]
1589
1590    label $inner.opacity_l -text "Opacity" -font "Arial 9"
1591    ::scale $inner.opacity -from 0 -to 100 -orient horizontal \
1592        -variable [itcl::scope _settings(-surfaceopacity)] \
1593        -width 10 \
1594        -showvalue off \
1595        -command [itcl::code $this AdjustSetting -surfaceopacity]
1596
1597    itk_component add field_l {
1598        label $inner.field_l -text "Field" -font "Arial 9"
1599    } {
1600        ignore -font
1601    }
1602    itk_component add field {
1603        Rappture::Combobox $inner.field -width 10 -editable 0
1604    }
1605    bind $inner.field <<Value>> \
1606        [itcl::code $this AdjustSetting -field]
1607
1608    label $inner.colormap_l -text "Colormap" -font "Arial 9"
1609    itk_component add colormap {
1610        Rappture::Combobox $inner.colormap -width 10 -editable 0
1611    }
1612    $inner.colormap choices insert end [GetColormapList]
1613
1614    $itk_component(colormap) value "BCGYR"
1615    bind $inner.colormap <<Value>> \
1616        [itcl::code $this AdjustSetting -colormap]
1617
1618    label $inner.numcontours_l -text "Number of Isolines" -font "Arial 9"
1619    itk_component add numcontours {
1620        Rappture::Spinint $inner.numcontours \
1621            -min 0 -max 50 -font "arial 9"
1622    }
1623    $itk_component(numcontours) value $_settings(-numcontours)
1624    bind $itk_component(numcontours) <<Value>> \
1625        [itcl::code $this AdjustSetting -numcontours]
1626
1627    blt::table $inner \
1628        0,0 $inner.field_l   -anchor w -pady 2  \
1629        0,1 $inner.field     -anchor w -pady 2  -fill x \
1630        1,0 $inner.colormap_l -anchor w -pady 2  \
1631        1,1 $inner.colormap   -anchor w -pady 2  -fill x \
1632        2,0 $inner.linecolor_l  -anchor w -pady 2  \
1633        2,1 $inner.linecolor    -anchor w -pady 2 -fill x  \
1634        3,0 $inner.background_l -anchor w -pady 2 \
1635        3,1 $inner.background -anchor w -pady 2  -fill x \
1636        4,0 $inner.numcontours_l -anchor w -pady 2 \
1637        4,1 $inner.numcontours -anchor w -pady 2 \
1638        5,0 $inner.colormapDiscrete -anchor w -pady 2 -cspan 2 \
1639        6,0 $inner.isolines  -anchor w -pady 2 -cspan 2 \
1640        7,0 $inner.wireframe -anchor w -pady 2 -cspan 2 \
1641        8,0 $inner.lighting  -anchor w -pady 2 -cspan 2 \
1642        9,0 $inner.edges     -anchor w -pady 2 -cspan 2 \
1643        10,0 $inner.outline   -anchor w -pady 2 -cspan 2 \
1644        11,0 $inner.legend    -anchor w -pady 2 \
1645        12,0 $inner.opacity_l -anchor w -pady 2 \
1646        12,1 $inner.opacity   -fill x   -pady 2 -fill x \
1647
1648    blt::table configure $inner r* c* -resize none
1649    blt::table configure $inner r13 c1 -resize expand
1650}
1651
1652itcl::body Rappture::VtkSurfaceViewer::BuildAxisTab {} {
1653
1654    set fg [option get $itk_component(hull) font Font]
1655    #set bfg [option get $itk_component(hull) boldFont Font]
1656
1657    set inner [$itk_component(main) insert end \
1658        -title "Axis Settings" \
1659        -icon [Rappture::icon axis2]]
1660    $inner configure -borderwidth 4
1661
1662    checkbutton $inner.visible \
1663        -text "Axes" \
1664        -variable [itcl::scope _settings(-axesvisible)] \
1665        -command [itcl::code $this AdjustSetting -axesvisible] \
1666        -font "Arial 9"
1667
1668    checkbutton $inner.labels \
1669        -text "Axis Labels" \
1670        -variable [itcl::scope _settings(-axislabels)] \
1671        -command [itcl::code $this AdjustSetting -axislabels] \
1672        -font "Arial 9"
1673    label $inner.grid_l -text "Grid" -font "Arial 9"
1674    checkbutton $inner.xgrid \
1675        -text "X" \
1676        -variable [itcl::scope _settings(-xgrid)] \
1677        -command [itcl::code $this AdjustSetting -xgrid] \
1678        -font "Arial 9"
1679    checkbutton $inner.ygrid \
1680        -text "Y" \
1681        -variable [itcl::scope _settings(-ygrid)] \
1682        -command [itcl::code $this AdjustSetting -ygrid] \
1683        -font "Arial 9"
1684    checkbutton $inner.zgrid \
1685        -text "Z" \
1686        -variable [itcl::scope _settings(-zgrid)] \
1687        -command [itcl::code $this AdjustSetting -zgrid] \
1688        -font "Arial 9"
1689    checkbutton $inner.minorticks \
1690        -text "Minor Ticks" \
1691        -variable [itcl::scope _settings(-axisminorticks)] \
1692        -command [itcl::code $this AdjustSetting -axisminorticks] \
1693        -font "Arial 9"
1694
1695    label $inner.mode_l -text "Mode" -font "Arial 9"
1696
1697    itk_component add axisMode {
1698        Rappture::Combobox $inner.mode -width 10 -editable 0
1699    }
1700    $inner.mode choices insert end \
1701        "static_triad"    "static" \
1702        "closest_triad"   "closest" \
1703        "furthest_triad"  "farthest" \
1704        "outer_edges"     "outer"
1705    $itk_component(axisMode) value $_settings(-axismode)
1706    bind $inner.mode <<Value>> [itcl::code $this AdjustSetting -axismode]
1707
1708    blt::table $inner \
1709        0,0 $inner.visible -anchor w -cspan 4 \
1710        1,0 $inner.labels  -anchor w -cspan 4 \
1711        2,0 $inner.minorticks  -anchor w -cspan 4 \
1712        4,0 $inner.grid_l  -anchor w \
1713        4,1 $inner.xgrid   -anchor w \
1714        4,2 $inner.ygrid   -anchor w \
1715        4,3 $inner.zgrid   -anchor w \
1716        5,0 $inner.mode_l  -anchor w -padx { 2 0 } \
1717        5,1 $inner.mode    -fill x   -cspan 3
1718
1719    blt::table configure $inner r* c* -resize none
1720    blt::table configure $inner r7 c6 -resize expand
1721    blt::table configure $inner r3 -height 0.125i
1722}
1723
1724itcl::body Rappture::VtkSurfaceViewer::BuildCameraTab {} {
1725    set inner [$itk_component(main) insert end \
1726        -title "Camera Settings" \
1727        -icon [Rappture::icon camera]]
1728    $inner configure -borderwidth 4
1729
1730    label $inner.view_l -text "view" -font "Arial 9"
1731    set f [frame $inner.view]
1732    foreach side { front back left right top bottom } {
1733        button $f.$side  -image [Rappture::icon view$side] \
1734            -command [itcl::code $this SetOrientation $side]
1735        Rappture::Tooltip::for $f.$side "Change the view to $side"
1736        pack $f.$side -side left
1737    }
1738
1739    blt::table $inner \
1740        0,0 $inner.view_l -anchor e -pady 2 \
1741        0,1 $inner.view -anchor w -pady 2
1742    blt::table configure $inner r0 -resize none
1743
1744    set labels { qx qy qz qw xpan ypan zoom }
1745    set row 1
1746    foreach tag $labels {
1747        label $inner.${tag}label -text $tag -font "Arial 9"
1748        entry $inner.${tag} -font "Arial 9"  -bg white \
1749            -textvariable [itcl::scope _view(-$tag)]
1750        bind $inner.${tag} <Return> \
1751            [itcl::code $this camera set -${tag}]
1752        bind $inner.${tag} <KP_Enter> \
1753            [itcl::code $this camera set -${tag}]
1754        blt::table $inner \
1755            $row,0 $inner.${tag}label -anchor e -pady 2 \
1756            $row,1 $inner.${tag} -anchor w -pady 2
1757        blt::table configure $inner r$row -resize none
1758        incr row
1759    }
1760    checkbutton $inner.ortho \
1761        -text "Orthographic Projection" \
1762        -variable [itcl::scope _view(-ortho)] \
1763        -command [itcl::code $this camera set -ortho] \
1764        -font "Arial 9"
1765    blt::table $inner \
1766            $row,0 $inner.ortho -cspan 2 -anchor w -pady 2
1767    blt::table configure $inner r$row -resize none
1768    incr row
1769
1770    blt::table configure $inner c* -resize none
1771    blt::table configure $inner c2 -resize expand
1772    blt::table configure $inner r$row -resize expand
1773}
1774
1775#
1776#  camera --
1777#
1778itcl::body Rappture::VtkSurfaceViewer::camera {option args} {
1779    switch -- $option {
1780        "show" {
1781            puts [array get _view]
1782        }
1783        "set" {
1784            set what [lindex $args 0]
1785            set x $_view($what)
1786            set code [catch { string is double $x } result]
1787            if { $code != 0 || !$result } {
1788                return
1789            }
1790            switch -- $what {
1791                "-ortho" {
1792                    if {$_view($what)} {
1793                        SendCmd "camera mode ortho"
1794                    } else {
1795                        SendCmd "camera mode persp"
1796                    }
1797                }
1798                "-xpan" - "-ypan" {
1799                    PanCamera
1800                }
1801                "-qx" - "-qy" - "-qz" - "-qw" {
1802                    set q [ViewToQuaternion]
1803                    $_arcball quaternion $q
1804                    EventuallyRotate $q
1805                }
1806                "-zoom" {
1807                    SendCmd "camera zoom $_view($what)"
1808                }
1809             }
1810        }
1811    }
1812}
1813
1814itcl::body Rappture::VtkSurfaceViewer::GetVtkData { args } {
1815    set bytes ""
1816    foreach dataobj [get] {
1817        foreach cname [$dataobj components] {
1818            set tag $dataobj-$cname
1819            set contents [$dataobj vtkdata $cname]
1820            append bytes "$contents\n"
1821        }
1822    }
1823    return [list .vtk $bytes]
1824}
1825
1826itcl::body Rappture::VtkSurfaceViewer::GetImage { args } {
1827    if { [image width $_image(download)] > 0 &&
1828         [image height $_image(download)] > 0 } {
1829        set bytes [$_image(download) data -format "jpeg -quality 100"]
1830        set bytes [Rappture::encoding::decode -as b64 $bytes]
1831        return [list .jpg $bytes]
1832    }
1833    return ""
1834}
1835
1836itcl::body Rappture::VtkSurfaceViewer::BuildDownloadPopup { popup command } {
1837    Rappture::Balloon $popup \
1838        -title "[Rappture::filexfer::label downloadWord] as..."
1839    set inner [$popup component inner]
1840    label $inner.summary -text "" -anchor w
1841    radiobutton $inner.vtk_button -text "VTK data file" \
1842        -variable [itcl::scope _downloadPopup(format)] \
1843        -font "Arial 9 " \
1844        -value vtk
1845    Rappture::Tooltip::for $inner.vtk_button "Save as VTK data file."
1846    radiobutton $inner.image_button -text "Image File" \
1847        -variable [itcl::scope _downloadPopup(format)] \
1848        -font "Arial 9 " \
1849        -value image
1850    Rappture::Tooltip::for $inner.image_button \
1851        "Save as digital image."
1852
1853    button $inner.ok -text "Save" \
1854        -highlightthickness 0 -pady 2 -padx 3 \
1855        -command $command \
1856        -compound left \
1857        -image [Rappture::icon download]
1858
1859    button $inner.cancel -text "Cancel" \
1860        -highlightthickness 0 -pady 2 -padx 3 \
1861        -command [list $popup deactivate] \
1862        -compound left \
1863        -image [Rappture::icon cancel]
1864
1865    blt::table $inner \
1866        0,0 $inner.summary -cspan 2  \
1867        1,0 $inner.vtk_button -anchor w -cspan 2 -padx { 4 0 } \
1868        2,0 $inner.image_button -anchor w -cspan 2 -padx { 4 0 } \
1869        4,1 $inner.cancel -width .9i -fill y \
1870        4,0 $inner.ok -padx 2 -width .9i -fill y
1871    blt::table configure $inner r3 -height 4
1872    blt::table configure $inner r4 -pady 4
1873    raise $inner.image_button
1874    $inner.vtk_button invoke
1875    return $inner
1876}
1877
1878itcl::body Rappture::VtkSurfaceViewer::SetObjectStyle { dataobj comp } {
1879    # Parse style string.
1880    set tag $dataobj-$comp
1881    array set style {
1882        -color           BCGYR
1883        -edgecolor       black
1884        -edges           0
1885        -isolinecolor    white
1886        -isolinesvisible 0
1887        -levels          10
1888        -lighting        1
1889        -linewidth       1.0
1890        -opacity         1.0
1891        -outline         0
1892        -surfacevisible  1
1893        -wireframe       0
1894    }
1895    array set style [$dataobj style $comp]
1896    if { $dataobj != $_first || $style(-levels) == 1 } {
1897        set style(-opacity) 1.0
1898    }
1899
1900    # This is too complicated.  We want to set the colormap, number of
1901    # isolines and opacity for the dataset.  They can be the default values,
1902    # the style hints loaded with the dataset, or set by user controls.  As
1903    # datasets get loaded, they first use the defaults that are overidden
1904    # by the style hints.  If the user changes the global controls, then that
1905    # overrides everything else.  I don't know what it means when global
1906    # controls are specified as style hints by each dataset.  It complicates
1907    # the code to handle aberrant cases.
1908
1909    if { $_changed(-surfaceedges) } {
1910        set style(-edges) $_settings(-surfaceedges)
1911    }
1912    if { $_changed(-surfacelighting) } {
1913        set style(-lighting) $_settings(-surfacelighting)
1914    }
1915    if { $_changed(-surfaceopacity) } {
1916        set style(-opacity) [expr $_settings(-surfaceopacity) * 0.01]
1917    }
1918    if { $_changed(-surfacewireframe) } {
1919        set style(-wireframe) $_settings(-surfacewireframe)
1920    }
1921    if { $_changed(-numcontours) } {
1922        set style(-levels) $_settings(-numcontours)
1923    }
1924    if { $_changed(-colormap) } {
1925        set style(-color) $_settings(-colormap)
1926    }
1927    if { $_currentColormap == "" } {
1928        SetCurrentColormap $style(-color)
1929        $itk_component(colormap) value $style(-color)
1930    }
1931    if { $_currentNumContours != $style(-levels) } {
1932        set _currentNumContours $style(-levels)
1933        set _settings(-numcontours) $_currentNumContours
1934        $itk_component(numcontours) value $_currentNumContours
1935        UpdateContourList
1936        DrawLegend
1937    }
1938    foreach setting {-outline -isolinesvisible -surfacevisible -isolinecolor} {
1939        if {$_changed($setting)} {
1940            # User-modified UI setting overrides style
1941            set style($setting) $_settings($setting)
1942        } else {
1943            # Set UI control to style setting (tool provided or default)
1944            set _settings($setting) $style($setting)
1945        }
1946    }
1947
1948    SendCmd "outline add $tag"
1949    SendCmd "outline color [Color2RGB $itk_option(-plotforeground)] $tag"
1950    SendCmd "outline visible $style(-outline) $tag"
1951
1952    SendCmd "polydata add $tag"
1953    if { $_curFldName != "" } {
1954        SendCmd "polydata colormode $_colorMode $_curFldName $tag"
1955    }
1956    SendCmd "polydata edges $style(-edges) $tag"
1957    set _settings(-surfaceedges) $style(-edges)
1958    #SendCmd "polydata color [Color2RGB $settings(-color)] $tag"
1959    SendCmd "polydata lighting $style(-lighting) $tag"
1960    set _settings(-surfacelighting) $style(-lighting)
1961    SendCmd "polydata linecolor [Color2RGB $style(-edgecolor)] $tag"
1962    SendCmd "polydata linewidth $style(-linewidth) $tag"
1963    SendCmd "polydata opacity $style(-opacity) $tag"
1964    set _settings(-surfaceopacity) [expr $style(-opacity) * 100.0]
1965    SetCurrentColormap $style(-color)
1966    SendCmd "polydata wireframe $style(-wireframe) $tag"
1967    set _settings(-surfacewireframe) $style(-wireframe)
1968
1969    SendCmd [list contour2d add contourlist $_contourList $tag]
1970    SendCmd "contour2d colormode constant {} $tag"
1971    SendCmd "contour2d color [Color2RGB $style(-isolinecolor)] $tag"
1972}
1973
1974itcl::body Rappture::VtkSurfaceViewer::IsValidObject { dataobj } {
1975    if {[catch {$dataobj isa Rappture::Field} valid] != 0 || !$valid} {
1976        return 0
1977    }
1978    return 1
1979}
1980
1981#
1982# EnterLegend --
1983#
1984itcl::body Rappture::VtkSurfaceViewer::EnterLegend { x y } {
1985    SetLegendTip $x $y
1986}
1987
1988#
1989# MotionLegend --
1990#
1991itcl::body Rappture::VtkSurfaceViewer::MotionLegend { x y } {
1992    Rappture::Tooltip::tooltip cancel
1993    set c $itk_component(view)
1994    set cw [winfo width $c]
1995    set ch [winfo height $c]
1996    if { $x >= 0 && $x < $cw && $y >= 0 && $y < $ch } {
1997        SetLegendTip $x $y
1998    }
1999}
2000
2001#
2002# LeaveLegend --
2003#
2004itcl::body Rappture::VtkSurfaceViewer::LeaveLegend { } {
2005    Rappture::Tooltip::tooltip cancel
2006    .rappturetooltip configure -icon ""
2007}
2008
2009#
2010# SetLegendTip --
2011#
2012itcl::body Rappture::VtkSurfaceViewer::SetLegendTip { x y } {
2013    set fname $_curFldName
2014    set c $itk_component(view)
2015    set w [winfo width $c]
2016    set h [winfo height $c]
2017
2018    set font "Arial 8"
2019    set lineht [font metrics $font -linespace]
2020
2021    set ih [image height $_image(legend)]
2022    set iy [expr $y - ($lineht + 2)]
2023
2024    if { [string match "component*" $fname] } {
2025        set title ""
2026    } else {
2027        if { [info exists _fields($fname)] } {
2028            foreach { title units } $_fields($fname) break
2029            if { $units != "" } {
2030                set title [format "%s (%s)" $title $units]
2031            }
2032        } else {
2033            set title $fname
2034        }
2035    }
2036    # If there's a legend title, increase the offset by the line height.
2037    if { $title != "" } {
2038        incr iy -$lineht
2039    }
2040    # Make a swatch of the selected color
2041    if { [catch { $_image(legend) get 10 $iy } pixel] != 0 } {
2042        return
2043    }
2044    if { ![info exists _image(swatch)] } {
2045        set _image(swatch) [image create photo -width 24 -height 24]
2046    }
2047    set color [eval format "\#%02x%02x%02x" $pixel]
2048    $_image(swatch) put black  -to 0 0 23 23
2049    $_image(swatch) put $color -to 1 1 22 22
2050    .rappturetooltip configure -icon $_image(swatch)
2051
2052    # Compute the value of the point
2053    if { [info exists _limits($_curFldName)] } {
2054        foreach { vmin vmax } $_limits($_curFldName) break
2055        set t [expr 1.0 - (double($iy) / double($ih-1))]
2056        set value [expr $t * ($vmax - $vmin) + $vmin]
2057    } else {
2058        set value 0.0
2059    }
2060    set tx [expr $x + 15]
2061    set ty [expr $y - 5]
2062    if { [info exists _isolines($y)] } {
2063        Rappture::Tooltip::text $c [format "$title %g (isoline)" $_isolines($y)]
2064    } else {
2065        Rappture::Tooltip::text $c [format "$title %g" $value]
2066    }
2067    Rappture::Tooltip::tooltip show $c +$tx,+$ty
2068}
2069
2070#
2071# ReceiveLegend --
2072#
2073#        Invoked automatically whenever the "legend" command comes in from
2074#        the rendering server.  Indicates that binary image data with the
2075#        specified <size> will follow.
2076#
2077itcl::body Rappture::VtkSurfaceViewer::ReceiveLegend { colormap title min max size } {
2078    #puts stderr "ReceiveLegend colormap=$colormap title=$title range=$min,$max size=$size"
2079    set _title $title
2080    regsub {\(mag\)} $title "" _title
2081    if { [IsConnected] } {
2082        set bytes [ReceiveBytes $size]
2083        if { ![info exists _image(legend)] } {
2084            set _image(legend) [image create photo]
2085        }
2086        $_image(legend) configure -data $bytes
2087        #puts stderr "read $size bytes for [image width $_image(legend)]x[image height $_image(legend)] legend>"
2088        if { [catch {DrawLegend} errs] != 0 } {
2089            global errorInfo
2090            puts stderr "errs=$errs errorInfo=$errorInfo"
2091        }
2092    }
2093}
2094
2095#
2096# DrawLegend --
2097#
2098#       Draws the legend in the own canvas on the right side of the plot area.
2099#
2100itcl::body Rappture::VtkSurfaceViewer::DrawLegend {} {
2101    set fname $_curFldName
2102    set c $itk_component(view)
2103    set w [winfo width $c]
2104    set h [winfo height $c]
2105    set font "Arial 8"
2106    set lineht [font metrics $font -linespace]
2107
2108    if { [string match "component*" $fname] } {
2109        set title ""
2110    } else {
2111        if { [info exists _fields($fname)] } {
2112            foreach { title units } $_fields($fname) break
2113            if { $units != "" } {
2114                set title [format "%s (%s)" $title $units]
2115            }
2116        } else {
2117            set title $fname
2118        }
2119    }
2120    set x [expr $w - 2]
2121    if { !$_settings(-legendvisible) } {
2122        $c delete legend
2123        return
2124    }
2125    if { [$c find withtag "legend"] == "" } {
2126        set y 2
2127        # If there's a legend title, create a text item for the title.
2128        $c create text $x $y \
2129            -anchor ne \
2130            -fill $itk_option(-plotforeground) -tags "title legend" \
2131            -font $font
2132        if { $title != "" } {
2133            incr y $lineht
2134        }
2135        $c create text $x $y \
2136            -anchor ne \
2137            -fill $itk_option(-plotforeground) -tags "vmax legend" \
2138            -font $font
2139        incr y $lineht
2140        $c create image $x $y \
2141            -anchor ne \
2142            -image $_image(legend) -tags "colormap legend"
2143        $c create rectangle $x $y 1 1 \
2144            -fill "" -outline "" -tags "sensor legend"
2145        $c create text $x [expr {$h-2}] \
2146            -anchor se \
2147            -fill $itk_option(-plotforeground) -tags "vmin legend" \
2148            -font $font
2149        $c bind sensor <Enter> [itcl::code $this EnterLegend %x %y]
2150        $c bind sensor <Leave> [itcl::code $this LeaveLegend]
2151        $c bind sensor <Motion> [itcl::code $this MotionLegend %x %y]
2152    }
2153    $c delete isoline
2154    set x2 $x
2155    set iw [image width $_image(legend)]
2156    set ih [image height $_image(legend)]
2157    set x1 [expr $x2 - ($iw*12)/10]
2158    set color $_settings(-isolinecolor)
2159    # Draw the isolines on the legend.
2160    array unset _isolines
2161    if { $color != "none"  && [info exists _limits($_curFldName)] &&
2162         $_settings(-isolinesvisible) && $_settings(-numcontours) > 0 } {
2163
2164        foreach { vmin vmax } $_limits($_curFldName) break
2165        set range [expr double($vmax - $vmin)]
2166        if { $range <= 0.0 } {
2167            set range 1.0;              # Min is greater or equal to max.
2168        }
2169        set tags "isoline legend"
2170        set offset [expr 2 + $lineht]
2171        if { $title != "" } {
2172            incr offset $lineht
2173        }
2174        foreach value $_contourList {
2175            set norm [expr 1.0 - (($value - $vmin) / $range)]
2176            set y1 [expr int(round(($norm * $ih) + $offset))]
2177            for { set off 0 } { $off < 3 } { incr off } {
2178                set _isolines([expr $y1 + $off]) $value
2179                set _isolines([expr $y1 - $off]) $value
2180            }
2181            $c create line $x1 $y1 $x2 $y1 -fill $color -tags $tags
2182        }
2183    }
2184
2185    $c bind title <ButtonPress> [itcl::code $this Combo post]
2186    $c bind title <Enter> [itcl::code $this Combo activate]
2187    $c bind title <Leave> [itcl::code $this Combo deactivate]
2188    # Reset the item coordinates according the current size of the plot.
2189    $c itemconfigure title -text $title
2190    if { [info exists _limits($_curFldName)] } {
2191        foreach { vmin vmax } $_limits($_curFldName) break
2192        $c itemconfigure vmin -text [format %g $vmin]
2193        $c itemconfigure vmax -text [format %g $vmax]
2194    }
2195    set y 2
2196    # If there's a legend title, move the title to the correct position
2197    if { $title != "" } {
2198        $c itemconfigure title -text $title
2199        $c coords title $x $y
2200        incr y $lineht
2201        $c raise title
2202    }
2203    $c coords vmax $x $y
2204    incr y $lineht
2205    $c coords colormap $x $y
2206    $c coords sensor [expr $x - $iw] $y $x [expr $y + $ih]
2207    $c raise sensor
2208    $c coords vmin $x [expr {$h - 2}]
2209}
2210
2211# ----------------------------------------------------------------------
2212# USAGE: _dropdown post
2213# USAGE: _dropdown unpost
2214# USAGE: _dropdown select
2215#
2216# Used internally to handle the dropdown list for this combobox.  The
2217# post/unpost options are invoked when the list is posted or unposted
2218# to manage the relief of the controlling button.  The select option
2219# is invoked whenever there is a selection from the list, to assign
2220# the value back to the gauge.
2221# ----------------------------------------------------------------------
2222itcl::body Rappture::VtkSurfaceViewer::Combo {option} {
2223    set c $itk_component(view)
2224    switch -- $option {
2225        post {
2226            foreach { x1 y1 x2 y2 } [$c bbox title] break
2227            set cw [winfo width $itk_component(view)]
2228            set mw [winfo reqwidth $itk_component(fieldmenu)]
2229            set x1 [expr $cw - $mw]
2230            set x [expr $x1 + [winfo rootx $itk_component(view)]]
2231            set y [expr $y2 + [winfo rooty $itk_component(view)]]
2232            tk_popup $itk_component(fieldmenu) $x $y
2233        }
2234        activate {
2235            $c itemconfigure title -fill red
2236        }
2237        deactivate {
2238            $c itemconfigure title -fill $itk_option(-plotforeground)
2239        }
2240        invoke {
2241            $itk_component(field) value $_curFldLabel
2242            AdjustSetting -field
2243        }
2244        default {
2245            error "bad option \"$option\": should be post, unpost, select"
2246        }
2247    }
2248}
2249
2250#
2251# SetCurrentColormap --
2252#
2253itcl::body Rappture::VtkSurfaceViewer::SetCurrentColormap { name } {
2254    # Keep track of the colormaps that we build.
2255    if { ![info exists _colormaps($name)] } {
2256        BuildColormap $name
2257        set _colormaps($name) 1
2258    }
2259    set _currentColormap $name
2260    SendCmd "contour2d colormap $_currentColormap"
2261    SendCmd "polydata colormap $_currentColormap"
2262}
2263
2264#
2265# BuildColormap --
2266#
2267#       Build the designated colormap on the server.
2268#
2269itcl::body Rappture::VtkSurfaceViewer::BuildColormap { name } {
2270    set cmap [ColorsToColormap $name]
2271    if { [llength $cmap] == 0 } {
2272        set cmap "0.0 0.0 0.0 0.0 1.0 1.0 1.0 1.0"
2273    }
2274    set amap "0.0 1.0 1.0 1.0"
2275    SendCmd "colormap add $name { $cmap } { $amap }"
2276}
2277
2278itcl::body Rappture::VtkSurfaceViewer::SetOrientation { side } {
2279    array set positions {
2280        front "1 0 0 0"
2281        back  "0 0 1 0"
2282        left  "0.707107 0 -0.707107 0"
2283        right "0.707107 0 0.707107 0"
2284        top   "0.707107 -0.707107 0 0"
2285        bottom "0.707107 0.707107 0 0"
2286    }
2287    foreach name { -qw -qx -qy -qz } value $positions($side) {
2288        set _view($name) $value
2289    }
2290    set q [ViewToQuaternion]
2291    $_arcball quaternion $q
2292    SendCmd "camera orient $q"
2293    SendCmd "camera reset"
2294    set _view(-xpan) 0
2295    set _view(-ypan) 0
2296    set _view(-zoom) 1.0
2297}
2298
2299itcl::body Rappture::VtkSurfaceViewer::UpdateContourList {} {
2300    if { ![info exists _limits($_curFldName)] } {
2301        return
2302    }
2303    if { $_currentNumContours < 1 } {
2304        set _contourList ""
2305        return
2306    }
2307    foreach { vmin vmax } $_limits($_curFldName) break
2308    set v [blt::vector create \#auto]
2309    $v seq $vmin $vmax [expr $_currentNumContours+2]
2310    $v delete end 0
2311    set _contourList [$v range 0 end]
2312    blt::vector destroy $v
2313}
2314
2315itcl::body Rappture::VtkSurfaceViewer::SetCurrentFieldName { dataobj } {
2316    set _first $dataobj
2317    $itk_component(field) choices delete 0 end
2318    $itk_component(fieldmenu) delete 0 end
2319    array unset _fields
2320    set _curFldName ""
2321    foreach cname [$_first components] {
2322        foreach fname [$_first fieldnames $cname] {
2323            if { [info exists _fields($fname)] } {
2324                continue
2325            }
2326            foreach { label units components } \
2327                [$_first fieldinfo $fname] break
2328            $itk_component(field) choices insert end "$fname" "$label"
2329            $itk_component(fieldmenu) add radiobutton -label "$label" \
2330                -value $label -variable [itcl::scope _curFldLabel] \
2331                -selectcolor red \
2332                -activebackground $itk_option(-plotbackground) \
2333                -activeforeground $itk_option(-plotforeground) \
2334                -font "Arial 8" \
2335                -command [itcl::code $this LegendTitleAction save]
2336            set _fields($fname) [list $label $units $components]
2337            if { $_curFldName == "" } {
2338                set _curFldName $fname
2339                set _curFldLabel $label
2340            }
2341        }
2342    }
2343    $itk_component(field) value $_curFldLabel
2344}
Note: See TracBrowser for help on using the repository browser.