forked from kodamail/gscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
color.gsf
772 lines (686 loc) · 23.3 KB
/
color.gsf
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
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
*
* Help is in the end of this script
*
function color( args )
_version = '0.08r2'
rc = gsfallow( 'on' )
if( args = '' )
help()
return
endif
***** Default value *****
* gxout = ''
gxout = 'shaded'
kind = 'blue->white->red'
alpha = 255
sample = 0
var = 'none'
min = 'none'
max = 'none'
int = 'none'
inttype= 'none'
div = 10
levs = ''
xcbar = 'none'
retflag = 0
_verbose = 0
***** Arguement *****
i = 1
while( 1 )
arg = subwrd( args, i )
i = i + 1;
if( arg = '' ); break; endif
while( 1 )
*** option
if( arg = '-gxout' ) ; gxout=subwrd(args,i) ; i=i+1 ; break ; endif
if( arg = '-kind' ) ; kind=subwrd(args,i) ; i=i+1 ; break ; endif
if( arg = '-alpha' ) ; alpha=subwrd(args,i) ; i=i+1 ; break ; endif
if( arg = '-div' ) ; div=subwrd(args,i) ; i=i+1 ; break ; endif
if( arg = '-sample' ); sample=1 ; break ; endif
if( arg = '-ret' ) ; retflag=1 ; break ; endif
if( arg = '-var' ) ; var=subwrd(args,i) ; i=i+1 ; break ; endif
if( arg = '-verbose' | arg = '-v' ); _verbose=1 ; break ; endif
if( arg = '-levs' )
while( 1 )
arg = subwrd( args, i )
if( valnum(arg) = 0 ) ; break ; endif
levs = levs % ' ' % arg
i = i + 1
endwhile
break
endif
*** int, max, min
if( min != 'none' & max != 'none' & int != 'none' & inttype = 'none' )
inttype = arg
break
endif
if( valnum(arg) != 0 & min != 'none' & max != 'none' & int = 'none' )
int = arg
break
endif
if( valnum(arg) != 0 & min != 'none' & max = 'none' )
max = arg
break
endif
if( valnum(arg) != 0 & min = 'none' )
min = arg
break
endif
if( arg = '-xcbar' )
xcbar = ''
break
endif
say 'syntax error: 'arg
return
endwhile
if( xcbar = '' ) ; break; endif
endwhile
if( xcbar = '' )
start = 0
end = math_strlen( args )
* order of the word
word = 0
* previous character (0:space 1:word)
pre = 0
while( start < end )
start = start + 1
c = substr( args, start, 1 )
if( c != ' ' & pre = 0 )
word = word + 1
pre = 1
else
if( c = ' ' & pre = 1 )
pre = 0
endif
endif
if( word = i ) ; break; endif
if( start = end ) ; start = -1 ; break ; endif
endwhile
if( start < 1 )
xcbar = '1 10 0.5 0.8 -line -edge triangle'
else
xcbar = substr( args, start, end-start+1 )
endif
endif
***** Parameter adjust *****
*** var -> min, max, int
if( var != 'none' & ( min = 'none' | max = 'none' ) )
* get min & max value of the variable
i = 1
while( i <= 4 )
'q dims'
line = sublin( result, i+1 )
name.i = subwrd( line, 1 )
type.i = subwrd( line, 3 )
if( type.i = 'varying' )
min.i = subwrd( line, 11 )
max.i = subwrd( line, 13 )
else
min.i = subwrd( line, 9 )
max.i = subwrd( line, 9 )
endif
i = i + 1
endwhile
j = 1
while( j <= 2 )
head.j = ''
tail.j = ''
i = 1
while( i <= 4 )
if( j = 1 ) ; head.j = 'min( ' % head.j
else ; head.j = 'max( ' % head.j ; endif
tail.j = tail.j % ', ' % name.i % '=' % min.i % ', ' % name.i % '=' max.i % ' )'
i = i + 1
endwhile
'd 'head.j' 'var' 'tail.j
i = 1
while( 1 )
line = sublin( result, i )
word = subwrd( line, 1 )
if( word = 'Result' ) ; break ; endif
if( word = '' ) ; exit ; endif
i = i + 1
endwhile
val = subwrd( line, 4 )
* say val
if( j = 1 ) ; minval = val
else ; maxval = val ; endif
j = j + 1
endwhile
if( minval = maxval )
say 'Constant Field: ' % minval
exit
endif
* determine contour interval following gagx.c, L5066
rdif = ( maxval - minval ) / 10.0
w2 = math_int( math_log10( rdif ) )
w1 = math_pow( 10.0, w2 )
norml = rdif / w1
int = 0.0
if( int = 0.0 & norml >= 1.0 & norml <= 1.5 ) ; int = 1.0 ; endif
if( int = 0.0 & norml > 1.5 & norml <= 2.5 ) ; int = 2.0 ; endif
if( int = 0.0 & norml > 2.5 & norml <= 3.5 ) ; int = 3.0 ; endif
if( int = 0.0 & norml > 3.5 & norml <= 7.5 ) ; int = 5.0 ; endif
if( int = 0.0 ) ; int = 10.0 ; endif
int = int * w1
min = int * math_int( minval / int + 1.0 )
max = int * math_int( maxval / int )
say 'min='min' max='max' int='int
endif
*** min, max -> int
if( min != 'none' & max != 'none' & int = 'none' )
int = ( max - min ) / div
say 'min='min' max='max' int='int
endif
*** special kind
kind = spcol( kind )
***** Parameter check *****
if( ( valnum(min)=0 | valnum(max)=0 | valnum(int)=0 ) & levs='' )
say 'error in colog.gs: cannot determine color levels'
return
endif
if( valnum(min)!=0 & valnum(max)!=0 & valnum(int)!=0 & levs!='' )
say 'error in color.gs: multiple definition of color levels'
return
endif
if( inttype = 'fac' & int <= 1 )
say 'error in colog.gs: interval should be greater than 1 when inttype="fac"'
return
endif
***** Calculate levels *****
if( levs = '' )
*** get levs & colnum
value = min
colnum = 0
levs = ''
while( value <= max )
levs = levs % ' ' % value
if( inttype = 'fac' )
value = value * int
else
value = value + int
endif
colnum = colnum + 1
endwhile
else
*** get colnum
colnum = 0
while( subwrd(levs,colnum+1) != '' )
colnum = colnum + 1
endwhile
endif
*** get cols
i = 1
cols = ''
while( i <= colnum )
cols = cols % ' ' % (i+15)
i = i + 1
endwhile
*** get gxout if necessary, or set gxout
* if( gxout = '' )
* gxout = qgxout( '2d-1expr' )
* gxout = chcase( gxout, 'lower' )
** This seems to be a GrADS's bug when mproj = nps.
* if( gxout = '16' ) ; gxout = 'shaded' ; endif
* else
'set gxout 'gxout
* endif
**** one more color if gxout=shaded etc.
if( gxout = 'grfill' | gxout = 'shaded' | gxout = 'shade1' | gxout = 'shade2' | gxout = 'shade2b' )
colnum = colnum + 1
cols = cols % ' ' % (colnum+15)
endif
***** Set levs/cols *****
'set clevs 'levs
'set ccols 'cols
say 'clevs='levs
say 'ccols='cols
if( retflag = 1 )
ret = 'clevs ' % levs
ret = ret % ' ccols ' % cols
endif
ret = ret % ' rgb '
***** Define colors *****
*** analyze -kind
* max : number of color listed in -kind.
* ncol.i : number of color between col.i and col.(i+1)
* 0 if no color exists between the two colors.
* -1 if not specified (automatic).
i = 1
max = -999
while( max != i-2 )
col.i = getcol( kind,i )
* say i % ': ' % col.i
if( col.i = '' )
max = i - 1
else
* get ncol.i if specified
ncol.i = -1
l = math_strlen( col.i )
if( substr( col.i, l, 1 ) = ')' )
ncol.i = ''
l = l - 1
while( substr( col.i, l, 1 ) != '(' & l > 1 )
ncol.i = substr( col.i, l, 1 ) % ncol.i
l = l - 1
endwhile
if( l = 1 )
ncol.i = -1
else
col.i = substr( col.i, 1, l-2 )
endif
endif
endif
i = i + 1
endwhile
*** define color
max_ncol = max
colnum_ncol = 0
i = 1
while( i <= max-1 )
* say colnum_ncol
if( ncol.i >= 0 )
max_ncol = max_ncol - 1
colnum_ncol = colnum_ncol + ncol.i + 1
endif
i = i + 1
endwhile
* say colnum
i = 1
while( i <= max-1 )
if( ncol.i < 0 )
* ncol.i = (colnum-1) / (max-1.0)-1
ncol.i = (colnum-colnum_ncol-1) / (max_ncol-1.0)-1
endif
* say i % ' ' % ncol.i
i = i + 1
endwhile
enum = 16
i = 1
while( i <= max-1 )
ipp = i + 1
scol = col.i
ecol = col.ipp
snum = enum
enum = snum + ncol.i + 1
if( i = max - 1 ) ; enum = 16 + colnum - 1 ; endif
* say 'i=' % i
* say snum' 'enum
rgb = defcol( snum, scol, enum, ecol, alpha )
ret = ret % rgb % ' '
i = i + 1
endwhile
***** display color sample *****
if( sample = 1 )
i = 0
dx = 11.0 / colnum
while( i < colnum )
'set line 'i+16
'draw recf 'i*dx' 4 'i*dx+dx' 5'
i = i + 1
endwhile
endif
***** run xcbar.gs *****
if( xcbar != 'none' )
levcol = ''
if( levs = '' )
i = 1
value = min
while( i < colnum )
levcol = levcol % ' ' % (i+15) % ' ' % value
if( inttype = 'fac' )
value = value * int
else
value = value + int
endif
i = i + 1
endwhile
levcol = levcol % ' ' % (i+15)
else
i = 1
while( i < colnum )
levcol = levcol % ' ' % (i+15) % ' ' % subwrd(levs,i)
i = i + 1
endwhile
levcol = levcol % ' ' % (i+15)
endif
say ' -> xcbar 'xcbar' -levcol 'levcol
'xcbar 'xcbar' -levcol 'levcol
endif
if( retflag = 1 ) ; return ret ; endif
return
**********************************************
*
* replace special color in -kind
*
* kind : -kind parameter
*
**********************************************
function spcol( kind )
length = math_strlen( kind );
i = 1
kind2 = ''
coltemp = ''
while( i <= length )
c = substr( kind, i, 1 )
c2 = substr( kind, i+1, 1 )
if( c%c2 = '->' | c%c2 = '-(' | c = '>' | c = '(' | c = ')' | i = length )
if( i = length ) ; coltemp = coltemp % c ; c = '' ; endif
if( coltemp = 'bluered' ) ; coltemp = 'blue->white->red' ; endif
if( coltemp = 'rainbow' ) ; coltemp = 'blue->aqua->lime->yellow->red' ; endif
if( coltemp = 'redblue' ) ; coltemp = 'red->white->blue' ; endif
if( coltemp = 'grainbow' ) ; coltemp = '(160,0,200)->(110,0,220)->(30,60,255)->(0,160,255)->(0,200,200)->(0,210,140)->(0,220,0)->(160,230,50)->(230,220,50)->(230,175,45)->(240,130,40)->(250,60,60)->(240,0,130)' ; endif
if( coltemp = 'revgrainbow' ) ; coltemp = '(240,0,130)->(250,60,60)->(240,130,40)->(230,175,45)->(230,220,50)->(160,230,50)->(0,220,0)->(0,210,140)->(0,200,200)->(0,160,255)->(30,60,255)->(110,0,220)->(160,0,200)' ; endif
kind2 = kind2 % coltemp % c
coltemp = ''
else
coltemp = coltemp % c
endif
i = i + 1
endwhile
* say kind2
return ( kind2 )
**********************************************
*
* get color from -kind parameters
*
* kind : -kind parameter
* num : order
*
**********************************************
function getcol( kind, num )
ret = ''
length = math_strlen( kind );
order = 1
i = 1
while( i <= length )
c = substr( kind, i, 1 )
c2 = substr( kind, i+1, 1 )
if( c%c2 = '->' ); order=order+1; i=i+1;
else
if( order = num ); ret=ret%c; endif
endif
i = i + 1
endwhile
return ( ret )
**********************************************
*
* define color
*
* snum : start color number
* scol : start color name
* enum : end color number
* ecol : end color name
*
**********************************************
function defcol( snum, scol, enum, ecol, defalpha )
* say snum'('scol') -> 'enum'('ecol')'
diff = enum - snum
if( diff <= 0.0 )
return
endif
*** set start & end color (rgb)
sr = colornum( scol, 'r' )
sg = colornum( scol, 'g' )
sb = colornum( scol, 'b' )
sa = colornum( scol, 'a' )
if( sa = -1 ) ; sa = defalpha ; endif
er = colornum( ecol, 'r' )
eg = colornum( ecol, 'g' )
eb = colornum( ecol, 'b' )
ea = colornum( ecol, 'a' )
if( ea = -1 ) ; ea = defalpha ; endif
*** set initial color number (integer)
* e.g.,
* i=16 -> 16
* i=16.5 -> 17
* i=16.9 -> 17
*
i = math_int( snum )
if( snum != 16 )
i = i + 1
endif
*** set color
ret = ''
while( i <= enum )
r = math_nint( sr + (er-sr) * (i-snum) / diff )
g = math_nint( sg + (eg-sg) * (i-snum) / diff )
b = math_nint( sb + (eb-sb) * (i-snum) / diff )
a = math_nint( sa + (ea-sa) * (i-snum) / diff )
if( _verbose = 1 ) ; say 'ccol=' % i % ' : (' % r % ',' % g % ',' % b % ')' ; endif
'set rgb 'i' 'r' 'g' 'b' 'a
ret = ret' 'i' 'r' 'g' 'b' 'a
i = i + 1
endwhile
return ret
**********************************************
*
* color -> rgb value table
*
* color : color name
* rgb : "r" or "g" or "b" or "a"
*
* return : rgb value
*
**********************************************
function colornum( color, rgb )
r=-1; g=-1; b=-1; a=-1
*** define rgb value
if( color = 'black') ; r=0 ; g=0 ; b=0 ; endif
if( color = 'navy') ; r=0 ; g=0 ; b=128 ; endif
if( color = 'darkblue') ; r=0 ; g=0 ; b=139 ; endif
if( color = 'mediumblue') ; r=0 ; g=0 ; b=205 ; endif
if( color = 'blue') ; r=0 ; g=0 ; b=255 ; endif
if( color = 'darkgreen') ; r=0 ; g=100 ; b=0 ; endif
if( color = 'green') ; r=0 ; g=128 ; b=0 ; endif
if( color = 'teal') ; r=0 ; g=128 ; b=128 ; endif
if( color = 'darkcyan') ; r=0 ; g=139 ; b=139 ; endif
if( color = 'deepskyblue') ; r=0 ; g=191 ; b=255 ; endif
if( color = 'darkturquoise') ; r=0 ; g=206 ; b=209 ; endif
if( color = 'mediumspringgreen') ; r=0 ; g=250 ; b=154 ; endif
if( color = 'lime') ; r=0 ; g=255 ; b=0 ; endif
if( color = 'springgreen') ; r=0 ; g=255 ; b=127 ; endif
if( color = 'aqua') ; r=0 ; g=255 ; b=255 ; endif
if( color = 'cyan') ; r=0 ; g=255 ; b=255 ; endif
if( color = 'midnightblue') ; r=25 ; g=25 ; b=112 ; endif
if( color = 'dodgerblue') ; r=30 ; g=144 ; b=255 ; endif
if( color = 'lightseagreen') ; r=32 ; g=178 ; b=170 ; endif
if( color = 'forestgreen') ; r=34 ; g=139 ; b=34 ; endif
if( color = 'seagreen') ; r=46 ; g=139 ; b=87 ; endif
if( color = 'darkslategray') ; r=47 ; g=79 ; b=79 ; endif
if( color = 'limegreen') ; r=50 ; g=205 ; b=50 ; endif
if( color = 'mediumseagreen') ; r=60 ; g=179 ; b=113 ; endif
if( color = 'turquoise') ; r=64 ; g=224 ; b=208 ; endif
if( color = 'royalblue') ; r=65 ; g=105 ; b=225 ; endif
if( color = 'steelblue') ; r=70 ; g=130 ; b=180 ; endif
if( color = 'darkslateblue') ; r=72 ; g=61 ; b=139 ; endif
if( color = 'mediumturquoise') ; r=72 ; g=209 ; b=204 ; endif
if( color = 'indigo') ; r=75 ; g=0 ; b=130 ; endif
if( color = 'darkolivegreen') ; r=85 ; g=107 ; b=47 ; endif
if( color = 'cadetblue') ; r=95 ; g=158 ; b=160 ; endif
if( color = 'cornflowerblue') ; r=100 ; g=149 ; b=237 ; endif
if( color = 'mediumaquamarine') ; r=102 ; g=205 ; b=170 ; endif
if( color = 'dimgray') ; r=105 ; g=105 ; b=105 ; endif
if( color = 'slateblue') ; r=106 ; g=90 ; b=205 ; endif
if( color = 'olivedrab') ; r=107 ; g=142 ; b=35 ; endif
if( color = 'slategray') ; r=112 ; g=128 ; b=144 ; endif
if( color = 'lightslategray') ; r=119 ; g=136 ; b=153 ; endif
if( color = 'mediumslateblue') ; r=123 ; g=104 ; b=238 ; endif
if( color = 'lawngreen') ; r=124 ; g=252 ; b=0 ; endif
if( color = 'chartreuse') ; r=127 ; g=255 ; b=0 ; endif
if( color = 'aquamarine') ; r=127 ; g=255 ; b=212 ; endif
if( color = 'maroon') ; r=128 ; g=0 ; b=0 ; endif
if( color = 'purple') ; r=128 ; g=0 ; b=128 ; endif
if( color = 'olive') ; r=128 ; g=128 ; b=0 ; endif
if( color = 'gray') ; r=128 ; g=128 ; b=128 ; endif
if( color = 'skyblue') ; r=135 ; g=206 ; b=235 ; endif
if( color = 'lightskyblue') ; r=135 ; g=206 ; b=250 ; endif
if( color = 'blueviolet') ; r=138 ; g=43 ; b=226 ; endif
if( color = 'darkred') ; r=139 ; g=0 ; b=0 ; endif
if( color = 'darkmagenta') ; r=139 ; g=0 ; b=139 ; endif
if( color = 'saddlebrown') ; r=139 ; g=69 ; b=19 ; endif
if( color = 'darkseagreen') ; r=143 ; g=188 ; b=143 ; endif
if( color = 'lightgreen') ; r=144 ; g=238 ; b=144 ; endif
if( color = 'mediumpurple') ; r=147 ; g=112 ; b=219 ; endif
if( color = 'darkviolet') ; r=148 ; g=0 ; b=211 ; endif
if( color = 'palegreen') ; r=152 ; g=251 ; b=152 ; endif
if( color = 'darkorchid') ; r=153 ; g=50 ; b=204 ; endif
if( color = 'yellowgreen') ; r=154 ; g=205 ; b=50 ; endif
if( color = 'sienna') ; r=160 ; g=82 ; b=45 ; endif
if( color = 'brown') ; r=165 ; g=42 ; b=42 ; endif
if( color = 'darkgray') ; r=169 ; g=169 ; b=169 ; endif
if( color = 'lightblue') ; r=173 ; g=216 ; b=230 ; endif
if( color = 'greenyellow') ; r=173 ; g=255 ; b=47 ; endif
if( color = 'paleturquoise') ; r=175 ; g=238 ; b=238 ; endif
if( color = 'lightsteelblue') ; r=176 ; g=196 ; b=222 ; endif
if( color = 'powderblue') ; r=176 ; g=224 ; b=230 ; endif
if( color = 'firebrick') ; r=178 ; g=34 ; b=34 ; endif
if( color = 'darkgoldenrod') ; r=184 ; g=134 ; b=11 ; endif
if( color = 'mediumorchid') ; r=186 ; g=85 ; b=211 ; endif
if( color = 'rosybrown') ; r=188 ; g=143 ; b=143 ; endif
if( color = 'darkkhaki') ; r=189 ; g=183 ; b=107 ; endif
if( color = 'silver') ; r=192 ; g=192 ; b=192 ; endif
if( color = 'mediumvioletred') ; r=199 ; g=21 ; b=133 ; endif
if( color = 'indianred') ; r=205 ; g=92 ; b=92 ; endif
if( color = 'peru') ; r=205 ; g=133 ; b=63 ; endif
if( color = 'chocolate') ; r=210 ; g=105 ; b=30 ; endif
if( color = 'tan') ; r=210 ; g=180 ; b=140 ; endif
if( color = 'lightgray') ; r=211 ; g=211 ; b=211 ; endif
if( color = 'thistle') ; r=216 ; g=191 ; b=216 ; endif
if( color = 'orchid') ; r=218 ; g=112 ; b=214 ; endif
if( color = 'goldenrod') ; r=218 ; g=165 ; b=32 ; endif
if( color = 'palevioletred') ; r=219 ; g=112 ; b=147 ; endif
if( color = 'crimson') ; r=220 ; g=20 ; b=60 ; endif
if( color = 'gainsboro') ; r=220 ; g=220 ; b=220 ; endif
if( color = 'plum') ; r=221 ; g=160 ; b=221 ; endif
if( color = 'burlywood') ; r=222 ; g=184 ; b=135 ; endif
if( color = 'lightcyan') ; r=224 ; g=255 ; b=255 ; endif
if( color = 'lavender') ; r=230 ; g=230 ; b=250 ; endif
if( color = 'darksalmon') ; r=233 ; g=150 ; b=122 ; endif
if( color = 'violet') ; r=238 ; g=130 ; b=238 ; endif
if( color = 'palegoldenrod') ; r=238 ; g=232 ; b=170 ; endif
if( color = 'lightcoral') ; r=240 ; g=128 ; b=128 ; endif
if( color = 'khaki') ; r=240 ; g=230 ; b=140 ; endif
if( color = 'aliceblue') ; r=240 ; g=248 ; b=255 ; endif
if( color = 'honeydew') ; r=240 ; g=255 ; b=240 ; endif
if( color = 'azure') ; r=240 ; g=255 ; b=255 ; endif
if( color = 'sandybrown') ; r=244 ; g=164 ; b=96 ; endif
if( color = 'wheat') ; r=245 ; g=222 ; b=179 ; endif
if( color = 'beige') ; r=245 ; g=245 ; b=220 ; endif
if( color = 'whitesmoke') ; r=245 ; g=245 ; b=245 ; endif
if( color = 'mintcream') ; r=245 ; g=255 ; b=250 ; endif
if( color = 'ghostwhite') ; r=248 ; g=248 ; b=255 ; endif
if( color = 'salmon') ; r=250 ; g=128 ; b=114 ; endif
if( color = 'antiquewhite') ; r=250 ; g=235 ; b=215 ; endif
if( color = 'linen') ; r=250 ; g=240 ; b=230 ; endif
if( color = 'lightgoldenrodyellow') ; r=250 ; g=250 ; b=210 ; endif
if( color = 'oldlace') ; r=253 ; g=245 ; b=230 ; endif
if( color = 'red') ; r=255 ; g=0 ; b=0 ; endif
if( color = 'fuchsia') ; r=255 ; g=0 ; b=255 ; endif
if( color = 'magenta') ; r=255 ; g=0 ; b=255 ; endif
if( color = 'deeppink') ; r=255 ; g=20 ; b=147 ; endif
if( color = 'orangered') ; r=255 ; g=69 ; b=0 ; endif
if( color = 'tomato') ; r=255 ; g=99 ; b=71 ; endif
if( color = 'hotpink') ; r=255 ; g=105 ; b=180 ; endif
if( color = 'coral') ; r=255 ; g=127 ; b=80 ; endif
if( color = 'darkorange') ; r=255 ; g=140 ; b=0 ; endif
if( color = 'lightsalmon') ; r=255 ; g=160 ; b=122 ; endif
if( color = 'orange') ; r=255 ; g=165 ; b=0 ; endif
if( color = 'lightpink') ; r=255 ; g=182 ; b=193 ; endif
if( color = 'pink') ; r=255 ; g=192 ; b=203 ; endif
if( color = 'gold') ; r=255 ; g=215 ; b=0 ; endif
if( color = 'peachpuff') ; r=255 ; g=218 ; b=185 ; endif
if( color = 'navajowhite') ; r=255 ; g=222 ; b=173 ; endif
if( color = 'moccasin') ; r=255 ; g=228 ; b=181 ; endif
if( color = 'bisque') ; r=255 ; g=228 ; b=196 ; endif
if( color = 'mistyrose') ; r=255 ; g=228 ; b=225 ; endif
if( color = 'blanchedalmond') ; r=255 ; g=235 ; b=205 ; endif
if( color = 'papayawhip') ; r=255 ; g=239 ; b=213 ; endif
if( color = 'lavenderblush') ; r=255 ; g=240 ; b=245 ; endif
if( color = 'seashell') ; r=255 ; g=245 ; b=238 ; endif
if( color = 'cornsilk') ; r=255 ; g=248 ; b=220 ; endif
if( color = 'lemonchiffon') ; r=255 ; g=250 ; b=205 ; endif
if( color = 'floralwhite') ; r=255 ; g=250 ; b=240 ; endif
if( color = 'snow') ; r=255 ; g=250 ; b=250 ; endif
if( color = 'yellow') ; r=255 ; g=255 ; b=0 ; endif
if( color = 'lightyellow') ; r=255 ; g=255 ; b=224 ; endif
if( color = 'ivory') ; r=255 ; g=255 ; b=240 ; endif
if( color = 'white') ; r=255 ; g=255 ; b=255 ; endif
*** direct rgb specification
length = math_strlen( color )
first = substr( color, 1, 1 )
if( first = '(' )
i = 2
k = 1
rgb.1 = ''
while( i <= length )
c = substr( color, i, 1 )
if( c = ',' | c = ')' )
k = k + 1
rgb.k = ''
else
rgb.k = rgb.k % c
endif
i = i + 1
endwhile
r = rgb.1
g = rgb.2
b = rgb.3
a = rgb.4
endif
*** return
if( rgb = 'r' ); return( r ); endif
if( rgb = 'g' ); return( g ); endif
if( rgb = 'b' ); return( b ); endif
if( valnum(a) != 1 ) ; a = -1 ; endif
if( rgb = 'a' ); return( a ); endif
return
*
* help
*
function help()
say ' Name:'
say ' color '_version' - Set color table for drawing.'
say ' '
say ' Usage:'
say ' color'
say ' (min max [int [inttype]] | -levs lev1 lev2 ... | -var var-name)'
say ' [-div value]'
say ' [-gxout gxout-name]'
say ' [-kind string] [-alpha value]'
say ' [-sample] [-xcbar [xcbar-args]]'
say ' [-ret]'
say ' [-verbose | -v]'
say ''
say ' min max [int [inttype]]'
say ' : Minimum, maximum, interval of values and type of interval.'
say ' inttype may be: "linear" (default), "fac".'
say ' -levs lev1 lev2 ... '
say ' : Levels of variable value.'
say ' -var var-name : Name of variable to draw'
say ' -div div : When "int" is not specified,'
say ' [min:max] is divided by "div" (default: 10)'
say ' -gxout gxout-name: Type of gxout'
say ' -kind kind : One color list name, '
say ' or color list name, color name, and/or rgb(a) values connected with "->".'
say ' e.g., blue->white->red, bluered,'
say ' (200,100,100)->red->(0.0,0)'
say ' You can specify number of color '
say ' between the two colors using -(n)-> :'
say ' e.g. white-(0)->blue->red'
say ' -alpha : Transparancy (0: transparent, 255: non-transparent)'
say ' -sample : Draw color table'
say ' -xcbar xcbar-args: Run xcbar.gs to draw color bar.'
say ' xcbar.gs is necessary.'
say ' -ret : Pretend to be script function.'
say ' -verbose : Verbose mode'
say ''
say ' Note:'
say ' [arg-name] : specify if needed'
say ' (arg1 | arg2) : arg1 or arg2 must be specified'
say ' This version is compatible with color.gs Ver 0.01 and after except gxout default value.'
say ''
say ' Copyright (C) 2005-2022 Chihiro Kodama'
say ' Distributed under GNU GPL (http://www.gnu.org/licenses/gpl.html)'
say ''
return