summaryrefslogtreecommitdiff
path: root/ipl/gpacks/carpets/carplay.icn
blob: 34fe2ab33e8e4bc36e89557b44dceec3ec8137cc (plain)
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
############################################################################
#
#	File:     carplay.icn
#
#	Subject:  Program to create "carpets"
#
#	Author:   Ralph E. Griswold
#
#	Date:     January 11, 1998
#
############################################################################
#
#  This is an experimental program under development to produce carpets
#  as specificed in the include file, carpincl.icn, which is produced by
#  carport.icn.
#
############################################################################
#
# Requires:  Version 9 graphics and large integers
#
############################################################################
#
#  Links:  carputil, lists, matrix, mirror, options, wopen 
#
#  Note:   The include file may contain link declarations.
#
############################################################################

link carputil
link lists
link matrix
link mirror
link options
link wopen

$include "carpincl.icn"

$ifdef Randomize
link random
$endif

$ifdef Scramble
link random
$endif

$ifdef Background
$undef Hidden
$undef Save_carpet
$undef Dialogs
$undef Save_mirror
$define Hidden
$define Save_carpet
$endif

$ifdef Dialogs
link interact
$undef Save_carpet
$undef Save_mirror
$endif

global array
global cmod
global colors
global height
global modulus
global width

procedure main()
   local mcarpet

$ifdef Randomize
   randomize()
$endif

#  The carpet-generation process is now done by two procedures, the first to
#  initialize the edges and the second to actually create the carpet.  This
#  has been done to allow possible extensions.

   init()

   weave()

$ifdef Mirror
   mcarpet := mirror(&window)		# produced mirrored image
$endif

$ifndef Hidden
$ifdef Mirror
   WAttrib(mcarpet, "canvas=normal")	# make the mirrored image visible
   Raise()
$endif
$endif

$ifdef Dialogs
   Bg("light gray")			# reset colors for dialogs
   Fg("black")
   repeat {				# provide user dialog
      case TextDialog("Save images?", , , ,
         ["Quit", "Save Image", "Save Mirrored"]) of {
            "Quit"          : exit()
            "Save Image"    : snapshot()
            "Save Mirrored" : snapshot()
         }
      }
$else

$ifdef Save_carpet
   WriteImage(Name || ".gif")
$ifdef Save_mirror
   WriteImage(Name || "_m.gif")
$endif
$endif

$ifndef Hidden
   repeat case Event() of {		# process low-level user events
      "q" :  exit()
      "s" :  WriteImage(Name || ".gif")
      "m" :  WriteImage(Name || "_m.gif")
      }
$endif
$endif


end

# Initialize the carpet

procedure init()
   local m, n, v, canvas

   colors := carpcolr(Colors) | {

$ifdef Dialogs
      Notice("Unrecognized color specification.", "Palette c2 substituted.")
#else
      write(&errout, "Unrecognized color specification.", "\n",
         "Palette c2 substituted.")
$endif

      colors := colrplte("c2")
      }

   cmod := *colors

   # The definitions in the following expressions may not be constants.
   # Assignments are made to avoid expressions being evaluated multiple
   # times.  This not only prevents unnecessary evaluation later, but it
   # also prevents values from changing while the carpet is being
   # generated.

   modulus := Modulus
   width := Width
   height := Height

   array := create_matrix(height, width, 0)

$ifdef Hidden
   canvas := "canvas=hidden"
$else
   canvas := "canvas=normal"
$endif

   WOpen(canvas, "size=" || width || "," || height) | {

$ifdef Dialogs
      ExitNotice("Cannot open window for carpet.")
$else
      stop("Cannot open window for carpet.")
$endif

      }

   # Initialize the edges.

   m := 0
   every v := (Left \ height) do {
      array[m +:= 1, 1] := v % modulus
      }

   n := 0
   every v := (Top \ width) do {
      array[1, n +:= 1] := v % modulus
      }

   return

end

$ifndef Twopass		# do modulus reduction on the fly.

# Create the carpet.

procedure weave()
   local m, n

   every m := 1 to height do {
      if *Pending() > 0 then {
         if Event() === "q" then exit()
         }
      every n := 1 to width do {

$ifdef Wrap
         array[m, n] := neighbor(
            array[(m - 1) | -1, (n - 1) | -1],
            array[(m - 1) | -1, n],
            array[m, (n - 1) | -1]
            ) % modulus
$else
         array[m, n] := neighbor(
            array[m, n - 1],
            array[m - 1, n - 1],
            array[m - 1, n],
            ) % modulus
$endif

         Fg(colors[(abs(integer(array[m, n])) % cmod) + 1])
         DrawPoint(n - 1, m - 1)
         }
      }

   return

end

$else				# do modulus reduction on a second pass

#  In this version, the computations are made in plain arithmethic and
#  then modulo-reduced in a second pass.  The results are the same as
#  long as all operations have satisfy the relationship (i op j) % n =
#  (i % n) op (j % n).  This is true for addition, subtraction, and
#  multiplication.

procedure weave()
   local m, n

   every m := 1 to height do {
      if *Pending() > 0 then {
         if Event() === "q" then exit()
            }
         }
      every n := 1 to width do {

$ifdef Wrap
         array[m, n] := neighbor(
            array[(m - 1) | -1, (n - 1) | -1],
            array[(m - 1) | -1, n],
            array[m, (n - 1) | -1]
            )
         }
      }
$else
         array[m, n] := neighbor(
            array[m, n - 1],
            array[m - 1, n - 1],
            array[m - 1, n],
            )
         }
      }

$endif

   every m := 1 to height do {
      if *Pending() > 0 then {
         if Event() === "q" then exit()
            }
         }
     every n := 1 to width do {
         Fg(colors[(abs(integer(array[m, n] % modulus)) % cmod) + 1])
         DrawPoint(n - 1, m - 1)
         }
      }

   return

end

$endif

procedure neighbor(n, nw, w)

   return Neighbors

end