X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.web-live.git;a=blobdiff_plain;f=yarrg%2Fwhere-vessels;h=d6ce007785919ea21f67911f8d1532ac9bcc018f;hp=c6636d6a96ff20bcf6c45eddf370dc4396ca874a;hb=ea3cffe854b1c540bc68cd2218fdb2be732197fa;hpb=5ec8840d7a85a2eb96eea32c50c1139c83f92c70 diff --git a/yarrg/where-vessels b/yarrg/where-vessels index c6636d6..d6ce007 100755 --- a/yarrg/where-vessels +++ b/yarrg/where-vessels @@ -289,6 +289,7 @@ proc vesselclasses-init {} { global vsc_game2code set vsc_game2code(null) {} set vsc_code2report() Ordinary + 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 @@ -304,14 +305,16 @@ proc vesselclasses-init {} { } 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" @@ -361,8 +364,14 @@ proc code2canvas {code canvas x yvar qty qtylen bind} { incr stackx } + upvar #0 vc_code2abbrev($class) vcabb + if {![info exists vcabb]} { + set vcabb vc-$class + image create bitmap icon/$vcabb -data \ + [exec pbmtext -builtin fixed $class | 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 \ @@ -427,6 +436,35 @@ proc show-report-decode {code} { } } +#---------- smashing ---------- + +set smash_subclass 0 + +proc smash-code {code} { + manyset [split $code _] inport class subclass lockown xabbrev + + global smash_subclass + if {$smash_subclass > 1} { + set subclass {} + } elseif {$smash_subclass && [string length $subclass]} { + set subclass ! + } + + return [join [list $inport $class $subclass $lockown $xabbrev] _] +} + +proc make-radio-smasher {w label variable descs} { + frame $w + label $w.label -text $label + pack $w.label -side left + for {set i 0} {$i < [llength $descs]} {incr i} { + radiobutton $w.v$i \ + -variable $variable -value $i -command redraw-needed \ + -text [lindex $descs $i] + pack $w.v$i -side left + } +} + #---------- filtering ---------- set filters {} @@ -602,7 +640,18 @@ proc vessel {vin} { set gameclass [errexpect-arrayget vi vesselClass] upvar #0 vc_game2code($gameclass) class - if {![info exists class]} { errexpect-error "unexpected vesselClass"} + if {![info exists class]} { + set class "($gameclass)" + upvar #0 vc_code2abbrev($class) vcabb + set vcabb vc-$class + set data [exec pbmtext -builtin fixed " $gameclass " \ + | pnminvert | pnmcrop | pbmtoxbm] + debug "INVENTED ICON $vcabb $data" + image create bitmap icon/$vcabb -data $data + + global vc_code2full + set vc_code2full($class) "Type \"$gameclass\"" + } lappend codel $class set gamesubclass [errexpect-arrayget vi vesselSubclass] @@ -725,7 +774,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", @_; } ); @@ -742,17 +791,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" @@ -773,7 +824,7 @@ proc redraw-needed {} { } 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 } @@ -786,12 +837,21 @@ proc draw {} { eval chart-got/$proc [lrange $l 1 end] } - set islandnames {} - set lastislandname {} + catch { unset smfound } foreach key [lsort [array names found]] { - set c [llength $found($key)] -# debug "SHOWING $key $c" regexp {^(.*) (\S+)$} $key dummy islandname code + set smcode [smash-code $code] + debug "smashed $code => $smcode" + set smkey "$islandname $smcode" + foreach vessel $found($key) { lappend smfound($smkey) $vessel } + } + + set islandnames {} + set lastislandname {} + foreach smkey [lsort [array names smfound]] { + set c [llength $smfound($smkey)] +# debug "SHOWING $smkey $c" + regexp {^(.*) (\S+)$} $smkey dummy islandname code if {![filters-say-yes $code]} continue @@ -1002,9 +1062,17 @@ 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 + + label .smash.title -text Smash + pack .smash.title -side top + + make-radio-smasher .smash.subclass Subclass smash_subclass \ + {Show Normal/LE Hide} + pack .smash.subclass -side top set filterstyle 1 trace add variable filterstyle write filterstyle-changed @@ -1104,7 +1172,7 @@ proc show-report {islandname code} { show-report-decode $code set kk "$islandname $code" - upvar #0 found($kk) k + upvar #0 smfound($kk) k .cp.report.list delete 0 end @@ -1197,3 +1265,5 @@ if {[catch { parse-clipboard } emsg]} { after idle invoke_notes draw + +# rsync -r --exclude=\*~ yarrg/icons/. ijackson@chiark.greenend.org.uk:/home/ftp/users/ijackson/yarrg/vessel-info/.