1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
|
############################################################################
#
# File: selectle.icn
#
# Subject: Program to select tile from an image
#
# Author: Ralph E. Griswold
#
# Date: May 2, 2001
#
############################################################################
#
# This file is in the public domain.
#
############################################################################
#
# This program is designed to assist in locating areas within an image
# that, when tiled, produce a desired effect. For example, a background
# may consist of a tiled image; this program can be used to find the
# smallest tile for the repeat (by "eye-balling").
#
# Another interesting use of this program is to produce striped patterns by
# selecting a row or column of an image to get a tile that is one character
# wide. Sometimes a few rows or columns give an interesting "fabric"
# effect.
#
# The following features are provided through keyboard shortcuts,
# the File menu, and in some cases, on-board buttons:
#
# @D user-drawn selection rectangle
# @O open new source image
# @P pick a source image from GIF files in the current directory
# @Q quit application
# @S save current selection as an image
# @T tile selection into source image window
#
# Buttons provide for setting and adjusting the selection in various
# ways.
#
# In the drawing mode, the mouse can be used to make a selection by
# dragging from one corner to another. When the mouse is released,
# the action depends on the user keypress:
#
# "r" return the selection
# "n" try again
# "q" exit drawing mode
#
# Typing "q" is the only way to get out of the drawing mode. It can be
# done whether or not there is a selection.
#
# Notes:
#
# The selection starts as a single pixel in the upper-left corner.
# The repeat window can be resized by the user.
#
############################################################################
#
# Features to add/improve:
#
# show current selection
# file-system navigation
# chained selection dialogs for large numbers of files
# *or* scrolling line dialog
# add flips, rotations, and other transformations (using external
# utilities)
# allow images of types other than GIF
#
# Bugs:
# width and height setting should take into account the current
# origin
# edit in system menu is bogus (bug is in interact.icn)
#
#
############################################################################
#
# Requires: Version 9 graphics, UNIX (for "pick" feature)
#
############################################################################
#
# Links: grecords, interact, io, select, tile
#
############################################################################
link grecords
link interact
link io
link select
link tile
# To do: alphabetize the following globals
global pattern # repeat window
global source # source window hidden
global screen # source window visible
global vidgets # table of interface vidgets
global root # root vidget
global controls
global text # label with respect to which information is written
global posx # x position relative to interface window
global posy # y position relative to repeat window
global wmax # maximum width of source image
global hmax # maximum height of source image
global auto # auto-save toggle
global prefix # auto-save prefix
global count # auto-save count
global name # image name
global draw # draw vidget
global current # current selection
$define PosX "posx=10"
$define PosY "posy=10"
procedure main()
local atts
atts := ui_atts()
# The interface window is opened with a hidden canvas so that it
# can be made the active window later by making it visible.
put(atts, "canvas=hidden", PosX, PosY)
controls := (WOpen ! atts) | stop("*** cannot open window")
vidgets := ui()
init()
GetEvents(root, , shortcuts)
end
# Auto-save callback toggle.
procedure auto_cb(vidget, value)
auto := value
if \auto then {
if OpenDialog("Specify prefix for auto-saving:") == "Cancel" then fail
prefix := dialog_value
count := -1 # initial count less 1
}
return
end
# Callback that handles all the buttons that change x, y, w, and h.
procedure change_cb(vidget)
# Cute code alert. The selected reversible assignment is performed
# and passed to check(). It checks the resulting selection rectangle
# and fails if it's not valid. That failure causes the reversible
# assignment to be undone and the expression fails, leaving the
# selection as it was.
check(
case vidget.s of {
"h +": current.h <- current.h + 1
"h -": current.h <- current.h - 1
"w +": current.w <- current.w + 1
"w -": current.w <- current.w - 1
"w + h +": current.h <- current.h + 1 & current.w <- current.w + 1
"w - h -": current.h <- current.h - 1 & current.w <- current.w - 1
"h max": current.h <- hmax
"w max": current.w <- wmax
"w h max": current.h <- hmax & current.w <- wmax
"x +": current.x <- current.x + 1
"x -": current.x <- current.x - 1
"y +": current.y <- current.y + 1
"y -": current.y <- current.y - 1
"x + y +": current.x <- current.x + 1 & current.y <- current.y + 1
"y - x -": current.y <- current.y - 1 & current.x <- current.x - 1
"x 1/2": current.x <- wmax / 2
"y 1/2": current.y <- hmax / 2
"x y 1/2": current.x <- wmax / 2 & current.y <- hmax / 2
}
) | fail
show()
return
end
# Check validity of selection.
procedure check()
if (0 <= current.h <= hmax) &
(0 <= current.w <= wmax) &
(0 <= current.x <= hmax) &
(0 <= current.y <= wmax)
then return else {
Alert()
fail
}
end
# Copy hidden source window to a visible window.
$define Margin 20
procedure copy_source(label)
screen := WOpen("size=" || WAttrib(source, "width") || "," ||
WAttrib(source, "height"), "posx=" || posx, "posy=" || posy,
"label=" || label) | ExitNotice("Cannot open image window")
CopyArea(source, screen)
expose(controls)
wmax := WAttrib(source, "width")
hmax := WAttrib(source, "height")
WAttrib(pattern, "width=" || (WAttrib(screen, "width") + Margin))
WAttrib(pattern, "height=" || (WAttrib(screen, "height") + Margin))
reset_cb()
return
end
# Enable user-drawn selection.
procedure draw_cb(vidget, value)
local sel
if /value then return
if /source then {
Notice("No source image.")
SetVidget(draw, &null)
fail
}
expose(screen)
while current := select(screen) do
show()
SetVidget(draw, &null)
expose(controls)
return
end
# File menu callback.
procedure file_cb(vidget, value)
case value[1] of {
"open @O": get_image()
"pick @P": pick()
"quit @Q": exit()
"save @S": snap()
"tile @T": tile_selection()
}
return
end
# Utility procedure to get new source image.
procedure get_image()
WClose(\source)
WClose(\screen)
repeat {
(OpenDialog("Open image:") == "Okay") | fail
source := WOpen("canvas=hidden", "image=" || dialog_value) | {
Notice("Can't open " || dialog_value || ".")
next
}
copy_source(dialog_value)
wmax := WAttrib(source, "width")
hmax := WAttrib(source, "height")
break
}
return
end
# These values are for Motif; they may need to be changed for other
# window managers.
$define Offset1 32
$define Offset2 82
# Initialize the program
$define MinSize 600
procedure init()
local iheight
current := rect(0, 0, 1, 1)
hmax := wmax := 0
posx := WAttrib("width") + Offset1
iheight := WAttrib("height")
pattern := WOpen("label=repeat", "resize=on", "size=" || iheight ||
"," || iheight, "posx=" || posx, PosY) |
stop("*** cannot open window for repeat ***")
posy := WAttrib(pattern, "height") + Offset2
root := vidgets["root"]
text := vidgets["text"]
draw := vidgets["draw"]
WAttrib("canvas=normal")
auto := &null
return
end
# Utility procedure to let user pick an image file in the current directory.
procedure pick()
local plist, ls
plist := filelist("*.gif *.GIF") |
return FailNotice("Pick not supported on this platform")
if *plist = 0 then return FailNotice("No files found.")
repeat {
if SelectDialog("Select image file:", plist, plist[1]) == "Cancel"
then fail
WClose(\source)
WClose(\screen)
source := WOpen("canvas=hidden", "image=" || dialog_value) | {
Notice("Cannot open " || dialog_value || ".")
next
}
copy_source(dialog_value)
break
}
return
end
# Callback to terminate program execution.
procedure quit_cb()
exit()
end
# Callback to reset x, y, w, and h to initial values.
procedure reset_cb()
current := rect(0, 0, 1, 1)
show()
return
end
# Callback procedure to save the current selection as an image file.
procedure save_cb()
snap()
end
# Callback procedure to allow use of standard tile sizes.
procedure select_cb(vidget, value)
check(current.w := current.h := case value of {
" 4 x 4": 4
" 8 x 8": 8
" 16 x 16": 16
" 32 x 32": 32
" 64 x 64": 64
" 72 x 72": 72
" 96 x 96": 96
" 100 x 100": 100
" 128 x 128": 128
" 256 x 256": 256
" 400 x 400": 400
" 512 x 512": 512
}) | fail
show()
return
end
# Callback to allow setting of specific selection rectangle values.
procedure set_cb()
repeat {
if TextDialog("Set values:",
["x", "y", "w", "h"],
[ current.x,
current.y,
current.w,
current.h
]
) == "Cancel" then fail
check(
current.x <- integer(dialog_value[1]) &
current.y <- integer(dialog_value[2]) &
current.w <- integer(dialog_value[3]) &
current.h <- integer(dialog_value[4])
) | {
Notice("Invalid value")
next
}
show()
return
}
end
# Keyboard shortcuts.
procedure shortcuts(e)
if &meta then
case map(e) of { # fold case
"d": SetVidget(draw, 1)
"o": get_image()
"p": pick()
"q": exit()
"s": snap()
"t": tile_selection()
}
return
end
# Procedure to handle all that goes with a new selection.
# These constants are ad hoc.
$define Width 200
$define Height 30
$define YOff 10
procedure show()
static sx, sy
initial {
sx := text.ax
sy := text.ay
}
if /source then return FailNotice("No source image.")
tile(source, pattern, current.x, current.y, current.w, current.h)
if \auto then {
name := prefix || right(count +:= 1, 3, "0") || ".gif"
WriteImage(source, name, current.x, current.y, current.w, current.h)
}
EraseArea(sx, sy, Width, Height)
DrawString(sx, sy + YOff, "x=" || current.x || " y=" || current.y ||
" w=" || current.w || " h=" || current.h)
if \auto then DrawString(sx, sy + 30, "last auto-save: " || name)
return
end
# Utility procedure to save current selection.
procedure snap()
return snapshot(\source, current.x, current.y, current.w, current.h) |
FailNotice("No source image.")
end
# Callback for System menu.
procedure system_cb(vidget, value)
case value[1] of {
"edit": edit_file()
"execute": execute()
}
return
end
procedure tile_selection()
tile(pattern, screen, current.x, current.y, current.w, current.h)
CopyArea(screen, source)
return
end
#===<<vib:begin>>=== modify using vib; do not remove this marker line
procedure ui_atts()
return ["size=397,360", "bg=gray-white"]
end
procedure ui(win, cbk)
return vsetup(win, cbk,
[":Sizer:::0,0,397,360:",],
["auto save:Button:regular:1:12,74,70,20:auto save",auto_cb],
["draw:Button:regular:1:20,172,50,20:draw",draw_cb],
["file:Menu:pull::0,1,36,21:File",file_cb,
["open @O","pick @P","save @S ","tile @T","quit @Q"]],
["hmax:Button:regular::205,54,56,20:h max",change_cb],
["hminus:Button:regular::169,106,35,20:h -",change_cb],
["hplus:Button:regular::168,80,35,20:h +",change_cb],
["line1:Line:::0,25,400,25:",],
["quit:Button:regular::19,311,50,20:quit",quit_cb],
["reset_cb:Button:regular::20,116,50,20:reset",reset_cb],
["save:Button:regular::19,40,50,20:save",save_cb],
["select:Choice::12:285,29,99,252:",select_cb,
[" 4 x 4"," 8 x 8"," 16 x 16"," 32 x 32"," 64 x 64",
" 72 x 72"," 96 x 96"," 100 x 100"," 128 x 128"," 256 x 256",
" 400 x 400"," 512 x 512"]],
["set:Button:regular::20,143,50,20:set",set_cb],
["system:Menu:pull::37,1,50,21:System",system_cb,
["edit","execute"]],
["text:Button:regularno::112,290,154,20:current specification",],
["whmax:Button:regular::206,80,56,20:w h max",change_cb],
["whminus:Button:regular::108,54,56,20:w - h -",change_cb],
["whplus:Button:regular::108,30,56,20:w + h +",change_cb],
["wmax:Button:regular::206,29,56,20:w max",change_cb],
["wminus:Button:regular::168,54,35,20:w -",change_cb],
["wplus:Button:regular::168,29,35,20:w +",change_cb],
["xhalf:Button:regular::213,153,56,20:x 1/2",change_cb],
["xminus:Button:regular::173,180,35,20:x -",change_cb],
["xplus:Button:regular::172,153,35,20:x +",change_cb],
["xyhalf:Button:regular::212,206,56,20:x y 1/2",change_cb],
["xyminus:Button:regular::109,181,56,20:x - y +",change_cb],
["xyplus:Button:regular::110,151,56,20:x + y +",change_cb],
["y minus:Button:regular::172,231,35,20:y -",change_cb],
["y plus:Button:regular::173,206,35,20:y +",change_cb],
["yhalf:Button:regular::212,177,56,20:y 1/2",change_cb],
)
end
#===<<vib:end>>=== end of section maintained by vib
|