chiark / gitweb /
where-vessels: break out info-toplevel-create
[ypp-sc-tools.db-live.git] / yarrg / where-vessels
index c5ec9b03ffec39e97ebf2d30a9421912e1145cb9..6b1b0e2de61213b2f565458e32e6bac85ce83956 100755 (executable)
@@ -101,8 +101,11 @@ proc nextarg {} {
     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 filter_lockown_separate 0
 
 proc parseargs {} {
     global ai argv
@@ -118,25 +121,50 @@ proc parseargs {} {
            --clipboard-file { load-clipboard-file [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" }
+           default { badusage "bad option $arg; see README.where-vessels" }
        }
     }
     set argv [lrange $argv $ai end]
     if {[llength $argv]} { badusage "non-option args not allowed" }
 }
 
+proc have-notes {} {
+    global notes_loc
+    return [string length $notes_loc]
+}
+proc have-ownership {} {
+    global pirate
+    return [expr {[have-notes] && [string length $pirate]}]
+}
+
 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 }
-       manyset [split [eval exec $cmd] " "] ocean pirate
+       if {[catch {
+           manyset [split [eval exec $cmd] " "] ocean pirate
+       } emsg]} {
+           puts stderr "yarrg: [string trim $emsg]"
+           puts stderr "Alternatively pass, --ocean and perhaps --pirate options to where-vessels"
+           exit 1
+       }
        if {![llength $ocean] || ![llength $pirate]} {
            error "$ocean $pirate ?"
        }
     }
+    if {![info exists pirate]} {
+       set pirate {}
+    }
+    if {![have-notes]} {
+       glset filter_lockown_separate 1
+    }
+
     lappend scraper $ocean
 }
 
@@ -244,36 +272,35 @@ proc display-note-infos {} {
        $infodata
 }
 
