tcolor
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:11k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #!/bin/sh
  2. # the next line restarts using wish 
  3. exec wish "$0" "$@"
  4. # tcolor --
  5. # This script implements a simple color editor, where you can
  6. # create colors using either the RGB, HSB, or CYM color spaces
  7. # and apply the color to existing applications.
  8. #
  9. # RCS: @(#) $Id: tcolor,v 1.3 2001/10/29 16:23:32 dkf Exp $
  10. wm title . "Color Editor"
  11. # Global variables that control the program:
  12. #
  13. # colorSpace - Color space currently being used for
  14. # editing.  Must be "rgb", "cmy", or "hsb".
  15. # label1, label2, label3 - Labels for the scales.
  16. # red, green, blue - Current color intensities in decimal
  17. # on a scale of 0-65535.
  18. # color - A string giving the current color value
  19. # in the proper form for x:
  20. # #RRRRGGGGBBBB
  21. # updating - Non-zero means that we're in the middle of
  22. # updating the scales to load a new color,so
  23. # information shouldn't be propagating back
  24. # from the scales to other elements of the
  25. # program:  this would make an infinite loop.
  26. # command - Holds the command that has been typed
  27. # into the "Command" entry.
  28. # autoUpdate - 1 means execute the update command
  29. # automatically whenever the color changes.
  30. # name - Name for new color, typed into entry.
  31. set colorSpace hsb
  32. set red 65535
  33. set green 0
  34. set blue 0
  35. set color #ffff00000000
  36. set updating 0
  37. set autoUpdate 1
  38. set name ""
  39. if {$tcl_platform(platform) eq "unix"} {
  40.     option add *Entry.background white
  41. }
  42. # Create the menu bar at the top of the window.
  43. . configure -menu [menu .menu]
  44. menu .menu.file
  45. .menu add cascade  -menu .menu.file  -label File  -underline 0
  46. .menu.file add radio -label "RGB color space" -variable colorSpace 
  47. -value rgb -underline 0 -command {changeColorSpace rgb}
  48. .menu.file add radio -label "CMY color space" -variable colorSpace 
  49. -value cmy -underline 0 -command {changeColorSpace cmy}
  50. .menu.file add radio -label "HSB color space" -variable colorSpace 
  51. -value hsb -underline 0 -command {changeColorSpace hsb}
  52. .menu.file add separator
  53. .menu.file add radio -label "Automatic updates" -variable autoUpdate 
  54. -value 1 -underline 0
  55. .menu.file add radio -label "Manual updates" -variable autoUpdate 
  56. -value 0 -underline 0
  57. .menu.file add separator
  58. .menu.file add command -label "Exit program" -underline 0 -command {exit}
  59. # Create the command entry window at the bottom of the window, along
  60. # with the update button.
  61. labelframe .command -text "Command:" -padx {1m 0}
  62. entry .command.e -relief sunken -borderwidth 2 -textvariable command 
  63. -font {Courier 12}
  64. button .command.update -text Update -command doUpdate
  65. pack .command.update -side right -pady .1c -padx {.25c 0}
  66. pack .command.e -expand yes -fill x -ipadx 0.25c
  67. # Create the listbox that holds all of the color names in rgb.txt,
  68. # if an rgb.txt file can be found.
  69. grid .command -sticky nsew -row 2 -columnspan 3 -padx 1m -pady {0 1m}
  70. grid columnconfigure . {1 2} -weight 1
  71. grid rowconfigure . 0 -weight 1
  72. foreach i {
  73.     /usr/local/lib/X11/rgb.txt /usr/lib/X11/rgb.txt
  74.     /X11/R5/lib/X11/rgb.txt /X11/R4/lib/rgb/rgb.txt
  75.     /usr/openwin/lib/X11/rgb.txt
  76. } {
  77.     if {![file readable $i]} {
  78. continue;
  79.     }
  80.     set f [open $i]
  81.     labelframe .names -text "Select:" -padx .1c -pady .1c
  82.     grid .names -row 0 -column 0 -sticky nsew -padx .15c -pady .15c -rowspan 2
  83.     grid columnconfigure . 0 -weight 1
  84.     listbox .names.lb -width 20 -height 12 -yscrollcommand ".names.s set" 
  85.     -relief sunken -borderwidth 2 -exportselection false
  86.     bind .names.lb <Double-1> {
  87.     tc_loadNamedColor [.names.lb get [.names.lb curselection]]
  88.     }
  89.     scrollbar .names.s -orient vertical -command ".names.lb yview" 
  90.     -relief sunken -borderwidth 2
  91.     pack .names.lb .names.s -side left -fill y -expand 1
  92.     while {[gets $f line] >= 0} {
  93. if {[regexp {^s*d+s+d+s+d+s+(S+)$} $line -> col]} {
  94.     .names.lb insert end $col
  95. }
  96.     }
  97.     close $f
  98.     break
  99. }
  100. # Create the three scales for editing the color, and the entry for
  101. # typing in a color value.
  102. frame .adjust
  103. foreach i {1 2 3} {
  104.     label .adjust.l$i -textvariable label$i -pady 0
  105.     labelframe .adjust.$i -labelwidget .adjust.l$i -padx 1m -pady 1m
  106.     scale .scale$i -from 0 -to 1000 -length 6c -orient horizontal 
  107.     -command tc_scaleChanged
  108.     pack .scale$i -in .adjust.$i
  109.     pack .adjust.$i
  110. }
  111. grid .adjust -row 0 -column 1 -sticky nsew -padx .15c -pady .15c
  112. labelframe .name -text "Name:" -padx 1m -pady 1m
  113. entry .name.e -relief sunken -borderwidth 2 -textvariable name -width 10 
  114. -font {Courier 12}
  115. pack .name.e -side right -expand 1 -fill x
  116. bind .name.e <Return> {tc_loadNamedColor $name}
  117. grid .name   -column 1 -row 1 -sticky nsew -padx .15c -pady .15c
  118. # Create the color display swatch on the right side of the window.
  119. labelframe .sample -text "Color:" -padx 1m -pady 1m
  120. frame .sample.swatch -width 2c -height 5c -background $color
  121. label .sample.value -textvariable color -width 13 -font {Courier 12}
  122. pack .sample.swatch -side top -expand yes -fill both
  123. pack .sample.value -side bottom -pady .25c
  124. grid .sample -row 0 -column 2 -sticky nsew -padx .15c -pady .15c -rowspan 2
  125. # The procedure below is invoked when one of the scales is adjusted.
  126. # It propagates color information from the current scale readings
  127. # to everywhere else that it is used.
  128. proc tc_scaleChanged args {
  129.     global red green blue colorSpace color updating autoUpdate
  130.     if {$updating} {
  131. return
  132.     }
  133.     switch $colorSpace {
  134. rgb {
  135.     set red   [format %.0f [expr {[.scale1 get]*65.535}]]
  136.     set green [format %.0f [expr {[.scale2 get]*65.535}]]
  137.     set blue  [format %.0f [expr {[.scale3 get]*65.535}]]
  138. }
  139. cmy {
  140.     set red   [format %.0f [expr {65535 - [.scale1 get]*65.535}]]
  141.     set green [format %.0f [expr {65535 - [.scale2 get]*65.535}]]
  142.     set blue  [format %.0f [expr {65535 - [.scale3 get]*65.535}]]
  143. }
  144. hsb {
  145.     set list [hsbToRgb [expr {[.scale1 get]/1000.0}] 
  146.     [expr {[.scale2 get]/1000.0}] 
  147.     [expr {[.scale3 get]/1000.0}]]
  148.     set red [lindex $list 0]
  149.     set green [lindex $list 1]
  150.     set blue [lindex $list 2]
  151. }
  152.     }
  153.     set color [format "#%04x%04x%04x" $red $green $blue]
  154.     .sample.swatch config -bg $color
  155.     if {$autoUpdate} doUpdate
  156.     update idletasks
  157. }
  158. # The procedure below is invoked to update the scales from the
  159. # current red, green, and blue intensities.  It's invoked after
  160. # a change in the color space and after a named color value has
  161. # been loaded.
  162. proc tc_setScales {} {
  163.     global red green blue colorSpace updating
  164.     set updating 1
  165.     switch $colorSpace {
  166. rgb {
  167.     .scale1 set [format %.0f [expr {$red/65.535}]]
  168.     .scale2 set [format %.0f [expr {$green/65.535}]]
  169.     .scale3 set [format %.0f [expr {$blue/65.535}]]
  170. }
  171. cmy {
  172.     .scale1 set [format %.0f [expr {(65535-$red)/65.535}]]
  173.     .scale2 set [format %.0f [expr {(65535-$green)/65.535}]]
  174.     .scale3 set [format %.0f [expr {(65535-$blue)/65.535}]]
  175. }
  176. hsb {
  177.     set list [rgbToHsv $red $green $blue]
  178.     .scale1 set [format %.0f [expr {[lindex $list 0] * 1000.0}]]
  179.     .scale2 set [format %.0f [expr {[lindex $list 1] * 1000.0}]]
  180.     .scale3 set [format %.0f [expr {[lindex $list 2] * 1000.0}]]
  181. }
  182.     }
  183.     set updating 0
  184. }
  185. # The procedure below is invoked when a named color has been
  186. # selected from the listbox or typed into the entry.  It loads
  187. # the color into the editor.
  188. proc tc_loadNamedColor name {
  189.     global red green blue color autoUpdate
  190.     if {[string index $name 0] != "#"} {
  191. set list [winfo rgb .sample.swatch $name]
  192. set red [lindex $list 0]
  193. set green [lindex $list 1]
  194. set blue [lindex $list 2]
  195.     } else {
  196. switch [string length $name] {
  197.     4  {set format "#%1x%1x%1x"; set shift 12}
  198.     7  {set format "#%2x%2x%2x"; set shift 8}
  199.     10 {set format "#%3x%3x%3x"; set shift 4}
  200.     13 {set format "#%4x%4x%4x"; set shift 0}
  201.     default {error "syntax error in color name "$name""}
  202. }
  203. if {[scan $name $format red green blue] != 3} {
  204.     error "syntax error in color name "$name""
  205. }
  206. set red   [expr {$red<<$shift}]
  207. set green [expr {$green<<$shift}]
  208. set blue  [expr {$blue<<$shift}]
  209.     }
  210.     tc_setScales
  211.     set color [format "#%04x%04x%04x" $red $green $blue]
  212.     .sample.swatch config -bg $color
  213.     if {$autoUpdate} doUpdate
  214. }
  215. # The procedure below is invoked when a new color space is selected.
  216. # It changes the labels on the scales and re-loads the scales with
  217. # the appropriate values for the current color in the new color space
  218. proc changeColorSpace space {
  219.     global label1 label2 label3
  220.     switch $space {
  221. rgb {
  222.     set label1 "Adjust Red:"
  223.     set label2 "Adjust Green:"
  224.     set label3 "Adjust Blue:"
  225.     tc_setScales
  226.     return
  227. }
  228. cmy {
  229.     set label1 "Adjust Cyan:"
  230.     set label2 "Adjust Magenta:"
  231.     set label3 "Adjust Yellow:"
  232.     tc_setScales
  233.     return
  234. }
  235. hsb {
  236.     set label1 "Adjust Hue:"
  237.     set label2 "Adjust Saturation:"
  238.     set label3 "Adjust Brightness:"
  239.     tc_setScales
  240.     return
  241. }
  242.     }
  243. }
  244. # The procedure below converts an RGB value to HSB.  It takes red, green,
  245. # and blue components (0-65535) as arguments, and returns a list containing
  246. # HSB components (floating-point, 0-1) as result.  The code here is a copy
  247. # of the code on page 615 of "Fundamentals of Interactive Computer Graphics"
  248. # by Foley and Van Dam.
  249. proc rgbToHsv {red green blue} {
  250.     if {$red > $green} {
  251. set max [expr {double($red)}]
  252. set min [expr {double($green)}]
  253.     } else {
  254. set max [expr {double($green)}]
  255. set min [expr {double($red)}]
  256.     }
  257.     if {$blue > $max} {
  258. set max [expr {double($blue)}]
  259.     } elseif {$blue < $min} {
  260. set min [expr {double($blue)}]
  261.     }
  262.     set range [expr {$max-$min}]
  263.     if {$max == 0} {
  264. set sat 0
  265.     } else {
  266. set sat [expr {($max-$min)/$max}]
  267.     }
  268.     if {$sat == 0} {
  269. set hue 0
  270.     } else {
  271. set rc [expr {($max - $red)/$range}]
  272. set gc [expr {($max - $green)/$range}]
  273. set bc [expr {($max - $blue)/$range}]
  274. if {$red == $max} {
  275.     set hue [expr {($bc - $gc)/6.0}]
  276. } elseif {$green == $max} {
  277.     set hue [expr {(2 + $rc - $bc)/6.0}]
  278. } else {
  279.     set hue [expr {(4 + $gc - $rc)/6.0}]
  280. }
  281. if {$hue < 0.0} {
  282.     set hue [expr {$hue + 1.0}]
  283. }
  284.     }
  285.     return [list $hue $sat [expr {$max/65535}]]
  286. }
  287. # The procedure below converts an HSB value to RGB.  It takes hue, saturation,
  288. # and value components (floating-point, 0-1.0) as arguments, and returns a
  289. # list containing RGB components (integers, 0-65535) as result.  The code
  290. # here is a copy of the code on page 616 of "Fundamentals of Interactive
  291. # Computer Graphics" by Foley and Van Dam.
  292. proc hsbToRgb {hue sat value} {
  293.     set v [format %.0f [expr {65535.0*$value}]]
  294.     if {$sat == 0} {
  295. return "$v $v $v"
  296.     } else {
  297. set hue [expr {$hue*6.0}]
  298. if {$hue >= 6.0} {
  299.     set hue 0.0
  300. }
  301. scan $hue. %d i
  302. set f [expr {$hue-$i}]
  303. set p [format %.0f [expr {65535.0*$value*(1 - $sat)}]]
  304. set q [format %.0f [expr {65535.0*$value*(1 - ($sat*$f))}]]
  305. set t [format %.0f [expr {65535.0*$value*(1 - ($sat*(1 - $f)))}]]
  306. switch $i {
  307.     0 {return "$v $t $p"}
  308.     1 {return "$q $v $p"}
  309.     2 {return "$p $v $t"}
  310.     3 {return "$p $q $v"}
  311.     4 {return "$t $p $v"}
  312.     5 {return "$v $p $q"}
  313.     default {error "i value $i is out of range"}
  314. }
  315.     }
  316. }
  317. # The procedure below is invoked when the "Update" button is pressed,
  318. # and whenever the color changes if update mode is enabled.  It
  319. # propagates color information as determined by the command in the
  320. # Command entry.
  321. proc doUpdate {} {
  322.     global color command
  323.     set newCmd $command
  324.     regsub -all %% $command $color newCmd
  325.     eval $newCmd
  326. }
  327. changeColorSpace hsb
  328. # Local Variables:
  329. # mode: tcl
  330. # End: