chiark / gitweb /
where-vessels: More improvements to lack-of-ownership handling
[ypp-sc-tools.db-live.git] / yarrg / where-vessels
index 14d2e0e2fce54153807a5774639c3ed4ba808a84..78342db3076a63e490a13c0a050bc6e6e687c47c 100755 (executable)
@@ -101,10 +101,11 @@ proc nextarg {} {
     return $v
 }
 
     return $v
 }
 
-set notes_loc vessel-notes
+set notes_loc {}
 set scraper {./yppedia-ocean-scraper --chart}
 set info_cache _vessel-info-cache
 set info_source rsync.yarrg.chiark.net::yarrg/vessel-info
 set scraper {./yppedia-ocean-scraper --chart}
 set info_cache _vessel-info-cache
 set info_source rsync.yarrg.chiark.net::yarrg/vessel-info
+set filter_lockown_separate 0
 
 proc parseargs {} {
     global ai argv
 
 proc parseargs {} {
     global ai argv
@@ -121,6 +122,7 @@ proc parseargs {} {
            --local-html-dir { lappend scraper --local-html-dir=[nextarg] }
            --notes { glset notes_loc [nextarg] }
            --vessel-info-source { glset info_source [nextarg] }
            --local-html-dir { lappend scraper --local-html-dir=[nextarg] }
            --notes { glset notes_loc [nextarg] }
            --vessel-info-source { glset info_source [nextarg] }
+           --filter-separate-lock-owner { glset filter_lockown_separate 1 }
            --debug { incr debug }
            default { badusage "unknown option $arg" }
        }
            --debug { incr debug }
            default { badusage "unknown option $arg" }
        }
@@ -129,9 +131,15 @@ proc parseargs {} {
     if {[llength $argv]} { badusage "non-option args not allowed" }
 }
 
     if {[llength $argv]} { badusage "non-option args not allowed" }
 }
 
+proc have-notes {} {
+    global notes_loc
+    return [string length $notes_loc]
+}
+
 proc argdefaults {} {
     global ocean notes_loc pirate scraper
 proc argdefaults {} {
     global ocean notes_loc pirate scraper
-    if {![info exists ocean] || ![info exists pirate]} {
+    if {![info exists ocean] ||
+        (![info exists pirate] && [string length $notes_loc])} {
        set cmd {./yarrg --find-window-only --quiet}
        if {[info exists ocean]} { lappend cmd --ocean $ocean }
        if {[info exists pirate]} { lappend cmd --pirate $pirate }
        set cmd {./yarrg --find-window-only --quiet}
        if {[info exists ocean]} { lappend cmd --ocean $ocean }
        if {[info exists pirate]} { lappend cmd --pirate $pirate }
@@ -140,6 +148,14 @@ proc argdefaults {} {
            error "$ocean $pirate ?"
        }
     }
            error "$ocean $pirate ?"
        }
     }
+    if {![info exists pirate]} {
+       set pirate {}
+       glset filter_lockown_separate 1
+    }
+    if {![have-notes]} {
+       glset filter_lockown_separate 1
+    }
+
     lappend scraper $ocean
 }
 
     lappend scraper $ocean
 }
 
@@ -264,18 +280,18 @@ proc info-cache-update {} {
     }
 
     set f [open $info_cache/vessel-info]
     }
 
     set f [open $info_cache/vessel-info]
-    glset vessel_class_data [read $f]
+    glset vessel_size_data [read $f]
     close $f
 }
 
     close $f
 }
 
