Normand Briere
2019-06-16 372b7fd481a476cd659713a4a01bf28bf6760cbe
CameraPane.java
....@@ -56,8 +56,6 @@
5656 static int CURRENTANTIALIAS = 0; // 1;
5757 /*static*/ boolean RENDERSHADOW = true;
5858 /*static*/ int RENDERPROGRAM = 2; // 0 == none, 1 == fast, 2 == normal
59
- static boolean ANIMATION = false;
60
- static String filename;
6159
6260 boolean DISPLAYTEXT = false;
6361 //boolean REDUCETEXTURE = true;
....@@ -92,6 +90,8 @@
9290
9391 static int tickcount = 0; // slow pose issue
9492
93
+static boolean BUTTONLESSWHEEL = false;
94
+static boolean ZOOMBOXMODE = false;
9595 static boolean BOXMODE = false;
9696 static boolean IMAGEFLIP = false;
9797 static boolean SMOOTHFOCUS = false;
....@@ -106,7 +106,7 @@
106106 static boolean OEIL = true;
107107 static boolean OEILONCE = false; // do oeilon then oeiloff
108108 static boolean LOOKAT = true;
109
-static boolean RANDOM = true; // false;
109
+static boolean SWITCH = true; // false;
110110 static boolean HANDLES = false; // selection doesn't work!!
111111 static boolean PAINTMODE = false;
112112
....@@ -149,12 +149,13 @@
149149 defaultcaps.setAccumBlueBits(16);
150150 defaultcaps.setAccumAlphaBits(16);
151151 }
152
- static CameraPane theRenderer;
153
-
152
+
153
+ private File defaultDirectory = javax.swing.filechooser.FileSystemView.getFileSystemView().getDefaultDirectory();
154
+
154155 void SetAsGLRenderer(boolean b)
155156 {
156157 isRenderer = b;
157
- theRenderer = this;
158
+ Globals.theRenderer = this;
158159 }
159160
160161 CameraPane(Object3D o, Camera cam, boolean withcontext)
....@@ -192,9 +193,43 @@
192193
193194 /// INTERFACE
194195
196
+ public javax.media.opengl.GL GetGL0()
197
+ {
198
+ return null;
199
+ }
200
+
201
+ public int GenList()
202
+ {
203
+ javax.media.opengl.GL gl = GetGL();
204
+ return gl.glGenLists(1);
205
+ }
206
+
207
+ public void NewList(int id)
208
+ {
209
+ javax.media.opengl.GL gl = GetGL();
210
+ gl.glNewList(id, gl.GL_COMPILE); //_AND_EXECUTE);
211
+ }
212
+
213
+ public void CallList(int id)
214
+ {
215
+ javax.media.opengl.GL gl = GetGL();
216
+ gl.glCallList(id);
217
+ }
218
+
219
+ public void EndList()
220
+ {
221
+ javax.media.opengl.GL gl = GetGL();
222
+ gl.glEndList();
223
+ }
224
+
195225 public boolean IsBoxMode()
196226 {
197227 return BOXMODE;
228
+ }
229
+
230
+ public boolean IsZoomBoxMode()
231
+ {
232
+ return ZOOMBOXMODE;
198233 }
199234
200235 public void ClearDepth()
....@@ -236,9 +271,14 @@
236271 return this.ambientOcclusion;
237272 }
238273
274
+ public boolean IsDebugSelection()
275
+ {
276
+ return DEBUG_SELECTION;
277
+ }
278
+
239279 public boolean IsFrozen()
240280 {
241
- boolean selectmode = this.DrawMode() == SELECTION || CameraPane.DEBUG_SELECTION;
281
+ boolean selectmode = this.DrawMode() == SELECTION || this.IsDebugSelection();
242282
243283 return !selectmode && cameracount == 0; // != 0;
244284 }
....@@ -259,9 +299,19 @@
259299 return lightCamera;
260300 }
261301
302
+ public Camera ManipCamera()
303
+ {
304
+ return manipCamera;
305
+ }
306
+
262307 public Camera RenderCamera()
263308 {
264309 return renderCamera;
310
+ }
311
+
312
+ public Camera[] Cameras()
313
+ {
314
+ return cameras;
265315 }
266316
267317 public void PushMaterial(Object3D obj, boolean selected)
....@@ -408,13 +458,13 @@
408458
409459 javax.media.opengl.GL gl = display.GetGL();
410460
411
- boolean selectmode = display.DrawMode() == display.SELECTION || CameraPane.DEBUG_SELECTION;
461
+ boolean selectmode = display.DrawMode() == display.SELECTION || display.IsDebugSelection();
412462
413463 //System.out.println("p = " + pv + "; q = " + qv + "; r = " + rv);
414464 if (!selectmode) // display.drawMode != display.SELECTION) // && display.drawMode != display.SHADOW) // (attributes & FILL) != 0)
415465 {
416466 //gl.glBegin(gl.GL_TRIANGLES);
417
- boolean hasnorm = pv.norm != null; // && (pv.norm.x != 0 || pv.norm.y != 0 || pv.norm.z != 0);
467
+ boolean hasnorm = pv.norm != null && (pv.norm.x != 0 || pv.norm.y != 0 || pv.norm.z != 0);
418468 if (!hasnorm)
419469 {
420470 // System.out.println("FUCK!!");
....@@ -760,7 +810,621 @@
760810 //// tris.postdraw(this);
761811 }
762812
813
+ static Camera localcamera = new Camera();
814
+ static cVector from = new cVector();
815
+ static cVector to = new cVector();
816
+
817
+ public void PrepOcclusion(BoundaryRep br, double[][] transform)
818
+ {
819
+ CameraPane cp = this;
820
+
821
+ Camera keep = cp.RenderCamera();
822
+ cp.renderCamera = localcamera;
823
+
824
+ if (br.trimmed)
825
+ {
826
+ float[] colors = new float[br.positions.length / 3];
827
+
828
+ int i3 = 0;
829
+ for (int i = 0; i < br.positions.length / 3; i++, i3 += 3)
830
+ {
831
+ if (br.normals[i3] == 0 && br.normals[i3+1] == 0 && br.normals[i3+2] == 0)
832
+ continue;
833
+
834
+ from.set(br.positions[i3], br.positions[i3 + 1], br.positions[i3 + 2]);
835
+ to.set(br.positions[i3] + br.normals[i3],
836
+ br.positions[i3 + 1] + br.normals[i3 + 1],
837
+ br.positions[i3 + 2] + br.normals[i3 + 2]);
838
+ LA.xformPos(from, transform, from);
839
+ LA.xformPos(to, transform, to); // RIGID ONLY
840
+ localcamera.setAim(from, to);
841
+
842
+ CameraPane.occlusionbuffer.display();
843
+
844
+ if (CameraPane.DEBUG_OCCLUSION)
845
+ cp.display(); // debug
846
+
847
+ colors[i] = cp.vertexOcclusion.r;
848
+ //colors[i3 + 1] = cp.vertexOcclusion.g;
849
+ //colors[i3 + 2] = cp.vertexOcclusion.b;
850
+
851
+ if ((i % 100) == 0 && i != 0)
852
+ {
853
+ Globals.theRenderer.setCursor(java.awt.Cursor.getPredefinedCursor(java.awt.Cursor.WAIT_CURSOR));
854
+ //System.out.println("Color = " + cp.vertexOcclusion.r + ", " + cp.vertexOcclusion.g + ", " + cp.vertexOcclusion.b + "; " + (int)(100.0*i/(positions.length/3)) + "% done");
855
+ System.out.println((int) (100.0 * i / (br.positions.length / 3)) + "% (" + i + " of " + (br.positions.length / 3) + ")");
856
+ }
857
+ }
858
+
859
+ br.colors = colors;
860
+ }
861
+ else
862
+ {
863
+ for (int i = 0; i < br.VertexCount(); i++)
864
+ {
865
+ Vertex v = br.GetVertex(i);
866
+
867
+ if (v.norm == null || v.norm.x == 0 && v.norm.y == 0 && v.norm.z == 0)
868
+ continue;
869
+
870
+ from.set(v.x, v.y, v.z);
871
+ to.set(v.x+v.norm.x, v.y+v.norm.y, v.z+v.norm.z);
872
+ LA.xformPos(from, transform, from);
873
+ LA.xformPos(to, transform, to); // RIGID ONLY
874
+ localcamera.setAim(from, to);
875
+
876
+ CameraPane.occlusionbuffer.display();
877
+
878
+ if (CameraPane.DEBUG_OCCLUSION)
879
+ cp.display(); // debug
880
+
881
+ v.AO = cp.vertexOcclusion.r;
882
+
883
+ if ((i % 100) == 0 && i != 0)
884
+ {
885
+ Globals.theRenderer.setCursor(java.awt.Cursor.getPredefinedCursor(java.awt.Cursor.WAIT_CURSOR));
886
+ //System.out.println("Color = " + cp.vertexOcclusion.r + ", " + cp.vertexOcclusion.g + ", " + cp.vertexOcclusion.b + "; " + (int)(100.0*i/(positions.length/3)) + "% done");
887
+ System.out.println((int) (100.0 * i / br.VertexCount()) + "% (" + i + " of " + br.VertexCount() + ")");
888
+ }
889
+ }
890
+ }
891
+
892
+ //System.out.println("done.");
893
+
894
+ cp.renderCamera = keep;
895
+ }
896
+
897
+ void DrawPointFLow(PointFlow pointFlow, Object3D /*Composite*/ root, boolean selected, boolean blocked)
898
+ {
899
+ CameraPane display = this;
900
+ pointFlow.CreateHT();
901
+
902
+ float r = display.modelParams0[0];
903
+ float g = display.modelParams0[1];
904
+ float b = display.modelParams0[2];
905
+ float opacity = display.modelParams5[1];
906
+
907
+ //final GL gl = GLU.getCurrentGL();
908
+ GL gl = display.GetGL(); // getGL();
909
+
910
+ int s = pointFlow.points.size();
911
+
912
+ boolean cf = gl.glIsEnabled(gl.GL_CULL_FACE);
913
+ gl.glEnable(gl.GL_CULL_FACE);
914
+
915
+ for (int i=s; --i>=0;)
916
+ //for (int i=0; i<s; i++)
917
+ {
918
+ cVector v = pointFlow.points.get(i);
919
+
920
+ double mindist = Double.MAX_VALUE;
921
+
922
+ double size = pointFlow.minimumSize;
923
+
924
+ double distancenext = 0;
925
+
926
+ if (i > 0)
927
+ {
928
+ cVector w = pointFlow.points.get(i-1);
929
+
930
+ double dist = w.distance(v);
931
+
932
+ distancenext = dist;
933
+
934
+ if (mindist > dist)
935
+ {
936
+ mindist = dist;
937
+ size = mindist*pointFlow.resizefactor;
938
+ }
939
+ }
940
+
941
+ if (i < s-1)
942
+ {
943
+ cVector w = pointFlow.points.get(i+1);
944
+
945
+ double dist = w.distance(v);
946
+
947
+ if (mindist > dist)
948
+ {
949
+ mindist = dist;
950
+ size = mindist*pointFlow.resizefactor;
951
+ }
952
+ }
953
+
954
+ if (size < pointFlow.minimumSize)
955
+ size = pointFlow.minimumSize;
956
+ if (size > pointFlow.maximumSize)
957
+ size = pointFlow.maximumSize;
958
+
959
+ double tx = v.x;
960
+ double ty = v.y;
961
+ double tz = v.z;
962
+
963
+ // if (tx == 0 && ty == 0 && tz == 0)
964
+ // continue;
965
+
966
+ gl.glMatrixMode(gl.GL_TEXTURE);
967
+ gl.glPushMatrix();
968
+ pointFlow.texmat[12] = pointFlow.texmat[13] = pointFlow.texmat[14] = i;
969
+
970
+ gl.glMultMatrixf(pointFlow.texmat, 0);
971
+
972
+ gl.glMatrixMode(gl.GL_MODELVIEW);
973
+ gl.glPushMatrix();
974
+
975
+ gl.glTranslated(tx,ty,tz);
976
+
977
+ gl.glScaled(size,size,size);
978
+
979
+// float cr = colorBuf.get(index4);
980
+// float cg = colorBuf.get(index4+1);
981
+// float cb = colorBuf.get(index4+2);
982
+// float ca = colorBuf.get(index4+3);
983
+//
984
+// display.modelParams0[0] = r * cr;
985
+// display.modelParams0[1] = g * cg;
986
+// display.modelParams0[2] = b * cb;
987
+//
988
+// display.modelParams5[1] = opacity * ca;
989
+//
990
+// gl.glProgramEnvParameter4fvARB(gl.GL_FRAGMENT_PROGRAM_ARB, 0, display.modelParams0, 0);
991
+// gl.glProgramEnvParameter4fvARB(gl.GL_FRAGMENT_PROGRAM_ARB, 5, display.modelParams5, 0);
992
+//
993
+// RandomNode.globalseed = (int)sizeBuf.get(index3+2); // i;
994
+// RandomNode.globalseed2 = RandomNode.globalseed;
995
+//
996
+//// gl.glColor4f(cr,cg,cb,ca);
997
+// // gl.glScalef(1024/16,1024/16,1024/16);
998
+ pointFlow.geo.Draw/*Node*/(display,null,selected, blocked);
999
+
1000
+ gl.glPopMatrix();
1001
+
1002
+ double step = size/4; //
1003
+
1004
+ if (i == 0 || size == 0 || distancenext > 8*size || distancenext < step)
1005
+ continue;
1006
+
1007
+ int nbsteps = (int)(distancenext/step);
1008
+
1009
+ step = distancenext/nbsteps;
1010
+
1011
+ cVector next = pointFlow.points.get(i-1);
1012
+
1013
+ tmp.set(next);
1014
+ tmp.sub(v);
1015
+ tmp.normalize();
1016
+ tmp.mul(step);
1017
+
1018
+ // calculate next size
1019
+ mindist = Double.MAX_VALUE;
1020
+
1021
+ double nextsize = pointFlow.minimumSize;
1022
+
1023
+ if (i > 1)
1024
+ {
1025
+ cVector w = pointFlow.points.get(i-2);
1026
+
1027
+ double dist = w.distance(next);
1028
+
1029
+ if (mindist > dist)
1030
+ {
1031
+ mindist = dist;
1032
+ nextsize = mindist*pointFlow.resizefactor;
1033
+ }
1034
+ }
1035
+
1036
+ double dist = v.distance(next);
1037
+
1038
+ if (mindist > dist)
1039
+ {
1040
+ mindist = dist;
1041
+ nextsize = mindist*pointFlow.resizefactor;
1042
+ }
1043
+
1044
+ if (nextsize < pointFlow.minimumSize)
1045
+ nextsize = pointFlow.minimumSize;
1046
+ if (nextsize > pointFlow.maximumSize)
1047
+ nextsize = pointFlow.maximumSize;
1048
+ //
1049
+
1050
+ double count = 0;
1051
+
1052
+ while (distancenext > 0.000000001) // step
1053
+ {
1054
+ gl.glPushMatrix();
1055
+
1056
+ gl.glTranslated(tx + tmp.x*count, ty + tmp.y*count, tz + tmp.z*count);
1057
+
1058
+ double K = count/nbsteps;
1059
+
1060
+ double intersize = K*nextsize + (1-K)*size;
1061
+
1062
+ gl.glScaled(intersize,intersize,intersize);
1063
+
1064
+ pointFlow.geo.Draw/*Node*/(display,null,selected,blocked);
1065
+
1066
+ count++;
1067
+
1068
+ distancenext -= step;
1069
+
1070
+ gl.glPopMatrix();
1071
+ }
1072
+
1073
+ if (count != nbsteps)
1074
+ assert(count == nbsteps);
1075
+
1076
+ // gl.glScalef(16.0f/1024,16.0f/1024,16.0f/1024);
1077
+ //gl.glTranslatef(-tx,-ty,-tz);
1078
+
1079
+ gl.glMatrixMode(gl.GL_TEXTURE);
1080
+ gl.glPopMatrix();
1081
+ }
1082
+
1083
+ if (!cf)
1084
+ gl.glDisable(gl.GL_CULL_FACE);
1085
+
1086
+// display.modelParams0[0] = r;
1087
+// display.modelParams0[1] = g;
1088
+// display.modelParams0[2] = b;
1089
+//
1090
+// display.modelParams5[1] = opacity;
1091
+//
1092
+// gl.glProgramEnvParameter4fvARB(gl.GL_FRAGMENT_PROGRAM_ARB, 0, display.modelParams0, 0);
1093
+// gl.glProgramEnvParameter4fvARB(gl.GL_FRAGMENT_PROGRAM_ARB, 5, display.modelParams5, 0);
1094
+
1095
+ gl.glMatrixMode(gl.GL_MODELVIEW);
1096
+ }
1097
+
1098
+ public void DrawBox(cVector min, cVector max)
1099
+ {
1100
+ javax.media.opengl.GL gl = GetGL();
1101
+ gl.glBegin(gl.GL_LINES);
1102
+
1103
+ gl.glVertex3d(min.x, min.y, min.z);
1104
+ gl.glVertex3d(min.x, min.y, max.z);
1105
+ gl.glVertex3d(min.x, min.y, min.z);
1106
+ gl.glVertex3d(min.x, max.y, min.z);
1107
+ gl.glVertex3d(min.x, min.y, min.z);
1108
+ gl.glVertex3d(max.x, min.y, min.z);
1109
+
1110
+ gl.glVertex3d(max.x, max.y, max.z);
1111
+ gl.glVertex3d(min.x, max.y, max.z);
1112
+ gl.glVertex3d(max.x, max.y, max.z);
1113
+ gl.glVertex3d(max.x, min.y, max.z);
1114
+ gl.glVertex3d(max.x, max.y, max.z);
1115
+ gl.glVertex3d(max.x, max.y, min.z);
1116
+
1117
+ gl.glEnd();
1118
+ }
1119
+
1120
+ public void DrawGeometry(BoundaryRep bRep, boolean flipV, boolean selectmode)
1121
+ {
1122
+ int[] strips = bRep.getRawIndices();
1123
+
1124
+ javax.media.opengl.GL gl = GetGL();
1125
+
1126
+ // TRIANGLE STRIP ARRAY
1127
+ if (bRep.trimmed)
1128
+ {
1129
+ float[] v = bRep.getRawVertices();
1130
+ float[] n = bRep.getRawNormals();
1131
+ float[] c = bRep.getRawColors();
1132
+ float[] uv = bRep.getRawUVMap();
1133
+
1134
+ int count2 = 0;
1135
+ int count3 = 0;
1136
+
1137
+ if (n.length > 0)
1138
+ {
1139
+ for (int i = 0; i < strips.length; i++)
1140
+ {
1141
+ gl.glBegin(gl.GL_TRIANGLE_STRIP);
1142
+
1143
+ /*
1144
+ boolean locked = false;
1145
+ float eps = 0.1f;
1146
+ boolean wrap = CameraPane.UVWRAP; // true; // UV WRAP TEXTURE ISSUE: true = artifacts, false = nice
1147
+
1148
+ int dot = 0;
1149
+
1150
+ if ((dot&1) == 0)
1151
+ dot |= (Math.abs(qv.s - pv.s) < eps && Math.abs(qv.t - pv.t) < eps) ? 3 : 1;
1152
+
1153
+ if (wrap || (dot&2) != 0) // Math.abs(qv.s - pv.s) < eps && Math.abs(qv.t - pv.t) < eps)
1154
+ gl.glTexCoord2f((float) qv.s, (float) qv.t);
1155
+ else
1156
+ {
1157
+ locked = true;
1158
+ gl.glTexCoord2f((float) pv.s, (float) pv.t);
1159
+ }
1160
+ //System.out.println("vertexq = " + qv.x + ", " + qv.y + ", " + qv.z);
1161
+ gl.glVertex3f((float) qv.x, (float) qv.y, (float) qv.z);
1162
+ if (hasnorm)
1163
+ {
1164
+ //System.out.println("normalr = " + rv.norm.x + ", " + rv.norm.y + ", " + rv.norm.z);
1165
+ gl.glNormal3f((float) rv.norm.x, (float) rv.norm.y, (float) rv.norm.z);
1166
+ }
1167
+
1168
+ if ((dot&4) == 0)
1169
+ dot |= (Math.abs(rv.s - pv.s) < eps && Math.abs(rv.t - pv.t) < eps) ? 12 : 4;
1170
+
1171
+ if (wrap || !locked && (dot&8) != 0)
1172
+ gl.glTexCoord2f((float) rv.s, (float) rv.t);
1173
+ else
1174
+ gl.glTexCoord2f((float) pv.s, (float) pv.t);
1175
+
1176
+ f.dot = dot;
1177
+ */
1178
+
1179
+ if (!selectmode)
1180
+ {
1181
+ if (n[count3] != 0 || n[count3 + 1] != 0 || n[count3 + 2] != 0)
1182
+ {
1183
+ gl.glNormal3f(n[count3], n[count3 + 1], n[count3 + 2]);
1184
+ } else
1185
+ {
1186
+ gl.glNormal3f(0, 0, 1);
1187
+ }
1188
+
1189
+ if (c != null)
1190
+ //System.out.println("glcolor = " + c[count3] + ", " + c[count3+1] + ", " + c[count3+2]);
1191
+ {
1192
+ gl.glColor4f(c[count3/3], c[count3/3 /* + 1*/], c[count3/3 /* + 2*/], 1);
1193
+ }
1194
+ }
1195
+ if (flipV)
1196
+ gl.glTexCoord2f(uv[count2], 1-uv[count2 + 1]);
1197
+ else
1198
+ gl.glTexCoord2f(uv[count2], uv[count2 + 1]);
1199
+ //System.out.println("vertex1 = " + v[count3] + ", " + v[count3+1] + ", " + v[count3+2]);
1200
+ gl.glVertex3f(v[count3], v[count3 + 1], v[count3 + 2]);
1201
+
1202
+ count2 += 2;
1203
+ count3 += 3;
1204
+ if (!selectmode)
1205
+ {
1206
+ if (n[count3] != 0 || n[count3 + 1] != 0 || n[count3 + 2] != 0)
1207
+ {
1208
+ gl.glNormal3f(n[count3], n[count3 + 1], n[count3 + 2]);
1209
+ } else
1210
+ {
1211
+ gl.glNormal3f(0, 0, 1);
1212
+ }
1213
+ if (c != null)
1214
+ {
1215
+ gl.glColor4f(c[count3/3], c[count3/3 /* + 1*/], c[count3/3 /* + 2*/], 1);
1216
+ }
1217
+ }
1218
+ if (flipV)
1219
+ gl.glTexCoord2f(uv[count2], 1-uv[count2 + 1]);
1220
+ else
1221
+ gl.glTexCoord2f(uv[count2], uv[count2 + 1]);
1222
+ //System.out.println("vertex2 = " + v[count3] + ", " + v[count3+1] + ", " + v[count3+2]);
1223
+ gl.glVertex3f(v[count3], v[count3 + 1], v[count3 + 2]);
1224
+
1225
+ count2 += 2;
1226
+ count3 += 3;
1227
+ for (int j = 0; j < strips[i] - 2; j++)
1228
+ {
1229
+ //gl.glTexCoord2d(...);
1230
+ if (!selectmode)
1231
+ {
1232
+ if (n[count3] != 0 || n[count3 + 1] != 0 || n[count3 + 2] != 0)
1233
+ {
1234
+ gl.glNormal3f(n[count3], n[count3 + 1], n[count3 + 2]);
1235
+ } else
1236
+ {
1237
+ gl.glNormal3f(0, 0, 1);
1238
+ }
1239
+ if (c != null)
1240
+ {
1241
+ gl.glColor4f(c[count3/3], c[count3/3 /* + 1*/], c[count3/3 /* + 2*/], 1);
1242
+ }
1243
+ }
1244
+
1245
+ if (flipV)
1246
+ gl.glTexCoord2f(uv[count2], 1-uv[count2 + 1]);
1247
+ else
1248
+ gl.glTexCoord2f(uv[count2], uv[count2 + 1]);
1249
+ //System.out.println("coord3 = " + uv[count2] + ", " + uv[count2+1]);
1250
+ gl.glVertex3f(v[count3], v[count3 + 1], v[count3 + 2]);
1251
+ count2 += 2;
1252
+ count3 += 3;
1253
+ }
1254
+
1255
+ gl.glEnd();
1256
+ }
1257
+ }
1258
+
1259
+ assert count3 == v.length;
1260
+ }
1261
+ else // !trimmed
1262
+ {
1263
+ int count = 0;
1264
+ for (int i = 0; i < strips.length; i++)
1265
+ {
1266
+ gl.glBegin(gl.GL_TRIANGLE_STRIP);
1267
+
1268
+ Vertex p = bRep.GetVertex(bRep.indices[count++]);
1269
+ Vertex q = bRep.GetVertex(bRep.indices[count++]);
1270
+
1271
+ drawVertex(gl, p, flipV, selectmode);
1272
+ drawVertex(gl, q, flipV, selectmode);
1273
+
1274
+ for (int j = 0; j < strips[i] - 2; j++)
1275
+ {
1276
+ Vertex r = bRep.GetVertex(bRep.indices[count++]);
1277
+
1278
+ // if (j%2 == 0)
1279
+ // drawFace(p, q, r, display, null);
1280
+ // else
1281
+ // drawFace(p, r, q, display, null);
1282
+
1283
+ // p = q;
1284
+ // q = r;
1285
+ drawVertex(gl, r, flipV, selectmode);
1286
+ }
1287
+
1288
+ gl.glEnd();
1289
+ }
1290
+ }
1291
+ }
1292
+
1293
+ static cSpring.Point3D temp = new cSpring.Point3D();
1294
+ static cSpring.Point3D temp2 = new cSpring.Point3D();
1295
+ static cSpring.Point3D temp3 = new cSpring.Point3D();
1296
+
1297
+ public void DrawDynamicMesh(cMesh mesh)
1298
+ {
1299
+ GL gl = GetGL(); // getGL();
1300
+
1301
+ cSpring.PhysicsController3D Phys = mesh.Phys;
1302
+
1303
+ gl.glDisable(gl.GL_LIGHTING);
1304
+
1305
+ gl.glLineWidth(1);
1306
+ gl.glColor3f(1,1,1);
1307
+ gl.glBegin(gl.GL_LINES);
1308
+ double scale = 0;
1309
+ int count = 0;
1310
+ for (int s=0; s<Phys.allSprings.size(); s++)
1311
+ {
1312
+ cSpring.Spring spring = Phys.allSprings.get(s);
1313
+ if(s == 0)
1314
+ {
1315
+ //System.out.println(" spring : " + spring.a.position + "; " + spring.b.position);
1316
+ }
1317
+ if (mesh.showsprings)
1318
+ {
1319
+ temp.set(spring.a.position);
1320
+ temp.add(spring.b.position);
1321
+ temp.mul(0.5);
1322
+ temp2.set(spring.a.position);
1323
+ temp2.sub(spring.b.position);
1324
+ temp2.mul(spring.restLength/2);
1325
+ temp.sub(temp2);
1326
+ gl.glVertex3f((float)temp.x, (float)temp.y, (float)temp.z);
1327
+ temp.add(temp2);
1328
+ temp.add(temp2);
1329
+ gl.glVertex3f((float)temp.x, (float)temp.y, (float)temp.z);
1330
+ }
1331
+
1332
+ if (spring.isHandle)
1333
+ continue;
1334
+
1335
+ //if (scale < spring.restLength)
1336
+ scale += spring.restLength;
1337
+ count++;
1338
+ }
1339
+ gl.glEnd();
1340
+
1341
+ if (count == 0)
1342
+ scale = 0.01;
1343
+ else
1344
+ scale /= count * 3;
1345
+
1346
+ //scale = 0.25;
1347
+
1348
+ if (mesh.ShowInfo())
1349
+ {
1350
+ gl.glLineWidth(4);
1351
+ for (int s=0; s<Phys.allNodes.size(); s++)
1352
+ {
1353
+ cSpring.DynamicNode node = Phys.allNodes.get(s);
1354
+ if (node.mass == 0)
1355
+ continue;
1356
+
1357
+ int i = node.springs==null?-1:node.springs.size();
1358
+ gl.glColor3f((i>>2)&1,(i>>1)&1,i&1);
1359
+ //temp.set(node.springForce.x, node.springForce.y, node.springForce.z);
1360
+ //temp.normalize();
1361
+ //gl.glColor3d((temp.x+1)/2, (temp.y+1)/2, (temp.z+1)/2);
1362
+ gl.glBegin(gl.GL_LINES);
1363
+ gl.glVertex3d(node.position.x, node.position.y, node.position.z);
1364
+ //gl.glVertex3d(node.position.x + node.normal.x*scale, node.position.y + node.normal.y*scale, node.position.z + node.normal.z*scale);
1365
+ gl.glVertex3d(node.position.x + mesh.bRep.GetVertex(s).norm.x*scale,
1366
+ node.position.y + mesh.bRep.GetVertex(s).norm.y*scale,
1367
+ node.position.z + mesh.bRep.GetVertex(s).norm.z*scale);
1368
+ gl.glEnd();
1369
+ }
1370
+
1371
+ gl.glLineWidth(8);
1372
+ for (int s=0; s<Phys.allNodes.size(); s++)
1373
+ {
1374
+ cSpring.DynamicNode node = Phys.allNodes.get(s);
1375
+
1376
+ if (node.springs != null)
1377
+ {
1378
+ for (int i=0; i<node.springs.size(); i+=1)
1379
+ {
1380
+ cSpring.DynamicNode f = node.springs.get(i).GetOther(node);
1381
+
1382
+ int c = i+1;
1383
+ // c = node.springs.get(i).nbcopies;
1384
+
1385
+ gl.glColor3f((c>>2)&1,(c>>1)&1,c&1);
1386
+ gl.glBegin(gl.GL_LINES);
1387
+ gl.glVertex3d(node.position.x, node.position.y, node.position.z);
1388
+ gl.glVertex3d(f.position.x/3+node.position.x*2/3, f.position.y/3+node.position.y*2/3, f.position.z/3+node.position.z*2/3);
1389
+ gl.glEnd();
1390
+ }
1391
+ }
1392
+ }
1393
+
1394
+ gl.glLineWidth(1);
1395
+ }
1396
+
1397
+ gl.glEnable(gl.GL_LIGHTING);
1398
+ }
1399
+
7631400 /// INTERFACE
1401
+
1402
+ public void StartTriangles()
1403
+ {
1404
+ javax.media.opengl.GL gl = GetGL();
1405
+ gl.glBegin(gl.GL_TRIANGLES);
1406
+ }
1407
+
1408
+ public void EndTriangles()
1409
+ {
1410
+ GetGL().glEnd();
1411
+ }
1412
+
1413
+ void drawVertex(javax.media.opengl.GL gl, Vertex pv, boolean flipV, boolean selectmode)
1414
+ {
1415
+ if (!selectmode)
1416
+ {
1417
+ gl.glNormal3f((float) pv.norm.x, (float) pv.norm.y, (float) pv.norm.z);
1418
+ gl.glColor4f(pv.AO, pv.AO, pv.AO, 1);
1419
+
1420
+ if (flipV)
1421
+ gl.glTexCoord2f((float) pv.s, 1-(float) pv.t);
1422
+ else
1423
+ gl.glTexCoord2f((float) pv.s, (float) pv.t);
1424
+ }
1425
+
1426
+ gl.glVertex3f((float) pv.x, (float) pv.y, (float) pv.z);
1427
+ }
7641428
7651429 void SetColor(Object3D obj, Vertex p0)
7661430 {
....@@ -955,18 +1619,18 @@
9551619 //col.getColorComponents(ColorSpace.getInstance(ColorSpace.CS_LINEAR_RGB), CameraPane.modelParams0);
9561620 if (!material.multiply)
9571621 {
958
- display.color = color;
1622
+ display.color = material.color;
9591623 display.saturation = material.modulation;
9601624 }
9611625 else
9621626 {
963
- display.color *= color*2;
1627
+ display.color *= material.color*2;
9641628 display.saturation *= material.modulation*2;
9651629 }
9661630
9671631 cColor.HSBtoRGB(display.color, display.saturation, 1, display.modelParams0);
9681632
969
- float[] colorV = GrafreeD.colorV;
1633
+ float[] colorV = Grafreed.colorV;
9701634
9711635 /**/
9721636 if (display.DrawMode() == display.DEFAULT) // && display.RENDERPROGRAM == 0)
....@@ -1226,7 +1890,7 @@
12261890 void PushMatrix(double[][] matrix)
12271891 {
12281892 // GrafreeD.tracein(matrix);
1229
- PushMatrix(matrix,1);
1893
+ PushMatrix(matrix, 1);
12301894 }
12311895
12321896 void PushMatrix()
....@@ -1323,7 +1987,7 @@
13231987
13241988 static int camerachangeframe;
13251989
1326
- boolean SetCamera(Camera cam)
1990
+ public boolean SetCamera(Camera cam)
13271991 {
13281992 // may 2014 if (cam == cameras[0] || cam == cameras[1])
13291993 // return false;
....@@ -1451,33 +2115,6 @@
14512115 mainDL ^= true;
14522116 }
14532117
1454
- void ToggleTexture()
1455
- {
1456
- textureon ^= true;
1457
- }
1458
-
1459
- void ToggleLive()
1460
- {
1461
- Globals.setLIVE(Globals.isLIVE() ^ true);
1462
-
1463
- System.err.println("LIVE = " + Globals.isLIVE());
1464
-
1465
- if (!Globals.isLIVE()) // save sound
1466
- GrafreeD.savesound = true; // wav.save();
1467
- // else
1468
- repaint(); // start loop // may 2013
1469
- }
1470
-
1471
- void ToggleSupport()
1472
- {
1473
- SUPPORT ^= true;
1474
- }
1475
-
1476
- void ToggleAbort()
1477
- {
1478
- ABORTMODE ^= true;
1479
- }
1480
-
14812118 void ToggleFullScreen()
14822119 {
14832120 FULLSCREEN ^= true;
....@@ -1488,72 +2125,94 @@
14882125 Globals.CROWD ^= true;
14892126 }
14902127
1491
- void ToggleInertia()
1492
- {
1493
- INERTIA ^= true;
1494
- }
1495
-
14962128 void ToggleLocal()
14972129 {
14982130 LOCALTRANSFORM ^= true;
14992131 }
15002132
1501
- void ToggleFast()
2133
+ public void ToggleTexture()
2134
+ {
2135
+ textureon ^= true;
2136
+ }
2137
+
2138
+ public void ToggleLive()
2139
+ {
2140
+ Globals.setLIVE(Globals.isLIVE() ^ true);
2141
+
2142
+ System.err.println("LIVE = " + Globals.isLIVE());
2143
+
2144
+ if (!Globals.isLIVE()) // save sound
2145
+ Grafreed.savesound = true; // wav.save();
2146
+ // else
2147
+ repaint(); // start loop // may 2013
2148
+ }
2149
+
2150
+ public void ToggleSupport()
2151
+ {
2152
+ SUPPORT ^= true;
2153
+ }
2154
+
2155
+ public void ToggleAbort()
2156
+ {
2157
+ ABORTMODE ^= true;
2158
+ }
2159
+
2160
+ public void ToggleInertia()
2161
+ {
2162
+ INERTIA ^= true;
2163
+ }
2164
+
2165
+ public void ToggleFast()
15022166 {
15032167 FAST ^= true;
15042168 }
15052169
1506
- void ToggleSlowPose()
2170
+ public void ToggleSlowPose()
15072171 {
15082172 SLOWPOSE ^= true;
15092173 }
15102174
1511
- void ToggleFootContact()
1512
- {
1513
- FOOTCONTACT ^= true;
1514
- }
1515
-
1516
- void ToggleBoxMode()
2175
+ public void ToggleBoxMode()
15172176 {
15182177 BOXMODE ^= true;
15192178 }
15202179
1521
- void ToggleSmoothFocus()
2180
+ public void ToggleZoomBoxMode()
2181
+ {
2182
+ ZOOMBOXMODE ^= true;
2183
+ }
2184
+
2185
+ public void ToggleSmoothFocus()
15222186 {
15232187 SMOOTHFOCUS ^= true;
15242188 }
15252189
1526
- void ToggleImageFlip()
2190
+ public void ToggleImageFlip()
15272191 {
15282192 IMAGEFLIP ^= true;
15292193 }
15302194
1531
- void ToggleSpeakerMocap()
2195
+ public void ToggleSpeakerMocap()
15322196 {
15332197 SPEAKERMOCAP ^= true;
15342198 }
15352199
1536
- void ToggleSpeakerCamera()
2200
+ public void ToggleSpeakerCamera()
15372201 {
15382202 SPEAKERCAMERA ^= true;
15392203 }
15402204
1541
- void ToggleSpeakerFocus()
2205
+ public void ToggleSpeakerFocus()
15422206 {
15432207 SPEAKERFOCUS ^= true;
15442208 }
15452209
1546
- void ToggleDebug()
1547
- {
1548
- DEBUG ^= true;
1549
- }
1550
-
1551
- void ToggleFrustum()
2210
+ public void ToggleFrustum()
15522211 {
15532212 FRUSTUM ^= true;
15542213 }
15552214
1556
- void ToggleTrack()
2215
+ public void ToggleTrack()
15572216 {
15582217 TRACK ^= true;
15592218 if (TRACK)
....@@ -1572,25 +2231,35 @@
15722231 repaint();
15732232 }
15742233
1575
- void ToggleTrackOnce()
2234
+ public void ToggleTrackOnce()
15762235 {
15772236 TRACKONCE ^= true;
15782237 }
15792238
1580
- void ToggleShadowTrack()
2239
+ public void ToggleShadowTrack()
15812240 {
15822241 SHADOWTRACK ^= true;
15832242 repaint();
15842243 }
15852244
1586
- void ToggleOeil()
2245
+ public void ToggleOeil()
15872246 {
15882247 OEIL ^= true;
15892248 }
15902249
1591
- void ToggleOeilOnce()
2250
+ public void ToggleOeilOnce()
15922251 {
15932252 OEILONCE ^= true;
2253
+ }
2254
+
2255
+ void ToggleFootContact()
2256
+ {
2257
+ FOOTCONTACT ^= true;
2258
+ }
2259
+
2260
+ void ToggleDebug()
2261
+ {
2262
+ DEBUG ^= true;
15942263 }
15952264
15962265 void ToggleLookAt()
....@@ -1598,9 +2267,9 @@
15982267 LOOKAT ^= true;
15992268 }
16002269
1601
- void ToggleRandom()
2270
+ void ToggleSwitch()
16022271 {
1603
- RANDOM ^= true;
2272
+ SWITCH ^= true;
16042273 }
16052274
16062275 void ToggleHandles()
....@@ -1707,7 +2376,7 @@
17072376 {
17082377 return currentGL;
17092378 }
1710
-
2379
+
17112380 /**/
17122381 class CacheTexture
17132382 {
....@@ -3539,6 +4208,7 @@
35394208
35404209 com.sun.opengl.util.texture.Texture CompressTexture2(String name)
35414210 {
4211
+ new Exception().printStackTrace();
35424212 System.exit(0);
35434213 com.sun.opengl.util.texture.Texture texture = null;
35444214
....@@ -7354,7 +8024,7 @@
73548024 }
73558025 }
73568026
7357
- /*boolean*/ public void BindTextures(cTexture tex, int resolution) // INTERFACE
8027
+ /*boolean*/ public void BindTextures(cTexture tex, int resolution) throws Exception // INTERFACE
73588028 {
73598029 if (// DrawMode() != 0 || /*tex == null ||*/
73608030 ambientOcclusion ) // || !textureon)
....@@ -7399,7 +8069,27 @@
73998069 return; // true;
74008070 }
74018071
7402
- CacheTexture GetCacheTexture(String tex, boolean bump, int resolution)
8072
+ java.util.HashSet<String> missingTextures = new java.util.HashSet<String>();
8073
+
8074
+ private boolean FileExists(String tex)
8075
+ {
8076
+ if (missingTextures.contains(tex))
8077
+ {
8078
+ return false;
8079
+ }
8080
+
8081
+ boolean fileExists = new File(tex).exists();
8082
+
8083
+ if (!fileExists)
8084
+ {
8085
+ // If file exists, the "new File()" is not executed sgain
8086
+ missingTextures.add(tex);
8087
+ }
8088
+
8089
+ return fileExists;
8090
+ }
8091
+
8092
+ CacheTexture GetCacheTexture(String tex, boolean bump, int resolution) throws Exception
74038093 {
74048094 CacheTexture/*com.sun.opengl.util.texture.Texture*/ texture = null;
74058095
....@@ -7407,12 +8097,18 @@
74078097 {
74088098 String texname = tex;
74098099
7410
- String[] split = tex.split("Textures");
7411
- if (split.length > 1)
7412
- texname = "/Users/nbriere/Textures" + split[split.length-1];
7413
- else
7414
- if (!texname.startsWith("/"))
7415
- texname = "/Users/nbriere/Textures/" + texname;
8100
+ String fallbackTextureName = defaultDirectory + "/Textures/" + texname;
8101
+
8102
+// String[] split = tex.split("Textures");
8103
+// if (split.length > 1)
8104
+// texname = "/Users/nbriere/Textures" + split[split.length-1];
8105
+// else
8106
+// if (!texname.startsWith("/"))
8107
+// texname = "/Users/nbriere/Textures/" + texname;
8108
+ if (!FileExists(tex))
8109
+ {
8110
+ texname = fallbackTextureName;
8111
+ }
74168112
74178113 if (CACHETEXTURE)
74188114 texture = textures.get(texname); // TEXTURE CACHE
....@@ -7481,7 +8177,7 @@
74818177 }
74828178
74838179 cachename = texname.substring(0, texname.length()-4)+ext+".jpg";
7484
- if (!new File(cachename).exists())
8180
+ if (!FileExists(cachename))
74858181 cachename = texname;
74868182 else
74878183 processbump = false; // don't process bump map again
....@@ -7503,7 +8199,7 @@
75038199 }
75048200
75058201 cachename = texname.substring(0, texname.length()-4)+ext+".png";
7506
- if (!new File(cachename).exists())
8202
+ if (!FileExists(cachename))
75078203 cachename = texname;
75088204 else
75098205 processbump = false; // don't process bump map again
....@@ -7512,7 +8208,9 @@
75128208 texturedata = GetFileTexture(cachename, processbump, resolution);
75138209
75148210
7515
- if (texturedata != null)
8211
+ if (texturedata == null)
8212
+ throw new Exception();
8213
+
75168214 texture = new CacheTexture(com.sun.opengl.util.texture.TextureIO.newTexture(texturedata),resolution);
75178215 //texture = GetTexture(tex, bump);
75188216 }
....@@ -7634,7 +8332,7 @@
76348332 return texture;
76358333 }
76368334
7637
- com.sun.opengl.util.texture.Texture GetTexture(String tex, boolean bump, int resolution)
8335
+ com.sun.opengl.util.texture.Texture GetTexture(String tex, boolean bump, int resolution) throws Exception
76388336 {
76398337 CacheTexture texture = GetCacheTexture(tex, bump, resolution);
76408338
....@@ -7652,14 +8350,14 @@
76528350 return texture!=null?texture.texture:null;
76538351 }
76548352
7655
- com.sun.opengl.util.texture.TextureData GetTextureData(String tex, boolean bump, int resolution)
8353
+ public com.sun.opengl.util.texture.TextureData GetTextureData(String tex, boolean bump, int resolution) throws Exception
76568354 {
76578355 CacheTexture texture = GetCacheTexture(tex, bump, resolution);
76588356
76598357 return texture!=null?texture.texturedata:null;
76608358 }
76618359
7662
- boolean BindTexture(String tex, boolean bump, int resolution)
8360
+ boolean BindTexture(String tex, boolean bump, int resolution) throws Exception
76638361 {
76648362 if (/*tex == null ||*/ ambientOcclusion ) // || !textureon)
76658363 {
....@@ -8636,8 +9334,8 @@
86369334 assert (parentcam != renderCamera);
86379335
86389336 if (renderCamera != lightCamera)
8639
- for (int count = parentcam.GetTransformCount(); --count>=0;)
8640
- LA.matConcat(matrix, parentcam.toParent, matrix);
9337
+ //for (int count = parentcam.GetTransformCount(); --count>=0;)
9338
+ LA.matConcat(matrix, parentcam.GlobalTransform(), matrix);
86419339
86429340 // LA.matConcat(renderCamera.toScreen, renderCamera.toParent, matrix);
86439341
....@@ -8652,8 +9350,8 @@
86529350 LA.matCopy(renderCamera.fromScreen, matrix);
86539351
86549352 if (renderCamera != lightCamera)
8655
- for (int count = parentcam.GetTransformCount(); --count>=0;)
8656
- LA.matConcat(parentcam.fromParent, matrix, matrix);
9353
+ //for (int count = parentcam.GetTransformCount(); --count>=0;)
9354
+ LA.matConcat(parentcam.GlobalTransformInv(), matrix, matrix);
86579355
86589356 // LA.matConcat(renderCamera.fromParent, renderCamera.fromScreen, matrix);
86599357
....@@ -8725,7 +9423,7 @@
87259423 //gl.glFlush();
87269424 gl.glAccum(gl.GL_ACCUM, 1.0f / ACSIZE);
87279425
8728
- if (ANIMATION && ABORTED)
9426
+ if (Globals.ANIMATION && ABORTED)
87299427 {
87309428 System.err.println(" ABORTED FRAME");
87319429 break;
....@@ -8755,7 +9453,7 @@
87559453 setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
87569454
87579455 // save image
8758
- if (ANIMATION && !ABORTED)
9456
+ if (Globals.ANIMATION && !ABORTED)
87599457 {
87609458 VPwidth = viewport[2];
87619459 VPheight = viewport[3];
....@@ -8866,11 +9564,11 @@
88669564
88679565 // imagecount++;
88689566
8869
- String fullname = filename + (i%100000)/10000 + "" + (i%10000)/1000 + "" + (i%1000)/100 + "" + (i%100)/10 + "" + (i%10) + "." + ext;
9567
+ String fullname = Globals.filename + (i%100000)/10000 + "" + (i%10000)/1000 + "" + (i%1000)/100 + "" + (i%100)/10 + "" + (i%10) + "." + ext;
88709568
88719569 if (!BOXMODE)
88729570 {
8873
- System.out.println("image: " + fullname + " (wav cursor=" + (GrafreeD.wav.cursor / 735 / 4) + ")");
9571
+ System.out.println("image: " + fullname + " (wav cursor=" + (Grafreed.wav.cursor / 735 / 4) + ")");
88749572 }
88759573
88769574 if (!BOXMODE)
....@@ -8908,7 +9606,7 @@
89089606 ABORTED = false;
89099607 }
89109608 else
8911
- GrafreeD.wav.cursor += 735 * ACSIZE;
9609
+ Grafreed.wav.cursor += 735 * ACSIZE;
89129610
89139611 if (false)
89149612 {
....@@ -9571,11 +10269,11 @@
957110269
957210270 public void display(GLAutoDrawable drawable)
957310271 {
9574
- if (GrafreeD.savesound && GrafreeD.hassound)
10272
+ if (Grafreed.savesound && Grafreed.hassound)
957510273 {
9576
- GrafreeD.wav.save();
9577
- GrafreeD.savesound = false;
9578
- GrafreeD.hassound = false;
10274
+ Grafreed.wav.save();
10275
+ Grafreed.savesound = false;
10276
+ Grafreed.hassound = false;
957910277 }
958010278 // if (DEBUG_SELECTION)
958110279 // {
....@@ -9705,7 +10403,7 @@
970510403 Object3D theobject = object;
970610404 Object3D theparent = object.parent;
970710405 object.parent = null;
9708
- object = (Object3D)GrafreeD.clone(object);
10406
+ object = (Object3D)Grafreed.clone(object);
970910407 object.Stripify();
971010408 if (theobject.selection == null || theobject.selection.Size() == 0)
971110409 theobject.PreprocessOcclusion(this);
....@@ -9718,13 +10416,13 @@
971810416 ambientOcclusion = false;
971910417 }
972010418
9721
- if (Globals.lighttouched && DrawMode() == DEFAULT && !lightMode) // && !FROZEN)
10419
+ if (Globals.lighttouched && DrawMode() == DEFAULT) // && !lightMode) // && !FROZEN)
972210420 {
972310421 //if (RENDERSHADOW) // ?
972410422 if (!IsFrozen())
972510423 {
972610424 // dec 2012
9727
- if (!ambientOcclusion && !(!flash && !lightMode && DrawMode() == DEFAULT && ANTIALIAS > 0))
10425
+ if (!ambientOcclusion && !(!flash && DrawMode() == DEFAULT && ANTIALIAS > 0))
972810426 {
972910427 Globals.framecount++;
973010428 shadowbuffer.display();
....@@ -9851,8 +10549,8 @@
985110549
985210550 // if (parentcam != renderCamera) // not a light
985310551 if (cam != lightCamera)
9854
- for (int count = parentcam.GetTransformCount(); --count>=0;)
9855
- LA.matConcat(matrix, parentcam.toParent, matrix);
10552
+ //for (int count = parentcam.GetTransformCount(); --count>=0;)
10553
+ LA.matConcat(matrix, parentcam.GlobalTransform(), matrix);
985610554
985710555 for (int j = 0; j < 4; j++)
985810556 {
....@@ -9866,8 +10564,8 @@
986610564
986710565 // if (parentcam != renderCamera) // not a light
986810566 if (cam != lightCamera)
9869
- for (int count = parentcam.GetTransformCount(); --count>=0;)
9870
- LA.matConcat(parentcam.fromParent, matrix, matrix);
10567
+ //for (int count = parentcam.GetTransformCount(); --count>=0;)
10568
+ LA.matConcat(parentcam.GlobalTransformInv(), matrix, matrix);
987110569
987210570 //LA.matConcat(cam.fromScreen, parentcam.fromParent, matrix);
987310571
....@@ -10126,7 +10824,16 @@
1012610824 // Bump noise
1012710825 gl.glActiveTexture(GL.GL_TEXTURE6);
1012810826 //gl.glBindTexture(GL.GL_TEXTURE_2D, bump_noise);
10129
- BindTexture(NOISE_TEXTURE, false, 2);
10827
+
10828
+ try
10829
+ {
10830
+ BindTexture(NOISE_TEXTURE, false, 2);
10831
+ }
10832
+ catch (Exception e)
10833
+ {
10834
+ System.err.println("FAILED: " + NOISE_TEXTURE);
10835
+ }
10836
+
1013010837
1013110838 gl.glActiveTexture(GL.GL_TEXTURE0);
1013210839 gl.glEnable(GL.GL_TEXTURE_2D);
....@@ -10251,8 +10958,8 @@
1025110958 System.err.println("parentcam != renderCamera");
1025210959
1025310960 // if (cam != lightCamera)
10254
- for (int count = parentcam.GetTransformCount(); --count>=0;)
10255
- LA.xformDir(lightposition, parentcam.toParent, lightposition); // may 2013
10961
+ //for (int count = parentcam.GetTransformCount(); --count>=0;)
10962
+ LA.xformDir(lightposition, parentcam.GlobalTransform(), lightposition); // may 2013
1025610963 }
1025710964
1025810965 LA.xformDir(lightposition, cam.toScreen, lightposition);
....@@ -10273,8 +10980,8 @@
1027310980 if (true) // TODO
1027410981 {
1027510982 if (cam != lightCamera)
10276
- for (int count = parentcam.GetTransformCount(); --count>=0;)
10277
- LA.xformDir(light0, parentcam.toParent, light0); // may 2013
10983
+ //for (int count = parentcam.GetTransformCount(); --count>=0;)
10984
+ LA.xformDir(light0, parentcam.GlobalTransform(), light0); // may 2013
1027810985 }
1027910986
1028010987 LA.xformPos(light0, cam.toScreen, light0);
....@@ -10340,7 +11047,7 @@
1034011047 fragmentMode |= (lightslot - 64) << 2; // 1; // first bit is available for aniso
1034111048 //System.out.println("fragmentMode = " + fragmentMode);
1034211049
10343
- if (DrawMode() == DEFAULT || DrawMode() == SELECTION || DEBUG_SELECTION)
11050
+ if (DrawMode() == DEFAULT || DrawMode() == SELECTION || IsDebugSelection())
1034411051 {
1034511052 /*
1034611053 if (CULLFACE || (ambientOcclusion && OCCLUSION_CULLING))
....@@ -10590,8 +11297,14 @@
1059011297 {
1059111298 renderpass++;
1059211299 // System.out.println("Draw object... ");
11300
+ STEP = 1;
1059311301 if (FAST) // in case there is no script
10594
- STEP = 16;
11302
+ STEP = 8;
11303
+
11304
+ if (CURRENTANTIALIAS == 0 || ACSIZE == 1)
11305
+ {
11306
+ STEP *= 4;
11307
+ }
1059511308
1059611309 //object.FullInvariants();
1059711310
....@@ -10605,8 +11318,8 @@
1060511318 e.printStackTrace();
1060611319 }
1060711320
10608
- if (GrafreeD.RENDERME > 0)
10609
- GrafreeD.RENDERME--; // mechante magouille
11321
+ if (Grafreed.RENDERME > 0)
11322
+ Grafreed.RENDERME--; // mechante magouille
1061011323
1061111324 Globals.ONESTEP = false;
1061211325 }
....@@ -10641,7 +11354,7 @@
1064111354 callist = gl.glGenLists(1);
1064211355 }
1064311356
10644
- boolean selectmode = DrawMode() == SELECTION || CameraPane.DEBUG_SELECTION;
11357
+ boolean selectmode = DrawMode() == SELECTION || IsDebugSelection();
1064511358
1064611359 boolean active = !selectmode; // DrawMode() != SELECTION; // mouseDown;
1064711360
....@@ -10676,7 +11389,14 @@
1067611389
1067711390 usedtextures.clear();
1067811391
10679
- BindTextures(DEFAULT_TEXTURES, 2);
11392
+ try
11393
+ {
11394
+ BindTextures(DEFAULT_TEXTURES, 2);
11395
+ }
11396
+ catch (Exception e)
11397
+ {
11398
+ System.err.println("FAILED: " + DEFAULT_TEXTURES);
11399
+ }
1068011400 }
1068111401 //System.out.println("--> " + stackdepth);
1068211402 // GrafreeD.traceon();
....@@ -10767,7 +11487,14 @@
1076711487 if (checker != null && DrawMode() == DEFAULT)
1076811488 {
1076911489 //BindTexture(IMMORTAL_TEXTURE);
10770
- BindTextures(checker.GetTextures(), checker.texres);
11490
+ try
11491
+ {
11492
+ BindTextures(checker.GetTextures(), checker.texres);
11493
+ }
11494
+ catch (Exception e)
11495
+ {
11496
+ System.err.println("FAILED: " + checker.GetTextures());
11497
+ }
1077111498 // NEAREST
1077211499 GetGL().glTexParameteri(GL.GL_TEXTURE_2D, GL.GL_TEXTURE_MAG_FILTER, GL.GL_NEAREST); // GL.GL_LINEAR);
1077311500 DrawChecker(gl);
....@@ -10849,7 +11576,7 @@
1084911576 return;
1085011577 }
1085111578
10852
- String string = obj.GetToolTip();
11579
+ String string = obj.toString(); //.GetToolTip();
1085311580
1085411581 GL gl = GetGL();
1085511582
....@@ -11166,8 +11893,8 @@
1116611893 //obj.TransformToWorld(light, light);
1116711894 for (int i = tp.size(); --i >= 0;)
1116811895 {
11169
- for (int count = tp.get(i).GetTransformCount(); --count>=0;)
11170
- LA.xformPos(light, tp.get(i).toParent, light);
11896
+ //for (int count = tp.get(i).GetTransformCount(); --count>=0;)
11897
+ LA.xformPos(light, tp.get(i).GlobalTransform(), light);
1117111898 }
1117211899
1117311900
....@@ -11184,8 +11911,8 @@
1118411911 parentcam = cameras[0];
1118511912 }
1118611913
11187
- for (int count = parentcam.GetTransformCount(); --count>=0;)
11188
- LA.xformPos(light, parentcam.toParent, light); // may 2013
11914
+ //for (int count = parentcam.GetTransformCount(); --count>=0;)
11915
+ LA.xformPos(light, parentcam.GlobalTransform(), light); // may 2013
1118911916
1119011917 LA.xformPos(light, renderCamera.toScreen, light);
1119111918
....@@ -11799,8 +12526,8 @@
1179912526
1180012527 // display shadow only (bump == 0)
1180112528 "SUB temp.x, half.x, shadow.x;" +
11802
- "MOV temp.y, -params6.x;" +
11803
- "SLT temp.z, temp.y, zero.x;" +
12529
+ "MOV temp.y, -params5.z;" + // params6.x;" +
12530
+ "SLT temp.z, temp.y, -one2048th.x;" +
1180412531 "SUB temp.y, one.x, temp.z;" +
1180512532 "MUL temp.x, temp.x, temp.y;" +
1180612533 "KIL temp.x;" +
....@@ -11929,8 +12656,10 @@
1192912656 "MAX ndotl.x, ndotl.x, -ndotl.x;" +
1193012657
1193112658 "SUB temp.x, one.x, ndotl.x;" +
11932
- "ADD temp.x, temp.x, options2.z;" + // lightsheen
11933
- "ADD temp.y, one.y, options2.y;" + // sursurface
12659
+ // Tuning for default skin
12660
+ //"ADD temp.x, temp.x, options2.z;" + // lightsheen
12661
+ "MAD temp.x, options2.z, half.y, temp.x;" + // lightsheen
12662
+ "ADD temp.y, one.y, options2.y;" + // subsurface
1193412663 "MUL temp.x, temp.x, temp.y;" +
1193512664
1193612665 "MUL saturation, saturation, temp.xxxx;" +
....@@ -12129,7 +12858,7 @@
1212912858 //once = true;
1213012859 }
1213112860
12132
- System.out.print("Program #" + mode + "; length = " + program.length());
12861
+ System.out.print("Program #" + mode + "; instructions = " + program.split(";").length + "; length = " + program.length());
1213312862 System.out.println(" - " + (mode >> 3) + " lights; " + ((mode & 2) == 2 ? "anisoUV " : "") + ((mode & 4) == 4 ? "SoftShadow " : ""));
1213412863 loadProgram(gl, GL.GL_FRAGMENT_PROGRAM_ARB, program);
1213512864
....@@ -12262,12 +12991,16 @@
1226212991
1226312992 "ADD " + depth + ".z, " + depth + ".z, temp.x;" +
1226412993 //"SUB " + depth + ".z, " + depth + ".z, temp.x;" + // back face shadowing!
12994
+
12995
+ // Compare fragment depth in light space with shadowmap.
1226512996 "SUB temp.x, fragment.texcoord[1].z, " + depth + ".z;" +
1226612997 "SGE temp.y, temp.x, zero.x;" +
12267
- "SUB " + shadow + ".y, one.x, temp.y;" +
12998
+ "SUB " + shadow + ".y, one.x, temp.y;" + // Specular is fully occluded
12999
+
13000
+ // Reverse comparison
1226813001 "SUB temp.x, one.x, temp.x;" +
1226913002 "MUL " + shadow + ".x, temp.x, temp.y;" +
12270
- "SUB " + shadow + ".x, one.x, " + shadow + ".x;" + // specular is fully occluded
13003
+ "SUB " + shadow + ".x, one.x, " + shadow + ".x;" + // diffuse
1227113004 "POW " + shadow + ".x, " + shadow + ".x, params5.z;" + // fake depth
1227213005
1227313006 "SLT " + shadow + ".z, fragment.texcoord[1].z, " + depth + ".z;" +
....@@ -12281,6 +13014,10 @@
1228113014 // No shadow for backface
1228213015 "DP3 temp.x, normal, lightd;" +
1228313016 "SLT temp.x, temp.x, zero.x;" + // shadoweps
13017
+ "LRP " + shadow + ", temp.x, one, " + shadow + ";" +
13018
+
13019
+ // No shadow when out of frustrum
13020
+ "SGE temp.x, " + depth + ".z, one.z;" +
1228413021 "LRP " + shadow + ", temp.x, one, " + shadow + ";" +
1228513022 "";
1228613023 }
....@@ -12839,7 +13576,7 @@
1283913576 public void mousePressed(MouseEvent e)
1284013577 {
1284113578 //System.out.println("mousePressed: " + e);
12842
- clickStart(e.getX(), e.getY(), e.getModifiersEx());
13579
+ clickStart(e.getX(), e.getY(), e.getModifiers(), e.getModifiersEx());
1284313580 }
1284413581
1284513582 static long prevtime = 0;
....@@ -12866,6 +13603,7 @@
1286613603
1286713604 //System.err.println("Dtime = " + Dtime + "; units = " + e.getUnitsToScroll() + "; ratio (units/ms) = " + ratio);
1286813605
13606
+ if (BUTTONLESSWHEEL)
1286913607 if (Math.abs(ratio) < 0.1 || Math.abs(Dtime) == 0) // < 30)
1287013608 {
1287113609 return;
....@@ -12874,7 +13612,7 @@
1287413612 boolean capsLocked = Toolkit.getDefaultToolkit().getLockingKeyState(KeyEvent.VK_CAPS_LOCK);
1287513613
1287613614 // TIMER
12877
- if (!wheeltimer.isRunning() && e.getModifiersEx() == 0 && !capsLocked) // VR
13615
+ if (ZOOMBOXMODE && !wheeltimer.isRunning() && e.getModifiersEx() == 0 && !capsLocked) // VR
1287813616 {
1287913617 keepboxmode = BOXMODE;
1288013618 keepsupport = SUPPORT;
....@@ -12914,8 +13652,8 @@
1291413652 // mode |= META;
1291513653 //}
1291613654
12917
- SetMouseMode(WHEEL | e.getModifiersEx());
12918
- drag(anchorX, anchorY + e.getUnitsToScroll()*8, 0);
13655
+ SetMouseMode(e.getModifiers(), WHEEL | e.getModifiersEx());
13656
+ drag(anchorX, anchorY + e.getUnitsToScroll()*8, 0, 0);
1291913657 anchorX = ax;
1292013658 anchorY = ay;
1292113659 prevX = px;
....@@ -12975,6 +13713,10 @@
1297513713 // wasliveok = true;
1297613714 // waslive = false;
1297713715
13716
+ // May 2019 Forget it:
13717
+ if (true)
13718
+ return;
13719
+
1297813720 // source == timer
1297913721 if (mouseDown)
1298013722 {
....@@ -13013,7 +13755,7 @@
1301313755
1301413756 javax.swing.Timer timer = new javax.swing.Timer(350, this);
1301513757
13016
- void clickStart(int x, int y, int modifiers)
13758
+ void clickStart(int x, int y, int modifiers, int modifiersex)
1301713759 {
1301813760 if (!wasliveok)
1301913761 return;
....@@ -13030,7 +13772,7 @@
1303013772 // touched = true; // main DL
1303113773 if (isRenderer)
1303213774 {
13033
- SetMouseMode(modifiers);
13775
+ SetMouseMode(modifiers, modifiersex);
1303413776 }
1303513777
1303613778 selectX = anchorX = x;
....@@ -13043,7 +13785,7 @@
1304313785 clicked = true;
1304413786 hold = false;
1304513787
13046
- if (((modifiers & ~1024) & ~0) == 0) // Single or multiple selection
13788
+ if (((modifiersex & ~1024) & ~0) == 0) // Single or multiple selection
1304713789 // june 2013 means CTRL_CLICK: if (((modifiers & ~1024) & ~128) == 0) // Single or multiple selection
1304813790 {
1304913791 // System.out.println("RESTART II " + modifiers);
....@@ -13074,7 +13816,7 @@
1307413816 info.camera = renderCamera;
1307513817 info.x = x;
1307613818 info.y = y;
13077
- info.modifiers = modifiers;
13819
+ info.modifiers = modifiersex;
1307813820 editObj = object.doEditClick(info, 0);
1307913821 if (!editObj)
1308013822 {
....@@ -13091,11 +13833,14 @@
1309113833
1309213834 public void mouseDragged(MouseEvent e)
1309313835 {
13836
+ Globals.MOUSEDRAGGED = true;
13837
+
13838
+ //System.out.println("mouseDragged: " + e);
1309413839 if (isRenderer)
1309513840 movingcamera = true;
13841
+
1309613842 //if (drawing)
1309713843 //return;
13098
- //System.out.println("mouseDragged: " + e);
1309913844 if ((e.getModifiersEx() & CTRL) != 0
1310013845 || (e.getModifiersEx() & COMMAND) != 0) // || IsFrozen())
1310113846 {
....@@ -13103,7 +13848,7 @@
1310313848 clickEnd(e.getX(), e.getY(), e.getModifiersEx());
1310413849 }
1310513850 else
13106
- drag(e.getX(), e.getY(), e.getModifiersEx());
13851
+ drag(e.getX(), e.getY(), e.getModifiers(), e.getModifiersEx());
1310713852
1310813853 //try { Thread.sleep(1); } catch (Exception ex) {}
1310913854 }
....@@ -13115,6 +13860,11 @@
1311513860 cVector tmp = new cVector();
1311613861 cVector tmp2 = new cVector();
1311713862 boolean isMoving;
13863
+
13864
+ public cVector TargetLookAt()
13865
+ {
13866
+ return targetLookAt;
13867
+ }
1311813868
1311913869 class PingThread extends Thread
1312013870 {
....@@ -13271,6 +14021,7 @@
1327114021
1327214022 public void run()
1327314023 {
14024
+ new Exception().printStackTrace();
1327414025 System.exit(0);
1327514026 for (;;)
1327614027 {
....@@ -13334,7 +14085,7 @@
1333414085 {
1333514086 Globals.lighttouched = true;
1333614087 }
13337
- drag(X, (mouseMode != 0) ? Y : anchorY, MODIFIERS);
14088
+ drag(X, (mouseMode != 0) ? Y : anchorY, 0, MODIFIERS);
1333814089 }
1333914090 //else
1334014091 }
....@@ -13434,7 +14185,7 @@
1343414185 int X, Y;
1343514186 boolean SX, SY;
1343614187
13437
- void drag(int x, int y, int modifiers)
14188
+ void drag(int x, int y, int modifiers, int modifiersex)
1343814189 {
1343914190 if (IsFrozen())
1344014191 {
....@@ -13443,17 +14194,17 @@
1344314194
1344414195 drag = true; // NEW
1344514196
13446
- boolean continuous = (modifiers & COMMAND) == COMMAND;
14197
+ boolean continuous = (modifiersex & COMMAND) == COMMAND;
1344714198
1344814199 X = x;
1344914200 Y = y;
1345014201 // floating state for animation
13451
- MODIFIERS = modifiers;
13452
- modifiers &= ~1024;
14202
+ MODIFIERS = modifiersex;
14203
+ modifiersex &= ~1024;
1345314204 if (false) // modifiers != 0)
1345414205 {
1345514206 //new Exception().printStackTrace();
13456
- System.out.println("mouseDragged: " + modifiers);
14207
+ System.out.println("mouseDragged: " + modifiersex);
1345714208 System.out.println("SHIFT = " + SHIFT);
1345814209 System.out.println("CONTROL = " + COMMAND);
1345914210 System.out.println("META = " + META);
....@@ -13473,7 +14224,7 @@
1347314224 info.camera = renderCamera;
1347414225 info.x = x;
1347514226 info.y = y;
13476
- object.editWindow.copy.doEditDrag(info);
14227
+ object.editWindow.copy.doEditDrag(info, (modifiers & MouseEvent.BUTTON3_MASK) != 0);
1347714228 } else
1347814229 {
1347914230 if (x < startX)
....@@ -13625,7 +14376,6 @@
1362514376 public void mouseMoved(MouseEvent e)
1362614377 {
1362714378 //System.out.println("mouseMoved: " + e);
13628
-
1362914379 if (isRenderer)
1363014380 return;
1363114381
....@@ -13650,7 +14400,10 @@
1365014400
1365114401 public void mouseReleased(MouseEvent e)
1365214402 {
14403
+ Globals.MOUSEDRAGGED = false;
14404
+
1365314405 movingcamera = false;
14406
+ X = Y = 0;
1365414407 //System.out.println("mouseReleased: " + e);
1365514408 clickEnd(e.getX(), e.getY(), e.getModifiersEx());
1365614409 }
....@@ -13673,9 +14426,9 @@
1367314426 boolean control = ((modifiers & CTRL) != 0); // june 2013: for point selection
1367414427 boolean command = ((modifiers & COMMAND) != 0); // june 2013: for multiple selection
1367514428
13676
- if (control || command || IsFrozen())
14429
+// No delay if (control || command || IsFrozen())
1367714430 timeout = true;
13678
- else
14431
+// ?? May 2019 else
1367914432 // timer.setDelay((modifiers & 128) != 0?0:350);
1368014433 mouseDown = false;
1368114434 if (!control && !command) // june 2013
....@@ -13785,7 +14538,7 @@
1378514538 System.out.println("keyReleased: " + e);
1378614539 }
1378714540
13788
- void SetMouseMode(int modifiers)
14541
+ void SetMouseMode(int modifiers, int modifiersex)
1378914542 {
1379014543 //System.out.println("SetMouseMode = " + modifiers);
1379114544 //modifiers &= ~1024;
....@@ -13797,25 +14550,25 @@
1379714550 //if (modifiers == 0) // || (modifiers == (1024 | CONTROL)))
1379814551 // return;
1379914552 //System.out.println("SetMode = " + modifiers);
13800
- if ((modifiers & WHEEL) == WHEEL)
14553
+ if ((modifiersex & WHEEL) == WHEEL)
1380114554 {
1380214555 mouseMode |= ZOOM;
1380314556 }
1380414557
1380514558 boolean capsLocked = Toolkit.getDefaultToolkit().getLockingKeyState(KeyEvent.VK_CAPS_LOCK);
13806
- if (capsLocked || (modifiers & META) == META)
14559
+ if (capsLocked) // || (modifiers & META) == META)
1380714560 {
1380814561 mouseMode |= VR; // BACKFORTH;
1380914562 }
13810
- if ((modifiers & CTRLCLICK) == CTRLCLICK)
14563
+ if ((modifiersex & CTRLCLICK) == CTRLCLICK)
1381114564 {
1381214565 mouseMode |= SELECT;
1381314566 }
13814
- if ((modifiers & COMMAND) == COMMAND)
14567
+ if ((modifiersex & COMMAND) == COMMAND)
1381514568 {
1381614569 mouseMode |= SELECT;
1381714570 }
13818
- if ((modifiers & SHIFT) == SHIFT || forcetranslate)
14571
+ if ((modifiersex & SHIFT) == SHIFT || forcetranslate || (modifiers & MouseEvent.BUTTON3_MASK) != 0)
1381914572 {
1382014573 mouseMode &= ~VR;
1382114574 mouseMode |= TRANSLATE;
....@@ -13844,10 +14597,10 @@
1384414597
1384514598 if (isRenderer) //
1384614599 {
13847
- SetMouseMode(modifiers);
14600
+ SetMouseMode(0, modifiers);
1384814601 }
1384914602
13850
- theRenderer.keyPressed(key);
14603
+ Globals.theRenderer.keyPressed(key);
1385114604 }
1385214605
1385314606 int kompactbit = 4; // power bit
....@@ -13859,7 +14612,7 @@
1385914612 float SATPOW = 1; // 2; // 0.5f;
1386014613 float BRIPOW = 1; // 0.5f; // 0.5f;
1386114614
13862
- void keyPressed(int key)
14615
+ public void keyPressed(int key)
1386314616 {
1386414617 if (key >= '0' && key <= '5')
1386514618 clampbit = (key-'0');
....@@ -14180,7 +14933,7 @@
1418014933 //RESIZETEXTURE ^= true;
1418114934 //break;
1418214935 case 'z':
14183
- RENDERSHADOW ^= true;
14936
+ Globals.RENDERSHADOW ^= true;
1418414937 Globals.lighttouched = true;
1418514938 repaint();
1418614939 break;
....@@ -14296,6 +15049,7 @@
1429615049 }
1429715050 //System.out.println("shaper_fovy = " + manipCamera.shaper_fovy);
1429815051 }
15052
+
1429915053 static double OCCLUSIONBOOST = 1; // 0.5;
1430015054
1430115055 void keyReleased(int key, int modifiers)
....@@ -14303,11 +15057,11 @@
1430315057 //mode = ROTATE;
1430415058 if ((MODIFIERS & COMMAND) == 0) // VR??
1430515059 {
14306
- SetMouseMode(modifiers);
15060
+ SetMouseMode(0, modifiers);
1430715061 }
1430815062 }
1430915063
14310
- protected void processKeyEvent(KeyEvent e)
15064
+ public void processKeyEvent(KeyEvent e)
1431115065 {
1431215066 switch (e.getID())
1431315067 {
....@@ -14437,8 +15191,9 @@
1443715191
1443815192 protected void processMouseMotionEvent(MouseEvent e)
1443915193 {
14440
- //System.out.println("processMouseMotionEvent: " + mouseMode);
14441
- if (e.getButton() == MouseEvent.NOBUTTON && (mouseMode & SELECT) == 0)
15194
+ //System.out.println("processMouseMotionEvent: " + mouseMode + " " + e.getModifiers() + " " + e.getModifiersEx() + " " + e.getButton());
15195
+ //if (e.getButton() == MouseEvent.NOBUTTON && (mouseMode & SELECT) == 0)
15196
+ if ((e.getModifiers() & MouseEvent.BUTTON1_MASK) == 0 && (e.getModifiers() & MouseEvent.BUTTON3_MASK) == 0 && (mouseMode & SELECT) == 0)
1444215197 {
1444315198 mouseMoved(e);
1444415199 } else
....@@ -14468,6 +15223,7 @@
1446815223
1446915224 void SelectParent()
1447015225 {
15226
+ new Exception().printStackTrace();
1447115227 System.exit(0);
1447215228 Composite group = (Composite) object;
1447315229 java.util.Vector selectees = new java.util.Vector(group.selection);
....@@ -14491,6 +15247,7 @@
1449115247
1449215248 void SelectChildren()
1449315249 {
15250
+ new Exception().printStackTrace();
1449415251 System.exit(0);
1449515252 /*
1449615253 Composite group = (Composite) object;
....@@ -14655,7 +15412,9 @@
1465515412 info.bounds.setBounds(0, 0, (int) (width * zoom), (int) (height * zoom));
1465615413 //Image img = CreateImage(width, height);
1465715414 //System.out.println("width = " + width + "; height = " + height + "\n");
15415
+
1465815416 Graphics gr = g; // img.getGraphics();
15417
+
1465915418 if (!hasMarquee)
1466015419 {
1466115420 if (Xmin < Xmax) // !locked)
....@@ -14753,14 +15512,33 @@
1475315512 if (!isRenderer)
1475415513 {
1475515514 object.drawEditHandles(info, 0);
15515
+
15516
+ if (drag && (X != 0 || Y != 0) && object.selection.Size() > 0)
15517
+ {
15518
+ switch (object.selection.get(0).hitSomething)
15519
+ {
15520
+ case Object3D.hitCenter: gr.setColor(Color.pink);
15521
+ gr.drawLine(X, Y, info.bounds.width/2, info.bounds.height/2);
15522
+ break;
15523
+ case Object3D.hitRotate: gr.setColor(Color.yellow);
15524
+ gr.drawLine(X, Y, info.bounds.width/2, info.bounds.height/2);
15525
+ break;
15526
+ case Object3D.hitScale: gr.setColor(Color.cyan);
15527
+ gr.drawLine(X, Y, info.bounds.width/2, info.bounds.height/2);
15528
+ break;
15529
+ }
15530
+
15531
+ }
1475615532 }
1475715533 }
15534
+
1475815535 if (isRenderer)
1475915536 {
1476015537 //gr.setColor(Color.black);
1476115538 //gr.drawRect(info.bounds.x - 1, info.bounds.y - 1, info.bounds.width + 1, info.bounds.height + 1);
1476215539 //gr.drawRect(info.bounds.x - 2, info.bounds.y - 2, info.bounds.width + 3, info.bounds.height + 3);
1476315540 }
15541
+
1476415542 if (hasMarquee)
1476515543 {
1476615544 gr.setXORMode(Color.white);
....@@ -14873,6 +15651,7 @@
1487315651 public boolean mouseDown(Event evt, int x, int y)
1487415652 {
1487515653 System.out.println("mouseDown: " + evt);
15654
+ System.exit(0);
1487615655 /*
1487715656 locked = true;
1487815657 drag = false;
....@@ -14916,7 +15695,7 @@
1491615695 {
1491715696 keyPressed(0, modifiers);
1491815697 }
14919
- clickStart(x, y, modifiers);
15698
+ // clickStart(x, y, modifiers);
1492015699 return true;
1492115700 }
1492215701
....@@ -15034,7 +15813,7 @@
1503415813 {
1503515814 keyReleased(0, 0);
1503615815 }
15037
- drag(x, y, modifiers);
15816
+ drag(x, y, 0, modifiers);
1503815817 return true;
1503915818 }
1504015819
....@@ -15166,7 +15945,7 @@
1516615945 Object3D object;
1516715946 static Object3D trackedobject;
1516815947 Camera renderCamera; // Light or Eye (or Occlusion)
15169
- /*static*/ Camera manipCamera; // Light or Eye
15948
+ /*static*/ Camera manipCamera; // Light or Eye. Can be Light when Eye, not Eye when Light
1517015949 /*static*/ Camera eyeCamera;
1517115950 /*static*/ Camera lightCamera;
1517215951 int cameracount;
....@@ -15604,6 +16383,7 @@
1560416383 {
1560516384 if (!selection)
1560616385 {
16386
+ new Exception().printStackTrace();
1560716387 System.exit(0);
1560816388 return;
1560916389 }
....@@ -15731,16 +16511,16 @@
1573116511 System.out.println("; fromto " + sel + " " + Trunk(previousselectedpoint.toParent[3][0]) + " " + Trunk(previousselectedpoint.toParent[3][2]) + " " + Trunk(selectedpoint.toParent[3][0]) + " " + Trunk(selectedpoint.toParent[3][2]));
1573216512 }
1573316513
15734
- previousselectedpoint = (Sphere) GrafreeD.clone(selectedpoint);
16514
+ previousselectedpoint = (Sphere) Grafreed.clone(selectedpoint);
1573516515 }
1573616516 }
1573716517
1573816518 if (!movingcamera && !PAINTMODE)
1573916519 object.editWindow.ScreenFitPoint(); // fev 2014
1574016520
15741
- if (PAINTMODE && GrafreeD.clipboard.size() == 1) // object.editWindow.copy.selection.Size() > 0)
16521
+ if (PAINTMODE && Grafreed.clipboard.size() == 1) // object.editWindow.copy.selection.Size() > 0)
1574216522 {
15743
- Object3D paintobj = GrafreeD.clipboard.get(0); // object.editWindow.copy.selection.elementAt(0);
16523
+ Object3D paintobj = Grafreed.clipboard.get(0); // object.editWindow.copy.selection.elementAt(0);
1574416524
1574516525 Object3D group = new Object3D("inst" + paintcount++);
1574616526
....@@ -15896,7 +16676,7 @@
1589616676 gl.glDisable(gl.GL_CULL_FACE);
1589716677 }
1589816678
15899
- if (!RENDERSHADOW)
16679
+ if (!Globals.RENDERSHADOW)
1590016680 gl.glClear(GL.GL_COLOR_BUFFER_BIT | GL.GL_DEPTH_BUFFER_BIT);
1590116681
1590216682 // SB gl.glPolygonOffset(2.5f, 10);
....@@ -15906,7 +16686,7 @@
1590616686 //gl.glColorMask(false, false, false, false);
1590716687
1590816688 //render_scene_from_light_view(gl, drawable, 0, 0);
15909
- if (RENDERSHADOW && Globals.lighttouched && !movingcamera) // && !parent.IsFreezed())
16689
+ if (Globals.RENDERSHADOW && Globals.lighttouched && (!movingcamera || !Globals.FREEZEONMOVE)) // && !parent.IsFreezed())
1591016690 {
1591116691 gl.glClear(GL.GL_COLOR_BUFFER_BIT | GL.GL_DEPTH_BUFFER_BIT);
1591216692
....@@ -15966,7 +16746,6 @@
1596616746
1596716747 class AntialiasBuffer implements GLEventListener
1596816748 {
15969
-
1597016749 CameraPane parent = null;
1597116750
1597216751 AntialiasBuffer(CameraPane p)
....@@ -16359,7 +17138,7 @@
1635917138 }
1636017139 }
1636117140
16362
- static void DrawPoints(CameraPane cpane)
17141
+ static void DrawPoints(iCameraPane cpane)
1636317142 {
1636417143 for (int i=0; i<8; i++) // first and last are red
1636517144 {
....@@ -16391,10 +17170,11 @@
1639117170 static IntBuffer textbuffer = null; // IntBuffer.allocate(TEXT_WIDTH*8*8 * TEXT_HEIGHT);
1639217171 // Depth buffer format
1639317172 //private int depth_format;
16394
- static public void NextIndex(Object3D o, GL gl)
17173
+
17174
+ public void NextIndex()
1639517175 {
1639617176 indexcount+=16;
16397
- gl.glColor3d(((indexcount >>> 16) & 255) / 255.0, ((indexcount >>> 8) & 255) / 255.0, ((indexcount) & 255) / 255.0);
17177
+ GetGL().glColor3d(((indexcount >>> 16) & 255) / 255.0, ((indexcount >>> 8) & 255) / 255.0, ((indexcount) & 255) / 255.0);
1639817178 //objects[indexcount] = o;
1639917179 //System.out.println("indexcount = " + indexcount);
1640017180 }