summaryrefslogtreecommitdiff
path: root/ipl/gprogs/wifs2pdb.icn
blob: a3dc8960c8ed4685df7d3e2116b7ff23a81606e9 (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
############################################################################
#
#	File:     wifs2pdb.icn
#
#	Subject:  Program to create palette database from WIFs
#
#	Author:   Ralph E. Griswold
#
#	Date:     April 15, 2000
#
############################################################################
#
#  This file is in the public domain.
#
############################################################################
#
#  This is a crude version; it does not bother with actually parsing WIF
#  files and it assumes a color range of 2^16.
#
############################################################################
#
#  Links:  basename, palettes, xcode
#
############################################################################

link basename
link palettes
link xcode

global PDB_

procedure main(args)
   local file, wifname, input, clist, line, range, i

   every file := !args do {
      wifname := basename(file, ".wif")
      input := open(file) | {
         write(&errout, "*** cannot open ", image(file))
         next
         }
      clist := []
      range := &null
      while line := trim(map(read(input))) do {
         if line == "[color table]" then {
            while line := trim(read(input)) do {
               if *line = 0 then break
               line ?:= {
                  if ="[" then break
                  tab(upto('=') + 1)
                  tab(0)
                  }
               put(clist, line)
               }
            }
         else if line == "[color palette]" then {
            while line := trim(map(read(input))) do {
               if *line = 0 then break
               line ? {
                  if ="[" then break
                  else if ="range=" then {
                     tab(upto(',') + 1)
                     range := tab(0) + 1
                     break
                     }
                  }
               }
            }
         }
      close(input)

      if (\range ~= 65536) then {		# adjust color values
         every i := 1 to *clist do
            clist[i] := color_range(clist[i], range) | {
               write(&errout, "*** bad color specification")
               break break
               }
         }
      makepalette(wifname, clist) |
         write(&errout, "*** cannot make palette for ", image(wifname))
       }

   xencode(PDB_, &output)

end