-
Notifications
You must be signed in to change notification settings - Fork 23
/
gl_core_3d.pas
1014 lines (957 loc) · 36.1 KB
/
gl_core_3d.pas
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
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
unit gl_core_3d;
{$mode objfpc}{$H+}
{$Include opts.inc}
{$IFNDEF CPUAARCH64} //Apple M1 has poor 10_10_10_2 performance
{$DEFINE USE_GL_INT_2_10_10_10}
{$ENDIF}
interface
uses
{$IFDEF LHRH}meshlhrh,{$ENDIF}
{$IFDEF DGL} dglOpenGL, {$ELSE DGL} {$IFDEF COREGL}glcorearb, {$ELSE} gl, {$ENDIF} {$ENDIF DGL}
gl_core_matrix, Classes, SysUtils, mesh, matMath, Graphics, define_types, Prefs, Track, math;
//procedure LoadBufferData (var faces: TFaces; var vertices: TVertices; var vertexRGBA: TVertexRGBA) ;
//function BuildDisplayList(var faces: TFaces; vertices: TVertices; vRGBA: TVertexRGBA): GLuint;
procedure BuildDisplayList(var faces: TFaces; vertices: TVertices; vRGBA: TVertexRGBA; var vao, vbo: gluint; Clr: TRGBA);
//procedure SetLighting (var lPrefs: TPrefs);
{$IFDEF LHRH}
procedure DrawScene(w,h: integer; isFlipMeshOverlay, isOverlayClipped,isDrawMesh, isMultiSample: boolean; var lPrefs: TPrefs; origin : TPoint3f; ClipPlane: TPoint4f; scale, distance, elevation, azimuth: single; var lMesh: TMeshLHRH; lNode: TMesh; lTrack: TTrack);
{$ELSE}
procedure DrawScene(w,h: integer; isFlipMeshOverlay, isOverlayClipped,isDrawMesh, isMultiSample: boolean; var lPrefs: TPrefs; origin : TPoint3f; ClipPlane: TPoint4f; scale, distance, elevation, azimuth: single; var lMesh,lNode: TMesh; lTrack: TTrack);
{$ENDIF}
//procedure SetCoreUniformsX(lProg: Gluint);
procedure SetTrackUniforms (lineWidth, ScreenPixelX, ScreenPixelY: integer);
//procedure BuildDisplayListStrip(Indices: TInts; Verts, vNorms: TVertices; vRGBA: TVertexRGBA; LineWidth: integer; var vao, vbo: gluint);
procedure BuildDisplayListStrip(Indices: TInts; vertices, vNorm: TVertices; vRGBA: TVertexRGBA; vType: TInts; LineWidth: integer; var vao, vbo: gluint);
//{$DEFINE V4}
{$IFDEF V4}
const kVertVec = 'vec4';
const kVertSz = sizeof(TPoint4f);
{$ELSE}
const kVertVec = 'vec3';
const kVertSz = sizeof(TPoint3f);
{$ENDIF}
const
kPrimitiveRestart = 2147483647;
const
kVert3d = '#version 330'
+#10'layout(location = 0) in vec3 Vert;'
+#10'layout(location = 3) in vec3 Norm;'
+#10'layout(location = 6) in vec4 Clr;'
+#10'out mediump vec3 vN, vL, vV;'
+#10'out lowp vec4 vClr;'
+#10'out vec4 vP;'
+#10'uniform mat4 ModelViewProjectionMatrix;'
+#10'uniform mat4 ModelViewMatrix;'
+#10'uniform mat3 NormalMatrix;'
+#10'uniform vec3 LightPos = vec3(0.0, 20.0, 30.0); //LR, -DU+, -FN+'
+#10'void main() {'
+#10' vN = normalize((NormalMatrix * Norm));'
+#10' vP = vec4(Vert, 1.0);'
+#10' gl_Position = ModelViewProjectionMatrix * vec4(Vert, 1.0);'
+#10' vL = normalize(LightPos);'
+#10' vV = -vec3(ModelViewMatrix*vec4(Vert,1.0));'
+#10' vClr = Clr;'
+#10'}';
kFrag3d = '#version 330'
+#10' in vec4 vP;'
+#10' in lowp vec4 vClr;'
+#10' in mediump vec3 vN, vL, vV;'
+#10' out vec4 color;'
+#10' uniform float Ambient = 0.5;'
+#10' uniform float Diffuse = 0.7;'
+#10' uniform float Specular = 0.2;'
+#10' uniform float Shininess = 60.0;'
+#10' uniform vec4 ClipPlane = vec4(2.0, 0.0, 0.0, 0.0);'
+#10'void main() {'
+#10' if ((ClipPlane[0] < 1.5) && (dot( ClipPlane, vP) > 0.0)) discard;'
+#10' vec3 l = normalize(vL);'
+#10' vec3 n = normalize(vN);'
+#10' vec3 h = normalize(l+normalize(vV));'
+#10' vec3 a = vClr.rgb;'
+#10' vec3 backcolor = Ambient*vec3(0.1+0.1+0.1) + a*abs(dot(n,l))*Diffuse;'
+#10' vec3 d = a * dot(n,l) * Diffuse;'
+#10' a *= Ambient;'
+#10' float s = pow(max(0.0,dot(n,h)), Shininess) * Specular;'
+#10' float backface = step(0.00, n.z);'
+#10' color = vec4(mix(backcolor.rgb, a + d + s, backface), 1.0);'
+#10'}';
(*
//Blinn-Phong Shader GPLv2 (C) 2007 Dave Griffiths, FLUXUS GLSL library - permission to distribute with the BSD project granted by author in 2015
kFrag3d = '#version 330'
+#10'in vec4 vClr, vP;'
+#10'in vec3 vN, vL, vV;'
+#10'out vec4 color;'
+#10'uniform float Ambient = 0.4;'
+#10'uniform float Diffuse = 0.7;'
+#10'uniform float Specular = 0.6;'
+#10'uniform float Roughness = 0.1;'
+#10'uniform vec4 ClipPlane = vec4(2.0, 0.0, 0.0, 0.0);'
+#10'vec3 desaturate(vec3 color, float amount) {'
+#10' vec3 gray = vec3(dot(vec3(0.2126,0.7152,0.0722), color));'
+#10' return vec3(mix(color, gray, amount));'
+#10'}'
+#10'void main() {'
+#10' if ((ClipPlane[0] < 1.5) && (dot( ClipPlane, vP) > 0.0)) discard;'
+#10' vec3 n = normalize(vN);'
+#10' vec3 v = normalize(vV);'
+#10' vec3 h = normalize(vL+v);'
+#10' float diffuse = dot(vL,n);'
+#10' vec3 AmbientColor = vClr.rgb;'
+#10' vec3 DiffuseColor = vClr.rgb;'
+#10' if (n.z < 0.0) { //treat backfaces differently'
+#10' vec3 backsurface = desaturate(AmbientColor*Ambient * 0.75 +'
+#10' DiffuseColor*abs(diffuse)*Diffuse * 0.75, 0.5);'
+#10' color = vec4(backsurface, 1.0);'
+#10' return;'
+#10' }'
+#10' vec3 SpecularColor = vec3(1.0, 1.0, 1.0);'
+#10' float specular = pow(max(0.0,dot(n,h)),1.0/(Roughness * Roughness));'
+#10' color = vec4(AmbientColor*Ambient + DiffuseColor*diffuse*Diffuse +SpecularColor*specular* Specular, 1.0);'
+#10'}';
*)
//{$DEFINE SIMPLE_TRACK_GLSL} //SIMPLE GLSL is fast, but CORE limits line widths to 1 pixel! the slow version fixes this
{$IFDEF SIMPLE_TRACK_GLSL}
const kTrackShaderVert = kVert3d;
const kTrackShaderGeom = '';
const kTrackShaderFrag = '#version 330'
+#10'in vec4 vClr;'
+#10'in vec3 vN;'
+#10'out vec4 color;'
+#10'void main()'
+#10'{ '
+#10' vec3 specClr = vec3(0.7, 0.7, 0.7);'
+#10' vec3 difClr = vClr.rgb * 0.9;'
+#10' vec3 ambClr = vClr.rgb * 0.1;'
+#10' vec3 L = vec3(0.707, 0.707, 0.0);'
+#10' vec3 n = abs(normalize(vN));'
+#10' //vec3 n = normalize(vN);'
+#10' float spec = pow(dot(n,L),100.0);'
+#10' float dif = dot(L,n);'
+#10' color = vec4(specClr*spec + difClr*dif + ambClr,1.0);'
+#10'}';
{$ELSE}
const kTrackShaderVert = '#version 330'
+#10'#define M_PI 3.1415926535897932384626433832795'
+#10'layout(location = 0) in '+kVertVec+' Vert;'
+#10'layout(location = 3) in vec4 Norm;'
+#10'layout(location = 6) in vec4 Clr;'
+#10'uniform mat4 ModelViewProjectionMatrix;'
+#10'uniform mat4 ModelViewMatrix;'
+#10'uniform mat4 ProjectionMatrix;'
+#10'uniform float Radius;'
+#10'uniform mat3 NormalMatrix;'
+#10'uniform vec3 LightPos = vec3(0.0, 20.0, 30.0); //LR, -DU+, -FN+'
+#10'out lowp vec4 vClr;'
+#10'out vec4 vP;'
+#10'out mediump vec3 vN;'
+#10'out float TextCordCylinder;'
+#10'out vec2 TextCordEnd;'
+#10'out float fType;'
+#10'out vec3 vLightPos;'
+#10'out mat3 Rot;'
+#10'out float RotInversion;'
+#10'out vec3 SimN;'
+#10'mat3 AlignVectors(vec3 FromVector,vec3 ToVector, inout float Inversion){'
+#10' vec3 v = cross(FromVector,ToVector);'
+#10' float E = M_PI/2.0;'
+#10' float s = length(v);'
+#10' float c = dot(FromVector,ToVector);'
+#10' float ang = acos(c);'
+#10' if((M_PI-ang)<E){'
+#10' Inversion=-1.0;'
+#10' }'
+#10''
+#10' mat3 vX;'
+#10' vX[0] = vec3(0,v[2],-v[1]);'
+#10' vX[1] = vec3(-v[2],0,v[0]);'
+#10' vX[2] = vec3(v[1],-v[0],0);'
+#10''
+#10' mat3 final = mat3(1.0)+vX+vX*vX*(1-c)/s*s*s*s;'
+#10' return final;'
+#10'}'
+#10'float angle(vec3 a,vec3 b){'
+#10' float c = dot(a,b);'
+#10' return acos(c);'
+#10'}'
+#10'void main() {'
+#10' float rScale = 0.001;'
+#10' float vType = Norm.a;'
+#10' vec3 VectorPoints = normalize(NormalMatrix*Norm.xyz);'
+#10' vec4 VertexPosition = ModelViewMatrix*vec4(Vert.xyz, 1.0);'
+#10' vec3 vecCameraPoint = vec3(0,0,1);'
+#10' vec4 VectorBillboard = normalize(vec4(cross(VectorPoints, vecCameraPoint),0.0));'
+#10' float kind = mod(gl_VertexID,2);'
+#10' float inversion = 1.0;'
+#10' if(vType==0.0){'
+#10' VectorBillboard = VectorBillboard*Radius*rScale;'
+#10' Rot=AlignVectors(vec3(0.0,-1.0,0.0),VectorPoints,inversion);'
+#10' if(kind==0.0){'
+#10' VertexPosition = VertexPosition-VectorBillboard;'
+#10' TextCordCylinder = 0.0;'
+#10' SimN=normalize(-VectorBillboard.xyz);'
+#10' }else{'
+#10' VertexPosition = VertexPosition+VectorBillboard;'
+#10' TextCordCylinder = 1.0;'
+#10' SimN=normalize(VectorBillboard.xyz);'
+#10' }'
+#10' }else if(vType==1.0){'
+#10' vec4 VectorEndBillboard = normalize(vec4(cross(VectorBillboard.xyz,VectorPoints.xyz),0.0))*Radius*rScale;'
+#10' Rot=AlignVectors(vec3(0.0,1.0,0.0),VectorBillboard.xyz,inversion);'
+#10' SimN=normalize(VectorPoints.xyz);'
+#10' VectorBillboard = VectorBillboard*Radius*rScale;'
+#10' if(kind==0.0){'
+#10' VertexPosition = VertexPosition-VectorBillboard+VectorEndBillboard;'
+#10' TextCordEnd = vec2(1.0,0.0);'
+#10' }else{'
+#10' VertexPosition = VertexPosition+VectorBillboard+VectorEndBillboard;'
+#10' TextCordEnd = vec2(1.0,1.0);'
+#10' }'
+#10' }else if(vType==-2.0){'
+#10' vec4 VectorEndBillboard = normalize(vec4(cross(VectorBillboard.xyz,VectorPoints.xyz),0.0))*Radius*rScale;'
+#10''
+#10' Rot=AlignVectors(vec3(0.0,1.0,0.0),VectorBillboard.xyz,inversion);'
+#10' SimN=normalize(VectorPoints.xyz);'
+#10''
+#10' VectorBillboard = VectorBillboard*Radius*rScale;'
+#10' if(kind==0.0){'
+#10' VertexPosition = VertexPosition-VectorBillboard-VectorEndBillboard;'
+#10' TextCordEnd = vec2(0.0,0.0);'
+#10' }else{'
+#10' VertexPosition = VertexPosition+VectorBillboard-VectorEndBillboard;'
+#10' TextCordEnd = vec2(0.0,1.0);'
+#10' }'
+#10' }else{'
+#10' vClr=vec4(0.0,0.0,0.0,1.0);'
+#10' }'
+#10' RotInversion = inversion;'
+#10' fType = vType;'
+#10' vClr = Clr;'
+#10' vP = ProjectionMatrix*VertexPosition;'
+#10' gl_Position = vP;'
+#10' vN = normalize((NormalMatrix * Norm.xyz));'
+#10' vLightPos=LightPos;'
+#10'}';
const kTrackShaderGeom = '';
const kTrackShaderFrag = '#version 330'
+#10'in lowp vec4 vClr;'
+#10'in mediump vec3 vN;'
+#10'in vec4 vP;'
+#10'in float TextCordCylinder;'
+#10'in float fType;'
+#10'in vec2 TextCordEnd;'
+#10'in vec3 vLightPos;'
+#10'in mat3 Rot;'
+#10'in vec3 SimN;'
+#10'in float RotInversion;'
+#10'uniform sampler1D normalmaptexture;'
+#10'uniform sampler2D normalmaptexturesphere;'
+#10'uniform float Ambient = 0.2;'
+#10'uniform float Diffuse = 0.8;'
+#10'uniform float Specular = 0.5;'
+#10'uniform float Shininess = 60.0;'
+#10'uniform float Edge = 0.5;'
+#10'uniform float SpecularRough = 0.05;'
+#10'out vec4 color;'
+#10'void main() {'
+#10' vec4 N;'
+#10' vec3 NN;'
+#10' if(fType==0.0){'
+#10' N = texture(normalmaptexture , TextCordCylinder);'
+#10' NN = Rot*(2.0*N.xyz-1.0);'
+#10' }else{'
+#10' N = texture(normalmaptexturesphere , TextCordEnd);'
+#10' if(N.a==0.0)discard;'
+#10' NN = Rot*(2.0*N.xyz-1.0);'
+#10' }'
+#10' vec3 SupX = Rot*vec3(0.0,0.0,N.z);'
+#10' vec3 SupY = RotInversion*Rot*vec3(0.0,0.0,N.z);'
+#10' NN.x = SupX.x+SimN.x;'
+#10' NN.y = max(0.0,SupY.y) + SimN.y;'
+#10' NN.z = NN.z;'
+#10' vec3 difClr = vClr.rgb;'
+#10' vec3 ambClr = vClr.rgb;'
+#10' vec3 L = normalize(vLightPos);'
+#10' vec3 n = NN;'
+#10' float NormalSpec = pow(max(0.0,dot(vN,L)),Shininess);'
+#10' float dif = max(0.0,dot(n,L)) * Diffuse;'
+#10' float s = pow(max(0.0,dot(n,L)), 10.0) * Specular;'
+#10' color = vec4(s + difClr*dif + Ambient*ambClr , 1.0);'
+#10'}';
(*const kTrackShaderVert = '#version 330'
+#10'layout(location = 0) in vec3 Vert;'
+#10'layout(location = 3) in vec3 Norm;'
+#10'layout(location = 6) in vec4 Clr;'
+#10'uniform mat4 ModelViewProjectionMatrix;'
+#10'uniform mat3 NormalMatrix;'
+#10'out vec4 vClr;'
+#10'out vec4 vP;'
+#10'out vec3 vN;'
+#10'void main() {'
+#10' gl_Position = ModelViewProjectionMatrix * vec4(Vert, 1.0);'
+#10' vP = gl_Position;'
+#10' vClr = Clr;'
+#10' vN = normalize((NormalMatrix * Norm));'
+#10'}';
const kTrackShaderGeom ='#version 330'
+#10'layout (triangle_strip, max_vertices = 5) out;'
+#10'layout (lines_adjacency) in;'
+#10'in vec4 vP[4];'
+#10'in vec4 vClr[4];'
+#10'in vec3 vN[4];'
+#10'uniform float Radius = 1.0;'
+#10'float THICKNESS = Radius;'
+#10'uniform vec2 ScreenPixels = vec2(1600,1600);'
+#10'out vec4 gClr;'
+#10'out vec3 gN;'
+#10'vec2 screen_space(vec4 vertex) {'
+#10' return vec2( vertex.xy / vertex.w ) * ScreenPixels;'
+#10'}'
+#10'void main(void) {'
+#10' vec2 p0 = screen_space( vP[0] );'
+#10' vec2 p1 = screen_space( vP[1] );'
+#10' vec2 p2 = screen_space( vP[2] );'
+#10' vec2 p3 = screen_space( vP[3] );'
+#10' vec2 v0 = normalize(p1-p0);'
+#10' vec2 v1 = normalize(p2-p1);'
+#10' vec2 v2 = normalize(p3-p2);'
+#10' vec2 n0 = vec2(-v0.y, v0.x);'
+#10' vec2 n1 = vec2(-v1.y, v1.x);'
+#10' vec2 n2 = vec2(-v2.y, v2.x);'
+#10' vec2 miter_a = normalize(n0 + n1);'
+#10' vec2 miter_b = normalize(n1 + n2);'
+#10' float kEps = 0.1;'
+#10' float length_a = 0.0;'
+#10' float length_b = 0.0;'
+#10' if ( abs(dot(miter_a, n1)) > kEps)'
+#10' length_a = THICKNESS / dot(miter_a, n1);'
+#10' if ( abs(dot(miter_b, n1)) > kEps)'
+#10' length_b = THICKNESS / dot(miter_b, n1);'
+#10' gN = normalize(vN[1] + vN[2]);'
+#10' gClr = vClr[1];'
+#10' if( dot(v0,n1) > 0 ) {'
+#10' gl_Position = vec4( (p1 - length_a * miter_a) / ScreenPixels, vP[1].z, 1.0 );'
+#10' EmitVertex();'
+#10' gl_Position = vec4( (p1 + THICKNESS * n1) / ScreenPixels, vP[1].z, 1.0 );'
+#10' EmitVertex();'
+#10' } else {'
+#10' gl_Position = vec4( (p1 - THICKNESS * n1) / ScreenPixels, vP[1].z, 1.0 );'
+#10' EmitVertex();'
+#10' gl_Position = vec4( (p1 + length_a * miter_a) / ScreenPixels, vP[1].z, 1.0 );'
+#10' EmitVertex();'
+#10' }'
+#10' gClr = vClr[2];'
+#10' if( dot(v2,n1) < 0 ) {'
+#10' gl_Position = vec4( (p2 - length_b * miter_b) / ScreenPixels, vP[2].z, 1.0 );'
+#10' EmitVertex();'
+#10' gl_Position = vec4( (p2 + THICKNESS * n1) / ScreenPixels, vP[2].z, 1.0 );'
+#10' EmitVertex();'
+#10' gl_Position = vec4( (p2 + THICKNESS * n2) / ScreenPixels, vP[2].z, 1.0 );'
+#10' EmitVertex();'
+#10' } else {'
+#10' gl_Position = vec4( (p2 - THICKNESS * n1) / ScreenPixels, vP[2].z, 1.0 );'
+#10' EmitVertex();'
+#10' gl_Position = vec4( (p2 + length_b * miter_b) / ScreenPixels, vP[2].z, 1.0 );'
+#10' EmitVertex();'
+#10' gl_Position = vec4( (p2 - THICKNESS * n2) / ScreenPixels, vP[2].z, 1.0 );'
+#10' EmitVertex();'
+#10' }'
+#10' EndPrimitive();'
+#10'}';
const kTrackShaderFrag = '#version 330'
+#10'in vec4 gClr;'
+#10'in vec3 gN;'
+#10'out vec4 color;'
+#10'void main() {'
+#10' vec3 specClr = vec3(0.7, 0.7, 0.7);'
+#10' vec3 difClr = gClr.rgb * 0.9;'
+#10' vec3 ambClr = gClr.rgb * 0.1;'
+#10' vec3 L = vec3(0.707, 0.707, 0.0);'
+#10' vec3 n = abs(normalize(gN));'
+#10' float spec = pow(dot(n,L),100.0);'
+#10' float dif = dot(L,n);'
+#10' color = vec4(specClr*spec + difClr*dif + ambClr,1.0);'
+#10'}'; *)
{$ENDIF}
implementation
uses shaderu;
procedure SetTrackUniforms(lineWidth, ScreenPixelX, ScreenPixelY: integer);
var
p , mv, mvp : TnMat44;
n : TnMat33;
mvpMat, mvMat, normMat, pMat, lp: GLint;
px: array [0..1] of single;
begin
glUseProgram(gShader.programTrackID);
p := ngl_ProjectionMatrix;
pMat := glGetUniformLocation(gShader.programTrackID, pAnsiChar('ProjectionMatrix'));
glUniformMatrix4fv(pMat, 1, kGL_FALSE, @p[0,0]); // note model not MVP!
glUniform1f(glGetUniformLocation(gShader.programTrackID, pAnsiChar('Radius')), lineWidth) ;
mvp := ngl_ModelViewProjectionMatrix;
mv := ngl_ModelViewMatrix;
n := ngl_NormalMatrix;
mvpMat := glGetUniformLocation(gShader.programTrackID, pAnsiChar('ModelViewProjectionMatrix'));
mvMat := glGetUniformLocation(gShader.programTrackID, pAnsiChar('ModelViewMatrix'));
normMat := glGetUniformLocation(gShader.programTrackID, pAnsiChar('NormalMatrix'));
glUniformMatrix4fv(mvpMat, 1, kGL_FALSE, @mvp[0,0]);
glUniformMatrix4fv(mvMat, 1, kGL_FALSE, @mv[0,0]);
glUniformMatrix3fv(normMat, 1, kGL_FALSE, @n[0,0]);
px[0] := ScreenPixelX;
px[1] := ScreenPixelY;
glUniform2fv(glGetUniformLocation(gShader.programTrackID, pAnsiChar('ScreenPixels')), 1, @px[0]);
glPrimitiveRestartIndex(kPrimitiveRestart);
glEnable(GL_PRIMITIVE_RESTART);
{$IFNDEF TUBES}
glUniform3f(glGetUniformLocation(gShader.programTrackID, pAnsiChar('LightPos')), gShader.lightPos.X, gShader.lightPos.Y, gShader.lightPos.Z);
glUniform1f(glGetUniformLocation(gShader.programTrackID, pAnsiChar('Ambient')), gShader.TrackAmbient) ;
glUniform1f(glGetUniformLocation(gShader.programTrackID, pAnsiChar('Diffuse')), gShader.TrackDiffuse) ;
//glUniform1f(glGetUniformLocation(gShader.programTrackID, pAnsiChar('Specular')), gShader.TrackSpecular * 0.75) ; //<<<<<<<<<
glUniform1f(glGetUniformLocation(gShader.programTrackID, pAnsiChar('Specular')), gShader.TrackSpecular) ; //full glisten
{$ENDIF}
end;
(*procedure SetCoreUniforms(lProg: GLuint);
var
mv, mvp : TnMat44;
n : TnMat33;
mvpMat, mvMat, normMat: GLint;
begin
glUseProgram(lProg);
//AdjustShaders(gShader);
//uniform4f('ClipPlane',cp1,cp2,cp3,cp4)
mvp := ngl_ModelViewProjectionMatrix;
mv := ngl_ModelViewMatrix;
n := ngl_NormalMatrix;
mvpMat := glGetUniformLocation(lProg, pAnsiChar('ModelViewProjectionMatrix'));
mvMat := glGetUniformLocation(lProg, pAnsiChar('ModelViewMatrix'));
normMat := glGetUniformLocation(lProg, pAnsiChar('NormalMatrix'))
glUniformMatrix4fv(mvpMat, 1, kGL_FALSE, @mvp[0,0]); // note model not MVP!
glUniformMatrix4fv(mvMat, 1, kGL_FALSE, @mv[0,0]);
glUniformMatrix3fv(normMat, 1, kGL_FALSE, @n[0,0]);
end; *)
{$IFNDEF USE_GL_INT_2_10_10_10}
{$DEFINE USE_FLOAT16}
type
TPoint4h = packed record
X,Y,Z,W: word;
end;
function f32tof16(v: single): word;assembler; nostackframe;
asm
.long 0x1e23c000 //fcvt h0, s0
.long 0x1ee60000 //fmov w0, h0
end;
function pt3_pt4f(v: TPoint3f; a: float ):TPoint4f;
begin
result.X := v.X;
result.Y := v.Y;
result.Z := v.Z;
result.W := a;
end;
{$IFDEF USE_FLOAT16}
//{$DEFINE SCALR_F16} //unable to detect difference: both very fast
{$IFDEF SCALAR_F16}
function f16tof32(v: word): single;assembler; nostackframe;
asm
.long 0x1ee70000 // fmov h0, w0
.long 0x1ee24000 // fcvt s0, h0
end;
function pt4f_pt4h(v: TPoint4f): TPoint4h;
begin
result.x := f32tof16(v.x);
result.y := f32tof16(v.y);
result.z := f32tof16(v.z);
result.w := f32tof16(v.w);
end;
function pt3_pt4(v3: TPoint3f; a: float ):TPoint4h;
var
v4: TPoint4f;
begin
v4 := pt3_pt4f(v3,a);
result := pt4f_pt4h(v4);
end;
{$ELSE}
procedure f32tof16Neon2(var output: TPoint4h; constref f32x4: TPoint4f );assembler; nostackframe;
asm
ldr q0, [x1]
.long 0x0e216800 // fcvtn v0.4h, v0.4s
str d0, [x0]
end;
function pt3_pt4(v3: TPoint3f; a: float ):TPoint4h; inline;
begin
f32tof16Neon2(result,pt3_pt4f(v3,a));
end;
{$ENDIF}
{$ELSE}
function pt3_pt4(v: TPoint3f; a: float ):TPoint4f;
begin
result := pt3_pt4f(v,a);
end;
{$ENDIF}
{$ENDIF}
type
TVtxNormClr = Packed Record
{$IFDEF V4}
vtx : TPoint4f; //vertex coordinates
{$ELSE}
vtx : TPoint3f; //vertex coordinates
{$ENDIF}
{$IFDEF USE_GL_INT_2_10_10_10}
norm : int32;
{$ELSE}
{$IFDEF USE_FLOAT16}
norm : TPoint4h; //vertex normal
{$ELSE}
norm : TPoint4f; //vertex normal
{$ENDIF}
{$ENDIF}
clr : TRGBA;
end;
function Float2Int16(f: single): int16;
begin
if f > 1 then
exit(32767);
if f < -1 then
exit(-32768);
if f > 0 then
result := round(f * 32767)
else
result := round(f * 32768);
end;
(*function Float2Int16(fv: single): int16;
var
f: single;
begin
f := fv;
if f > 1 then
f := 1;
if f < -1 then
f := -1;
if f > 0 then
result := round(f * 32767)
else
result := round(f * 32768);
end;*)
function AsGL_INT_2_10_10_10_REV(f: TPoint3f): uint32;
//pack 3 32-bit floats as 10 bit signed integers, assumes floats normalized to -1..1
var
x,y,z: uint32;
begin
x := uint16(Float2Int16(f.X)) shr 6;
y := uint16(Float2Int16(f.Y)) shr 6;
z := uint16(Float2Int16(f.Z)) shr 6;
result := (z shl 20)+ (y shl 10) + (x shl 0);
end;
(*function AsGL_INT_2_10_10_10_REV(f: TPoint3f): int32;
//pack 3 32-bit floats as 10 bit signed integers, assumes floats normalized to -1..1
var
x,y,z: uint16;
begin
x := uint16(Float2Int16(f.X)) shr 6;
y := uint16(Float2Int16(f.Y)) shr 6;
z := uint16(Float2Int16(f.Z)) shr 6;
result := (z shl 20)+ (y shl 10) + (x shl 0);
end; *)
function AsGL_INT_2_10_10_10_REV_T(f: TPoint3f; g: uint16): uint32;
//pack 3 32-bit floats as 10 bit signed integers, assumes floats normalized to -1..1 and uses the 2bit to a int between 0 and 3
var
a,x,y,z: uint32;
begin
x := uint16(Float2Int16(f.X)) shr 6;
y := uint16(Float2Int16(f.Y)) shr 6;
z := uint16(Float2Int16(f.Z)) shr 6;
a := g;
result := (a shl 30)+ (z shl 20)+ (y shl 10) + (x shl 0);
end;
{$IFDEF V4}
function v3v4(v3: TPoint3f): TPoint4f;
begin
result := pt4f(v3.x, v3.y, v3.z, 0.0);
end;
{$ENDIF}
procedure BuildDisplayList(var faces: TFaces; vertices: TVertices; vRGBA: TVertexRGBA; var vao, vbo: gluint; Clr: TRGBA);
const
kATTRIB_VERT = 0; //vertex XYZ are positions 0,1,2
kATTRIB_NORM = 3; //normal XYZ are positions 3,4,5
kATTRIB_CLR = 6; //color RGBA are positions 6,7,8,9
var
vnc: array of TVtxNormClr;
vNorm: array of TPoint3f;
vbo_point : GLuint;
fNorm: TPoint3f;
i: integer;
begin
//compute surface normals...
setlength(vNorm, length(vertices));
fNorm := ptf(0,0,0);
for i := 0 to (length(vertices)-1) do
vNorm[i] := fNorm;
for i := 0 to (length(faces)-1) do begin //compute the normal for each face
fNorm := getSurfaceNormal(vertices[faces[i].X], vertices[faces[i].Y], vertices[faces[i].Z]);
vectorAdd(vNorm[faces[i].X] , fNorm);
vectorAdd(vNorm[faces[i].Y] , fNorm);
vectorAdd(vNorm[faces[i].Z] , fNorm);
end;
for i := 0 to (length(vertices)-1) do
vectorNormalize(vNorm[i]);
//create VBO that combines vertex, normal and color information
setlength(vnc, length(vertices));
//set every vertex
for i := 0 to (length(vertices) -1) do begin
{$IFDEF V4}
vnc[i].vtx := v3v4(vertices[i]);
{$ELSE}
vnc[i].vtx := vertices[i];
{$ENDIF}
{$IFDEF USE_GL_INT_2_10_10_10}
vnc[i].norm := AsGL_INT_2_10_10_10_REV(vNorm[i]);
{$ELSE}
vnc[i].norm := pt3_pt4(vNorm[i], 1.0);
{$ENDIF}
vnc[i].clr := clr;
//fNorm := getSurfaceNormal(vertices[faces[i].X], vertices[faces[i].Y], vertices[faces[i].Z]);
end;
if length(vRGBA) = length(vertices) then
for i := 0 to (length(vertices) -1) do
vnc[i].clr := vRGBA[i];
vbo_point := 0;
glGenBuffers(1, @vbo_point);
glBindBuffer(GL_ARRAY_BUFFER, vbo_point);
glBufferData(GL_ARRAY_BUFFER, Length(vnc)*SizeOf(TVtxNormClr), @vnc[0], GL_STATIC_DRAW);
glBindBuffer(GL_ARRAY_BUFFER, 0);
// Prepare vertrex array object (VAO)
//if vao <> 0 then
// glDeleteVertexArrays(1,@vao);
glGenVertexArrays(1, @vao);
glBindVertexArray(vao);
//glBindBuffer(GL_ARRAY_BUFFER, gShader.vbo_point3d);
glBindBuffer(GL_ARRAY_BUFFER, vbo_point);
//Vertices
{$IFDEF V4}
glVertexAttribPointer(kATTRIB_VERT, 4, GL_FLOAT, kGL_FALSE, sizeof(TVtxNormClr), PChar(0));
{$ELSE}
glVertexAttribPointer(kATTRIB_VERT, 3, GL_FLOAT, kGL_FALSE, sizeof(TVtxNormClr), PChar(0));
{$ENDIF}
glEnableVertexAttribArray(kATTRIB_VERT);
//Normals typically stored as 3*32 bit floats (96 bytes), but we will pack them as 10-bit integers in a single 32-bit value with GL_INT_2_10_10_10_REV
// https://www.opengl.org/wiki/Vertex_Specification_Best_Practices
{$IFDEF USE_GL_INT_2_10_10_10}
glVertexAttribPointer(kATTRIB_NORM, 4, GL_INT_2_10_10_10_REV, kGL_FALSE, sizeof(TVtxNormClr), PChar(sizeof(TPoint3f)));
glVertexAttribPointer(kATTRIB_CLR, 4, GL_UNSIGNED_BYTE, kGL_TRUE, sizeof(TVtxNormClr), PChar(sizeof(int32)+ sizeof(TPoint3f)));
{$ELSE}
{$IFDEF USE_FLOAT16}
glVertexAttribPointer(kATTRIB_NORM, 4, GL_HALF_FLOAT, kGL_FALSE, sizeof(TVtxNormClr), PChar(kVertSz));
glVertexAttribPointer(kATTRIB_CLR, 4, GL_UNSIGNED_BYTE, kGL_TRUE, sizeof(TVtxNormClr), PChar(sizeof(TPoint4h) + kVertSz));
{$ELSE}
glVertexAttribPointer(kATTRIB_NORM, 4, GL_FLOAT, kGL_FALSE, sizeof(TVtxNormClr), PChar(sizeof(TPoint3f)));
glVertexAttribPointer(kATTRIB_CLR, 4, GL_UNSIGNED_BYTE, kGL_TRUE, sizeof(TVtxNormClr), PChar(sizeof(TPoint4f)+ sizeof(TPoint3f)));
{$ENDIF}
{$ENDIF}
glEnableVertexAttribArray(kATTRIB_NORM);
//Color
glEnableVertexAttribArray(kATTRIB_CLR);
glBindBuffer(GL_ARRAY_BUFFER, 0);
glBindVertexArray(0);
glGenBuffers(1, @vbo);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, vbo);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, Length(faces)*sizeof(TPoint3i), @faces[0], GL_STATIC_DRAW);
glDeleteBuffers(1, @vbo_point);
end; //BuildDisplayList()
procedure BuildDisplayListStrip(Indices: TInts; vertices, vNorm: TVertices; vRGBA: TVertexRGBA; vType: TInts; LineWidth: integer; var vao, vbo: gluint);
const
kATTRIB_VERT = 0; //vertex XYZ are positions 0,1,2
kATTRIB_NORM = 3; //normal XYZ are positions 3,4,5
kATTRIB_CLR = 6; //color RGBA are positions 6,7,8,9
const
kMx = (256*3+2);
kMx2 = (4*256*256+4*256+3);
var
vnc: array of TVtxNormClr;
vbo_point : GLuint;
i,j,k: integer;
DataCylinder: array[0..256,0..2] of single;
FinalDataCylinder: array[0..kMx] of UInt8;
DataSphere: array[0..256,0..256,0..3] of single;
//FinalDataSphere: array[0..kMx2] of Int8;
FinalDataSphere: array[0..kMx2] of UInt8;
RenderTexture: array [0..1] of GLuint;
angle, rad,tx,tz,d: single;
fx: single;
//{$DEFINE TIMEX}
{$IFDEF TIMEX}startTime: QWord; {$ENDIF}
begin
//create VBO that combines vertex, normal and color information
if length(vRGBA) <> length(vertices) then
exit;
setlength(vnc, length(vertices));
//set every vertex
{$IFDEF TIMEX}startTime := GetTickCount64();{$ENDIF}
for i := 0 to (length(vertices) -1) do begin
{$IFDEF V4}
vnc[i].vtx := v3v4(vertices[i]);
{$ELSE}
vnc[i].vtx := vertices[i];
{$ENDIF}
{$IFDEF USE_GL_INT_2_10_10_10}
vnc[i].norm := AsGL_INT_2_10_10_10_REV_T(vNorm[i],vType[i]);
{$ELSE}
vnc[i].norm := pt3_pt4(vNorm[i], vType[i]); //TODO vType
{$ENDIF}
vnc[i].clr := vRGBA[i];
end;
{$IFDEF TIMEX}writeln('Tracks Time ', (GetTickCount64-startTime)); {$ENDIF}
//Generating Cylinder Normal Map
for i := 0 to 256 do begin
angle := 180/256.0*i;
rad := angle * (Pi/180);
tx := Cos(rad);
tz := Sin(rad);
DataCylinder[i][0] := tx;
DataCylinder[i][1] := 0;
DataCylinder[i][2] := tz;
end;
for i:=0 to 256 do begin
d:=0.0;
for k:=0 to 2 do begin
d+=DataCylinder[i][k]*DataCylinder[i][k];
end;
d:=Sqrt(d);
for k:=0 to 2 do begin
DataCylinder[i][k] := 0.5*DataCylinder[i][k]/d+0.5;
end;
end;
//DataCylinder: array[0..256,0..2] of real;
for i:=0 to 256 do begin
for k:=0 to 2 do begin
fx := 255 * DataCylinder[i][k];
fx := min(max(fx, 0), 255);
FinalDataCylinder[3*i+k]:=round(fx);
end;
end;
glGenTextures(2, @RenderTexture);
glActiveTexture(GL_TEXTURE6);
glBindTexture(GL_TEXTURE_1D, RenderTexture[0]);
glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_1D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexImage1D(GL_TEXTURE_1D, 0, GL_RGBA8, 256, 0, GL_RGB, GL_UNSIGNED_BYTE, @FinalDataCylinder);
glUniform1i(glGetUniformLocation(gShader.programTrackID, pAnsiChar('normalmaptexture')), 6) ;
//Generating Sphere Normal Map
for i := 0 to 256 do begin
angle := 180/256.0*i;
rad := angle * (Pi/180);
tx := Cos(rad);
tz := Sin(rad);
for j:= 0 to 256 do begin
if((i-256.0/2.0)*(i-256.0/2.0)+(j-256.0/2.0)*(j-256.0/2.0)>(256.0/2.0)*(256.0/2.0)) then begin
DataSphere[i][j][0] := 0.0;
DataSphere[i][j][1] := 0.0;
DataSphere[i][j][2] := 0.0;
DataSphere[i][j][3] := 0.0;
end
else begin
DataSphere[i][j][0] := tx;
DataSphere[i][j][1] := 0;
DataSphere[i][j][2] := tz;
DataSphere[i][j][3] := 1.0;
end;
end;
end;
for i:=0 to 256 do begin
for j:=0 to 256 do begin
d:=0.0;
for k:=0 to 2 do begin
d+=DataSphere[i][j][k]*DataSphere[i][j][k];
end;
d:=Sqrt(d);
for k:=0 to 2 do begin
DataSphere[i][j][k] := 0.5*DataSphere[i][j][k]/d+0.5;
end;
end;
end;
for i:=0 to 256 do begin
for j:=0 to 256 do begin
for k:=0 to 3 do begin
fx :=DataSphere[i][j][k] * 255;
//fx := min(max(fx, -128), 127);
fx := min(max(fx, 0), 255);
FinalDataSphere[4*256*i+4*j+k]:=round(fx);
end;
end;
end;
glActiveTexture(GL_TEXTURE7);
glBindTexture(GL_TEXTURE_2D, RenderTexture[1]);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, 256,256, 0, GL_RGBA, GL_UNSIGNED_BYTE, @FinalDataSphere);
glUniform1i(glGetUniformLocation(gShader.programTrackID, pAnsiChar('normalmaptexturesphere')), 7) ;
glActiveTexture(GL_TEXTURE8); //guarantee that anywhere else use TEXTURE7
vbo_point := 0;
glGenBuffers(1, @vbo_point);
glBindBuffer(GL_ARRAY_BUFFER, vbo_point);
glBufferData(GL_ARRAY_BUFFER, Length(vnc)*SizeOf(TVtxNormClr), @vnc[0], GL_STATIC_DRAW);
glBindBuffer(GL_ARRAY_BUFFER, 0);
// Prepare vertrex array object (VAO)
//if vao <> 0 then
// glDeleteVertexArrays(1,@vao);
glGenVertexArrays(1, @vao);
glBindVertexArray(vao);
//glBindBuffer(GL_ARRAY_BUFFER, gShader.vbo_point3d);
glBindBuffer(GL_ARRAY_BUFFER, vbo_point);
//Vertices
{$IFDEF V4}
glVertexAttribPointer(kATTRIB_VERT, 4, GL_FLOAT, kGL_FALSE, sizeof(TVtxNormClr), PChar(0));
{$ELSE}
glVertexAttribPointer(kATTRIB_VERT, 3, GL_FLOAT, kGL_FALSE, sizeof(TVtxNormClr), PChar(0));
{$ENDIF}
glEnableVertexAttribArray(kATTRIB_VERT);
//Normals typically stored as 3*32 bit floats (96 bytes), but we will pack them as 10-bit integers in a single 32-bit value with GL_INT_2_10_10_10_REV
// https://www.opengl.org/wiki/Vertex_Specification_Best_Practices
{$IFDEF USE_GL_INT_2_10_10_10}
glVertexAttribPointer(kATTRIB_NORM, 4, GL_INT_2_10_10_10_REV, kGL_FALSE, sizeof(TVtxNormClr), PChar(sizeof(TPoint3f)));
glVertexAttribPointer(kATTRIB_CLR, 4, GL_UNSIGNED_BYTE, kGL_TRUE, sizeof(TVtxNormClr), PChar(sizeof(int32)+ sizeof(TPoint3f)));
{$ELSE}
{$IFDEF USE_FLOAT16}
glVertexAttribPointer(kATTRIB_NORM, 4, GL_HALF_FLOAT, kGL_FALSE, sizeof(TVtxNormClr), PChar(kVertSz));
glVertexAttribPointer(kATTRIB_CLR, 4, GL_UNSIGNED_BYTE, kGL_TRUE, sizeof(TVtxNormClr), PChar(sizeof(TPoint4h)+ kVertSz));
{$ELSE}
glVertexAttribPointer(kATTRIB_NORM, 4, GL_FLOAT, kGL_FALSE, sizeof(TVtxNormClr), PChar(sizeof(TPoint3f)));
glVertexAttribPointer(kATTRIB_CLR, 4, GL_UNSIGNED_BYTE, kGL_TRUE, sizeof(TVtxNormClr), PChar(sizeof(TPoint4f)+ sizeof(TPoint3f)));
{$ENDIF}
{$ENDIF}
glEnableVertexAttribArray(kATTRIB_NORM);
//Color
glEnableVertexAttribArray(kATTRIB_CLR);
glBindBuffer(GL_ARRAY_BUFFER, 0);
glBindVertexArray(0);
glGenBuffers(1, @vbo);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, vbo);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, Length(Indices)*sizeof(int32), @Indices[0], GL_STATIC_DRAW);
glDeleteBuffers(1, @vbo_point);
end; //BuildDisplayListStrip()
procedure SetLighting (var lPrefs: TPrefs);
begin
//Done by shader
end;
procedure nSetOrtho (w,h: integer; Distance, MaxDistance: single; isMultiSample, isPerspective: boolean);
const
kScaleX = 0.7;
var
aspectRatio, scaleX: single;
z: integer;
begin
if (isMultiSample) then //and (gZoom <= 1) then
z := 2
else
z := 1;
glViewport( 0, 0, w*z, h*z );
ScaleX := kScaleX * Distance;
AspectRatio := w / h;
if isPerspective then
ngluPerspective(40.0, w/h, 0.01, MaxDistance+1)
else begin
if AspectRatio > 1 then //Wide window xxx
nglOrtho (-ScaleX * AspectRatio, ScaleX * AspectRatio, -ScaleX, ScaleX, 0.0, 2.0) //Left, Right, Bottom, Top
else //Tall window
nglOrtho (-ScaleX, ScaleX, -ScaleX/AspectRatio, ScaleX/AspectRatio, 0.0, 2.0); //Left, Right, Bottom, Top
end;
end;
procedure SetModelView(w,h: integer; isMultiSample: boolean; var lPrefs: TPrefs; origin : TPoint3f; displace,scale, distance, elevation, azimuth: single; isFlipDisplaceLHRH: boolean = false);
begin
nglMatrixMode(nGL_PROJECTION);
nglLoadIdentity();
nSetOrtho(w, h, Distance, kMaxDistance, isMultiSample, lPrefs.Perspective);
nglTranslatef(lPrefs.ScreenPan.X, lPrefs.ScreenPan.Y, 0 );
nglMatrixMode (nGL_MODELVIEW);
nglLoadIdentity ();
//object size normalized to be -1...+1 in largest dimension.
//closest/furthest possible vertex is therefore -1.73..+1.73 (e.g. cube where corner is sqrt(1+1+1) from origin)
nglScalef(0.5/Scale, 0.5/Scale, 0.5/Scale);
if lPrefs.Perspective then
nglTranslatef(0,0, -Scale*2*Distance )
else
nglTranslatef(0,0, -Scale*2 );
nglRotatef(90-Elevation,-1,0,0);
nglRotatef(-Azimuth,0,0,1);
if isFlipDisplaceLHRH then begin
nglTranslatef(-origin.X+(displace* scale), -origin.Y, -origin.Z);
nglRotatef(lPrefs.PryLHRH,0,0,1);
end else begin
nglTranslatef(-origin.X+(-displace* scale), -origin.Y, -origin.Z);
nglRotatef(-lPrefs.PryLHRH,0,0,1);
end;
nglRotatef(lPrefs.Pitch,1,0,0);
end;
{$IFDEF LHRH}
procedure DrawScene(w,h: integer; isFlipMeshOverlay, isOverlayClipped,isDrawMesh, isMultiSample: boolean; var lPrefs: TPrefs; origin : TPoint3f; ClipPlane: TPoint4f; scale, distance, elevation, azimuth: single; var lMesh: TMeshLHRH; lNode: TMesh; lTrack: TTrack);
{$ELSE}
procedure DrawScene(w,h: integer; isFlipMeshOverlay, isOverlayClipped, isDrawMesh, isMultiSample: boolean; var lPrefs: TPrefs; origin : TPoint3f; ClipPlane: TPoint4f; scale, distance, elevation, azimuth: single; var lMesh,lNode: TMesh; lTrack: TTrack);
{$ENDIF}
//procedure DrawScene(w,h: integer; isDrawMesh, isMultiSample: boolean; var lPrefs: TPrefs; origin : TPoint3f; ClipPlane: TPoint4f; scale, distance, elevation, azimuth: single; var lMesh,lNode: TMesh; lTrack: TTrack);
var
clr: TRGBA;
displace: float;
XRay : integer = kXRayNo;
begin
clr := asRGBA(lPrefs.ObjColor);
//glClearColor( Red(lPrefs.backColor)/255, Green(lPrefs.backColor)/255, Blue(lPrefs.backColor)/255, 1.0); //Set blue background
glClearColor(red(lPrefs.BackColor)/255, green(lPrefs.BackColor)/255, blue(lPrefs.BackColor)/255, 0); //Set background
glClear(GL_COLOR_BUFFER_BIT or GL_DEPTH_BUFFER_BIT);
glEnable(GL_DEPTH_TEST);
if (gShader.isXRay) then begin
if (red(lPrefs.BackColor) + green(lPrefs.BackColor) + blue(lPrefs.BackColor)) > 384 then
XRay := kXRayBrightBackground
else
XRay := kXRayDarkBackground;
end;
//distance *= 0.77;
if (length(lMesh.faces) > 0) then
displace := lMesh.bilateralOffset + lPrefs.DisplaceLHRH
else
displace := lPrefs.DisplaceLHRH ;
SetModelView(w,h, isMultiSample, lPrefs, origin, displace, scale, distance, elevation, azimuth);
if lTrack.n_count > 0 then begin
if lTrack.isTubes then
RunMeshGLSL (asPt4f(2,ClipPlane.Y,ClipPlane.Z,ClipPlane.W), lPrefs.ShaderForBackgroundOnly) //disable clip plane
else begin
if lPrefs.CoreTrackDisableDepth then begin
glEnable(GL_DEPTH_TEST);
glDisable(GL_BLEND);
end;
if isMultiSample then
RunTrackGLSL(lTrack.LineWidth, w * 2, h * 2)
else
RunTrackGLSL(lTrack.LineWidth, w, h);
if lPrefs.CoreTrackDisableDepth then
glEnable(GL_BLEND);
//glBlendEquation(GL_FUNC_ADD);
//glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
end;
lTrack.DrawGL;
end;
if length(lNode.nodes) > 0 then begin
RunMeshGLSL (asPt4f(2,ClipPlane.Y,ClipPlane.Z,ClipPlane.W), lPrefs.ShaderForBackgroundOnly); //disable clip plane
lNode.DrawGL(clr, clipPlane, isFlipMeshOverlay, XRay);
end;
if (length(lMesh.faces) > 0) then begin
lMesh.isVisible := isDrawMesh;
{$IFDEF LHRH}if not lMesh.isShowLH then lMesh.isVisible := false; {$ENDIF}
RunMeshGLSL (clipPlane, false);
if not isOverlayClipped then
lMesh.DrawGL(clr, asPt4f(2,ClipPlane.Y,ClipPlane.Z,ClipPlane.W), isFlipMeshOverlay, XRay )
else
lMesh.DrawGL(clr, clipPlane, isFlipMeshOverlay, XRay);
lMesh.isVisible := true;
end;
{$IFDEF LHRH}
//nglMatrixMode (nGL_MODELVIEW);
if (lMesh.isShowRH) and (length(lMesh.RH.faces) > 0) then begin
displace := lMesh.RH.bilateralOffset + lPrefs.DisplaceLHRH;
SetModelView(w,h, isMultiSample, lPrefs, origin, displace, scale, distance, elevation, azimuth, true);
lMesh.RH.isVisible := isDrawMesh;