chiark / gitweb /
Fix up search too long error message - really fix up
[ypp-sc-tools.db-live.git] / yarrg / where-vessels
index c382c6a4b92f913218c2e6c73e40401723a19feb..47cd6ed1119fb63aedea28561d8a8a00abdae5c3 100755 (executable)
@@ -200,7 +200,7 @@ proc display-note-infos {} {
     debug "display-note-infos $nmissing [array size notes]"
 
     if {[llength $note_infos]} {
-       set tiny "[llength $note_infos] warnings"
+       set tiny "[llength $note_infos] warning(s)"
     } elseif {$nmissing && [array size notes]} {
        set tiny "$nmissing missing"
     } else {
@@ -232,7 +232,7 @@ proc display-note-infos {} {
        }
     }
 
-    parser-control-failed-core .ctrl.notes notes \
+    parser-control-failed-core .cp.ctrl.notes notes \
        white blue 0 \
        $tiny \
        "[llength $note_infos] warning(s);\
@@ -254,8 +254,8 @@ proc vesselclasses-init {} {
        merchbrig       fm      mb      {Merchant Brig}
        warbrig         gm      wb      {War Brig}
        xebec           hm      xe      Xebec
-       warfrig         im      wf      {War Frigate}
        merchgal        jm      mg      {Merchant Galleon}
+       warfrig         im      wf      {War Frigate}
        grandfrig       km      gf      {Grand Frigate}
     }
     set vc_codes {}
@@ -264,29 +264,105 @@ proc vesselclasses-init {} {
        set vc_game2code($game) $code
        set vc_code2abbrev($code) $abbrev
        set vc_code2full($code) $full
+       load-icon $abbrev
+    }
+
+    load-icon atsea
+    foreach a {battle borrow dot} {
+       foreach b {ours dot query} {
+           load-icon-combine $a $b
+       }
     }
 }
 
-proc code2abbrev-lock {lockown} {
+proc load-icon {icon} {
+    image create bitmap icon/$icon -file icons/$icon.xbm
+}
+
+proc load-icon-combine {args} {
+    set cmd {}
+    set delim "pnmcat -lr "
+    foreach icon $args {
+       append cmd $delim " <(xbmtopbm icons/$icon.xbm)"
+       set delim " <(pbmmake -white 1 1)"
+    }
+    append cmd " | pbmtoxbm"
+    debug "load-icon-combine $cmd"
+    image create bitmap icon/[join $args +] -data [exec bash -c $cmd]
+}
+
+proc code-lockown2icon {lockown} {
     manyset [split $lockown ""] lock notown
-    append abbrev [lindex {* + -} $lock]
-    append abbrev [lindex {= - ?} [regsub {\D} $notown 2]]
-}    
+    return icon/[
+                lindex {battle borrow dot} $lock
+               ]+[
+                  lindex {ours dot query} $notown
+                 ]
+}
+
+proc canvas-horiz-stack {xvar xoff y bind type args} {
+    upvar 1 $xvar x
+    upvar 1 canvas canvas
+    set id [eval $canvas create $type [expr {$x+$xoff}] $y $args]
+    set bbox [$canvas bbox $id]
+    set x [lindex $bbox 2]
+    $canvas bind $id <ButtonPress> $bind
+    return $id
+}
 
