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

通讯编程

开发平台:

Visual C++

  1. # puzzle.tcl --
  2. #
  3. # This demonstration script creates a 15-puzzle game using a collection
  4. # of buttons.
  5. #
  6. # RCS: @(#) $Id: puzzle.tcl,v 1.4.2.1 2007/04/29 02:24:24 das Exp $
  7. if {![info exists widgetDemo]} {
  8.     error "This script should be run from the "widget" demo."
  9. }
  10. # puzzleSwitch --
  11. # This procedure is invoked when the user clicks on a particular button;
  12. # if the button is next to the empty space, it moves the button into th
  13. # empty space.
  14. proc puzzleSwitch {w num} {
  15.     global xpos ypos
  16.     if {(($ypos($num) >= ($ypos(space) - .01))
  17.     && ($ypos($num) <= ($ypos(space) + .01))
  18.     && ($xpos($num) >= ($xpos(space) - .26))
  19.     && ($xpos($num) <= ($xpos(space) + .26)))
  20.     || (($xpos($num) >= ($xpos(space) - .01))
  21.     && ($xpos($num) <= ($xpos(space) + .01))
  22.     && ($ypos($num) >= ($ypos(space) - .26))
  23.     && ($ypos($num) <= ($ypos(space) + .26)))} {
  24. set tmp $xpos(space)
  25. set xpos(space) $xpos($num)
  26. set xpos($num) $tmp
  27. set tmp $ypos(space)
  28. set ypos(space) $ypos($num)
  29. set ypos($num) $tmp
  30. place $w.frame.$num -relx $xpos($num) -rely $ypos($num)
  31.     }
  32. }
  33. set w .puzzle
  34. catch {destroy $w}
  35. toplevel $w
  36. wm title $w "15-Puzzle Demonstration"
  37. wm iconname $w "15-Puzzle"
  38. positionWindow $w
  39. label $w.msg -font $font -wraplength 4i -justify left -text "A 15-puzzle appears below as a collection of buttons.  Click on any of the pieces next to the space, and that piece will slide over the space.  Continue this until the pieces are arranged in numerical order from upper-left to lower-right."
  40. pack $w.msg -side top
  41. frame $w.buttons
  42. pack $w.buttons -side bottom -fill x -pady 2m
  43. button $w.buttons.dismiss -text Dismiss -command "destroy $w"
  44. button $w.buttons.code -text "See Code" -command "showCode $w"
  45. pack $w.buttons.dismiss $w.buttons.code -side left -expand 1
  46. # Special trick: select a darker color for the space by creating a
  47. # scrollbar widget and using its trough color.
  48. scrollbar $w.s
  49. # The button metrics are a bit bigger in Aqua, and since we are
  50. # using place which doesn't autosize, then we need to have a 
  51. # slightly larger frame here...
  52. if {[tk windowingsystem] eq "aqua"} {
  53.     set frameSize 168
  54. } else {
  55.     set frameSize 120
  56. }
  57. frame $w.frame -width $frameSize -height $frameSize -borderwidth 2
  58. -relief sunken -bg [$w.s cget -troughcolor]
  59. pack $w.frame -side top -pady 1c -padx 1c
  60. destroy $w.s
  61. set order {3 1 6 2 5 7 15 13 4 11 8 9 14 10 12}
  62. for {set i 0} {$i < 15} {set i [expr {$i+1}]} {
  63.     set num [lindex $order $i]
  64.     set xpos($num) [expr {($i%4)*.25}]
  65.     set ypos($num) [expr {($i/4)*.25}]
  66.     button $w.frame.$num -relief raised -text $num -highlightthickness 0 
  67.     -command "puzzleSwitch $w $num"
  68.     place $w.frame.$num -relx $xpos($num) -rely $ypos($num) 
  69. -relwidth .25 -relheight .25
  70. }
  71. set xpos(space) .75
  72. set ypos(space) .75