X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?a=blobdiff_plain;f=yarrg%2Fwhere-vessels;h=a9c40a3e4ca3f3bb6f54be151bb9c2b5873f6414;hb=af479b7b0595881299cbc1a7aa2ffeb18f24ad9c;hp=1506f292ad13984327e95c1cd6f4561f4aca72e1;hpb=17ca1c1dcb03cf14737c098c02731a09b75b08a7;p=ypp-sc-tools.main.git diff --git a/yarrg/where-vessels b/yarrg/where-vessels index 1506f29..a9c40a3 100755 --- a/yarrg/where-vessels +++ b/yarrg/where-vessels @@ -101,10 +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 @@ -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] } + --filter-separate-lock-owner { glset filter_lockown_separate 1 } --debug { incr debug } default { badusage "unknown option $arg" } } @@ -129,9 +131,15 @@ proc parseargs {} { 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 - 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 } @@ -140,6 +148,14 @@ proc argdefaults {} { 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 } @@ -247,7 +263,7 @@ proc display-note-infos {} { $infodata } -#---------- vessel properties ---------- +#---------- vessel info and icons ---------- proc info-cache-update {} { global info_source info_cache @@ -323,6 +339,8 @@ 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 set l " @@ -410,11 +428,18 @@ proc code2canvas {code canvas x yvar qty qtylen bind} { proc show-report-decode {code} { global vc_code2full + 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 size $vc_code2full($sizecode) + + 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} { @@ -433,19 +458,31 @@ proc show-report-decode {code} { {(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 { - 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,13 +506,13 @@ proc begin-control-grid {cw count rows inrow} { 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 - debug "MAKE-CONTROL-GRID-ENTRY $cw $kind $ix $ekind $rows $inrow $ew" + debug "MAKE-CONTROL-GRID-ELEM $cw $kind $ix $ekind $rows $inrow $ew" eval [list $ekind $ew] $args @@ -519,7 +556,7 @@ proc populate-control-grid-tickboxes {cw rows inrow varsvn values flipvalues 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-entry $cw ix $ix checkbutton \ + set ew [make-control-grid-elem $cw ix $ix checkbutton \ -variable ${varsvn}($val) \ -font fixed \ -command [list redraw-needed c.-g.-tickbox $cw $val]] @@ -528,7 +565,7 @@ proc populate-control-grid-tickboxes {cw rows inrow varsvn values flipvalues image { $ew configure -height 16 } } } - [make-control-grid-entry $cw final invert button] \ + [make-control-grid-elem $cw final invert button] \ configure \ -text flip -command [list control-tickbox-flip $varsvn $flipvalues] \ -padx 0 -pady 0 @@ -536,9 +573,6 @@ proc populate-control-grid-tickboxes {cw rows inrow varsvn values flipvalues #---------- smashing ---------- -set smash_subclass 0 -set smash_owner 0 - proc smash-code {code} { manyset [split $code _] inport size subclass lockown xabbrev @@ -571,16 +605,32 @@ proc smash-code {code} { 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 + 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 } + 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} { @@ -591,7 +641,7 @@ 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-entry $w ix $i \ + make-control-grid-elem $w ix $i \ radiobutton \ -variable $variable -value $i -command redraw-needed \ -text [lindex $descs $i] @@ -606,11 +656,25 @@ proc make-smashers {} { 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 ---------- @@ -629,6 +693,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} { @@ -722,8 +806,16 @@ proc make-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" {} } @@ -908,8 +1000,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 @@ -1195,7 +1297,11 @@ proc widgets-setup {} { global canvas debug pirate ocean filterstyle wm geometry . 1200x800 - wm title . "where-vessels - $pirate on the $ocean ocean" + if {[string length $pirate]} { + wm title . "where-vessels - $pirate on the $ocean ocean" + } else { + wm title . "where-vessels - $ocean ocean" + } #----- map ----- @@ -1245,9 +1351,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 \ @@ -1258,9 +1366,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 @@ -1318,8 +1430,8 @@ proc show-report {islandname code} { .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 } @@ -1329,19 +1441,23 @@ proc show-report {islandname code} { } 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" } } } -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 } @@ -1390,6 +1506,7 @@ proc invoke_notes {} { #---------- main program ---------- +init-scales parseargs argdefaults httpclientsetup where-vessels @@ -1405,7 +1522,9 @@ if {[catch { parse-clipboard } emsg]} { puts stderr "$emsg\n$errorInfo" exit 1 } -after idle invoke_notes +if {[have-notes]} { + after idle invoke_notes +} draw @@ -1416,4 +1535,10 @@ if {$debug} { -prompt2 { return "> " } } -# rsync -r --exclude=\*~ yarrg/icons/. ijackson@chiark.greenend.org.uk:/home/ftp/users/ijackson/yarrg/vessel-info/. +# 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/.