-#---------- vessel properties ----------
+#---------- vessel info and icons ----------
+
+proc info-cache-update {} {
+    global info_source info_cache
+    file mkdir $info_cache
+    exec sh -c "cp -u icons/* $info_cache/."
+
+    if {[string length $info_source]} {
+       set cmdl [list \
+                 rsync -udLKtOzm \
+                 --exclude=*~ --exclude=*.bak --exclude=.* --exclude=*.tmp \
+                 $info_source/ $info_cache 2>@ stderr]
+       debug "INFO-CACHE $cmdl"
+       eval exec $cmdl
+    }
 
-set vessel_class_info {
-       smsloop         am      sl      Sloop
-       lgsloop         bm      ct      Cutter
-       dhow            cm      dh      Dhow
-       longship        dm      ls      Longship
-       baghlah         em      bg      Baghlah
-       junk            eo      jk      Junk
-       merchbrig       fm      mb      {Merchant Brig}
-       warbrig         gm      wb      {War Brig}
-       xebec           hm      xe      Xebec
-       merchgal        jm      mg      {Merchant Galleon}
-       warfrig         im      wf      {War Frigate}
-       grandfrig       km      gf      {Grand Frigate}
-}
-
-set vessel_subclass_info {
-       celtic   E      {Emerald class}
-       icy      F      {Frost class}
-       rogue    R      {Rogue class}
-       verdant  V      {Verdant class}
-       inferno  I      {Inferno class}
-}
-
-proc vesselclasses-init {} {
+    set f [open $info_cache/vessel-info]
+    glset vessel_size_data [read $f]
+    close $f
+}
+
+proc vesselinfo-init {} {
     global vc_game2code vc_code2abbrev vc_code2full vc_codes
-    global vessel_class_info vessel_subclass_info
+
+    global vessel_size_data
+    manyset $vessel_size_data sizeinfos subclassinfos
+
     set vc_codes {}
-    foreach {game code abbrev full} $vessel_class_info {
+    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
@@ -287,29 +314,33 @@ proc vesselclasses-init {} {
     global vsc_game2code
     set vsc_game2code(null) {}
     set vsc_code2report() Ordinary
-    foreach {game code full} $vessel_subclass_info {
+    set vsc_code2report(!) "(Special/L.E.)"
+    foreach {game code full} $subclassinfos {
        if {![regexp {^[A-Z]$} $code code]} { error "bad code" }
        set vsc_game2code($game) $code
        set vsc_code2report($code) $full
     }
 
     load-icon atsea
+    set owners {ours dot query}
+    foreach b $owners { load-icon $b }
     foreach a {battle borrow dot} {
-       foreach b {ours dot query} {
-           load-icon-combine $a $b
-       }
+       load-icon $a
+       foreach b $owners { load-icon-combine $a $b }
     }
 }
 
 proc load-icon {icon} {
-    image create bitmap icon/$icon -file icons/$icon.xbm
+    global info_cache
+    image create bitmap icon/$icon -file $info_cache/$icon.xbm
 }
 
 proc load-icon-combine {args} {
+    global info_cache
     set cmd {}
     set delim "pnmcat -lr "
     foreach icon $args {
-       append cmd $delim " <(xbmtopbm icons/$icon.xbm)"
+       append cmd $delim " <(xbmtopbm $info_cache/$icon.xbm)"
        set delim " <(pbmmake -white 1 1)"
     }
     append cmd " | pbmtoxbm"
@@ -317,13 +348,15 @@ proc load-icon-combine {args} {
     image create bitmap icon/[join $args +] -data [exec bash -c $cmd]
 }
 
+#---------- vessel properties ----------
+
 proc code-lockown2icon {lockown} {
     manyset [split $lockown ""] lock notown
-    return icon/[
-                lindex {battle borrow dot} $lock
-               ]+[
-                  lindex {ours dot query} $notown
-                 ]
+    set l "
+        [lindex {battle borrow dot} $lock]
+         [lindex {ours dot query {} {} dot} $notown]
+    "
+    if {[llength $l]} { return icon/[join $l +] } { return {} }
 }
 
 proc canvas-horiz-stack {xvar xoff y bind type args} {
@@ -331,16 +364,24 @@ proc canvas-horiz-stack {xvar xoff y bind type args} {
     upvar 1 canvas canvas
     set id [eval $canvas create $type [expr {$x+$xoff}] $y $args]
     set bbox [$canvas bbox $id]
+#   debug "CANVAS-HORIZ-STACK $type $x $xoff $id $bbox [list $args]"
     set x [lindex $bbox 2]
     $canvas bind $id <ButtonPress> $bind
     return $id
 }
 
+proc code2canvas1 {code canvas} {
+    set y 2
+    code2canvas $code $canvas 5 y {} 0 {}
+    manyset [$canvas bbox all] minx dummy maxx dummy
+    $canvas configure -width [expr {$maxx-$minx+4}]
+}
+
 proc code2canvas {code canvas x yvar qty qtylen bind} {
     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
@@ -359,8 +400,14 @@ proc code2canvas {code canvas x yvar qty qtylen bind} {
        incr stackx
     }
     
+    upvar #0 vc_code2abbrev($size) vcabb
+    if {![info exists vcabb]} {
+       set vcabb vc-$size
+       image create bitmap icon/$vcabb -data \
+           [exec pbmtext -builtin fixed $size | pnminvert | pnmcrop >t.pnm]
+    }
     canvas-horiz-stack stackx -1 $imy $bind \
-           image -anchor nw -image icon/$vc_code2abbrev($class)
+           image -anchor nw -image icon/$vcabb
 
     if {[string length $subclass]} {
        canvas-horiz-stack stackx 0 $y $bind \
@@ -369,9 +416,12 @@ proc code2canvas {code canvas x yvar qty qtylen bind} {
     }
 
     incr stackx
-    canvas-horiz-stack stackx 0 $imy $bind \
-       image -anchor nw -image [code-lockown2icon $lockown]
-    incr stackx
+    set lockownicon [code-lockown2icon $lockown]
+    if {[string length $lockownicon]} {
+       canvas-horiz-stack stackx 0 $imy $bind \
+           image -anchor nw -image $lockownicon
+       incr stackx
+    }
     
     if {[string length $xabbrev]} {
        canvas-horiz-stack stackx 0 $y $bind \
@@ -394,37 +444,262 @@ proc code2canvas {code canvas x yvar qty qtylen bind} {
 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]
-    report-set class $vc_code2full($classcode)
 
-    upvar #0 vsc_code2report($subclass) subclass_report
-    if {[info exists subclass_report]} {
+    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} {
+       report-set subclass "(Any class)"
+    } 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 {
        {Battle ready} {Unlocked} {Locked}
+       {(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" }
-       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 "(Not 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 {
-       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"
+       }
     }
 }
 
+#---------- common to smashing and filtering ----------
+
+proc make-control {parent ctrl label ekind} {
+    debug "MAKE-CONTROL [list $parent $ctrl $label $ekind]"
+    label $parent.lab_$ctrl -text $label -justify left
+    $ekind $parent.$ctrl
+    manyset [grid size $parent] dummy row
+    incr row
+    grid configure $parent.lab_$ctrl -row $row -column 0 -sticky nw -pady 4
+    grid configure $parent.$ctrl -row $row -column 1 -sticky w -pady 3
+    return $parent.$ctrl
+}
+
+proc begin-control-grid {cw count rows inrow} {
+    if {!$inrow} { set inrow [expr {($count + $rows) / $rows}] }
+    upvar #0 control_grid_properties($cw) props
+    set props [list $rows $inrow]
+    return $cw
+}
+
+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
+
+    debug "MAKE-CONTROL-GRID-ELEM $cw $kind $ix $ekind $rows $inrow $ew"
+
+    eval [list $ekind $ew] $args
+
+    switch -exact $kind {
+       ix {
+           grid configure $ew -sticky sw \
+               -row [expr {$ix / $inrow}] \
+               -column [expr {$ix % $inrow}]
+       }
+       final {
+           grid configure $ew -sticky se \
+               -row [expr {$rows-1}] \
+               -column [expr {$inrow-1}]
+       }
+       default {
+           error "$kind ?"
+       }
+    }
+    return $ew
+}
+
+proc control-tickbox-flip {varsvn values onflip} {
+    upvar #0 $varsvn vars
+    foreach val $values {
+       set vars($val) [expr {!$vars($val)}]
+    }
+    $onflip c.-tickbox-flip $varsvn $values
+}
+
+proc populate-control-grid-tickboxes {cw rows inrow varsvn values flipvalues
+                           label_kind valvn default_get label_get onflip} {
+    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 $onflip 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 -padx 0 -pady 0 \
+       -command [list control-tickbox-flip $varsvn $flipvalues $onflip]
+}
+
+#---------- smashing ----------
+
+proc smash-code {code} {
+    manyset [split $code _] inport size subclass lockown xabbrev
+
+    upvar #0 smash_sizemap($size) smsize
+
+    global smash_subclass
+    if {$smash_subclass > 1} {
+       set subclass {}
+    } elseif {$smash_subclass && [string length $subclass]} {
+       set subclass !
+    }
+
+    global smash_owner
+    switch $smash_owner {
+       0 { }
+       1 { regsub {[12]$} $lockown 5 lockown }
+       2 {
+           if {[regexp {^0.} $lockown]} {
+               # battle ready / all lock states
+               set lockown 03
+           } elseif {[regexp {^.0} $lockown]} {
+               # not battle ready / yours
+               set lockown 40
+           } else {
+               # state (not battle ready) / not known to be yours
+               regsub {.$} $lockown 4 lockown
+           }
+       }
+       3 { regsub {.$} $lockown {3} lockown }
+       4 { set lockown 33 }
+    }
+
+    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_sizeinexact }
+    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} {
+    return [make-control .smash $sma $label $ekind]
+}
+
+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} {
+       make-control-grid-elem $w ix $i \
+           radiobutton \
+           -variable $variable -value $i \
+           -command [list redraw-needed radio-smasher $sma] \
+           -text [lindex $descs $i]
+    }
+    return $w
+}
+
+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)"} } \
+       redraw-needed
+    $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-ownership] ? 0 : 3}]
+    set cw [make-radio-smasher owner "Lock/\nowner" smash_owner \
+               {Show Yours? {For you} Lock Hide} 2 3]
+    if {![have-notes]} { $cw.0 configure -state disabled }
+    if {![have-ownership]} {
+       foreach ix {1 2} { $cw.$ix configure -state disabled }
+    }
+
+    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 {}
@@ -441,6 +716,26 @@ proc filter-says-yes/size {codel} {
     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} {
@@ -456,6 +751,7 @@ proc filter-default/lockown {lockown} {
 proc filter-says-yes/lockown {codel} {
     set lockown [lindex $codel 3]
     upvar #0 filter_lockown($lockown) yes
+    debug "FILTER-SAYS-YES/LOCKOWN $codel $lockown $yes"
     return $yes
 }
 
@@ -475,43 +771,23 @@ proc filter-says-yes/xabbre {codel} {
     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} {
-    upvar #0 filter_$fil vars
-    set fw [make-filter tickbox $fil $label frame]
     set values [filter-values/$fil]
-    set nvalues [llength $values]
-    if {!$inrow} {
-       set inrow [expr {($nvalues + $rows) / $rows}]
-    }
-    set noicons [catch { info args filter-icon/$fil }]
-    for {set ix 0} {$ix < $nvalues} {incr ix} {
-       set val [lindex $values $ix]
-       set vars($val) [filter-default/$fil $val]
-       checkbutton $fw.$ix -variable filter_${fil}($val) \
-           -font fixed -command redraw-needed
-       if {!$noicons} {
-           $fw.$ix configure -image [filter-icon/$fil $val] -height 16
-       } else {
-           $fw.$ix configure -text [filter-map/$fil $val]
-       }
-       grid configure $fw.$ix -sticky sw \
-           -row [expr {$ix / $inrow}] \
-           -column [expr {$ix % $inrow}]
+
+    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
     }
-    button $fw.invert -text flip -command [list filter-tickbox-flip $fil] \
-       -padx 0 -pady 0
-    grid configure $fw.invert -sticky se \
-       -row [expr {$rows-1}] \
-       -column [expr {$inrow-1}]
+
+    set fw [make-filter $fil $label frame]
+
+    populate-control-grid-tickboxes $fw $rows $inrow filter_$fil \
+       $values $values \
+       $label_kind val { filter-default/$fil $val } $label_get \
+       specific-filter-adjusted
 }
 
 proc entry-filter-changed {fw fil n1 n2 op} {
@@ -527,7 +803,7 @@ proc entry-filter-changed {fw fil n1 n2 op} {
        } else {
            $fw.error configure -text { } -background $def_background
            set realvar $entryvar
-           redraw-needed
+           specific-filter-adjusted entry-filter-changed $fw
        }
     } emsg]} {
        puts stderr "FILTER CHECK ERROR $emsg $errorInfo"
@@ -538,7 +814,7 @@ proc make-entry-filter {fil label def} {
     global filterentered_$fil
     upvar #0 filter_$fil realvar
     set realvar $def
-    set fw [make-filter entry $fil $label frame]
+    set fw [make-filter $fil $label frame]
     entry $fw.entry -textvariable filterentered_$fil
     label $fw.error
     glset def_background [$fw.error cget -background]
@@ -547,32 +823,39 @@ proc make-entry-filter {fil label def} {
     pack $fw.entry $fw.error -side top -anchor w
 }
 
-proc make-filter {kind fil label ekind} {
+proc make-filter {fil label ekind} {
     global filters
-    label .filter.lab_$fil -text $label -justify left
-    $ekind .filter.$fil
     lappend filters $fil
-    set nfilters [llength $filters]
-    grid configure .filter.lab_$fil -row $nfilters -column 0 -sticky nw -pady 4
-    grid configure .filter.$fil -row $nfilters -column 1 -sticky w -pady 3
-    return .filter.$fil
+    return [make-control .filter $fil $label $ekind]
 }
 
 proc make-filters {} {
+    global filter_lockown_separate
     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" {}
 }
 
+proc specific-filter-adjusted {args} {
+    glset filterstyle 3
+    eval redraw-needed $args
+}
+
 proc filterstyle-changed {n1 n2 op} {
     global filterstyle
-    debug "filterstyle-changed $filterstyle"
-    redraw-needed
+    debug "FILTERSTYLE-CHANGED $filterstyle"
+    redraw-needed filterstyle-changed
 }
 
 proc filters-say-yes {code} {
     global filters filterstyle
-    debug "filters-say-yes $code"
     set codel [split $code _]
     set lockown [lindex $codel 3]
     switch -exact $filterstyle {
@@ -584,8 +867,12 @@ proc filters-say-yes {code} {
     }
     
     foreach fil $filters {
-       if {![filter-says-yes/$fil $codel]} { return 0 }
+       if {![filter-says-yes/$fil $codel]} {
+           debug "FILTERS-SAY-YES $code NO $fil"
+           return 0
+       }
     }
+    debug "FILTERS-SAY-YES $code YES $filters"
     return 1
 }
     
@@ -598,10 +885,21 @@ proc vessel {vin} {
     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]} { errexpect-error "unexpected vesselClass"}
-    lappend codel $class
+    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
+       set vc_code2full($size) "Type \"$gamesize\""
+    }
+    lappend codel $size
 
     set gamesubclass [errexpect-arrayget vi vesselSubclass]
     upvar #0 vsc_game2code($gamesubclass) subclass
@@ -723,7 +1021,7 @@ proc load-chart {} {
        yppedia_chart_parse(\*STDIN, (new IO::File ">/dev/null"),
                sub { sprintf "%d %d", @_; },
                sub { printf "archlabel %d %d %s\n", @_; },
-               sub { printf "island %s %s\n", @_; },
+               sub { printf "island %s {%s} %s\n", @_; },
                sub { printf "league %s %s %s.\n", @_; },
                sub { printf STDERR "warning: %s: incomprehensible: %s", @_; }
                        );
@@ -731,8 +1029,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
@@ -740,17 +1048,19 @@ proc coord {c} {
 }
 
 proc chart-got/archlabel {args} { }
-proc chart-got/island {x y args} {
-#      debug "ISLE $x $y $args"
+proc chart-got/island {x y isle sizecol} {
+       debug "ISLE $x $y $isle $sizecol"
        global canvas isleloc
-       set isleloc($args) [list $x $y]
+       set isleloc($isle) [list $x $y]
        set sz 5
 #      $canvas create oval \
 #              [expr {[coord $x] - $sz}] [expr {[coord $y] - $sz}] \
 #              [expr {[coord $x] + $sz}] [expr {[coord $y] + $sz}] \
 #              -fill blue
+       set colour "#888"
+       if {[string match *_col $sizecol]} { set colour black }
        $canvas create text [coord $x] [coord $y] \
-               -text $args -anchor s
+               -text $isle -anchor s -fill $colour
 }
 proc chart-got/league {x1 y1 x2 y2 kind} {
 #      debug "LEAGUE $x1 $y1 $x2 $y2 $kind"
@@ -763,15 +1073,32 @@ proc chart-got/league {x1 y1 x2 y2 kind} {
        }
 }
 
-proc redraw-needed {} {
+proc debug-filter-array {array} {
+    upvar #0 $array a
+    set m " FILTER $array"
+    foreach k [lsort [array names a]] {
+       append m " $k=$a($k)"
+    }
+    debug $m
+}
+
+proc redraw-needed {args} {
     global redraw_after
-    debug "REDRAW NEEDED"
+    debug "REDRAW NEEDED $args"
     if {[info exists redraw_after]} return
+
+    global filterstyle
+    debug " FILTER style $filterstyle"
+    debug-filter-array filter_size
+    debug-filter-array filter_lockown
+    global filter_xabbre
+    debug " FILTER xabbre $filter_xabbre"
+
     set redraw_after [after 250 draw]
 }
 
 proc draw {} {
-    global chart found isleloc canvas redraw_after islandnames
+    global chart found isleloc canvas redraw_after islandnames smfound
 
     catch { after cancel $redraw_after }
     catch { unset redraw_after }
@@ -784,15 +1111,29 @@ proc draw {} {
        eval chart-got/$proc [lrange $l 1 end]
     }
 
-    set islandnames {}
-    set lastislandname {}
+    smash-prepare
+
+    catch { unset smfound }
     foreach key [lsort [array names found]] {
-       set c [llength $found($key)]
-#      debug "SHOWING $key $c"
        regexp {^(.*) (\S+)$} $key dummy islandname code
 
        if {![filters-say-yes $code]} continue
 
+       set smcode [smash-code $code]
+       debug "smashed $code => $smcode"
+       set smkey "$islandname $smcode"
+       foreach vessel $found($key) {
+           lappend smfound($smkey) [list $vessel $code]
+       }
+    }
+
+    set islandnames {}
+    set lastislandname {}
+    foreach smkey [lsort [array names smfound]] {
+       set c [llength $smfound($smkey)]
+       regexp {^(.*) (\S+)$} $smkey dummy islandname code
+       debug "SHOWING [list $smkey $c $islandname $code l=$lastislandname]"
+
        if {[string compare $lastislandname $islandname]} {
                manyset $isleloc($islandname) x y
                set x [coord $x]
@@ -814,6 +1155,18 @@ proc draw {} {
 }
 
 
+#---------- info toplevel ----------
+
+proc info-toplevel-create {info title} {
+    toplevel $info
+    wm withdraw $info
+    wm title $info "where-vessels - $title"
+    wm protocol $info WM_DELETE_WINDOW [list wm withdraw $info]
+
+    button $info.close -text Close -command [list wm withdraw $info]
+    pack $info.close -side bottom
+}
+
 #---------- parser error reporting ----------
 
 proc parser-control-create {w base invokebuttontext etl_title} {
@@ -830,17 +1183,11 @@ proc parser-control-create {w base invokebuttontext etl_title} {
     pack $w.resframe -side top -expand y -fill both
 
     set eb .err_$base
-    toplevel $eb
-    wm withdraw $eb
-    wm title $eb "where-vessels - $etl_title"
-    wm protocol $eb WM_DELETE_WINDOW [list wm withdraw $eb]
+    info-toplevel-create $eb $etl_title
 
     label $eb.title -text $etl_title
     pack $eb.title -side top
 
-    button $eb.close -text Close -command [list wm withdraw $eb]
-    pack $eb.close -side bottom
-
     frame $eb.emsg -bd 2 -relief groove
     label $eb.emsg.lab -anchor nw -text "Error:"
     text $eb.emsg.text -height 1
@@ -986,8 +1333,12 @@ proc islandnames-handler {offset maxchars} {
 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 -----
 
@@ -1000,22 +1351,29 @@ proc widgets-setup {} {
     #----- control panels and filter -----
 
     frame .cp
+    frame .smash -relief groove -bd 2 -padx 1
     frame .filter -relief groove -bd 2 -padx 1
     frame .islands -pady 2
-    pack .cp .filter .islands -side top
+    pack .cp .filter .islands .smash -side top -fill x
+
+    label .smash.title -text {Display/combine details}
+    grid .smash.title -row 0 -column 0 -columnspan 2
 
-    set filterstyle 1
+    set filterstyle [expr {[have-ownership] ? 1 : 3}]
     trace add variable filterstyle write filterstyle-changed
 
     frame .filter.title
     label .filter.title.title -text Show
     pack .filter.title.title -side left
-    for {set fing 0} {$fing < 4} {incr fing} {
+    foreach fing {0 1 2 3} {
        radiobutton .filter.title.f$fing \
            -variable filterstyle -value $fing \
            -text [lindex {All Useable Mine These:} $fing]
        pack .filter.title.f$fing -side left
     }
+    if {![have-ownership]} {
+       foreach fing {1 2} { .filter.title.f$fing configure -state disabled }
+    }
 
     grid configure .filter.title -row 0 -column 0 -columnspan 2
 
@@ -1033,9 +1391,11 @@ proc widgets-setup {} {
     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 \
@@ -1046,9 +1406,13 @@ proc widgets-setup {} {
     parser-control-create .cp.ctrl.notes \
        notes "Reload notes" \
        "Vessel notes loading report" \
-       
+
     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
@@ -1060,7 +1424,7 @@ proc widgets-setup {} {
     #----- decoding etc. report -----
 
     frame .cp.report
-    pack .cp.report -side left -anchor n
+    pack .cp.report -side left -anchor n -fill both -expand y
 
     label .cp.report.island -text { }
 
@@ -1076,12 +1440,16 @@ proc widgets-setup {} {
 
     listbox .cp.report.list -height 5
 
+    canvas .cp.report.abbrev1 -width 1 -height 15
+
     pack .cp.report.island .cp.report.abbrev .cp.report.details \
-       .cp.report.list -side top
-    #pack .cp.report.code -side top
+       .cp.report.list .cp.report.abbrev1 -side top
+    bind .cp.report.list <<ListboxSelect>> show-report-abbrev1
+
     pack configure .cp.report.details -fill x
+    pack configure .cp.report.list -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
     }
@@ -1093,22 +1461,22 @@ proc show-report {islandname code} {
     .cp.report.island configure -text $islandname
 
     .cp.report.abbrev delete all
-    set y 2
-    code2canvas $code .cp.report.abbrev 5 y {} 0 {}
-    manyset [.cp.report.abbrev bbox all] minx dummy maxx dummy
-    .cp.report.abbrev configure -width [expr {$maxx-$minx+4}]
+    code2canvas1 $code .cp.report.abbrev
 
     glset report_code $code
     show-report-decode $code
 
     set kk "$islandname $code"
-    upvar #0 found($kk) k
+    upvar #0 smfound($kk) vessels
 
+    global report_list_codes
+    set report_list_codes {}
     .cp.report.list delete 0 end
 
-    foreach entry $k {
-       manyset $entry vid name owner
-       lappend owned($owner) $name
+    foreach foundelem $vessels {
+       manyset $foundelem elem code
+       manyset $elem vid name owner
+       lappend owned($owner) [list $name $code]
     }
 
     foreach owner [lsort [array names owned]] {
@@ -1117,19 +1485,43 @@ proc show-report {islandname code} {
        } else {
            set owndesc "Owner unknown"
        }
-       .cp.report.list insert end "$owndesc:"
-       foreach name $owned($owner) {
+       if {[have-notes]} {
+           .cp.report.list insert end "$owndesc:"
+           lappend report_list_codes {}
+       }
+       foreach ownelem $owned($owner) {
+           manyset $ownelem name code
            .cp.report.list insert end " $name"
+           lappend report_list_codes $code
        }
     }
+    show-report-abbrev1
+}
+
+proc show-report-abbrev1 {} {
+    global report_list_codes
+    .cp.report.abbrev1 delete all
+    set ix [.cp.report.list curselection]
+    debug "SHOW-REPORT-ABBREV1 $ix $report_list_codes"
+    if {[llength $ix] != 1} return
+    set code [lindex $report_list_codes $ix]
+    if {![string length $code]} return
+    if {![have-notes]} {
+       manyset [split $code _] inport size subclass lockown xabbrev
+       regsub {.$} $lockown 3 lockown
+       set code [join [list $inport $size $subclass $lockown $xabbrev] _]
+    }
+    code2canvas1 $code .cp.report.abbrev1
 }
 
-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
 }
 
@@ -1178,19 +1570,39 @@ proc invoke_notes {} {
 
 #---------- main program ----------
 
+init-scales
 parseargs
-vesselclasses-init
 argdefaults
 httpclientsetup where-vessels
+info-cache-update
+vesselinfo-init
 load-chart
 widgets-setup
 make-filters
+make-smashers
 
 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
+
+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/.