-proc vesselclasses-init {} {
+proc vesselinfo-init {} {
     global vc_game2code vc_code2abbrev vc_code2full vc_codes
 
     global vc_game2code vc_code2abbrev vc_code2full vc_codes
 
-    global vessel_class_data
-    manyset $vessel_class_data classinfos subclassinfos
+    global vessel_size_data
+    manyset $vessel_size_data sizeinfos subclassinfos
 
     set vc_codes {}
 
     set vc_codes {}
-    foreach {game code abbrev full} $classinfos {
+    foreach {game code abbrev full} $sizeinfos {
        if {![regexp {^[a-z][a-z]$} $code code]} { error "bad code" }
        if {![regexp {^[a-z][a-z]$} $abbrev abbrev]} { error "bad abbrev" }
        lappend vc_codes $code
        if {![regexp {^[a-z][a-z]$} $code code]} { error "bad code" }
        if {![regexp {^[a-z][a-z]$} $abbrev abbrev]} { error "bad abbrev" }
        lappend vc_codes $code
@@ -347,7 +363,7 @@ proc code2canvas {code canvas x yvar qty qtylen bind} {
     global vc_code2abbrev
     upvar 1 $yvar y
 
     global vc_code2abbrev
     upvar 1 $yvar y
 
-    manyset [split $code _] inport class subclass lockown xabbrev
+    manyset [split $code _] inport size subclass lockown xabbrev
 
     set stackx $x
     incr stackx 2
 
     set stackx $x
     incr stackx 2
@@ -366,11 +382,11 @@ proc code2canvas {code canvas x yvar qty qtylen bind} {
        incr stackx
     }
     
        incr stackx
     }
     
-    upvar #0 vc_code2abbrev($class) vcabb
+    upvar #0 vc_code2abbrev($size) vcabb
     if {![info exists vcabb]} {
     if {![info exists vcabb]} {
-       set vcabb vc-$class
+       set vcabb vc-$size
        image create bitmap icon/$vcabb -data \
        image create bitmap icon/$vcabb -data \
-           [exec pbmtext -builtin fixed $class | pnminvert | pnmcrop >t.pnm]
+           [exec pbmtext -builtin fixed $size | pnminvert | pnmcrop >t.pnm]
     }
     canvas-horiz-stack stackx -1 $imy $bind \
            image -anchor nw -image icon/$vcabb
     }
     canvas-horiz-stack stackx -1 $imy $bind \
            image -anchor nw -image icon/$vcabb
@@ -410,22 +426,29 @@ proc code2canvas {code canvas x yvar qty qtylen bind} {
 proc show-report-decode {code} {
     global vc_code2full
 
 proc show-report-decode {code} {
     global vc_code2full
 
-    manyset [split $code _] inport classcode subclass lockown xabbrev
+    smash-prepare
+
+    manyset [split $code _] inport sizecode subclass lockown xabbrev
     manyset [split $lockown ""] lock notown
     
     report-set inport [lindex {{At Sea} {In port}} $inport]
     manyset [split $lockown ""] lock notown
     
     report-set inport [lindex {{At Sea} {In port}} $inport]
-    report-set class $vc_code2full($classcode)
+
+    upvar #0 vc_code2full($sizecode) sizefull
+    upvar #0 smash_sizeinexact($sizecode) sizeinexact
+    set size_report $sizefull
+    if {[info exists sizeinexact]} { set size_report "($sizefull+)" }
+    report-set size $size_report
 
     global smash_subclass
     if {$smash_subclass >= 2} {
 
     global smash_subclass
     if {$smash_subclass >= 2} {
-       report-set subclass "(Any subclass)"
+       report-set subclass "(Any class)"
     } elseif {[
               upvar #0 vsc_code2report($subclass) subclass_report
               info exists subclass_report
              ]} {
        report-set subclass $subclass_report
     } else {
     } elseif {[
               upvar #0 vsc_code2report($subclass) subclass_report
               info exists subclass_report
              ]} {
        report-set subclass $subclass_report
     } else {
-       report-set subclass "Subclass \"$subclass\""
+       report-set subclass "Class \"$subclass\""
     }
 
     report-set lock [lindex {
     }
 
     report-set lock [lindex {
@@ -433,19 +456,31 @@ proc show-report-decode {code} {
        {(All lock states)} {(Not battle ready)}
     } $lock]
 
        {(All lock states)} {(Not battle ready)}
     } $lock]
 
-    switch -exact $notown {
-       0 { report-set own "Yours" }
-       1 { report-set own "Other pirate's" }
-       2 { report-set own "Owner unknown" }
-       3 { report-set own "(All ownerships)" }
-       4 - 5 { report-set own "(Yours/unknown)" }
-       default { report-set own "?? $notown" }
+    if {[have-notes]} {
+       switch -exact $notown {
+           0 { report-set own "Yours" }
+           1 { report-set own "Other pirate's" }
+           2 { report-set own "Owner unknown" }
+           3 { report-set own "(All ownerships)" }
+           4 - 5 { report-set own "(Yours/unknown)" }
+           default { report-set own "?? $notown" }
+       }
     }
 
     }
 
-    if {[string length $xabbrev]} {
-       report-set xabbrev "Notes flags: $xabbrev"
+    global smash_xabbrev_map
+    if {![have-notes]} {
+    } elseif {[llength $smash_xabbrev_map]} {
+       if {[string length $xabbrev]} {
+           report-set xabbrev "(Flags: $xabbrev)"
+       } else {
+           report-set xabbrev "(No flags)"
+       }
     } else {
     } else {
-       report-set xabbrev "No flags in notes"
+       if {[string length $xabbrev]} {
+           report-set xabbrev "Notes flags: $xabbrev"
+       } else {
+           report-set xabbrev "No flags in notes"
+       }
     }
 }
 
     }
 }
 
@@ -469,11 +504,14 @@ proc begin-control-grid {cw count rows inrow} {
     return $cw
 }
 
     return $cw
 }
 
-proc make-control-grid-entry {cw kind ix ekind args} {
+proc make-control-grid-elem {cw kind ix ekind args} {
     upvar #0 control_grid_properties($cw) props
     manyset $props rows inrow
 
     set ew $cw.$ix
     upvar #0 control_grid_properties($cw) props
     manyset $props rows inrow
 
     set ew $cw.$ix
+
+    debug "MAKE-CONTROL-GRID-ELEM $cw $kind $ix $ekind $rows $inrow $ew"
+
     eval [list $ekind $ew] $args
 
     switch -exact $kind {
     eval [list $ekind $ew] $args
 
     switch -exact $kind {
@@ -494,13 +532,49 @@ proc make-control-grid-entry {cw kind ix ekind args} {
     return $ew
 }
 
     return $ew
 }
 
-#---------- smashing ----------
+proc control-tickbox-flip {varsvn values} {
+    upvar #0 $varsvn vars
+    foreach val $values {
+       set vars($val) [expr {!$vars($val)}]
+    }
+    redraw-needed c.-tickbox-flip $varsvn $values
+}
 
 
-set smash_subclass 0
-set smash_owner 0
+proc populate-control-grid-tickboxes {cw rows inrow varsvn values flipvalues
+                                   label_kind valvn default_get label_get} {
+    debug "POPULATE-CONTROL-GRID-TICKBOXES $cw $rows $inrow $varsvn\
+             [list $values] $label_kind $valvn"
+
+    upvar #0 $varsvn vars
+    upvar 1 $valvn val
+    set count [llength $values]
+
+    begin-control-grid $cw $count $rows $inrow
+
+    for {set ix 0} {$ix < $count} {incr ix} {
+       set val [lindex $values $ix]
+       set vars($val) [uplevel 1 $default_get]
+       set ew [make-control-grid-elem $cw ix $ix checkbutton \
+                   -variable ${varsvn}($val) \
+                   -font fixed \
+                   -command [list redraw-needed c.-g.-tickbox $cw $val]]
+       $ew configure -$label_kind [uplevel 1 $label_get]
+       switch -exact $label_kind {
+           image { $ew configure -height 16 }
+       }
+    }
+    [make-control-grid-elem $cw final invert button] \
+       configure \
+       -text flip -command [list control-tickbox-flip $varsvn $flipvalues] \
+       -padx 0 -pady 0
+}
+
+#---------- smashing ----------
 
 proc smash-code {code} {
 
 proc smash-code {code} {
-    manyset [split $code _] inport class subclass lockown xabbrev
+    manyset [split $code _] inport size subclass lockown xabbrev
+
+    upvar #0 smash_sizemap($size) smsize
 
     global smash_subclass
     if {$smash_subclass > 1} {
 
     global smash_subclass
     if {$smash_subclass > 1} {
@@ -529,7 +603,32 @@ proc smash-code {code} {
        4 { set lockown 33 }
     }
 
        4 { set lockown 33 }
     }
 
-    return [join [list $inport $class $subclass $lockown $xabbrev] _]
+    global smash_xabbrev_map
+    set xabbrev [string map $smash_xabbrev_map $xabbrev]
+
+    return [join [list $inport $smsize $subclass $lockown $xabbrev] _]
+}
+
+proc smash-prepare {} {
+    global vc_codes smash_sizemap smash_size smash_sizeinexact
+    set mapto {}
+    catch { unset smash_sizeplus }
+    foreach size $vc_codes {
+       if {!$smash_size($size)} {
+           set mapto $size
+       } else {
+           set smash_sizeinexact($mapto) 1
+       }
+       set smash_sizemap($size) $mapto
+    }
+
+    global smash_xabbrev_a smash_xabbrev_b smash_xabbrev_map
+    set smash_xabbrev_map {}
+    foreach a [split $smash_xabbrev_a ""] b [split $smash_xabbrev_b ""] {
+       if {![string length $a]} continue
+       lappend smash_xabbrev_map $a $b
+    }
+    debug "SMASH-PREPAE xabbrev_map=[list $smash_xabbrev_map]"
 }
 
 proc make-smasher {sma label ekind} {
 }
 
 proc make-smasher {sma label ekind} {
@@ -540,13 +639,42 @@ proc make-radio-smasher {sma label variable descs rows inrow} {
     set w [make-smasher $sma $label frame]
     begin-control-grid $w [llength $descs] $rows $inrow
     for {set i 0} {$i < [llength $descs]} {incr i} {
     set w [make-smasher $sma $label frame]
     begin-control-grid $w [llength $descs] $rows $inrow
     for {set i 0} {$i < [llength $descs]} {incr i} {
-       make-control-grid-entry $w ix $i \
+       make-control-grid-elem $w ix $i \
            radiobutton \
            -variable $variable -value $i -command redraw-needed \
            -text [lindex $descs $i]
     }
 }
 
            radiobutton \
            -variable $variable -value $i -command redraw-needed \
            -text [lindex $descs $i]
     }
 }
 
+proc make-smashers {} {
+    global vc_codes vc_code2abbrev
+    set cw [make-smasher size "Size\n round\n down" frame]
+    populate-control-grid-tickboxes $cw 2 0 smash_size \
+       $vc_codes [lrange $vc_codes 1 end] \
+       image val { expr 0 } { expr {"icon/$vc_code2abbrev($val)"} }
+    $cw.0 configure -state disabled
+
+    glset smash_subclass 0
+    make-radio-smasher subclass Class smash_subclass \
+       {Show Normal/LE Hide} 1 0
+
+    glset smash_owner [expr {[have-notes] ? 0 : 3}]
+    make-radio-smasher owner Owner smash_owner \
+       {Show Yours? {For you} Lock Hide} 2 3
+
+    set cw [make-smasher xabbrev "Flags" frame]
+    foreach ix {1 3} ab {a b} width {14 12} {
+       set vn smash_xabbrev_$ab
+       global $vn
+       set $vn {}
+       entry $cw.$ix -textvariable $vn -width $width
+       trace add variable $vn write [list redraw-needed $vn]
+    }
+    set ix 0
+    foreach str {y/ / /d} { label $cw.$ix -text $str; incr ix 2 }
+    eval pack [lsort [winfo children $cw]] -side left
+}
+
 #---------- filtering ----------
 
 set filters {}
 #---------- filtering ----------
 
 set filters {}
@@ -563,6 +691,26 @@ proc filter-says-yes/size {codel} {
     return $yes
 }
 
     return $yes
 }
 
+proc filter-values/lock {} { return {0 1 2} }
+proc filter-icon/lock {lock} { return [code-lockown2icon ${lock}3] }
+proc filter-default/lock {lock} { return 1 }
+proc filter-says-yes/lock {codel} {
+    regexp {^.} [lindex $codel 3] lock
+    upvar #0 filter_lock($lock) yes
+    debug "FILTER-SAYS-YES/LOCK $codel $lock $yes"
+    return $yes
+}
+
+proc filter-values/own {} { return {0 1 2} }
+proc filter-icon/own {own} { return [code-lockown2icon 3${own}] }
+proc filter-default/own {own} { return 1 }
+proc filter-says-yes/own {codel} {
+    regexp {.$} [lindex $codel 3] own
+    upvar #0 filter_own($own) yes
+    debug "FILTER-SAYS-YES/OWN $codel $own $yes"
+    return $yes
+}
+
 proc filter-values/lockown {} {
     foreach lv {0 1 2} {
        foreach ov {0 1 2} {
 proc filter-values/lockown {} {
     foreach lv {0 1 2} {
        foreach ov {0 1 2} {
@@ -598,41 +746,22 @@ proc filter-says-yes/xabbre {codel} {
     return [regexp -- $filter_xabbre $xabbrev]
 }
 
     return [regexp -- $filter_xabbre $xabbrev]
 }
 
-proc filter-tickbox-flip {fil} {
-    upvar #0 filter_$fil vars
-    set values [filter-values/$fil]
-    foreach val $values {
-       set vars($val) [expr {!$vars($val)}]
-    }
-    redraw-needed
-}
-
 proc make-tickbox-filter {fil label rows inrow} {
 proc make-tickbox-filter {fil label rows inrow} {
-    upvar #0 filter_$fil vars
     set values [filter-values/$fil]
     set values [filter-values/$fil]
-    set count [llength $values]
-    set noicons [catch { info args filter-icon/$fil }]
+
+    if {![catch { info args filter-icon/$fil }]} {
+       set label_get { filter-icon/$fil $val }
+       set label_kind image
+    } else {
+       set label_get { filter-map/$fil $val }
+       set label_kind text
+    }
 
     set fw [make-filter $fil $label frame]
 
     set fw [make-filter $fil $label frame]
-    begin-control-grid $fw $count $rows $inrow
 
 
-    for {set ix 0} {$ix < $count} {incr ix} {
-       set val [lindex $values $ix]
-       set vars($val) [filter-default/$fil $val]
-       set ew [make-control-grid-entry $fw ix $ix checkbutton \
-                   -variable filter_${fil}($val) \
-                   -font fixed \
-                   -command [list redraw-needed tickbox-filter $fil $val]]
-       if {!$noicons} {
-           $fw.$ix configure -image [filter-icon/$fil $val] -height 16
-       } else {
-           $fw.$ix configure -text [filter-map/$fil $val]
-       }
-    }
-    [make-control-grid-entry $fw final invert button] \
-       configure \
-       -text flip -command [list filter-tickbox-flip $fil] \
-       -padx 0 -pady 0
+    populate-control-grid-tickboxes $fw $rows $inrow filter_$fil \
+       $values $values \
+       $label_kind val { filter-default/$fil $val } $label_get
 }
 
 proc entry-filter-changed {fw fil n1 n2 op} {
 }
 
 proc entry-filter-changed {fw fil n1 n2 op} {
@@ -675,8 +804,16 @@ proc make-filter {fil label ekind} {
 }
 
 proc make-filters {} {
 }
 
 proc make-filters {} {
+    global filter_lockown_separate
     make-tickbox-filter size Size 2 0
     make-tickbox-filter size Size 2 0
-    make-tickbox-filter lockown "Lock/\nowner" 2 6
+    if {!$filter_lockown_separate} {
+       make-tickbox-filter lockown "Lock/\nowner" 2 6
+    } else {
+       make-tickbox-filter lock "Lock" 1 0
+       if {[have-notes]} {
+           make-tickbox-filter own "Owner" 1 0
+       }
+    }
     make-entry-filter xabbre "Flags\n regexp" {}
 }
 
     make-entry-filter xabbre "Flags\n regexp" {}
 }
 
@@ -717,21 +854,21 @@ proc vessel {vin} {
     set codel {}
     lappend codel [errexpect-arrayget-boolean vi inPort]
 
     set codel {}
     lappend codel [errexpect-arrayget-boolean vi inPort]
 
-    set gameclass [errexpect-arrayget vi vesselClass]
-    upvar #0 vc_game2code($gameclass) class
-    if {![info exists class]} {
-       set class "($gameclass)"
-       upvar #0 vc_code2abbrev($class) vcabb
-       set vcabb vc-$class
-       set data [exec pbmtext -builtin fixed " $gameclass " \
+    set gamesize [errexpect-arrayget vi vesselClass]
+    upvar #0 vc_game2code($gamesize) size
+    if {![info exists size]} {
+       set size "($gamesize)"
+       upvar #0 vc_code2abbrev($size) vcabb
+       set vcabb vc-$size
+       set data [exec pbmtext -builtin fixed " $gamesize " \
                 | pnminvert | pnmcrop | pbmtoxbm]
        debug "INVENTED ICON $vcabb $data"
        image create bitmap icon/$vcabb -data $data
            
        global vc_code2full
                 | pnminvert | pnmcrop | pbmtoxbm]
        debug "INVENTED ICON $vcabb $data"
        image create bitmap icon/$vcabb -data $data
            
        global vc_code2full
-       set vc_code2full($class) "Type \"$gameclass\""
+       set vc_code2full($size) "Type \"$gamesize\""
     }
     }
-    lappend codel $class
+    lappend codel $size
 
     set gamesubclass [errexpect-arrayget vi vesselSubclass]
     upvar #0 vsc_game2code($gamesubclass) subclass
 
     set gamesubclass [errexpect-arrayget vi vesselSubclass]
     upvar #0 vsc_game2code($gamesubclass) subclass
@@ -861,8 +998,18 @@ proc load-chart {} {
     }]]
 }
 
     }]]
 }
 
-
-set scale 16
+proc init-scales {} {
+    global scales scaleix scale
+    set defscale 16
+    set scales {1 2 3 4 5 6 8}
+    set e12 {10 12 15 18 22 27 33 39 47 56 68 82}
+    foreach t $e12 {
+       if {$t < $defscale} { set scaleix [llength $scales] }
+       lappend scales $t
+    }
+    foreach t [lrange $e12 0 6] { lappend scales [expr {$t * 10}] }
+    set scale [lindex $scales $scaleix]
+}
 
 proc coord {c} {
        global scale
 
 proc coord {c} {
        global scale
@@ -933,6 +1080,8 @@ proc draw {} {
        eval chart-got/$proc [lrange $l 1 end]
     }
 
        eval chart-got/$proc [lrange $l 1 end]
     }
 
+    smash-prepare
+
     catch { unset smfound }
     foreach key [lsort [array names found]] {
        regexp {^(.*) (\S+)$} $key dummy islandname code
     catch { unset smfound }
     foreach key [lsort [array names found]] {
        regexp {^(.*) (\S+)$} $key dummy islandname code
@@ -1145,8 +1294,12 @@ proc islandnames-handler {offset maxchars} {
 proc widgets-setup {} {
     global canvas debug pirate ocean filterstyle
 
 proc widgets-setup {} {
     global canvas debug pirate ocean filterstyle
 
-    wm geometry . 1024x600
-    wm title . "where-vessels - $pirate on the $ocean ocean"
+    wm geometry . 1200x800
+    if {[string length $pirate]} {
+       wm title . "where-vessels - $pirate on the $ocean ocean"
+    } else {
+       wm title . "where-vessels - $ocean ocean"
+    }
 
     #----- map -----
 
 
     #----- map -----
 
@@ -1164,15 +1317,9 @@ proc widgets-setup {} {
     frame .islands -pady 2
     pack .cp .filter .islands .smash -side top
 
     frame .islands -pady 2
     pack .cp .filter .islands .smash -side top
 
-    label .smash.title -text Smash
+    label .smash.title -text {Display/combine details}
     grid .smash.title -row 0 -column 0 -columnspan 2
 
     grid .smash.title -row 0 -column 0 -columnspan 2
 
-    make-radio-smasher subclass Subclass smash_subclass \
-       {Show Normal/LE Hide} 1 0
-
-    make-radio-smasher owner Owner smash_owner \
-       {Show Yours? {For you} Lock Hide} 2 3
-
     set filterstyle 1
     trace add variable filterstyle write filterstyle-changed
 
     set filterstyle 1
     trace add variable filterstyle write filterstyle-changed
 
@@ -1202,9 +1349,11 @@ proc widgets-setup {} {
     frame .cp.ctrl.zoom
     pack .cp.ctrl.zoom -side top
 
     frame .cp.ctrl.zoom
     pack .cp.ctrl.zoom -side top
 
-    button .cp.ctrl.zoom.out -text - -font {Courier 16} -command {zoom /2} -pady 0
-    button .cp.ctrl.zoom.in  -text + -font {Courier 16} -command {zoom *2} -pady 0
-    pack .cp.ctrl.zoom.out .cp.ctrl.zoom.in -side left
+    foreach inout {out in} minplus {- +} {
+       button .cp.ctrl.zoom.$inout -text $minplus -font {Courier 16} \
+           -command "zoom ${minplus}1" -pady 0
+       pack .cp.ctrl.zoom.$inout -side left
+    }
 
     parser-control-create .cp.ctrl.acquire \
        acquire Acquire \
 
     parser-control-create .cp.ctrl.acquire \
        acquire Acquire \
@@ -1215,9 +1364,13 @@ proc widgets-setup {} {
     parser-control-create .cp.ctrl.notes \
        notes "Reload notes" \
        "Vessel notes loading report" \
     parser-control-create .cp.ctrl.notes \
        notes "Reload notes" \
        "Vessel notes loading report" \
-       
+
     pack .cp.ctrl.notes -side top -pady 2
 
     pack .cp.ctrl.notes -side top -pady 2
 
+    if {![have-notes]} {
+       .cp.ctrl.notes.do configure -state disabled
+    }  
+       
     #----- island name count and copy -----
 
     label .islands.count
     #----- island name count and copy -----
 
     label .islands.count
@@ -1250,7 +1403,7 @@ proc widgets-setup {} {
     #pack .cp.report.code -side top
     pack configure .cp.report.details -fill x
 
     #pack .cp.report.code -side top
     pack configure .cp.report.details -fill x
 
-    foreach sw {inport class subclass lock own xabbrev} {
+    foreach sw {inport size subclass lock own xabbrev} {
        label .cp.report.details.$sw -text { }
        pack .cp.report.details.$sw -side top -anchor w
     }
        label .cp.report.details.$sw -text { }
        pack .cp.report.details.$sw -side top -anchor w
     }
@@ -1275,8 +1428,8 @@ proc show-report {islandname code} {
 
     .cp.report.list delete 0 end
 
 
     .cp.report.list delete 0 end
 
-    foreach entry $k {
-       manyset $entry vid name owner
+    foreach elem $k {
+       manyset $elem vid name owner
        lappend owned($owner) $name
     }
 
        lappend owned($owner) $name
     }
 
@@ -1286,19 +1439,23 @@ proc show-report {islandname code} {
        } else {
            set owndesc "Owner unknown"
        }
        } else {
            set owndesc "Owner unknown"
        }
-       .cp.report.list insert end "$owndesc:"
+       if {[have-notes]} {
+           .cp.report.list insert end "$owndesc:"
+       }
        foreach name $owned($owner) {
            .cp.report.list insert end " $name"
        }
     }
 }
 
        foreach name $owned($owner) {
            .cp.report.list insert end " $name"
        }
     }
 }
 
-proc zoom {extail} {
-    global scale canvas
-    set nscale [expr "\$scale $extail"]
-    debug "ZOOM $scale $nscale"
-    if {$nscale < 1 || $nscale > 200} return
-    set scale $nscale
+proc zoom {amt} {
+    global scaleix scales scale canvas
+    incr scaleix $amt
+    if {$scaleix < 0} { set scaleix 0 }
+    set nscales [llength $scales]
+    if {$scaleix >= $nscales} { set scaleix [expr {$nscales-1}] }
+    set scale [lindex $scales $scaleix]
+    debug "ZOOM $amt $scaleix $scale"
     draw
 }
 
     draw
 }
 
@@ -1347,22 +1504,39 @@ proc invoke_notes {} {
 
 #---------- main program ----------
 
 
 #---------- main program ----------
 
+init-scales
 parseargs
 argdefaults
 httpclientsetup where-vessels
 info-cache-update
 parseargs
 argdefaults
 httpclientsetup where-vessels
 info-cache-update
-vesselclasses-init
+vesselinfo-init
 load-chart
 widgets-setup
 make-filters
 load-chart
 widgets-setup
 make-filters
+make-smashers
 
 set notes_data {}
 if {[catch { parse-clipboard } emsg]} {
     puts stderr "$emsg\n$errorInfo"
     exit 1
 }
 
 set notes_data {}
 if {[catch { parse-clipboard } emsg]} {
     puts stderr "$emsg\n$errorInfo"
     exit 1
 }
-after idle invoke_notes
+if {[have-notes]} {
+    after idle invoke_notes
+}
 
 draw
 
 
 draw
 
-# rsync -r --exclude=\*~ yarrg/icons/. ijackson@chiark.greenend.org.uk:/home/ftp/users/ijackson/yarrg/vessel-info/.
+if {$debug} {
+    package require Tclx
+    commandloop -async \
+       -prompt1 { return "where-vessels% " } \
+       -prompt2 { return "> " }
+}
+
+# some runes I use:
+#
+# offline development
+#   ./where-vessels --notes ~/vessel-notes --vessel-info-source '' --pirate Aristarchus --ocean Midnight --debug --local-html-dir . --clipboard-file ~/clipboard-aristarchus
+#
+# updating published vessel info
+#   rsync -r --exclude=\*~ yarrg/icons/. ijackson@chiark.greenend.org.uk:/home/ftp/users/ijackson/yarrg/vessel-info/.