summaryrefslogtreecommitdiff
path: root/ipl/gprogs/painterc.icn
blob: e443a7ffefae06788836067b2a791c2c5f1f8aed (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
############################################################################
#
#	File:     painterc.icn
#
#	Subject:  Program to convert Painter color sets to Icon colors
#
#	Author:   Ralph E. Griswold
#
#	Date:     January 6, 1995
#
############################################################################
#
#   This file is in the public domain.
#
############################################################################
#
#  This program converts color sets from Painter 3 to lists of Icon
#  colors.
#
#  The lists are saved in files with the base name of the color set and
#  the suffix ".clr".
#
############################################################################
#
#  Links:  basename
#
############################################################################

link basename

procedure main(args)
   local line, file, name, input, output

   every file := !args do {
      input := open(file) | {
         write(&errout, "*** cannot open ", file)
         next
         }
      name := basename(file, ".txt")
      output := open(name || ".clr", "w") | {
         write(&errout, "*** cannot open ", name, ".clr")
         close(input)
         next
         }
      while line := map(read(input)) do {
         line ? {
            ="r:" | next
            tab(upto(&digits))
            writes(output, 256 * tab(many(&digits)), ",")
            tab(find("g:") + 2) | {
               write(&errout, "*** invalid data in ", file)
               write(&errout, line)
               next
               }
            tab(upto(&digits))
            writes(output, 256 * tab(many(&digits)), ",")
            tab(find("b:") + 2) | {
               write(&errout, "*** invalid data in ", file)
               write(&errout, line)
               next
               }
            tab(upto(&digits))
            writes(output, 256 * tab(many(&digits)))
            tab(many(' \t'))
            if not pos(0) then write(output, "\t", tab(0))
            else write(output)
            }
         }
     close(input)
     close(output)
     }

end