Mercurial > emacs
annotate lisp/textmodes/artist.el @ 110261:8a1ec5899552
gnus-async.el (gnus-html-prefetch-images): Autoload it when compiling; (gnus-async-article-callback): Fix typo.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Tue, 07 Sep 2010 01:20:19 +0000 |
parents | 0fee5a19e171 |
children | e950143ab9e0 |
rev | line source |
---|---|
33618 | 1 ;;; artist.el --- draw ascii graphics with your mouse |
2 | |
64751
5b1a238fcbb4
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64084
diff
changeset
|
3 ;; Copyright (C) 2000, 2001, 2002, 2003, 2004, |
106815 | 4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
33618 | 5 |
6 ;; Author: Tomas Abrahamsson <tab@lysator.liu.se> | |
7 ;; Maintainer: Tomas Abrahamsson <tab@lysator.liu.se> | |
8 ;; Keywords: mouse | |
59223
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
9 ;; Version: 1.2.6 |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
10 ;; Release-date: 6-Aug-2004 |
33618 | 11 ;; Location: http://www.lysator.liu.se/~tab/artist/ |
12 | |
94116
842d446b22d9
Cleanup the bug-report email addresses and make sure the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93975
diff
changeset
|
13 ;; Yoni Rabkin <yoni@rabkins.net> contacted the maintainer of this |
842d446b22d9
Cleanup the bug-report email addresses and make sure the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93975
diff
changeset
|
14 ;; file on 19/3/2008, and the maintainer agreed that when a bug is filed in |
842d446b22d9
Cleanup the bug-report email addresses and make sure the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93975
diff
changeset
|
15 ;; the Emacs bug reporting system against this file, a copy of the bug |
842d446b22d9
Cleanup the bug-report email addresses and make sure the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93975
diff
changeset
|
16 ;; report be sent to the maintainer's email address. |
842d446b22d9
Cleanup the bug-report email addresses and make sure the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
93975
diff
changeset
|
17 |
33618 | 18 ;; This file is part of GNU Emacs. |
19 | |
94670
f4a69fedbd46
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94116
diff
changeset
|
20 ;; GNU Emacs is free software: you can redistribute it and/or modify |
33618 | 21 ;; it under the terms of the GNU General Public License as published by |
94670
f4a69fedbd46
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94116
diff
changeset
|
22 ;; the Free Software Foundation, either version 3 of the License, or |
f4a69fedbd46
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94116
diff
changeset
|
23 ;; (at your option) any later version. |
33618 | 24 |
25 ;; GNU Emacs is distributed in the hope that it will be useful, | |
26 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
27 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
28 ;; GNU General Public License for more details. | |
29 | |
30 ;; You should have received a copy of the GNU General Public License | |
94670
f4a69fedbd46
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
94116
diff
changeset
|
31 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
33618 | 32 |
33 ;;; Commentary: | |
34 | |
35 ;; What is artist? | |
36 ;; --------------- | |
37 ;; | |
38 ;; Artist is an Emacs lisp package that allows you to draw lines, | |
51961
e56cb5adb76f
(artist-butlast-fn, artist-draw-sline)
John Paul Wallington <jpw@pobox.com>
parents:
47953
diff
changeset
|
39 ;; rectangles and ellipses by using your mouse and/or keyboard. The |
33618 | 40 ;; shapes are made up with the ascii characters |, -, / and \. |
41 ;; | |
42 ;; Features are: | |
43 ;; | |
44 ;; * Intersecting: When a `|' intersects with a `-', a `+' is | |
45 ;; drawn, like this: | \ / | |
46 ;; --+-- X | |
47 ;; | / \ | |
48 ;; | |
49 ;; * Rubber-banding: When drawing lines you can interactively see the | |
50 ;; result while holding the mouse button down and moving the mouse. If | |
51 ;; your machine is not fast enough (a 386 is a bit to slow, but a | |
52 ;; pentium is well enough), you can turn this feature off. You will | |
53 ;; then see 1's and 2's which mark the 1st and 2nd endpoint of the line | |
54 ;; you are drawing. | |
55 ;; | |
56 ;; * Drawing operations: The following drawing operations are implemented: | |
57 ;; | |
58 ;; lines straight-lines | |
59 ;; rectangles squares | |
60 ;; poly-lines straight poly-lines | |
61 ;; ellipses circles | |
62 ;; text (see-thru) text (overwrite) | |
63 ;; spray-can setting size for spraying | |
64 ;; vaporize line vaporize lines | |
65 ;; erase characters erase rectangles | |
66 ;; | |
67 ;; Straight lines are lines that go horizontally, vertically or | |
51961
e56cb5adb76f
(artist-butlast-fn, artist-draw-sline)
John Paul Wallington <jpw@pobox.com>
parents:
47953
diff
changeset
|
68 ;; diagonally. Plain lines go in any direction. The operations in |
33618 | 69 ;; the right column are accessed by holding down the shift key while |
70 ;; drawing. | |
71 ;; | |
72 ;; It is possible to vaporize (erase) entire lines and connected lines | |
73 ;; (rectangles for example) as long as the lines being vaporized are | |
51961
e56cb5adb76f
(artist-butlast-fn, artist-draw-sline)
John Paul Wallington <jpw@pobox.com>
parents:
47953
diff
changeset
|
74 ;; straight and connected at their endpoints. Vaporizing is inspired |
33618 | 75 ;; by the drawrect package by Jari Aalto <jari.aalto@poboxes.com>. |
76 ;; | |
77 ;; * Flood-filling: You can fill any area with a certain character by | |
78 ;; flood-filling. | |
79 ;; | |
80 ;; * Cut copy and paste: You can cut, copy and paste rectangular | |
51961
e56cb5adb76f
(artist-butlast-fn, artist-draw-sline)
John Paul Wallington <jpw@pobox.com>
parents:
47953
diff
changeset
|
81 ;; regions. Artist also interfaces with the rect package (this can be |
33618 | 82 ;; turned off if it causes you any trouble) so anything you cut in |
83 ;; artist can be yanked with C-x r y and vice versa. | |
84 ;; | |
85 ;; * Drawing with keys: Everything you can do with the mouse, you can | |
86 ;; also do without the mouse. | |
87 ;; | |
88 ;; * Arrows: After having drawn a (straight) line or a (straight) | |
89 ;; poly-line, you can set arrows on the line-ends by typing < or >. | |
90 ;; | |
91 ;; * Aspect-ratio: You can set the variable artist-aspect-ratio to | |
51961
e56cb5adb76f
(artist-butlast-fn, artist-draw-sline)
John Paul Wallington <jpw@pobox.com>
parents:
47953
diff
changeset
|
92 ;; reflect the height-width ratio for the font you are using. Squares |
33618 | 93 ;; and circles are then drawn square/round. Note, that once your |
94 ;; ascii-file is shown with font with a different height-width ratio, | |
95 ;; the squares won't be square and the circles won't be round. | |
96 ;; | |
97 ;; * Picture mode compatibility: Artist is picture mode compatible (this | |
98 ;; can be turned off). | |
99 ;; | |
100 ;; See the documentation for the function artist-mode for a detailed | |
101 ;; description on how to use artist. | |
102 ;; | |
103 ;; | |
104 ;; What about adding my own drawing modes? | |
105 ;; --------------------------------------- | |
106 ;; | |
107 ;; See the short guide at the end of this file. | |
108 ;; If you add a new drawing mode, send it to me, and I would gladly | |
109 ;; include in the next release! | |
110 | |
111 ;;; Installation: | |
112 | |
113 ;; To use artist, put this in your .emacs: | |
114 ;; | |
115 ;; (autoload 'artist-mode "artist" "Enter artist-mode" t) | |
116 | |
117 | |
118 ;;; Requirements: | |
119 | |
120 ;; Artist requires Emacs 19.28 or higher. | |
121 ;; | |
122 ;; Artist requires the `rect' package (which comes with Emacs) to be | |
123 ;; loadable, unless the variable `artist-interface-with-rect' is set | |
124 ;; to nil. | |
125 ;; | |
126 ;; Artist also requires the Picture mode (which also comes with Emacs) | |
127 ;; to be loadable, unless the variable `artist-picture-compatibility' | |
128 ;; is set to nil. | |
129 | |
130 ;;; Known bugs: | |
131 | |
132 ;; The shifted operations are not available when drawing with the mouse | |
133 ;; in Emacs 19.29 and 19.30. | |
134 ;; | |
135 ;; It is not possible to change between shifted and unshifted operation | |
136 ;; while drawing with the mouse. (See the comment in the function | |
137 ;; artist-shift-has-changed for further details.) | |
138 | |
139 | |
140 ;;; ChangeLog: | |
141 | |
59223
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
142 ;; 1.2.6 6-Aug-2004 |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
143 ;; New: Coerced with the artist.el that's in Emacs-21.3. |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
144 ;; (minor editorial changes) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
145 ;; |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
146 ;; 1.2.5 4-Aug-2004 |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
147 ;; New: Added tool selection via the mouse-wheel |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
148 ;; Function provided by Andreas Leue <al@sphenon.de> |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
149 ;; |
40323 | 150 ;; 1.2.4 25-Oct-2001 |
151 ;; Bugfix: Some operations (the edit menu) got hidden | |
152 ;; Bugfix: The first arrow for poly-lines was always pointing | |
153 ;; to the right | |
154 ;; Changed: Updated with changes made for Emacs 21.1 | |
155 ;; | |
156 ;; 1.2.3 20-Nov-2000 | |
157 ;; Bugfix: Autoload cookie corrected | |
158 ;; | |
33618 | 159 ;; 1.2.2 19-Nov-2000 |
160 ;; Changed: More documentation fixes. | |
47953
126b6cb8740d
(artist-ff-is-bottommost-line): Fix misplaced ELSE expression on IF.
Juanma Barranquero <lekktu@gmail.com>
parents:
46163
diff
changeset
|
161 ;; Bugfix: The arrow characters (`artist-arrows'), which |
33618 | 162 ;; got wrong in 1.1, are now corrected. |
163 ;; | |
164 ;; 1.2.1 15-Nov-2000 | |
165 ;; New: Documentation fixes. | |
166 ;; Bugfix: Sets next-line-add-newlines to t while in artist-mode. | |
167 ;; Drawing with keys was confusing without this fix, if | |
168 ;; next-line-add-newlines was set to nil. | |
169 ;; Thanks to Tatsuo Furukawa <tatsuo@kobe.hp.com> for this. | |
170 ;; | |
171 ;; 1.2 22-Oct-2000 | |
172 ;; New: Updated to work with Emacs 21 | |
173 ;; | |
174 ;; 1.1 15-Aug-2000 | |
175 ;; Bugfix: Cursor follows mouse pointer more closely. | |
176 ;; New: Works with Emacs 20.x | |
177 ;; New: Variables are customizable | |
178 ;; | |
179 ;; 1.1-beta1 21-Apr-1998 | |
180 ;; New: Spray-can (Utterly useless, I believe, but it was fun | |
181 ;; to implement :-) after an idea by Karl-Johan Karlsson | |
182 ;; <kj@lysator.liu.se>. | |
183 ;; New: Freehand drawing (with pen). | |
184 ;; New: Vaporizing lines. | |
185 ;; New: Text-rendering using figlet. | |
186 ;; New: Picture mode compatibility. | |
187 ;; Changed: All Artist keys now uses the prefix C-c C-a not to conflict | |
188 ;; with Picture mode. | |
189 ;; Bugfix: No longer leaves traces of lines when rubberbanding | |
190 ;; if the buffer auto-scrolls. | |
191 ;; Bugfix: Infinite loop sometimes when rubberbanding was turned | |
192 ;; off. | |
193 ;; | |
194 ;; 1.0 01-Mar-1998 | |
195 ;; First official release. | |
196 | |
197 ;;; Code: | |
198 | |
199 ;; Variables | |
200 | |
59223
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
201 (defconst artist-version "1.2.6") |
33618 | 202 (defconst artist-maintainer-address "tab@lysator.liu.se") |
203 | |
65260
c1dcf33345ab
(x-pointer-crosshair): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
204 (defvar x-pointer-crosshair) |
33618 | 205 |
206 ;; User options | |
207 ;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv | |
208 | |
209 (defgroup artist nil | |
210 "Customization of the Artist mode." | |
211 :group 'mouse) | |
212 | |
213 (defgroup artist-text nil | |
214 "Customization of the text rendering." | |
215 :group 'artist) | |
216 | |
217 (defcustom artist-rubber-banding t | |
218 "Interactively do rubber-banding when non-nil." | |
219 :group 'artist | |
220 :type 'boolean) | |
221 | |
222 (defcustom artist-first-char ?1 | |
223 "Character to set at first point when not rubber-banding." | |
224 :group 'artist | |
225 :type 'character) | |
226 | |
227 (defcustom artist-second-char ?2 | |
228 "Character to set at second point when not rubber-banding." | |
229 :group 'artist | |
230 :type 'character) | |
231 | |
232 (defcustom artist-interface-with-rect t | |
233 "Whether to interface with the rect package or not. | |
234 | |
235 Interfacing to the rect package means that the Copy and Paste operations | |
236 will use the rectangle buffer when accessing the copied area. This means | |
237 that you can insert a rectangle which is copied using the artist package | |
238 and vice versa. | |
239 | |
240 If this causes any problem for you (for example, if the implementation of | |
241 the rectangle package changes), you can set this variable to nil, and the | |
242 artist package will use its own copy buffer." | |
243 :group 'artist | |
244 :type 'boolean) | |
245 | |
246 (defvar artist-arrows [ ?> nil ?v ?L ?< nil ?^ nil ] | |
247 ;; This is a defvar, not a defcustom, since the custom | |
248 ;; package shows vectors of characters as a vector of integers, | |
249 ;; which is confusing | |
250 "A vector of characters to use as arrows. | |
251 | |
252 The vector is 8 elements long and contains a character for each | |
253 direction, or nil if there is no suitable character to use for arrow | |
254 in that direction. | |
255 | |
256 The directions are as follows: | |
257 | |
258 5 6 7 | |
259 \\ | / | |
260 4 - * - 0 | |
261 / | \\ | |
262 3 2 1") | |
263 | |
264 (defcustom artist-aspect-ratio 1 | |
265 "Defines the character height-to-width aspect ratio. | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
266 This is used when drawing squares and circles." |
33618 | 267 :group 'artist |
268 :type 'number) | |
269 | |
270 (defcustom artist-trim-line-endings t | |
271 "Whether or not to remove white-space at end of lines. | |
272 | |
273 If non-nil, line-endings are trimmed (that is, extraneous white-space | |
274 at the end of the line is removed) when the shape is drawn." | |
275 :group 'artist | |
276 :type 'boolean) | |
277 | |
278 | |
279 (defcustom artist-flood-fill-right-border 'window-width | |
280 "Right edge definition, used when flood-filling. | |
281 | |
282 When flood-filling, if the area is not closed off to the right, then | |
283 flood-filling will fill no more to the right than specified by this | |
284 variable. This limit is called the fill-border." | |
285 :group 'artist | |
286 :type '(choice (const :tag "limited to window" window-width) | |
287 (const :tag "limited to value of `fill-column'" fill-column))) | |
288 | |
289 (defcustom artist-flood-fill-show-incrementally t | |
290 "Whether or not to incrementally update display when flood-filling. | |
291 | |
292 If non-nil, incrementally update display when flood-filling. | |
293 If set to non-nil, this currently implies discarding any input events | |
294 during the flood-fill." | |
295 :group 'artist | |
296 :type 'boolean) | |
297 | |
298 | |
299 (defcustom artist-ellipse-right-char ?\) | |
300 "Character to use at the rightmost position when drawing narrow ellipses. | |
301 | |
302 In this figure, it is the right parenthesis (the ``)'' character): | |
303 ----- | |
304 ( ) | |
305 -----" | |
306 :group 'artist | |
307 :type 'character) | |
308 | |
309 | |
310 (defcustom artist-ellipse-left-char ?\( | |
311 "Character to use at the leftmost position when drawing narrow ellipses. | |
312 | |
313 In this figure, it is the left parenthesis (the ``('' character): | |
314 ----- | |
315 ( ) | |
316 -----" | |
317 :group 'artist | |
318 :type 'character) | |
319 | |
320 (defcustom artist-picture-compatibility t | |
321 "Whether or not picture mode compatibility is on." | |
322 :group 'artist | |
323 :type 'boolean) | |
324 | |
325 | |
326 | |
327 | |
328 (defcustom artist-vaporize-fuzziness 1 | |
329 "How to vaporize lines that are cut off. | |
330 | |
331 Accept this many characters cutting off a line and still treat | |
332 it as one line. | |
333 Example: | |
334 If `artist-vaporize-fuzziness' is 2, then those will be recognized as | |
335 lines from A to B (provided you start vaporizing them at the ``*''): | |
336 / | |
337 A----*------/-----------B | |
338 \\/ | |
339 A----*----/\\------------B | |
340 / \\ | |
341 | |
342 but this one won't, since it is cut off by more than 2 characters: | |
343 \\/ / | |
344 A----*----/\\/----------B | |
345 / /\\ | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
346 (in fact, only the left part [between the A and the leftmost ``/'' |
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
347 crossing the line] will be vaporized)." |
33618 | 348 :group 'artist |
349 :type 'integer) | |
350 | |
351 | |
352 (defvar artist-pointer-shape (if (eq window-system 'x) x-pointer-crosshair nil) | |
353 "*If in X Windows, use this pointer shape while drawing with the mouse.") | |
354 | |
355 | |
70811
fbbc9639de95
(artist-text-renderer): Make this the alias for the following variable.
Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
parents:
68648
diff
changeset
|
356 (defcustom artist-text-renderer-function 'artist-figlet |
33618 | 357 "Function for doing text rendering." |
358 :group 'artist-text | |
359 :type 'symbol) | |
70811
fbbc9639de95
(artist-text-renderer): Make this the alias for the following variable.
Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
parents:
68648
diff
changeset
|
360 (defvaralias 'artist-text-renderer 'artist-text-renderer-function) |
33618 | 361 |
362 | |
363 (defcustom artist-figlet-program "figlet" | |
364 "Program to run for `figlet'." | |
365 :group 'artist-text | |
366 :type 'string) | |
367 | |
368 | |
369 (defcustom artist-figlet-default-font "standard" | |
370 "Default font for `figlet'." | |
371 :group 'artist-text | |
372 :type 'string) | |
373 | |
374 | |
375 (defcustom artist-figlet-list-fonts-command | |
376 ;; list files ending with *.flf in any directory printed by the | |
377 ;; ``figlet -I2'' command. I think this will not produce more than | |
378 ;; one directory, but it never hurts to be on the safe side... | |
379 "for dir in `figlet -I2`; do cd $dir; ls *.flf; done" | |
380 "Command to run to get list of available fonts." | |
381 :group 'artist-text | |
382 :type 'string) | |
383 | |
384 | |
385 (defcustom artist-spray-interval 0.2 | |
386 "Number of seconds between repeated spraying." | |
387 :group 'artist | |
388 :type 'number) | |
389 | |
390 | |
391 (defcustom artist-spray-radius 4 | |
392 "Size of the area for spraying." | |
393 :group 'artist | |
394 :type 'integer) | |
395 | |
396 | |
65260
c1dcf33345ab
(x-pointer-crosshair): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
397 (defvar artist-spray-chars '(?\s ?. ?- ?+ ?m ?% ?* ?#) |
33618 | 398 ;; This is a defvar, not a defcustom, since the custom |
399 ;; package shows lists of characters as a lists of integers, | |
400 ;; which is confusing | |
401 "*Characters (``color'') to use when spraying. | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
402 They should be ordered from the ``lightest'' to the ``heaviest'' |
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
403 since spraying replaces a light character with the next heavier one.") |
33618 | 404 |
405 | |
406 (defvar artist-spray-new-char ?. | |
407 "*Initial character to use when spraying. | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
408 This character is used if spraying upon a character that is not in |
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
409 `artist-spray-chars'. The character defined by this variable should |
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
410 be in `artist-spray-chars', or spraying will behave strangely.") |
33618 | 411 |
412 | |
413 ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | |
414 ;; End of user options | |
415 | |
416 | |
417 ;; Internal variables | |
418 ;; | |
419 (defvar artist-mode nil | |
420 "Non-nil to enable `artist-mode' and nil to disable.") | |
421 (make-variable-buffer-local 'artist-mode) | |
422 | |
423 (defvar artist-mode-name " Artist" | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
424 "Name of Artist mode beginning with a space (appears in the mode-line).") |
33618 | 425 |
426 (defvar artist-curr-go 'pen-char | |
427 "Current selected graphics operation.") | |
428 (make-variable-buffer-local 'artist-curr-go) | |
429 | |
430 (defvar artist-line-char-set nil | |
431 "Boolean to tell whether user has set some char to use when drawing lines.") | |
432 (make-variable-buffer-local 'artist-line-char-set) | |
433 | |
434 (defvar artist-line-char nil | |
435 "Char to use when drawing lines.") | |
436 (make-variable-buffer-local 'artist-line-char) | |
437 | |
438 (defvar artist-fill-char-set nil | |
439 "Boolean to tell whether user has set some char to use when filling.") | |
440 (make-variable-buffer-local 'artist-fill-char-set) | |
441 | |
442 (defvar artist-fill-char nil | |
443 "Char to use when filling.") | |
444 (make-variable-buffer-local 'artist-fill-char) | |
445 | |
51965
5a62d5472383
(artist-erase-char): Fix default value using ?\s.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
51961
diff
changeset
|
446 (defvar artist-erase-char ?\s |
33618 | 447 "Char to use when erasing.") |
448 (make-variable-buffer-local 'artist-erase-char) | |
449 | |
450 (defvar artist-default-fill-char ?. | |
451 "Char to use when a fill-char is required but none is set.") | |
452 (make-variable-buffer-local 'artist-default-fill-char) | |
453 | |
454 ; This variable is not buffer local | |
455 (defvar artist-copy-buffer nil | |
456 "Copy buffer.") | |
457 | |
458 (defvar artist-draw-region-min-y 0 | |
459 "Line-number for top-most visited line for draw operation.") | |
460 (make-variable-buffer-local 'artist-draw-region-min-y) | |
461 | |
462 (defvar artist-draw-region-max-y 0 | |
463 "Line-number for bottom-most visited line for draw operation.") | |
464 (make-variable-buffer-local 'artist-draw-region-max-y) | |
465 | |
466 (defvar artist-borderless-shapes nil | |
467 "When non-nil, draw shapes without border. | |
468 The fill char is used instead, if it is set.") | |
469 (make-variable-buffer-local 'artist-borderless-shapes) | |
470 | |
59223
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
471 (defvar artist-prev-next-op-alist nil |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
472 "Assoc list for looking up next and/or previous draw operation. |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
473 The structure is as follows: (OP . (PREV-OP . NEXT-OP)) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
474 where the elements are as follows: |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
475 * OP is an atom: the KEY-SYMBOL in the `artist-mt' structure |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
476 * PREV-OP and NEXT-OP are strings: the KEYWORD in the `artist-mt' structure |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
477 |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
478 This variable is initialized by the `artist-make-prev-next-op-alist' function.") |
33618 | 479 |
480 (eval-when-compile | |
481 ;; Make rect available at compile-time | |
482 (require 'rect) ; for interfacing with rect | |
483 (require 'reporter) ; the bug-reporting tool | |
484 (require 'picture)) ; picture mode compatibility | |
485 | |
486 (if artist-interface-with-rect | |
487 (require 'rect)) | |
488 | |
489 (require 'reporter) | |
490 | |
491 (if artist-picture-compatibility | |
492 (require 'picture)) | |
493 | |
63948
c51c70065bb1
(artist-key-is-drawing)
Richard M. Stallman <rms@gnu.org>
parents:
63800
diff
changeset
|
494 ;; Variables that are made local in artist-mode-init |
c51c70065bb1
(artist-key-is-drawing)
Richard M. Stallman <rms@gnu.org>
parents:
63800
diff
changeset
|
495 (defvar artist-key-is-drawing nil) |
c51c70065bb1
(artist-key-is-drawing)
Richard M. Stallman <rms@gnu.org>
parents:
63800
diff
changeset
|
496 (defvar artist-key-endpoint1 nil) |
c51c70065bb1
(artist-key-is-drawing)
Richard M. Stallman <rms@gnu.org>
parents:
63800
diff
changeset
|
497 (defvar artist-key-poly-point-list nil) |
c51c70065bb1
(artist-key-is-drawing)
Richard M. Stallman <rms@gnu.org>
parents:
63800
diff
changeset
|
498 (defvar artist-key-shape nil) |
c51c70065bb1
(artist-key-is-drawing)
Richard M. Stallman <rms@gnu.org>
parents:
63800
diff
changeset
|
499 (defvar artist-key-draw-how nil) |
c51c70065bb1
(artist-key-is-drawing)
Richard M. Stallman <rms@gnu.org>
parents:
63800
diff
changeset
|
500 (defvar artist-popup-menu-table nil) |
c51c70065bb1
(artist-key-is-drawing)
Richard M. Stallman <rms@gnu.org>
parents:
63800
diff
changeset
|
501 (defvar artist-key-compl-table nil) |
c51c70065bb1
(artist-key-is-drawing)
Richard M. Stallman <rms@gnu.org>
parents:
63800
diff
changeset
|
502 (defvar artist-rb-save-data nil) |
c51c70065bb1
(artist-key-is-drawing)
Richard M. Stallman <rms@gnu.org>
parents:
63800
diff
changeset
|
503 (defvar artist-arrow-point-1 nil) |
c51c70065bb1
(artist-key-is-drawing)
Richard M. Stallman <rms@gnu.org>
parents:
63800
diff
changeset
|
504 (defvar artist-arrow-point-2 nil) |
c51c70065bb1
(artist-key-is-drawing)
Richard M. Stallman <rms@gnu.org>
parents:
63800
diff
changeset
|
505 |
33618 | 506 (defvar artist-mode-map |
507 (let ((map (make-sparse-keymap))) | |
508 (setq artist-mode-map (make-sparse-keymap)) | |
509 (define-key map [down-mouse-1] 'artist-down-mouse-1) | |
510 (define-key map [S-down-mouse-1] 'artist-down-mouse-1) | |
511 (define-key map [down-mouse-2] 'artist-mouse-choose-operation) | |
512 (define-key map [S-down-mouse-2] 'artist-mouse-choose-operation) | |
513 (define-key map [down-mouse-3] 'artist-down-mouse-3) | |
514 (define-key map [S-down-mouse-3] 'artist-down-mouse-3) | |
59223
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
515 (define-key map [C-mouse-4] 'artist-select-prev-op-in-list) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
516 (define-key map [C-mouse-5] 'artist-select-next-op-in-list) |
33618 | 517 (define-key map "\r" 'artist-key-set-point) ; return |
518 (define-key map [up] 'artist-previous-line) | |
519 (define-key map "\C-p" 'artist-previous-line) | |
520 (define-key map [down] 'artist-next-line) | |
521 (define-key map "\C-n" 'artist-next-line) | |
522 (define-key map [left] 'artist-backward-char) | |
523 (define-key map "\C-b" 'artist-backward-char) | |
524 (define-key map [right] 'artist-forward-char) | |
525 (define-key map "\C-f" 'artist-forward-char) | |
526 (define-key map "<" 'artist-toggle-first-arrow) | |
527 (define-key map ">" 'artist-toggle-second-arrow) | |
528 (define-key map "\C-c\C-a\C-e" 'artist-select-erase-char) | |
529 (define-key map "\C-c\C-a\C-f" 'artist-select-fill-char) | |
530 (define-key map "\C-c\C-a\C-l" 'artist-select-line-char) | |
531 (define-key map "\C-c\C-a\C-o" 'artist-select-operation) | |
532 (define-key map "\C-c\C-a\C-r" 'artist-toggle-rubber-banding) | |
533 (define-key map "\C-c\C-a\C-t" 'artist-toggle-trim-line-endings) | |
534 (define-key map "\C-c\C-a\C-s" 'artist-toggle-borderless-shapes) | |
535 (define-key map "\C-c\C-c" 'artist-mode-off) | |
536 (define-key map "\C-c\C-al" 'artist-select-op-line) | |
537 (define-key map "\C-c\C-aL" 'artist-select-op-straight-line) | |
538 (define-key map "\C-c\C-ar" 'artist-select-op-rectangle) | |
539 (define-key map "\C-c\C-aR" 'artist-select-op-square) | |
540 (define-key map "\C-c\C-as" 'artist-select-op-square) | |
541 (define-key map "\C-c\C-ap" 'artist-select-op-poly-line) | |
542 (define-key map "\C-c\C-aP" 'artist-select-op-straight-poly-line) | |
543 (define-key map "\C-c\C-ae" 'artist-select-op-ellipse) | |
544 (define-key map "\C-c\C-ac" 'artist-select-op-circle) | |
545 (define-key map "\C-c\C-at" 'artist-select-op-text-see-thru) | |
546 (define-key map "\C-c\C-aT" 'artist-select-op-text-overwrite) | |
547 (define-key map "\C-c\C-aS" 'artist-select-op-spray-can) | |
548 (define-key map "\C-c\C-az" 'artist-select-op-spray-set-size) | |
549 (define-key map "\C-c\C-a\C-d" 'artist-select-op-erase-char) | |
550 (define-key map "\C-c\C-aE" 'artist-select-op-erase-rectangle) | |
551 (define-key map "\C-c\C-av" 'artist-select-op-vaporize-line) | |
552 (define-key map "\C-c\C-aV" 'artist-select-op-vaporize-lines) | |
553 (define-key map "\C-c\C-a\C-k" 'artist-select-op-cut-rectangle) | |
554 (define-key map "\C-c\C-a\M-w" 'artist-select-op-copy-rectangle) | |
555 (define-key map "\C-c\C-a\C-y" 'artist-select-op-paste) | |
556 (define-key map "\C-c\C-af" 'artist-select-op-flood-fill) | |
557 (define-key map "\C-c\C-a\C-b" 'artist-submit-bug-report) | |
558 map) | |
559 "Keymap for `artist-minor-mode'.") | |
560 | |
561 (defvar artist-replacement-table (make-vector 256 0) | |
562 "Replacement table for `artist-replace-char'.") | |
563 | |
564 | |
565 ;;; | |
566 ;;; The table of graphic operations | |
567 ;;; | |
568 (defvar artist-mt | |
569 ;; Implementation note: Maybe this should be done using a structure | |
570 ;; in the cl package? | |
571 ;; | |
572 '( | |
573 (menu | |
574 ("Drawing" | |
575 ((function-call | |
576 ( "Undo" do-undo undo)) | |
577 | |
578 (separator ) | |
579 (graphics-operation | |
580 ("Pen" (("Pen" pen-char "pen-c" | |
581 artist-no-arrows nil | |
582 nil nil nil | |
583 artist-do-continously | |
584 artist-pen | |
585 (nil)) | |
586 ("Pen Line" pen-line "pen-l" | |
587 artist-arrows artist-pen-set-arrow-points | |
588 artist-pen-reset-last-xy nil nil | |
589 artist-do-continously | |
590 artist-pen-line | |
591 (nil))))) | |
592 | |
593 (graphics-operation | |
594 ("Line" (("line" line "line" | |
595 artist-arrows artist-set-arrow-points-for-2points | |
596 nil nil nil | |
597 2 | |
598 artist-draw-line | |
599 (artist-undraw-line | |
600 artist-nil nil)) | |
601 ("straight line" s-line "sline" | |
602 artist-arrows artist-set-arrow-points-for-2points | |
603 nil nil nil | |
604 2 | |
605 artist-draw-sline | |
606 (artist-undraw-sline | |
607 artist-nil nil))))) | |
608 | |
609 (graphics-operation | |
610 ("Rectangle" (("rectangle" rect "rect" | |
611 artist-no-arrows nil | |
612 nil nil nil | |
613 2 | |
614 artist-draw-rect | |
615 (artist-undraw-rect | |
616 artist-t-if-fill-char-set artist-fill-rect)) | |
617 ("square" square "square" | |
618 artist-no-arrows nil | |
619 nil nil nil | |
620 2 | |
621 artist-draw-square | |
622 (artist-undraw-square | |
623 artist-t-if-fill-char-set artist-fill-square))))) | |
624 | |
625 (graphics-operation | |
626 ("Poly-line" (("poly-line" polyline "poly" | |
627 artist-arrows artist-set-arrow-points-for-poly | |
628 nil nil nil | |
629 artist-do-poly | |
630 artist-draw-line | |
631 (artist-undraw-line | |
632 artist-nil nil)) | |
633 ("straight poly-line" spolyline "s-poly" | |
634 artist-arrows artist-set-arrow-points-for-poly | |
635 nil nil nil | |
636 artist-do-poly | |
637 artist-draw-sline | |
638 (artist-undraw-sline | |
639 artist-nil nil))))) | |
640 | |
641 (graphics-operation | |
642 ("Ellipse" (("ellipse" ellipse "ellipse" | |
643 artist-no-arrows nil | |
644 nil nil nil | |
645 2 | |
646 artist-draw-ellipse | |
647 (artist-undraw-ellipse | |
648 artist-t-if-fill-char-set artist-fill-ellipse)) | |
649 ("circle" circle "circle" | |
650 artist-no-arrows nil | |
651 nil nil nil | |
652 2 | |
653 artist-draw-circle | |
654 (artist-undraw-circle | |
655 artist-t-if-fill-char-set artist-fill-circle))))) | |
656 | |
657 (graphics-operation | |
658 ("Text" (("text see-thru" text-thru "text-thru" | |
659 artist-no-arrows nil | |
660 nil nil nil | |
661 1 | |
662 artist-text-see-thru | |
663 nil) | |
664 ("text overwrite" text-ovwrt "text-ovwrt" | |
665 artist-no-arrows nil | |
666 nil nil nil | |
667 1 | |
668 artist-text-overwrite | |
669 nil)))) | |
670 | |
671 (graphics-operation | |
672 ("Spray-can" (("spray-can" spray-can "spray-can" | |
673 artist-no-arrows nil | |
674 nil nil nil | |
675 artist-do-continously | |
676 artist-spray | |
677 (artist-spray-get-interval)) | |
678 ("spray set size" spray-get-size "spray-size" | |
679 artist-no-arrows nil | |
680 nil artist-spray-clear-circle artist-spray-set-radius | |
681 2 | |
682 artist-draw-circle | |
683 (artist-undraw-circle | |
684 artist-nil nil))))) | |
685 | |
686 (graphics-operation | |
687 ("Erase" (("erase char" erase-char "erase-c" | |
688 artist-no-arrows nil | |
689 nil nil nil | |
690 artist-do-continously | |
691 artist-erase-char | |
692 (nil)) | |
693 ("erase rectangle" erase-rect "erase-r" | |
694 artist-no-arrows nil | |
695 nil nil nil | |
696 2 | |
697 artist-draw-rect | |
698 (artist-undraw-rect | |
699 artist-t artist-erase-rect))))) | |
700 | |
701 (graphics-operation | |
702 ("Vaporize" (("vaporize line" vaporize-line "vaporize-1" | |
703 artist-no-arrows nil | |
704 nil nil nil | |
705 1 | |
706 artist-vaporize-line | |
707 nil) | |
708 ("vaporize lines" vaporize-lines "vaporize-n" | |
709 artist-no-arrows nil | |
710 nil nil nil | |
711 1 | |
712 artist-vaporize-lines | |
713 nil))))))) | |
714 | |
715 (menu | |
716 ("Edit" | |
717 ((graphics-operation | |
718 ("Cut" (("cut rectangle" cut-r "cut-r" | |
719 artist-no-arrows nil | |
720 nil nil nil | |
721 2 | |
722 artist-draw-rect | |
723 (artist-undraw-rect | |
97766
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
724 artist-t artist-cut-rect)) |
33618 | 725 ("cut square" cut-s "cut-s" |
726 artist-no-arrows nil | |
727 nil nil nil | |
728 2 | |
729 artist-draw-square | |
730 (artist-undraw-square | |
97766
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
731 artist-t artist-cut-square))))) |
33618 | 732 |
733 (graphics-operation | |
734 ("Copy" (("copy rectangle" copy-r "copy-r" | |
735 artist-no-arrows nil | |
736 nil nil nil | |
737 2 | |
738 artist-draw-rect | |
739 (artist-undraw-rect | |
97766
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
740 artist-t artist-copy-rect)) |
33618 | 741 ("copy square" copy-s "copy-s" |
742 artist-no-arrows nil | |
743 nil nil nil | |
744 2 | |
745 artist-draw-square | |
746 (artist-undraw-square | |
97766
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
747 artist-t artist-copy-square))))) |
33618 | 748 |
749 (graphics-operation | |
750 ("Paste" (("paste" paste "paste" | |
751 artist-no-arrows nil | |
752 nil nil nil | |
753 1 | |
754 artist-paste | |
755 nil) | |
756 ("paste" paste "paste" | |
757 artist-no-arrows nil | |
758 nil nil nil | |
759 1 | |
760 artist-paste | |
761 nil)))) | |
762 | |
763 (graphics-operation | |
764 ("Flood-fill" (("flood-fill" flood-fill "flood" | |
765 artist-no-arrows nil | |
766 nil nil nil | |
767 1 | |
768 artist-flood-fill | |
769 nil) | |
770 ("flood-fill" flood-fill "flood" | |
771 artist-no-arrows nil | |
772 nil nil nil | |
773 1 | |
774 artist-flood-fill | |
40323 | 775 nil))))))) |
33618 | 776 |
777 (menu | |
778 ("Settings" | |
779 ((function-call | |
780 ("Set Fill" set-fill artist-select-fill-char)) | |
781 | |
782 (function-call | |
783 ("Set Line" set-line artist-select-line-char)) | |
784 | |
785 (function-call | |
786 ("Set Erase" set-erase artist-select-erase-char)) | |
787 | |
788 (function-call | |
789 ("Rubber-banding" rubber-band artist-toggle-rubber-banding)) | |
790 | |
791 (function-call | |
792 ("Trimming" trimming artist-toggle-trim-line-endings)) | |
793 | |
794 (function-call | |
795 ("Borders" borders artist-toggle-borderless-shapes)) | |
796 | |
797 (function-call | |
798 ("Spray-chars" spray-chars artist-select-spray-chars))))) | |
799 | |
800 ) ;; end of list | |
801 | |
802 "Master Table for `artist-mode'. | |
803 This table is primarily a table over the different graphics operations | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
804 available in Artist mode, but it also holds layout information for the |
33618 | 805 popup menu. |
806 | |
807 The master table is a list of table elements. The elements of this table | |
808 have the layout | |
809 | |
810 (TAG INFO-PART) | |
811 | |
812 There are three kinds of TAG: | |
813 | |
814 `menu' -- a sub-menu | |
815 `separator' -- produce a separator in the popup menu | |
816 `function-call' -- call a function | |
817 `graphics-operation' -- a graphics operation | |
818 | |
819 The layout of the INFO-PART for `menu' is | |
820 | |
821 (TITLE ((TAG-1 INFO-PART-1) (TAG-2 INFO-PART-2) ...)) | |
822 | |
823 TITLE is the title of the submenu; this is followed by a list of | |
824 menu items, each on the general form (TAG INFO-PART). | |
825 | |
826 | |
827 The layout of the INFO-PART for `separator' is empty and not used. | |
828 | |
829 | |
830 This is the layout of the INFO-PART for `function-call': | |
831 | |
832 (KEYWORD SYMBOL FN) | |
833 | |
834 KEYWORD is a string naming the operation, and appears in the popup menu. | |
835 SYMBOL is the symbol for the operations. | |
836 FN is the function performing the operation. This function | |
837 is called with no arguments. Its return value is ignored. | |
838 | |
839 | |
840 The layout of the INFO-PART for `graphics-operation' is | |
841 | |
842 (TITLE (UNSHIFTED SHIFTED)) | |
843 | |
42706 | 844 TITLE is the title that appears in the popup menu. UNSHIFTED |
33618 | 845 and SHIFTED specify for unshifted and shifted operation. Both |
846 have the form | |
847 | |
848 (KEYWORD KEY-SYMBOL MODE-LINE ARROW-PRED ARROW-SET-FN | |
849 INIT-FN PREP-FILL-FN EXIT-FN DRAW-HOW DRAW-FN EXTRA-DRAW-INFO) | |
850 | |
851 KEYWORD is a string specifying the name of the shape to draw. | |
852 This is used when selecting drawing operation. | |
853 KEY-SYMBOL is the key which is used when looking up members | |
854 through the functions `artist-go-get-MEMBER-from-symbol' | |
855 and `artist-fc-get-MEMBER-from-symbol'. | |
856 MODE-LINE is a string that appears in the mode-line when drawing | |
857 the shape. | |
858 ARROW-PRED is a function that is called to find out if the shape | |
859 can have arrows. The function is called with no arguments and | |
860 must return nil or t. | |
861 ARROW-SET-FN is a function that is called to set arrow end-points. | |
107128
0241cf43ec95
* textmodes/artist.el (artist-mt): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
106894
diff
changeset
|
862 Arguments and return values for this function are described below. |
33618 | 863 INIT-FN is, if non-nil, a function that is called when the first |
864 point of the shape is set. Arguments and return values for | |
107128
0241cf43ec95
* textmodes/artist.el (artist-mt): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
106894
diff
changeset
|
865 this function are described below. |
33618 | 866 PREP-FILL-FN is, if non-nil, a function that is called after |
867 the last point is set, but before the filling is done. | |
107128
0241cf43ec95
* textmodes/artist.el (artist-mt): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
106894
diff
changeset
|
868 Arguments and return values for this function are described below. |
33618 | 869 EXIT-FN is, if non-nil, a function that is called after filling |
107128
0241cf43ec95
* textmodes/artist.el (artist-mt): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
106894
diff
changeset
|
870 is done. Arguments and return values for this function are |
33618 | 871 described below. |
872 DRAW-HOW defines the kind of shape. The kinds of shapes are: | |
106876
ad7558737bc7
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
106860
diff
changeset
|
873 `artist-do-continously' -- Do drawing operation continuously, |
33618 | 874 as long as the mouse button is held down. |
875 `artist-do-poly' -- Do drawing operation many times. | |
876 1 -- Do drawing operation only once. | |
877 2 -- The drawing operation requires two points. | |
878 DRAW-FN is the function to call for drawing. Arguments and | |
107128
0241cf43ec95
* textmodes/artist.el (artist-mt): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
106894
diff
changeset
|
879 return values for this function are described below. |
33618 | 880 EXTRA-DRAW-INFO the layout of this depends on the value of DRAW-HOW: |
881 If DRAW-HOW is `artist-do-continously': | |
882 | |
883 (INTERVAL-FN) | |
884 | |
885 INTERVAL-FN is, if non-nil, a function to call for getting | |
886 an interval between repeated calls to the DRAW-FN. | |
887 This function is called with no arguments and must | |
888 return a number, the interval in seconds. | |
889 If nil, calls to DRAW-FN are done only when the mouse | |
890 or cursor is moved. | |
891 | |
892 If DRAW-HOW is either `artist-do-poly' or 2: | |
893 | |
894 (UNDRAW-FN FILL-PRED FILL-FN) | |
895 | |
896 UNDRAW-FN is a function to call for undrawing the shape. | |
107128
0241cf43ec95
* textmodes/artist.el (artist-mt): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
106894
diff
changeset
|
897 Arguments and return values for this function are |
33618 | 898 described below. |
899 FILL-PRED is a function that is called to find out if the shape | |
900 can have arrows. The function must take no arguments and | |
901 return nil or t. | |
902 FILL-FN is a function to call for filling the shape. | |
107128
0241cf43ec95
* textmodes/artist.el (artist-mt): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
106894
diff
changeset
|
903 Arguments and return values for this function are |
33618 | 904 described below. |
905 | |
906 If DRAW-HOW is 1: | |
907 | |
908 () | |
909 | |
107128
0241cf43ec95
* textmodes/artist.el (artist-mt): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
106894
diff
changeset
|
910 Note! All symbols and keywords (both in the `function-call' INFO-PART |
33618 | 911 as well as in the `graphics-operation' INFO-PART) must be unique. |
912 | |
913 The following table describe function arguments and return value | |
914 for different functions and DRAW-HOWs. | |
915 | |
916 If DRAW-HOW is either `artist-do-continously' or 1: | |
917 | |
918 INIT-FN X Y ==> ignored | |
919 PREP-FILL-FN X Y ==> ignored | |
920 EXIT-FN X Y ==> ignored | |
921 ARROW-SET-FN X Y ==> ignored | |
922 DRAW-FN X Y ==> ignored | |
923 | |
924 If DRAW-HOW is 2: | |
925 | |
926 INIT-FN X1 Y1 ==> ignored | |
927 PREP-FILL-FN X1 Y1 X2 Y2 ==> ignored | |
928 EXIT-FN X1 Y1 X2 Y2 ==> ignored | |
929 ARROW-SET-FN X1 Y1 X2 Y2 ==> ignored | |
930 DRAW-FN X1 Y1 X2 Y2 ==> (ENDPOINT-1 ENDPOINT-2 SHAPE) | |
931 UNDRAW-FN (ENDPOINT-1 ENDPOINT-2 SHAPE) ==> ignored | |
932 FILL-FN (ENDPOINT-1 ENDPOINT-2 SHAPE) X1 Y1 X2 Y2 ==> ignored | |
933 | |
934 ENDPOINT-1 and ENDPOINT-2 are endpoints which are created with | |
935 `artist-make-endpoint' | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
936 SHAPE is an opaque structure, created by the DRAW-FN and intended |
33618 | 937 to be used only by the UNDRAW-FN. |
938 | |
939 If DRAW-HOW is `artist-do-poly': | |
940 | |
941 INIT-FN X1 Y1 | |
942 PREP-FILL-FN POINT-LIST | |
943 ARROW-SET-FN POINT-LIST | |
944 EXIT-FN POINT-LIST | |
945 DRAW-FN X-LAST Y-LAST X-NEW Y-NEW ==> (ENDPOINT-1 ENDPOINT-2 SHAPE) | |
946 UNDRAW-FN (ENDPOINT-1 ENDPOINT-2 SHAPE) | |
947 FILL-FN POINT-LIST | |
948 | |
949 ENDPOINT-1 and ENDPOINT-2 are endpoints which are created with | |
950 `artist-make-endpoint'. | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
951 SHAPE is an opaque structure, created by the DRAW-FN and intended |
33618 | 952 to be used only by the UNDRAW-FN. |
953 POINT-LIST is a list of vectors [X Y].") | |
954 | |
955 | |
956 ;; | |
957 ;; Accessors for the master table | |
958 ;; | |
959 | |
960 (defun artist-mt-get-tag (element) | |
961 "Retrieve the tag component from the master table ELEMENT." | |
962 (elt element 0)) | |
963 | |
964 (defun artist-mt-get-info-part (element) | |
965 "Retrieve the info part component from the master table ELEMENT." | |
966 (elt element 1)) | |
967 | |
968 ;; For the 'graphics-operation info-parts | |
969 ;; | |
970 (defsubst artist-go-get-desc (info-part) | |
971 "Retrieve the description component from a graphics operation INFO-PART." | |
972 (elt info-part 0)) | |
973 | |
974 (defsubst artist-go-get-unshifted (info-part) | |
975 "Retrieve the unshifted info from a graphics operation INFO-PART." | |
976 (elt (elt info-part 1) 0)) | |
977 | |
978 (defsubst artist-go-get-shifted (info-part) | |
979 "Retrieve the shifted info from a graphics operation INFO-PART." | |
980 (elt (elt info-part 1) 1)) | |
981 | |
982 (defsubst artist-go-get-keyword (info-variant-part) | |
983 "Retrieve the keyword component from an INFO-VARIANT-PART. | |
984 An INFO-VARIANT-PART is the shifted or unshifted info from a info-part." | |
985 (elt info-variant-part 0)) | |
986 | |
987 (defsubst artist-go-get-symbol (info-variant-part) | |
988 "Retrieve the symbol component from an INFO-VARIANT-PART. | |
989 An INFO-VARIANT-PART is the shifted or unshifted info from a info-part." | |
990 (elt info-variant-part 1)) | |
991 | |
992 (defsubst artist-go-get-mode-line (info-variant-part) | |
993 "Retrieve the mode line component from an INFO-VARIANT-PART. | |
994 An INFO-VARIANT-PART is the shifted or unshifted info from a info-part." | |
995 (elt info-variant-part 2)) | |
996 | |
997 (defsubst artist-go-get-arrow-pred (info-variant-part) | |
998 "Retrieve the arrow predicate component from an INFO-VARIANT-PART. | |
999 An INFO-VARIANT-PART is the shifted or unshifted info from a info-part." | |
1000 (elt info-variant-part 3)) | |
1001 | |
1002 (defsubst artist-go-get-arrow-set-fn (info-variant-part) | |
1003 "Retrieve the arrow set component from an INFO-VARIANT-PART. | |
1004 An INFO-VARIANT-PART is the shifted or unshifted info from a info-part." | |
1005 (elt info-variant-part 4)) | |
1006 | |
1007 (defsubst artist-go-get-init-fn (info-variant-part) | |
1008 "Retrieve the init function component from an INFO-VARIANT-PART. | |
1009 An INFO-VARIANT-PART is the shifted or unshifted info from a info-part." | |
1010 (elt info-variant-part 5)) | |
1011 | |
1012 (defsubst artist-go-get-prep-fill-fn (info-variant-part) | |
1013 "Retrieve the fill preparation function component from an INFO-VARIANT-PART. | |
1014 An INFO-VARIANT-PART is the shifted or unshifted info from a info-part." | |
1015 (elt info-variant-part 6)) | |
1016 | |
1017 (defsubst artist-go-get-exit-fn (info-variant-part) | |
1018 "Retrieve the exit component from an INFO-VARIANT-PART. | |
1019 An INFO-VARIANT-PART is the shifted or unshifted info from a info-part." | |
1020 (elt info-variant-part 7)) | |
1021 | |
1022 (defsubst artist-go-get-draw-how (info-variant-part) | |
1023 "Retrieve the draw how component from an INFO-VARIANT-PART. | |
1024 An INFO-VARIANT-PART is the shifted or unshifted info from a info-part." | |
1025 (elt info-variant-part 8)) | |
1026 | |
1027 (defsubst artist-go-get-draw-fn (info-variant-part) | |
1028 "Retrieve the draw function component from an INFO-VARIANT-PART. | |
1029 An INFO-VARIANT-PART is the shifted or unshifted info from a info-part." | |
1030 (elt info-variant-part 9)) | |
1031 | |
1032 (defsubst artist-go-get-undraw-fn (info-variant-part) | |
1033 "Retrieve the undraw function component from an INFO-VARIANT-PART. | |
1034 An INFO-VARIANT-PART is the shifted or unshifted info from a info-part. | |
1035 This interval function component is available only if the `draw-how' | |
1036 component is other than `artist-do-continously' or 1." | |
1037 (elt (elt info-variant-part 10) 0)) | |
1038 | |
1039 (defsubst artist-go-get-interval-fn (info-variant-part) | |
1040 "Retrieve the interval function component from an INFO-VARIANT-PART. | |
1041 An INFO-VARIANT-PART is the shifted or unshifted info from a info-part. | |
1042 This interval function component is available only if the `draw-how' | |
1043 component is `artist-do-continously'." | |
1044 (elt (elt info-variant-part 10) 0)) | |
1045 | |
1046 (defsubst artist-go-get-fill-pred (info-variant-part) | |
1047 "Retrieve the fill predicate component from an INFO-VARIANT-PART. | |
1048 An INFO-VARIANT-PART is the shifted or unshifted info from a info-part. | |
1049 This interval function component is available only if the `draw-how' | |
1050 component is other than `artist-do-continously' or 1." | |
1051 (elt (elt info-variant-part 10) 1)) | |
1052 | |
1053 (defsubst artist-go-get-fill-fn (info-variant-part) | |
1054 "Retrieve the fill function component from an INFO-VARIANT-PART. | |
1055 An INFO-VARIANT-PART is the shifted or unshifted info from a info-part. | |
1056 This interval function component is available only if the `draw-how' | |
1057 component is other than `artist-do-continously' or 1." | |
1058 (elt (elt info-variant-part 10) 2)) | |
1059 | |
1060 ;; For the 'function-call info-parts | |
1061 ;; | |
1062 (defsubst artist-fc-get-keyword (info-part) | |
1063 "Retrieve the keyword component from a graphics operation INFO-PART." | |
1064 (elt info-part 0)) | |
1065 | |
1066 (defsubst artist-fc-get-symbol (info-part) | |
1067 "Retrieve the symbol component from a graphics operation INFO-PART." | |
1068 (elt info-part 1)) | |
1069 | |
1070 (defsubst artist-fc-get-fn (info-part) | |
1071 "Retrieve the function component from a graphics operation INFO-PART." | |
1072 (elt info-part 2)) | |
1073 | |
1074 ;; For the 'menu info-parts | |
1075 ;; | |
1076 (defsubst artist-mn-get-title (info-part) | |
1077 "Retrieve the title component from a graphics operation INFO-PART." | |
1078 (elt info-part 0)) | |
1079 | |
1080 (defsubst artist-mn-get-items (info-part) | |
1081 "Retrieve the items component from a graphics operation INFO-PART." | |
1082 (elt info-part 1)) | |
1083 | |
59223
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1084 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1085 ;; mouse wheel cyclic operation selection |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1086 |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1087 (defun artist-get-last-non-nil-op (op-list &optional last-non-nil) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1088 "Find the last non-nil draw operation in OP-LIST. |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1089 Optional LAST-NON-NIL will be returned if OP-LIST is nil." |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1090 (if op-list |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1091 (artist-get-last-non-nil-op (cdr op-list) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1092 (or (car (car op-list)) last-non-nil)) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1093 last-non-nil)) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1094 |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1095 (defun artist-get-first-non-nil-op (op-list) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1096 "Find the first non-nil draw operation in OP-LIST." |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1097 (or (car (car op-list)) (artist-get-first-non-nil-op (cdr op-list)))) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1098 |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1099 (defun artist-is-in-op-list-p (op op-list) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1100 "Check whether OP is in OP-LIST." |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1101 (and op-list |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1102 (or (and (car (car op-list)) (string= op (car (car op-list)))) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1103 (artist-is-in-op-list-p op (cdr op-list))))) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1104 |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1105 (defun artist-make-prev-next-op-alist (op-list |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1106 &optional |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1107 last-non-nil-arg first-non-nil-arg |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1108 prev-entry prev-op-arg) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1109 "Build an assoc-list of OP-LIST. |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1110 The arguments LAST-NON-NIL-ARG, FIRST-NON-NIL-ARG, PREV-ENTRY and |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1111 PREV-OP-ARG are used when invoked recursively during the build-up." |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1112 (let* ((last-non-nil (or last-non-nil-arg |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1113 (artist-get-last-non-nil-op |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1114 artist-key-compl-table))) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1115 (first-non-nil (or first-non-nil-arg |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1116 (artist-get-first-non-nil-op |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1117 artist-key-compl-table))) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1118 (prev-op (or prev-op-arg last-non-nil)) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1119 (op (car (car op-list))) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1120 (opsym (artist-mt-get-symbol-from-keyword op)) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1121 (entry (cons opsym (cons prev-op nil)))) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1122 (if (or (and op-list (not op)) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1123 (artist-is-in-op-list-p op (cdr op-list))) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1124 (artist-make-prev-next-op-alist (cdr op-list) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1125 last-non-nil first-non-nil |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1126 prev-entry prev-op) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1127 (if prev-entry (setcdr (cdr prev-entry) op)) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1128 (if op-list |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1129 (cons entry (artist-make-prev-next-op-alist |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1130 (cdr op-list) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1131 last-non-nil first-non-nil |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1132 entry op)) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1133 (progn (setcdr (cdr prev-entry) first-non-nil) nil))))) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1134 |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1135 (defun artist-select-next-op-in-list () |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1136 "Cyclically select next drawing mode operation." |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1137 (interactive) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1138 (let ((next-op (cdr (cdr (assoc artist-curr-go artist-prev-next-op-alist))))) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1139 (artist-select-operation next-op) |
87170
e50a2e215441
* erc-stamp.el (erc-echo-timestamp):
David Kastrup <dak@gnu.org>
parents:
85404
diff
changeset
|
1140 (message "%s" next-op))) |
59223
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1141 |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1142 (defun artist-select-prev-op-in-list () |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1143 "Cyclically select previous drawing mode operation." |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1144 (interactive) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1145 (let ((prev-op (car (cdr (assoc artist-curr-go artist-prev-next-op-alist))))) |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1146 (artist-select-operation prev-op) |
87170
e50a2e215441
* erc-stamp.el (erc-echo-timestamp):
David Kastrup <dak@gnu.org>
parents:
85404
diff
changeset
|
1147 (message "%s" prev-op))) |
59223
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1148 |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1149 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1150 |
33618 | 1151 ;;; --------------------------------- |
1152 ;;; The artist-mode | |
1153 ;;; --------------------------------- | |
1154 | |
33653
55d418b6992e
(artist-mode): Fix autoload cookie.
Gerd Moellmann <gerd@gnu.org>
parents:
33618
diff
changeset
|
1155 ;;;###autoload |
33618 | 1156 (defun artist-mode (&optional state) |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
1157 "Toggle Artist mode. |
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
1158 With argument STATE, turn Artist mode on if STATE is positive. |
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
1159 Artist lets you draw lines, squares, rectangles and poly-lines, |
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
1160 ellipses and circles with your mouse and/or keyboard. |
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
1161 |
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
1162 How to quit Artist mode |
33618 | 1163 |
1164 Type \\[artist-mode-off] to quit artist-mode. | |
1165 | |
1166 | |
1167 How to submit a bug report | |
1168 | |
1169 Type \\[artist-submit-bug-report] to submit a bug report. | |
1170 | |
1171 | |
1172 Drawing with the mouse: | |
1173 | |
1174 mouse-2 | |
1175 shift mouse-2 Pops up a menu where you can select what to draw with | |
1176 mouse-1, and where you can do some settings (described | |
1177 below). | |
1178 | |
1179 mouse-1 | |
1180 shift mouse-1 Draws lines, rectangles or poly-lines, erases, cuts, copies | |
1181 or pastes: | |
1182 | |
1183 Operation Not shifted Shifted | |
1184 -------------------------------------------------------------- | |
1185 Pen fill-char at point line from last point | |
1186 to new point | |
1187 -------------------------------------------------------------- | |
1188 Line Line in any direction Straight line | |
1189 -------------------------------------------------------------- | |
1190 Rectangle Rectangle Square | |
1191 -------------------------------------------------------------- | |
1192 Poly-line Poly-line in any dir Straight poly-lines | |
1193 -------------------------------------------------------------- | |
1194 Ellipses Ellipses Circles | |
1195 -------------------------------------------------------------- | |
1196 Text Text (see thru) Text (overwrite) | |
1197 -------------------------------------------------------------- | |
1198 Spray-can Spray-can Set size for spray | |
1199 -------------------------------------------------------------- | |
1200 Erase Erase character Erase rectangle | |
1201 -------------------------------------------------------------- | |
1202 Vaporize Erase single line Erase connected | |
1203 lines | |
1204 -------------------------------------------------------------- | |
1205 Cut Cut rectangle Cut square | |
1206 -------------------------------------------------------------- | |
1207 Copy Copy rectangle Copy square | |
1208 -------------------------------------------------------------- | |
1209 Paste Paste Paste | |
1210 -------------------------------------------------------------- | |
1211 Flood-fill Flood-fill Flood-fill | |
1212 -------------------------------------------------------------- | |
1213 | |
37825
8968ceca1581
(artist-mode): Fix a typo. From Pavel Janik <Pavel@Janik.cz>.
Eli Zaretskii <eliz@gnu.org>
parents:
34903
diff
changeset
|
1214 * Straight lines can only go horizontally, vertically |
33618 | 1215 or diagonally. |
1216 | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
1217 * Poly-lines are drawn while holding mouse-1 down. When you |
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
1218 release the button, the point is set. If you want a segment |
33618 | 1219 to be straight, hold down shift before pressing the |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
1220 mouse-1 button. Click mouse-2 or mouse-3 to stop drawing |
33618 | 1221 poly-lines. |
1222 | |
1223 * See thru for text means that text already in the buffer | |
1224 will be visible through blanks in the text rendered, while | |
1225 overwrite means the opposite. | |
1226 | |
1227 * Vaporizing connected lines only vaporizes lines whose | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
1228 _endpoints_ are connected. See also the variable |
33618 | 1229 `artist-vaporize-fuzziness'. |
1230 | |
1231 * Cut copies, then clears the rectangle/square. | |
1232 | |
1233 * When drawing lines or poly-lines, you can set arrows. | |
1234 See below under ``Arrows'' for more info. | |
1235 | |
1236 * The mode line shows the currently selected drawing operation. | |
1237 In addition, if it has an asterisk (*) at the end, you | |
1238 are currently drawing something. | |
1239 | |
1240 * Be patient when flood-filling -- large areas take quite | |
1241 some time to fill. | |
1242 | |
1243 | |
1244 mouse-3 Erases character under pointer | |
1245 shift mouse-3 Erases rectangle | |
1246 | |
1247 | |
1248 Settings | |
1249 | |
1250 Set fill Sets the character used when filling rectangles/squares | |
1251 | |
1252 Set line Sets the character used when drawing lines | |
1253 | |
1254 Erase char Sets the character used when erasing | |
1255 | |
1256 Rubber-banding Toggles rubber-banding | |
1257 | |
1258 Trimming Toggles trimming of line-endings (that is: when the shape | |
1259 is drawn, extraneous white-space at end of lines is removed) | |
1260 | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
1261 Borders Toggles the drawing of line borders around filled shapes |
33618 | 1262 |
1263 | |
1264 Drawing with keys | |
1265 | |
1266 \\[artist-key-set-point] Does one of the following: | |
1267 For lines/rectangles/squares: sets the first/second endpoint | |
1268 For poly-lines: sets a point (use C-u \\[artist-key-set-point] to set last point) | |
1269 When erase characters: toggles erasing | |
1270 When cutting/copying: Sets first/last endpoint of rect/square | |
1271 When pasting: Pastes | |
1272 | |
1273 \\[artist-select-operation] Selects what to draw | |
1274 | |
1275 Move around with \\[artist-next-line], \\[artist-previous-line], \\[artist-forward-char] and \\[artist-backward-char]. | |
1276 | |
99515
9b767bc53027
* international/mule.el (autoload-coding-system, with-category-table)
Juanma Barranquero <lekktu@gmail.com>
parents:
97766
diff
changeset
|
1277 \\[artist-select-fill-char] Sets the character to use when filling |
9b767bc53027
* international/mule.el (autoload-coding-system, with-category-table)
Juanma Barranquero <lekktu@gmail.com>
parents:
97766
diff
changeset
|
1278 \\[artist-select-line-char] Sets the character to use when drawing |
9b767bc53027
* international/mule.el (autoload-coding-system, with-category-table)
Juanma Barranquero <lekktu@gmail.com>
parents:
97766
diff
changeset
|
1279 \\[artist-select-erase-char] Sets the character to use when erasing |
33618 | 1280 \\[artist-toggle-rubber-banding] Toggles rubber-banding |
1281 \\[artist-toggle-trim-line-endings] Toggles trimming of line-endings | |
1282 \\[artist-toggle-borderless-shapes] Toggles borders on drawn shapes | |
1283 | |
1284 | |
1285 Arrows | |
1286 | |
1287 \\[artist-toggle-first-arrow] Sets/unsets an arrow at the beginning | |
1288 of the line/poly-line | |
1289 | |
1290 \\[artist-toggle-second-arrow] Sets/unsets an arrow at the end | |
1291 of the line/poly-line | |
1292 | |
1293 | |
1294 Selecting operation | |
1295 | |
1296 There are some keys for quickly selecting drawing operations: | |
1297 | |
1298 \\[artist-select-op-line] Selects drawing lines | |
1299 \\[artist-select-op-straight-line] Selects drawing straight lines | |
1300 \\[artist-select-op-rectangle] Selects drawing rectangles | |
1301 \\[artist-select-op-square] Selects drawing squares | |
1302 \\[artist-select-op-poly-line] Selects drawing poly-lines | |
1303 \\[artist-select-op-straight-poly-line] Selects drawing straight poly-lines | |
1304 \\[artist-select-op-ellipse] Selects drawing ellipses | |
1305 \\[artist-select-op-circle] Selects drawing circles | |
1306 \\[artist-select-op-text-see-thru] Selects rendering text (see thru) | |
1307 \\[artist-select-op-text-overwrite] Selects rendering text (overwrite) | |
1308 \\[artist-select-op-spray-can] Spray with spray-can | |
1309 \\[artist-select-op-spray-set-size] Set size for the spray-can | |
1310 \\[artist-select-op-erase-char] Selects erasing characters | |
1311 \\[artist-select-op-erase-rectangle] Selects erasing rectangles | |
1312 \\[artist-select-op-vaporize-line] Selects vaporizing single lines | |
1313 \\[artist-select-op-vaporize-lines] Selects vaporizing connected lines | |
1314 \\[artist-select-op-cut-rectangle] Selects cutting rectangles | |
1315 \\[artist-select-op-copy-rectangle] Selects copying rectangles | |
1316 \\[artist-select-op-paste] Selects pasting | |
1317 \\[artist-select-op-flood-fill] Selects flood-filling | |
1318 | |
1319 | |
1320 Variables | |
1321 | |
107707
0fee5a19e171
* textmodes/artist.el (artist-mode): Fix typo in docstring. (Bug#5807)
Juanma Barranquero <lekktu@gmail.com>
parents:
107128
diff
changeset
|
1322 This is a brief overview of the different variables. For more info, |
33618 | 1323 see the documentation for the variables (type \\[describe-variable] <variable> RET). |
1324 | |
1325 artist-rubber-banding Interactively do rubber-banding or not | |
1326 artist-first-char What to set at first/second point... | |
1327 artist-second-char ...when not rubber-banding | |
1328 artist-interface-with-rect If cut/copy/paste should interface with rect | |
1329 artist-arrows The arrows to use when drawing arrows | |
1330 artist-aspect-ratio Character height-to-width for squares | |
1331 artist-trim-line-endings Trimming of line endings | |
1332 artist-flood-fill-right-border Right border when flood-filling | |
1333 artist-flood-fill-show-incrementally Update display while filling | |
1334 artist-pointer-shape Pointer shape to use while drawing | |
1335 artist-ellipse-left-char Character to use for narrow ellipses | |
1336 artist-ellipse-right-char Character to use for narrow ellipses | |
1337 artist-borderless-shapes If shapes should have borders | |
1338 artist-picture-compatibility Whether or not to be picture mode compatible | |
1339 artist-vaporize-fuzziness Tolerance when recognizing lines | |
1340 artist-spray-interval Seconds between repeated sprayings | |
1341 artist-spray-radius Size of the spray-area | |
1342 artist-spray-chars The spray-``color'' | |
1343 artist-spray-new-chars Initial spray-``color'' | |
1344 | |
1345 Hooks | |
1346 | |
1347 When entering artist-mode, the hook `artist-mode-init-hook' is called. | |
1348 When quitting artist-mode, the hook `artist-mode-exit-hook' is called. | |
1349 | |
1350 | |
1351 Keymap summary | |
1352 | |
1353 \\{artist-mode-map}" | |
1354 (interactive) | |
1355 (if (setq artist-mode | |
1356 (if (null state) (not artist-mode) | |
1357 (> (prefix-numeric-value state) 0))) | |
1358 (artist-mode-init) | |
1359 (artist-mode-exit))) | |
1360 | |
1361 ;; insert our minor mode string | |
1362 (or (assq 'artist-mode minor-mode-alist) | |
1363 (setq minor-mode-alist | |
1364 (cons '(artist-mode artist-mode-name) | |
1365 minor-mode-alist))) | |
1366 | |
1367 ;; insert our minor mode keymap | |
1368 (or (assq 'artist-mode minor-mode-map-alist) | |
1369 (setq minor-mode-map-alist | |
1370 (cons (cons 'artist-mode artist-mode-map) | |
1371 minor-mode-map-alist))) | |
1372 | |
1373 | |
1374 ;; Init and exit | |
1375 (defun artist-mode-init () | |
1376 "Init Artist mode. This will call the hook `artist-mode-init-hook'." | |
97766
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1377 ;; Set up a conversion table for mapping tabs and new-lines to spaces. |
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1378 ;; the last case, 0, is for the last position in buffer/region, where |
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1379 ;; the `following-char' function returns 0. |
33618 | 1380 (let ((i 0)) |
1381 (while (< i 256) | |
1382 (aset artist-replacement-table i i) | |
1383 (setq i (1+ i)))) | |
65260
c1dcf33345ab
(x-pointer-crosshair): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
1384 (aset artist-replacement-table ?\n ?\s) |
c1dcf33345ab
(x-pointer-crosshair): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
1385 (aset artist-replacement-table ?\t ?\s) |
c1dcf33345ab
(x-pointer-crosshair): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
1386 (aset artist-replacement-table 0 ?\s) |
97766
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1387 ;; More setup |
33618 | 1388 (make-local-variable 'artist-key-is-drawing) |
1389 (make-local-variable 'artist-key-endpoint1) | |
1390 (make-local-variable 'artist-key-poly-point-list) | |
1391 (make-local-variable 'artist-key-shape) | |
1392 (make-local-variable 'artist-key-draw-how) | |
1393 (make-local-variable 'artist-popup-menu-table) | |
1394 (make-local-variable 'artist-key-compl-table) | |
59223
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1395 (make-local-variable 'artist-prev-next-op-alist) |
33618 | 1396 (make-local-variable 'artist-rb-save-data) |
1397 (make-local-variable 'artist-arrow-point-1) | |
1398 (make-local-variable 'artist-arrow-point-2) | |
1399 (setq artist-key-is-drawing nil) | |
1400 (setq artist-key-endpoint1 nil) | |
1401 (setq artist-key-poly-point-list nil) | |
1402 (setq artist-key-shape nil) | |
1403 (setq artist-popup-menu-table (artist-compute-popup-menu-table artist-mt)) | |
1404 (setq artist-key-compl-table (artist-compute-key-compl-table artist-mt)) | |
59223
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1405 (setq artist-prev-next-op-alist |
f467c038c83e
(artist-version): 1.2.6
Richard M. Stallman <rms@gnu.org>
parents:
55793
diff
changeset
|
1406 (artist-make-prev-next-op-alist artist-key-compl-table)) |
33618 | 1407 (setq artist-rb-save-data (make-vector 7 0)) |
1408 (setq artist-arrow-point-1 nil) | |
1409 (setq artist-arrow-point-2 nil) | |
1410 (make-local-variable 'next-line-add-newlines) | |
1411 (setq next-line-add-newlines t) | |
1412 (setq artist-key-draw-how | |
1413 (artist-go-get-draw-how-from-symbol artist-curr-go)) | |
1414 (if (and artist-picture-compatibility (not (eq major-mode 'picture-mode))) | |
1415 (progn | |
1416 (picture-mode) | |
1417 (message ""))) | |
1418 (run-hooks 'artist-mode-init-hook) | |
1419 (artist-mode-line-show-curr-operation artist-key-is-drawing)) | |
1420 | |
1421 (defun artist-mode-exit () | |
1422 "Exit Artist mode. This will call the hook `artist-mode-exit-hook'." | |
1423 (if (and artist-picture-compatibility (eq major-mode 'picture-mode)) | |
1424 (picture-mode-exit)) | |
1425 (kill-local-variable 'next-line-add-newlines) | |
1426 (run-hooks 'artist-mode-exit-hook)) | |
1427 | |
1428 (defun artist-mode-off () | |
1429 "Turn Artist mode off." | |
1430 (interactive) | |
1431 (artist-mode -1) | |
1432 (force-mode-line-update)) | |
1433 | |
1434 ;; | |
1435 ;; General routines | |
1436 ;; | |
1437 | |
1438 (defun artist-update-display () | |
1439 "Repaint the display." | |
1440 (sit-for 0)) | |
1441 | |
1442 (defun artist-mode-line-show-curr-operation (is-drawing) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
1443 "Show current operation in mode-line. If IS-DRAWING, show that." |
33618 | 1444 (let ((mtext (concat artist-mode-name "/" |
1445 (artist-go-get-mode-line-from-symbol artist-curr-go) | |
1446 (if is-drawing "/*" "")))) | |
1447 (setcdr (assq 'artist-mode minor-mode-alist) (list mtext))) | |
1448 (force-mode-line-update)) | |
1449 | |
1450 | |
1451 (defun artist-t-if-fill-char-set () | |
1452 "Return the value of the variable `artist-fill-char-set'." | |
1453 artist-fill-char-set) | |
1454 | |
1455 (defun artist-t () | |
1456 "Always return t." | |
1457 t) | |
1458 | |
1459 (defun artist-nil () | |
1460 "Always return nil." | |
1461 nil) | |
1462 | |
1463 (defun artist-arrows () | |
1464 "Say yes to arrows!" | |
1465 t) | |
1466 | |
1467 (defun artist-no-arrows () | |
1468 "Say no to arrows!" | |
1469 nil) | |
1470 | |
1471 ;; | |
1472 ;; Auxiliary init-routines | |
1473 ;; | |
1474 | |
1475 ; | |
1476 ; Computing the table for the x-popup-menu from the master table | |
1477 ; | |
1478 | |
1479 (defun artist-compute-popup-menu-table (menu-table) | |
106860
4cf58c2379f4
Mario Lang <mlang@delysid.org>: Remove some duplicated words.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
1480 "Create a menu from MENU-TABLE data. |
33618 | 1481 The returned value is suitable for the `x-popup-menu' function." |
1482 (cons "Artist menu" | |
1483 (artist-compute-popup-menu-table-sub menu-table))) | |
1484 | |
1485 (defun artist-compute-popup-menu-table-sub (menu-table) | |
1486 "Compute operation table suitable for `x-popup-menu' from MENU-TABLE." | |
1487 (mapcar | |
1488 (lambda (element) | |
1489 (let ((element-tag (artist-mt-get-tag element))) | |
1490 (cond ((eq element-tag 'graphics-operation) | |
1491 (let* ((info-part (artist-mt-get-info-part element)) | |
1492 (descr (artist-go-get-desc info-part)) | |
1493 (unshifted (artist-go-get-unshifted info-part)) | |
1494 (symbol (artist-go-get-symbol unshifted))) | |
1495 (list descr symbol))) | |
1496 | |
1497 ((eq element-tag 'function-call) | |
1498 (let* ((info-part (artist-mt-get-info-part element)) | |
1499 (keyword (artist-fc-get-keyword info-part)) | |
1500 (symbol (artist-fc-get-symbol info-part))) | |
1501 (list keyword symbol))) | |
1502 | |
1503 ((eq element-tag 'separator) | |
1504 '("" "")) | |
1505 | |
1506 ((eq element-tag 'menu) | |
1507 (let* ((info-part (artist-mt-get-info-part element)) | |
1508 (title (artist-mn-get-title info-part)) | |
1509 (items (artist-mn-get-items info-part))) | |
1510 (cons title (artist-compute-popup-menu-table-sub items)))) | |
1511 | |
1512 (t | |
1513 (error "Internal error: unknown element-tag: \"%s\"" | |
1514 element-tag))))) | |
1515 menu-table)) | |
1516 | |
1517 ; | |
1518 ; Computing the completion table from the master table | |
1519 ; | |
1520 | |
1521 (defun artist-compute-key-compl-table (menu-table) | |
1522 "Compute completion table from MENU-TABLE, suitable for `completing-read'." | |
1523 (apply | |
1524 'nconc | |
59224
0bedd71fb49f
(artist-butlast-fn): Var deleted.
Richard M. Stallman <rms@gnu.org>
parents:
59223
diff
changeset
|
1525 (remq nil |
33618 | 1526 (mapcar |
1527 (lambda (element) | |
1528 (let ((element-tag (artist-mt-get-tag element))) | |
1529 (cond ((eq element-tag 'graphics-operation) | |
1530 (let* ((info-part (artist-mt-get-info-part element)) | |
1531 (unshifted (artist-go-get-unshifted info-part)) | |
1532 (shifted (artist-go-get-shifted info-part)) | |
1533 (unshifted-kwd (artist-go-get-keyword unshifted)) | |
1534 (shifted-kwd (artist-go-get-keyword shifted))) | |
1535 (list (list unshifted-kwd) (list shifted-kwd)))) | |
1536 ((eq element-tag 'menu) | |
1537 (let* ((info-part (artist-mt-get-info-part element)) | |
1538 (items (artist-mn-get-items info-part))) | |
1539 (artist-compute-key-compl-table items))) | |
1540 (t | |
1541 nil)))) | |
1542 menu-table)))) | |
1543 | |
1544 | |
1545 ; | |
1546 ; Retrieving a symbol (graphics operation or function-call) from a keyword | |
1547 ; | |
1548 | |
1549 (defun artist-mt-get-symbol-from-keyword (kwd) | |
1550 "Search master table for keyword KWD and return its symbol." | |
1551 (artist-mt-get-symbol-from-keyword-sub artist-mt kwd)) | |
1552 | |
1553 (defun artist-mt-get-symbol-from-keyword-sub (table kwd) | |
1554 "Search TABLE for keyword KWD and return its symbol." | |
1555 (catch 'found | |
84925
003285de78e4
(artist-mt-get-symbol-from-keyword-sub, artist-go-retrieve-from-symbol-sub,
Juanma Barranquero <lekktu@gmail.com>
parents:
78482
diff
changeset
|
1556 (mapc |
33618 | 1557 (lambda (element) |
1558 (let ((element-tag (artist-mt-get-tag element))) | |
1559 (cond ((eq element-tag 'graphics-operation) | |
1560 (let* ((info-part (artist-mt-get-info-part element)) | |
1561 (unshifted (artist-go-get-unshifted info-part)) | |
1562 (shifted (artist-go-get-shifted info-part)) | |
1563 (unshifted-kwd (artist-go-get-keyword unshifted)) | |
1564 (shifted-kwd (artist-go-get-keyword shifted)) | |
1565 (unshifted-sym (artist-go-get-symbol unshifted)) | |
1566 (shifted-sym (artist-go-get-symbol shifted))) | |
1567 (if (string-equal kwd unshifted-kwd) | |
1568 (throw 'found unshifted-sym)) | |
1569 (if (string-equal kwd shifted-kwd) | |
1570 (throw 'found shifted-sym)))) | |
1571 | |
1572 ((eq element-tag 'function-call) | |
1573 (let* ((info-part (artist-mt-get-info-part element)) | |
1574 (keyword (artist-fc-get-keyword info-part)) | |
1575 (symbol (artist-fc-get-symbol info-part))) | |
1576 (if (string-equal kwd keyword) | |
1577 (throw 'found symbol)))) | |
1578 ((eq element-tag 'menu) | |
1579 (let* ((info-part (artist-mt-get-info-part element)) | |
1580 (items (artist-mn-get-items info-part)) | |
1581 (answer (artist-mt-get-symbol-from-keyword-sub | |
1582 items kwd))) | |
1583 (if answer (throw 'found answer)))) | |
1584 (t | |
1585 nil)))) | |
1586 table) | |
1587 nil)) | |
1588 | |
1589 | |
1590 ; | |
1591 ; Retrieving info from a graphics operation symbol | |
1592 ; | |
1593 | |
1594 (defun artist-go-retrieve-from-symbol (symbol retrieve-fn) | |
1595 "Search the master table for a graphics operation SYMBOL. | |
1596 Calls RETRIEVE-FN to retrieve information from that symbol's | |
1597 info-variant-part." | |
1598 (artist-go-retrieve-from-symbol-sub artist-mt symbol retrieve-fn)) | |
1599 | |
1600 (defun artist-go-retrieve-from-symbol-sub (table symbol retrieve-fn) | |
1601 "Search the TABLE for a graphics operation SYMBOL. | |
1602 Calls RETRIEVE-FN to retrieve information from that symbol's | |
1603 info-variant-part." | |
1604 (catch 'found | |
84925
003285de78e4
(artist-mt-get-symbol-from-keyword-sub, artist-go-retrieve-from-symbol-sub,
Juanma Barranquero <lekktu@gmail.com>
parents:
78482
diff
changeset
|
1605 (mapc |
33618 | 1606 (lambda (element) |
1607 (let ((element-tag (artist-mt-get-tag element))) | |
1608 (cond ((eq element-tag 'graphics-operation) | |
1609 (let* ((info-part (artist-mt-get-info-part element)) | |
1610 (unshifted (artist-go-get-unshifted info-part)) | |
1611 (shifted (artist-go-get-shifted info-part)) | |
1612 (unshifted-sym (artist-go-get-symbol unshifted)) | |
1613 (shifted-sym (artist-go-get-symbol shifted)) | |
1614 (variant-part (cond | |
1615 ((eq unshifted-sym symbol) unshifted) | |
1616 ((eq shifted-sym symbol) shifted) | |
1617 (t nil)))) | |
1618 (if variant-part ; if found do: | |
1619 (throw 'found (funcall retrieve-fn variant-part))))) | |
1620 | |
1621 ((eq element-tag 'menu) | |
1622 (let* ((info-part (artist-mt-get-info-part element)) | |
1623 (items (artist-mn-get-items info-part)) | |
1624 (answer (artist-go-retrieve-from-symbol-sub | |
1625 items symbol retrieve-fn))) | |
1626 (if answer (throw 'found answer))))))) | |
1627 | |
1628 table) | |
1629 nil)) | |
1630 | |
1631 (defun artist-go-get-keyword-from-symbol (symbol) | |
1632 "Search the master table, get keyword from a graphics operation SYMBOL." | |
1633 (artist-go-retrieve-from-symbol symbol 'artist-go-get-keyword)) | |
1634 | |
1635 (defun artist-go-get-mode-line-from-symbol (symbol) | |
1636 "Search the master table, get mode-line from a graphics operation SYMBOL." | |
1637 (artist-go-retrieve-from-symbol symbol 'artist-go-get-mode-line)) | |
1638 | |
1639 (defun artist-go-get-arrow-pred-from-symbol (symbol) | |
1640 "Search the master table, get arrow-pred from a graphics operation SYMBOL." | |
1641 (artist-go-retrieve-from-symbol symbol 'artist-go-get-arrow-pred)) | |
1642 | |
1643 (defun artist-go-get-arrow-set-fn-from-symbol (symbol) | |
1644 "Search the master table, get arrow-set-fn from a graphics operation SYMBOL." | |
1645 (artist-go-retrieve-from-symbol symbol 'artist-go-get-arrow-set-fn)) | |
1646 | |
1647 (defun artist-go-get-init-fn-from-symbol (symbol) | |
1648 "Search the master table, get init-fn from a graphics operation SYMBOL." | |
1649 (artist-go-retrieve-from-symbol symbol 'artist-go-get-init-fn)) | |
1650 | |
1651 (defun artist-go-get-prep-fill-fn-from-symbol (symbol) | |
1652 "Search the master table, get prep-fill-fn from a graphics operation SYMBOL." | |
1653 (artist-go-retrieve-from-symbol symbol 'artist-go-get-prep-fill-fn)) | |
1654 | |
1655 (defun artist-go-get-exit-fn-from-symbol (symbol) | |
1656 "Search the master table, get exit-fn from a graphics operation SYMBOL." | |
1657 (artist-go-retrieve-from-symbol symbol 'artist-go-get-exit-fn)) | |
1658 | |
1659 (defun artist-go-get-draw-fn-from-symbol (symbol) | |
1660 "Search the master table, get draw-fn from a graphics operation SYMBOL." | |
1661 (artist-go-retrieve-from-symbol symbol 'artist-go-get-draw-fn)) | |
1662 | |
1663 (defun artist-go-get-draw-how-from-symbol (symbol) | |
1664 "Search the master table, get draw-how from a graphics operation SYMBOL." | |
1665 (artist-go-retrieve-from-symbol symbol 'artist-go-get-draw-how)) | |
1666 | |
1667 (defun artist-go-get-undraw-fn-from-symbol (symbol) | |
1668 "Search the master table, get undraw-fn from a graphics operation SYMBOL." | |
1669 (artist-go-retrieve-from-symbol symbol 'artist-go-get-undraw-fn)) | |
1670 | |
1671 (defun artist-go-get-interval-fn-from-symbol (symbol) | |
1672 "Search the master table, get interval-fn from a graphics operation SYMBOL." | |
1673 (artist-go-retrieve-from-symbol symbol 'artist-go-get-interval-fn)) | |
1674 | |
1675 (defun artist-go-get-fill-pred-from-symbol (symbol) | |
1676 "Search the master table, get fill-pred from a graphics operation SYMBOL." | |
1677 (artist-go-retrieve-from-symbol symbol 'artist-go-get-fill-pred)) | |
1678 | |
1679 (defun artist-go-get-fill-fn-from-symbol (symbol) | |
1680 "Search the master table, get fill-fn from a graphics operation SYMBOL." | |
1681 (artist-go-retrieve-from-symbol symbol 'artist-go-get-fill-fn)) | |
1682 | |
1683 (defun artist-go-get-symbol-shift (symbol is-shifted) | |
1684 "Search for (shifted or unshifted) graphics operation SYMBOL. | |
1685 If IS-SHIFTED is non-nil, return the shifted symbol, | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
1686 otherwise the unshifted symbol." |
33618 | 1687 (artist-go-get-symbol-shift-sub artist-mt symbol is-shifted)) |
1688 | |
1689 (defun artist-go-get-symbol-shift-sub (table symbol is-shifted) | |
1690 "Search TABLE for (shifted or unshifted) graphics SYMBOL. | |
1691 If IS-SHIFTED is non-nil, return the shifted symbol, | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
1692 otherwise the unshifted symbol." |
33618 | 1693 (catch 'found |
84925
003285de78e4
(artist-mt-get-symbol-from-keyword-sub, artist-go-retrieve-from-symbol-sub,
Juanma Barranquero <lekktu@gmail.com>
parents:
78482
diff
changeset
|
1694 (mapc |
33618 | 1695 (lambda (element) |
1696 (let ((element-tag (artist-mt-get-tag element))) | |
1697 (cond ((eq element-tag 'graphics-operation) | |
1698 (let* ((info-part (artist-mt-get-info-part element)) | |
1699 (unshift-variant (artist-go-get-unshifted info-part)) | |
1700 (shift-variant (artist-go-get-shifted info-part)) | |
1701 (unshift-sym (artist-go-get-symbol unshift-variant)) | |
1702 (shift-sym (artist-go-get-symbol shift-variant))) | |
1703 (if (or (eq symbol unshift-sym) (eq symbol shift-sym)) | |
1704 (throw 'found (if is-shifted shift-sym unshift-sym))))) | |
1705 | |
1706 ((eq element-tag 'menu) | |
1707 (let* ((info-part (artist-mt-get-info-part element)) | |
1708 (items (artist-mn-get-items info-part)) | |
1709 (answer (artist-go-get-symbol-shift-sub | |
1710 items symbol is-shifted))) | |
1711 (if answer (throw 'found answer))))))) | |
1712 | |
1713 table) | |
1714 nil)) | |
1715 | |
1716 ; | |
1717 ; Retrieving info from a function-call symbol | |
1718 ; | |
1719 | |
1720 (defun artist-fc-retrieve-from-symbol (symbol retrieve-fn) | |
1721 "Search the master table for a function call SYMBOL. | |
1722 Calls RETRIEVE-FN to retrieve information from that symbol's | |
1723 info-variant-part." | |
1724 (artist-fc-retrieve-from-symbol-sub artist-mt symbol retrieve-fn)) | |
1725 | |
1726 (defun artist-fc-retrieve-from-symbol-sub (table symbol retrieve-fn) | |
1727 "Search TABLE for a function-call SYMBOL. | |
1728 Calls RETRIEVE-FN to retrieve information from that symbol's | |
1729 info-variant-part." | |
1730 (catch 'found | |
84925
003285de78e4
(artist-mt-get-symbol-from-keyword-sub, artist-go-retrieve-from-symbol-sub,
Juanma Barranquero <lekktu@gmail.com>
parents:
78482
diff
changeset
|
1731 (mapc |
33618 | 1732 (lambda (element) |
1733 (let ((element-tag (artist-mt-get-tag element))) | |
1734 (cond ((eq element-tag 'function-call) | |
1735 (let* ((info-part (artist-mt-get-info-part element)) | |
1736 (fc-symbol (artist-fc-get-symbol info-part))) | |
1737 (if (eq fc-symbol symbol) | |
1738 (throw 'found (funcall retrieve-fn info-part))))) | |
1739 | |
1740 ((eq element-tag 'menu) | |
1741 (let* ((info-part (artist-mt-get-info-part element)) | |
1742 (items (artist-mn-get-items info-part)) | |
1743 (answer (artist-fc-retrieve-from-symbol-sub | |
1744 items symbol retrieve-fn))) | |
1745 (if answer (throw 'found answer))))))) | |
1746 | |
1747 table) | |
1748 nil)) | |
1749 | |
1750 (defun artist-fc-get-fn-from-symbol (symbol) | |
1751 "Search the master table to get function from a function call SYMBOL." | |
1752 (artist-fc-retrieve-from-symbol symbol 'artist-fc-get-fn)) | |
1753 | |
1754 | |
1755 ;; | |
1756 ;; Utilities | |
1757 ;; | |
1758 | |
1759 ;; Macro that won't funcall the function if it is nil. | |
1760 ;; | |
1761 (defmacro artist-funcall (fn &rest args) | |
78482
80e300a489d6
Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents:
78225
diff
changeset
|
1762 "Call function FN with ARGS, if FN is not nil." |
33618 | 1763 (list 'if fn (cons 'funcall (cons fn args)))) |
1764 | |
1765 (defun artist-uniq (l) | |
1766 "Remove consecutive duplicates in list L. Comparison is done with `equal'." | |
1767 (cond ((null l) nil) | |
1768 ((null (cdr l)) l) ; only one element in list | |
1769 ((equal (car l) (car (cdr l))) (artist-uniq (cdr l))) ; first 2 equal | |
1770 (t (cons (car l) (artist-uniq (cdr l)))))) ; first 2 are different | |
1771 | |
1772 (defun artist-string-split (str r) | |
1773 "Split string STR at occurrences of regexp R, returning a list of strings." | |
1774 (let ((res nil) | |
1775 (start 0) | |
1776 (match-pos 0)) | |
1777 (while (setq match-pos (string-match r str start)) | |
1778 (setq res (cons (copy-sequence (substring str start match-pos)) res)) | |
1779 (setq start (match-end 0))) | |
1780 (if (null res) | |
1781 (list str) | |
1782 (if (< (match-end 0) (- (length str) 1)) | |
1783 (setq res (cons (substring str (match-end 0) (length str)) res))) | |
1784 (reverse res)))) | |
1785 | |
1786 (defun artist-string-to-file (str file-name) | |
1787 "Write string STR to file FILE-NAME." | |
1788 (write-region str 'end-is-ignored file-name nil 'no-message)) | |
1789 | |
1790 (defun artist-file-to-string (file-name) | |
1791 "Read from file FILE-NAME into a string." | |
1792 (save-excursion | |
1793 (let ((tmp-buffer (get-buffer-create (concat "*artist-" file-name "*")))) | |
1794 (set-buffer tmp-buffer) | |
1795 (goto-char (point-min)) | |
1796 (insert-file-contents file-name nil nil nil t) | |
1797 (let ((str (copy-sequence (buffer-substring (point-min) | |
1798 (point-max))))) | |
1799 (kill-buffer tmp-buffer) | |
1800 str)))) | |
1801 | |
1802 (defun artist-clear-buffer (buf) | |
1803 "Clear contents of buffer BUF." | |
105813
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
101892
diff
changeset
|
1804 (with-current-buffer buf |
33618 | 1805 (goto-char (point-min)) |
1806 (delete-char (- (point-max) (point-min)) nil))) | |
1807 | |
47953
126b6cb8740d
(artist-ff-is-bottommost-line): Fix misplaced ELSE expression on IF.
Juanma Barranquero <lekktu@gmail.com>
parents:
46163
diff
changeset
|
1808 |
33618 | 1809 (defun artist-system (program stdin &optional program-args) |
1810 "Run PROGRAM synchronously with the contents of string STDIN to stdin. | |
1811 Optional args PROGRAM-ARGS are arguments to PROGRAM. | |
1812 Return a list (RETURN-CODE STDOUT STDERR)." | |
1813 (save-excursion | |
1814 (let* ((tmp-stdin-file-name (if stdin | |
101892
b737631c78a2
(artist-system): Allow make-temp-file to use temporary-file-directory.
Chong Yidong <cyd@stupidchicken.com>
parents:
100908
diff
changeset
|
1815 (make-temp-file "artist-stdin.") |
33618 | 1816 nil)) |
1817 (tmp-stdout-buffer (get-buffer-create | |
1818 (concat "*artist-" program "*"))) | |
101892
b737631c78a2
(artist-system): Allow make-temp-file to use temporary-file-directory.
Chong Yidong <cyd@stupidchicken.com>
parents:
100908
diff
changeset
|
1819 (tmp-stderr-file-name (make-temp-file "artist-stdout.")) |
33618 | 1820 (binary-process-input nil) ; for msdos |
1821 (binary-process-output nil)) | |
1822 | |
1823 ;; Prepare stdin | |
1824 (if stdin (artist-string-to-file stdin tmp-stdin-file-name)) | |
1825 | |
1826 ;; Clear the buffer | |
1827 (artist-clear-buffer tmp-stdout-buffer) | |
1828 | |
1829 ;; Start the program | |
1830 (unwind-protect | |
1831 (let ((res (if program-args | |
1832 (apply 'call-process | |
1833 program | |
1834 tmp-stdin-file-name | |
1835 (list tmp-stdout-buffer | |
1836 tmp-stderr-file-name) | |
1837 nil | |
1838 (if (stringp program-args) | |
1839 (list program-args) | |
1840 program-args)) | |
1841 (apply 'call-process | |
1842 program | |
1843 tmp-stdin-file-name | |
1844 (list tmp-stdout-buffer | |
1845 tmp-stderr-file-name) | |
1846 nil)))) | |
1847 | |
1848 ;; the return value | |
1849 (list res | |
105813
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
101892
diff
changeset
|
1850 (with-current-buffer tmp-stdout-buffer |
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
101892
diff
changeset
|
1851 (buffer-substring (point-min) (point-max))) |
33618 | 1852 (artist-file-to-string tmp-stderr-file-name))) |
1853 | |
1854 ;; Unwind: remove temporary files and buffers | |
1855 (if (and stdin (file-exists-p tmp-stdin-file-name)) | |
1856 (delete-file tmp-stdin-file-name)) | |
1857 (if (file-exists-p tmp-stderr-file-name) | |
1858 (delete-file tmp-stderr-file-name)) | |
1859 (if (memq tmp-stdout-buffer (buffer-list)) | |
1860 (kill-buffer tmp-stdout-buffer)))))) | |
1861 | |
1862 ;; Routines that deal with the buffer | |
1863 ;; | |
1864 ;; artist-current-line get line number (top of buffer is 0) | |
1865 ;; | |
1866 ;; artist-move-to-xy move to (x,y) (0,0) is beg-of-buffer | |
1867 ;; | |
1868 ;; artist-get-char-at-xy get char in at (x,y) | |
1869 ;; | |
1870 ;; artist-replace-char overwrite (replace) char at point | |
1871 ;; artist-replace-chars overwrite (replace) chars at point | |
1872 ;; | |
1873 | |
1874 (defsubst artist-current-column () | |
1875 "Return point's current column." | |
1876 (current-column)) | |
1877 | |
1878 (defsubst artist-current-line () | |
1879 "Return point's current line, buffer-relative. Top of buffer is 0." | |
1880 (+ (count-lines 1 (point)) | |
1881 (if (= (current-column) 0) 1 0) | |
1882 -1)) | |
1883 | |
1884 (defsubst artist-move-to-xy (x y) | |
1885 "Move to column X, at row Y from the top of buffer. Top line is 0." | |
1886 ;; | |
1887 ;; Q: Why do we do forward-line twice? | |
1888 ;; A: The documentation for forward-line says | |
1889 ;; | |
1890 ;; "... Returns the count of lines left to move. ... With | |
1891 ;; positive N, a non-empty line at the end counts as one | |
1892 ;; line successfully moved (for the return value)." | |
1893 ;; | |
1894 ;; This means that if we are trying to move forward past the end | |
1895 ;; of the buffer, and that last line happened to be longer than | |
1896 ;; the current column, then we end up at the end of that last | |
1897 ;; line, and forward-line returns one less than we actually | |
1898 ;; wanted to move. | |
1899 ;; | |
1900 ;; Example: In the figure below, the `X' is the very last | |
1901 ;; character in the buffer ("a non-empty line at the | |
1902 ;; end"). Suppose point is at at P. Then (forward-line 1) | |
1903 ;; returns 0 and puts point after the `X'. | |
1904 ;; | |
1905 ;; --------top of buffer-------- | |
1906 ;; | |
1907 ;; P X | |
1908 ;; -------bottom of buffer------ | |
1909 ;; | |
1910 ;; But, if we are at the end of buffer when trying to move | |
1911 ;; forward, then forward-line will return the (for us) correct | |
1912 ;; value, which is good, because we will come to the end of the | |
1913 ;; buffer by the first forward-line. The second forward-line | |
1914 ;; will then get us where we really wanted to go. | |
1915 ;; | |
1916 ;; If we are not moving past the end of the buffer, then the | |
1917 ;; second forward-line will return 0. | |
1918 ;; | |
1919 ;; Q: What happens if we are moving upwards? | |
1920 ;; A: That will work good. insert-char won't insert a negative | |
1921 ;; number of chars, and forward-line will fail silently if we are | |
1922 ;; moving past the beginning of the buffer. | |
1923 ;; | |
1924 (forward-line (- y (artist-current-line))) | |
1925 (insert-char ?\n (forward-line (- y (artist-current-line)))) | |
1926 (move-to-column (max x 0) t) | |
1927 (let ((curr-y (artist-current-line))) | |
1928 (setq artist-draw-region-min-y (min curr-y artist-draw-region-min-y)) | |
1929 (setq artist-draw-region-max-y (max curr-y artist-draw-region-max-y)))) | |
1930 | |
1931 (defsubst artist-get-char-at-xy (x y) | |
1932 "Return the character found at column X, row Y. | |
1933 Also updates the variables `artist-draw-min-y' and `artist-draw-max-y'." | |
1934 (artist-move-to-xy x y) | |
1935 (let ((curr-y (artist-current-line))) | |
1936 (setq artist-draw-region-min-y (min curr-y artist-draw-region-min-y)) | |
1937 (setq artist-draw-region-max-y (max curr-y artist-draw-region-max-y))) | |
1938 (following-char)) | |
1939 | |
1940 | |
97766
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1941 (defsubst artist-get-replacement-char (c) |
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1942 "Retrieve a replacement for character C from `artist-replacement-table'. |
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1943 The replacement is used to convert tabs and new-lines to spaces." |
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1944 ;; Characters may be outside the range of the `artist-replacement-table', |
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1945 ;; for example if they are unicode code points >= 256. |
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1946 ;; Check so we don't attempt to access the array out of its bounds, |
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1947 ;; assuming no such character needs to be replaced. |
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1948 (if (< c (length artist-replacement-table)) |
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1949 (aref artist-replacement-table c) |
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1950 c)) |
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1951 |
33618 | 1952 (defun artist-get-char-at-xy-conv (x y) |
1953 "Retrieve the character at X, Y, converting tabs and new-lines to spaces." | |
1954 (save-excursion | |
97766
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1955 (artist-get-replacement-char (artist-get-char-at-xy x y)))) |
33618 | 1956 |
1957 | |
1958 (defun artist-replace-char (new-char) | |
1959 "Replace the character at point with NEW-CHAR." | |
1960 ;; Check that the variable exists first. The doc says it was added in 19.23. | |
34648
e787281bcf24
(artist-replace-chars, artist-replace-char):
Miles Bader <miles@gnu.org>
parents:
33653
diff
changeset
|
1961 (if (and (and (boundp 'emacs-major-version) (= emacs-major-version 20)) |
33618 | 1962 (and (boundp 'emacs-minor-version) (<= emacs-minor-version 3))) |
1963 ;; This is a bug workaround for Emacs 20, versions up to 20.3: | |
1964 ;; The self-insert-command doesn't care about the overwrite-mode, | |
1965 ;; so the insertion is done in the same way as in picture mode. | |
1966 ;; This seems to be a little bit slower. | |
1967 (progn | |
1968 (artist-move-to-xy (1+ (artist-current-column)) | |
1969 (artist-current-line)) | |
1970 (delete-char -1) | |
97766
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1971 (insert (artist-get-replacement-char new-char))) |
33618 | 1972 ;; In emacs-19, the self-insert-command works better and faster |
1973 (let ((overwrite-mode 'overwrite-mode-textual) | |
1974 (fill-column 32765) ; Large :-) | |
1975 (blink-matching-paren nil)) | |
97766
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1976 (setq last-command-event (artist-get-replacement-char new-char)) |
33618 | 1977 (self-insert-command 1)))) |
1978 | |
1979 (defun artist-replace-chars (new-char count) | |
1980 "Replace characters at point with NEW-CHAR. COUNT chars are replaced." | |
1981 ;; Check that the variable exists first. The doc says it was added in 19.23. | |
34648
e787281bcf24
(artist-replace-chars, artist-replace-char):
Miles Bader <miles@gnu.org>
parents:
33653
diff
changeset
|
1982 (if (and (and (boundp 'emacs-major-version) (= emacs-major-version 20)) |
33618 | 1983 (and (boundp 'emacs-minor-version) (<= emacs-minor-version 3))) |
1984 ;; This is a bug workaround for Emacs 20, versions up to 20.3: | |
1985 ;; The self-insert-command doesn't care about the overwrite-mode, | |
1986 ;; so the insertion is done in the same way as in picture mode. | |
1987 ;; This seems to be a little bit slower. | |
97766
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1988 (let* ((replaced-c (artist-get-replacement-char new-char)) |
34648
e787281bcf24
(artist-replace-chars, artist-replace-char):
Miles Bader <miles@gnu.org>
parents:
33653
diff
changeset
|
1989 (replaced-s (make-string count replaced-c))) |
33618 | 1990 (artist-move-to-xy (+ (artist-current-column) count) |
1991 (artist-current-line)) | |
1992 (delete-char (- count)) | |
1993 (insert replaced-s)) | |
1994 ;; In emacs-19, the self-insert-command works better | |
1995 (let ((overwrite-mode 'overwrite-mode-textual) | |
1996 (fill-column 32765) ; Large :-) | |
1997 (blink-matching-paren nil)) | |
97766
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
1998 (setq last-command-event (artist-get-replacement-char new-char)) |
33618 | 1999 (self-insert-command count)))) |
2000 | |
2001 (defsubst artist-replace-string (string &optional see-thru) | |
2002 "Replace contents at point with STRING. | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2003 With optional argument SEE-THRU set to non-nil, text in the buffer |
33618 | 2004 ``shines thru'' blanks in the STRING." |
2005 (let ((char-list (append string nil)) ; convert the string to a list | |
2006 (overwrite-mode 'overwrite-mode-textual) | |
2007 (fill-column 32765) ; Large :-) | |
2008 (blink-matching-paren nil)) | |
2009 (while char-list | |
2010 (let ((c (car char-list))) | |
97766
2b0a264c4e18
(artist-mode-init): Added comment on the setting up of the
Chong Yidong <cyd@stupidchicken.com>
parents:
95841
diff
changeset
|
2011 (if (and see-thru (= (artist-get-replacement-char c) ?\s)) |
33618 | 2012 (artist-move-to-xy (1+ (artist-current-column)) |
2013 (artist-current-line)) | |
2014 (artist-replace-char c))) | |
2015 (setq char-list (cdr char-list))))) | |
2016 | |
2017 ;; | |
2018 ;; Routines for setting and unsetting points | |
2019 ;; Used when not rubber-banding | |
2020 ;; | |
2021 (defun artist-no-rb-unset-point1 () | |
2022 "Unsets point 1 when not rubber-banding." | |
2023 (let ((x-now (artist-current-column)) | |
2024 (y-now (artist-current-line)) | |
2025 (x (aref artist-rb-save-data 0)) | |
2026 (y (aref artist-rb-save-data 1))) | |
2027 (artist-move-to-xy x y) | |
2028 (artist-replace-char (aref artist-rb-save-data 2)) | |
2029 (artist-move-to-xy x-now y-now))) | |
2030 | |
2031 (defun artist-no-rb-set-point1 (x y) | |
2032 "Set point 1 at X, Y when not rubber-banding." | |
2033 (let ((x-now (artist-current-column)) | |
2034 (y-now (artist-current-line))) | |
2035 (aset artist-rb-save-data 0 x) | |
2036 (aset artist-rb-save-data 1 y) | |
2037 (aset artist-rb-save-data 2 (artist-get-char-at-xy x y)) | |
2038 (artist-move-to-xy x y) | |
2039 (artist-replace-char artist-first-char) | |
2040 (artist-move-to-xy x-now y-now) | |
2041 (aset artist-rb-save-data 6 0))) | |
2042 | |
2043 (defun artist-no-rb-unset-point2 () | |
2044 "This function unsets point 2 when not rubber-banding." | |
2045 (if (= (aref artist-rb-save-data 6) 1) | |
2046 (let ((x-now (artist-current-column)) | |
2047 (y-now (artist-current-line)) | |
2048 (x (aref artist-rb-save-data 3)) | |
2049 (y (aref artist-rb-save-data 4))) | |
2050 (artist-move-to-xy x y) | |
2051 (artist-replace-char (aref artist-rb-save-data 5)) | |
2052 (artist-move-to-xy x-now y-now)))) | |
2053 | |
2054 (defun artist-no-rb-set-point2 (x y) | |
2055 "Set point 2 at X, Y when not rubber-banding." | |
2056 (let ((x-now (artist-current-column)) | |
2057 (y-now (artist-current-line))) | |
2058 (aset artist-rb-save-data 3 x) | |
2059 (aset artist-rb-save-data 4 y) | |
2060 (aset artist-rb-save-data 5 (artist-get-char-at-xy x y)) | |
2061 (artist-move-to-xy x y) | |
2062 (artist-replace-char artist-second-char) | |
2063 (artist-move-to-xy x-now y-now) | |
2064 (aset artist-rb-save-data 6 1))) | |
2065 | |
2066 (defun artist-no-rb-unset-points () | |
2067 "This function unsets point 1 and 2 when not rubber-banding." | |
2068 (artist-no-rb-unset-point1) | |
2069 (artist-no-rb-unset-point2)) | |
2070 | |
2071 | |
2072 ;; artist-intersection-char | |
2073 ;; | |
2074 ;; Note: If changing this, see the notes for artist-unintersection-char | |
2075 ;; and artist-vaporize-lines | |
2076 ;; | |
2077 (defun artist-intersection-char (new-c old-c) | |
2078 "Calculates intersection character when drawing a NEW-C on top of an OLD-C. | |
2079 Return character according to this scheme: | |
2080 | |
2081 OLD-C NEW-C return | |
2082 - | + | |
2083 | - + | |
2084 + | + | |
2085 + - + | |
2086 \\ / X | |
2087 / \\ X | |
2088 X / X | |
2089 X \\ X | |
2090 other combinations NEW-C" | |
2091 | |
2092 (cond ((and (= old-c ?- ) (= new-c ?| )) ?+ ) | |
2093 ((and (= old-c ?| ) (= new-c ?- )) ?+ ) | |
2094 ((and (= old-c ?+ ) (= new-c ?- )) ?+ ) | |
2095 ((and (= old-c ?+ ) (= new-c ?| )) ?+ ) | |
2096 ((and (= old-c ?\\ ) (= new-c ?/ )) ?X ) | |
2097 ((and (= old-c ?/ ) (= new-c ?\\ )) ?X ) | |
2098 ((and (= old-c ?X ) (= new-c ?/ )) ?X ) | |
2099 ((and (= old-c ?X ) (= new-c ?\\ )) ?X ) | |
2100 (t new-c))) | |
2101 | |
2102 ;; artist-unintersection-char | |
2103 ;; | |
2104 ;; Note: If changing this, see the note for artist-vaporize-lines | |
2105 ;; | |
2106 (defun artist-unintersection-char (line-c buffer-c) | |
2107 "Restore character to before intersection when removing LINE-C from BUFFER-C. | |
2108 Return character according to this scheme: | |
2109 | |
2110 LINE-C BUFFER-C return | |
2111 - + | | |
2112 | + - | |
2113 \\ X / | |
2114 / X \\ | |
2115 other combinations `artist-erase-char'." | |
2116 | |
2117 (cond ((and (= line-c ?- ) (= buffer-c ?+ )) ?| ) | |
2118 ((and (= line-c ?| ) (= buffer-c ?+ )) ?- ) | |
2119 ((and (= line-c ?\\ ) (= buffer-c ?X )) ?/ ) | |
2120 ((and (= line-c ?/ ) (= buffer-c ?X )) ?\\ ) | |
2121 ((= line-c buffer-c) artist-erase-char) | |
2122 (t buffer-c))) | |
2123 | |
2124 | |
2125 ;; Computing the line-char to use | |
2126 ;; for use with borderless shapes | |
2127 ;; | |
2128 (defsubst artist-compute-line-char () | |
2129 "Compute which character to use for lines, if any. | |
2130 Return value is either nil for the default characters that make up lines, or | |
2131 a character chosen depending on the variables `artist-borderless-shapes', | |
2132 `artist-fill-char-set', `artist-fill-char' and | |
2133 `artist-line-char-set' and `artist-line-char'." | |
2134 (if (and artist-borderless-shapes artist-fill-char-set) | |
2135 artist-fill-char | |
2136 (if artist-line-char-set | |
2137 artist-line-char | |
2138 nil))) | |
2139 | |
2140 | |
2141 ;; Things for drawing horizontal, vertical and diagonal (straight) lines. | |
2142 ;; | |
2143 ;; A line here is a vector: | |
2144 ;; [ start-x start-y length direction saved-char-1 saved-char-2 ... ] | |
2145 ;; directions start with 0 at the x-axis and counts anti clockwise. | |
2146 ;; | |
2147 (defvar artist-direction-info | |
2148 ;; x y char | |
2149 [ [ 1 0 ?- ] ; direction 0 | |
2150 [ 1 1 ?\\ ] ; direction 1 | |
2151 [ 0 1 ?| ] ; direction 2 | |
2152 [ -1 1 ?/ ] ; direction 3 | |
2153 [ -1 0 ?- ] ; direction 4 | |
2154 [ -1 -1 ?\\ ] ; direction 5 | |
2155 [ 0 -1 ?| ] ; direction 6 | |
2156 [ 1 -1 ?/ ] ] ; direction 7 | |
2157 "Table used for stepping x and y coordinates in a specific direction. | |
2158 This table is also used for determining which char to use for that direction.") | |
2159 | |
2160 (defsubst artist-direction-step-x (direction) | |
2161 "Return the x-step for DIRECTION from the `artist-direction-info' table." | |
2162 (aref (aref artist-direction-info direction) 0)) | |
2163 | |
2164 (defsubst artist-direction-step-y (direction) | |
2165 "Return the y-step for DIRECTION from the `artist-direction-info' table." | |
2166 (aref (aref artist-direction-info direction) 1)) | |
2167 | |
2168 (defun artist-direction-char (direction) | |
2169 "Return the character for DIRECTION from the `artist-direction-info' table." | |
2170 (aref (aref artist-direction-info direction) 2)) | |
2171 | |
2172 ;; artist-find-direction | |
2173 ;; | |
2174 ;; | |
2175 ;; | |
2176 (defun artist-find-direction (x1 y1 x2 y2) | |
2177 "Find the direction from point X1,Y1 to X2,Y2. | |
2178 Returns a DIRECTION, a number 0--7, coded as follows: | |
2179 | |
2180 5 6 7 | |
2181 \\ | / | |
2182 4 - * - 0 | |
2183 / | \\ | |
2184 3 2 1" | |
2185 (let ((delta-x (- x2 x1)) | |
2186 (delta-y (- y2 y1))) | |
2187 (cond ((>= delta-x (* 2 (abs delta-y))) 0) | |
2188 ((>= delta-y (* 2 (abs delta-x))) 2) | |
2189 ((>= (- delta-x) (* 2 (abs delta-y))) 4) | |
2190 ((>= (- delta-y) (* 2 (abs delta-x))) 6) | |
2191 ((and (>= delta-x 0) (>= delta-y 0)) 1) | |
2192 ((and (<= delta-x 0) (>= delta-y 0)) 3) | |
2193 ((and (<= delta-x 0) (<= delta-y 0)) 5) | |
2194 ((and (>= delta-x 0) (<= delta-y 0)) 7)))) | |
2195 | |
2196 (defun artist-straight-calculate-length (direction x1 y1 x2 y2) | |
2197 "Calculate length for a straight line in DIRECTION from X1,Y1 to X2,Y2." | |
2198 (cond ((or (= direction 7) | |
2199 (= direction 0) | |
2200 (= direction 1)) (1+ (- x2 x1))) | |
2201 ((or (= direction 3) | |
2202 (= direction 4) | |
2203 (= direction 5)) (1+ (- x1 x2))) | |
2204 (t (1+ (abs (- y2 y1)))))) | |
2205 | |
2206 (defun artist-sline (x1 y1 x2 y2) | |
2207 "Create a straight line from X1,Y1 to X2,Y2." | |
2208 (let* ((direction (artist-find-direction x1 y1 x2 y2)) | |
2209 (length (artist-straight-calculate-length direction x1 y1 x2 y2)) | |
2210 (line (make-vector (+ length 4) x1))) | |
2211 ;; not needed: | |
2212 ;; (aset line 0 x1) | |
2213 ;; because we set all elements to x1 | |
2214 (aset line 1 y1) | |
2215 (aset line 2 length) | |
2216 (aset line 3 direction) | |
2217 line)) | |
2218 | |
2219 (defun artist-save-chars-under-sline (line) | |
2220 "Save characters under a LINE." | |
2221 (let ((x (aref line 0)) | |
2222 (y (aref line 1)) | |
2223 (length (+ (aref line 2) 4)) | |
2224 (direction (aref line 3)) | |
2225 (i 4)) | |
2226 (while (< i length) | |
2227 (aset line i (artist-get-char-at-xy x y)) | |
2228 (setq x (+ x (artist-direction-step-x direction))) | |
2229 (setq y (+ y (artist-direction-step-y direction))) | |
2230 (setq i (1+ i)))) | |
2231 line) | |
2232 | |
2233 | |
2234 | |
2235 ;; Things for drawing lines in all directions. | |
2236 ;; The line drawing engine is the eight-point alrogithm. | |
2237 ;; | |
2238 ;; A line is here a list of (x y saved-char new-char)s. | |
2239 ;; | |
2240 (defvar artist-octant-info | |
2241 ;; Initial Step in Step in | |
2242 ;; coeffs x and y x and y | |
2243 ;; for if q >= 0 if g < 0 | |
2244 ;; dfdx,dfdy | |
2245 [ [ 2 1 1 0 1 1 ] ; 1st octant | |
2246 [ 1 2 1 1 0 1 ] ; 2nd octant | |
2247 [ -1 2 0 1 -1 1 ] ; 3rd octant | |
2248 [ -2 1 -1 1 -1 0 ] ; 4th octant | |
2249 [ -2 -1 -1 0 -1 -1 ] ; 5th octant | |
2250 [ -1 -2 -1 -1 0 -1 ] ; 6th octant | |
2251 [ 1 -2 0 -1 1 -1 ] ; 7th octant | |
2252 [ 2 -1 1 -1 1 0 ] ] ; 8th octant | |
2253 "Table used by line drawing algorithm (eight point).") | |
2254 | |
2255 ;; Primitives for the artist-octant-info. | |
2256 ;; Decrease octant by 1 since elt counts from 0 and octant counts from 1. | |
2257 ;; | |
2258 (defsubst artist-get-dfdx-init-coeff (octant) | |
2259 "Retrieve dfdx component for OCTANT." | |
2260 (aref (aref artist-octant-info (- octant 1)) 0)) | |
2261 | |
2262 (defsubst artist-get-dfdy-init-coeff (octant) | |
2263 "Retrieve dfdy component for OCTANT." | |
2264 (aref (aref artist-octant-info (- octant 1)) 1)) | |
2265 | |
2266 (defsubst artist-get-x-step-q>=0 (octant) | |
2267 "Retrieve x-step component for OCTANT when q >= 0." | |
2268 (aref (aref artist-octant-info (- octant 1)) 2)) | |
2269 | |
2270 (defsubst artist-get-y-step-q>=0 (octant) | |
2271 "Retrieve y-step component for OCTANT when q >= 0." | |
2272 (aref (aref artist-octant-info (- octant 1)) 3)) | |
2273 | |
2274 (defsubst artist-get-x-step-q<0 (octant) | |
2275 "Retrieve x-step component for OCTANT for q < 0." | |
2276 (aref (aref artist-octant-info (- octant 1)) 4)) | |
2277 | |
2278 (defsubst artist-get-y-step-q<0 (octant) | |
2279 "Retrieve y-step component for OCTANT for q < 0." | |
2280 (aref (aref artist-octant-info (- octant 1)) 5)) | |
2281 | |
2282 | |
2283 ;; Find octant from x1 y1 x2 y2 coordinates. | |
2284 ;; | |
2285 (defun artist-find-octant (x1 y1 x2 y2) | |
2286 "Find octant for a line from X1,Y1 to X2,Y2. | |
2287 Octant are numbered 1--8, anti-clockwise as: | |
2288 | |
2289 \\3|2/ | |
2290 4\\|/1 | |
2291 ---+--- | |
2292 5/|\\8 | |
2293 /6|7\\" | |
2294 | |
2295 (if (<= x1 x2) ; quadrant 1 or 4 | |
2296 (if (<= y1 y2) ; quadrant 1, octant 1 or 2 | |
2297 (if (>= (- x2 x1) (- y2 y1)) | |
2298 1 | |
2299 2) | |
2300 (if (>= (- x2 x1) (- (- y2 y1))) ; quadrant 4, octant 7 or 8 | |
2301 8 | |
2302 7)) | |
2303 (if (<= y1 y2) ; quadrant 2 or 3 | |
2304 (if (>= (- (- x2 x1)) (- y2 y1)) ; quadrant 2, octant 3 or 4 | |
2305 4 | |
2306 3) | |
2307 (if (>= (- (- x2 x1)) (- (- y2 y1))) ; quadrant 3, octant 5 or 6 | |
2308 5 | |
2309 6)))) | |
2310 | |
2311 ;; Some inline funtions for creating, setting and reading | |
2312 ;; members of a coordinate | |
2313 ;; | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2314 |
33618 | 2315 (defsubst artist-new-coord (x y &optional new-char) |
2316 "Create a new coordinate at X,Y for use in a line. | |
2317 Optional argument NEW-CHAR can be used for setting the new-char component | |
2318 in the coord." | |
2319 (let ((coord (make-vector 4 x))) | |
2320 (aset coord 1 y) | |
2321 (aset coord 3 new-char) | |
2322 coord)) | |
2323 | |
2324 (defsubst artist-coord-get-x (coord) | |
2325 "Retrieve the x component of a COORD." | |
2326 (aref coord 0)) | |
2327 | |
2328 (defsubst artist-coord-get-y (coord) | |
2329 "Retrieve the y component of a COORD." | |
2330 (aref coord 1)) | |
2331 | |
2332 (defsubst artist-coord-set-x (coord new-x) | |
2333 "Set the x component of a COORD to NEW-X." | |
2334 (aset coord 0 new-x) | |
2335 coord) | |
2336 | |
2337 (defsubst artist-coord-set-y (coord new-y) | |
2338 "Set the y component of a COORD to NEW-Y." | |
2339 (aset coord 1 new-y) | |
2340 coord) | |
2341 | |
2342 (defsubst artist-coord-get-saved-char (coord) | |
2343 "Retrieve the saved char component of a COORD." | |
2344 (aref coord 2)) | |
2345 | |
2346 (defsubst artist-coord-get-new-char (coord) | |
2347 "Retrieve the new char component of a COORD." | |
2348 (aref coord 3)) | |
2349 | |
2350 (defsubst artist-coord-add-saved-char (coord saved-char) | |
2351 "Set the saved char component of a COORD to SAVED-CHAR." | |
2352 (aset coord 2 saved-char) | |
2353 coord) | |
2354 | |
2355 (defsubst artist-coord-add-new-char (coord new-char) | |
2356 "Set the new char component of a COORD to NEW-CHAR." | |
2357 (aset coord 3 new-char) | |
2358 coord) | |
2359 | |
2360 (defsubst artist-coord-set-new-char (coord new-char) | |
2361 "Set the new char component of a COORD to NEW-CHAR." | |
2362 (aset coord 3 new-char) | |
2363 coord) | |
2364 | |
2365 | |
2366 ;; Pretend we are plotting a pixel. Instead we just list it | |
2367 ;; | |
2368 (defmacro artist-put-pixel (point-list x y) | |
2369 "In POINT-LIST, store a ``pixel'' at coord X,Y." | |
2370 (list 'setq point-list | |
2371 (list 'append point-list (list 'list (list 'artist-new-coord x y))))) | |
2372 | |
2373 ;; Calculate list of points using eight point algorithm | |
2374 ;; return a list of coords | |
2375 ;; | |
2376 (defun artist-eight-point (x1 y1 x2 y2) | |
2377 "Run the eight-point algorithm to get a list of coords from X1,Y1 to X2,Y2." | |
2378 (let* ((point-list nil) | |
2379 (octant (artist-find-octant x1 y1 x2 y2)) | |
2380 (dfdx-coeff (artist-get-dfdx-init-coeff octant)) | |
2381 (dfdy-coeff (artist-get-dfdy-init-coeff octant)) | |
2382 (x-step-q>=0 (artist-get-x-step-q>=0 octant)) | |
2383 (y-step-q>=0 (artist-get-y-step-q>=0 octant)) | |
2384 (x-step-q<0 (artist-get-x-step-q<0 octant)) | |
2385 (y-step-q<0 (artist-get-y-step-q<0 octant)) | |
2386 (dfdx (- (- y2 y1))) | |
2387 (dfdy (- x2 x1)) | |
2388 (x x1) | |
2389 (y y1) | |
2390 (f 0) | |
2391 (q (+ (* 2 f) | |
2392 (* dfdx-coeff dfdx) | |
2393 (* dfdy-coeff dfdy)))) | |
2394 (artist-put-pixel point-list x y) | |
2395 (while (or (not (eq x x2)) (not (eq y y2))) | |
2396 (if (>= q 0) | |
2397 (progn | |
2398 (setq x (+ x x-step-q>=0)) | |
2399 (setq y (+ y y-step-q>=0)) | |
2400 (setq f (+ f (* x-step-q>=0 dfdx) (* y-step-q>=0 dfdy)))) | |
2401 (progn | |
2402 (setq x (+ x x-step-q<0)) | |
2403 (setq y (+ y y-step-q<0)) | |
2404 (setq f (+ f (* x-step-q<0 dfdx) (* y-step-q<0 dfdy))))) | |
2405 (setq q (+ (* 2 f) (* dfdx-coeff dfdx) (* dfdy-coeff dfdy))) | |
2406 (artist-put-pixel point-list x y)) | |
2407 point-list)) | |
2408 | |
2409 ;; artist-save-chars-under-point-list | |
2410 ;; Remebers the chars that were there before we did draw the line. | |
2411 ;; Returns point-list. | |
2412 ;; | |
2413 (defun artist-save-chars-under-point-list (point-list) | |
2414 "Save characters originally under POINT-LIST." | |
2415 (mapcar | |
2416 (lambda (coord) | |
2417 (artist-coord-add-saved-char | |
2418 coord | |
2419 (artist-get-char-at-xy (artist-coord-get-x coord) | |
2420 (artist-coord-get-y coord)))) | |
2421 point-list)) | |
2422 | |
2423 ;; artist-calculate-new-char, artist-calculate-new-chars | |
2424 ;; Calculates which char to insert depending on direction of point-list. | |
2425 ;; | |
2426 ;; Depending on new-coord's position relative to last-coord one of the | |
2427 ;; following chars are returned: \ | / - o, as indicated by this: | |
2428 ;; | |
2429 ;; \ | / | |
2430 ;; - o - | |
2431 ;; / | \ | |
2432 ;; | |
2433 ;; artist-calculate-new-char works on one coordinate, returns char. | |
2434 ;; artist-calculate-new-chars works on a point-list, returns point-list. | |
2435 ;; | |
2436 (defun artist-calculate-new-char (last-coord new-coord) | |
2437 "Return a line-char to use when moving from LAST-COORD to NEW-COORD." | |
2438 (let ((last-x (artist-coord-get-x last-coord)) | |
2439 (last-y (artist-coord-get-y last-coord)) | |
2440 (new-x (artist-coord-get-x new-coord)) | |
2441 (new-y (artist-coord-get-y new-coord))) | |
2442 (cond ((> new-x last-x) (cond ((< new-y last-y) ?/ ) | |
2443 ((> new-y last-y) ?\\ ) | |
2444 (t ?- ))) | |
2445 ((< new-x last-x) (cond ((< new-y last-y) ?\\ ) | |
2446 ((> new-y last-y) ?/ ) | |
2447 (t ?- ))) | |
2448 ((eq new-y last-y) ?o) | |
2449 (t ?| )))) | |
2450 | |
2451 (defun artist-calculate-new-chars (point-list) | |
2452 "Return a list of coords with line-chars calculated. Input: POINT-LIST." | |
2453 (if (null (cdr point-list)) | |
2454 (list (artist-coord-add-new-char (car point-list) ?o )) | |
2455 (let ((last-coord (car point-list))) | |
2456 (cons (artist-coord-add-new-char | |
2457 (car point-list) | |
2458 (artist-calculate-new-char (car (cdr point-list)) | |
2459 (car point-list))) | |
2460 (mapcar | |
2461 (lambda (this-coord) | |
2462 (prog1 | |
2463 (artist-coord-add-new-char | |
2464 this-coord | |
2465 (artist-calculate-new-char last-coord this-coord)) | |
2466 (setq last-coord this-coord))) | |
2467 (cdr point-list)))))) | |
2468 | |
2469 ;; artist-modify-new-chars | |
2470 ;; Replaces some characters with some other characters. | |
2471 ;; | |
2472 ;; artist-modify-new-chars works on a point-list, returns point-list. | |
2473 ;; | |
2474 (defun artist-modify-new-chars (point-list) | |
2475 "Replace intersecting characters in POINT-LIST. | |
2476 This function returns a point-list." | |
2477 (mapcar | |
2478 (lambda (coord) | |
2479 (let* ((new-c (artist-coord-get-new-char coord)) | |
2480 (saved-c (artist-coord-get-saved-char coord)) | |
2481 (modified-c (artist-intersection-char new-c saved-c))) | |
2482 (artist-coord-set-new-char coord modified-c))) | |
2483 point-list)) | |
2484 | |
2485 | |
2486 ;; | |
2487 ;; functions for accessing endoints and elements in object requiring | |
2488 ;; 2 endpoints | |
2489 ;; | |
2490 | |
2491 (defun artist-make-endpoint (x y) | |
2492 "Create an endpoint at X, Y." | |
2493 (let ((new-endpoint (make-vector 2 x))) | |
2494 (aset new-endpoint 1 y) | |
2495 new-endpoint)) | |
2496 | |
2497 (defun artist-endpoint-get-x (endpoint) | |
2498 "Retrieve the x component of an ENDPOINT." | |
2499 (aref endpoint 0)) | |
2500 | |
2501 (defun artist-endpoint-get-y (endpoint) | |
2502 "Retrieve the y component of an ENDPOINT." | |
2503 (aref endpoint 1)) | |
2504 | |
2505 (defun artist-make-2point-object (endpoint1 endpoint2 shapeinfo) | |
2506 "Create a 2-point object of ENDPOINT1, ENDPOINT2 and SHAPEINFO." | |
2507 (list endpoint1 endpoint2 shapeinfo)) | |
2508 | |
2509 (defun artist-2point-get-endpoint1 (obj) | |
2510 "Retrieve the first endpoint of a 2-point object OBJ." | |
2511 (elt obj 0)) | |
2512 | |
2513 (defun artist-2point-get-endpoint2 (obj) | |
2514 "Retrieve the second endpoint of a 2-point object OBJ." | |
2515 (elt obj 1)) | |
2516 | |
2517 (defun artist-2point-get-shapeinfo (obj) | |
2518 "Retrieve the shapeinfo component of a 2-point object OBJ." | |
2519 (elt obj 2)) | |
2520 | |
2521 | |
2522 ;; | |
2523 ;; Drawing and undrawing lines (any direction) | |
2524 ;; | |
2525 | |
2526 (defun artist-draw-line (x1 y1 x2 y2) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2527 "Draw a line from X1, Y1 to X2, Y2. |
33618 | 2528 |
2529 Output is a line, which is a list (END-POINT-1 END-POINT-2 SHAPE-INFO). | |
2530 | |
2531 END-POINT-1 and END-POINT-2 are two-element vectors on the form [X Y]. | |
2532 SHAPE-INFO is a list of vectors [X Y SAVED-CHAR NEW-CHAR]." | |
2533 (let ((endpoint1 (artist-make-endpoint x1 y1)) | |
2534 (endpoint2 (artist-make-endpoint x2 y2))) | |
2535 (artist-make-2point-object | |
2536 endpoint1 | |
2537 endpoint2 | |
2538 (mapcar | |
2539 (lambda (coord) | |
2540 (artist-move-to-xy (artist-coord-get-x coord) | |
2541 (artist-coord-get-y coord)) | |
2542 (if artist-line-char-set | |
2543 (artist-replace-char artist-line-char) | |
2544 (artist-replace-char (artist-coord-get-new-char coord))) | |
2545 coord) | |
2546 (artist-modify-new-chars | |
2547 (artist-calculate-new-chars | |
2548 (artist-save-chars-under-point-list | |
2549 (artist-eight-point x1 y1 x2 y2)))))))) | |
2550 | |
2551 (defun artist-undraw-line (line) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2552 "Undraw LINE." |
33618 | 2553 (mapcar |
2554 (lambda (coord) | |
2555 (artist-move-to-xy (artist-coord-get-x coord) | |
2556 (artist-coord-get-y coord)) | |
2557 (artist-replace-char (artist-coord-get-saved-char coord)) | |
2558 coord) | |
2559 (artist-2point-get-shapeinfo line))) | |
2560 | |
2561 ;; | |
2562 ;; Drawing and undrawing straight lines | |
2563 ;; | |
2564 | |
2565 (defun artist-draw-sline (x1 y1 x2 y2) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2566 "Draw a straight line from X1, Y1 to X2, Y2. |
33618 | 2567 Straight lines are vertical, horizontal or diagonal lines. |
2568 They are faster to draw and most often they are what you need | |
2569 when drawing a simple image. | |
2570 | |
2571 Output is a straight line, which is a list on the form | |
51961
e56cb5adb76f
(artist-butlast-fn, artist-draw-sline)
John Paul Wallington <jpw@pobox.com>
parents:
47953
diff
changeset
|
2572 \(END-POINT-1 END-POINT-2 SHAPE-INFO). |
33618 | 2573 |
2574 END-POINT-1 and END-POINT-2 are two-element vectors on the form [X Y]. | |
2575 SHAPE-INFO is a vector [START-X START-Y LENGTH-OF-LINE DIRECTION | |
2576 ORIGINAL-CHAR-1 ORIGINAL-CHAR-2 ... ]." | |
2577 (let* ((line (artist-save-chars-under-sline (artist-sline x1 y1 x2 y2))) | |
2578 (x (aref line 0)) | |
2579 (y (aref line 1)) | |
2580 (length (+ (aref line 2) 4)) | |
2581 (direction (aref line 3)) | |
2582 (line-char (artist-direction-char direction)) | |
2583 (i 4) | |
2584 (endpoint1 (artist-make-endpoint x y)) | |
2585 (endpoint2 nil)) | |
2586 (while (< i length) | |
2587 (artist-move-to-xy x y) | |
2588 (if artist-line-char-set | |
2589 (artist-replace-char artist-line-char) | |
2590 (artist-replace-char (artist-intersection-char | |
2591 line-char | |
2592 (aref line i)))) | |
2593 (if (not (< (1+ i) length)) | |
2594 ;; This is the last element. Set the second endpoint | |
2595 (setq endpoint2 (artist-make-endpoint x y))) | |
2596 (setq x (+ x (artist-direction-step-x direction))) | |
2597 (setq y (+ y (artist-direction-step-y direction))) | |
2598 (setq i (1+ i))) | |
2599 (artist-make-2point-object endpoint1 endpoint2 line))) | |
2600 | |
2601 | |
2602 (defun artist-undraw-sline (line) | |
2603 "Undraw a straight line LINE." | |
2604 (if line | |
2605 (let* ((shape-info (artist-2point-get-shapeinfo line)) | |
2606 (x (aref shape-info 0)) | |
2607 (y (aref shape-info 1)) | |
2608 (length (+ (aref shape-info 2) 4)) | |
2609 (direction (aref shape-info 3)) | |
2610 (i 4)) | |
2611 (while (< i length) | |
2612 (artist-move-to-xy x y) | |
2613 (artist-replace-char (aref shape-info i)) | |
2614 (setq x (+ x (artist-direction-step-x direction))) | |
2615 (setq y (+ y (artist-direction-step-y direction))) | |
2616 (setq i (1+ i)))))) | |
2617 | |
2618 | |
2619 ;; | |
2620 ;; Drawing and undrawing rectangles and squares | |
2621 ;; | |
2622 | |
2623 (defun artist-draw-rect (x1 y1 x2 y2) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2624 "Draw a rectangle with corners at X1, Y1 and X2, Y2. |
33618 | 2625 |
2626 Output is a rectangle, which is a list on the form | |
51961
e56cb5adb76f
(artist-butlast-fn, artist-draw-sline)
John Paul Wallington <jpw@pobox.com>
parents:
47953
diff
changeset
|
2627 \(END-POINT-1 END-POINT-2 SHAPE-INFO). |
33618 | 2628 |
2629 END-POINT-1 and END-POINT-2 are two-element vectors on the form [X Y]. | |
2630 SHAPE-INFO is a list of four straight lines." | |
2631 (let* ((artist-line-char (artist-compute-line-char)) | |
2632 (artist-line-char-set artist-line-char) | |
2633 (line1 (artist-draw-sline x1 y1 x2 y1)) | |
2634 (line2 (artist-draw-sline x2 y1 x2 y2)) | |
2635 (line3 (artist-draw-sline x2 y2 x1 y2)) | |
2636 (line4 (artist-draw-sline x1 y2 x1 y1)) | |
2637 (endpoint1 (artist-make-endpoint x1 y1)) | |
2638 (endpoint2 (artist-make-endpoint x2 y2))) | |
2639 (artist-make-2point-object endpoint1 | |
2640 endpoint2 | |
2641 (list line1 line2 line3 line4)))) | |
2642 | |
2643 (defun artist-undraw-rect (rectangle) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2644 "Undraw RECTANGLE." |
33618 | 2645 (if rectangle |
2646 (let ((shape-info (artist-2point-get-shapeinfo rectangle))) | |
2647 (artist-undraw-sline (elt shape-info 3)) | |
2648 (artist-undraw-sline (elt shape-info 2)) | |
2649 (artist-undraw-sline (elt shape-info 1)) | |
2650 (artist-undraw-sline (elt shape-info 0))))) | |
2651 | |
2652 | |
2653 (defun artist-rect-corners-squarify (x1 y1 x2 y2) | |
2654 "Compute square corners from rectangle corners at X1, Y1 and X2, Y2. | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2655 The square's first corner will be X1, Y1. The position of the second |
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2656 corner depends on which of X2 and Y2 is most far away from X1, Y1." |
33618 | 2657 (let* ((delta-x (- x2 x1)) |
2658 (delta-y (- y2 y1)) | |
2659 (delta-x-sign (if (< delta-x 0) -1 1)) | |
2660 (delta-y-sign (if (< delta-y 0) -1 1)) | |
2661 (new-x2) ; set below | |
2662 (new-y2)) ; set below | |
2663 | |
2664 ;; Check which of x2 and y2 is most distant | |
2665 ;; take care to the aspect ratio | |
2666 (if (> (abs delta-x) (abs delta-y)) | |
2667 | |
2668 ;; *** x2 more distant than y2 (with care taken to aspect ratio) | |
2669 (progn | |
2670 (setq new-x2 x2) | |
2671 (setq new-y2 (+ y1 (round (/ (* (abs delta-x) delta-y-sign) | |
2672 artist-aspect-ratio))))) | |
2673 | |
2674 ;; *** y2 more distant than x2 (with care taken to aspect ratio) | |
2675 (progn | |
2676 (setq new-x2 (round (+ x1 (* (* (abs delta-y) delta-x-sign) | |
2677 artist-aspect-ratio)))) | |
2678 (setq new-y2 y2))) | |
2679 | |
2680 ;; Return this | |
2681 (list x1 y1 new-x2 new-y2))) | |
2682 | |
2683 | |
2684 (defun artist-draw-square (x1 y1 x2 y2) | |
2685 "Draw a square with corners at X1, Y1 and X2, Y2. | |
2686 | |
2687 Output is a square, which is a list on the form | |
51961
e56cb5adb76f
(artist-butlast-fn, artist-draw-sline)
John Paul Wallington <jpw@pobox.com>
parents:
47953
diff
changeset
|
2688 \(END-POINT-1 END-POINT-2 SHAPE-INFO). |
33618 | 2689 |
2690 END-POINT-1 and END-POINT-2 are two-element vectors on the form [X Y]. | |
2691 SHAPE-INFO is a list of four straight lines." | |
2692 (let* ((artist-line-char (artist-compute-line-char)) | |
2693 (artist-line-char-set artist-line-char) | |
2694 (square-corners (artist-rect-corners-squarify x1 y1 x2 y2)) | |
2695 (new-x1 (elt square-corners 0)) | |
2696 (new-y1 (elt square-corners 1)) | |
2697 (new-x2 (elt square-corners 2)) | |
2698 (new-y2 (elt square-corners 3)) | |
2699 (endpoint1 (artist-make-endpoint new-x1 new-y1)) | |
2700 (endpoint2 (artist-make-endpoint new-x2 new-y2)) | |
2701 (line1 (artist-draw-sline new-x1 new-y1 new-x2 new-y1)) | |
2702 (line2 (artist-draw-sline new-x2 new-y1 new-x2 new-y2)) | |
2703 (line3 (artist-draw-sline new-x2 new-y2 new-x1 new-y2)) | |
2704 (line4 (artist-draw-sline new-x1 new-y2 new-x1 new-y1))) | |
2705 (artist-make-2point-object endpoint1 | |
2706 endpoint2 | |
2707 (list line1 line2 line3 line4)))) | |
2708 | |
2709 (defun artist-undraw-square (square) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2710 "Undraw SQUARE." |
33618 | 2711 (if square |
2712 (let ((shape-info (artist-2point-get-shapeinfo square))) | |
2713 (artist-undraw-sline (elt shape-info 3)) | |
2714 (artist-undraw-sline (elt shape-info 2)) | |
2715 (artist-undraw-sline (elt shape-info 1)) | |
2716 (artist-undraw-sline (elt shape-info 0))))) | |
2717 | |
2718 ;; | |
2719 ;; Filling rectangles and squares | |
2720 ;; | |
2721 | |
2722 (defun artist-fill-rect (rect x1 y1 x2 y2) | |
2723 "Fill rectangle RECT from X1,Y1 to X2,Y2." | |
2724 (let ((x (1+ (min x1 x2))) | |
2725 (y (1+ (min y1 y2))) | |
2726 (x-max (max x1 x2)) | |
2727 (y-max (max y1 y2))) | |
2728 (let ((w (- x-max x))) | |
2729 (while (< y y-max) | |
2730 (artist-move-to-xy x y) | |
2731 (artist-replace-chars artist-fill-char w) | |
2732 (setq y (1+ y)))))) | |
2733 | |
2734 (defun artist-fill-square (square x1 y1 x2 y2) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2735 "Fill a SQUARE from X1,Y1 to X2,Y2." |
33618 | 2736 (let* ((square-corners (artist-rect-corners-squarify x1 y1 x2 y2)) |
2737 (new-x1 (elt square-corners 0)) | |
2738 (new-y1 (elt square-corners 1)) | |
2739 (new-x2 (elt square-corners 2)) | |
2740 (new-y2 (elt square-corners 3)) | |
2741 (x (1+ (min new-x1 new-x2))) | |
2742 (y (1+ (min new-y1 new-y2))) | |
2743 (x-max (max new-x1 new-x2)) | |
2744 (y-max (max new-y1 new-y2)) | |
2745 (w (- x-max x))) | |
2746 (while (< y y-max) | |
2747 (artist-move-to-xy x y) | |
2748 (artist-replace-chars artist-fill-char w) | |
2749 (setq y (1+ y))))) | |
2750 | |
2751 | |
2752 ;; | |
2753 ;; Pen drawing | |
2754 ;; | |
2755 | |
2756 (defun artist-pen (x1 y1) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2757 "Draw a character at X1, Y1. |
33618 | 2758 The character is replaced with the character in `artist-fill-char'." |
2759 (artist-move-to-xy x1 y1) | |
2760 (artist-replace-char (if artist-line-char-set | |
2761 artist-line-char | |
2762 (if artist-fill-char-set | |
2763 artist-fill-char | |
2764 artist-default-fill-char)))) | |
2765 | |
2766 | |
2767 (defun artist-pen-line (x1 y1) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2768 "Draw a line from last pen position to X1, Y1. |
33618 | 2769 The character is replaced with the character in `artist-fill-char'. |
2770 This will store all points in `artist-key-poly-point-list' in reversed | |
2771 order (I assume it is faster to cons to the beginning of the list than | |
2772 to append to the end of the list, when doing free-hand drawing)." | |
2773 (let ((artist-line-char (if artist-line-char-set | |
2774 artist-line-char | |
2775 (if artist-fill-char-set | |
2776 artist-fill-char | |
2777 artist-default-fill-char)))) | |
2778 | |
2779 ;; Draw line from last point to this | |
2780 (let ((x-last (car (car artist-key-poly-point-list))) | |
2781 (y-last (cdr (car artist-key-poly-point-list)))) | |
2782 (artist-move-to-xy x-last y-last) | |
2783 (artist-replace-char artist-line-char) | |
2784 (artist-draw-line x-last y-last x1 y1)) | |
2785 | |
2786 ;; Update the point-list | |
2787 (setq artist-key-poly-point-list | |
2788 (cons (cons x1 y1) artist-key-poly-point-list)))) | |
2789 | |
2790 (defun artist-pen-reset-last-xy (x1 y1) | |
2791 "Reset the last x and y points to X1, Y1 when doing pen-drawing." | |
2792 (artist-clear-arrow-points) | |
2793 (setq artist-key-poly-point-list (list (cons x1 y1)))) | |
2794 | |
2795 | |
2796 (defun artist-pen-set-arrow-points (x1 y1) | |
2797 "Set arrow points for pen drawing using X1, Y1. | |
2798 Also, the `artist-key-poly-point-list' is reversed." | |
2799 | |
2800 (setq artist-key-poly-point-list | |
2801 (artist-uniq artist-key-poly-point-list)) | |
2802 | |
2803 (if (>= (length artist-key-poly-point-list) 2) | |
2804 | |
2805 ;; Only set arrow-points if the point-list has two or more entries | |
2806 (let ((xn (car (car artist-key-poly-point-list))) | |
2807 (yn (cdr (car artist-key-poly-point-list))) | |
2808 (xn-1 (car (car (cdr artist-key-poly-point-list)))) | |
2809 (yn-1 (cdr (car (cdr artist-key-poly-point-list)))) | |
2810 (dirn)) ; direction for point n | |
2811 (setq artist-key-poly-point-list (reverse artist-key-poly-point-list)) | |
2812 (let ((x0 (car (car artist-key-poly-point-list))) | |
2813 (y0 (cdr (car artist-key-poly-point-list))) | |
2814 (x1 (car (car (cdr artist-key-poly-point-list)))) | |
2815 (y1 (cdr (car (cdr artist-key-poly-point-list)))) | |
2816 (dir0)) ; direction for point 0 | |
2817 (setq dir0 (artist-find-direction x1 y1 x0 y0)) | |
2818 (setq dirn (artist-find-direction xn-1 yn-1 xn yn)) | |
2819 (setq artist-arrow-point-1 (artist-make-arrow-point x0 y0 dir0)) | |
2820 (setq artist-arrow-point-2 (artist-make-arrow-point xn yn dirn)))))) | |
2821 | |
2822 | |
2823 ;; | |
2824 ;; Text rendering | |
2825 ;; | |
2826 (defun artist-figlet-run (text font extra-args) | |
2827 "Run figlet rendering TEXT using FONT. | |
2828 EXTRA-ARGS for figlet, for the command line, may be specified." | |
2829 (let* ((figlet-args (cond ((and font extra-args) | |
2830 (cons (concat "-f" font) | |
2831 (artist-string-split extra-args "[ \t]+"))) | |
2832 (font (concat "-f" font)) | |
2833 (extra-args | |
2834 (artist-string-split extra-args "[ \t]+")) | |
2835 (t nil))) | |
2836 (figlet-output (artist-system artist-figlet-program text figlet-args)) | |
2837 (exit-code (elt figlet-output 0)) | |
2838 (stdout (elt figlet-output 1)) | |
2839 (stderr (elt figlet-output 2))) | |
2840 (if (not (= exit-code 0)) | |
2841 (error "Failed to render font: %s (%d)" stderr exit-code)) | |
2842 stdout)) | |
2843 | |
2844 (defun artist-figlet-get-font-list () | |
2845 "Read fonts in with the shell command. | |
2846 Returns a list of strings." | |
2847 (let* ((cmd-interpreter "/bin/sh") | |
2848 (ls-cmd artist-figlet-list-fonts-command) | |
2849 (result (artist-system cmd-interpreter ls-cmd nil)) | |
2850 (exit-code (elt result 0)) | |
2851 (stdout (elt result 1)) | |
2852 (stderr (elt result 2))) | |
2853 (if (not (= exit-code 0)) | |
2854 (error "Failed to read available fonts: %s (%d)" stderr exit-code)) | |
2855 (artist-string-split stdout ".flf\n"))) | |
2856 | |
2857 (defun artist-figlet-choose-font () | |
2858 "Read any extra arguments for figlet." | |
2859 (interactive) | |
2860 (let* ((avail-fonts (artist-figlet-get-font-list)) | |
65680
ed770a0a7846
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents:
65583
diff
changeset
|
2861 (font (completing-read (concat "Select font (default " |
33618 | 2862 artist-figlet-default-font |
65680
ed770a0a7846
2005-09-24 Emilio C. Lopes <eclig@gmx.net>
Romain Francoise <romain@orebokech.com>
parents:
65583
diff
changeset
|
2863 "): ") |
33618 | 2864 (mapcar |
2865 (lambda (font) (cons font font)) | |
2866 avail-fonts)))) | |
2867 (if (string= font "") artist-figlet-default-font font))) | |
2868 | |
2869 (defun artist-figlet-get-extra-args () | |
2870 "Read any extra arguments for figlet." | |
63800
b9819eae04f1
(artist-text-overwrite)
Richard M. Stallman <rms@gnu.org>
parents:
59224
diff
changeset
|
2871 (let ((extra-args (read-string "Extra args to figlet: "))) |
33618 | 2872 (if (string= extra-args "") |
2873 nil | |
2874 extra-args))) | |
2875 | |
2876 (defun artist-figlet (text) | |
2877 "Render TEXT using figlet." | |
2878 (let* ((figlet-font (artist-figlet-choose-font)) | |
2879 (figlet-extra-args (artist-figlet-get-extra-args))) | |
2880 (artist-figlet-run text figlet-font figlet-extra-args))) | |
2881 | |
2882 | |
2883 (defun artist-text-insert-common (x y text see-thru) | |
2884 "At position X, Y, insert text TEXT. | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2885 If SEE-THRU is non-nil, then blanks in TEXT do not replace text |
33618 | 2886 in the buffer." |
2887 (let* ((string-list (artist-string-split text "\n")) | |
2888 (i 0) | |
2889 (len (length string-list))) | |
2890 (while (< i len) | |
2891 (artist-move-to-xy x (+ y i)) | |
2892 (artist-replace-string (car string-list) see-thru) | |
2893 (setq string-list (cdr string-list)) | |
2894 (setq i (1+ i))))) | |
47953
126b6cb8740d
(artist-ff-is-bottommost-line): Fix misplaced ELSE expression on IF.
Juanma Barranquero <lekktu@gmail.com>
parents:
46163
diff
changeset
|
2895 |
33618 | 2896 (defun artist-text-insert-see-thru (x y text) |
2897 "At position X, Y, insert text TEXT. | |
2898 Let text already in buffer shine thru the TEXT inserted." | |
2899 (artist-text-insert-common x y text t)) | |
2900 | |
2901 (defun artist-text-insert-overwrite (x y text) | |
2902 "At position X, Y, insert text TEXT. | |
2903 Let blanks in TEXT overwrite any text already in the buffer." | |
2904 (artist-text-insert-common x y text nil)) | |
2905 | |
2906 (defun artist-text-see-thru (x y) | |
2907 "Prompt for text to render, render it at X,Y. | |
70811
fbbc9639de95
(artist-text-renderer): Make this the alias for the following variable.
Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
parents:
68648
diff
changeset
|
2908 This is done by calling the function specified by |
fbbc9639de95
(artist-text-renderer): Make this the alias for the following variable.
Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
parents:
68648
diff
changeset
|
2909 `artist-text-renderer-function', which must return a list of strings, |
fbbc9639de95
(artist-text-renderer): Make this the alias for the following variable.
Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
parents:
68648
diff
changeset
|
2910 to be inserted in the buffer. |
33618 | 2911 |
2912 Text already in the buffer ``shines thru'' blanks in the rendered text." | |
63800
b9819eae04f1
(artist-text-overwrite)
Richard M. Stallman <rms@gnu.org>
parents:
59224
diff
changeset
|
2913 (let* ((input-text (read-string "Type text to render: ")) |
70811
fbbc9639de95
(artist-text-renderer): Make this the alias for the following variable.
Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
parents:
68648
diff
changeset
|
2914 (rendered-text (artist-funcall artist-text-renderer-function input-text))) |
33618 | 2915 (artist-text-insert-see-thru x y rendered-text))) |
2916 | |
2917 | |
2918 (defun artist-text-overwrite (x y) | |
2919 "Prompt for text to render, render it at X,Y. | |
70811
fbbc9639de95
(artist-text-renderer): Make this the alias for the following variable.
Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
parents:
68648
diff
changeset
|
2920 This is done by calling the function specified by |
fbbc9639de95
(artist-text-renderer): Make this the alias for the following variable.
Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
parents:
68648
diff
changeset
|
2921 `artist-text-renderer-function', which must return a list of strings, |
fbbc9639de95
(artist-text-renderer): Make this the alias for the following variable.
Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
parents:
68648
diff
changeset
|
2922 to be inserted in the buffer. |
33618 | 2923 |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2924 Blanks in the rendered text overwrite any text in the buffer." |
63800
b9819eae04f1
(artist-text-overwrite)
Richard M. Stallman <rms@gnu.org>
parents:
59224
diff
changeset
|
2925 (let* ((input-text (read-string "Type text to render: ")) |
70811
fbbc9639de95
(artist-text-renderer): Make this the alias for the following variable.
Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>
parents:
68648
diff
changeset
|
2926 (rendered-text (artist-funcall artist-text-renderer-function input-text))) |
33618 | 2927 (artist-text-insert-overwrite x y rendered-text))) |
2928 | |
2929 ;; | |
2930 ;; Spraying | |
47953
126b6cb8740d
(artist-ff-is-bottommost-line): Fix misplaced ELSE expression on IF.
Juanma Barranquero <lekktu@gmail.com>
parents:
46163
diff
changeset
|
2931 ;; |
33618 | 2932 |
2933 (defun artist-spray-get-interval () | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2934 "Retrieve the interval for repeated spray." |
33618 | 2935 artist-spray-interval) |
2936 | |
2937 (defun artist-spray-random-points (n radius) | |
2938 "Generate N random points within a radius of RADIUS. | |
2939 Returns a list of points. Each point is on the form (X1 . Y1)." | |
2940 (let ((points)) | |
2941 (while (> n 0) | |
2942 (let* ((angle (* (random 359) (/ pi 180))) | |
2943 (dist (random radius)) | |
2944 (point (cons (round (* dist (cos angle))) | |
2945 (round (* dist (sin angle)))))) | |
2946 (setq points (cons point points))) | |
2947 (setq n (- n 1))) | |
2948 points)) | |
2949 | |
2950 (defun artist-spray (x1 y1) | |
2951 "Spray at X1, Y1." | |
2952 (let* ((num-points (* artist-spray-radius artist-spray-radius)) | |
2953 (spray-points (artist-spray-random-points num-points | |
2954 artist-spray-radius))) | |
2955 (while spray-points | |
2956 ;; Replace one spray point | |
2957 (let* ((point (car spray-points)) | |
2958 (x (+ x1 (car point))) | |
2959 (y (+ y1 (cdr point))) | |
2960 (buf-c (artist-get-char-at-xy-conv x y)) | |
2961 (this-c (memq buf-c artist-spray-chars)) | |
2962 (next-c (cond ((null this-c) artist-spray-new-char) | |
2963 ((null (cdr this-c)) (car this-c)) | |
2964 (t (car (cdr this-c)))))) | |
2965 (artist-move-to-xy x y) | |
2966 (artist-replace-char next-c)) | |
2967 | |
2968 ;; Step to next spray point | |
2969 (setq spray-points (cdr spray-points))))) | |
2970 | |
2971 (defun artist-spray-clear-circle (circle x1 y1 x2 y2) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2972 "Clear circle CIRCLE at X1, Y1 through X2, Y2." |
33618 | 2973 (artist-undraw-circle circle)) |
2974 | |
2975 (defun artist-spray-set-radius (circle x1 y1 x2 y2) | |
2976 "Set spray radius from CIRCLE at X1, Y1 through X2, Y2." | |
2977 (let ((dx (- x2 x1)) | |
2978 (dy (- y2 y1))) | |
2979 (setq artist-spray-radius (round (sqrt (+ (* dx dx) (* dy dy))))) | |
2980 (if (= 0 artist-spray-radius) | |
2981 (setq artist-spray-radius 1)))) | |
2982 | |
2983 ;; | |
2984 ;; Erasing | |
2985 ;; | |
2986 | |
2987 (defun artist-erase-char (x1 y1) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
2988 "Erase a character at X1, Y1. |
33618 | 2989 The character is replaced with the character in `artist-erase-char'." |
2990 (artist-move-to-xy x1 y1) | |
2991 (artist-replace-char artist-erase-char)) | |
2992 | |
2993 (defun artist-erase-rect (rect x1 y1 x2 y2) | |
2994 "Erase rectangle RECT from X1, Y1, X2, Y2." | |
2995 (let ((artist-line-char-set t) | |
2996 (artist-fill-char-set t) | |
2997 (artist-line-char artist-erase-char) | |
2998 (artist-fill-char artist-erase-char)) | |
2999 (artist-draw-rect x1 y1 x2 y2) | |
3000 (artist-fill-rect rect x1 y1 x2 y2))) | |
3001 | |
3002 | |
3003 ;; | |
3004 ;; Vaporizing (erasing) line and lines | |
3005 ;; | |
3006 | |
3007 | |
3008 (defun artist-vap-find-endpoint (x1 y1 step-x step-y accept-set reject-set) | |
3009 "Find one endpoint for line through X1, Y1. | |
3010 The endpoint is searched for in the direction defined by STEP-X, STEP-Y, | |
3011 accepting characters in the list ACCEPT-SET, stopping immediately | |
3012 when finding characters in the list REJECT-SET. Fuzziness, that is | |
3013 the number of consecutive characters not in ACCEPT-SET to allow as | |
3014 part of the line, is determined by the variable `artist-vaporize-fuzziness'. | |
3015 An endpoint is a cons pair, (ENDPOINT-X . ENDPOINT-Y)." | |
3016 (let ((x x1) | |
3017 (y y1) | |
3018 (x-last x1) | |
3019 (y-last y1) | |
3020 (done nil)) | |
3021 (while (not done) | |
3022 (let ((c (artist-get-char-at-xy-conv x y))) | |
3023 (cond ((memq c reject-set) | |
3024 (setq done t)) | |
3025 | |
3026 ;; We found a character we are accepting as part of the line. | |
3027 ;; Update position | |
3028 ((memq c accept-set) | |
3029 (setq x-last x | |
3030 y-last y | |
3031 x (+ x step-x) | |
3032 y (+ y step-y)) | |
3033 (if (or (< x 0) (< y 0)) ;stop at the edge | |
3034 (setq done t))) | |
3035 | |
3036 ;; We found a character we are not accepting as part of | |
3037 ;; the line Search `artist-vaporize-fuzziness' | |
3038 ;; characters away from this position in the same | |
3039 ;; direction to see if there are any characters in the | |
3040 ;; accept-set. If not, we have found the endpoint. | |
3041 (t | |
3042 (let ((fuzziness artist-vaporize-fuzziness) | |
3043 (x-tmp x) | |
3044 (y-tmp y)) | |
3045 | |
3046 ;; while we have more fuzziness left and we have not | |
3047 ;; found a character accepted as a line, move | |
3048 ;; forward! | |
3049 (while (and (> fuzziness 0) (not (memq c accept-set))) | |
3050 (setq x-tmp (+ x-tmp step-x)) | |
3051 (setq y-tmp (+ y-tmp step-y)) | |
3052 (setq c (artist-get-char-at-xy-conv x-tmp y-tmp)) | |
3053 (setq fuzziness (- fuzziness 1))) | |
3054 (if (memq c accept-set) | |
3055 | |
3056 ;; The line continues on the other side of the | |
3057 ;; not-accepted character. | |
3058 (setq x x-tmp | |
3059 y y-tmp) | |
3060 | |
3061 ;; Else: We couldn't find any line on the other side. | |
3062 ;; That means we are done searching for the endpoint. | |
3063 (setq done t))))))) | |
3064 (cons x-last y-last))) | |
3065 | |
3066 | |
3067 (defun artist-vap-find-endpoints-horiz (x y) | |
3068 "Find endpoints for a horizontal line through X, Y. | |
3069 An endpoint is a cons pair, (ENDPOINT-X . ENDPOINT-Y)." | |
65260
c1dcf33345ab
(x-pointer-crosshair): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
3070 (list (artist-vap-find-endpoint x y 1 0 '(?- ?+) '(?\s)) |
c1dcf33345ab
(x-pointer-crosshair): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
3071 (artist-vap-find-endpoint x y -1 0 '(?- ?+) '(?\s)))) |
33618 | 3072 |
3073 (defun artist-vap-find-endpoints-vert (x y) | |
3074 "Find endpoints for a vertical line through X, Y. | |
3075 An endpoint is a cons pair, (ENDPOINT-X . ENDPOINT-Y)." | |
65260
c1dcf33345ab
(x-pointer-crosshair): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
3076 (list (artist-vap-find-endpoint x y 0 1 '(?| ?+) '(?\s)) |
c1dcf33345ab
(x-pointer-crosshair): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
3077 (artist-vap-find-endpoint x y 0 -1 '(?| ?+) '(?\s)))) |
33618 | 3078 |
3079 (defun artist-vap-find-endpoints-swne (x y) | |
3080 "Find endpoints for a diagonal line (made by /'s) through X, Y. | |
3081 An endpoint is a cons pair, (ENDPOINT-X . ENDPOINT-Y)." | |
65260
c1dcf33345ab
(x-pointer-crosshair): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
3082 (list (artist-vap-find-endpoint x y 1 -1 '(?/ ?X) '(?\s)) |
c1dcf33345ab
(x-pointer-crosshair): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
3083 (artist-vap-find-endpoint x y -1 1 '(?/ ?X) '(?\s)))) |
33618 | 3084 |
3085 (defun artist-vap-find-endpoints-nwse (x y) | |
3086 "Find endpoints for a diagonal line (made by \\'s) through X, Y. | |
3087 An endpoint is a cons pair, (ENDPOINT-X . ENDPOINT-Y)." | |
65260
c1dcf33345ab
(x-pointer-crosshair): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
3088 (list (artist-vap-find-endpoint x y 1 1 '(?\\ ?X) '(?\s)) |
c1dcf33345ab
(x-pointer-crosshair): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
3089 (artist-vap-find-endpoint x y -1 -1 '(?\\ ?X) '(?\s)))) |
33618 | 3090 |
3091 | |
3092 (defun artist-vap-find-endpoints (x y) | |
3093 "Given a point X1, Y1, return a list of endpoints of lines through X, Y. | |
3094 An endpoint is a cons pair, (ENDPOINT-X . ENDPOINT-Y)." | |
3095 (if artist-line-char-set | |
3096 nil | |
3097 (let ((c (artist-get-char-at-xy-conv x y))) | |
3098 (cond ((eq c ?-) (artist-vap-find-endpoints-horiz x y)) | |
3099 ((eq c ?|) (artist-vap-find-endpoints-vert x y)) | |
3100 ((eq c ?/) (artist-vap-find-endpoints-swne x y)) | |
3101 ((eq c ?\\) (artist-vap-find-endpoints-nwse x y)) | |
3102 ((eq c ?+) (append (artist-vap-find-endpoints-horiz x y) | |
3103 (artist-vap-find-endpoints-vert x y))) | |
3104 ((eq c ?X) (append (artist-vap-find-endpoints-swne x y) | |
3105 (artist-vap-find-endpoints-nwse x y))) | |
3106 | |
3107 ;; We don't know how to find directions when we are on | |
3108 ;; another character | |
3109 (t nil))))) | |
3110 | |
3111 | |
3112 (defun artist-vap-group-in-pairs (l) | |
3113 "Group elements in list L in pairs." | |
3114 (cond ((null l) nil) | |
3115 ((null (cdr l)) l) ; unevent number of elements in list | |
3116 (t (append (list (list (car l) (car (cdr l)))) | |
3117 (artist-vap-group-in-pairs (cdr (cdr l))))))) | |
3118 | |
3119 (defun artist-vaporize-by-endpoints (endpoint1 endpoint2) | |
3120 "Given ENDPOINT1 and ENDPOINT2, vaporize the line between them. | |
3121 An endpoint is a pair (X . Y)." | |
3122 (let* ((x1 (car endpoint1)) | |
3123 (y1 (cdr endpoint1)) | |
3124 (x2 (car endpoint2)) | |
3125 (y2 (cdr endpoint2)) | |
3126 (dir (artist-find-direction x1 y1 x2 y2)) | |
3127 (x-step (aref [1 1 0 -1 -1 -1 0 1] dir)) | |
3128 (y-step (aref [0 1 1 1 0 -1 -1 -1] dir)) | |
3129 (line-c (aref [?- ?\\ ?| ?/ ?- ?\\ ?| ?/] dir)) | |
3130 (line-len (elt (list (abs (- x2 x1)) | |
3131 (abs (- x2 x1)) | |
3132 (abs (- y2 y1)) | |
3133 (abs (- y2 y1)) | |
3134 (abs (- x1 x2)) | |
3135 (abs (- x1 x2)) | |
3136 (abs (- y1 y2)) | |
3137 (abs (- y1 y2))) | |
3138 dir)) | |
3139 (x x1) | |
3140 (y y1)) | |
3141 (while (>= line-len 0) | |
3142 (let* ((buffer-c (artist-get-char-at-xy-conv x y)) | |
3143 (new-c (artist-unintersection-char line-c buffer-c))) | |
3144 (artist-move-to-xy x y) | |
3145 (artist-replace-char new-c)) | |
3146 (setq x (+ x x-step) | |
3147 y (+ y y-step) | |
3148 line-len (- line-len 1))))) | |
3149 | |
3150 | |
3151 (defun artist-vaporize-line (x1 y1) | |
3152 "Vaporize (erase) the straight line through X1, Y1. | |
3153 Do this by replacing the characters that forms the line with | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
3154 `artist-erase-char'. Output is a list of endpoints for lines through |
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
3155 X1, Y1. An endpoint is a cons pair, (ENDPOINT-X . ENDPOINT-Y)." |
33618 | 3156 (let ((endpoints (artist-vap-find-endpoints x1 y1))) |
84925
003285de78e4
(artist-mt-get-symbol-from-keyword-sub, artist-go-retrieve-from-symbol-sub,
Juanma Barranquero <lekktu@gmail.com>
parents:
78482
diff
changeset
|
3157 (mapc |
33618 | 3158 (lambda (endpoints) |
3159 (let ((ep1 (car endpoints)) | |
3160 (ep2 (car (cdr endpoints)))) | |
3161 (artist-vaporize-by-endpoints ep1 ep2))) | |
3162 (artist-vap-group-in-pairs endpoints)) | |
3163 endpoints)) | |
3164 | |
3165 | |
3166 ;; Implementation note: This depends on artist-vaporize-line doing | |
3167 ;; unintersections of intersecting lines. | |
3168 ;; | |
3169 ;; Example: | |
3170 ;; Suppose the buffer looks like this and that we start vaporizing | |
3171 ;; lines at (3,0) (at the ``*''). | |
3172 ;; | |
3173 ;; 0123456 | |
3174 ;; 0+--*--+ | |
3175 ;; 1| | | |
3176 ;; 2| | | |
3177 ;; 3+-----+ | |
3178 ;; | |
3179 ;; We will then push (0,0) and (6,0) on the stack, and vaporize the | |
3180 ;; topmost horizontal line: | |
3181 ;; | |
3182 ;; 0123456 | |
3183 ;; 0| | | |
3184 ;; 1| | | |
3185 ;; 2| | | |
3186 ;; 3+-----+ | |
3187 ;; | |
3188 ;; We will then pop (0,0) and remove the left-most vertival line while | |
3189 ;; pushing the lower left corner (0,3) on the stack, and so on until | |
3190 ;; the entire rectangle is vaporized. | |
3191 ;; | |
3192 ;; Now, What if the `+' in the upper left and upper right corners, | |
47953
126b6cb8740d
(artist-ff-is-bottommost-line): Fix misplaced ELSE expression on IF.
Juanma Barranquero <lekktu@gmail.com>
parents:
46163
diff
changeset
|
3193 ;; had not been changed to `|' but to spaces instead? We would |
33618 | 3194 ;; have failed when popping (0,0) and vaporizing that line because |
3195 ;; we wouldn't find any line at (0,0): | |
47953
126b6cb8740d
(artist-ff-is-bottommost-line): Fix misplaced ELSE expression on IF.
Juanma Barranquero <lekktu@gmail.com>
parents:
46163
diff
changeset
|
3196 ;; |
33618 | 3197 ;; 0123456 |
47953
126b6cb8740d
(artist-ff-is-bottommost-line): Fix misplaced ELSE expression on IF.
Juanma Barranquero <lekktu@gmail.com>
parents:
46163
diff
changeset
|
3198 ;; 0 |
33618 | 3199 ;; 1| | |
3200 ;; 2| | | |
3201 ;; 3+-----+ | |
3202 ;; | |
3203 ;; That's why we depend on artist-vaporize-line doing unintersecting | |
3204 ;; of crossing lines. There are alternative ways to handle this | |
3205 ;; if it becomes too much a trouble. | |
3206 ;; | |
3207 (defun artist-vaporize-lines (x1 y1) | |
3208 "Vaporize lines reachable from point X1, Y1." | |
3209 (let ((ep-stack nil)) | |
84925
003285de78e4
(artist-mt-get-symbol-from-keyword-sub, artist-go-retrieve-from-symbol-sub,
Juanma Barranquero <lekktu@gmail.com>
parents:
78482
diff
changeset
|
3210 (mapc |
59224
0bedd71fb49f
(artist-butlast-fn): Var deleted.
Richard M. Stallman <rms@gnu.org>
parents:
59223
diff
changeset
|
3211 (lambda (ep) (push ep ep-stack)) |
33618 | 3212 (artist-vap-find-endpoints x1 y1)) |
3213 (while (not (null ep-stack)) | |
59224
0bedd71fb49f
(artist-butlast-fn): Var deleted.
Richard M. Stallman <rms@gnu.org>
parents:
59223
diff
changeset
|
3214 (let* ((vaporize-point (pop ep-stack)) |
33618 | 3215 (new-endpoints (artist-vaporize-line (car vaporize-point) |
3216 (cdr vaporize-point)))) | |
84925
003285de78e4
(artist-mt-get-symbol-from-keyword-sub, artist-go-retrieve-from-symbol-sub,
Juanma Barranquero <lekktu@gmail.com>
parents:
78482
diff
changeset
|
3217 (mapc |
59224
0bedd71fb49f
(artist-butlast-fn): Var deleted.
Richard M. Stallman <rms@gnu.org>
parents:
59223
diff
changeset
|
3218 (lambda (endpoint) (push endpoint ep-stack)) |
33618 | 3219 new-endpoints))))) |
3220 | |
3221 | |
3222 ;; | |
3223 ;; Circles and ellipses | |
3224 ;; | |
3225 (defun artist-ellipse-generate-quadrant (x-radius y-radius) | |
3226 "Create a point-list for first quadrant. | |
3227 Points go from (X-RADIUS, 0) to (0, Y-RADIUS). | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
3228 Quadrant is generated around origin." |
33618 | 3229 (let* ((rx2 (* x-radius x-radius)) |
3230 (ry2 (* y-radius y-radius)) | |
3231 (2rx2 (* 2 rx2)) | |
3232 (2ry2 (* 2 ry2)) | |
3233 (p) | |
3234 (x 0) | |
3235 (y y-radius) | |
3236 (px 0) | |
3237 (py (* 2rx2 y)) | |
3238 (point-list nil)) | |
3239 (artist-put-pixel point-list x y) | |
3240 (setq p (round (+ ry2 (- (* rx2 y-radius)) (* 0.25 rx2)))) | |
3241 (while (< px py) | |
3242 (setq x (1+ x) | |
3243 px (+ px 2ry2)) | |
3244 (if (< p 0) | |
3245 (setq p (+ p ry2 px)) | |
3246 (setq y (- y 1) | |
3247 py (- py 2rx2) | |
3248 p (+ p ry2 px (- py)))) | |
3249 (artist-put-pixel point-list x y)) | |
3250 (setq p (round (+ (* ry2 (+ x 0.5) (+ x 0.5)) | |
3251 (* rx2 (- y 1) (- y 1)) | |
3252 (- (* rx2 ry2))))) | |
3253 (while (> y 0) | |
3254 (setq y (- y 1) | |
3255 py (- py 2rx2)) | |
3256 (if (> p 0) | |
3257 (setq p (+ p rx2 (- py))) | |
3258 (setq x (1+ x) | |
3259 px (+ px 2ry2) | |
3260 p (+ p rx2 (- py) px))) | |
3261 (artist-put-pixel point-list x y)) | |
3262 point-list)) | |
3263 | |
3264 (defsubst artist-new-fill-item (x y width) | |
3265 "Create a new item at X, Y, with WIDTH. | |
3266 This is for use in fill-info in ellipses and circles." | |
3267 (let ((new-item (make-vector 3 x))) | |
3268 (aset new-item 1 y) | |
3269 (aset new-item 2 width) | |
3270 new-item)) | |
3271 | |
3272 (defsubst artist-fill-item-get-x (fill-item) | |
3273 "Retrieve the x component of a FILL-ITEM." | |
3274 (aref fill-item 0)) | |
3275 | |
3276 (defsubst artist-fill-item-set-x (fill-item new-x) | |
3277 "Set the x component of a FILL-ITEM to NEW-X." | |
3278 (aset fill-item 0 new-x) | |
3279 fill-item) | |
3280 | |
3281 (defsubst artist-fill-item-get-y (fill-item) | |
3282 "Retrieve the y component of a FILL-ITEM." | |
3283 (aref fill-item 1)) | |
3284 | |
3285 (defsubst artist-fill-item-set-y (fill-item new-y) | |
3286 "Set the y component of a FILL-ITEM to NEW-Y." | |
3287 (aset fill-item 1 new-y) | |
3288 fill-item) | |
3289 | |
3290 (defsubst artist-fill-item-get-width (fill-item) | |
3291 "Retrieve the width component of a FILL-ITEM." | |
3292 (aref fill-item 2)) | |
3293 | |
3294 (defsubst artist-fill-item-set-width (fill-item new-width) | |
3295 "Set the width component of a FILL-ITEM to NEW-WIDTH." | |
3296 (aset fill-item 2 new-width) | |
3297 fill-item) | |
3298 | |
3299 | |
3300 (defun artist-ellipse-point-list-add-center (x-center y-center point-list) | |
3301 "Add offsets X-CENTER and Y-CENTER to coordinates in POINT-LIST." | |
3302 (mapcar | |
3303 (lambda (p) | |
3304 (artist-coord-set-x p (+ x-center (artist-coord-get-x p))) | |
3305 (artist-coord-set-y p (+ y-center (artist-coord-get-y p)))) | |
3306 point-list)) | |
3307 | |
3308 | |
3309 (defun artist-ellipse-fill-info-add-center (x-center y-center fill-info) | |
3310 "Add offsets X-CENTER and Y-CENTER to fill-items in FILL-INFO." | |
3311 (mapcar | |
3312 (lambda (p) | |
3313 (artist-fill-item-set-x p (+ x-center (artist-fill-item-get-x p))) | |
3314 (artist-fill-item-set-y p (+ y-center (artist-fill-item-get-y p)))) | |
3315 fill-info)) | |
3316 | |
3317 (defun artist-ellipse-remove-0-fills (fill-info) | |
3318 "Remove fill-infos from FILL-INFO that fills a zero-width field." | |
3319 (cond ((null fill-info) | |
3320 nil) | |
3321 ((= 0 (artist-fill-item-get-width (car fill-info))) | |
3322 (artist-ellipse-remove-0-fills (cdr fill-info))) | |
3323 (t | |
3324 (append (list (car fill-info)) | |
3325 (artist-ellipse-remove-0-fills (cdr fill-info)))))) | |
3326 | |
3327 | |
3328 (defun artist-ellipse-compute-fill-info (point-list) | |
3329 "Compute fill info for ellipse around 0,0 from POINT-LIST. | |
3330 The POINT-LIST is expected to cover the first quadrant." | |
3331 (let ((first-half nil) | |
3332 (both-halves nil) | |
3333 (last-y nil)) | |
3334 | |
3335 ;; Create first half (the lower one (since y grows downwards)) from | |
3336 ;; the first quadrant. | |
84925
003285de78e4
(artist-mt-get-symbol-from-keyword-sub, artist-go-retrieve-from-symbol-sub,
Juanma Barranquero <lekktu@gmail.com>
parents:
78482
diff
changeset
|
3337 (mapc |
33618 | 3338 (lambda (coord) |
3339 (let* ((x (artist-coord-get-x coord)) | |
3340 (y (artist-coord-get-y coord)) | |
3341 (width (max (- (* 2 x) 1) 0)) | |
3342 (left-edge (- x width))) | |
3343 (if (or (null last-y) (not (= y last-y))) | |
3344 ;; This was either the first time, | |
3345 ;; or it was the first time on a new line | |
3346 (setq first-half | |
3347 (append first-half | |
3348 ;; Fill info item starts at left-edge on line y | |
3349 (list (artist-new-fill-item left-edge y width))))) | |
3350 (setq last-y y))) | |
3351 point-list) | |
3352 | |
3353 ;; Create the other half by mirroring the first half. | |
3354 (setq both-halves | |
3355 (append first-half | |
84925
003285de78e4
(artist-mt-get-symbol-from-keyword-sub, artist-go-retrieve-from-symbol-sub,
Juanma Barranquero <lekktu@gmail.com>
parents:
78482
diff
changeset
|
3356 (mapc |
33618 | 3357 (lambda (i) |
3358 (artist-new-fill-item (artist-fill-item-get-x i) | |
3359 (- (artist-fill-item-get-y i)) | |
3360 (artist-fill-item-get-width i))) | |
3361 ;; The cdr below is so we don't include fill-info for | |
3362 ;;; the middle line twice | |
3363 (cdr (reverse first-half))))) | |
3364 (artist-ellipse-remove-0-fills both-halves))) | |
3365 | |
3366 | |
3367 (defun artist-ellipse-mirror-quadrant (point-list) | |
3368 "Mirror a POINT-LIST describing first quadrant to create a complete ellipse." | |
3369 (let ((right-half nil) | |
3370 (left-half nil)) | |
3371 | |
3372 ;; First, if last char in that quadrant is `/', then replace it with `)' | |
3373 ;; This way we avoids things | |
3374 ;; --------- --------- | |
3375 ;; / \ / \ | |
3376 ;; that look like: \ / instead we get: ( ) | |
3377 ;; \ / \ / | |
3378 ;; --------- --------- | |
65872
c9a88ce08e2d
(artist-ellipse-mirror-quadrant): Fix bug introduced 2005-07-03:
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
65680
diff
changeset
|
3379 (let ((last-coord (car (last point-list)))) |
33618 | 3380 (if (= (artist-coord-get-new-char last-coord) ?/) |
3381 (artist-coord-set-new-char last-coord artist-ellipse-right-char))) | |
3382 | |
3383 ;; Create the other part of the right half by mirroring the first part | |
3384 (setq right-half | |
3385 (append | |
3386 point-list | |
3387 (mapcar | |
3388 (lambda (coord) | |
3389 (let ((c (artist-coord-get-new-char coord))) | |
3390 (artist-new-coord (artist-coord-get-x coord) | |
3391 (- (artist-coord-get-y coord)) | |
3392 (cond ((= c ?/) ?\\) | |
3393 ((= c ?\\) ?/) | |
3394 (t c))))) | |
3395 ;; The cdr below is so we don't draw the middle right char twice | |
3396 (cdr (reverse point-list))))) | |
3397 | |
3398 ;; Create the left half by mirroring the right half. | |
3399 (setq left-half | |
3400 (mapcar | |
3401 (lambda (coord) | |
3402 (let ((c (artist-coord-get-new-char coord))) | |
3403 (artist-new-coord (- (artist-coord-get-x coord)) | |
3404 (artist-coord-get-y coord) | |
3405 (cond ((= c ?/) ?\\) | |
3406 ((= c ?\\) ?/) | |
3407 ((= c artist-ellipse-right-char) | |
3408 artist-ellipse-left-char) | |
3409 (t c))))) | |
3410 ;; The cdr and butlast below is so we don't draw the middle top | |
3411 ;; and middle bottom char twice. | |
59224
0bedd71fb49f
(artist-butlast-fn): Var deleted.
Richard M. Stallman <rms@gnu.org>
parents:
59223
diff
changeset
|
3412 (butlast (cdr (reverse right-half))))) |
33618 | 3413 (append right-half left-half))) |
3414 | |
3415 | |
55793
812519af46fd
(artist-last, artist-remove-nulls): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
3416 (defun artist-draw-ellipse-general (x1 y1 x-radius y-radius) |
812519af46fd
(artist-last, artist-remove-nulls): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
3417 "Draw an ellipse with center at X1, Y1 and X-RADIUS and Y-RADIUS. |
33618 | 3418 |
3419 Output is an ellipse, which is a list (END-POINT-1 END-POINT-2 SHAPE-INFO). | |
3420 | |
3421 END-POINT-1 and END-POINT-2 are two-element vectors on the form [X Y]. | |
3422 SHAPE-INFO is a two-element vector on the form [POINT-LIST FILL-INFO]. | |
3423 | |
3424 POINT-LIST is a list of vectors on the form [X Y SAVED-CHAR NEW-CHAR]. | |
3425 FILL-INFO is a list of vectors on the form [X Y ELLIPSE-WIDTH-ON-THIS-LINE]. | |
3426 | |
55793
812519af46fd
(artist-last, artist-remove-nulls): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
3427 Ellipses with zero Y-RADIUS are not drawn correctly." |
33618 | 3428 (let* ((point-list (artist-ellipse-generate-quadrant x-radius y-radius)) |
3429 (fill-info (artist-ellipse-compute-fill-info point-list)) | |
3430 (shape-info (make-vector 2 0))) | |
3431 | |
3432 (setq point-list (artist-calculate-new-chars point-list)) | |
3433 (setq point-list (artist-ellipse-mirror-quadrant point-list)) | |
55793
812519af46fd
(artist-last, artist-remove-nulls): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
3434 (setq point-list (artist-ellipse-point-list-add-center x1 y1 point-list)) |
812519af46fd
(artist-last, artist-remove-nulls): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
3435 (setq fill-info (artist-ellipse-fill-info-add-center x1 y1 fill-info)) |
33618 | 3436 |
3437 ;; Draw the ellipse | |
3438 (setq point-list | |
3439 (mapcar | |
3440 (lambda (coord) | |
3441 (artist-move-to-xy (artist-coord-get-x coord) | |
3442 (artist-coord-get-y coord)) | |
3443 (if artist-line-char-set | |
3444 (artist-replace-char artist-line-char) | |
3445 (artist-replace-char (artist-coord-get-new-char coord))) | |
3446 coord) | |
3447 (artist-modify-new-chars | |
3448 (artist-save-chars-under-point-list point-list)))) | |
3449 | |
3450 (aset shape-info 0 point-list) | |
3451 (aset shape-info 1 fill-info) | |
55793
812519af46fd
(artist-last, artist-remove-nulls): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
3452 (artist-make-2point-object (artist-make-endpoint x1 y1) |
33618 | 3453 (artist-make-endpoint x-radius y-radius) |
3454 shape-info))) | |
3455 | |
55793
812519af46fd
(artist-last, artist-remove-nulls): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
3456 (defun artist-draw-ellipse-with-0-height (x1 y1 x-radius y-radius) |
812519af46fd
(artist-last, artist-remove-nulls): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
3457 "Draw an ellipse with center at X1, Y1 and X-RADIUS and Y-RADIUS. |
33618 | 3458 |
3459 Output is an ellipse, which is a list (END-POINT-1 END-POINT-2 SHAPE-INFO). | |
3460 | |
3461 END-POINT-1 and END-POINT-2 are two-element vectors on the form [X Y]. | |
3462 SHAPE-INFO is a two-element vector on the form [POINT-LIST FILL-INFO]. | |
3463 | |
3464 POINT-LIST is a list of vectors on the form [X Y SAVED-CHAR NEW-CHAR]. | |
3465 FILL-INFO is a list of vectors on the form [X Y ELLIPSE-WIDTH-ON-THIS-LINE]. | |
3466 | |
55793
812519af46fd
(artist-last, artist-remove-nulls): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
3467 The Y-RADIUS must be 0, but the X-RADIUS must not be 0." |
33618 | 3468 (let ((point-list nil) |
3469 (width (max (- (abs (* 2 x-radius)) 1))) | |
55793
812519af46fd
(artist-last, artist-remove-nulls): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
3470 (left-edge (1+ (- x1 (abs x-radius)))) |
33618 | 3471 (line-char (if artist-line-char-set artist-line-char ?-)) |
3472 (i 0) | |
3473 (point-list nil) | |
3474 (fill-info nil) | |
3475 (shape-info (make-vector 2 0))) | |
3476 (while (< i width) | |
3477 (let* ((line-x (+ left-edge i)) | |
55793
812519af46fd
(artist-last, artist-remove-nulls): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
3478 (line-y y1) |
33618 | 3479 (new-coord (artist-new-coord line-x line-y))) |
3480 (artist-coord-add-saved-char new-coord | |
3481 (artist-get-char-at-xy line-x line-y)) | |
3482 (artist-move-to-xy line-x line-y) | |
3483 (artist-replace-char line-char) | |
3484 (setq point-list (append point-list (list new-coord))) | |
3485 (setq i (1+ i)))) | |
3486 (aset shape-info 0 point-list) | |
3487 (aset shape-info 1 fill-info) | |
55793
812519af46fd
(artist-last, artist-remove-nulls): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
3488 (artist-make-2point-object (artist-make-endpoint x1 y1) |
33618 | 3489 (artist-make-endpoint x-radius y-radius) |
3490 shape-info))) | |
3491 | |
3492 (defun artist-draw-ellipse (x1 y1 x2 y2) | |
3493 "Draw an ellipse with center at X1, Y1 and point X2,Y2. | |
3494 | |
3495 Output is an ellipse, which is a list (END-POINT-1 END-POINT-2 SHAPE-INFO). | |
3496 | |
3497 END-POINT-1 and END-POINT-2 are two-element vectors on the form [X Y]. | |
3498 SHAPE-INFO is a two-element vector on the form [POINT-LIST FILL-INFO]. | |
3499 | |
3500 POINT-LIST is a list of vectors on the form [X Y SAVED-CHAR NEW-CHAR]. | |
3501 FILL-INFO is a list of vectors on the form [X Y ELLIPSE-WIDTH-ON-THIS-LINE]." | |
3502 (let* ((artist-line-char (artist-compute-line-char)) | |
3503 (artist-line-char-set artist-line-char) | |
3504 (width (abs (- x2 x1))) | |
3505 (height (abs (- y2 y1))) | |
3506 ;; | |
3507 ;; When we draw our ellipse, we want it to go through the cursor | |
3508 ;; position, but since x1,y1, x2,y2 marks the corners of one | |
3509 ;; of the quadrants, we have to enlarge the ellipse a bit. | |
3510 ;; Ok, so then why by sqrt(2)? | |
3511 ;; It comes from the equation for the ellipse (where a is the | |
3512 ;; x-radius and b is the y-radius): | |
3513 ;; f(x,y) = x^2 / a^2 + y^2 / b^2 - 1 = 0 | |
3514 ;; and the fact that we want the enlarged ellipse to have the | |
3515 ;; same proportions as the smaller square, therefore we have: | |
3516 ;; a/b = x/y | |
3517 ;; Solving this yields a-in-larger-ellipse = a-in-smaller * sqrt(2) | |
3518 (x-radius (round (* width (sqrt 2)))) | |
3519 (y-radius (round (* height (sqrt 2)))) | |
3520 (x x1) | |
3521 (y y1)) | |
3522 (if (and (= y1 y2) (not (= x1 x2))) | |
3523 (artist-draw-ellipse-with-0-height x y x-radius y-radius) | |
3524 (artist-draw-ellipse-general x y x-radius y-radius)))) | |
3525 | |
3526 | |
3527 (defun artist-undraw-ellipse (ellipse) | |
3528 "Undraw ELLIPSE." | |
3529 (if ellipse | |
3530 (let ((point-list (aref (artist-2point-get-shapeinfo ellipse) 0))) | |
3531 (mapcar | |
3532 (lambda (coord) | |
3533 (artist-move-to-xy (artist-coord-get-x coord) | |
3534 (artist-coord-get-y coord)) | |
3535 (artist-replace-char (artist-coord-get-saved-char coord)) | |
3536 coord) | |
3537 point-list)))) | |
3538 | |
3539 | |
3540 (defun artist-draw-circle (x1 y1 x2 y2) | |
3541 "Draw a circle with center at X1, Y1 and point X2,Y2. | |
3542 | |
3543 Output is an ellipse, which is a list (END-POINT-1 END-POINT-2 SHAPE-INFO). | |
3544 | |
3545 END-POINT-1 and END-POINT-2 are two-element vectors on the form [X Y]. | |
3546 SHAPE-INFO is a two-element vector on the form [POINT-LIST FILL-INFO]. | |
3547 | |
3548 POINT-LIST is a list of vectors on the form [X Y SAVED-CHAR NEW-CHAR]. | |
3549 FILL-INFO is a list of vectors on the form [X Y ELLIPSE-WIDTH-ON-THIS-LINE]." | |
3550 (let* ((artist-line-char (artist-compute-line-char)) | |
3551 (artist-line-char-set artist-line-char) | |
3552 (width (abs (- x2 x1))) | |
3553 (height (abs (- y2 y1))) | |
3554 ;; When drawing our circle, we want it to through the cursor | |
3555 ;; just as when drawing the ellispe, but we have to take | |
3556 ;; care for the aspect-ratio. | |
3557 ;; The equation for the ellipse (where a is the x-radius and | |
3558 ;; b is the y-radius): | |
3559 ;; f(x,y) = x^2 / a^2 + y^2 / b^2 - 1 = 0 | |
3560 ;; together with the relationship | |
3561 ;; a = aspect-ratio * b | |
3562 ;; gives | |
3563 ;; a = sqrt( x^2 + (aspect-ratio * y)^2 ) and | |
3564 ;; b = a / aspect-ratio | |
3565 (x-radius (round (sqrt (+ (* width width) | |
3566 (* (* artist-aspect-ratio height) | |
3567 (* artist-aspect-ratio height)))))) | |
3568 (y-radius (round (/ x-radius artist-aspect-ratio)))) | |
3569 (artist-draw-ellipse-general x1 y1 x-radius y-radius))) | |
3570 | |
3571 (defalias 'artist-undraw-circle 'artist-undraw-ellipse) | |
3572 | |
3573 | |
3574 ; | |
3575 ; Filling ellipses | |
3576 ; | |
3577 (defun artist-fill-ellipse (ellipse x y x-radius y-radius) | |
3578 "Fill an ELLIPSE centered at X,Y with radius X-RADIUS and Y-RADIUS." | |
3579 (let ((fill-info (aref (artist-2point-get-shapeinfo ellipse) 1))) | |
3580 (mapcar | |
3581 (lambda (fill-item) | |
3582 (artist-move-to-xy (artist-fill-item-get-x fill-item) | |
3583 (artist-fill-item-get-y fill-item)) | |
3584 (artist-replace-chars artist-fill-char | |
3585 (artist-fill-item-get-width fill-item)) | |
3586 fill-item) | |
3587 fill-info))) | |
3588 | |
3589 (defalias 'artist-fill-circle 'artist-fill-ellipse) | |
3590 | |
3591 | |
3592 ;; | |
3593 ;; Cutting, copying and pasting rectangles and squares | |
3594 ;; (filling functions) | |
3595 ;; | |
3596 | |
3597 (defun artist-cut-rect (rect x1 y1 x2 y2) | |
3598 "Copy rectangle RECT drawn from X1, Y1 to X2, Y2, then clear it." | |
3599 (artist-undraw-rect rect) | |
3600 (artist-copy-generic x1 y1 x2 y2) | |
3601 (artist-erase-rect rect x1 y1 x2 y2)) | |
3602 | |
3603 (defun artist-cut-square (square x1 y1 x2 y2) | |
3604 "Copy a SQUARE drawn from X1, Y1 to X2, Y2 (made square), then clears it." | |
3605 (artist-undraw-square square) | |
3606 (let* ((square-corners (artist-rect-corners-squarify x1 y1 x2 y2)) | |
3607 (new-x1 (elt square-corners 0)) | |
3608 (new-y1 (elt square-corners 1)) | |
3609 (new-x2 (elt square-corners 2)) | |
3610 (new-y2 (elt square-corners 3))) | |
3611 (artist-copy-generic new-x1 new-y1 new-x2 new-y2) | |
3612 (artist-erase-rect square new-x1 new-y1 new-x2 new-y2))) | |
3613 | |
3614 | |
3615 (defun artist-get-buffer-contents-at-xy (x y width) | |
3616 "Retrieve contents from the buffer at X, Y. WIDTH characters are returned." | |
3617 (artist-move-to-xy x y) | |
3618 (let ((here (point)) | |
3619 (there (save-excursion (artist-move-to-xy (+ x width) y) (point)))) | |
3620 (untabify here there) | |
3621 (setq there (save-excursion (artist-move-to-xy (+ x width) y) (point))) | |
3622 (buffer-substring here there))) | |
3623 | |
3624 | |
3625 (defun artist-copy-generic (x1 y1 x2 y2) | |
3626 "Copy a rectangular area with corners at X1, Y1 and X2, Y2. | |
3627 Output is a copy buffer, a list of strings, representing the | |
3628 original contents of that area in the buffer." | |
3629 (let* ((x (min x1 x2)) | |
3630 (y (min y1 y2)) | |
3631 (x-max (max x1 x2)) | |
3632 (y-max (max y1 y2)) | |
3633 (w (+ (- x-max x) 1)) | |
3634 (l nil)) | |
3635 (while (<= y y-max) | |
3636 (setq l (cons (artist-get-buffer-contents-at-xy x y w) l)) | |
3637 (setq y (1+ y))) | |
3638 (if artist-interface-with-rect | |
3639 (setq killed-rectangle (reverse l)) | |
3640 (setq artist-copy-buffer (reverse l))))) | |
3641 | |
3642 | |
3643 (defun artist-copy-rect (rect x1 y1 x2 y2) | |
3644 "Copy rectangle RECT drawn from X1, Y1 to X2, Y2." | |
3645 (artist-undraw-rect rect) | |
3646 (artist-copy-generic x1 y1 x2 y2)) | |
3647 | |
3648 (defun artist-copy-square (square x1 y1 x2 y2) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
3649 "Copy a SQUARE drawn from X1, Y1 to X2, Y2 (but made square)." |
33618 | 3650 (artist-undraw-square square) |
3651 (let* ((square-corners (artist-rect-corners-squarify x1 y1 x2 y2)) | |
3652 (new-x1 (elt square-corners 0)) | |
3653 (new-y1 (elt square-corners 1)) | |
3654 (new-x2 (elt square-corners 2)) | |
3655 (new-y2 (elt square-corners 3))) | |
3656 (artist-copy-generic new-x1 new-y1 new-x2 new-y2))) | |
3657 | |
3658 (defun artist-paste (x y) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
3659 "Paste the contents of the copy-buffer at X,Y." |
33618 | 3660 (let ((copy-buf (if artist-interface-with-rect |
3661 killed-rectangle | |
3662 artist-copy-buffer))) | |
3663 (if (not (null copy-buf)) | |
3664 (while (not (null copy-buf)) | |
3665 (artist-move-to-xy x y) | |
3666 (artist-replace-string (car copy-buf)) | |
3667 (setq copy-buf (cdr copy-buf)) | |
3668 (setq y (1+ y))) | |
3669 (message "Nothing to paste")))) | |
3670 | |
3671 | |
3672 ;; | |
3673 ;; Flood filling | |
3674 ;; | |
3675 (defun artist-ff-too-far-right (x) | |
3676 "Determine if the position X is too far to the right." | |
3677 (cond ((numberp artist-flood-fill-right-border) | |
3678 (> x artist-flood-fill-right-border)) | |
3679 ((eq artist-flood-fill-right-border 'window-width) | |
3680 (> x (- (window-width) 2))) | |
3681 ((eq artist-flood-fill-right-border 'fill-column) | |
3682 (> x fill-column)) | |
3683 (t (error "Invalid value for `artist-flood-fill-right-border'")))) | |
3684 | |
3685 (defun artist-ff-get-rightmost-from-xy (x y) | |
3686 "Find the rightmost position in this run, starting at X, Y." | |
3687 (save-excursion | |
3688 (let ((char-at-xy (artist-get-char-at-xy-conv x y)) | |
3689 (last-x x)) | |
3690 (setq x (1+ x)) | |
3691 (while (and (not (artist-ff-too-far-right x)) | |
3692 (= char-at-xy (artist-get-char-at-xy-conv x y))) | |
3693 (setq last-x x) | |
3694 (setq x (1+ x))) | |
3695 last-x))) | |
3696 | |
3697 (defun artist-ff-is-topmost-line (x y) | |
3698 "Determine whether the position X,Y is on the topmost line or not." | |
3699 (= y 0)) | |
3700 | |
3701 (defun artist-ff-is-bottommost-line (x y) | |
3702 "Determine whether the position X,Y is on the bottommost line or not." | |
3703 (save-excursion | |
3704 (goto-char (point-max)) | |
3705 (beginning-of-line) | |
3706 (let ((last-line (artist-current-line))) | |
3707 (if (= (point) (point-max)) | |
3708 | |
3709 ;; Last line is empty, don't paint on it, report previous line | |
3710 ;; as last line | |
47953
126b6cb8740d
(artist-ff-is-bottommost-line): Fix misplaced ELSE expression on IF.
Juanma Barranquero <lekktu@gmail.com>
parents:
46163
diff
changeset
|
3711 (>= y (- last-line 1)) |
126b6cb8740d
(artist-ff-is-bottommost-line): Fix misplaced ELSE expression on IF.
Juanma Barranquero <lekktu@gmail.com>
parents:
46163
diff
changeset
|
3712 (>= y last-line))))) |
33618 | 3713 |
3714 (defun artist-flood-fill (x1 y1) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
3715 "Flood-fill starting at X1, Y1. Fill with the char in `artist-fill-char'." |
33618 | 3716 (let ((stack nil) |
3717 (input-queue nil) | |
3718 ;; We are flood-filling the area that has this character. | |
3719 (c (artist-get-char-at-xy-conv x1 y1)) | |
3720 (artist-fill-char (if artist-fill-char-set | |
3721 artist-fill-char | |
3722 artist-default-fill-char))) | |
3723 | |
3724 ;; Fill only if the fill-char is not the same as the character whose | |
3725 ;; area we are about to fill, or, in other words, don't fill if we | |
3726 ;; needn't. | |
3727 (if (not (= c artist-fill-char)) | |
59224
0bedd71fb49f
(artist-butlast-fn): Var deleted.
Richard M. Stallman <rms@gnu.org>
parents:
59223
diff
changeset
|
3728 (push (artist-new-coord x1 y1) stack)) |
33618 | 3729 |
3730 (while (not (null stack)) | |
59224
0bedd71fb49f
(artist-butlast-fn): Var deleted.
Richard M. Stallman <rms@gnu.org>
parents:
59223
diff
changeset
|
3731 (let* ((coord (pop stack)) |
33618 | 3732 (x (artist-coord-get-x coord)) |
3733 (y (artist-coord-get-y coord)) | |
3734 | |
3735 ;; Here we keep track of the leftmost and rightmost position | |
3736 ;; for this run | |
3737 (x-leftmost 0) | |
3738 (x-rightmost 0) | |
3739 (last-x 0) | |
3740 | |
3741 ;; Remember if line above and below are accessible | |
3742 ;; Lines below the last one, and prior to the first-one | |
3743 ;; are not accessible. | |
3744 (lines-above nil) | |
3745 (lines-below nil) | |
3746 | |
3747 ;; Remember char for position on line above and below, so we | |
3748 ;; can find the rightmost positions on the runs. | |
3749 (last-c-above -1) | |
3750 (last-c-below -1)) | |
3751 | |
3752 (setq x-rightmost (artist-ff-get-rightmost-from-xy x y)) | |
3753 (setq lines-above (not (artist-ff-is-topmost-line x y))) | |
3754 (setq lines-below (not (artist-ff-is-bottommost-line x y))) | |
3755 (setq last-x x-rightmost) | |
3756 (setq x x-rightmost) | |
3757 | |
3758 ;; Search line above, push rightmost positions of runs for that line | |
3759 (while (and (>= x 0) (= c (artist-get-char-at-xy-conv x y))) | |
3760 (if lines-above | |
3761 (let ((c-above (artist-get-char-at-xy-conv x (- y 1)))) | |
3762 (if (and (= c-above c) (/= c-above last-c-above)) | |
59224
0bedd71fb49f
(artist-butlast-fn): Var deleted.
Richard M. Stallman <rms@gnu.org>
parents:
59223
diff
changeset
|
3763 (push (artist-new-coord x (- y 1)) stack)) |
33618 | 3764 (setq last-c-above c-above))) |
3765 (setq last-x x) | |
3766 (setq x (- x 1))) | |
3767 | |
3768 ;; Remember the left-most position on this run | |
3769 (setq x-leftmost last-x) | |
3770 | |
3771 ;; Search line below, push rightmost positions of runs for that line | |
3772 (setq x x-rightmost) | |
3773 (while (>= x x-leftmost) | |
3774 (if lines-below | |
3775 (let ((c-below (artist-get-char-at-xy-conv x (1+ y)))) | |
3776 (if (and (= c-below c) (/= c-below last-c-below)) | |
59224
0bedd71fb49f
(artist-butlast-fn): Var deleted.
Richard M. Stallman <rms@gnu.org>
parents:
59223
diff
changeset
|
3777 (push (artist-new-coord x (1+ y)) stack)) |
33618 | 3778 (setq last-c-below c-below))) |
3779 (setq x (- x 1))) | |
3780 | |
3781 (artist-move-to-xy x-leftmost y) | |
3782 (artist-replace-chars artist-fill-char (1+ (- x-rightmost x-leftmost))) | |
3783 | |
3784 ;; If we are to show incrementally, we have to remove any pending | |
3785 ;; input from the input queue, because processing of pending input | |
3786 ;; always has priority over display updates (although this input | |
3787 ;; won't be processed until we are done). Later on we will queue | |
3788 ;; the input on the input queue again. | |
3789 (if artist-flood-fill-show-incrementally | |
3790 (progn | |
3791 (if (input-pending-p) | |
3792 (discard-input)) | |
3793 (artist-update-display))))))) | |
3794 | |
3795 ;; | |
3796 ;; Accessors to arrow-points | |
3797 ;; | |
3798 | |
3799 (defun artist-make-arrow-point (x y direction &optional state) | |
3800 "Create an arrow point at X, Y for a line in direction DIRECTION. | |
3801 Optional argument STATE can be used to set state (default is nil)." | |
3802 (save-excursion | |
3803 (let* ((arrow-point (make-vector 4 0)) | |
3804 (arrow-marker (make-marker))) | |
3805 (artist-move-to-xy x y) | |
3806 (set-marker arrow-marker (point)) | |
3807 (aset arrow-point 0 arrow-marker) | |
3808 (aset arrow-point 1 (artist-get-char-at-xy x y)) | |
3809 (aset arrow-point 2 direction) | |
3810 (aset arrow-point 3 state) | |
3811 arrow-point))) | |
3812 | |
3813 (defsubst artist-arrow-point-get-marker (arrow-point) | |
3814 "Retrieve the marker component of an ARROW-POINT." | |
3815 (aref arrow-point 0)) | |
3816 | |
3817 (defsubst artist-arrow-point-get-orig-char (arrow-point) | |
3818 "Retrieve the orig char component of an ARROW-POINT." | |
3819 (aref arrow-point 1)) | |
3820 | |
3821 (defsubst artist-arrow-point-get-direction (arrow-point) | |
3822 "Retrieve the direction component of an ARROW-POINT." | |
3823 (aref arrow-point 2)) | |
3824 | |
3825 (defsubst artist-arrow-point-get-state (arrow-point) | |
3826 "Retrieve the state component of an ARROW-POINT." | |
3827 (aref arrow-point 3)) | |
3828 | |
3829 (defsubst artist-arrow-point-set-state (arrow-point new-state) | |
3830 "Set the state component of an ARROW-POINT to NEW-STATE." | |
3831 (aset arrow-point 3 new-state)) | |
3832 | |
3833 | |
3834 (defun artist-clear-arrow-points () | |
3835 "Clear current endpoints." | |
3836 (setq artist-arrow-point-1 nil) | |
3837 (setq artist-arrow-point-2 nil)) | |
3838 | |
3839 (defun artist-set-arrow-points-for-poly (point-list) | |
3840 "Generic function for setting arrow-points for poly-shapes from POINT-LIST." | |
3841 (let* ((ep1 (elt point-list 0)) | |
3842 (ep2 (elt point-list 1)) | |
3843 (x1 (artist-endpoint-get-x ep1)) | |
3844 (y1 (artist-endpoint-get-y ep1)) | |
3845 (x2 (artist-endpoint-get-x ep2)) | |
3846 (y2 (artist-endpoint-get-y ep2)) | |
3847 (dir1 (artist-find-direction x2 y2 x1 y1)) | |
65872
c9a88ce08e2d
(artist-ellipse-mirror-quadrant): Fix bug introduced 2005-07-03:
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
65680
diff
changeset
|
3848 (epn (car (last point-list))) |
c9a88ce08e2d
(artist-ellipse-mirror-quadrant): Fix bug introduced 2005-07-03:
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
65680
diff
changeset
|
3849 (epn-1 (car (last point-list 2))) |
33618 | 3850 (xn (artist-endpoint-get-x epn)) |
3851 (yn (artist-endpoint-get-y epn)) | |
3852 (xn-1 (artist-endpoint-get-x epn-1)) | |
3853 (yn-1 (artist-endpoint-get-y epn-1)) | |
3854 (dirn (artist-find-direction xn-1 yn-1 xn yn))) | |
3855 (setq artist-arrow-point-1 (artist-make-arrow-point x1 y1 dir1)) | |
3856 (setq artist-arrow-point-2 (artist-make-arrow-point xn yn dirn)))) | |
3857 | |
3858 | |
3859 (defun artist-set-arrow-points-for-2points (shape x1 y1 x2 y2) | |
3860 "Generic function for setting arrow-points for 2-point shapes. | |
3861 The 2-point shape SHAPE is drawn from X1, Y1 to X2, Y2." | |
3862 (let* ((endpoint1 (artist-2point-get-endpoint1 shape)) | |
3863 (endpoint2 (artist-2point-get-endpoint2 shape)) | |
3864 (x1 (artist-endpoint-get-x endpoint1)) | |
3865 (y1 (artist-endpoint-get-y endpoint1)) | |
3866 (x2 (artist-endpoint-get-x endpoint2)) | |
3867 (y2 (artist-endpoint-get-y endpoint2))) | |
3868 (setq artist-arrow-point-1 | |
3869 (artist-make-arrow-point x1 y1 | |
3870 (artist-find-direction x2 y2 x1 y1))) | |
3871 (setq artist-arrow-point-2 | |
3872 (artist-make-arrow-point x2 y2 | |
3873 (artist-find-direction x1 y1 x2 y2))))) | |
3874 | |
3875 | |
3876 ;; | |
3877 ;; Common routine for drawing/undrawing shapes based | |
3878 ;; on the draw-how | |
3879 ;; | |
3880 | |
3881 (defun artist-key-undraw-continously (x y) | |
106876
ad7558737bc7
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
106860
diff
changeset
|
3882 "Undraw current continuous shape with point at X, Y." |
ad7558737bc7
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
106860
diff
changeset
|
3883 ;; No undraw-info for continuous shapes |
33618 | 3884 nil) |
3885 | |
3886 (defun artist-key-undraw-poly (x y) | |
3887 "Undraw current poly shape with point at X, Y." | |
3888 (let ((undraw-fn (artist-go-get-undraw-fn-from-symbol artist-curr-go)) | |
3889 (x1 (artist-endpoint-get-x artist-key-endpoint1)) | |
3890 (y1 (artist-endpoint-get-y artist-key-endpoint1))) | |
3891 (artist-funcall undraw-fn artist-key-shape))) | |
3892 | |
3893 (defun artist-key-undraw-1point (x y) | |
3894 "Undraw current 1-point shape at X, Y." | |
3895 ;; No undraw-info for 1-point shapes | |
3896 nil) | |
3897 | |
3898 (defun artist-key-undraw-2points (x y) | |
3899 "Undraw current 2-point shape at X, Y." | |
3900 (let ((undraw-fn (artist-go-get-undraw-fn-from-symbol artist-curr-go)) | |
3901 (x1 (artist-endpoint-get-x artist-key-endpoint1)) | |
3902 (y1 (artist-endpoint-get-y artist-key-endpoint1))) | |
3903 (artist-funcall undraw-fn artist-key-shape))) | |
3904 | |
3905 (defun artist-key-undraw-common () | |
3906 "Common routine undrawing current shape." | |
3907 (let ((draw-how (artist-go-get-draw-how-from-symbol artist-curr-go)) | |
3908 (col (artist-current-column)) | |
3909 (row (artist-current-line))) | |
3910 | |
3911 ;; Depending on what we are currently drawing, call other routines | |
3912 ;; that knows how to do the job | |
3913 ;; | |
3914 (cond ((eq draw-how 'artist-do-continously) | |
3915 (artist-key-undraw-continously col row)) | |
3916 ((eq draw-how 'artist-do-poly) | |
3917 (artist-key-undraw-poly col row)) | |
3918 ((and (numberp draw-how) (= draw-how 1)) | |
3919 (artist-key-undraw-1point col row)) | |
3920 ((and (numberp draw-how) (= draw-how 2)) | |
3921 (artist-key-undraw-2points col row)) | |
3922 (t (message "Undrawing \"%s\"s is not yet implemented" draw-how))) | |
3923 | |
3924 ;; Now restore the old position | |
3925 ;; | |
3926 (artist-move-to-xy col row))) | |
3927 | |
3928 | |
3929 | |
3930 ;; Implementation note: This really should honor the interval-fn entry | |
3931 ;; in the master table, `artist-mt', which would mean leaving a timer | |
3932 ;; that calls `draw-fn' every now and then. That timer would then have | |
3933 ;; to be cancelled and reinstalled whenever the user moves the cursor. | |
3934 ;; This could be done, but what if the user suddenly switches to another | |
3935 ;; drawing mode, or even kills the buffer! In the mouse case, it is much | |
3936 ;; simpler: when at the end of `artist-mouse-draw-continously', the | |
3937 ;; user has released the button, so the timer will always be cancelled | |
3938 ;; at that point. | |
3939 (defun artist-key-draw-continously (x y) | |
106876
ad7558737bc7
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
106860
diff
changeset
|
3940 "Draw current continuous shape at X,Y." |
33618 | 3941 (let ((draw-fn (artist-go-get-draw-fn-from-symbol artist-curr-go))) |
3942 (setq artist-key-shape (artist-funcall draw-fn x y)))) | |
3943 | |
3944 (defun artist-key-draw-poly (x y) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
3945 "Draw current poly-point shape with nth point at X,Y." |
33618 | 3946 (let ((draw-fn (artist-go-get-draw-fn-from-symbol artist-curr-go)) |
3947 (x1 (artist-endpoint-get-x artist-key-endpoint1)) | |
3948 (y1 (artist-endpoint-get-y artist-key-endpoint1))) | |
3949 (setq artist-key-shape (artist-funcall draw-fn x1 y1 x y)))) | |
3950 | |
3951 (defun artist-key-draw-1point (x y) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
3952 "Draw current 1-point shape at X,Y." |
33618 | 3953 (let ((draw-fn (artist-go-get-draw-fn-from-symbol artist-curr-go))) |
3954 (setq artist-key-shape (artist-funcall draw-fn x y)))) | |
3955 | |
3956 | |
3957 (defun artist-key-draw-2points (x y) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
3958 "Draw current 2-point shape at X,Y." |
33618 | 3959 (let ((draw-fn (artist-go-get-draw-fn-from-symbol artist-curr-go)) |
3960 (x1 (artist-endpoint-get-x artist-key-endpoint1)) | |
3961 (y1 (artist-endpoint-get-y artist-key-endpoint1))) | |
3962 (setq artist-key-shape (artist-funcall draw-fn x1 y1 x y)))) | |
3963 | |
3964 (defun artist-key-draw-common () | |
3965 "Common routine for drawing current shape." | |
3966 (let ((draw-how (artist-go-get-draw-how-from-symbol artist-curr-go)) | |
3967 (col (artist-current-column)) | |
3968 (row (artist-current-line))) | |
3969 | |
3970 ;; Depending on what we are currently drawing, call other routines | |
3971 ;; that knows how to do the job | |
3972 ;; | |
3973 (cond ((eq draw-how 'artist-do-continously) | |
3974 (artist-key-draw-continously col row)) | |
3975 ((eq draw-how 'artist-do-poly) | |
3976 (artist-key-draw-poly col row)) | |
3977 ((and (numberp draw-how) (= draw-how 1)) | |
3978 (artist-key-draw-1point col row)) | |
3979 ((and (numberp draw-how) (= draw-how 2)) | |
3980 (artist-key-draw-2points col row)) | |
3981 (t (message "Drawing \"%s\"s is not yet implemented" draw-how))) | |
3982 | |
3983 ;; Now restore the old position | |
3984 ;; | |
3985 (artist-move-to-xy col row))) | |
3986 | |
3987 | |
3988 | |
3989 ;; | |
3990 ;; Functions related to trimming line-endings | |
3991 ;; The region between the topmost and bottommost visited line is | |
3992 ;; called a draw-region. | |
3993 ;; | |
3994 | |
3995 (defun artist-draw-region-reset () | |
3996 "Reset the current draw-region." | |
3997 (setq artist-draw-region-max-y 0) | |
3998 (setq artist-draw-region-min-y 1000000)) | |
3999 | |
4000 (defun artist-draw-region-trim-line-endings (min-y max-y) | |
4001 "Trim lines in current draw-region from MIN-Y to MAX-Y. | |
55793
812519af46fd
(artist-last, artist-remove-nulls): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
4002 Trimming here means removing white space at end of a line." |
33618 | 4003 ;; Safetyc check: switch min-y and max-y if if max-y is smaller |
4004 (if (< max-y min-y) | |
4005 (let ((tmp min-y)) | |
4006 (setq min-y max-y) | |
4007 (setq max-y tmp))) | |
4008 (save-excursion | |
4009 (let ((curr-y min-y)) | |
4010 (while (<= curr-y max-y) | |
4011 (artist-move-to-xy 0 curr-y) | |
4012 (end-of-line) | |
4013 (delete-horizontal-space) | |
4014 (setq curr-y (1+ curr-y)))))) | |
4015 | |
4016 ;; | |
4017 ;; Drawing shapes by using keys | |
4018 ;; | |
4019 | |
4020 (defun artist-key-do-continously-continously (x y) | |
106876
ad7558737bc7
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
106860
diff
changeset
|
4021 "Update current continuous shape at X,Y." |
33618 | 4022 (let ((draw-fn (artist-go-get-draw-fn-from-symbol artist-curr-go))) |
4023 (artist-funcall draw-fn x y))) | |
4024 | |
4025 | |
4026 (defun artist-key-do-continously-poly (x y) | |
4027 "Update current poly-point shape with nth point at X,Y." | |
4028 (let ((draw-fn (artist-go-get-draw-fn-from-symbol artist-curr-go)) | |
4029 (undraw-fn (artist-go-get-undraw-fn-from-symbol artist-curr-go)) | |
4030 (x1 (artist-endpoint-get-x artist-key-endpoint1)) | |
4031 (y1 (artist-endpoint-get-y artist-key-endpoint1)) | |
4032 (x2 x) | |
4033 (y2 y)) | |
4034 ;; If not rubber-banding, then move the 2 | |
4035 ;; Otherwise re-draw the shape to the new position | |
4036 ;; | |
4037 (if (not artist-rubber-banding) | |
4038 (progn | |
4039 (artist-no-rb-unset-point2) | |
4040 (artist-no-rb-set-point2 x y)) | |
4041 (progn | |
4042 (artist-funcall undraw-fn artist-key-shape) | |
4043 (setq artist-key-shape (artist-funcall draw-fn x1 y1 x2 y2)))))) | |
4044 | |
4045 | |
4046 (defun artist-key-do-continously-1point (x y) | |
4047 "Update current 1-point shape at X,Y." | |
106876
ad7558737bc7
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
106860
diff
changeset
|
4048 ;; Nothing to do continuously for operations |
33618 | 4049 ;; where we have only one input point |
4050 nil) | |
4051 | |
4052 (defun artist-key-do-continously-2points (x y) | |
4053 "Update current 2-point shape with 2nd point at X,Y." | |
4054 (let ((draw-fn (artist-go-get-draw-fn-from-symbol artist-curr-go)) | |
4055 (undraw-fn (artist-go-get-undraw-fn-from-symbol artist-curr-go)) | |
4056 (x1 (artist-endpoint-get-x artist-key-endpoint1)) | |
4057 (y1 (artist-endpoint-get-y artist-key-endpoint1)) | |
4058 (x2 x) | |
4059 (y2 y)) | |
4060 ;; If not rubber-banding, then move the 2 | |
4061 ;; Otherwise re-draw the shape to the new position | |
4062 ;; | |
4063 (if (not artist-rubber-banding) | |
4064 (progn | |
4065 (artist-no-rb-unset-point2) | |
4066 (artist-no-rb-set-point2 x y)) | |
4067 (progn | |
4068 (artist-funcall undraw-fn artist-key-shape) | |
4069 (setq artist-key-shape (artist-funcall draw-fn x1 y1 x2 y2)))))) | |
4070 | |
4071 | |
4072 (defun artist-key-do-continously-common () | |
4073 "Common routine for updating current shape." | |
4074 (let ((draw-how (artist-go-get-draw-how-from-symbol artist-curr-go)) | |
4075 (col (artist-current-column)) | |
4076 (row (artist-current-line))) | |
4077 | |
4078 ;; Depending on what we are currently drawing, call other routines | |
4079 ;; that knows how to do the job | |
4080 ;; | |
4081 (cond ((eq draw-how 'artist-do-continously) | |
4082 (artist-key-do-continously-continously col row)) | |
4083 ((eq draw-how 'artist-do-poly) | |
4084 (artist-key-do-continously-poly col row)) | |
4085 ((and (numberp draw-how) (= draw-how 1)) | |
4086 (artist-key-do-continously-1point col row)) | |
4087 ((and (numberp draw-how) (= draw-how 2)) | |
4088 (artist-key-do-continously-2points col row)) | |
4089 (t (message "Drawing \"%s\"s is not yet implemented" draw-how))) | |
4090 | |
4091 ;; Now restore the old position | |
4092 ;; | |
4093 (artist-move-to-xy col row))) | |
4094 | |
4095 | |
4096 (defun artist-key-set-point-continously (x y) | |
106876
ad7558737bc7
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
106860
diff
changeset
|
4097 "Set point for current continuous shape at X,Y." |
ad7558737bc7
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
106860
diff
changeset
|
4098 ;; Maybe set arrow-points for continuous shapes |
33618 | 4099 (let ((arrow-pred (artist-go-get-arrow-pred-from-symbol artist-curr-go)) |
4100 (arrow-set-fn (artist-go-get-arrow-set-fn-from-symbol artist-curr-go)) | |
4101 (init-fn (artist-go-get-init-fn-from-symbol artist-curr-go)) | |
4102 (prep-fill-fn (artist-go-get-prep-fill-fn-from-symbol artist-curr-go)) | |
4103 (exit-fn (artist-go-get-exit-fn-from-symbol artist-curr-go))) | |
4104 | |
4105 (if (not artist-key-is-drawing) | |
4106 ;; *** We are about to begin drawing | |
4107 (progn | |
4108 (artist-funcall init-fn x y)) | |
4109 | |
4110 ;; *** We are about to stop drawing | |
4111 (progn | |
4112 | |
4113 (artist-funcall prep-fill-fn x y) | |
4114 (if (artist-funcall arrow-pred) | |
4115 (artist-funcall arrow-set-fn x y) | |
4116 (artist-clear-arrow-points)) | |
4117 (artist-funcall exit-fn x y)))) | |
4118 | |
4119 ;; Toggle the is-drawing flag | |
4120 (setq artist-key-is-drawing (not artist-key-is-drawing))) | |
4121 | |
4122 | |
4123 | |
4124 (defun artist-key-set-point-poly (x y &optional this-is-last-point) | |
4125 "Set point for current poly-point shape at X,Y. | |
4126 If optional argument THIS-IS-LAST-POINT is non-nil, this point is the last." | |
4127 (let ((draw-fn (artist-go-get-draw-fn-from-symbol artist-curr-go)) | |
4128 (init-fn (artist-go-get-init-fn-from-symbol artist-curr-go)) | |
4129 (prep-fill-fn (artist-go-get-prep-fill-fn-from-symbol artist-curr-go)) | |
4130 (exit-fn (artist-go-get-exit-fn-from-symbol artist-curr-go)) | |
4131 (fill-pred (artist-go-get-fill-pred-from-symbol artist-curr-go)) | |
4132 (fill-fn (artist-go-get-fill-fn-from-symbol artist-curr-go)) | |
4133 (arrow-pred (artist-go-get-arrow-pred-from-symbol artist-curr-go)) | |
4134 (arrow-set-fn (artist-go-get-arrow-set-fn-from-symbol artist-curr-go))) | |
4135 | |
4136 (if (not artist-key-is-drawing) | |
4137 | |
4138 ;; *** We were not drawing ==> set first point | |
4139 (progn | |
4140 | |
4141 (artist-funcall init-fn x y) | |
4142 | |
4143 ;; If not rubber-banding, set first point. | |
4144 ;; Otherwise, draw the shape from x,y to x,y | |
4145 (if (not artist-rubber-banding) | |
4146 (artist-no-rb-set-point1 x y) | |
4147 (setq artist-key-shape (artist-funcall draw-fn x y x y))) | |
4148 | |
4149 ;; Set first endpoint | |
4150 (setq artist-key-endpoint1 (artist-make-endpoint x y)) | |
4151 | |
4152 ;; Set point-list to contain start point | |
4153 (setq artist-key-poly-point-list (list (artist-make-endpoint x y))) | |
4154 | |
4155 ;; Since we are not ready, set the arrow-points to nil | |
4156 (artist-clear-arrow-points) | |
4157 | |
4158 ;; Change state to drawing | |
4159 (setq artist-key-is-drawing t) | |
4160 | |
4161 ;; Feedback | |
65583
703495630901
Message format spec fixes (2)
Deepak Goel <deego@gnufans.org>
parents:
65260
diff
changeset
|
4162 (message "%s" (substitute-command-keys |
33618 | 4163 (concat "First point set. " |
4164 "Set next with \\[artist-key-set-point], " | |
4165 "set last with C-u \\[artist-key-set-point]")))) | |
4166 | |
4167 | |
4168 ;; *** We were drawing ==> we are about to set nth point | |
4169 ;; (last point if the argument this-is-last-point is non-nil) | |
4170 ;; | |
4171 (let ((x1 (artist-endpoint-get-x artist-key-endpoint1)) | |
4172 (y1 (artist-endpoint-get-y artist-key-endpoint1)) | |
4173 (x2 x) | |
4174 (y2 y)) | |
4175 | |
4176 ;; If not rubber-banding, undraw the 1's and 2's, then | |
4177 ;; draw the shape (if we were rubber-banding, then the | |
4178 ;; shape is already drawn in artist-key-do-continously-2points.) | |
4179 ;; | |
4180 (if (not artist-rubber-banding) | |
4181 (progn | |
4182 (artist-no-rb-unset-points) | |
4183 (setq artist-key-shape (artist-funcall draw-fn x1 y1 x2 y2)))) | |
4184 | |
4185 ;; Set x2 and y2 from shape's second point | |
4186 ;; (which might be different from the mouse's second point, | |
4187 ;; if, for example, we are drawing a straight line) | |
4188 ;; | |
4189 (if (not (null artist-key-shape)) | |
4190 (let ((endpoint2 (artist-2point-get-endpoint2 artist-key-shape))) | |
4191 (setq x2 (artist-endpoint-get-x endpoint2)) | |
4192 (setq y2 (artist-endpoint-get-y endpoint2)))) | |
4193 | |
4194 ;; Add the endpoint to the list of poly-points | |
4195 (setq artist-key-poly-point-list | |
4196 (append artist-key-poly-point-list | |
4197 (list (artist-make-endpoint x2 y2)))) | |
4198 | |
4199 ;; Now do handle the case when this is the last point, | |
4200 ;; and the case when this point isn't the last | |
4201 ;; | |
4202 (if (not this-is-last-point) | |
4203 ;; ** This is not the last point | |
4204 (progn | |
4205 ;; Start drawing a new 2-point-shape from last endpoint. | |
4206 | |
4207 ;; First set the start-point | |
4208 (setq x1 x2) | |
4209 (setq y1 y2) | |
4210 (setq artist-key-endpoint1 (artist-make-endpoint x1 y1)) | |
4211 | |
4212 ;; If we are not rubber-banding, then place the '1 | |
4213 ;; Otherwise, draw the shape from x1,y1 to x1,y1 | |
4214 (if (not artist-rubber-banding) | |
4215 (artist-no-rb-set-point1 x1 y1) | |
4216 (setq artist-key-shape (artist-funcall draw-fn x1 y1 x1 y1))) | |
4217 | |
4218 ;; Feedback | |
4219 (message "Point set")) | |
4220 | |
4221 ;; ** This is the last point | |
4222 (progn | |
4223 | |
4224 (artist-funcall prep-fill-fn artist-key-poly-point-list) | |
4225 | |
4226 ;; Maybe fill | |
4227 (if (artist-funcall fill-pred) | |
4228 (artist-funcall fill-fn artist-key-shape | |
4229 artist-key-poly-point-list)) | |
4230 | |
4231 ;; Set the arrow-points | |
4232 (if (artist-funcall arrow-pred) | |
4233 (artist-funcall arrow-set-fn artist-key-poly-point-list) | |
4234 (artist-clear-arrow-points)) | |
4235 | |
4236 (artist-funcall exit-fn artist-key-poly-point-list) | |
4237 | |
4238 ;; Change state to not drawing | |
4239 (setq artist-key-shape nil) | |
4240 (setq artist-key-endpoint1 nil) | |
4241 (setq artist-key-is-drawing nil))))))) | |
4242 | |
4243 | |
4244 (defun artist-key-set-point-1point (x y) | |
4245 "Set point for current 1-point shape at X,Y." | |
4246 (let ((draw-fn (artist-go-get-draw-fn-from-symbol artist-curr-go)) | |
4247 (init-fn (artist-go-get-init-fn-from-symbol artist-curr-go)) | |
4248 (prep-fill-fn (artist-go-get-prep-fill-fn-from-symbol artist-curr-go)) | |
4249 (exit-fn (artist-go-get-exit-fn-from-symbol artist-curr-go)) | |
4250 (draw-fn (artist-go-get-draw-fn-from-symbol artist-curr-go)) | |
4251 (arrow-pred (artist-go-get-arrow-pred-from-symbol artist-curr-go)) | |
4252 (arrow-set-fn (artist-go-get-arrow-set-fn-from-symbol artist-curr-go))) | |
4253 (artist-funcall init-fn x y) | |
4254 (artist-funcall draw-fn x y) | |
4255 (artist-funcall prep-fill-fn x y) | |
4256 (if (artist-funcall arrow-pred) | |
4257 (artist-funcall arrow-set-fn x y) | |
4258 (artist-clear-arrow-points)) | |
4259 (artist-funcall exit-fn x y)) | |
4260 (setq artist-key-shape nil) | |
4261 (setq artist-key-is-drawing nil)) | |
4262 | |
4263 | |
4264 (defun artist-key-set-point-2points (x y) | |
4265 "Set first or second point in current 2-point shape at X,Y." | |
4266 (let ((draw-fn (artist-go-get-draw-fn-from-symbol artist-curr-go)) | |
4267 (init-fn (artist-go-get-init-fn-from-symbol artist-curr-go)) | |
4268 (prep-fill-fn (artist-go-get-prep-fill-fn-from-symbol artist-curr-go)) | |
4269 (exit-fn (artist-go-get-exit-fn-from-symbol artist-curr-go)) | |
4270 (fill-pred (artist-go-get-fill-pred-from-symbol artist-curr-go)) | |
4271 (fill-fn (artist-go-get-fill-fn-from-symbol artist-curr-go)) | |
4272 (arrow-pred (artist-go-get-arrow-pred-from-symbol artist-curr-go)) | |
4273 (arrow-set-fn (artist-go-get-arrow-set-fn-from-symbol artist-curr-go))) | |
4274 (if (not artist-key-is-drawing) | |
4275 | |
4276 ;; *** We were not drawing ==> set first point | |
4277 (progn | |
4278 | |
4279 (artist-funcall init-fn x y) | |
4280 | |
4281 ;; If not rubber-banding, set first point. | |
4282 ;; Otherwise, draw the shape from x,y to x,y | |
4283 (if (not artist-rubber-banding) | |
4284 (artist-no-rb-set-point1 x y) | |
4285 (setq artist-key-shape (artist-funcall draw-fn x y x y))) | |
4286 | |
4287 ;; Set first endpoint | |
4288 (setq artist-key-endpoint1 (artist-make-endpoint x y)) | |
4289 | |
4290 ;; Since we are not ready, clear the arrow-points | |
4291 (artist-clear-arrow-points) | |
4292 | |
4293 ;; Change state to drawing | |
4294 (setq artist-key-is-drawing t)) | |
4295 | |
4296 ;; *** We were drawing ==> we are about to set 2nd point | |
4297 ;; and end the drawing operation | |
4298 | |
4299 (let ((x1 (artist-endpoint-get-x artist-key-endpoint1)) | |
4300 (y1 (artist-endpoint-get-y artist-key-endpoint1)) | |
4301 (x2 x) | |
4302 (y2 y)) | |
4303 | |
4304 ;; If not rubber-banding, undraw the 1's and 2's, then | |
4305 ;; draw the shape (if we were rubber-banding, then the | |
4306 ;; shape is already drawn in artist-key-do-continously-2points.) | |
4307 ;; | |
4308 (if (not artist-rubber-banding) | |
4309 (progn | |
4310 (artist-no-rb-unset-points) | |
4311 (setq artist-key-shape (artist-funcall draw-fn x1 y1 x2 y2)))) | |
4312 | |
4313 (artist-funcall prep-fill-fn artist-key-shape x1 y1 x2 y2) | |
4314 | |
4315 ;; Maybe fill | |
4316 ;; | |
4317 (if (artist-funcall fill-pred) | |
4318 (artist-funcall fill-fn artist-key-shape x1 y1 x2 y2)) | |
4319 | |
4320 ;; Maybe set the arrow-points | |
4321 ;; | |
4322 (if (artist-funcall arrow-pred) | |
4323 (artist-funcall arrow-set-fn artist-key-shape x1 y1 x2 y2) | |
4324 (artist-clear-arrow-points)) | |
4325 | |
4326 (artist-funcall exit-fn artist-key-shape x1 y1 x2 y2) | |
4327 | |
4328 ;; Change state to not drawing | |
4329 (setq artist-key-is-drawing nil))))) | |
4330 | |
4331 | |
4332 (defun artist-key-set-point-common (arg) | |
4333 "Common routine for setting point in current shape. | |
55793
812519af46fd
(artist-last, artist-remove-nulls): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
4334 With non-nil ARG, set the last point." |
33618 | 4335 (let ((draw-how (artist-go-get-draw-how-from-symbol artist-curr-go)) |
4336 (col (artist-current-column)) | |
4337 (row (artist-current-line)) | |
4338 (was-drawing artist-key-is-drawing)) | |
4339 | |
4340 ;; First, if we are about to draw, then reset the draw-region | |
4341 (if (not artist-key-is-drawing) | |
4342 (artist-draw-region-reset)) | |
4343 | |
4344 ;; Depending on what we are currently drawing, call other routines | |
4345 ;; that knows how to do the job | |
4346 ;; | |
4347 (cond ((eq draw-how 'artist-do-continously) | |
4348 (artist-key-set-point-continously col row) | |
4349 ;; Do this now, otherwise nothing will happen until we move. | |
4350 (artist-key-do-continously-continously col row)) | |
4351 ((eq draw-how 'artist-do-poly) | |
4352 (artist-key-set-point-poly col row arg)) | |
4353 ((and (numberp draw-how) (= draw-how 1)) | |
4354 (artist-key-set-point-1point col row)) | |
4355 ((and (numberp draw-how) (= draw-how 2)) | |
4356 (artist-key-set-point-2points col row)) | |
4357 (t (message "Drawing \"%s\"s is not yet implemented" draw-how))) | |
4358 | |
4359 ;; Maybe trim line endings | |
4360 (if (and artist-trim-line-endings | |
4361 was-drawing | |
4362 (not artist-key-is-drawing)) | |
4363 (artist-draw-region-trim-line-endings artist-draw-region-min-y | |
4364 artist-draw-region-max-y)) | |
4365 | |
4366 ;; Now restore the old position | |
4367 ;; | |
4368 (artist-move-to-xy col row) | |
4369 (artist-mode-line-show-curr-operation artist-key-is-drawing))) | |
4370 | |
4371 ;; | |
4372 ;; Key navigation | |
4373 ;; | |
4374 | |
4375 (defun artist-previous-line (&optional n) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
4376 "Move cursor up N lines (default is 1), updating current shape. |
33618 | 4377 If N is negative, move cursor down." |
4378 (interactive "p") | |
4379 (let ((col (artist-current-column))) | |
85404
a72f314c5cd8
(artist-previous-line, artist-next-line): Use forward-line.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
84925
diff
changeset
|
4380 (forward-line (- n)) |
a72f314c5cd8
(artist-previous-line, artist-next-line): Use forward-line.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
84925
diff
changeset
|
4381 (move-to-column col t)) |
a72f314c5cd8
(artist-previous-line, artist-next-line): Use forward-line.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
84925
diff
changeset
|
4382 (when artist-key-is-drawing |
a72f314c5cd8
(artist-previous-line, artist-next-line): Use forward-line.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
84925
diff
changeset
|
4383 (artist-key-do-continously-common))) |
33618 | 4384 |
4385 | |
4386 (defun artist-next-line (&optional n) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
4387 "Move cursor down N lines (default is 1), updating current shape. |
33618 | 4388 If N is negative, move cursor up." |
4389 (interactive "p") | |
4390 (let ((col (artist-current-column))) | |
85404
a72f314c5cd8
(artist-previous-line, artist-next-line): Use forward-line.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
84925
diff
changeset
|
4391 (forward-line n) |
a72f314c5cd8
(artist-previous-line, artist-next-line): Use forward-line.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
84925
diff
changeset
|
4392 (move-to-column col t)) |
a72f314c5cd8
(artist-previous-line, artist-next-line): Use forward-line.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
84925
diff
changeset
|
4393 (when artist-key-is-drawing |
a72f314c5cd8
(artist-previous-line, artist-next-line): Use forward-line.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
84925
diff
changeset
|
4394 (artist-key-do-continously-common))) |
33618 | 4395 |
4396 (defun artist-backward-char (&optional n) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
4397 "Move cursor backward N chars (default is 1), updating current shape. |
33618 | 4398 If N is negative, move forward." |
4399 (interactive "p") | |
4400 (if (> n 0) | |
4401 (artist-forward-char (- n)) | |
4402 (artist-forward-char n))) | |
4403 | |
4404 (defun artist-forward-char (&optional n) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
4405 "Move cursor forward N chars (default is 1), updating current shape. |
33618 | 4406 If N is negative, move backward." |
4407 (interactive "p") | |
4408 (let* ((step-x (if (>= n 0) 1 -1)) | |
4409 (distance (abs n)) | |
4410 (curr-col (artist-current-column)) | |
4411 (new-col (max 0 (+ curr-col (* distance step-x))))) | |
4412 (if (not artist-key-is-drawing) | |
4413 (move-to-column new-col t) | |
4414 (move-to-column new-col t) | |
4415 (artist-key-do-continously-common)))) | |
4416 | |
4417 | |
4418 (defun artist-key-set-point (&optional arg) | |
4419 "Set a point for the current shape. With optional ARG, set the last point." | |
4420 (interactive "P") | |
4421 (artist-key-set-point-common arg)) | |
4422 | |
4423 | |
4424 (defun artist-select-fill-char (c) | |
4425 "Set current fill character to be C." | |
4426 (interactive "cType fill char (type RET to turn off): ") | |
4427 (cond ((eq c ?\r) (setq artist-fill-char-set nil) | |
4428 (message "Fill cancelled")) | |
4429 (t (setq artist-fill-char-set t) | |
4430 (setq artist-fill-char c) | |
4431 (message "Fill set to \"%c\"" c)))) | |
4432 | |
4433 | |
4434 (defun artist-select-line-char (c) | |
4435 "Set current line character to be C." | |
4436 (interactive "cType line char (type RET to turn off): ") | |
4437 (cond ((eq c ?\r) (setq artist-line-char-set nil) | |
4438 (message "Normal lines")) | |
4439 (t (setq artist-line-char-set t) | |
4440 (setq artist-line-char c) | |
4441 (message "Line drawn with \"%c\"" c))) | |
4442 (if artist-key-is-drawing | |
4443 (artist-key-do-continously-common))) | |
4444 | |
4445 | |
4446 (defun artist-select-erase-char (c) | |
4447 "Set current erase character to be C." | |
4448 (interactive "cType char to use when erasing (type RET for normal): ") | |
65260
c1dcf33345ab
(x-pointer-crosshair): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
4449 (cond ((eq c ?\r) (setq artist-erase-char ?\s) |
33618 | 4450 (message "Normal erasing")) |
4451 (t (setq artist-erase-char c) | |
4452 (message "Erasing with \"%c\"" c))) | |
4453 (if artist-key-is-drawing | |
4454 (artist-key-do-continously-common))) | |
4455 | |
4456 (defun artist-charlist-to-string (char-list) | |
4457 "Convert a list of characters, CHAR-LIST, to a string." | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
4458 (concat char-list)) |
33618 | 4459 |
4460 (defun artist-string-to-charlist (str) | |
4461 "Convert a string, STR, to list of characters." | |
4462 (append str nil)) | |
4463 | |
4464 (defun artist-select-spray-chars (chars initial-char) | |
4465 "Set current spray characters to be CHARS, starting with INITIAL-CHAR." | |
4466 ;; This huge unreadable `interactive'-clause does the following | |
4467 ;; 1. Asks for a string of spray-characters | |
4468 ;; 2. Asks for the initial character (default is the first), | |
4469 ;; and loops if the answer is not a char within the string in 1. | |
4470 (interactive | |
4471 (let* ((str (read-string "Select spray-can characters, lightest first: " | |
4472 (artist-charlist-to-string artist-spray-chars))) | |
4473 (char-list (artist-string-to-charlist str)) | |
4474 (initial (let* ((err-msg "") | |
4475 (ok nil) | |
4476 (first-char-as-str (char-to-string (car char-list))) | |
4477 (first-s) (first-c)) | |
4478 (while (not ok) | |
4479 (setq first-s | |
4480 (read-string | |
4481 (format (concat "%sSelect initial-character, " | |
4482 "one of \"%s\" (%s): ") | |
4483 err-msg str first-char-as-str))) | |
4484 (if (equal first-s "") | |
4485 (setq first-s first-char-as-str)) | |
4486 (setq first-c (car (artist-string-to-charlist first-s))) | |
4487 (setq ok (not (null (member first-c char-list)))) | |
4488 (if (not ok) | |
4489 (setq err-msg (format | |
4490 "Not in spray-chars: \"%s\". " | |
4491 (char-to-string first-c))))) | |
4492 first-c))) | |
4493 (list char-list initial))) | |
4494 (setq artist-spray-chars chars) | |
4495 (setq artist-spray-new-char initial-char) | |
4496 (message "Spray-chars set to \"%s\", initial: \"%s\"" | |
4497 (artist-charlist-to-string chars) (char-to-string initial-char))) | |
4498 | |
4499 | |
4500 (defun artist-select-operation (op-str) | |
4501 "Select drawing operation OP-STR." | |
4502 (interactive (list (completing-read "Select operation: " | |
4503 artist-key-compl-table))) | |
4504 (let* ((op-symbol (artist-mt-get-symbol-from-keyword op-str)) | |
4505 (draw-how (if op-symbol | |
4506 (artist-go-get-draw-how-from-symbol op-symbol) | |
4507 nil))) | |
4508 ;; First check that the string was valid | |
4509 (if (null op-symbol) | |
4510 (error "Unknown drawing method: %s" op-str)) | |
4511 | |
4512 ;; Second, check that we are not about to switch to a different | |
4513 ;; kind of shape (do that only if we are drawing with keys; | |
4514 ;; otherwise this function cannot get called). | |
4515 (if (and artist-key-is-drawing | |
4516 (not (equal artist-key-draw-how draw-how))) | |
4517 (error "Cannot switch to a different kind of shape while drawing")) | |
4518 | |
4519 ;; If we were drawing, undraw the shape | |
4520 (if (and artist-key-is-drawing | |
4521 artist-rubber-banding) | |
4522 (artist-key-undraw-common)) | |
4523 | |
4524 ;; Set the current operation and draw-how | |
4525 (setq artist-curr-go op-symbol) | |
4526 (setq artist-key-draw-how draw-how) | |
4527 | |
4528 ;; If we were drawing, redraw the shape (but don't if shape | |
4529 ;; is drawn by setting only one point) | |
4530 (if (and artist-key-is-drawing | |
4531 artist-rubber-banding | |
4532 (not (eq artist-key-draw-how 1))) | |
4533 (artist-key-draw-common))) | |
4534 | |
4535 ;; Feedback | |
4536 (artist-mode-line-show-curr-operation artist-key-is-drawing)) | |
4537 | |
4538 | |
4539 (defun artist-toggle-rubber-banding (&optional state) | |
4540 "Toggle rubber-banding. | |
4541 If optional argument STATE is positive, turn rubber-banding on." | |
4542 (interactive) | |
4543 (if artist-key-is-drawing | |
4544 (error "Cannot toggle rubber-banding while drawing")) | |
4545 (if (setq artist-rubber-banding | |
4546 (if (null state) (not artist-rubber-banding) | |
4547 (> (prefix-numeric-value state) 0))) | |
4548 (message "Rubber-banding is now on") | |
4549 (message "Rubber-banding is now off"))) | |
4550 | |
4551 | |
4552 (defun artist-toggle-trim-line-endings (&optional state) | |
4553 "Toggle trimming of line-endings. | |
4554 If optional argument STATE is positive, turn trimming on." | |
4555 (interactive) | |
4556 (if (setq artist-trim-line-endings | |
4557 (if (null state) (not artist-trim-line-endings) | |
4558 (> (prefix-numeric-value state) 0))) | |
4559 (message "Trimming is now on") | |
4560 (message "Trimming is now off"))) | |
4561 | |
4562 | |
4563 (defun artist-toggle-borderless-shapes (&optional state) | |
4564 "Toggle borders of shapes. | |
4565 If optional argument STATE is positive, turn borders on." | |
4566 (interactive) | |
4567 (if (setq artist-borderless-shapes | |
4568 (if (null state) (not artist-borderless-shapes) | |
4569 (> (prefix-numeric-value state) 0))) | |
4570 (message "Borders are now off") | |
4571 (message "Borders are now on"))) | |
4572 | |
4573 | |
4574 (defun artist-toggle-first-arrow () | |
4575 "Toggle first arrow for shape, if possible." | |
4576 (interactive) | |
4577 (save-excursion | |
4578 (if (not (null artist-arrow-point-1)) | |
4579 (let* ((arrow-point artist-arrow-point-1) | |
4580 (arrow-state (artist-arrow-point-get-state arrow-point)) | |
4581 (arrow-marker (artist-arrow-point-get-marker arrow-point)) | |
4582 (direction (artist-arrow-point-get-direction arrow-point)) | |
4583 (orig-char (artist-arrow-point-get-orig-char arrow-point)) | |
4584 (arrow-char (aref artist-arrows direction)) | |
4585 (new-state (not arrow-state))) | |
4586 | |
4587 (goto-char (marker-position arrow-marker)) | |
4588 | |
4589 (if new-state | |
4590 (if arrow-char | |
4591 (artist-replace-char arrow-char)) | |
4592 (artist-replace-char orig-char)) | |
4593 | |
4594 (artist-arrow-point-set-state artist-arrow-point-1 new-state))))) | |
4595 | |
4596 (defun artist-toggle-second-arrow () | |
4597 "Toggle second arrow for shape, if possible." | |
4598 (interactive) | |
4599 (save-excursion | |
4600 (if (not (null artist-arrow-point-2)) | |
4601 (let* ((arrow-point artist-arrow-point-2) | |
4602 (arrow-state (artist-arrow-point-get-state arrow-point)) | |
4603 (arrow-marker (artist-arrow-point-get-marker arrow-point)) | |
4604 (direction (artist-arrow-point-get-direction arrow-point)) | |
4605 (orig-char (artist-arrow-point-get-orig-char arrow-point)) | |
4606 (arrow-char (aref artist-arrows direction)) | |
4607 (new-state (not arrow-state))) | |
4608 | |
4609 (goto-char (marker-position arrow-marker)) | |
4610 | |
4611 (if new-state | |
4612 (if arrow-char | |
4613 (artist-replace-char arrow-char)) | |
4614 (artist-replace-char orig-char)) | |
4615 | |
4616 (artist-arrow-point-set-state artist-arrow-point-2 new-state))))) | |
4617 | |
4618 | |
4619 (defun artist-select-op-line () | |
4620 "Select drawing lines." | |
4621 (interactive) | |
4622 (artist-select-operation "line")) | |
4623 | |
4624 (defun artist-select-op-straight-line () | |
4625 "Select drawing straight lines." | |
4626 (interactive) | |
4627 (artist-select-operation "straight line")) | |
4628 | |
4629 (defun artist-select-op-rectangle () | |
4630 "Select drawing rectangles." | |
4631 (interactive) | |
4632 (artist-select-operation "rectangle")) | |
4633 | |
4634 (defun artist-select-op-square () | |
4635 "Select drawing squares." | |
4636 (interactive) | |
4637 (artist-select-operation "square")) | |
4638 | |
4639 (defun artist-select-op-poly-line () | |
4640 "Select drawing poly-lines." | |
4641 (interactive) | |
4642 (artist-select-operation "poly-line")) | |
4643 | |
4644 (defun artist-select-op-straight-poly-line () | |
4645 "Select drawing straight poly-lines." | |
4646 (interactive) | |
4647 (artist-select-operation "straight poly-line")) | |
4648 | |
4649 (defun artist-select-op-ellipse () | |
4650 "Select drawing ellipses." | |
4651 (interactive) | |
4652 (artist-select-operation "ellipse")) | |
4653 | |
4654 (defun artist-select-op-circle () | |
4655 "Select drawing circles." | |
4656 (interactive) | |
4657 (artist-select-operation "circle")) | |
4658 | |
4659 (defun artist-select-op-text-see-thru () | |
4660 "Select rendering text (see thru)." | |
4661 (interactive) | |
4662 (artist-select-operation "text see-thru")) | |
4663 | |
4664 (defun artist-select-op-text-overwrite () | |
4665 "Select rendering text (overwrite)." | |
4666 (interactive) | |
4667 (artist-select-operation "text overwrite")) | |
4668 | |
4669 (defun artist-select-op-spray-can () | |
4670 "Select spraying." | |
4671 (interactive) | |
4672 (artist-select-operation "spray-can")) | |
4673 | |
4674 (defun artist-select-op-spray-set-size () | |
4675 "Select setting size for spraying." | |
4676 (interactive) | |
4677 (artist-select-operation "spray set size")) | |
4678 | |
4679 (defun artist-select-op-erase-char () | |
4680 "Select erasing characters." | |
4681 (interactive) | |
4682 (artist-select-operation "erase char")) | |
4683 | |
4684 (defun artist-select-op-erase-rectangle () | |
4685 "Select erasing rectangles." | |
4686 (interactive) | |
4687 (artist-select-operation "erase rectangle")) | |
4688 | |
4689 (defun artist-select-op-vaporize-line () | |
4690 "Select vaporizing single lines." | |
4691 (interactive) | |
4692 (artist-select-operation "vaporize line")) | |
4693 | |
4694 (defun artist-select-op-vaporize-lines () | |
4695 "Select vaporizing connected lines." | |
4696 (interactive) | |
4697 (artist-select-operation "vaporize lines")) | |
4698 | |
4699 (defun artist-select-op-cut-rectangle () | |
4700 "Select cutting rectangles." | |
4701 (interactive) | |
4702 (artist-select-operation "cut rectangle")) | |
4703 | |
4704 (defun artist-select-op-cut-square () | |
4705 "Select cutting squares." | |
4706 (interactive) | |
4707 (artist-select-operation "cut square")) | |
4708 | |
4709 (defun artist-select-op-copy-rectangle () | |
4710 "Select copying rectangles." | |
4711 (interactive) | |
4712 (artist-select-operation "copy rectangle")) | |
4713 | |
4714 (defun artist-select-op-copy-square () | |
4715 "Select copying squares." | |
4716 (interactive) | |
4717 (artist-select-operation "cut square")) | |
4718 | |
4719 (defun artist-select-op-paste () | |
4720 "Select pasting." | |
4721 (interactive) | |
4722 (artist-select-operation "paste")) | |
4723 | |
4724 (defun artist-select-op-flood-fill () | |
4725 "Select flood-filling." | |
4726 (interactive) | |
4727 (artist-select-operation "flood-fill")) | |
4728 | |
4729 | |
4730 ;; Drawing lines by using mouse | |
4731 ;; Mouse button actions | |
4732 ;; | |
4733 | |
4734 (defun artist-update-pointer-shape () | |
4735 "Perform the update of the X Windows pointer shape." | |
4736 (set-mouse-color nil)) | |
4737 | |
95841
b4e36ff621b3
Add some compiler declarations, for builds without X.
Glenn Morris <rgm@gnu.org>
parents:
94670
diff
changeset
|
4738 (defvar x-pointer-shape) |
b4e36ff621b3
Add some compiler declarations, for builds without X.
Glenn Morris <rgm@gnu.org>
parents:
94670
diff
changeset
|
4739 |
33618 | 4740 (defun artist-set-pointer-shape (new-pointer-shape) |
4741 "Set the shape of the X Windows pointer to NEW-POINTER-SHAPE." | |
4742 (setq x-pointer-shape new-pointer-shape) | |
4743 (artist-update-pointer-shape)) | |
4744 | |
4745 (defsubst artist-event-is-shifted (ev) | |
4746 "Check whether the shift-key is pressed in event EV." | |
4747 (memq 'shift (event-modifiers ev))) | |
4748 | |
4749 (defun artist-do-nothing () | |
4750 "Function that does nothing." | |
4751 (interactive)) | |
4752 | |
105981
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4753 (defun artist-compute-up-event-key (ev) |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4754 "Compute the corresponding up key sequence for event EV." |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4755 (let* ((basic (event-basic-type ev)) |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4756 (unshifted basic) |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4757 (shifted (make-symbol (concat "S-" (symbol-name basic))))) |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4758 (if (artist-event-is-shifted ev) |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4759 (make-vector 1 shifted) |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4760 (make-vector 1 unshifted)))) |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4761 |
33618 | 4762 (defun artist-down-mouse-1 (ev) |
4763 "Perform drawing action for event EV." | |
4764 (interactive "@e") | |
4765 (let* ((real (artist-go-get-symbol-shift | |
4766 artist-curr-go (artist-event-is-shifted ev))) | |
4767 (draw-how (artist-go-get-draw-how-from-symbol real)) | |
4768 ;; Remember original values for draw-region-min-y and max-y | |
4769 ;; in case we are interrupting a key-draw operation. | |
4770 (orig-draw-region-min-y artist-draw-region-min-y) | |
4771 (orig-draw-region-max-y artist-draw-region-max-y) | |
4772 (orig-pointer-shape (if (eq window-system 'x) x-pointer-shape nil)) | |
105981
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4773 (echoq-keystrokes 10000) ; a lot of seconds |
33618 | 4774 ;; Remember original binding for the button-up event to this |
4775 ;; button-down event. | |
105981
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4776 (key (artist-compute-up-event-key ev)) |
33618 | 4777 (orig-button-up-binding (lookup-key (current-global-map) key))) |
4778 | |
4779 (unwind-protect | |
4780 (progn | |
4781 (if (eq window-system 'x) | |
4782 (artist-set-pointer-shape artist-pointer-shape)) | |
4783 | |
47953
126b6cb8740d
(artist-ff-is-bottommost-line): Fix misplaced ELSE expression on IF.
Juanma Barranquero <lekktu@gmail.com>
parents:
46163
diff
changeset
|
4784 ;; Redefine the button-up binding temporarily (the original |
33618 | 4785 ;; binding is restored in the unwind-forms below). This is to |
4786 ;; avoid the phenomenon outlined in this scenario: | |
4787 ;; | |
4788 ;; 1. A routine which reads something from the mini-buffer (such | |
4789 ;; as the text renderer) is called from below. | |
4790 ;; 2. Meanwhile, the users releases the mouse button. | |
47953
126b6cb8740d
(artist-ff-is-bottommost-line): Fix misplaced ELSE expression on IF.
Juanma Barranquero <lekktu@gmail.com>
parents:
46163
diff
changeset
|
4791 ;; 3. As a (funny :-) coincidence, the binding for the |
33618 | 4792 ;; button-up event is often mouse-set-point, so Emacs |
4793 ;; sets the point to where the button was released, which is | |
4794 ;; in the buffer where the user wants to place the text. | |
4795 ;; 4. The user types C-x o (or uses the mouse once again) | |
4796 ;; until he reaches the mini-buffer which is still prompting | |
4797 ;; for some text to render. | |
4798 ;; | |
4799 ;; To do this foolproof, all local and minor-mode maps should | |
4800 ;; be searched and temporarily changed as well, since they | |
4801 ;; too might have some binding for the button-up event, | |
4802 ;; but I hope dealing with the global map will suffice. | |
4803 (define-key (current-global-map) key 'artist-do-nothing) | |
4804 | |
4805 (artist-draw-region-reset) | |
4806 | |
4807 (artist-mode-line-show-curr-operation t) | |
4808 | |
4809 (cond ((eq draw-how 'artist-do-continously) | |
4810 (artist-mouse-draw-continously ev)) | |
4811 ((eq draw-how 'artist-do-poly) | |
4812 (artist-mouse-draw-poly ev)) | |
4813 ((and (numberp draw-how) (= draw-how 1)) | |
4814 (artist-mouse-draw-1point ev)) | |
4815 ((and (numberp draw-how) (= draw-how 2)) | |
4816 (artist-mouse-draw-2points ev)) | |
4817 (t (message "Drawing \"%s\"s is not yet implemented" | |
4818 draw-how))) | |
4819 | |
4820 (if artist-trim-line-endings | |
4821 (artist-draw-region-trim-line-endings artist-draw-region-min-y | |
4822 artist-draw-region-max-y)) | |
4823 (setq artist-draw-region-min-y orig-draw-region-min-y) | |
4824 (setq artist-draw-region-max-y orig-draw-region-max-y)) | |
4825 | |
4826 ; This is protected | |
4827 (if (eq window-system 'x) | |
4828 (artist-set-pointer-shape orig-pointer-shape)) | |
4829 | |
4830 (if orig-button-up-binding | |
4831 (define-key (current-global-map) key orig-button-up-binding)) | |
4832 | |
4833 (artist-mode-line-show-curr-operation artist-key-is-drawing)))) | |
4834 | |
4835 | |
4836 (defun artist-mouse-choose-operation (ev op) | |
55793
812519af46fd
(artist-last, artist-remove-nulls): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
52401
diff
changeset
|
4837 "Choose operation for event EV and operation OP." |
33618 | 4838 (interactive |
4839 (progn | |
4840 (select-window (posn-window (event-start last-input-event))) | |
4841 (list last-input-event | |
105981
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4842 (if (display-popup-menus-p) |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4843 (x-popup-menu last-nonmenu-event artist-popup-menu-table) |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4844 'no-popup-menus)))) |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4845 |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4846 (if (eq op 'no-popup-menus) |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4847 ;; No popup menus. Call `tmm-prompt' instead, but with the |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4848 ;; up-mouse-button, if any, temporarily disabled, otherwise |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4849 ;; it'll interfere. |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4850 (let* ((key (artist-compute-up-event-key ev)) |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4851 (orig-button-up-binding (lookup-key (current-global-map) key))) |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4852 (unwind-protect |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4853 (define-key (current-global-map) key 'artist-do-nothing) |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4854 (setq op (tmm-prompt artist-popup-menu-table)) |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4855 (if orig-button-up-binding |
fb2c6de37340
(artist-mouse-choose-operation): Call `tmm-prompt' instead of `x-popup-menu'
Eli Zaretskii <eliz@gnu.org>
parents:
105813
diff
changeset
|
4856 (define-key (current-global-map) key orig-button-up-binding))))) |
33618 | 4857 |
4858 (let ((draw-fn (artist-go-get-draw-fn-from-symbol (car op))) | |
4859 (set-fn (artist-fc-get-fn-from-symbol (car op)))) | |
4860 (cond | |
4861 | |
4862 ;; *** It was a draw-function | |
4863 ((not (listp draw-fn)) | |
4864 (let* ((unshifted (artist-go-get-symbol-shift (car op) nil)) | |
4865 (shifted (artist-go-get-symbol-shift (car op) t)) | |
4866 (shift-state (artist-event-is-shifted ev)) | |
4867 (selected-op (if shift-state shifted unshifted)) | |
4868 (keyword (artist-go-get-keyword-from-symbol selected-op))) | |
4869 (artist-select-operation keyword))) | |
4870 | |
4871 ;; *** It was a set/unset function | |
4872 ((not (listp set-fn)) | |
4873 (call-interactively set-fn))))) | |
4874 | |
4875 | |
4876 (defun artist-down-mouse-3 (ev) | |
4877 "Erase character or rectangle, depending on event EV." | |
4878 (interactive "@e") | |
4879 (let ((artist-curr-go 'erase-char)) | |
4880 (artist-down-mouse-1 ev)) | |
4881 ;; Restore mode-line | |
4882 (artist-mode-line-show-curr-operation artist-key-is-drawing)) | |
4883 | |
4884 | |
4885 ;; | |
4886 ;; Mouse routines | |
4887 ;; | |
4888 | |
4889 (defsubst artist-shift-has-changed (shift-state ev) | |
4890 "From the last SHIFT-STATE and EV, determine if the shift-state has changed." | |
4891 ;; This one simply doesn't work. | |
4892 ;; | |
4893 ;; There seems to be no way to tell whether the user has pressed shift | |
4894 ;; while dragging the cursor around when we are in a track-mouse | |
4895 ;; form. Calling (event-modifiers ev) yields nil :-( Neither is the | |
4896 ;; (event-basic-type ev) of any help (it is simply `mouse-movement'). | |
4897 ;; | |
4898 ;; So this doesn't work: | |
4899 ;; (cond ((and shift-state (not (artist-event-is-shifted ev))) t) | |
4900 ;; ((and (not shift-state) (artist-event-is-shifted ev)) t) | |
4901 ;; (t nil)) | |
4902 nil) | |
4903 | |
4904 (defun artist-coord-win-to-buf (coord) | |
4905 "Convert a window-relative coordinate COORD to a buffer-relative coordinate." | |
4906 (let ((window-x (car coord)) | |
4907 (window-y (cdr coord)) | |
4908 (window-start-x (window-hscroll)) | |
4909 (window-start-y (save-excursion (goto-char (window-start)) | |
4910 (artist-current-line)))) | |
4911 (cons (+ window-x window-start-x) | |
4912 (+ window-y window-start-y)))) | |
4913 | |
4914 | |
4915 (defun artist-mouse-draw-continously (ev) | |
99875
3658bfd115cd
* textmodes/artist.el (artist-charlist-to-string): Simplify.
Juanma Barranquero <lekktu@gmail.com>
parents:
99515
diff
changeset
|
4916 "Generic function for shapes that require 1 point as input. |
106876
ad7558737bc7
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
106860
diff
changeset
|
4917 Operation is done continuously while the mouse button is hold down. |
33618 | 4918 The event, EV, is the mouse event." |
4919 (let* ((unshifted (artist-go-get-symbol-shift artist-curr-go nil)) | |
4920 (shifted (artist-go-get-symbol-shift artist-curr-go t)) | |
4921 (shift-state (artist-event-is-shifted ev)) | |
4922 (op (if shift-state shifted unshifted)) | |
4923 (draw-how (artist-go-get-draw-how-from-symbol op)) | |
4924 (init-fn (artist-go-get-init-fn-from-symbol op)) | |
4925 (prep-fill-fn (artist-go-get-prep-fill-fn-from-symbol op)) | |
4926 (exit-fn (artist-go-get-exit-fn-from-symbol op)) | |
4927 (draw-fn (artist-go-get-draw-fn-from-symbol op)) | |
4928 (interval-fn (artist-go-get-interval-fn-from-symbol op)) | |
4929 (interval (artist-funcall interval-fn)) | |
4930 (arrow-pred (artist-go-get-arrow-pred-from-symbol op)) | |
4931 (arrow-set-fn (artist-go-get-arrow-set-fn-from-symbol op)) | |
4932 (ev-start (event-start ev)) | |
4933 (initial-win (posn-window ev-start)) | |
4934 (ev-start-pos (artist-coord-win-to-buf (posn-col-row ev-start))) | |
4935 (x1 (car ev-start-pos)) | |
4936 (y1 (cdr ev-start-pos)) | |
4937 (shape) | |
4938 (timer)) | |
4939 (select-window (posn-window ev-start)) | |
4940 (artist-funcall init-fn x1 y1) | |
4941 (if (not artist-rubber-banding) | |
4942 (artist-no-rb-set-point1 x1 y1)) | |
4943 (track-mouse | |
4944 (while (or (mouse-movement-p ev) | |
4945 (member 'down (event-modifiers ev))) | |
4946 (setq ev-start-pos (artist-coord-win-to-buf | |
4947 (posn-col-row (event-start ev)))) | |
4948 (setq x1 (car ev-start-pos)) | |
4949 (setq y1 (cdr ev-start-pos)) | |
4950 | |
4951 ;; Cancel previous timer | |
4952 (if timer | |
4953 (cancel-timer timer)) | |
4954 | |
4955 (if (not (eq initial-win (posn-window (event-start ev)))) | |
4956 ;; If we moved outside the window, do nothing | |
4957 nil | |
4958 | |
4959 ;; Still in same window: | |
4960 ;; | |
4961 ;; Check if user presses or releases shift key | |
4962 (if (artist-shift-has-changed shift-state ev) | |
4963 | |
4964 ;; First check that the draw-how is the same as we | |
4965 ;; already have. Otherwise, ignore the changed shift-state. | |
4966 (if (not (eq draw-how | |
4967 (artist-go-get-draw-how-from-symbol | |
4968 (if (not shift-state) shifted unshifted)))) | |
4969 (message "Cannot switch to shifted operation") | |
4970 | |
4971 ;; progn is "implicit" since this is the else-part | |
4972 (setq shift-state (not shift-state)) | |
4973 (setq op (if shift-state shifted unshifted)) | |
4974 (setq draw-how (artist-go-get-draw-how-from-symbol op)) | |
4975 (setq draw-fn (artist-go-get-draw-fn-from-symbol op)))) | |
4976 | |
4977 ;; Draw the new shape | |
4978 (setq shape (artist-funcall draw-fn x1 y1)) | |
4979 (artist-move-to-xy x1 y1) | |
4980 | |
4981 ;; Start the timer to call `draw-fn' repeatedly every | |
4982 ;; `interval' second | |
4983 (if (and interval draw-fn) | |
4984 (setq timer (run-at-time interval interval draw-fn x1 y1)))) | |
4985 | |
4986 ;; Read next event | |
4987 (setq ev (read-event)))) | |
4988 | |
4989 ;; Cancel any timers | |
4990 (if timer | |
4991 (cancel-timer timer)) | |
4992 | |
4993 (artist-funcall prep-fill-fn x1 y1) | |
4994 | |
4995 (if (artist-funcall arrow-pred) | |
4996 (artist-funcall arrow-set-fn x1 y1) | |
4997 (artist-clear-arrow-points)) | |
4998 | |
4999 (artist-funcall exit-fn x1 y1) | |
5000 (artist-move-to-xy x1 y1))) | |
5001 | |
5002 | |
5003 | |
5004 (defun artist-mouse-draw-poly (ev) | |
5005 "Generic function for shapes requiring several points as input. | |
5006 The event, EV, is the mouse event." | |
5007 (interactive "@e") | |
5008 (message "Mouse-1: set new point, mouse-2: set last point") | |
5009 (let* ((unshifted (artist-go-get-symbol-shift artist-curr-go nil)) | |
5010 (shifted (artist-go-get-symbol-shift artist-curr-go t)) | |
5011 (shift-state (artist-event-is-shifted ev)) | |
5012 (op (if shift-state shifted unshifted)) | |
5013 (draw-how (artist-go-get-draw-how-from-symbol op)) | |
5014 (init-fn (artist-go-get-init-fn-from-symbol op)) | |
5015 (prep-fill-fn (artist-go-get-prep-fill-fn-from-symbol op)) | |
5016 (exit-fn (artist-go-get-exit-fn-from-symbol op)) | |
5017 (draw-fn (artist-go-get-draw-fn-from-symbol op)) | |
5018 (undraw-fn (artist-go-get-undraw-fn-from-symbol op)) | |
5019 (fill-pred (artist-go-get-fill-pred-from-symbol op)) | |
5020 (fill-fn (artist-go-get-fill-fn-from-symbol op)) | |
5021 (arrow-pred (artist-go-get-arrow-pred-from-symbol op)) | |
5022 (arrow-set-fn (artist-go-get-arrow-set-fn-from-symbol op)) | |
5023 (ev-start (event-start ev)) | |
5024 (initial-win (posn-window ev-start)) | |
5025 (ev-start-pos (artist-coord-win-to-buf (posn-col-row ev-start))) | |
5026 (x1-last (car ev-start-pos)) | |
5027 (y1-last (cdr ev-start-pos)) | |
5028 (x2 x1-last) | |
5029 (y2 y1-last) | |
5030 (is-down t) | |
5031 (shape nil) | |
40323 | 5032 (point-list nil) |
33618 | 5033 (done nil)) |
5034 (select-window (posn-window ev-start)) | |
5035 (artist-funcall init-fn x1-last y1-last) | |
5036 (if (not artist-rubber-banding) | |
5037 (artist-no-rb-set-point1 x1-last y1-last)) | |
5038 (track-mouse | |
5039 (while (not done) | |
5040 ;; decide what to do | |
5041 (cond | |
5042 | |
5043 ;; *** Mouse button is released. | |
5044 ((and is-down | |
5045 (or (member 'click (event-modifiers ev)) | |
5046 (member 'drag (event-modifiers ev)))) | |
5047 ;; First, if not rubber-banding, draw the line. | |
5048 ;; | |
5049 (if (not artist-rubber-banding) | |
5050 (progn | |
5051 (artist-no-rb-unset-points) | |
5052 (setq shape (artist-funcall draw-fn x1-last y1-last x2 y2)))) | |
5053 | |
5054 ;; Set the second point to the shape's second point | |
5055 ;; (which might be different from the mouse's second point, | |
5056 ;; if, for example, we are drawing a straight line) | |
5057 ;; | |
5058 (if (not (null shape)) | |
5059 (let ((endpoint2 (artist-2point-get-endpoint2 shape))) | |
5060 (setq x1-last (artist-endpoint-get-x endpoint2)) | |
5061 (setq y1-last (artist-endpoint-get-y endpoint2)))) | |
5062 (setq point-list (cons (artist-make-endpoint x1-last y1-last) | |
5063 point-list)) | |
5064 (setq shape nil) | |
5065 (setq is-down nil)) | |
5066 | |
5067 ;; *** Mouse button 2 or 3 down | |
5068 ((and (member 'down (event-modifiers ev)) | |
5069 (or (equal (event-basic-type ev) 'mouse-2) | |
5070 (equal (event-basic-type ev) 'mouse-3))) | |
5071 ;; Ignore | |
5072 nil) | |
5073 | |
5074 ;; *** Mouse button 2 or 3 released | |
5075 ((and (or (member 'click (event-modifiers ev)) | |
5076 (member 'drag (event-modifiers ev))) | |
5077 (or (equal (event-basic-type ev) 'mouse-2) | |
5078 (equal (event-basic-type ev) 'mouse-3))) | |
5079 | |
5080 ;; This means the end of our poly-line drawing-session. | |
5081 ;; | |
5082 (setq done t)) | |
5083 | |
5084 ;; *** Mouse button 1 went down | |
5085 ((and (not is-down) | |
5086 (member 'down (event-modifiers ev)) | |
5087 (equal (event-basic-type ev) 'mouse-1)) | |
5088 ;; Check whether the (possibly new, that depends on if shift | |
5089 ;; has been pressed or released) symbol has the same draw-how | |
5090 ;; information as the previous had. If it hasn't, we can't | |
5091 ;; proceed. | |
5092 ;; | |
5093 (if (not (eq draw-how | |
5094 (artist-go-get-draw-how-from-symbol | |
5095 (if (not shift-state) shifted unshifted)))) | |
5096 (message "Cannot switch operation") | |
5097 (progn | |
5098 ;; Decide operation | |
5099 ;; | |
5100 (setq unshifted | |
5101 (artist-go-get-symbol-shift artist-curr-go nil) | |
5102 shifted | |
5103 (artist-go-get-symbol-shift artist-curr-go t) | |
5104 shift-state (artist-event-is-shifted ev) | |
5105 op (if shift-state shifted unshifted) | |
5106 draw-how (artist-go-get-draw-how-from-symbol op) | |
5107 draw-fn (artist-go-get-draw-fn-from-symbol op) | |
5108 undraw-fn (artist-go-get-undraw-fn-from-symbol op) | |
5109 fill-pred (artist-go-get-fill-pred-from-symbol op) | |
5110 fill-fn (artist-go-get-fill-fn-from-symbol op)) | |
5111 | |
5112 ;; Draw shape from last place to this place | |
5113 | |
5114 ;; set x2 and y2 | |
5115 ;; | |
5116 (setq ev-start-pos (artist-coord-win-to-buf | |
5117 (posn-col-row (event-start ev)))) | |
5118 (setq x2 (car ev-start-pos)) | |
5119 (setq y2 (cdr ev-start-pos)) | |
5120 | |
5121 ;; Draw the new shape (if not rubber-banding, place both marks) | |
5122 ;; | |
5123 (if artist-rubber-banding | |
5124 (setq shape (artist-funcall draw-fn x1-last y1-last x2 y2)) | |
5125 (progn | |
5126 (artist-no-rb-set-point1 x1-last y1-last) | |
5127 (artist-no-rb-set-point2 x2 y2))) | |
5128 | |
5129 ;; Show new operation in mode-line | |
5130 (let ((artist-curr-go op)) | |
5131 (artist-mode-line-show-curr-operation t)))) | |
5132 | |
5133 (setq is-down t)) | |
5134 | |
5135 | |
5136 ;; *** Mouse moved, button is down and we are still in orig window | |
5137 ((and (mouse-movement-p ev) | |
5138 is-down | |
5139 (eq initial-win (posn-window (event-start ev)))) | |
5140 ;; Draw shape from last place to this place | |
5141 ;; | |
5142 ;; set x2 and y2 | |
5143 (setq ev-start-pos (artist-coord-win-to-buf | |
5144 (posn-col-row (event-start ev)))) | |
5145 (setq x2 (car ev-start-pos)) | |
5146 (setq y2 (cdr ev-start-pos)) | |
5147 | |
5148 ;; First undraw last shape | |
5149 ;; (unset last point if not rubberbanding) | |
5150 ;; | |
5151 (artist-funcall undraw-fn shape) | |
5152 | |
5153 ;; Draw the new shape (if not rubberbanding, set 2nd mark) | |
5154 ;; | |
5155 (if artist-rubber-banding | |
5156 (setq shape (artist-funcall draw-fn x1-last y1-last x2 y2)) | |
5157 (progn | |
5158 (artist-no-rb-unset-point2) | |
5159 (artist-no-rb-set-point2 x2 y2))) | |
5160 ;; Move cursor | |
5161 (artist-move-to-xy x2 y2)) | |
5162 | |
5163 ;; *** Mouse moved, button is down but we are NOT in orig window | |
5164 ((and (mouse-movement-p ev) | |
5165 is-down | |
5166 (not (eq initial-win (posn-window (event-start ev))))) | |
5167 ;; Ignore | |
5168 nil) | |
5169 | |
5170 | |
5171 ;; *** Moving mouse while mouse button is not down | |
5172 ((and (mouse-movement-p ev) (not is-down)) | |
5173 ;; don't do anything. | |
5174 nil) | |
5175 | |
5176 | |
5177 ;; *** Mouse button 1 went down, first time | |
5178 ((and is-down | |
5179 (member 'down (event-modifiers ev)) | |
5180 (equal (event-basic-type ev) 'mouse-1)) | |
5181 ;; don't do anything | |
5182 nil) | |
5183 | |
5184 | |
5185 ;; *** Another event | |
5186 (t | |
5187 ;; End drawing | |
5188 ;; | |
5189 (setq done t))) | |
5190 | |
5191 ;; Read next event (only if we should not stop) | |
5192 (if (not done) | |
5193 (setq ev (read-event))))) | |
5194 | |
5195 ;; Reverse point-list (last points are cond'ed first) | |
5196 (setq point-list (reverse point-list)) | |
5197 | |
5198 (artist-funcall prep-fill-fn point-list) | |
5199 | |
5200 ;; Maybe fill | |
5201 (if (artist-funcall fill-pred) | |
5202 (artist-funcall fill-fn point-list)) | |
5203 | |
5204 ;; Maybe set arrow points | |
40323 | 5205 (if (and point-list (artist-funcall arrow-pred)) |
33618 | 5206 (artist-funcall arrow-set-fn point-list) |
5207 (artist-clear-arrow-points)) | |
5208 | |
5209 (artist-funcall exit-fn point-list) | |
5210 (artist-move-to-xy x2 y2))) | |
5211 | |
5212 | |
5213 (defun artist-mouse-draw-1point (ev) | |
5214 "Generic function for shapes requiring only 1 point as input. | |
5215 Operation is done once. The event, EV, is the mouse event." | |
5216 (interactive "@e") | |
5217 (let* ((unshifted (artist-go-get-symbol-shift artist-curr-go nil)) | |
5218 (shifted (artist-go-get-symbol-shift artist-curr-go t)) | |
5219 (shift-state (artist-event-is-shifted ev)) | |
5220 (op (if shift-state shifted unshifted)) | |
5221 (draw-how (artist-go-get-draw-how-from-symbol op)) | |
5222 (init-fn (artist-go-get-init-fn-from-symbol op)) | |
5223 (prep-fill-fn (artist-go-get-prep-fill-fn-from-symbol op)) | |
5224 (exit-fn (artist-go-get-exit-fn-from-symbol op)) | |
5225 (draw-fn (artist-go-get-draw-fn-from-symbol op)) | |
5226 (arrow-pred (artist-go-get-arrow-pred-from-symbol op)) | |
5227 (arrow-set-fn (artist-go-get-arrow-set-fn-from-symbol op)) | |
5228 (ev-start (event-start ev)) | |
5229 (ev-start-pos (artist-coord-win-to-buf (posn-col-row ev-start))) | |
5230 (x1 (car ev-start-pos)) | |
5231 (y1 (cdr ev-start-pos))) | |
5232 (select-window (posn-window ev-start)) | |
5233 (artist-funcall init-fn x1 y1) | |
5234 (artist-funcall draw-fn x1 y1) | |
5235 (artist-funcall prep-fill-fn x1 y1) | |
5236 (if (artist-funcall arrow-pred) | |
5237 (artist-funcall arrow-set-fn x1 y1) | |
5238 (artist-clear-arrow-points)) | |
5239 (artist-funcall exit-fn x1 y1) | |
5240 (artist-move-to-xy x1 y1))) | |
5241 | |
5242 | |
5243 (defun artist-mouse-draw-2points (ev) | |
5244 "Generic function for shapes requiring 2 points as input. | |
5245 The event, EV, is the mouse event." | |
5246 (interactive "@e") | |
5247 (let* ((unshifted (artist-go-get-symbol-shift artist-curr-go nil)) | |
5248 (shifted (artist-go-get-symbol-shift artist-curr-go t)) | |
5249 (shift-state (artist-event-is-shifted ev)) | |
5250 (op (if shift-state shifted unshifted)) | |
5251 (draw-how (artist-go-get-draw-how-from-symbol op)) | |
5252 (init-fn (artist-go-get-init-fn-from-symbol op)) | |
5253 (prep-fill-fn (artist-go-get-prep-fill-fn-from-symbol op)) | |
5254 (exit-fn (artist-go-get-exit-fn-from-symbol op)) | |
5255 (draw-fn (artist-go-get-draw-fn-from-symbol op)) | |
5256 (undraw-fn (artist-go-get-undraw-fn-from-symbol op)) | |
5257 (fill-pred (artist-go-get-fill-pred-from-symbol op)) | |
5258 (fill-fn (artist-go-get-fill-fn-from-symbol op)) | |
5259 (arrow-pred (artist-go-get-arrow-pred-from-symbol op)) | |
5260 (arrow-set-fn (artist-go-get-arrow-set-fn-from-symbol op)) | |
5261 (ev-start (event-start ev)) | |
5262 (initial-win (posn-window ev-start)) | |
5263 (ev-start-pos (artist-coord-win-to-buf (posn-col-row ev-start))) | |
5264 (x1 (car ev-start-pos)) | |
5265 (y1 (cdr ev-start-pos)) | |
5266 (x2) | |
5267 (y2) | |
5268 (shape)) | |
5269 (select-window (posn-window ev-start)) | |
5270 (artist-funcall init-fn x1 y1) | |
5271 (if (not artist-rubber-banding) | |
5272 (artist-no-rb-set-point1 x1 y1)) | |
5273 (track-mouse | |
5274 (while (or (mouse-movement-p ev) | |
5275 (member 'down (event-modifiers ev))) | |
5276 (setq ev-start-pos (artist-coord-win-to-buf | |
5277 (posn-col-row (event-start ev)))) | |
5278 (setq x2 (car ev-start-pos)) | |
5279 (setq y2 (cdr ev-start-pos)) | |
5280 | |
5281 (if (not (eq initial-win (posn-window (event-start ev)))) | |
5282 ;; If we moved outside the window, do nothing | |
5283 nil | |
5284 | |
5285 ;; Still in same window: | |
5286 ;; | |
5287 ;; First undraw last shape (unset last point if not rubberbanding) | |
5288 (if artist-rubber-banding | |
5289 (artist-funcall undraw-fn shape) | |
5290 (artist-no-rb-unset-point2)) | |
5291 | |
5292 ;; Check if user presses or releases shift key | |
5293 (if (artist-shift-has-changed shift-state ev) | |
5294 | |
5295 ;; First check that the draw-how is the same as we | |
5296 ;; already have. Otherwise, ignore the changed shift-state. | |
5297 (if (not (eq draw-how | |
5298 (artist-go-get-draw-how-from-symbol | |
5299 (if (not shift-state) shifted unshifted)))) | |
5300 (message "Cannot switch to shifted operation") | |
5301 | |
5302 (message "Switching") | |
5303 ;; progn is "implicit" since this is the else-part | |
5304 (setq shift-state (not shift-state)) | |
5305 (setq op (if shift-state shifted unshifted)) | |
5306 (setq draw-how (artist-go-get-draw-how-from-symbol op)) | |
5307 (setq draw-fn (artist-go-get-draw-fn-from-symbol op)) | |
5308 (setq undraw-fn (artist-go-get-undraw-fn-from-symbol op)) | |
5309 (setq fill-pred (artist-go-get-fill-pred-from-symbol op)) | |
5310 (setq fill-fn (artist-go-get-fill-fn-from-symbol op)))) | |
5311 | |
5312 ;; Draw the new shape | |
5313 (if artist-rubber-banding | |
5314 (setq shape (artist-funcall draw-fn x1 y1 x2 y2)) | |
5315 (artist-no-rb-set-point2 x2 y2)) | |
5316 ;; Move cursor | |
5317 (artist-move-to-xy x2 y2)) | |
5318 | |
5319 | |
5320 ;; Read next event | |
5321 (setq ev (read-event)))) | |
5322 | |
5323 ;; If we are not rubber-banding (that is, we were moving around the `2') | |
5324 ;; draw the shape | |
5325 (if (not artist-rubber-banding) | |
5326 (progn | |
5327 (artist-no-rb-unset-points) | |
5328 (setq shape (artist-funcall draw-fn x1 y1 x2 y2)))) | |
5329 | |
5330 (artist-funcall prep-fill-fn shape x1 y1 x2 y2) | |
5331 | |
5332 ;; Maybe fill | |
5333 (if (artist-funcall fill-pred) | |
5334 (artist-funcall fill-fn shape x1 y1 x2 y2)) | |
5335 | |
5336 ;; Maybe set arrow-points | |
5337 (if (artist-funcall arrow-pred) | |
5338 (artist-funcall arrow-set-fn shape x1 y1 x2 y2) | |
5339 (artist-clear-arrow-points)) | |
5340 | |
5341 (artist-funcall exit-fn shape x1 y1 x2 y2) | |
5342 (artist-move-to-xy x2 y2))) | |
5343 | |
5344 | |
5345 ;; | |
5346 ;; Bug-report-submitting | |
5347 ;; | |
5348 (defun artist-submit-bug-report () | |
5349 "Submit via mail a bug report on Artist." | |
5350 (interactive) | |
5351 (require 'reporter) | |
5352 (if (y-or-n-p "Do you want to submit a bug report on Artist? ") | |
5353 (let ((to artist-maintainer-address) | |
5354 (vars '(window-system | |
5355 window-system-version | |
5356 ;; | |
5357 artist-rubber-banding | |
5358 artist-interface-with-rect | |
5359 artist-aspect-ratio | |
5360 ;; Now the internal ones | |
5361 artist-curr-go | |
5362 artist-key-poly-point-list | |
5363 artist-key-shape | |
5364 artist-key-draw-how | |
5365 artist-arrow-point-1 | |
5366 artist-arrow-point-2))) | |
5367 ;; Remove those variables from vars that are not bound | |
84925
003285de78e4
(artist-mt-get-symbol-from-keyword-sub, artist-go-retrieve-from-symbol-sub,
Juanma Barranquero <lekktu@gmail.com>
parents:
78482
diff
changeset
|
5368 (mapc |
33618 | 5369 (function |
5370 (lambda (x) | |
5371 (if (not (and (boundp x) (symbol-value x))) | |
5372 (setq vars (delq x vars))))) vars) | |
5373 (reporter-submit-bug-report | |
5374 artist-maintainer-address | |
5375 (concat "artist.el " artist-version) | |
5376 vars | |
5377 nil nil | |
5378 (concat "Hello Tomas,\n\n" | |
5379 "I have a nice bug report on Artist for you! Here it is:"))))) | |
5380 | |
5381 | |
5382 ;; | |
5383 ;; Now provide this minor mode | |
5384 ;; | |
5385 | |
5386 (provide 'artist) | |
5387 | |
5388 | |
5389 ;;; About adding drawing modes | |
5390 ;;; -------------------------- | |
5391 | |
5392 ;; If you are going to add a new drawing mode, read the following | |
5393 ;; sketchy outlines to get started a bit easier. | |
5394 ;; | |
5395 ;; 1. If your new drawing mode falls into one of the following | |
5396 ;; categories, goto point 2, otherwise goto point 3. | |
5397 ;; | |
106876
ad7558737bc7
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
106860
diff
changeset
|
5398 ;; - Modes where the shapes are drawn continuously, as long as |
ad7558737bc7
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
106860
diff
changeset
|
5399 ;; the mouse button is held down (continuous modes). |
33618 | 5400 ;; Example: the erase-char mode, the pen and pen-line modes. |
5401 ;; | |
5402 ;; - Modes where the shape is made up of from 2 points to an | |
5403 ;; arbitrary number of points (poly-point modes). | |
5404 ;; Example: the poly-line mode | |
5405 ;; | |
5406 ;; - Modes where the shape is made up of 2 points (2-point | |
5407 ;; modes). | |
5408 ;; Example: lines, rectangles | |
5409 ;; | |
5410 ;; - Modes where the shape is made up of 1 point (1-point | |
106876
ad7558737bc7
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
106860
diff
changeset
|
5411 ;; modes). This mode differs from the continuous modes in |
33618 | 5412 ;; that the shape is drawn only once when the mouse button |
5413 ;; is pressed. | |
5414 ;; Examples: paste, a flood-fill, vaporize modes | |
5415 ;; | |
5416 ;; | |
5417 ;; 2. To make it easier and more flexible to program new drawing | |
5418 ;; modes, you might choose to specify | |
5419 ;; init-fn: a function to be called at the very beginning | |
5420 ;; of the drawing phase, | |
5421 ;; prep-fill-fn: a function to be called before filling, | |
5422 ;; arrow-set-fn: a function for setting arrows, to be called | |
5423 ;; after filling, and | |
5424 ;; exit-fn: a function to be called at the very end of | |
5425 ;; the drawing phase. | |
5426 ;; For each of the cases below, the arguments given to the init-fn, | |
5427 ;; prep-fill-fn, arrow-set-fn and exit-fn are stated. | |
5428 ;; | |
106876
ad7558737bc7
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
106860
diff
changeset
|
5429 ;; If your mode matches the continuous mode or the 1-point mode: |
33618 | 5430 ;; |
5431 ;; a. Create a draw-function that draws your shape. Your function | |
5432 ;; must take x and y as arguments. The return value is not | |
5433 ;; used. | |
5434 ;; | |
5435 ;; b. Add your mode to the master table, `artist-mt'. | |
5436 ;; | |
5437 ;; init-fn: x y | |
5438 ;; prep-fill-fn: x y | |
5439 ;; arrow-set-fn: x y | |
5440 ;; exit-fn: x y | |
5441 ;; | |
5442 ;; If your mode matches the 2-point mode: | |
5443 ;; | |
5444 ;; a. Create one draw-function that draws your shape and one | |
5445 ;; undraw-function that undraws it. | |
5446 ;; | |
5447 ;; The draw-function must take x1, y1, x2 and y2 as | |
5448 ;; arguments. It must return a list with three elements: | |
5449 ;; Endpoint1: a vector [x1 y1] | |
5450 ;; Endpoint2: a vector [x2 y2] | |
5451 ;; Shapeinfo: all info necessary for your undraw-function to | |
5452 ;; be able to undraw the shape | |
5453 ;; Use the artist-endpoint-* accessors to create and inspect | |
5454 ;; the endpoints. | |
5455 ;; | |
5456 ;; If applicable, you must be able to draw your shape without | |
5457 ;; borders if the `artist-borderless-shapes' is non-nil. | |
5458 ;; See `artist-draw-rect' for an example. | |
5459 ;; | |
5460 ;; The undraw-function must take one argument: the list created | |
5461 ;; by your draw-function. The return value is not used. | |
5462 ;; | |
5463 ;; b. If you want to provide a fill-function, then create a | |
5464 ;; function that takes 5 arguments: the list created by your | |
5465 ;; draw-function, x1, y1, x2 and y2. The return value is not | |
5466 ;; used. | |
5467 ;; | |
5468 ;; c. Add your mode to the master table, `artist-mt'. | |
5469 ;; | |
5470 ;; init-fn: x1 y1 | |
5471 ;; prep-fill-fn: shape x1 y1 x2 y2 | |
5472 ;; arrow-set-fn: shape x1 y1 x2 y2 | |
5473 ;; exit-fn: shape x1 y1 x2 y2 | |
5474 ;; | |
5475 ;; If your mode matches the poly-point mode: | |
5476 ;; | |
5477 ;; a. Create one draw-function that draws your shape and one | |
5478 ;; undraw-function that undraws it. The draw- and | |
46163 | 5479 ;; undraw-functions are used to draw/undraw a segment of |
33618 | 5480 ;; your poly-point mode between 2 points. The draw- and |
5481 ;; undraw-functions are then really 2-point mode functions. | |
5482 ;; They must take the same arguments and return the same | |
5483 ;; values as those of the 2-point mode. | |
5484 ;; | |
5485 ;; If applicable, you must be able to draw your shape without | |
5486 ;; borders if the `artist-borderless-shapes' is non-nil. | |
5487 ;; See `artist-draw-rect' for an example. | |
5488 ;; | |
5489 ;; b. If you want to provide a fill-function, then create a | |
5490 ;; function that takes 1 argument: a list of points where each | |
5491 ;; point is a vector, [x, y]. | |
5492 ;; | |
5493 ;; c. Add your mode to the master table, `artist-mt'. | |
5494 ;; | |
5495 ;; init-fn: x1 y1 | |
5496 ;; prep-fill-fn: point-list | |
5497 ;; arrow-set-fn: point-list | |
5498 ;; exit-fn: point-list | |
5499 ;; | |
5500 ;; The arrow-set-fn must set the variables `artist-arrow-point-1' | |
5501 ;; and `artist-arrow-point-2'. If your mode does not take arrows, | |
5502 ;; you must set the variables to nil. Use the accessors | |
5503 ;; artist-arrow-point-* to create and inspect arrow-points. | |
5504 ;; | |
5505 ;; | |
5506 ;; 3. If your mode doesn't match any of the categories, you are facing | |
5507 ;; a bit more work, and I cannot be as detailed as above. Here is a | |
5508 ;; brief outline of what you have to do: | |
5509 ;; | |
5510 ;; a. Decide on a name for your type of mode. Let's assume that | |
5511 ;; you decided on `xxx'. Then you should use the draw-how | |
5512 ;; symbol artist-do-xxx. | |
5513 ;; | |
5514 ;; b. Create a function artist-mouse-draw-xxx for drawing with | |
5515 ;; mouse. It should be called from `artist-down-mouse-1'. | |
5516 ;; | |
5517 ;; The all coordinates must be converted from window-relative | |
5518 ;; to buffer relative before saved or handed over to | |
5519 ;; any other function. Converting is done with | |
5520 ;; the function `artist-coord-win-to-buf'. | |
5521 ;; | |
5522 ;; It must take care to the `artist-rubber-banding' variable | |
5523 ;; and perform rubber-banding accordingly. Use the | |
5524 ;; artist-no-rb-* functions if not rubber-banding. | |
5525 ;; | |
5526 ;; If applicable, you must be able to draw your shape without | |
5527 ;; borders if the `artist-borderless-shapes' is non-nil. | |
5528 ;; See `artist-draw-rect' for an example. | |
5529 ;; | |
5530 ;; You must call the init-fn, the prep-fill-fn, arrow-set-fn | |
106894
b3b9ebd930e1
Fix typos in comments.
Juanma Barranquero <lekktu@gmail.com>
parents:
106876
diff
changeset
|
5531 ;; and the exit-fn at the appropriate points. |
33618 | 5532 ;; |
5533 ;; When artist-mouse-draw-xxx ends, the shape for your mode | |
5534 ;; must be completely drawn. | |
5535 ;; | |
5536 ;; c. Create functions for drawing with keys: | |
5537 ;; | |
5538 ;; - artist-key-set-point-xxx for setting a point in the | |
5539 ;; mode, to be called from `artist-key-set-point-common'. | |
5540 ;; | |
106876
ad7558737bc7
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
106860
diff
changeset
|
5541 ;; - artist-key-do-continuously-xxx to be called from |
ad7558737bc7
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
106860
diff
changeset
|
5542 ;; `artist-key-do-continuously-common' whenever the user |
33618 | 5543 ;; moves around. |
5544 ;; | |
5545 ;; As for the artist-mouse-draw-xxx, these two functions must | |
5546 ;; take care to do rubber-banding, borderless shapes and to | |
5547 ;; set arrows. | |
5548 ;; | |
5549 ;; These functions should set the variable `artist-key-shape' | |
5550 ;; to the shape drawn. | |
5551 ;; | |
5552 ;; d. Create artist-key-draw-xxx and artist-key-undraw-xxx for | |
5553 ;; drawing and undrawing. These are needed when the user | |
5554 ;; switches operation to draw another shape of the same type | |
5555 ;; of drawing mode. | |
5556 ;; | |
5557 ;; You should provide these functions. You might think that | |
5558 ;; only you is using your type of mode, so noone will be able | |
5559 ;; to switch to another operation of the same type of mode, | |
5560 ;; but someone else might base a new drawing mode upon your | |
5561 ;; work. | |
5562 ;; | |
5563 ;; You must call the init-fn, the prep-fill-fn, arrow-set-fn | |
106894
b3b9ebd930e1
Fix typos in comments.
Juanma Barranquero <lekktu@gmail.com>
parents:
106876
diff
changeset
|
5564 ;; and the exit-fn at the appropriate points. |
33618 | 5565 ;; |
5566 ;; e. Add your new mode to the master table, `artist-mt'. | |
5567 ;; | |
5568 ;; | |
5569 ;; Happy hacking! Please let me hear if you add any drawing modes! | |
5570 ;; Don't hesitate to ask me any questions. | |
5571 | |
5572 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
87649
diff
changeset
|
5573 ;; arch-tag: 3e63b881-aaaa-4b83-a072-220d4661a8a3 |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37825
diff
changeset
|
5574 ;;; artist.el ends here |