-
Notifications
You must be signed in to change notification settings - Fork 21
/
illustrate.f
executable file
·956 lines (886 loc) · 28.9 KB
/
illustrate.f
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
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
C ******************************
C I L L U S T R A T E
C Biomolecular Illustration
C ******************************
C copyright 2019 David S Goodsell
C
C Licensed under the Apache License, Version 2.0 (the "License");
C you may not use this file except in compliance with the License.
C You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
C Unless required by applicable law or agreed to in writing, software
C distributed under the License is distributed on an "AS IS" BASIS,
C WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
C See the License for the specific language governing permissions and
C limitations under the License
C
C This work was supported by Damon Runyon-Walter Winchell Cancer Research Fund Fellowship DRG 972,
C the US National Institutes of Health R01-GM120604 and the kind support of the RCSB Protein Data Bank.
C
C--------------------------------------------------------------------
C
C DS Goodsell & AJ Olson (1992) "Molecular Illustration in Black and White" JMolGraphics 10, 235-240.
C April 2019 -- Simplified and released with only non-photorealistic rendering
C
C--------------------------------------------------------------------
C compile: gfortran illustrate.f -o illustrate
C run: illustrate < command_file
C
C Command file is read from unit 5
C Command file has command cards, followed by parameter cards
C Idiosyncracies (warning, postdoc code):
C *** must issue command cards in this order
C *** any number of rotation cards may be added, and they are concatenated when added
C this means they are effectively applied last to first
C so if you're progressively refining a position, add new rotations to the top of the list
C *** origin at upper left, +x down, +y left to right, +z towards viewer, molecules clipped at z=0
C
C read #READ command
C 2hhb.pdb #PDB format coordinate file
C HETATM-----HOH-- 0,9999, 0.5,0.5,0.5, 0.0 #selection/rendering cards
C ATOM -H-------- 0,9999, 0.5,0.5,0.5, 0.0
C ATOM H--------- 0,9999, 0.5,0.5,0.5, 0.0
C ATOM -C-------A 0,9999, 1.0,0.6,0.6, 1.6
C ATOM -S-------A 0,9999, 1.0,0.5,0.5, 1.8
C ATOM ---------A 0,9999, 1.0,0.5,0.5, 1.5
C ATOM -C-------C 0,9999, 1.0,0.6,0.6, 1.6
C ATOM -S-------C 0,9999, 1.0,0.5,0.5, 1.8
C ATOM ---------C 0,9999, 1.0,0.5,0.5, 1.5
C ATOM -C-------- 0,9999, 1.0,0.8,0.6, 1.6
C ATOM -S-------- 0,9999, 1.0,0.7,0.5, 1.8
C ATOM ---------- 0,9999, 1.0,0.7,0.5, 1.5
C HETATMFE---HEM-- 0,9999, 1.0,0.8,0.0, 1.8
C HETATM-C---HEM-- 0,9999, 1.0,0.3,0.3, 1.6
C HETATM-----HEM-- 0,9999, 1.0,0.1,0.1, 1.5
C END #end of READ commad
C center #CENTER command
C auto #use autocentering (typical)
C trans #TRANSLATION command
C 0.,0.,0. #x,y,z for translation
C scale #SCALE command
C 12.0 #scale value (pixels/Angstrom)
C zrot #ROTATION command
C 90. #rotation angle (deg)
C wor #WORLD rendering parameter
C 1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0 #rgb background, rgb fog, fractional opacity of fog front & back
C 1,0.0023,2.0,1.0,0.2 #soft shadow parameters
C -30,-30 #image size, negative for autosizing with padding
C illustrate #ILLUSTRATION command
C 3.0,10.0,4,0.0,5.0 #contour outlines
C 3.0,10.0 #subunit outlines
C 3.0,8.0,6000. #residue outlines
C calculate #CALCULATE command
C 2hhb.pnm #image file name in ppm format
C
C--------------------------------------------------------------------
c ***** OUTPUT SCAN LINE *****
integer*4 scanline(9000)
c ***** FRAME BUFFER WITH COLORS *****
real*4 pix(-10:3008,-10:3008,4)
c ***** FRAME BUFFER CONTAINING THE z HEIGHT *****
real*4 zpix(-10:3008,-10:3008)
c ***** FRAME BUFFER CONTAINING THE ATOM NUMBER *****
integer*4 atom(-10:3008,-10:3008)
integer*4 bio(-10:3008,-10:3008)
integer*4 n,ia
c ***** SHADING MAPS FOR THE EIGHT ATOM TYPES *****
real*4 sphdat(0:32000,3)
integer*4 numpix
c ***** PHONG SHADING PARAMETERS ******
real*4 colortype(0:1000,3)
real*4 rback(3),rfog(3)
c ***** ATOMIC INFORMATION *****
real*4 coord(3,350000)
integer*4 type(350000),res(0:350000),su(0:350000)
real*4 radtype(1000)
character chain,chainlast
c ***** transformation matrices *****
real*4 matrixin(4,4),rm(4,4)
c ***** biological unit stuff *****
real*4 biomat(4,4,500)
integer*4 nbiochain,nbiomat
character biochain(500)
c ***** STUFF FOR OUTLINES *****
real*4 l_opacity,l_opacity_ave,g_opacity,opacity
real*4 l(-1:1,-1:1),g
real*4 l_low,l_high,g_low,g_high
real*4 l_diff_min, l_diff_max
c ***** Conical shadows *****
real*4 rtable(-51:51,-51:51),coneangle,pcone,rcone
c ***** ETC. *****
real*4 x,y,z,rx,ry,rz,xp,yp,zp,d
real*4 xn,yn,zn,ci,xs,xy,xz,cs
character*3 comcode(10),command
character*80 filename,inputfile
integer*4 ixsize,iysize, idepth
integer*4 ix,iy,iz
integer illustrationflag
c ***** stuff for reading atoms
integer*4 resrange(2,1000),inptype(1000),inpsu(1000)
character*6 atomdescriptor(1000)
character*10 descriptor(1000)
character*80 instring
c--------------------------------------------------------------------
c ***** Initialize a few things *****
c--------------------------------------------------------------------
rscale=1.
illustrationflag=0
data comcode/'rea','tra','xro','yro','zro','sca','cen',
& 'wor','cal','ill'/
call clearmatrix(rm)
l_low=1.
l_high=10.
g_low=350000.
g_high=21000.
xshmax=4000
yshmax=4000
su(0)=9999
res(0)=9999
xtran=0.
ytran=0.
ztran=0.
l_diff_max=50.
l_diff_min=1.
ixsize=0
iysize=0
do i=1,3
do j=1,4
do k=1,500
biomat(i,j,k)=0.
if (i.eq.j) biomat(i,j,k)=1.
enddo
enddo
enddo
c ********************* READ CONTROL CARDS ***************************
10 read (5,101,end=999) command
icommand=10
do icount=1,10
100 if (command.eq.comcode(icount)) icommand=icount
enddo
goto (1,2,3,4,5,6,7,8,111,12),icommand
write (6,102) ' ***** invalid control card read: ',
& command, ' ***** '
goto 10
101 format (a3)
102 format (a35,a3,a7)
c--------------------------------------------------------------------
c *** read and classify atoms ***
c
1 continue
read(5,113) inputfile
open(1,file=inputfile,form='formatted',status='old')
c --- read atom descriptors ---
c param: atom descriptor cards
c ATOM -CA--ALA-A 0,9999,0.5,0.5,0.5,1.6
c ^^^^^^ ATOM or HETATM, matched with columns 1-6 of PDB record
c ^^^^^^^^^^ compared to columns 13-22 of PDB record
c "-" is a wildcard
c ^^^^^^ residue number range
c ^^^^^^^^^^^ r,g,b (0.-1.)
c ^^^ radius (Angstrom)
c cards are read in order, and if there is a match, the atom is assigned that type
c cards are read until one is found without "ATOM " or "HETATM"
c
ndes=0
c --- default 50% gray ---
do i=0,1000
do j=1,3
colortype(i,j)=.5
enddo
enddo
7020 read(5,7100) instring
if (instring(1:3).eq.'END') goto 7030
ndes=ndes+1
read(instring,21) atomdescriptor(ndes),descriptor(ndes)
read(instring(18:80),*) (resrange(i,ndes),i=1,2),
& rr,rg,rb,rad
colortype(ndes,1)=rr
colortype(ndes,2)=rg
colortype(ndes,3)=rb
radtype(ndes)=rad
goto 7020
7030 write(6,*) ' atom descriptors: ',ndes
do i=1,ndes
write(6,*) "type, color, radius ",i,(colortype(i,j),j=1,3),
& radtype(i)
enddo
21 format(a6,a10)
c --- read atoms and classify ---
n=0
nsu=0
chain=" "
nbiomat=0
nbiochain=0
7040 read(1,7100,end=7009) instring
if (instring(1:5).eq."MODEL") nsu=nsu+1
if (instring(12:25).eq."BIOMOLECULE: 1") then
8010 read(1,7100) instring
if ((instring(1:10).eq."REMARK 350").and.
& (instring(35:40).eq."CHAINS")) then
ich=43
8020 if (instring(ich:ich).ne." ") then
nbiochain=nbiochain+1
biochain(nbiochain)=instring(ich:ich)
ich=ich+3
goto 8020
else
continue
endif
write(6,*) "Chains in Biological Assembly"
do i=1,nbiochain
write(6,*) i,biochain(i)
enddo
write(6,*)
goto 8010
endif
if (instring(14:19).eq."BIOMT1") then
nbiomat=nbiomat+1
read(instring(20:80),*) ib,(biomat(1,j,nbiomat),j=1,4)
8030 format(23x,5f10.6,f15.5)
endif
if (instring(14:19).eq."BIOMT2") then
c read(instring,8030) (biomat(2,j,nbiomat),j=1,4)
read(instring(20:80),*) ib,(biomat(2,j,nbiomat),j=1,4)
endif
if (instring(14:19).eq."BIOMT3") then
c read(instring,8030) (biomat(3,j,nbiomat),j=1,4)
read(instring(20:80),*) ib,(biomat(3,j,nbiomat),j=1,4)
endif
if (instring(14:19).eq." ") then
write(6,*) "Number of BIOMT ",nbiomat
do ibio=1,nbiomat
do im=1,3
write(6,*) "BIOMAT ",ibio,(biomat(im,j,ibio),j=1,4)
enddo
enddo
goto 8099
endif
goto 8010
endif
c --- end of BIOMAT
8099 continue
if ((instring(1:4).ne.'ATOM').and.
& (instring(1:6).ne.'HETATM')) goto 7040
read(instring,200) ires
do ides=1,ndes
if (instring(1:6).ne.atomdescriptor(ides)(1:6)) goto 7050
do ia=1,10
if (descriptor(ides)(ia:ia).eq.'-') goto 7060
if (instring(12+ia:12+ia).ne.descriptor(ides)(ia:ia)) goto 7050
7060 continue
enddo
if ((ires.lt.resrange(1,ides)).or.
& (ires.gt.resrange(2,ides))) goto 7050
if (radtype(ides).eq.0) goto 7040
c --- check if chain is in biological assembly
if (nbiochain.ne.0) then
ibioflag=0
do ibio=1,nbiochain
if (instring(22:22).eq.biochain(ibio)) ibioflag=1
enddo
if (ibioflag.eq.0) goto 7040
endif
c --- found an atom to save ---
n=n+1
read(instring,300) (coord(i,n),i=1,3)
type(n)=ides
C --- assign subunits automatically ---
chain=instring(22:22)
if (chain.ne.chainlast) then
nsu=nsu+1
chainlast=chain
endif
su(n)=nsu
res(n)=ires
C --- apply biomat ---
cif (nbiomat.gt.0) then
crx=coord(1,n)
cry=coord(2,n)
crz=coord(3,n)
cdo imat=1,nbiomat
csu(n+imat)=su(n)
cres(n+imat)=res(n)
ctype(n+imat)=ides
ccoord(1,n+imat)=rx*biomat(1,1,imat)+
c & ry*biomat(1,2,imat)+
c & rz*biomat(1,3,imat)+
c & biomat(1,4,imat)
ccoord(2,n+imat)=rx*biomat(2,1,imat)+
c & ry*biomat(2,2,imat)+
c & rz*biomat(2,3,imat)+
c & biomat(2,4,imat)
ccoord(3,n+imat)=rx*biomat(3,1,imat)+
c & ry*biomat(3,2,imat)+
c & rz*biomat(3,3,imat)+
c & biomat(3,4,imat)
cenddo
cn=n+nbiomat
cendif
goto 7040
7050 continue
enddo
goto 7040
c --- done reading atoms ---
7009 write(6,*)' atoms read: ', n, ' from: ',inputfile
write(6,*) " number of subunits: ",nsu
write(6,*)' '
7100 format(a80)
200 format(22x,i4)
300 format(30x,3f8.3)
goto 10
c--------------------------------------------------------------------
c TRANSLATION
2 continue
read(5,*) xtrani,ytrani,ztrani
xtran=xtran+xtrani
ytran=ytran+ytrani
ztran=ztran+ztrani
write(6,*) 'translation vector : ',xtran,ytran,ztran
write(6,*)
goto 10
c--------------------------------------------------------------------
c Z ROTATION
5 call clearmatrix(matrixin)
read(5,*) angle
write(6,*) 'z rotation : ',angle
c --minus sign is because original rotations were left-handed! (warning: postdoc code)
angle=-angle*3.141592/180.
matrixin(1,1)=cos(angle)
matrixin(1,2)=-sin(angle)
matrixin(2,1)=sin(angle)
matrixin(2,2)=cos(angle)
call catenate(rm,matrixin)
goto 10
c--------------------------------------------------------------------
c Y ROTATION
4 call clearmatrix(matrixin)
read(5,*) angle
write(6,*) 'y rotation : ',angle
angle=-angle*3.141592/180.
matrixin(1,1)=cos(angle)
matrixin(1,3)=sin(angle)
matrixin(3,1)=-sin(angle)
matrixin(3,3)=cos(angle)
call catenate(rm,matrixin)
goto 10
c--------------------------------------------------------------------
c X ROTATION
3 call clearmatrix(matrixin)
read(5,*) angle
write(6,*) 'x rotation : ',angle
angle=-angle*3.141592/180.
matrixin(2,2)=cos(angle)
matrixin(2,3)=-sin(angle)
matrixin(3,2)=sin(angle)
matrixin(3,3)=cos(angle)
call catenate(rm,matrixin)
goto 10
c--------------------------------------------------------------------
c SCALE
6 continue
read(5,*) rscalei
rscale=rscale*rscalei
write(6,*) 'scale factor : ',rscale
write(6,*)
goto 10
c--------------------------------------------------------------------
c CENTERING of coordinates
c three options: CEN(TER) will center on max/min coordinates in x,y,z
c AUT(O-CENTER) will center the rotated coordinates
c in the frame, and place the uppermost atom
c just below the image plane
c (done when image processing begins)
c ROTATIONs are applied before the centering
c TRANSLATIONs are applied after the centering
7 continue
read(5,101) command
autocenter=0
if (command.eq.'aut') then
autocenter=1
goto 10
endif
if (command.eq.'cen') then
autocenter=2
goto 10
endif
goto 10
c--------------------------------------------------------------------
c WORLD parameters that describe the environment
8 continue
c param: rback(3) -- rgb of background, 0.-1.
c param: rfog(3) -- rgb of fog, 0.-1.
c param: pfogh,pfogl -- fractional intensity of fog color at front and back of molecule
read (5,*) (rback(i),i=1,3),(rfog(i),i=1,3),pfogh,pfogl
if (pfogl.lt.0.) then
pfogl=-pfogl
endif
do i=1,3
if (rback(i).gt.1.) rback(i)=1.
if (rfog(i).gt.1.) rfog(i)=1.
colortype(0,i)=rback(i)
enddo
if (pfogh.gt.1.) pfogh=1.
if (pfogl.gt.1.) pfogl=1.
write (6,202) ' background inten. :',(rback(i),i=1,3)
write (6,202) ' fog intensity : ',(rfog(i),i=1,3)
write (6,202) ' upper fog percent :',pfogh*100.
write (6,202) ' lower fog percent :',pfogl*100.
pfogdiff=pfogh-pfogl
c param: icone -- flag, 0=no soft shadow, other=soft shadow
c param: pcone -- fractional shadowing contribution from each atom (0.0023)
c larger=darker shadow
c param: coneangle -- angle of shadowing around each atom (2.0)
c larger values give tighter shadowed region
c param: rcone -- shadowing applied only if z values of atoms are
c greater than rcone (removes many small shadows in
c creases) (1.0 A)
c param: pshadowmax -- maximal shadowing amount (0.7) smaller=darker shadow
read (5,*) icone,pcone,coneangle,rcone,pshadowmax
if (icone.ne.0) write (6,202) ' draw conical shadows'
c param: ixsize,iysize -- vertical and horizonal size (pixels)
c negative values are autosized, padded by the value
read(5,*) ixsize,iysize
if (ixsize.gt.3000) ixsize=3000
if (iysize.gt.3000) iysize=3000
write(6,*) 'input value for image size', ixsize,iysize
goto 10
202 format(1x,a20,1x,8f7.2)
207 format(/1x,a20/)
c--------------------------------------------------------------------
c ILLUSTRATION parameters for outlines
12 continue
illustrationflag=1
c param: l_low, l_high -- thresholds for drawing contour outlines (3.,8.)
c higher values give fewer outlines
c narrower range gives jaggier outlines
c values are based on the number of pixels in the kernel
c param: ikernel -- kernel for doing derivative, values=1,2,3,4 (4)
c param: l_diff_min, l_diff_max -- range of difference in z-values used for calculation (0.,5. A)
c 0-1 gives outlines around every atom, 0-1000 outlines the whole molecule
c param: r_low, r_high -- thresholds for drawing subunit outlines (3.,8.)
c param: g_low, g_high -- thresholds for drawing residue outlines (3.,8.)
c param: resdiff -- residue outlines drawn for atoms with this difference in residue numbers or greater
read(5,*) l_low,l_high,ikernel,l_diff_min,l_diff_max
read(5,*) r_low,r_high
read(5,*) g_low,g_high,resdiff
write(6,*) 'illustration parameters'
write(6,*) 'l parameters: ',l_low,l_high
write(6,*) 'g parameters: ',g_low,g_high
goto 10
c--------------------------------------------------------------------
111 write (6,207) ' *begin calculation*'
c --- if no BIOMT in file, use biomat 1 == identity matrix
nbiomat=max(nbiomat,1)
c ***** Populate conical shadow table ****
conemax=50.
do i=-51,51
do j=-51,51
rtable(i,j)=sqrt(float(i)**2+float(j)**2)
if (rtable(i,j).gt.conemax) rtable(i,j)=10000.
enddo
enddo
rtable(0,0)=10000.
c ***** SCALE RADII *****
do i=1,ndes
radtype(i)=radtype(i)*rscale
if (radtype(i).gt.radius_max) radius_max=radtype(i)
119 enddo
c ***** APPLY AUTOCENTERING and AUTOSIZING, if switched on *****
if (autocenter.gt.0) then
xmin=10000.
xmax=-10000.
ymin=10000.
ymax=-10000.
zmin=10000.
zmax=-10000.
do ia=1,n
do ibio=1,nbiomat
c--apply biomat
rx=coord(1,ia)*biomat(1,1,ibio)+coord(2,ia)*biomat(1,2,ibio)+
& coord(3,ia)*biomat(1,3,ibio)+biomat(1,4,ibio)
ry=coord(1,ia)*biomat(2,1,ibio)+coord(2,ia)*biomat(2,2,ibio)+
& coord(3,ia)*biomat(2,3,ibio)+biomat(2,4,ibio)
rz=coord(1,ia)*biomat(3,1,ibio)+coord(2,ia)*biomat(3,2,ibio)+
& coord(3,ia)*biomat(3,3,ibio)+biomat(3,4,ibio)
c--apply rotation matrix
rx2=rx*rm(1,1)+ry*rm(2,1)+rz*rm(3,1)
ry2=rx*rm(1,2)+ry*rm(2,2)+rz*rm(3,2)
rz2=rx*rm(1,3)+ry*rm(2,3)+rz*rm(3,3)
xmin=MIN(xmin,rx2)
xmax=MAX(xmax,rx2)
ymin=MIN(ymin,ry2)
ymax=MAX(ymax,ry2)
zmin=MIN(zmin,rz2)
zmax=MAX(zmax,rz2)
enddo
enddo
write(6,*) 'min coordinates : ',xmin,ymin,zmin
write(6,*) 'max coordinates : ',xmax,ymax,zmax
xtranc=-xmin-(xmax-xmin)/2.
ytranc=-ymin-(ymax-ymin)/2.
if (autocenter.eq.1) then
ztranc=-zmax-radius_max-1.
write(6,*) 'automating centering'
endif
if (autocenter.eq.2) then
ztranc=-zmin-(zmax-zmin)/2.
write(6,*) 'x,y,z centering'
endif
write(6,*) 'centering vector : ',xtranc,ytranc,ztranc
if ((ixsize.le.0).or.(iysize.le.0)) then
write(6,*)
write(6,*) 'applying autosizing'
write(6,*) 'x and y frame width: ',-ixsize,-iysize
ixsize=-2.*ixsize+2.*radius_max+(xmax-xmin)*rscale
iysize=-2.*iysize+2.*radius_max+(ymax-ymin)*rscale
endif
endif
ixsize=min(ixsize,3000)
iysize=min(iysize,3000)
c ***** OPEN OUTPUT FILES *****
ixsize=int(ixsize/2)*2
iysize=int(iysize/2)*2
write(6,*) 'xsize and ysize: ',ixsize,iysize
write(6,*)
read(5,113) filename
write(6,*) "output pnm filename: ",filename
open(8,file=filename,form='formatted')
write(8,1003) "P3"
1003 format(a2)
write(8,1004) iysize,ixsize
write(8,1004) 255
open(9,file="opacity.pnm",form='formatted')
write(9,1003) "P3"
write(9,1004) iysize,ixsize
write(9,1004) 255
1004 format(2i5)
113 format(a80)
c ***** MAP SPHERICAL SURFACES OVER ATOMS *****
do ix=1,ixsize
do iy=1,iysize
pix(ix,iy,1)=0.
pix(ix,iy,2)=0.
pix(ix,iy,3)=0.
pix(ix,iy,4)=0.
atom(ix,iy)=0
bio(ix,iy)=1
zpix(ix,iy)=-10000.
enddo
enddo
if (n.gt.0) then
c ----- create the spherical shading map for atom types -----
do irad=1,ndes
ic=1
irlim=int(radtype(irad))
if (irlim.gt.100) then
write(6,*) 'atoms radius * scale > 100'
stop
endif
do ix=-irlim-1,irlim+1
do iy=-irlim-1,irlim+1
x=float(ix)
y=float(iy)
d=sqrt(x*x+y*y)
if (d.gt.radtype(irad)) goto 350
z=sqrt(radtype(irad)**2-d*d)
sphdat(ic,1)=x
sphdat(ic,2)=y
sphdat(ic,3)=z
ic=ic+1
350 continue
enddo
352 enddo
numpix=ic-1
c ----- then map spherical surface over atoms of the proper type ------
icount=0
do ia=1,n
if (type(ia).ne.irad) goto 500
icount=icount+1
do ibio=1,nbiomat
c--apply biomat
rx=coord(1,ia)*biomat(1,1,ibio)+coord(2,ia)*biomat(1,2,ibio)+
& coord(3,ia)*biomat(1,3,ibio)+biomat(1,4,ibio)
ry=coord(1,ia)*biomat(2,1,ibio)+coord(2,ia)*biomat(2,2,ibio)+
& coord(3,ia)*biomat(2,3,ibio)+biomat(2,4,ibio)
rz=coord(1,ia)*biomat(3,1,ibio)+coord(2,ia)*biomat(3,2,ibio)+
& coord(3,ia)*biomat(3,3,ibio)+biomat(3,4,ibio)
c--apply rotation matrix
rx2=rx*rm(1,1)+ry*rm(2,1)+rz*rm(3,1)
ry2=rx*rm(1,2)+ry*rm(2,2)+rz*rm(3,2)
rz2=rx*rm(1,3)+ry*rm(2,3)+rz*rm(3,3)
c--apply centering vector
rx2=rx2+xtranc
ry2=ry2+ytranc
rz2=rz2+ztranc
c--apply translation and scaling
rx2=(rx2+xtran)*rscale
ry2=(ry2+ytran)*rscale
rz2=(rz2+ztran)*rscale
if (rz2.lt.0.) then
do ipix=1,numpix
x=sphdat(ipix,1)+rx2+float(ixsize)/2.
y=sphdat(ipix,2)+ry2+float(iysize)/2.
ix=int(x)
iy=int(y)
if ((x.gt.float(ixsize)).or.(x.lt.1.).or.
& (y.gt.float(iysize)).or.(y.lt.1.)) goto 510
z=sphdat(ipix,3)+rz2
if (z.gt.zpix(ix,iy)) then
zpix(ix,iy)=z
atom(ix,iy)=ia
bio(ix,iy)=ibio
endif
510 continue
enddo
endif
c -- ibio loop
enddo
500 continue
c -- ia loop
enddo
write(6,*) icount,' spheres added of type: ',irad
c -- irad loop
340 enddo
write(6,*) 'shading maps written into depth buffer'
endif
c***** CALCULATE SECOND DERIVATIVE OUTLINES ******
c ---- find maximum and minimum z levels ---
c (note: I use a value of zpix=-10000. to distinguish background)
zpix_max=-100000.
zpix_min=100000.
do ix=1,ixsize
do iy=1,iysize
if (zpix(ix,iy).gt.zpix_max) zpix_max=zpix(ix,iy)
if ((zpix(ix,iy).ne.-10000.).and.
& (zpix(ix,iy).lt.zpix_min)) zpix_min=zpix(ix,iy)
enddo
enddo
zpix_max=min(zpix_max,0.)
zpix_spread=zpix_max-zpix_min
write(6,*) 'zpix_min,zpix_max ',zpix_min,zpix_max
c ***** PROCESSING OF THE IMAGE BEGINS HERE*****
l_diff_min=l_diff_min*rscale
l_diff_max=l_diff_max*rscale
write(6,*) ' Pixel processing beginning '
do ix=1,ixsize
do iy=1,iysize
zpix(ix,iy)=min(zpix(ix,iy),0.)
2009 enddo
1009 enddo
do ix=1,ixsize
do iy=1,iysize
c ***** CONICAL SHADOW TESTING *****
pconetot=1.
if ((icone.ne.0).and.(atom(ix,iy).ne.0)) then
do i=-50,50,5
do j=-50,50,5
if ((ix+i.gt.0).and.(ix+i.lt.ixsize).and.
& (iy+j.gt.0).and.(iy+j.lt.iysize)) then
rzdiff=zpix(ix+i,iy+j)-zpix(ix,iy)
if (rzdiff.gt.rcone) then
if (rtable(i,j)*coneangle.lt.rzdiff+rcone) then
pconetot=pconetot-pcone
endif
endif
endif
enddo
enddo
pconetot=max(pconetot,pshadowmax)
endif
c ***** CALCULATE THE FOG PERCENTAGE (DEPTH CUEING) *****
pfh=pfogh-(zpix_max-zpix(ix,iy))/zpix_spread*pfogdiff
if (zpix(ix,iy).lt.zpix_min) pfh=1.
c ***** CALCULATE OUTLINES *****
g_opacity=0.
l_opacity=0.
if (illustrationflag.ne.0) then
c ***** SUBUNIT OUTLINES *****
c ---- (this replaces original calculation of first derivatives)
if ((ix.gt.1).and.(ix.lt.ixsize).and.
& (iy.gt.1).and.(iy.lt.iysize)) then
c --- calculate subunit 'derivatives' ---
g=0.
r=0.
do i=-2,2
do j=-2,2
if (abs(i*j).ne.4) then
if ((su(atom(ix,iy)).ne.su(atom(ix+i,iy+j))).or.
& (bio(ix,iy).ne.bio(ix+i,iy+j))) r=r+1.
if (abs(res(atom(ix,iy))-
& res(atom(ix+i,iy+j))).gt.resdiff) g=g+1.
endif
enddo
enddo
c --- opacities are 1 for completely opaque ---
g_opacity=min((g-g_low)/(g_high-g_low),1.)
r_opacity=min((r-r_low)/(r_high-r_low),1.)
g_opacity=max(g_opacity,r_opacity,0.)
endif
c ***** SECOND DERIVATIVE OUTLINES *****
if ((ix.gt.2).and.(ix.lt.ixsize-1).and.
& (iy.gt.2).and.(iy.lt.iysize-1)) then
rl=0.
l_opacity_ave=0.
do ixl=-1,1
do iyl=-1,1
ixc=ix+ixl
iyc=iy+iyl
if (ikernel.eq.1) then
l(ixl,iyl)=abs(1./3. * (
& -0.8*zpix(ixc-1,iyc-1)-1.*zpix(ixc-1,iyc)-0.8*zpix(ixc-1,iyc+1)-
& 1.0* zpix(ixc,iyc-1)+7.2*zpix(ixc,iyc)-1.0*zpix(ixc,iyc+1)-
& 0.8* zpix(ixc+1,iyc-1)-1.*zpix(ixc+1,iyc)-0.8*zpix(ixc+1,iyc+1)
& ))
endif
if (ikernel.eq.2) then
l(ixl,iyl)=abs(1./3. * (
& -0.8*zpix(ixc-1,iyc-1)-1.0*zpix(ixc-1,iyc)-0.8*zpix(ixc-1,iyc+1)-
& 1.0*zpix(ixc,iyc-1)+8.8*zpix(ixc,iyc)-1.0*zpix(ixc,iyc+1)-
& 0.8*zpix(ixc+1,iyc-1)-1.0*zpix(ixc+1,iyc)-0.8*zpix(ixc+1,iyc+1)-
& 0.1*zpix(ixc+2,iyc-1)-0.2*zpix(ixc+2,iyc)-0.1*zpix(ixc+2,iyc+1)-
& 0.1*zpix(ixc-2,iyc-1)-0.2*zpix(ixc-2,iyc)-0.1*zpix(ixc-2,iyc+1)-
& 0.1*zpix(ixc-1,iyc+2)-0.2*zpix(ixc,iyc+2)-0.1*zpix(ixc+1,iyc+2)-
& 0.1*zpix(ixc-1,iyc-2)-0.2*zpix(ixc,iyc-2)-0.1*zpix(ixc+1,iyc-2)
& ))
endif
if (ikernel.eq.3) then
do i=-1,1
do j=-1,1
rd=abs(zpix(ix,iy)-zpix(ix+i,iy+j))
if (rd.gt.l_diff_min) then
rd=(rd-l_diff_min)/(l_diff_max-l_diff_min)
l(ixl,iyl)=l(ixl,iyl)+min(rd,1.)
endif
enddo
enddo
endif
if (ikernel.eq.4) then
do i=-2,2
do j=-2,2
if (abs(i*j).ne.4) then
rd=abs(zpix(ix,iy)-zpix(ix+i,iy+j))
if (rd.gt.l_diff_min) then
rd=abs(zpix(ix,iy)-zpix(ix+i,iy+j))
rd=(rd-l_diff_min)/(l_diff_max-l_diff_min)
l(ixl,iyl)=l(ixl,iyl)+min(rd,1.)
endif
endif
enddo
enddo
endif
l(ixl,iyl)=min((l(ixl,iyl)-l_low)/(l_high-l_low),1.)
l(ixl,iyl)=max(l(ixl,iyl),0.)
if (l(ixl,iyl).gt.0.) rl=rl+1.
l_opacity_ave=l_opacity_ave+l(ixl,iyl)
enddo
enddo
if (rl.ge.6.) then
l_opacity=l_opacity_ave/6.
else
l_opacity=l(0,0)
endif
l_opacity=min(l_opacity,1.)
l_opacity=max(l_opacity,0.)
endif
c ---- combine subunit outlines and derivative outlines ----
l_opacity=max(l_opacity,g_opacity)
endif
c ***** CALCULATE THE TOTAL PIXEL INTENSITY *****
ropacity=0.
do icolor=1,3
rcolor=
& pfh*(pconetot*(colortype(type(atom(ix,iy)),icolor)))+
& (1.-pfh)*rfog(icolor)
pix(ix,iy,icolor)=(1.-l_opacity)*rcolor
c ----calculate pixel opacity
if (type(atom(ix,iy)).ne.0) ropacity=1.
pix(ix,iy,4)=max(ropacity,l_opacity)
enddo
enddo
c ***** output of a scan line *****
c ----- PPM format -----
iscan=0
do iout=1,iysize
do ic=1,3
iscan=iscan+1
scanline(iscan)=int(pix(ix,iout,ic)*255.)
scanline(iscan)=min(scanline(iscan),255)
scanline(iscan)=max(scanline(iscan),0)
enddo
enddo
write(8,1002) (scanline(if),if=1,iysize*3)
C -- write opacity
iscan=0
do iout=1,iysize
do ic=1,3
iscan=iscan+1
scanline(iscan)=int(pix(ix,iout,4)*255.)
scanline(iscan)=min(scanline(iscan),255)
scanline(iscan)=max(scanline(iscan),0)
enddo
enddo
write(9,1002) (scanline(if),if=1,iysize*3)
1002 format(20i4)
c ----- diagnostic ------
if (int(ix/20)*20.eq.int((float(ix)/20.)*20.)) then
write(6,6669) (int(pix(ix,iyo,1)*9.),iyo=1,iysize,20)
6669 format(65i1)
endif
1000 enddo
999 stop
end
c--------------------------------------------------------------------
subroutine catenate(m1,m2)
real*4 m1(4,4),m2(4,4),m(4,4)
c--------------------------------------------------------------------
m(1,1)=m1(1,1)*m2(1,1)+m1(2,1)*m2(1,2)+m1(3,1)*m2(1,3)+
& m1(4,1)*m2(1,4)
m(1,2)=m1(1,2)*m2(1,1)+m1(2,2)*m2(1,2)+m1(3,2)*m2(1,3)+
& m1(4,2)*m2(1,4)
m(1,3)=m1(1,3)*m2(1,1)+m1(2,3)*m2(1,2)+m1(3,3)*m2(1,3)+
& m1(4,3)*m2(1,4)
m(1,4)=m1(1,4)*m2(1,1)+m1(2,4)*m2(1,2)+m1(3,4)*m2(1,3)+
& m1(4,4)*m2(1,4)
m(2,1)=m1(1,1)*m2(2,1)+m1(2,1)*m2(2,2)+m1(3,1)*m2(2,3)+
& m1(4,1)*m2(2,4)
m(2,2)=m1(1,2)*m2(2,1)+m1(2,2)*m2(2,2)+m1(3,2)*m2(2,3)+
& m1(4,2)*m2(2,4)
m(2,3)=m1(1,3)*m2(2,1)+m1(2,3)*m2(2,2)+m1(3,3)*m2(2,3)+
& m1(4,3)*m2(2,4)
m(2,4)=m1(1,4)*m2(2,1)+m1(2,4)*m2(2,2)+m1(3,4)*m2(2,3)+
& m1(4,4)*m2(2,4)
m(3,1)=m1(1,1)*m2(3,1)+m1(2,1)*m2(3,2)+m1(3,1)*m2(3,3)+
& m1(4,1)*m2(3,4)
m(3,2)=m1(1,2)*m2(3,1)+m1(2,2)*m2(3,2)+m1(3,2)*m2(3,3)+
& m1(4,2)*m2(3,4)
m(3,3)=m1(1,3)*m2(3,1)+m1(2,3)*m2(3,2)+m1(3,3)*m2(3,3)+
& m1(4,3)*m2(3,4)
m(3,4)=m1(1,4)*m2(3,1)+m1(2,4)*m2(3,2)+m1(3,4)*m2(3,3)+
& m1(4,4)*m2(3,4)
m(4,1)=m1(1,1)*m2(4,1)+m1(2,1)*m2(4,2)+m1(3,1)*m2(4,3)+
& m1(4,1)*m2(4,4)
m(4,2)=m1(1,2)*m2(4,1)+m1(2,2)*m2(4,2)+m1(3,2)*m2(4,3)+
& m1(4,2)*m2(4,4)
m(4,3)=m1(1,3)*m2(4,1)+m1(2,3)*m2(4,2)+m1(3,3)*m2(4,3)+
& m1(4,3)*m2(4,4)
m(4,4)=m1(1,4)*m2(4,1)+m1(2,4)*m2(4,2)+m1(3,4)*m2(4,3)+
& m1(4,4)*m2(4,4)
do j=1,4
do i=1,4
m1(i,j)=m(i,j)
enddo
enddo
return
end
c--------------------------------------------------------------------
subroutine clearmatrix(m)
real*4 m(4,4)
c--------------------------------------------------------------------
do i=1,4
do j=1,4
x=0.
if (i.eq.j) x=1.
1 m(i,j)=x
enddo
enddo
return
end