annotate lisp/play/hanoi.el @ 112442:76fa839f455e

* Makefile.in (MAKEINFO): Now controlled by `configure'. (MAKEINFO_OPTS): New variable. Use it where appropriate. (ENVADD): New variable to control texi2dvi and texi2pdf.
author Werner Lemberg <wl@gnu.org>
date Sun, 23 Jan 2011 11:22:21 +0100
parents ef719132ddfa
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
1 ;;; hanoi.el --- towers of hanoi in Emacs
660
08eb386dd0f3 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 258
diff changeset
2
793
6fb68a1460a6 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 663
diff changeset
3 ;; Author: Damon Anton Permezel
6fb68a1460a6 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 663
diff changeset
4 ;; Maintainer: FSF
6fb68a1460a6 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 663
diff changeset
5 ;; Keywords: games
6fb68a1460a6 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 663
diff changeset
6
53
a8efef5eb891 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
7 ; Author (a) 1985, Damon Anton Permezel
663
3587b3dfac25 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 660
diff changeset
8 ; This is in the public domain
104847
7c8f37f3e00d Reword header to fool copyright-update-year.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
9 ; since he distributed it in 1985 without copyright notice.
38412
253f761ad37b Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents: 28091
diff changeset
10 ;; This file is part of GNU Emacs.
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
11 ;
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
12 ; Support for horizontal poles, large numbers of rings, real-time,
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
13 ; faces, defcustom, and Towers of Unix added in 1999 by Alakazam
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
14 ; Petrofsky <Alakazam@Petrofsky.Berkeley.CA.US>.
53
a8efef5eb891 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
15
2307
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
16 ;;; Commentary:
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
17
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
18 ;; Solves the Towers of Hanoi puzzle while-U-wait.
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
19 ;;
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
20 ;; The puzzle: Start with N rings, decreasing in sizes from bottom to
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
21 ;; top, stacked around a post. There are two other posts. Your mission,
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
22 ;; should you choose to accept it, is to shift the pile, stacked in its
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
23 ;; original order, to another post.
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
24 ;;
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
25 ;; The challenge is to do it in the fewest possible moves. Each move
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
26 ;; shifts one ring to a different post. But there's a rule; you can
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
27 ;; only stack a ring on top of a larger one.
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
28 ;;
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
29 ;; The simplest nontrivial version of this puzzle is N = 3. Solution
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
30 ;; time rises as 2**N, and programs to solve it have long been considered
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
31 ;; classic introductory exercises in the use of recursion.
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
32 ;;
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
33 ;; The puzzle is called `Towers of Hanoi' because an early popular
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
34 ;; presentation wove a fanciful legend around it. According to this
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
35 ;; myth (uttered long before the Vietnam War), there is a Buddhist
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
36 ;; monastery at Hanoi which contains a large room with three time-worn
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
37 ;; posts in it surrounded by 21 golden discs. Monks, acting out the
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
38 ;; command of an ancient prophecy, have been moving these disks, in
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
39 ;; accordance with the rules of the puzzle, once every day since the
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
40 ;; monastery was founded over a thousand years ago. They are said to
2307
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
41 ;; believe that when the last move of the puzzle is completed, the
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
42 ;; world will end in a clap of thunder. Fortunately, they are nowhere
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
43 ;; even close to being done...
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
44 ;;
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
45 ;; 1999 addition: The `Towers of Unix' command (hanoi-unix) stems from
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
46 ;; the never-disproven legend of a Eunuch monastery at Princeton that
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
47 ;; contains a large air-conditioned room with three time-worn posts in
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
48 ;; it surrounded by 32 silicon discs. Nimble monks, acting out the
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
49 ;; command of an ancient prophecy, have been moving these disks, in
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
50 ;; accordance with the rules of the puzzle, once every second since
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
51 ;; the monastery was founded almost a billion seconds ago. They are
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
52 ;; said to believe that when the last move of the puzzle is completed,
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
53 ;; the world will reboot in a clap of thunder. Actually, because the
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
54 ;; bottom disc is blocked by the "Do not feed the monks" sign, it is
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
55 ;; believed the End will come at the time that disc is to be moved...
2307
10e417efb12a Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 1663
diff changeset
56
793
6fb68a1460a6 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 663
diff changeset
57 ;;; Code:
6fb68a1460a6 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 663
diff changeset
58
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
59 (eval-when-compile
25329
dca526aca149 Declare dynamic vars.
Dave Love <fx@gnu.org>
parents: 25259
diff changeset
60 (require 'cl)
dca526aca149 Declare dynamic vars.
Dave Love <fx@gnu.org>
parents: 25259
diff changeset
61 ;; dynamic bondage:
dca526aca149 Declare dynamic vars.
Dave Love <fx@gnu.org>
parents: 25259
diff changeset
62 (defvar baseward-step)
dca526aca149 Declare dynamic vars.
Dave Love <fx@gnu.org>
parents: 25259
diff changeset
63 (defvar fly-step)
dca526aca149 Declare dynamic vars.
Dave Love <fx@gnu.org>
parents: 25259
diff changeset
64 (defvar fly-row-start)
dca526aca149 Declare dynamic vars.
Dave Love <fx@gnu.org>
parents: 25259
diff changeset
65 (defvar pole-width)
dca526aca149 Declare dynamic vars.
Dave Love <fx@gnu.org>
parents: 25259
diff changeset
66 (defvar pole-char)
dca526aca149 Declare dynamic vars.
Dave Love <fx@gnu.org>
parents: 25259
diff changeset
67 (defvar line-offset))
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
68
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
69 (defgroup hanoi nil
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
70 "The Towers of Hanoi."
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
71 :group 'games)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
72
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
73 (defcustom hanoi-horizontal-flag nil
104847
7c8f37f3e00d Reword header to fool copyright-update-year.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
74 "If non-nil, hanoi poles are oriented horizontally."
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
75 :group 'hanoi :type 'boolean)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
76
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
77 (defcustom hanoi-move-period 1.0
104847
7c8f37f3e00d Reword header to fool copyright-update-year.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
78 "Time, in seconds, for each pole-to-pole move of a ring.
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
79 If nil, move rings as fast as possible while displaying all
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
80 intermediate positions."
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
81 :group 'hanoi :type '(restricted-sexp :match-alternatives (numberp 'nil)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
82
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
83 (defcustom hanoi-use-faces nil
104847
7c8f37f3e00d Reword header to fool copyright-update-year.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
84 "If nil, all hanoi-*-face variables are ignored."
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
85 :group 'hanoi :type 'boolean)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
86
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
87 (defcustom hanoi-pole-face 'highlight
104847
7c8f37f3e00d Reword header to fool copyright-update-year.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
88 "Face for poles. Ignored if hanoi-use-faces is nil."
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
89 :group 'hanoi :type 'face)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
90
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
91 (defcustom hanoi-base-face 'highlight
104847
7c8f37f3e00d Reword header to fool copyright-update-year.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
92 "Face for base. Ignored if hanoi-use-faces is nil."
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
93 :group 'hanoi :type 'face)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
94
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
95 (defcustom hanoi-even-ring-face 'region
104847
7c8f37f3e00d Reword header to fool copyright-update-year.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
96 "Face for even-numbered rings. Ignored if hanoi-use-faces is nil."
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
97 :group 'hanoi :type 'face)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
98
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
99 (defcustom hanoi-odd-ring-face 'secondary-selection
104847
7c8f37f3e00d Reword header to fool copyright-update-year.
Glenn Morris <rgm@gnu.org>
parents: 93975
diff changeset
100 "Face for odd-numbered rings. Ignored if hanoi-use-faces is nil."
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
101 :group 'hanoi :type 'face)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
102
53
a8efef5eb891 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
103
a8efef5eb891 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
104 ;;;
a8efef5eb891 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
105 ;;; hanoi - user callable Towers of Hanoi
a8efef5eb891 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
106 ;;;
258
1e0bc00dca7a *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 53
diff changeset
107 ;;;###autoload
53
a8efef5eb891 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
108 (defun hanoi (nrings)
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 38412
diff changeset
109 "Towers of Hanoi diversion. Use NRINGS rings."
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
110 (interactive
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
111 (list (if (null current-prefix-arg)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
112 3
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
113 (prefix-numeric-value current-prefix-arg))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
114 (if (< nrings 0)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
115 (error "Negative number of rings"))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
116 (hanoi-internal nrings (make-list nrings 0) (hanoi-current-time-float)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
117
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
118 ;;;###autoload
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
119 (defun hanoi-unix ()
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
120 "Towers of Hanoi, UNIX doomsday version.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
121 Displays 32-ring towers that have been progressing at one move per
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
122 second since 1970-01-01 00:00:00 GMT.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
123
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
124 Repent before ring 31 moves."
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
125 (interactive)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
126 (let* ((start (ftruncate (hanoi-current-time-float)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
127 (bits (loop repeat 32
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
128 for x = (/ start (expt 2.0 31)) then (* x 2.0)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
129 collect (truncate (mod x 2.0))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
130 (hanoi-move-period 1.0))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
131 (hanoi-internal 32 bits start)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
132
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
133 ;;;###autoload
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
134 (defun hanoi-unix-64 ()
49598
0d8b17d428b5 Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 38412
diff changeset
135 "Like hanoi-unix, but pretend to have a 64-bit clock.
73734
31a51cfc02a0 (hanoi-unix-64): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 71763
diff changeset
136 This is, necessarily (as of Emacs 20.3), a crock. When the
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
137 current-time interface is made s2G-compliant, hanoi.el will need
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
138 to be updated."
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
139 (interactive)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
140 (let* ((start (ftruncate (hanoi-current-time-float)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
141 (bits (loop repeat 64
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
142 for x = (/ start (expt 2.0 63)) then (* x 2.0)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
143 collect (truncate (mod x 2.0))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
144 (hanoi-move-period 1.0))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
145 (hanoi-internal 64 bits start)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
146
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
147 (defun hanoi-internal (nrings bits start-time)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
148 "Towers of Hanoi internal interface. Use NRINGS rings.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
149 Start after n steps, where BITS is a big-endian list of the bits of n.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
150 BITS must be of length nrings. Start at START-TIME."
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
151 (switch-to-buffer "*Hanoi*")
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
152 (buffer-disable-undo (current-buffer))
92050
39bcab1d5d10 (hanoi-internal): Set `show-trailing-whitespace' to nil.
Juanma Barranquero <lekktu@gmail.com>
parents: 73734
diff changeset
153 (setq show-trailing-whitespace nil)
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
154 (unwind-protect
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
155 (let*
73734
31a51cfc02a0 (hanoi-unix-64): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 71763
diff changeset
156 (;; These lines can cause Emacs to crash if you ask for too
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
157 ;; many rings. If you uncomment them, on most systems you
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
158 ;; can get 10,000+ rings.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
159 ;;(max-specpdl-size (max max-specpdl-size (* nrings 15)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
160 ;;(max-lisp-eval-depth (max max-lisp-eval-depth (+ nrings 20)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
161 (vert (not hanoi-horizontal-flag))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
162 (pole-width (length (format "%d" (max 0 (1- nrings)))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
163 (pole-char (if vert ?\| ?\-))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
164 (base-char (if vert ?\= ?\|))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
165 (base-len (max (+ 8 (* pole-width 3))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
166 (1- (if vert (window-width) (window-height)))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
167 (max-ring-diameter (/ (- base-len 2) 3))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
168 (pole1-coord (/ max-ring-diameter 2))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
169 (pole2-coord (/ base-len 2))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
170 (pole3-coord (- base-len (/ (1+ max-ring-diameter) 2)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
171 (pole-coords (list pole1-coord pole2-coord pole3-coord))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
172 ;; Number of lines displayed below the bottom-most rings.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
173 (base-lines
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
174 (min 3 (max 0 (- (1- (if vert (window-height) (window-width)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
175 (+ 2 nrings)))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
176
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
177 ;; These variables will be set according to hanoi-horizontal-flag:
1663
a5eec33a8f44 Tue Dec 1 22:34:42 1992 Jim Blandy (jimb@totoro.cs.oberlin.edu)
Jim Blandy <jimb@redhat.com>
parents: 845
diff changeset
178
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
179 ;; line-offset is the number of characters per line in the buffer.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
180 line-offset
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
181 ;; fly-row-start is the buffer position of the leftmost or
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
182 ;; uppermost position in the fly row.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
183 fly-row-start
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
184 ;; Adding fly-step to a buffer position moves you one step
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
185 ;; along the fly row in the direction from pole1 to pole2.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
186 fly-step
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
187 ;; Adding baseward-step to a buffer position moves you one step
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
188 ;; toward the base.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
189 baseward-step
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
190 )
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
191 (setq buffer-read-only nil)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
192 (erase-buffer)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
193 (setq truncate-lines t)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
194 (if hanoi-horizontal-flag
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
195 (progn
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
196 (setq line-offset (+ base-lines nrings 3))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
197 (setq fly-row-start (1- line-offset))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
198 (setq fly-step line-offset)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
199 (setq baseward-step -1)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
200 (loop repeat base-len do
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
201 (unless (zerop base-lines)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
202 (insert-char ?\ (1- base-lines))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
203 (insert base-char)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
204 (hanoi-put-face (1- (point)) (point) hanoi-base-face))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
205 (insert-char ?\ (+ 2 nrings))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
206 (insert ?\n))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
207 (delete-char -1)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
208 (loop for coord in pole-coords do
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
209 (loop for row from (- coord (/ pole-width 2))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
210 for start = (+ (* row line-offset) base-lines 1)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
211 repeat pole-width do
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
212 (subst-char-in-region start (+ start nrings 1)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
213 ?\ pole-char)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
214 (hanoi-put-face start (+ start nrings 1)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
215 hanoi-pole-face))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
216 ;; vertical
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
217 (setq line-offset (1+ base-len))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
218 (setq fly-step 1)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
219 (setq baseward-step line-offset)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
220 (let ((extra-lines (- (1- (window-height)) (+ nrings 2) base-lines)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
221 (insert-char ?\n (max 0 extra-lines))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
222 (setq fly-row-start (point))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
223 (insert-char ?\ base-len)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
224 (insert ?\n)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
225 (loop repeat (1+ nrings)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
226 with pole-line =
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
227 (loop with line = (make-string base-len ?\ )
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
228 for coord in pole-coords
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
229 for start = (- coord (/ pole-width 2))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
230 for end = (+ start pole-width) do
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
231 (hanoi-put-face start end hanoi-pole-face line)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
232 (loop for i from start below end do
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
233 (aset line i pole-char))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
234 finally return line)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
235 do (insert pole-line ?\n))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
236 (insert-char base-char base-len)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
237 (hanoi-put-face (- (point) base-len) (point) hanoi-base-face)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
238 (set-window-start (selected-window)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
239 (1+ (* baseward-step
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
240 (max 0 (- extra-lines)))))))
53
a8efef5eb891 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
241
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
242 (let
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
243 (;; each pole is a pair of buffer positions:
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
244 ;; the car is the position of the top ring currently on the pole,
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
245 ;; (or the base of the pole if it is empty).
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
246 ;; the cdr is in the fly-row just above the pole.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
247 (poles (loop for coord in pole-coords
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
248 for fly-pos = (+ fly-row-start (* fly-step coord))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
249 for base = (+ fly-pos (* baseward-step (+ 2 nrings)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
250 collect (cons base fly-pos)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
251 ;; compute the string for each ring and make the list of
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
252 ;; ring pairs. Each ring pair is initially (str . diameter).
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
253 ;; Once placed in buffer it is changed to (center-pos . diameter).
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
254 (rings
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
255 (loop
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
256 ;; radii are measured from the edge of the pole out.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
257 ;; So diameter = 2 * radius + pole-width. When
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
258 ;; there's room, we make each ring's radius =
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
259 ;; pole-number + 1. If there isn't room, we step
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
260 ;; evenly from the max radius down to 1.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
261 with max-radius = (min nrings
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
262 (/ (- max-ring-diameter pole-width) 2))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
263 for n from (1- nrings) downto 0
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
264 for radius = (1+ (/ (* n max-radius) nrings))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
265 for diameter = (+ pole-width (* 2 radius))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
266 with format-str = (format "%%0%dd" pole-width)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
267 for str = (concat (if vert "<" "^")
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
268 (make-string (1- radius) (if vert ?\- ?\|))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
269 (format format-str n)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
270 (make-string (1- radius) (if vert ?\- ?\|))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
271 (if vert ">" "v"))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
272 for face =
28091
d28d789a8521 (hanoi-internal): Don't use oddp.
Dave Love <fx@gnu.org>
parents: 25329
diff changeset
273 (if (eq (logand n 1) 1) ; oddp would require cl at runtime
d28d789a8521 (hanoi-internal): Don't use oddp.
Dave Love <fx@gnu.org>
parents: 25329
diff changeset
274 hanoi-odd-ring-face hanoi-even-ring-face)
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
275 do (hanoi-put-face 0 (length str) face str)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
276 collect (cons str diameter)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
277 ;; Disable display of line and column numbers, for speed.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
278 (line-number-mode nil) (column-number-mode nil))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
279 ;; do it!
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
280 (hanoi-n bits rings (car poles) (cadr poles) (caddr poles)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
281 start-time))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
282 (message "Done"))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
283 (setq buffer-read-only t)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
284 (force-mode-line-update)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
285
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
286 (defun hanoi-current-time-float ()
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
287 "Return values from current-time combined into a single float."
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
288 (destructuring-bind (high low micros) (current-time)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
289 (+ (* high 65536.0) low (/ micros 1000000.0))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
290
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
291 (defun hanoi-put-face (start end value &optional object)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
292 "If hanoi-use-faces is non-nil, call put-text-property for face property."
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
293 (if hanoi-use-faces
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
294 (put-text-property start end 'face value object)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
295
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
296
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
297 ;;; Functions with a start-time argument (hanoi-0, hanoi-n, and
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
298 ;;; hanoi-move-ring) start working at start-time and return the ending
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
299 ;;; time. If hanoi-move-period is nil, start-time is ignored and the
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
300 ;;; return value is junk.
53
a8efef5eb891 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
301
a8efef5eb891 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
302 ;;;
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
303 ;;; hanoi-0 - work horse of hanoi
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
304 (defun hanoi-0 (rings from to work start-time)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
305 (if (null rings)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
306 start-time
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
307 (hanoi-0 (cdr rings) work to from
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
308 (hanoi-move-ring (car rings) from to
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
309 (hanoi-0 (cdr rings) from work to start-time)))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
310
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
311 ;; start after n moves, where BITS is a big-endian list of the bits of n.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
312 ;; BITS must be of same length as rings.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
313 (defun hanoi-n (bits rings from to work start-time)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
314 (cond ((null rings)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
315 ;; All rings have been placed in starting positions. Update display.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
316 (hanoi-sit-for 0)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
317 start-time)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
318 ((zerop (car bits))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
319 (hanoi-insert-ring (car rings) from)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
320 (hanoi-0 (cdr rings) work to from
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
321 (hanoi-move-ring (car rings) from to
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
322 (hanoi-n (cdr bits) (cdr rings) from work to
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
323 start-time))))
53
a8efef5eb891 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
324 (t
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
325 (hanoi-insert-ring (car rings) to)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
326 (hanoi-n (cdr bits) (cdr rings) work to from start-time))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
327
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
328 ;; put never-before-placed RING on POLE and update their cars.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
329 (defun hanoi-insert-ring (ring pole)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
330 (decf (car pole) baseward-step)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
331 (let ((str (car ring))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
332 (start (- (car pole) (* (/ (cdr ring) 2) fly-step))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
333 (setcar ring (car pole))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
334 (loop for pos upfrom start by fly-step
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
335 for i below (cdr ring) do
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
336 (subst-char-in-region pos (1+ pos) (char-after pos) (aref str i))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
337 (set-text-properties pos (1+ pos) (text-properties-at i str)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
338 (hanoi-goto-char (car pole))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
339
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
340 ;; like goto-char, but if position is outside the window, then move to
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
341 ;; corresponding position in the first row displayed.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
342 (defun hanoi-goto-char (pos)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
343 (goto-char (if (or hanoi-horizontal-flag (<= (window-start) pos))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
344 pos
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
345 (+ (window-start) (% (- pos fly-row-start) baseward-step)))))
53
a8efef5eb891 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
346
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
347 ;; do one pole-to-pole move and update the ring and pole pairs.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
348 (defun hanoi-move-ring (ring from to start-time)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
349 (incf (car from) baseward-step)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
350 (decf (car to) baseward-step)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
351 (let* ;; We move flywards-steps steps up the pole to the fly row,
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
352 ;; then fly fly-steps steps across the fly row, then go
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
353 ;; baseward-steps steps down the new pole.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
354 ((flyward-steps (/ (- (car ring) (cdr from)) baseward-step))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
355 (fly-steps (abs (/ (- (cdr to) (cdr from)) fly-step)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
356 (directed-fly-step (/ (- (cdr to) (cdr from)) fly-steps))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
357 (baseward-steps (/ (- (car to) (cdr to)) baseward-step))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
358 (total-steps (+ flyward-steps fly-steps baseward-steps))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
359 ;; A step is a character cell. A tick is a time-unit. To
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
360 ;; make horizontal and vertical motion appear roughly the
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
361 ;; same speed, we allow one tick per horizontal step and two
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
362 ;; ticks per vertical step.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
363 (ticks-per-pole-step (if hanoi-horizontal-flag 1 2))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
364 (ticks-per-fly-step (if hanoi-horizontal-flag 2 1))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
365 (flyward-ticks (* ticks-per-pole-step flyward-steps))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
366 (fly-ticks (* ticks-per-fly-step fly-steps))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
367 (baseward-ticks (* ticks-per-pole-step baseward-steps))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
368 (total-ticks (+ flyward-ticks fly-ticks baseward-ticks))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
369 (tick-to-pos
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
370 ;; Return the buffer position of the ring after TICK ticks.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
371 (lambda (tick)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
372 (cond
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
373 ((<= tick flyward-ticks)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
374 (+ (cdr from)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
375 (* baseward-step
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
376 (- flyward-steps (/ tick ticks-per-pole-step)))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
377 ((<= tick (+ flyward-ticks fly-ticks))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
378 (+ (cdr from)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
379 (* directed-fly-step
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
380 (/ (- tick flyward-ticks) ticks-per-fly-step))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
381 (t
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
382 (+ (cdr to)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
383 (* baseward-step
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
384 (/ (- tick flyward-ticks fly-ticks)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
385 ticks-per-pole-step))))))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
386 (if hanoi-move-period
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
387 (loop for elapsed = (- (hanoi-current-time-float) start-time)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
388 while (< elapsed hanoi-move-period)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
389 with tick-period = (/ (float hanoi-move-period) total-ticks)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
390 for tick = (ceiling (/ elapsed tick-period)) do
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
391 (hanoi-ring-to-pos ring (funcall tick-to-pos tick))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
392 (hanoi-sit-for (- (* tick tick-period) elapsed)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
393 (loop for tick from 1 to total-ticks by 2 do
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
394 (hanoi-ring-to-pos ring (funcall tick-to-pos tick))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
395 (hanoi-sit-for 0)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
396 ;; Always make last move to keep pole and ring data consistent
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
397 (hanoi-ring-to-pos ring (car to))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
398 (if hanoi-move-period (+ start-time hanoi-move-period))))
53
a8efef5eb891 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
399
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
400 ;; update display and pause, quitting with a pithy comment if the user
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
401 ;; hits a key.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
402 (defun hanoi-sit-for (seconds)
71763
bedc73f663be * subr.el (sit-for): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 52401
diff changeset
403 (unless (sit-for seconds)
bedc73f663be * subr.el (sit-for): New function.
Chong Yidong <cyd@stupidchicken.com>
parents: 52401
diff changeset
404 (signal 'quit '("I can tell you've had enough"))))
25259
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
405
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
406 ;; move ring to a given buffer position and update ring's car.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
407 (defun hanoi-ring-to-pos (ring pos)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
408 (unless (= (car ring) pos)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
409 (let* ((start (- (car ring) (* (/ (cdr ring) 2) fly-step)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
410 (new-start (- pos (- (car ring) start))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
411 (if hanoi-horizontal-flag
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
412 (loop for i below (cdr ring)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
413 for j = (if (< new-start start) i (- (cdr ring) i 1))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
414 for old-pos = (+ start (* j fly-step))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
415 for new-pos = (+ new-start (* j fly-step)) do
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
416 (transpose-regions old-pos (1+ old-pos) new-pos (1+ new-pos)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
417 (let ((end (+ start (cdr ring)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
418 (new-end (+ new-start (cdr ring))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
419 (if (< (abs (- new-start start)) (- end start))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
420 ;; Overlap. Adjust bounds
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
421 (if (< start new-start)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
422 (setq new-start end)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
423 (setq new-end start)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
424 (transpose-regions start end new-start new-end t))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
425 ;; If moved on or off a pole, redraw pole chars.
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
426 (unless (eq (hanoi-pos-on-tower-p (car ring)) (hanoi-pos-on-tower-p pos))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
427 (let* ((pole-start (- (car ring) (* fly-step (/ pole-width 2))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
428 (pole-end (+ pole-start (* fly-step pole-width)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
429 (on-pole (hanoi-pos-on-tower-p (car ring)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
430 (new-char (if on-pole pole-char ?\ ))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
431 (curr-char (if on-pole ?\ pole-char))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
432 (face (if on-pole hanoi-pole-face nil)))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
433 (if hanoi-horizontal-flag
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
434 (loop for pos from pole-start below pole-end by line-offset do
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
435 (subst-char-in-region pos (1+ pos) curr-char new-char)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
436 (hanoi-put-face pos (1+ pos) face))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
437 (subst-char-in-region pole-start pole-end curr-char new-char)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
438 (hanoi-put-face pole-start pole-end face))))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
439 (setcar ring pos))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
440 (hanoi-goto-char pos))
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
441
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
442 ;; Check if a buffer position lies on a tower (vis. in the fly row).
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
443 (defun hanoi-pos-on-tower-p (pos)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
444 (if hanoi-horizontal-flag
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
445 (/= (% pos fly-step) fly-row-start)
9f7a9dceb11b Mostly rewritten. Customized. To support an s2G
Karl Heuer <kwzh@gnu.org>
parents: 14570
diff changeset
446 (>= pos (+ fly-row-start baseward-step))))
53
a8efef5eb891 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
447
4031
ac159693513e Add (provide 'hanoi).
Roland McGrath <roland@gnu.org>
parents: 3591
diff changeset
448 (provide 'hanoi)
ac159693513e Add (provide 'hanoi).
Roland McGrath <roland@gnu.org>
parents: 3591
diff changeset
449
ac159693513e Add (provide 'hanoi).
Roland McGrath <roland@gnu.org>
parents: 3591
diff changeset
450 ;;; hanoi.el ends here