-proc code2abbrev {code} {
+proc code2canvas {code canvas x yvar qty qtylen bind} {
     global vc_code2abbrev
+    upvar 1 $yvar y
 
     manyset [split $code _] inport class subclass lockown xabbrev
 
-    set abbrev {}
-    append abbrev [lindex {? {}} $inport]
-    append abbrev $vc_code2abbrev($class)
-    append abbrev $subclass
-    append abbrev [code2abbrev-lock $lockown]
-    append abbrev $xabbrev
+    set stackx $x
+    incr stackx 2
+    set imy [expr {$y+2}]
+
+    if {!$inport} { incr qtylen -1 }
+    if {$qtylen<=0} { set qtylen {} }
+    set qty [format "%${qtylen}s" $qty]
+
+    set qtyid [canvas-horiz-stack stackx 0 $y $bind \
+                  text -anchor nw -font fixed -text $qty]
+
+    if {!$inport} {
+       canvas-horiz-stack stackx 0 $imy $bind \
+           image -anchor nw -image icon/atsea
+       incr stackx
+    }
+    
+    canvas-horiz-stack stackx -1 $imy $bind \
+           image -anchor nw -image icon/$vc_code2abbrev($class)
+
+    if {[string length $subclass]} {
+       canvas-horiz-stack stackx 0 $y $bind \
+           text -anchor nw -font fixed -text \
+           $subclass
+    }
+
+    incr stackx
+    canvas-horiz-stack stackx 0 $imy $bind \
+       image -anchor nw -image [code-lockown2icon $lockown]
+    incr stackx
+    
+    if {[string length $xabbrev]} {
+       canvas-horiz-stack stackx 0 $y $bind \
+           text -anchor nw -font fixed -text \
+           $xabbrev
+    }
+    
+    set bbox [$canvas bbox $qtyid]
+    set ny [lindex $bbox 3]
+    set bid [$canvas create rectangle \
+                $x $y $stackx $ny \
+                -fill white]
 
-    debug "CODE2ABBREV $code $abbrev"
-    return $abbrev
+    set y $ny
+    $canvas lower $bid $qtyid
+
+    $canvas bind $bid <ButtonPress> $bind
 }
 
 proc show-report-decode {code} {
@@ -311,8 +387,7 @@ proc show-report-decode {code} {
     switch -exact $notown {
        0 { report-set own "Yours" }
        1 { report-set own "Other pirate's" }
-       U { report-set own "Owner not known" }
-       M { report-set own "Missing from notes" }
+       2 { report-set own "Owner unknown" }
        default { report-set own "?? $notown" }
     }
 
@@ -327,36 +402,35 @@ proc show-report-decode {code} {
 
 set filters {}
 
-#proc make-size-filter {minmax minmaxdesc} {
-#    set n [llength $vc_codes]
-#    $w configure 
-
-#    make-filter size${minmax} "$minmaxdesc size" scale \
-#      [list \
-#           -tickinterval 0 \
-#           -variable filter_size{$minmax} \
-#           -from 0 -to [expr {$n-1}] \
-#           -resolution 1 \
-#           -length [expr {$n*5}] \
-#           ]
-
-
 proc filter-values/size {} { global vc_codes; return $vc_codes }
-proc filter-map/size {code} { upvar #0 vc_code2abbrev($code) abb; return $abb }
+proc filter-icon/size {code} {
+    upvar #0 vc_code2abbrev($code) abb
+    return icon/$abb
+}
 proc filter-default/size {code} { return 1 }
+proc filter-says-yes/size {codel} {
+    set sizecode [lindex $codel 1]
+    upvar #0 filter_size($sizecode) yes
+    return $yes
+}
 
 proc filter-values/lockown {} {
     foreach lv {0 1 2} {
-       foreach ov {0 1 X} {
+       foreach ov {0 1 2} {
            lappend vals "$lv$ov"
        }
     }
     return $vals
 }
-proc filter-map/lockown {lockown} { return [code2abbrev-lock $lockown] }
+proc filter-icon/lockown {lockown} { return [code-lockown2icon $lockown] }
 proc filter-default/lockown {lockown} {
     return [regexp {^[01]|^2[^1]} $lockown]
 }
+proc filter-says-yes/lockown {codel} {
+    set lockown [lindex $codel 3]
+    upvar #0 filter_lockown($lockown) yes
+    return $yes
+}
 
 proc filter-validate/xabbre {re} {
     if {[catch {
@@ -368,6 +442,11 @@ proc filter-validate/xabbre {re} {
     }
     return {}
 }
+proc filter-says-yes/xabbre {codel} {
+    global filter_xabbre
+    set xabbrev [lindex $codel 4]
+    return [regexp -- $filter_xabbre $xabbrev]
+}
 
 proc filter-tickbox-flip {fil} {
     upvar #0 filter_$fil vars
@@ -375,7 +454,7 @@ proc filter-tickbox-flip {fil} {
     foreach val $values {
        set vars($val) [expr {!$vars($val)}]
     }
-    refilter-needed
+    redraw-needed
 }
 
 proc make-tickbox-filter {fil label rows inrow} {
@@ -386,13 +465,17 @@ proc make-tickbox-filter {fil label rows inrow} {
     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) \
-           -text [filter-map/$fil $val] -font fixed \
-           -command refilter-needed
+           -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}]
@@ -417,7 +500,7 @@ proc entry-filter-changed {fw fil n1 n2 op} {
        } else {
            $fw.error configure -text { } -background $def_background
            set realvar $entryvar
-           refilter-needed
+           redraw-needed
        }
     } emsg]} {
        puts stderr "FILTER CHECK ERROR $emsg $errorInfo"
@@ -437,15 +520,11 @@ proc make-entry-filter {fil label def} {
     pack $fw.entry $fw.error -side top -anchor w
 }
 
-proc refilter-needed {} {
-    debug "REFILTER NEEDED"
-}
-
 proc make-filter {kind fil label ekind} {
     global filters
     label .filter.lab_$fil -text $label -justify left
     $ekind .filter.$fil
-    lappend filters [list $kind $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
@@ -457,6 +536,15 @@ proc make-filters {} {
     make-tickbox-filter lockown "Lock/\nowner" 2 6
     make-entry-filter xabbre "Flags\n regexp" {}
 }
+
+proc filters-say-yes {code} {
+    global filters
+    debug "filters-say-yes $code"
+    foreach fil $filters {
+       if {![filter-says-yes/$fil [split $code _]]} { return 0 }
+    }
+    return 1
+}
     
 #---------- loading and parsing the clipboard (vessel locations) ----------
 
@@ -507,13 +595,13 @@ proc vessel {vin} {
                set notown 1
            }
        } else {
-           set notown U
+           set notown 2
        }
        append abbrev $xabbrev
        set notes_used($vid) 1
 
     } else {
-       set notown M
+       set notown 2
        lappend note_missings [list $island $realname $vid]
     }
 
@@ -631,8 +719,18 @@ proc chart-got/league {x1 y1 x2 y2 kind} {
        }
 }
 
+proc redraw-needed {} {
+    global redraw_after
+    debug "REDRAW NEEDED"
+    if {[info exists redraw_after]} return
+    set redraw_after [after 250 draw]
+}
+
 proc draw {} {
-    global chart found isleloc canvas
+    global chart found isleloc canvas redraw_after islandnames
+
+    catch { after cancel $redraw_after }
+    catch { unset redraw_after }
     
     $canvas delete all
 
@@ -642,41 +740,33 @@ proc draw {} {
        eval chart-got/$proc [lrange $l 1 end]
     }
 
+    set islandnames {}
     set lastislandname {}
     foreach key [lsort [array names found]] {
        set c [llength $found($key)]
 #      debug "SHOWING $key $c"
        regexp {^(.*) (\S+)$} $key dummy islandname code
 
-       set abbrev [code2abbrev $code]
-       
+       if {![filters-say-yes $code]} continue
+
        if {[string compare $lastislandname $islandname]} {
                manyset $isleloc($islandname) x y
                set x [coord $x]
                set y [coord $y]
                set lastislandname $islandname
+               lappend islandnames $islandname
 #              debug "START Y $y"
        }
-       set text $abbrev
-       regsub -all {[0-9]} $text {} text
-       if {$c > 1} {
-               set text [format "%2d%s" $c $text]
-       } else {
-               set text [format "  %s" $text]
-       }
-       set id [$canvas create text $x $y \
-               -anchor nw -font fixed \
-               -text $text]
-       set bbox [$canvas bbox $id]
-       set bid [eval $canvas create rectangle $bbox -fill white]
-       $canvas lower $bid $id
-       $canvas bind $id <ButtonPress> [list show-report $islandname $code]
-       $canvas bind $bid <ButtonPress> [list show-report $islandname $code]
-       manyset $bbox dummy dummy dummy y
+
+       if {$c > 1} { set qty [format %d $c] } else { set qty {} }
+       code2canvas $code $canvas $x y $qty 2 \
+           [list show-report $islandname $code]
 #      debug "NEW Y $y"
     }
 
-    panner::updatecanvas-bbox .ctrl.pan
+    panner::updatecanvas-bbox .cp.ctrl.pan
+
+    islandnames-update
 }
 
 
@@ -684,7 +774,7 @@ proc draw {} {
 
 proc parser-control-create {w base invokebuttontext etl_title} {
     frame $w
-    button $w.do -text $invokebuttontext -command invoke_$base
+    button $w.do -text $invokebuttontext -command invoke_$base -pady 3
 
     frame $w.resframe -width 120 -height 32
     button $w.resframe.res -text {} -anchor nw \
@@ -804,13 +894,13 @@ proc reparse {base varname old fulldesc okshow noneshow parse ok} {
     manyset [errexpect-catch {
        uplevel 1 $parse
        if {[string length [string trim $var]]} {
-           parser-control-ok .ctrl.$base $base $okshow
+           parser-control-ok .cp.ctrl.$base $base $okshow
        } else {
-           parser-control-none .ctrl.$base $base $noneshow
+           parser-control-none .cp.ctrl.$base $base $noneshow
        }
     }] failed emsg lno ei
     if {$failed} {
-       parser-control-failed-expected .ctrl.$base $base \
+       parser-control-failed-expected .cp.ctrl.$base $base \
            $emsg $lno $ei $fulldesc $var
        set var $old
        uplevel 1 $parse
@@ -819,6 +909,28 @@ proc reparse {base varname old fulldesc okshow noneshow parse ok} {
     }
 }
 
+#---------- island names selection etc. ----------
+
+proc islandnames-update {} {
+    global islandnames
+    .islands.count configure -text [format "ships at %d island(s)" \
+                                       [llength $islandnames]]
+}
+
+proc islandnames-select {} {
+    .islands.clip configure -relief sunken -state disabled
+    selection own -command islandnames-deselect .islands.clip
+}
+proc islandnames-deselect {} {
+    .islands.clip configure -relief raised -state normal
+}
+
+proc islandnames-handler {offset maxchars} {
+    global islandnames
+    return [string range [join $islandnames ", "] \
+               $offset [expr {$offset+$maxchars-1}]]
+}
+
 #---------- main user interface ----------
 
 proc widgets-setup {} {
@@ -835,96 +947,106 @@ proc widgets-setup {} {
     pack $canvas -expand 1 -fill both
     pack .f -expand 1 -fill both -side left
 
-    #----- filter -----
+    #----- control panels and filter -----
 
-    frame .filter -relief groove -bd 2
-    pack .filter -side bottom
+    frame .cp
+    frame .filter -relief groove -bd 2 -padx 1
+    frame .islands -pady 2
+    pack .cp .filter .islands -side top
 
     label .filter.title -text Filter
     grid configure .filter.title -row 0 -column 0 -columnspan 2
 
     #----- control panel -----
 
-    frame .ctrl
-    pack .ctrl -side left -anchor n
+    frame .cp.ctrl
+    pack .cp.ctrl -side left -anchor n
 
     debug "BBOX [$canvas bbox all]"
 
     panner::canvas-scroll-bbox .f.c
-    panner::create .ctrl.pan .f.c 120 120 $debug
+    panner::create .cp.ctrl.pan .f.c 120 120 $debug
 
-    pack .ctrl.pan -side top -pady 10 -padx 5
-    frame .ctrl.zoom
-    pack .ctrl.zoom -side top
+    pack .cp.ctrl.pan -side top -pady 0 -padx 5
+    frame .cp.ctrl.zoom
+    pack .cp.ctrl.zoom -side top
 
-    button .ctrl.zoom.out -text - -font {Courier 16} -command {zoom /2}
-    button .ctrl.zoom.in  -text + -font {Courier 16} -command {zoom *2}
-    pack .ctrl.zoom.out .ctrl.zoom.in -side left
+    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
 
-    parser-control-create .ctrl.acquire \
+    parser-control-create .cp.ctrl.acquire \
        acquire Acquire \
        "Clipboard parsing error" \
        
-    pack .ctrl.acquire -side top -pady 2
+    pack .cp.ctrl.acquire -side top -pady 2
 
-    parser-control-create .ctrl.notes \
+    parser-control-create .cp.ctrl.notes \
        notes "Reload notes" \
        "Vessel notes loading report" \
        
-    pack .ctrl.notes -side top -pady 2
+    pack .cp.ctrl.notes -side top -pady 2
+
+    #----- island name count and copy -----
+
+    label .islands.count
+    button .islands.clip -text "copy island names" -pady 2 -padx 2 \
+        -command islandnames-select
+    selection handle .islands.clip islandnames-handler
+    pack .islands.count .islands.clip -side left
 
     #----- decoding etc. report -----
 
-    frame .report
-    pack .report -side left -anchor n
+    frame .cp.report
+    pack .cp.report -side left -anchor n
 
-    label .report.island -text { }
+    label .cp.report.island -text { }
 
-    frame .report.abbrev -background black
-    glset report_abbrev {         }
-    entry .report.abbrev.abbrev -state readonly \
-       -textvariable report_abbrev \
-       -borderwidth 0 -relief flat -width 0 \
-       -highlightbackground white \
-       -readonlybackground white -foreground black
-    pack .report.abbrev.abbrev -side left -padx 1 -pady 1
+    canvas .cp.report.abbrev -width 1 -height 15
 
-    frame .report.code
-    label .report.code.lab -text Code:
+    frame .cp.report.code
+    label .cp.report.code.lab -text Code:
     glset report_code { }
-    entry .report.code.code -state readonly -textvariable report_code -width 15
-    pack .report.code.lab .report.code.code -side left
-    frame .report.details -bd 2 -relief groove -padx 2 -pady 2
+    entry .cp.report.code.code -state readonly \
+       -textvariable report_code -width 15
+    pack .cp.report.code.lab .cp.report.code.code -side left
+    frame .cp.report.details -bd 2 -relief groove -padx 2 -pady 2
 
-    listbox .report.list -height 5
+    listbox .cp.report.list -height 5
 
-    pack .report.island .report.abbrev .report.details \
-       .report.list .report.code -side top
-    pack configure .report.details -fill x
+    pack .cp.report.island .cp.report.abbrev .cp.report.details \
+       .cp.report.list -side top
+    #pack .cp.report.code -side top
+    pack configure .cp.report.details -fill x
 
     foreach sw {inport class subclass lock own xabbrev} {
-       label .report.details.$sw -text { }
-       pack .report.details.$sw -side top -anchor w
+       label .cp.report.details.$sw -text { }
+       pack .cp.report.details.$sw -side top -anchor w
     }
 }
 
-proc report-set {sw val} { .report.details.$sw configure -text $val }
+proc report-set {sw val} { .cp.report.details.$sw configure -text $val }
 
 proc show-report {islandname code} {
-    .report.island configure -text $islandname
-    glset report_code $code
-    glset report_abbrev [code2abbrev $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}]
 
+    glset report_code $code
     show-report-decode $code
 
     set kk "$islandname $code"
     upvar #0 found($kk) k
 
-    .report.list delete 0 end
+    .cp.report.list delete 0 end
 
     foreach entry $k {
        manyset $entry vid name
-       .report.list insert end $name
+       .cp.report.list insert end $name
     }
 }
 
@@ -944,7 +1066,7 @@ proc invoke_acquire {} {
     if {[catch {
        set clipboard [clipboard get]
     } emsg]} {
-       parser-control-failed-unexpected .ctrl.acquire acquire \
+       parser-control-failed-unexpected .cp.ctrl.acquire acquire \
            $emsg "fetching clipboard:\n\n$errorInfo"
        return
     }
@@ -965,7 +1087,7 @@ proc invoke_notes {} {
     if {[catch {
        load-notes
     } emsg]} {
-       parser-control-failed-unexpected .ctrl.notes notes \
+       parser-control-failed-unexpected .cp.ctrl.notes notes \
            $emsg "loading $notes_loc:\n\n$errorInfo"
        return
     }
@@ -982,9 +1104,8 @@ proc invoke_notes {} {
 
 #---------- main program ----------
 
-vesselclasses-init
-
 parseargs
+vesselclasses-init
 argdefaults
 httpclientsetup where-vessels
 load-chart