Normand Briere
2019-08-16 64e20f390e4b8e58bd0006dde8fa10fba1dac1d5
Object3D.java
....@@ -5,6 +5,7 @@
55 import java.util.Vector;
66
77 import javax.media.j3d.Transform3D;
8
+import javax.media.opengl.GL;
89 import javax.vecmath.Vector3d;
910
1011 import javax.imageio.ImageIO;
....@@ -13,12 +14,28 @@
1314 import //weka.core.
1415 matrix.Matrix;
1516
17
+import java.util.UUID;
18
+
1619 //import net.sourceforge.sizeof.SizeOf;
1720 public class Object3D extends Vector<Object3D> implements java.io.Serializable, iSendInfo //, aurelienribon.tweenengine.TweenAccessor<Object3D>
1821 {
1922 //static final long serialVersionUID = -607422624994562685L;
2023 static final long serialVersionUID = 5022536242724664900L;
2124
25
+ // Use GetUUID for backward compatibility with null.
26
+ private UUID uuid = UUID.randomUUID();
27
+
28
+ // TEMPORARY for mocap undo. No need to be transient.
29
+ mocap.reader.BVHReader.BVHResult savebvh;
30
+ Object3D saveskeleton;
31
+ //
32
+
33
+ String skyboxname;
34
+ String skyboxext;
35
+
36
+ Object3D versionlist[];
37
+ int versionindex = -1;
38
+
2239 ScriptNode scriptnode;
2340
2441 void InitOthers()
....@@ -99,64 +116,201 @@
99116
100117 // transient boolean reduced; // for morph reduction
101118
102
-transient com.bulletphysics.linearmath.Transform cache; // for fast merge
103
-transient com.bulletphysics.linearmath.Transform cache_1; // for fast merge
119
+ transient com.bulletphysics.linearmath.Transform cache; // for fast merge
120
+ transient com.bulletphysics.linearmath.Transform cache_1; // for fast merge
104121
105
-transient Object3D transientsupport; // for cloning
106
-transient boolean transientlink2master;
122
+ transient Object3D transientsupport; // for cloning
123
+ transient boolean transientlink2master;
107124
108
-void SaveSupports()
109
-{
110
- if (blockloop)
111
- return;
112
-
113
- transientsupport = support;
114
- transientlink2master = link2master;
115
-
116
- support = null;
117
- link2master = false;
118
-
119
- if (bRep != null)
125
+ void SaveSupports()
120126 {
121
- bRep.SaveSupports();
127
+ if (blockloop)
128
+ return;
129
+
130
+ transientsupport = support;
131
+ transientlink2master = link2master;
132
+
133
+ support = null;
134
+ link2master = false;
135
+
136
+ if (bRep != null)
137
+ {
138
+ bRep.SaveSupports();
139
+ }
140
+
141
+ for (int i = 0; i < Size(); i++)
142
+ {
143
+ Object3D child = (Object3D) get(i);
144
+ if (child == null)
145
+ continue;
146
+ blockloop = true;
147
+ child.SaveSupports();
148
+ blockloop = false;
149
+ }
122150 }
123
-
124
- for (int i = 0; i < Size(); i++)
151
+
152
+ void RestoreSupports()
125153 {
126
- Object3D child = (Object3D) get(i);
127
- if (child == null)
128
- continue;
154
+ if (blockloop)
155
+ return;
156
+
157
+ support = transientsupport;
158
+ link2master = transientlink2master;
159
+ transientsupport = null;
160
+ transientlink2master = false;
161
+
162
+ if (bRep != null)
163
+ {
164
+ bRep.RestoreSupports();
165
+ }
166
+
167
+ for (int i = 0; i < Size(); i++)
168
+ {
169
+ Object3D child = (Object3D) get(i);
170
+ if (child == null)
171
+ continue;
172
+ blockloop = true;
173
+ child.RestoreSupports();
174
+ blockloop = false;
175
+ }
176
+ }
177
+
178
+ void ExtractBigData(java.util.Hashtable<java.util.UUID, Object3D> hashtable)
179
+ {
180
+ Object3D o;
181
+
182
+ if (hashtable.containsKey(GetUUID()))
183
+ {
184
+ o = hashtable.get(GetUUID());
185
+
186
+ Grafreed.Assert(this.bRep == o.bRep);
187
+ //if (this.bRep != null)
188
+ // assert(this.bRep.support == o.transientrep);
189
+ if (this.support != null)
190
+ assert(this.support.bRep == o.transientrep);
191
+ }
192
+ else
193
+ {
194
+ o = new Object3D("copy of " + this.name);
195
+
196
+ hashtable.put(GetUUID(), o);
197
+ }
198
+
199
+ if (!blockloop)
200
+ {
201
+ blockloop = true;
202
+
203
+ for (int i=0; i<Size(); i++)
204
+ {
205
+ get(i).ExtractBigData(hashtable);
206
+ }
207
+
208
+ blockloop = false;
209
+ }
210
+
211
+ ExtractBigData(o);
212
+ }
213
+
214
+ void ExtractBigData(Object3D o)
215
+ {
216
+ if (o.bRep != null)
217
+ Grafreed.Assert(o.bRep == this.bRep);
218
+
219
+ o.bRep = this.bRep;
220
+// July 2019 if (this.bRep != null)
221
+// {
222
+// o.transientrep = this.bRep.support;
223
+// o.bRep.support = null;
224
+// }
225
+ o.selection = this.selection;
226
+ o.versionlist = this.versionlist;
227
+ o.versionindex = this.versionindex;
228
+
229
+ if (this.support != null)
230
+ {
231
+ if (o.transientrep != null)
232
+ Grafreed.Assert(o.transientrep == this.support.bRep);
233
+
234
+ o.transientrep = this.support.bRep;
235
+ this.support.bRep = null;
236
+ }
237
+
238
+ // o.support = this.support;
239
+ // o.fileparent = this.fileparent;
240
+ // if (this.bRep != null)
241
+ // o.bRep = this.bRep.support;
242
+
243
+ this.bRep = null;
244
+ // if (this.bRep != null)
245
+ // this.bRep.support = null;
246
+ // this.support = null;
247
+ // this.fileparent = null;
248
+ }
249
+
250
+// Object3D GetObject(java.util.UUID uuid)
251
+// {
252
+// if (this.uuid.equals(uuid))
253
+// return this;
254
+//
255
+// if (blockloop)
256
+// return null;
257
+//
258
+// blockloop = true;
259
+//
260
+// for (int i=0; i<Size(); i++)
261
+// {
262
+// Object3D o = get(i).GetObject(uuid);
263
+//
264
+// if (o != null)
265
+// return o;
266
+// }
267
+//
268
+// blockloop = false;
269
+//
270
+// return null;
271
+// }
272
+
273
+ void RestoreBigData(java.util.Hashtable<java.util.UUID, Object3D> hashtable)
274
+ {
275
+ if (!hashtable.containsKey(GetUUID()))
276
+ return;
277
+
278
+ Object3D o = hashtable.get(GetUUID());
279
+
280
+ RestoreBigData(o);
281
+
282
+ if (blockloop)
283
+ return;
284
+
129285 blockloop = true;
130
- child.SaveSupports();
286
+
287
+ //hashtable.remove(GetUUID());
288
+
289
+ for (int i=0; i<Size(); i++)
290
+ {
291
+ get(i).RestoreBigData(hashtable);
292
+ }
293
+
131294 blockloop = false;
132295 }
133
-}
134296
135
-void RestoreSupports()
136
-{
137
- if (blockloop)
138
- return;
139
-
140
- support = transientsupport;
141
- link2master = transientlink2master;
142
- transientsupport = null;
143
- transientlink2master = false;
144
-
145
- if (bRep != null)
297
+ void RestoreBigData(Object3D o)
146298 {
147
- bRep.RestoreSupports();
299
+ this.bRep = o.bRep;
300
+ if (this.support != null && o.transientrep != null)
301
+ {
302
+ this.support.bRep = o.transientrep;
303
+ }
304
+
305
+ this.selection = o.selection;
306
+
307
+ this.versionlist = o.versionlist;
308
+ this.versionindex = o.versionindex;
309
+// July 2019 if (this.bRep != null)
310
+// this.bRep.support = o.transientrep;
311
+ // this.support = o.support;
312
+ // this.fileparent = o.fileparent;
148313 }
149
-
150
- for (int i = 0; i < Size(); i++)
151
- {
152
- Object3D child = (Object3D) get(i);
153
- if (child == null)
154
- continue;
155
- blockloop = true;
156
- child.RestoreSupports();
157
- blockloop = false;
158
- }
159
-}
160314
161315 // MOCAP SUPPORT
162316 double tx,ty,tz,rx,ry,rz;
....@@ -299,6 +453,8 @@
299453 }
300454
301455 boolean live = false;
456
+ transient boolean keepdontselect;
457
+ boolean dontselect = false;
302458 boolean hide = false;
303459 boolean link2master = false; // performs reset support/master at each frame
304460 boolean marked = false; // animation node
....@@ -480,12 +636,14 @@
480636 toParent = LA.newMatrix();
481637 fromParent = LA.newMatrix();
482638 }
639
+
483640 if (toParentMarked == null)
484641 {
485642 if (maxcount != 1)
486643 {
487644 new Exception().printStackTrace();
488645 }
646
+
489647 toParentMarked = LA.newMatrix();
490648 fromParentMarked = LA.newMatrix();
491649 }
....@@ -773,7 +931,7 @@
773931 if (step == 0)
774932 step = 1;
775933 if (maxcount == 0)
776
- maxcount = 2048; // 4;
934
+ maxcount = 128; // 2048; // 4;
777935 // if (acceleration == 0)
778936 // acceleration = 10;
779937 if (delay == 0) // serial
....@@ -796,7 +954,7 @@
796954
797955 if (marked && Globals.isLIVE() && live &&
798956 //TEMP21aug2018
799
- Globals.DrawMode() == iCameraPane.SHADOW &&
957
+ (Globals.DrawMode() == iCameraPane.SHADOW || !Globals.RENDERSHADOW || !Globals.COMPUTESHADOWWHENLIVE) &&
800958 currentframe != Globals.framecount)
801959 {
802960 currentframe = Globals.framecount;
....@@ -808,7 +966,8 @@
808966
809967 boolean changedir = random && Math.random() < 0.01; // && !link2master;
810968
811
- if (transformcount*factor > maxcount || (step == 1 && changedir))
969
+ if (transformcount*factor >= maxcount && (rewind || random) ||
970
+ (step == 1 && changedir))
812971 {
813972 countdown = 1;
814973 delay = speedup?8:1;
....@@ -880,6 +1039,10 @@
8801039 if (material == null || material.multiply)
8811040 return true;
8821041
1042
+ if (projectedVertices != null && projectedVertices.length > 2 && projectedVertices[2].y >= 10000)
1043
+ return false;
1044
+
1045
+ // Transparent objects are dynamic because we have to sort the triangles.
8831046 return material.opacity > 0.99;
8841047 }
8851048
....@@ -911,6 +1074,11 @@
9111074 fromParent = null; // LA.newMatrix();
9121075 bRep = null; // new BoundaryRep();
9131076
1077
+ if (oname != null && oname.equals("LeftHand"))
1078
+ {
1079
+ name = oname;
1080
+ }
1081
+
9141082 /*
9151083 float hue = (float)Math.random();
9161084 Color col;
....@@ -953,7 +1121,7 @@
9531121
9541122 public Object clone()
9551123 {
956
- return GrafreeD.clone(this);
1124
+ return Grafreed.clone(this);
9571125 }
9581126
9591127 Object3D copyExpand()
....@@ -1275,6 +1443,7 @@
12751443 toParent = LA.newMatrix();
12761444 fromParent = LA.newMatrix();
12771445 }
1446
+
12781447 LA.matCopy(other.toParent, toParent);
12791448 LA.matCopy(other.fromParent, fromParent);
12801449
....@@ -1469,7 +1638,7 @@
14691638 BoundaryRep.SEUIL = other.material.cameralight;
14701639
14711640 // Set default to 0.1
1472
- BoundaryRep.SEUIL /= 2;
1641
+ BoundaryRep.SEUIL /= 4; // 2;
14731642 System.out.println("SEUIL = " + BoundaryRep.SEUIL);
14741643 }
14751644
....@@ -1728,7 +1897,7 @@
17281897 Object3D o = new Object3D((clone?"Ge:":"Li:") + this.name);
17291898 o.bRep = transientrep;
17301899 if (clone)
1731
- o.bRep = (BoundaryRep) GrafreeD.clone(transientrep);
1900
+ o.bRep = (BoundaryRep) Grafreed.clone(transientrep);
17321901 o.CreateMaterial();
17331902 o.SetAttributes(this, -1);
17341903 //parent
....@@ -1741,7 +1910,7 @@
17411910 Object3D o = new Object3D((clone?"Ge:":"Li:") + this.name);
17421911 o.bRep = bRep;
17431912 if (clone)
1744
- o.bRep = (BoundaryRep) GrafreeD.clone(bRep);
1913
+ o.bRep = (BoundaryRep) Grafreed.clone(bRep);
17451914 o.CreateMaterial();
17461915 //o.overwriteThis(this, -1);
17471916 o.SetAttributes(this, -1);
....@@ -1828,12 +1997,15 @@
18281997 if (obj.name == null)
18291998 continue; // can't be a null one
18301999
2000
+ // Try perfect match first.
18312001 if (n.equals(obj.name))
18322002 {
18332003 theobj = obj;
18342004 count++;
18352005 }
18362006 }
2007
+
2008
+ // not needed: n = n.split(":")[0]; // Poser generates a count
18372009
18382010 if (count != 1)
18392011 for (int i=Size(); --i>=0;)
....@@ -2293,12 +2465,22 @@
22932465 }
22942466 */
22952467 }
2468
+ else
2469
+ {
2470
+ //((ObjEditor)editWindow).SetupUI2(null);
2471
+ if (objectUI != null)
2472
+ ((ObjEditor)objectUI).pinButton.setSelected(pinned);
2473
+ else
2474
+ //new Exception().printStackTrace();
2475
+ System.err.println("objectUI is null");
2476
+ }
22962477 }
22972478
22982479 void createEditWindow(GroupEditor callee, boolean newWindow) //, boolean root)
22992480 {
23002481 if (newWindow)
23012482 {
2483
+ new Exception().printStackTrace();
23022484 System.exit(0);
23032485 if (parent != null)
23042486 {
....@@ -2333,6 +2515,14 @@
23332515 {
23342516 editWindow.refreshContents();
23352517 }
2518
+ else
2519
+ {
2520
+ if (manipWindow != null)
2521
+ {
2522
+ manipWindow.refreshContents();
2523
+ }
2524
+ }
2525
+
23362526 //if (parent != null)
23372527 //parent.refreshEditWindow();
23382528 }
....@@ -2412,7 +2602,8 @@
24122602 private static final int editSelf = 1;
24132603 private static final int editChild = 2;
24142604
2415
- void drawEditHandles(ClickInfo info, int level)
2605
+ void drawEditHandles(//ClickInfo info,
2606
+ int level)
24162607 {
24172608 if (level == 0)
24182609 {
....@@ -2420,7 +2611,8 @@
24202611 return;
24212612
24222613 Object3D selectee;
2423
- for (java.util.Enumeration e = selection.elements(); e.hasMoreElements(); selectee.drawEditHandles(info, level + 1))
2614
+ for (java.util.Enumeration e = selection.elements(); e.hasMoreElements(); selectee.drawEditHandles(//info,
2615
+ level + 1))
24242616 {
24252617 selectee = (Object3D) e.nextElement();
24262618 }
....@@ -2428,19 +2620,22 @@
24282620 } else
24292621 {
24302622 //super.
2431
- drawEditHandles0(info, level + 1);
2623
+ drawEditHandles0(//info,
2624
+ level + 1);
24322625 }
24332626 }
24342627
2435
- boolean doEditClick(ClickInfo info, int level)
2628
+ boolean doEditClick(//ClickInfo info,
2629
+ int level)
24362630 {
24372631 doSomething = 0;
24382632 if (level == 0)
24392633 {
2440
- return doParentClick(info);
2634
+ return doParentClick(); //info);
24412635 }
24422636 if (//super.
2443
- doEditClick0(info, level))
2637
+ doEditClick0(//info,
2638
+ level))
24442639 {
24452640 doSomething = 1;
24462641 return true;
....@@ -2450,7 +2645,7 @@
24502645 }
24512646 }
24522647
2453
- boolean doParentClick(ClickInfo info)
2648
+ boolean doParentClick() //ClickInfo info)
24542649 {
24552650 if (selection == null)
24562651 {
....@@ -2463,7 +2658,8 @@
24632658 for (java.util.Enumeration e = selection.elements(); e.hasMoreElements();)
24642659 {
24652660 Object3D selectee = (Object3D) e.nextElement();
2466
- if (selectee.doEditClick(info, 1))
2661
+ if (selectee.doEditClick(//info,
2662
+ 1))
24672663 {
24682664 childToDrag = selectee;
24692665 doSomething = 2;
....@@ -2475,13 +2671,15 @@
24752671 return retval;
24762672 }
24772673
2478
- void doEditDrag(ClickInfo info)
2674
+ void doEditDrag(//ClickInfo clickInfo,
2675
+ boolean opposite)
24792676 {
24802677 switch (doSomething)
24812678 {
24822679 case 1: // '\001'
24832680 //super.
2484
- doEditDrag0(info);
2681
+ doEditDrag0(//clickInfo,
2682
+ opposite);
24852683 break;
24862684
24872685 case 2: // '\002'
....@@ -2494,11 +2692,13 @@
24942692 {
24952693 //sel.hitSomething = childToDrag.hitSomething;
24962694 //childToDrag.doEditDrag(info);
2497
- sel.doEditDrag(info);
2695
+ sel.doEditDrag(//clickInfo,
2696
+ opposite);
24982697 } else
24992698 {
25002699 //super.
2501
- doEditDrag0(info);
2700
+ doEditDrag0(//clickInfo,
2701
+ opposite);
25022702 }
25032703 }
25042704 break;
....@@ -2516,6 +2716,9 @@
25162716 {
25172717 deselectAll();
25182718 }
2719
+
2720
+ new Exception().printStackTrace();
2721
+
25192722 ClickInfo newInfo = new ClickInfo();
25202723 newInfo.flags = info.flags;
25212724 newInfo.bounds = info.bounds;
....@@ -2608,6 +2811,18 @@
26082811 void GenNormalsS(boolean crease)
26092812 {
26102813 selection.GenNormals(crease);
2814
+// for (int i=0; i<selection.size(); i++)
2815
+// {
2816
+// Object3D selectee = (Object3D) selection.elementAt(i);
2817
+// selectee.GenNormals(crease);
2818
+// }
2819
+
2820
+ //Touch();
2821
+ }
2822
+
2823
+ void GenNormalsMeshS()
2824
+ {
2825
+ selection.GenNormalsMesh();
26112826 // for (int i=0; i<selection.size(); i++)
26122827 // {
26132828 // Object3D selectee = (Object3D) selection.elementAt(i);
....@@ -2748,6 +2963,24 @@
27482963 if (child == null)
27492964 continue;
27502965 child.GenNormals(crease);
2966
+// Children().release(i);
2967
+ }
2968
+ blockloop = false;
2969
+ }
2970
+
2971
+ void GenNormalsMesh()
2972
+ {
2973
+ if (blockloop)
2974
+ return;
2975
+
2976
+ blockloop = true;
2977
+ GenNormalsMesh0();
2978
+ for (int i = 0; i < Children().Size(); i++)
2979
+ {
2980
+ Object3D child = (Object3D) Children().get(i); // reserve(i);
2981
+ if (child == null)
2982
+ continue;
2983
+ child.GenNormalsMesh();
27512984 // Children().release(i);
27522985 }
27532986 blockloop = false;
....@@ -2905,7 +3138,8 @@
29053138 {
29063139 if (bRep != null)
29073140 {
2908
- bRep.GenUV();
3141
+ bRep.GenUV(); //1);
3142
+ //bRep.UnfoldUV();
29093143 Touch();
29103144 }
29113145 }
....@@ -2919,11 +3153,20 @@
29193153 }
29203154 }
29213155
3156
+ void GenNormalsMesh0()
3157
+ {
3158
+ if (bRep != null)
3159
+ {
3160
+ bRep.GenerateNormalsMesh();
3161
+ Touch();
3162
+ }
3163
+ }
3164
+
29223165 void GenNormalsMINE0()
29233166 {
29243167 if (bRep != null)
29253168 {
2926
- bRep.GenerateNormalsMINE();
3169
+ bRep.MergeNormals(); //.GenerateNormalsMINE();
29273170 Touch();
29283171 }
29293172 }
....@@ -2980,6 +3223,33 @@
29803223 blockloop = false;
29813224 }
29823225
3226
+ void TransformChildren()
3227
+ {
3228
+ if (toParent != null)
3229
+ {
3230
+ for (int i=Size(); --i>=0;)
3231
+ {
3232
+ Object3D v = get(i);
3233
+
3234
+ if (v.toParent == null)
3235
+ {
3236
+ v.toParent = LA.newMatrix();
3237
+ v.fromParent = LA.newMatrix();
3238
+ }
3239
+
3240
+// LA.matConcat(v.toParent, toParent, v.toParent);
3241
+// LA.matConcat(fromParent, v.fromParent, v.fromParent);
3242
+ LA.matConcat(toParent, v.toParent, v.toParent);
3243
+ LA.matConcat(v.fromParent, fromParent, v.fromParent);
3244
+ }
3245
+
3246
+ toParent = null; // LA.matIdentity(toParent);
3247
+ fromParent = null; // LA.matIdentity(fromParent);
3248
+
3249
+ Touch();
3250
+ }
3251
+ }
3252
+
29833253 void TransformGeometry()
29843254 {
29853255 Object3D obj = this;
....@@ -3201,9 +3471,11 @@
32013471
32023472 BoundaryRep sup = bRep.support;
32033473 bRep.support = null;
3204
- BoundaryRep temprep = (BoundaryRep) GrafreeD.clone(bRep);
3474
+ BoundaryRep temprep = (BoundaryRep) Grafreed.clone(bRep);
32053475 // bRep.SplitInTwo(onlyone); // thread...
3206
- temprep.SplitInTwo(reduction34, onlyone);
3476
+
3477
+ while(temprep.SplitInTwo(reduction34, onlyone));
3478
+
32073479 bRep = temprep;
32083480 bRep.support = sup;
32093481 Touch();
....@@ -3340,7 +3612,8 @@
33403612 if (blockloop)
33413613 return;
33423614
3343
- if (marked || (bRep != null && material != null)) // borderline...
3615
+ if (//marked || // does not make sense
3616
+ (bRep != null || material != null)) // borderline...
33443617 live = h;
33453618
33463619 for (int i = 0; i < Size(); i++)
....@@ -3361,7 +3634,8 @@
33613634 return;
33623635
33633636 //if (bRep != null)
3364
- if (marked || (bRep != null && material != null)) // borderline...
3637
+ if (//marked || // does not make sense
3638
+ (bRep != null || material != null)) // borderline...
33653639 link2master = h;
33663640
33673641 for (int i = 0; i < Size(); i++)
....@@ -3381,7 +3655,8 @@
33813655 if (blockloop)
33823656 return;
33833657
3384
- if (marked || (bRep != null && material != null)) // borderline...
3658
+ if (//marked || // does not make sense
3659
+ (bRep != null || material != null)) // borderline...
33853660 hide = h;
33863661
33873662 for (int i = 0; i < Size(); i++)
....@@ -3401,7 +3676,7 @@
34013676 if (blockloop)
34023677 return;
34033678
3404
- if (bRep != null && material != null) // borderline...
3679
+ if (bRep != null || material != null) // borderline...
34053680 marked = h;
34063681
34073682 for (int i = 0; i < Size(); i++)
....@@ -3411,6 +3686,46 @@
34113686 continue;
34123687 blockloop = true;
34133688 child.MarkLeaves(h);
3689
+ blockloop = false;
3690
+ // release(i);
3691
+ }
3692
+ }
3693
+
3694
+ void RewindLeaves(boolean h)
3695
+ {
3696
+ if (blockloop)
3697
+ return;
3698
+
3699
+ if (bRep != null || material != null) // borderline...
3700
+ rewind = h;
3701
+
3702
+ for (int i = 0; i < Size(); i++)
3703
+ {
3704
+ Object3D child = (Object3D) get(i); // reserve(i);
3705
+ if (child == null)
3706
+ continue;
3707
+ blockloop = true;
3708
+ child.RewindLeaves(h);
3709
+ blockloop = false;
3710
+ // release(i);
3711
+ }
3712
+ }
3713
+
3714
+ void RandomLeaves(boolean h)
3715
+ {
3716
+ if (blockloop)
3717
+ return;
3718
+
3719
+ if (bRep != null || material != null) // borderline...
3720
+ random = h;
3721
+
3722
+ for (int i = 0; i < Size(); i++)
3723
+ {
3724
+ Object3D child = (Object3D) get(i); // reserve(i);
3725
+ if (child == null)
3726
+ continue;
3727
+ blockloop = true;
3728
+ child.RandomLeaves(h);
34143729 blockloop = false;
34153730 // release(i);
34163731 }
....@@ -3725,7 +4040,7 @@
37254040 if (child == null)
37264041 continue;
37274042
3728
- if (GrafreeD.RENDERME > 0)
4043
+ if (Grafreed.RENDERME > 0)
37294044 {
37304045 if (child instanceof Merge)
37314046 ((Merge)child).renderme();
....@@ -3876,7 +4191,7 @@
38764191 if (child == null)
38774192 continue;
38784193
3879
- if (GrafreeD.RENDERME > 0)
4194
+ if (Grafreed.RENDERME > 0)
38804195 {
38814196 if (child instanceof Merge)
38824197 ((Merge)child).renderme();
....@@ -4071,7 +4386,7 @@
40714386 if (child == null)
40724387 continue;
40734388
4074
- if (GrafreeD.RENDERME > 0)
4389
+ if (Grafreed.RENDERME > 0)
40754390 {
40764391 if (child instanceof Merge)
40774392 ((Merge)child).renderme();
....@@ -4184,6 +4499,55 @@
41844499 {
41854500 blockloop = true;
41864501 get(i).RepairShadow();
4502
+ blockloop = false;
4503
+ }
4504
+ }
4505
+
4506
+ void RepairSOV()
4507
+ {
4508
+ if (blockloop)
4509
+ return;
4510
+
4511
+ String texname = this.GetPigmentTexture();
4512
+
4513
+ if (texname.startsWith("sov"))
4514
+ {
4515
+ String[] s = texname.split("/");
4516
+
4517
+ String[] sname = s[1].split("Color.pn");
4518
+
4519
+ texname = sname[0];
4520
+
4521
+ if (sname.length > 1)
4522
+ {
4523
+ texname += "Color.jpg";
4524
+ }
4525
+
4526
+ this.SetPigmentTexture("sov/" + texname);
4527
+ }
4528
+
4529
+ texname = this.GetBumpTexture();
4530
+
4531
+ if (texname.startsWith("sov"))
4532
+ {
4533
+ String[] s = texname.split("/");
4534
+
4535
+ String[] sname = s[1].split("Bump.pn");
4536
+
4537
+ texname = sname[0];
4538
+
4539
+ if (sname.length > 1)
4540
+ {
4541
+ texname += "Bump.jpg";
4542
+ }
4543
+
4544
+ this.SetBumpTexture("sov/" + texname);
4545
+ }
4546
+
4547
+ for (int i=0; i<Size(); i++)
4548
+ {
4549
+ blockloop = true;
4550
+ get(i).RepairSOV();
41874551 blockloop = false;
41884552 }
41894553 }
....@@ -4678,7 +5042,7 @@
46785042
46795043 cTreePath SelectLeaf(int indexcount, boolean deselect)
46805044 {
4681
- if (hide)
5045
+ if (hide || dontselect)
46825046 return null;
46835047
46845048 if (count <= 0)
....@@ -4702,9 +5066,17 @@
47025066 }
47035067 }
47045068
5069
+ ObjEditor GetWindow()
5070
+ {
5071
+ if (editWindow != null)
5072
+ return editWindow;
5073
+
5074
+ return manipWindow;
5075
+ }
5076
+
47055077 cTreePath Select(int indexcount, boolean deselect)
47065078 {
4707
- if (hide)
5079
+ if (hide || dontselect)
47085080 return null;
47095081
47105082 if (count <= 0)
....@@ -4738,10 +5110,11 @@
47385110 if (leaf != null)
47395111 {
47405112 cTreePath tp = new cTreePath(this, leaf);
4741
- if (editWindow != null)
5113
+ ObjEditor window = GetWindow();
5114
+ if (window != null)
47425115 {
47435116 //System.out.println("editWindow = " + editWindow + " vs " + this);
4744
- editWindow.Select(tp, deselect, true);
5117
+ window.Select(tp, deselect, true);
47455118 }
47465119
47475120 return tp;
....@@ -4758,6 +5131,7 @@
47585131
47595132 if (child == null)
47605133 continue;
5134
+
47615135 if (child.HasTransparency() && child.size() != 0)
47625136 {
47635137 cTreePath leaf = child.Select(indexcount, deselect);
....@@ -4767,9 +5141,10 @@
47675141 if (leaf != null)
47685142 {
47695143 cTreePath tp = new cTreePath(this, leaf);
4770
- if (editWindow != null)
5144
+ ObjEditor window = GetWindow();
5145
+ if (window != null)
47715146 {
4772
- editWindow.Select(tp, deselect, true);
5147
+ window.Select(tp, deselect, true);
47735148 }
47745149
47755150 return tp;
....@@ -5094,6 +5469,51 @@
50945469 blockloop = false;
50955470 }
50965471
5472
+ void ResetSelectable()
5473
+ {
5474
+ if (blockloop)
5475
+ return;
5476
+
5477
+ blockloop = true;
5478
+
5479
+ keepdontselect = dontselect;
5480
+ dontselect = true;
5481
+
5482
+ Object3D child;
5483
+ int nb = Size();
5484
+ for (int i = 0; i < nb; i++)
5485
+ {
5486
+ child = (Object3D) get(i);
5487
+ if (child == null)
5488
+ continue;
5489
+ child.ResetSelectable();
5490
+ }
5491
+
5492
+ blockloop = false;
5493
+ }
5494
+
5495
+ void RestoreSelectable()
5496
+ {
5497
+ if (blockloop)
5498
+ return;
5499
+
5500
+ blockloop = true;
5501
+
5502
+ dontselect = keepdontselect;
5503
+
5504
+ Object3D child;
5505
+ int nb = Size();
5506
+ for (int i = 0; i < nb; i++)
5507
+ {
5508
+ child = (Object3D) get(i);
5509
+ if (child == null)
5510
+ continue;
5511
+ child.RestoreSelectable();
5512
+ }
5513
+
5514
+ blockloop = false;
5515
+ }
5516
+
50975517 boolean IsSelected()
50985518 {
50995519 if (parent == null)
....@@ -5154,12 +5574,41 @@
51545574 if (fullname == null)
51555575 return "";
51565576
5577
+ if (fullname.pigment != null)
5578
+ {
5579
+ return fullname.pigment;
5580
+ }
5581
+
51575582 // System.out.println("Fullname = " + fullname);
51585583
5159
- if (fullname.name.indexOf(":") == -1)
5160
- return fullname.name;
5584
+ // Does not work on Windows due to C:
5585
+// if (fullname.name.indexOf(":") == -1)
5586
+// return fullname.name;
5587
+//
5588
+// return fullname.name.substring(0,fullname.name.indexOf(":"));
51615589
5162
- return fullname.name.substring(0,fullname.name.indexOf(":"));
5590
+ String[] split = fullname.name.split(":");
5591
+
5592
+ if (split.length == 0)
5593
+ {
5594
+ return fullname.pigment = "";
5595
+ }
5596
+
5597
+ if (split.length <= 2)
5598
+ {
5599
+ if (fullname.name.endsWith(":"))
5600
+ {
5601
+ // Windows
5602
+ return fullname.pigment = fullname.name.substring(0, fullname.name.length()-1);
5603
+ }
5604
+
5605
+ return fullname.pigment = split[0];
5606
+ }
5607
+
5608
+ // Windows
5609
+ assert(split.length == 4);
5610
+
5611
+ return fullname.pigment = split[0] + ":" + split[1];
51635612 }
51645613
51655614 static String GetBump(cTexture fullname)
....@@ -5167,11 +5616,44 @@
51675616 if (fullname == null)
51685617 return "";
51695618
5619
+ if (fullname.bump != null)
5620
+ {
5621
+ return fullname.bump;
5622
+ }
5623
+
51705624 // System.out.println("Fullname = " + fullname);
5171
- if (fullname.name.indexOf(":") == -1)
5172
- return "";
5173
-
5174
- return fullname.name.substring(fullname.name.indexOf(":")+1,fullname.name.length());
5625
+ // Does not work on Windows due to C:
5626
+// if (fullname.name.indexOf(":") == -1)
5627
+// return "";
5628
+//
5629
+// return fullname.name.substring(fullname.name.indexOf(":")+1,fullname.name.length());
5630
+ String[] split = fullname.name.split(":");
5631
+
5632
+ if (split.length == 0)
5633
+ {
5634
+ return fullname.bump = "";
5635
+ }
5636
+
5637
+ if (split.length == 1)
5638
+ {
5639
+ return fullname.bump = "";
5640
+ }
5641
+
5642
+ if (split.length == 2)
5643
+ {
5644
+ if (fullname.name.endsWith(":"))
5645
+ {
5646
+ // Windows
5647
+ return fullname.bump = "";
5648
+ }
5649
+
5650
+ return fullname.bump = split[1];
5651
+ }
5652
+
5653
+ // Windows
5654
+ assert(split.length == 4);
5655
+
5656
+ return fullname.bump = split[2] + ":" + split[3];
51755657 }
51765658
51775659 String GetPigmentTexture()
....@@ -5245,7 +5727,7 @@
52455727 System.out.print("; textures = " + textures);
52465728 System.out.println("; usedtextures = " + usedtextures);
52475729
5248
- if (GetTextures() == null)
5730
+ if (GetTextures() == null) // What is that??
52495731 GetTextures().name = ":";
52505732
52515733 String texname = tex;
....@@ -5254,6 +5736,9 @@
52545736 texname = "";
52555737
52565738 GetTextures().name = texname + ":" + GetBump(GetTextures());
5739
+
5740
+ GetTextures().pigment = null;
5741
+
52575742 Touch();
52585743 }
52595744
....@@ -5278,6 +5763,43 @@
52785763 }
52795764 }
52805765
5766
+ UUID GetUUID()
5767
+ {
5768
+ if (uuid == null)
5769
+ {
5770
+ // Serial
5771
+ uuid = UUID.randomUUID();
5772
+ }
5773
+
5774
+ return uuid;
5775
+ }
5776
+
5777
+ Object3D GetObject(UUID uid)
5778
+ {
5779
+ if (blockloop)
5780
+ return null;
5781
+
5782
+ if (GetUUID().equals(uid))
5783
+ return this;
5784
+
5785
+ int nb = Size();
5786
+ for (int i = 0; i < nb; i++)
5787
+ {
5788
+ Object3D child = (Object3D) get(i);
5789
+
5790
+ if (child == null)
5791
+ continue;
5792
+
5793
+ blockloop = true;
5794
+ Object3D obj = child.GetObject(uid);
5795
+ blockloop = false;
5796
+ if (obj != null)
5797
+ return obj;
5798
+ }
5799
+
5800
+ return null;
5801
+ }
5802
+
52815803 void SetBumpTexture(String tex)
52825804 {
52835805 if (GetTextures() == null)
....@@ -5289,6 +5811,8 @@
52895811 texname = "";
52905812
52915813 GetTextures().name = Object3D.GetPigment(GetTextures()) + ":" + texname;
5814
+
5815
+ GetTextures().bump = null;
52925816
52935817 Touch();
52945818 }
....@@ -5314,6 +5838,38 @@
53145838 }
53155839 }
53165840
5841
+ void EmbedTextures(boolean embed)
5842
+ {
5843
+ if (blockloop)
5844
+ return;
5845
+
5846
+ //if (GetTextures() != null)
5847
+ if (embed)
5848
+ CameraPane.EmbedTextures(GetTextures());
5849
+ else
5850
+ {
5851
+ GetTextures().pigmentdata = null;
5852
+ GetTextures().bumpdata = null;
5853
+ GetTextures().pw = 0;
5854
+ GetTextures().ph = 0;
5855
+ GetTextures().bw = 0;
5856
+ GetTextures().bh = 0;
5857
+ }
5858
+
5859
+ int nb = Size();
5860
+ for (int i = 0; i < nb; i++)
5861
+ {
5862
+ Object3D child = (Object3D) get(i);
5863
+
5864
+ if (child == null)
5865
+ continue;
5866
+
5867
+ blockloop = true;
5868
+ child.EmbedTextures(embed);
5869
+ blockloop = false;
5870
+ }
5871
+ }
5872
+
53175873 void draw(iCameraPane display, Object3D /*Composite*/ root, boolean selected, boolean blocked)
53185874 {
53195875 Draw(display, root, selected, blocked);
....@@ -5322,12 +5878,23 @@
53225878 boolean NeedSupport()
53235879 {
53245880 return
5325
- CameraPane.SUPPORT && !CameraPane.movingcamera && link2master && /*live &&*/ support != null
5881
+ CameraPane.SUPPORT && (!CameraPane.movingcamera || (!Globals.FREEZEONMOVE && Globals.isLIVE())) && link2master && /*live &&*/ support != null
53265882 // PROBLEM with CROWD!!
5327
- && (Globals.DrawMode() == iCameraPane.SHADOW || Globals.CROWD);
5883
+ && (Globals.DrawMode() == iCameraPane.SHADOW || !Globals.RENDERSHADOW || Globals.CROWD);
53285884 }
53295885
53305886 static boolean DEBUG_SELECTION = false;
5887
+
5888
+ boolean IsLive()
5889
+ {
5890
+ if (live)
5891
+ return true;
5892
+
5893
+ if (parent == null)
5894
+ return false;
5895
+
5896
+ return parent.IsLive();
5897
+ }
53315898
53325899 void Draw(iCameraPane display, Object3D /*Composite*/ root, boolean selected, boolean blocked)
53335900 {
....@@ -5339,7 +5906,7 @@
53395906 }
53405907
53415908 if (display.DrawMode() == iCameraPane.SELECTION &&
5342
- hide)
5909
+ (hide || dontselect))
53435910 return;
53445911
53455912 if (name != null && name.contains("sclera"))
....@@ -5371,7 +5938,7 @@
53715938 return;
53725939 }
53735940
5374
- javax.media.opengl.GL gl = display.GetGL();
5941
+ //javax.media.opengl.GL gl = display.GetGL();
53755942
53765943 /*
53775944 if (touched)
....@@ -5389,8 +5956,10 @@
53895956 if (support != null)
53905957 support = support;
53915958
5392
- //boolean usecalllists = IsStatic() && GetBRep() != null && (!CameraPane.SUPPORT || support == null || !link2master); // !(this instanceof cSpring) && !(this instanceof BezierPatch);
5393
- boolean usecalllists = false; // IsStatic() && GetBRep() != null && (!CameraPane.SUPPORT || support == null) && !link2master; // !(this instanceof cSpring) && !(this instanceof BezierPatch);
5959
+ boolean usecalllists = !IsLive() && IsStatic() && GetBRep() != null && (!CameraPane.SUPPORT || support == null || !link2master); // !(this instanceof cSpring) && !(this instanceof BezierPatch);
5960
+ //boolean usecalllists = false; //!IsLive(); // IsStatic() && GetBRep() != null && (!CameraPane.SUPPORT || support == null) && !link2master; // !(this instanceof cSpring) && !(this instanceof BezierPatch);
5961
+
5962
+ //usecalllists &= display.DrawMode() == display.DEFAULT; // Don't compute list in shadow pass.
53945963
53955964 if (!usecalllists && bRep != null && bRep.displaylist > 0)
53965965 {
....@@ -5400,8 +5969,9 @@
54005969 // usecalllists &= !(parent instanceof RandomNode);
54015970 // usecalllists = false;
54025971
5403
- if (GetBRep() != null)
5404
- usecalllists = usecalllists;
5972
+ if (display.DrawMode() == display.SHADOW)
5973
+ //GetBRep() != null)
5974
+ usecalllists = !!usecalllists;
54055975 //System.out.println("draw " + this);
54065976 //new Exception().printStackTrace();
54075977
....@@ -5410,10 +5980,12 @@
54105980 boolean selectmode = display.DrawMode() == display.SELECTION || display.IsDebugSelection();
54115981
54125982 if (!selectmode && //display.DrawMode() != display.SELECTION &&
5413
- (touched || (bRep != null && bRep.displaylist <= 0)))
5983
+ //(touched || (bRep != null && bRep.displaylist <= 0)))
5984
+ (Globals.isLIVE() && Globals.COMPUTESHADOWWHENLIVE || touched && Globals.COMPUTESHADOWWHENLIVE)) // || (bRep != null && bRep.displaylist <= 0)))
54145985 {
54155986 Globals.lighttouched = true;
54165987 } // all panes...
5988
+
54175989 //if (usecalllists && display.DrawMode() != display.SELECTION && display.DrawMode() != display.SHADOW &&
54185990 if (bRep != null && usecalllists && !selectmode && // june 2013 display.DrawMode() != display.SHADOW &&
54195991 (touched || (bRep != null && bRep.displaylist <= 0)))
....@@ -5421,9 +5993,9 @@
54215993 if (!(this instanceof Composite))
54225994 touched = false;
54235995 //if (displaylist == -1 && usecalllists)
5424
- if ((bRep != null && bRep.displaylist <= 0) && usecalllists) // june 2013
5996
+ if (bRep.displaylist <= 0 && usecalllists) // && display.DrawMode() == display.DEFAULT) // june 2013
54255997 {
5426
- bRep.displaylist = gl.glGenLists(1);
5998
+ bRep.displaylist = display.GenList();
54275999 assert(bRep.displaylist != 0);
54286000 // System.err.println("glGenLists: " + bRep.displaylist + " for " + this);
54296001 //System.out.println("\tgen list " + list);
....@@ -5432,17 +6004,19 @@
54326004
54336005 //System.out.println("\tnew list " + list);
54346006 //gl.glDrawBuffer(gl.GL_NONE);
5435
- if (usecalllists)
6007
+ if (usecalllists && bRep.displaylist > 0)
54366008 {
54376009 // System.err.println("new list " + bRep.displaylist + " for " + this);
5438
- gl.glNewList(bRep.displaylist, gl.GL_COMPILE); //_AND_EXECUTE);
6010
+ display.NewList(bRep.displaylist);
54396011 }
6012
+
54406013 CallList(display, root, selected, blocked);
6014
+
54416015 // compiled = true;
5442
- if (usecalllists)
6016
+ if (usecalllists && bRep.displaylist > 0)
54436017 {
54446018 // System.err.println("end list " + bRep.displaylist + " for " + this);
5445
- gl.glEndList();
6019
+ display.EndList();
54466020 }
54476021 //gl.glDrawBuffer(gl.GL_BACK);
54486022 // XXX touched = false;
....@@ -5490,7 +6064,7 @@
54906064 if (display.DrawMode() == iCameraPane.SHADOW)
54916065 {
54926066 if (!link2master // tricky to cull in shadow mode.
5493
- && GetBRep().FrustumCull(this, gl, display.LightCamera(), true))
6067
+ && GetBRep().FrustumCull(this, null, display.LightCamera(), true))
54946068 {
54956069 //System.out.print("CULLED");
54966070 culled = true;
....@@ -5498,7 +6072,7 @@
54986072 }
54996073 else
55006074 //GetBRep().getBounds(v0, v1, this);
5501
- if (GetBRep().FrustumCull(this, gl, display.RenderCamera(), false))
6075
+ if (GetBRep().FrustumCull(this, null, display.RenderCamera(), false))
55026076 culled = true;
55036077
55046078 // LA.xformPos(v0, display.renderCamera.toScreen, v0);
....@@ -5538,7 +6112,8 @@
55386112 {
55396113 if (GetBRep() != null)
55406114 {
5541
- CameraPane.NextIndex(this, gl);
6115
+ display.NextIndex();
6116
+
55426117 // vertex color conflict : gl.glCallList(list);
55436118 DrawNode(display, root, selected);
55446119 if (this instanceof BezierPatch)
....@@ -5579,7 +6154,28 @@
55796154 tex = GetTextures();
55806155 }
55816156
5582
- display.BindTextures(tex, texres);
6157
+ boolean failedPigment = false;
6158
+ boolean failedBump = false;
6159
+
6160
+ try
6161
+ {
6162
+ display.BindPigmentTexture(tex, texres);
6163
+ }
6164
+ catch (Exception e)
6165
+ {
6166
+ System.err.println("FAILED: " + this);
6167
+ failedPigment = true;
6168
+ }
6169
+
6170
+ try
6171
+ {
6172
+ display.BindBumpTexture(tex, texres);
6173
+ }
6174
+ catch (Exception e)
6175
+ {
6176
+ //System.err.println("FAILED: " + this);
6177
+ failedBump = true;
6178
+ }
55836179
55846180 if (!compiled)
55856181 {
....@@ -5595,13 +6191,17 @@
55956191
55966192 // System.err.println("glCallList: " + bRep.displaylist + " for " + this);
55976193 assert(bRep.displaylist != 0);
5598
- gl.glCallList(bRep.displaylist);
6194
+ display.CallList(bRep.displaylist);
55996195 // june 2013 drawSelf(display, root, selected);
56006196 }
56016197 }
56026198 }
56036199
5604
- display.ReleaseTextures(tex);
6200
+ if (!failedBump)
6201
+ display.ReleaseBumpTexture(tex);
6202
+
6203
+ if (!failedPigment)
6204
+ display.ReleasePigmentTexture(tex);
56056205
56066206 display.PopMaterial(this, selected);
56076207 }
....@@ -5730,6 +6330,9 @@
57306330
57316331 void drawSelf(iCameraPane display, Object3D /*Composite*/ root, boolean selected, boolean blocked)
57326332 {
6333
+ if (display.DrawMode() == iCameraPane.SELECTION && dontselect)
6334
+ return;
6335
+
57336336 if (hide)
57346337 return;
57356338 // shadow optimisation
....@@ -5855,6 +6458,9 @@
58556458 if (display.DrawMode() == display.SHADOW && projectedVertices != null && projectedVertices.length > 2 && projectedVertices[2].y >= 10000)
58566459 return; // no shadow for transparent objects
58576460
6461
+ if (display.DrawMode() == iCameraPane.SELECTION && dontselect)
6462
+ return;
6463
+
58586464 if (hide)
58596465 return;
58606466
....@@ -5895,9 +6501,10 @@
58956501 return;
58966502 }
58976503
6504
+ //bRep.GenUV(1/material.diffuseness);
58986505 // bRep.lock = true;
58996506
5900
- javax.media.opengl.GL gl = display.GetGL();
6507
+ //javax.media.opengl.GL gl = display.GetGL();
59016508
59026509 if (CameraPane.BOXMODE && !selected) // || CameraPane.movingcamera)
59036510 {
....@@ -5914,23 +6521,7 @@
59146521
59156522 bRep.getMinMax(min, max, 100);
59166523
5917
- gl.glBegin(gl.GL_LINES);
5918
-
5919
- gl.glVertex3d(min.x, min.y, min.z);
5920
- gl.glVertex3d(min.x, min.y, max.z);
5921
- gl.glVertex3d(min.x, min.y, min.z);
5922
- gl.glVertex3d(min.x, max.y, min.z);
5923
- gl.glVertex3d(min.x, min.y, min.z);
5924
- gl.glVertex3d(max.x, min.y, min.z);
5925
-
5926
- gl.glVertex3d(max.x, max.y, max.z);
5927
- gl.glVertex3d(min.x, max.y, max.z);
5928
- gl.glVertex3d(max.x, max.y, max.z);
5929
- gl.glVertex3d(max.x, min.y, max.z);
5930
- gl.glVertex3d(max.x, max.y, max.z);
5931
- gl.glVertex3d(max.x, max.y, min.z);
5932
-
5933
- gl.glEnd();
6524
+ display.DrawBox(min, max);
59346525
59356526 return;
59366527 }
....@@ -5984,178 +6575,19 @@
59846575 new Exception().printStackTrace();
59856576 return;
59866577 }
5987
-
5988
- // TRIANGLE STRIP ARRAY
5989
- if (bRep.trimmed)
6578
+
6579
+ if (dontselect)
59906580 {
5991
- float[] v = bRep.getRawVertices();
5992
- float[] n = bRep.getRawNormals();
5993
- float[] c = bRep.getRawColors();
5994
- float[] uv = bRep.getRawUVMap();
5995
-
5996
- int count2 = 0;
5997
- int count3 = 0;
5998
-
5999
- if (n.length > 0)
6000
- {
6001
- for (int i = 0; i < strips.length; i++)
6002
- {
6003
- gl.glBegin(gl.GL_TRIANGLE_STRIP);
6004
-
6005
- /*
6006
- boolean locked = false;
6007
- float eps = 0.1f;
6008
- boolean wrap = CameraPane.UVWRAP; // true; // UV WRAP TEXTURE ISSUE: true = artifacts, false = nice
6009
-
6010
- int dot = 0;
6011
-
6012
- if ((dot&1) == 0)
6013
- dot |= (Math.abs(qv.s - pv.s) < eps && Math.abs(qv.t - pv.t) < eps) ? 3 : 1;
6014
-
6015
- if (wrap || (dot&2) != 0) // Math.abs(qv.s - pv.s) < eps && Math.abs(qv.t - pv.t) < eps)
6016
- gl.glTexCoord2f((float) qv.s, (float) qv.t);
6017
- else
6018
- {
6019
- locked = true;
6020
- gl.glTexCoord2f((float) pv.s, (float) pv.t);
6021
- }
6022
- //System.out.println("vertexq = " + qv.x + ", " + qv.y + ", " + qv.z);
6023
- gl.glVertex3f((float) qv.x, (float) qv.y, (float) qv.z);
6024
- if (hasnorm)
6025
- {
6026
- //System.out.println("normalr = " + rv.norm.x + ", " + rv.norm.y + ", " + rv.norm.z);
6027
- gl.glNormal3f((float) rv.norm.x, (float) rv.norm.y, (float) rv.norm.z);
6028
- }
6029
-
6030
- if ((dot&4) == 0)
6031
- dot |= (Math.abs(rv.s - pv.s) < eps && Math.abs(rv.t - pv.t) < eps) ? 12 : 4;
6032
-
6033
- if (wrap || !locked && (dot&8) != 0)
6034
- gl.glTexCoord2f((float) rv.s, (float) rv.t);
6035
- else
6036
- gl.glTexCoord2f((float) pv.s, (float) pv.t);
6037
-
6038
- f.dot = dot;
6039
- */
6040
-
6041
- if (!selectmode)
6042
- {
6043
- if (n[count3] != 0 || n[count3 + 1] != 0 || n[count3 + 2] != 0)
6044
- {
6045
- gl.glNormal3f(n[count3], n[count3 + 1], n[count3 + 2]);
6046
- } else
6047
- {
6048
- gl.glNormal3f(0, 0, 1);
6049
- }
6050
-
6051
- if (c != null)
6052
- //System.out.println("glcolor = " + c[count3] + ", " + c[count3+1] + ", " + c[count3+2]);
6053
- {
6054
- gl.glColor4f(c[count3/3], c[count3/3 /* + 1*/], c[count3/3 /* + 2*/], 1);
6055
- }
6056
- }
6057
- if (flipV)
6058
- gl.glTexCoord2f(uv[count2], 1-uv[count2 + 1]);
6059
- else
6060
- gl.glTexCoord2f(uv[count2], uv[count2 + 1]);
6061
- //System.out.println("vertex1 = " + v[count3] + ", " + v[count3+1] + ", " + v[count3+2]);
6062
- gl.glVertex3f(v[count3], v[count3 + 1], v[count3 + 2]);
6063
-
6064
- count2 += 2;
6065
- count3 += 3;
6066
- if (!selectmode)
6067
- {
6068
- if (n[count3] != 0 || n[count3 + 1] != 0 || n[count3 + 2] != 0)
6069
- {
6070
- gl.glNormal3f(n[count3], n[count3 + 1], n[count3 + 2]);
6071
- } else
6072
- {
6073
- gl.glNormal3f(0, 0, 1);
6074
- }
6075
- if (c != null)
6076
- {
6077
- gl.glColor4f(c[count3/3], c[count3/3 /* + 1*/], c[count3/3 /* + 2*/], 1);
6078
- }
6079
- }
6080
- if (flipV)
6081
- gl.glTexCoord2f(uv[count2], 1-uv[count2 + 1]);
6082
- else
6083
- gl.glTexCoord2f(uv[count2], uv[count2 + 1]);
6084
- //System.out.println("vertex2 = " + v[count3] + ", " + v[count3+1] + ", " + v[count3+2]);
6085
- gl.glVertex3f(v[count3], v[count3 + 1], v[count3 + 2]);
6086
-
6087
- count2 += 2;
6088
- count3 += 3;
6089
- for (int j = 0; j < strips[i] - 2; j++)
6090
- {
6091
- //gl.glTexCoord2d(...);
6092
- if (!selectmode)
6093
- {
6094
- if (n[count3] != 0 || n[count3 + 1] != 0 || n[count3 + 2] != 0)
6095
- {
6096
- gl.glNormal3f(n[count3], n[count3 + 1], n[count3 + 2]);
6097
- } else
6098
- {
6099
- gl.glNormal3f(0, 0, 1);
6100
- }
6101
- if (c != null)
6102
- {
6103
- gl.glColor4f(c[count3/3], c[count3/3 /* + 1*/], c[count3/3 /* + 2*/], 1);
6104
- }
6105
- }
6106
-
6107
- if (flipV)
6108
- gl.glTexCoord2f(uv[count2], 1-uv[count2 + 1]);
6109
- else
6110
- gl.glTexCoord2f(uv[count2], uv[count2 + 1]);
6111
- //System.out.println("coord3 = " + uv[count2] + ", " + uv[count2+1]);
6112
- gl.glVertex3f(v[count3], v[count3 + 1], v[count3 + 2]);
6113
- count2 += 2;
6114
- count3 += 3;
6115
- }
6116
-
6117
- gl.glEnd();
6118
- }
6119
- }
6120
-
6121
- assert count3 == v.length;
6581
+ //bRep.GenerateNormalsMINE();
61226582 }
6123
- else // !trimmed
6124
- {
6125
- int count = 0;
6126
- for (int i = 0; i < strips.length; i++)
6127
- {
6128
- gl.glBegin(gl.GL_TRIANGLE_STRIP);
6129
-
6130
- Vertex p = bRep.GetVertex(bRep.indices[count++]);
6131
- Vertex q = bRep.GetVertex(bRep.indices[count++]);
6132
-
6133
- drawVertex(gl, p, selectmode);
6134
- drawVertex(gl, q, selectmode);
6135
-
6136
- for (int j = 0; j < strips[i] - 2; j++)
6137
- {
6138
- Vertex r = bRep.GetVertex(bRep.indices[count++]);
6139
-
6140
-// if (j%2 == 0)
6141
-// drawFace(p, q, r, display, null);
6142
-// else
6143
-// drawFace(p, r, q, display, null);
6144
-
6145
-// p = q;
6146
-// q = r;
6147
- drawVertex(gl, r, selectmode);
6148
- }
6149
-
6150
- gl.glEnd();
6151
- }
6152
- }
6583
+
6584
+ display.DrawGeometry(bRep, flipV, selectmode);
61536585 } else // catch (Error e)
61546586 {
61556587 // TRIANGLE ARRAY
61566588 if (IsOpaque()) // Static())
61576589 {
6158
- gl.glBegin(gl.GL_TRIANGLES);
6590
+ display.StartTriangles();
61596591 int facecount = bRep.FaceCount();
61606592 for (int i = 0; i < facecount; i++)
61616593 {
....@@ -6220,7 +6652,7 @@
62206652
62216653 display.DrawFace(this, p, q, r, face);
62226654 }
6223
- gl.glEnd();
6655
+ display.EndTriangles();
62246656 }
62256657 else
62266658 {
....@@ -6249,8 +6681,8 @@
62496681 //System.out.println("SORT");
62506682
62516683 java.util.Arrays.sort(facescompare);
6252
-
6253
- gl.glBegin(gl.GL_TRIANGLES);
6684
+
6685
+ display.StartTriangles();
62546686 for (int i = 0; i < facecount; i++)
62556687 {
62566688 Face face = bRep.GetFace(facescompare[i].index);
....@@ -6264,11 +6696,12 @@
62646696
62656697 display.DrawFace(this, p, q, r, face);
62666698 }
6267
- gl.glEnd();
6699
+ display.EndTriangles();
62686700 }
62696701
62706702 if (false) // live && support != null && support.bRep != null) // debug weights
62716703 {
6704
+ /*
62726705 gl.glDisable(gl.GL_LIGHTING);
62736706 float[] colorV = new float[3];
62746707
....@@ -6347,6 +6780,7 @@
63476780 // gl.glEnd();
63486781 }
63496782 }
6783
+ */
63506784 }
63516785 }
63526786
....@@ -6405,22 +6839,6 @@
64056839 void Print(Vertex v)
64066840 {
64076841 //System.err.println("(" + v.x + ", " + v.y + ", " + v.z + ")");
6408
- }
6409
-
6410
- void drawVertex(javax.media.opengl.GL gl, Vertex pv, boolean selectmode)
6411
- {
6412
- if (!selectmode)
6413
- {
6414
- gl.glNormal3f((float) pv.norm.x, (float) pv.norm.y, (float) pv.norm.z);
6415
- gl.glColor4f(pv.AO, pv.AO, pv.AO, 1);
6416
-
6417
- if (flipV)
6418
- gl.glTexCoord2f((float) pv.s, 1-(float) pv.t);
6419
- else
6420
- gl.glTexCoord2f((float) pv.s, (float) pv.t);
6421
- }
6422
-
6423
- gl.glVertex3f((float) pv.x, (float) pv.y, (float) pv.z);
64246842 }
64256843
64266844 void drawSelf(ClickInfo info, int level, boolean select)
....@@ -6946,20 +7364,23 @@
69467364 }
69477365 }
69487366
6949
- protected void calcHotSpot(cVector in, ClickInfo info, Point outPt, Rectangle outRec)
7367
+ static ClickInfo clickInfo = new ClickInfo();
7368
+
7369
+ protected void calcHotSpot(cVector in, //ClickInfo clickInfo,
7370
+ Point outPt, Rectangle outRec)
69507371 {
6951
- int hc = info.bounds.x + info.bounds.width / 2;
6952
- int vc = info.bounds.y + info.bounds.height / 2;
6953
- double[][] toscreen = info.toScreen;
7372
+ int hc = clickInfo.bounds.x + clickInfo.bounds.width / 2;
7373
+ int vc = clickInfo.bounds.y + clickInfo.bounds.height / 2;
7374
+ double[][] toscreen = clickInfo.toScreen;
69547375 if (toscreen == null)
69557376 {
6956
- toscreen = new Camera(info.camera.viewCode).toScreen;
7377
+ toscreen = new Camera(clickInfo.camera.viewCode).toScreen;
69577378 }
69587379 cVector vec = in;
69597380 LA.xformPos(in, toscreen, in);
69607381 //System.out.println("Distance = " + info.camera.Distance());
6961
- vec.x *= 100 * info.camera.SCALE / info.camera.Distance();
6962
- vec.y *= 100 * info.camera.SCALE / info.camera.Distance();
7382
+ vec.x *= 100 * clickInfo.camera.SCALE / clickInfo.camera.Distance();
7383
+ vec.y *= 100 * clickInfo.camera.SCALE / clickInfo.camera.Distance();
69637384 outPt.x = hc + (int) vec.x;
69647385 outPt.y = vc - (int) vec.y;
69657386 outRec.x = outPt.x - 3;
....@@ -6967,15 +7388,18 @@
69677388 outRec.width = outRec.height = 6;
69687389 }
69697390
6970
- protected Rectangle calcHotSpot(cVector in, ClickInfo info)
7391
+ protected Rectangle calcHotSpot(cVector in//, ClickInfo clickInfo
7392
+ )
69717393 {
69727394 Point pt = new Point(0, 0);
69737395 Rectangle rec = new Rectangle();
6974
- calcHotSpot(in, info, pt, rec);
7396
+ calcHotSpot(in, //clickInfo,
7397
+ pt, rec);
69757398 return rec;
69767399 }
69777400
6978
- void drawEditHandles0(ClickInfo info, int level)
7401
+ void drawEditHandles0(//ClickInfo clickInfo,
7402
+ int level)
69797403 {
69807404 if (level == 0)
69817405 {
....@@ -6984,16 +7408,19 @@
69847408 {
69857409 cVector origin = new cVector();
69867410 //LA.xformPos(origin, toParent, origin);
6987
- Rectangle spot = calcHotSpot(origin, info);
7411
+ if (this.clickInfo == null)
7412
+ this.clickInfo = new ClickInfo();
7413
+
7414
+ Rectangle spot = calcHotSpot(origin); //, clickInfo);
69887415 Rectangle boundary = new Rectangle();
69897416 boundary.x = spot.x - 30;
69907417 boundary.y = spot.y - 30;
69917418 boundary.width = spot.width + 60;
69927419 boundary.height = spot.height + 60;
6993
- info.g.setColor(Color.red);
7420
+ clickInfo.g.setColor(Color.white);
69947421 int spotw = spot.x + spot.width;
69957422 int spoth = spot.y + spot.height;
6996
- info.g.fillRect(spot.x, spot.y, spot.width, spot.height);
7423
+ clickInfo.g.fillRect(spot.x, spot.y, spot.width, spot.height);
69977424 // if (CameraPane.Xmin > spot.x)
69987425 // {
69997426 // CameraPane.Xmin = spot.x;
....@@ -7010,11 +7437,33 @@
70107437 // {
70117438 // CameraPane.Ymax = spoth;
70127439 // }
7013
- spot.translate(32, 32);
7440
+// if (CameraPane.Xmin > spot.x)
7441
+// {
7442
+// CameraPane.Xmin = spot.x;
7443
+// }
7444
+// if (CameraPane.Xmax < spotw)
7445
+// {
7446
+// CameraPane.Xmax = spotw;
7447
+// }
7448
+// if (CameraPane.Ymin > spot.y)
7449
+// {
7450
+// CameraPane.Ymin = spot.y;
7451
+// }
7452
+// if (CameraPane.Ymax < spoth)
7453
+// {
7454
+// CameraPane.Ymax = spoth;
7455
+// }
7456
+ // bonhommes info.g.drawLine(spotw, spoth, spotw, spoth - boundary.height/2); // 15
7457
+ //info.g.drawLine(spotw, spoth, spotw - boundary.width/2, spoth); // 15
7458
+ spot.translate(32, 0);
7459
+ clickInfo.g.setColor(Color.yellow);
7460
+ clickInfo.g.fillRect(spot.x, spot.y, spot.width, spot.height);
7461
+
7462
+ spot.translate(32, 64);
70147463 spotw = spot.x + spot.width;
70157464 spoth = spot.y + spot.height;
7016
- info.g.setColor(Color.blue);
7017
- info.g.fillRect(spot.x, spot.y, spot.width, spot.height);
7465
+ clickInfo.g.setColor(Color.cyan);
7466
+ clickInfo.g.fillRect(spot.x, spot.y, spot.width, spot.height);
70187467 // if (CameraPane.Xmin > spot.x)
70197468 // {
70207469 // CameraPane.Xmin = spot.x;
....@@ -7031,29 +7480,9 @@
70317480 // {
70327481 // CameraPane.Ymax = spoth;
70337482 // }
7034
- info.g.drawLine(spotw, spoth, spotw, spoth - 15);
7035
- info.g.drawLine(spotw, spoth, spotw - 15, spoth);
7036
- spot.translate(0, -32);
7037
- info.g.setColor(Color.green);
7038
- info.g.fillRect(spot.x, spot.y, spot.width, spot.height);
7039
-// if (CameraPane.Xmin > spot.x)
7040
-// {
7041
-// CameraPane.Xmin = spot.x;
7042
-// }
7043
-// if (CameraPane.Xmax < spotw)
7044
-// {
7045
-// CameraPane.Xmax = spotw;
7046
-// }
7047
-// if (CameraPane.Ymin > spot.y)
7048
-// {
7049
-// CameraPane.Ymin = spot.y;
7050
-// }
7051
-// if (CameraPane.Ymax < spoth)
7052
-// {
7053
-// CameraPane.Ymax = spoth;
7054
-// }
7055
- info.g.drawArc(boundary.x, boundary.y,
7056
- boundary.width, boundary.height, 0, 360);
7483
+ clickInfo.g.setColor(Color.green);
7484
+ clickInfo.g.drawArc(boundary.x + clickInfo.DX, boundary.y + clickInfo.DY,
7485
+ (int)(boundary.width * clickInfo.W), (int)(boundary.height * clickInfo.W), 0, 360);
70577486 //info.g.drawArc(spot.x, spotw, spot.width/2, boundary.height/2, 0, 360);
70587487 // if (CameraPane.Xmin > boundary.x)
70597488 // {
....@@ -7075,7 +7504,8 @@
70757504 }
70767505 }
70777506
7078
- boolean doEditClick0(ClickInfo info, int level)
7507
+ boolean doEditClick0(//ClickInfo clickInfo,
7508
+ int level)
70797509 {
70807510 if (level == 0)
70817511 {
....@@ -7084,10 +7514,10 @@
70847514
70857515 boolean retval = false;
70867516
7087
- startX = info.x;
7088
- startY = info.y;
7517
+ startX = clickInfo.x;
7518
+ startY = clickInfo.y;
70897519
7090
- hitSomething = 0;
7520
+ hitSomething = -1;
70917521 cVector origin = new cVector();
70927522 //LA.xformPos(origin, toParent, origin);
70937523 Rectangle spot = new Rectangle();
....@@ -7095,22 +7525,53 @@
70957525 {
70967526 centerPt = new Point(0, 0);
70977527 }
7098
- calcHotSpot(origin, info, centerPt, spot);
7099
- if (spot.contains(info.x, info.y))
7528
+ calcHotSpot(origin, //info,
7529
+ centerPt, spot);
7530
+ if (spot.contains(clickInfo.x, clickInfo.y))
71007531 {
71017532 hitSomething = hitCenter;
71027533 retval = true;
71037534 }
71047535 spot.translate(32, 0);
7105
- if (spot.contains(info.x, info.y))
7536
+ if (spot.contains(clickInfo.x, clickInfo.y))
71067537 {
71077538 hitSomething = hitRotate;
71087539 retval = true;
71097540 }
71107541 spot.translate(0, 32);
7111
- if (spot.contains(info.x, info.y))
7542
+ spot.translate(32, 0);
7543
+ spot.translate(0, 32);
7544
+ if (spot.contains(clickInfo.x, clickInfo.y))
71127545 {
71137546 hitSomething = hitScale;
7547
+
7548
+ double scale = 0.005f * clickInfo.camera.Distance();
7549
+ double hScale = (double) (clickInfo.x - centerPt.x) / 64;
7550
+ double sign = 1;
7551
+ if (hScale < 0)
7552
+ {
7553
+ sign = -1;
7554
+ }
7555
+ hScale = sign*Math.pow(sign*hScale, scale * 50);
7556
+ if (hScale < 0.01)
7557
+ {
7558
+ //hScale = 0.01;
7559
+ }
7560
+
7561
+ double vScale = (double) (clickInfo.y - centerPt.y) / 64;
7562
+ sign = 1;
7563
+ if (vScale < 0)
7564
+ {
7565
+ sign = -1;
7566
+ }
7567
+ vScale = sign*Math.pow(sign*vScale, scale * 50);
7568
+ if (vScale < 0.01)
7569
+ {
7570
+ //vScale = 0.01;
7571
+ }
7572
+
7573
+ clickInfo.scale = Math.sqrt(hScale*hScale + vScale*vScale);
7574
+
71147575 retval = true;
71157576 }
71167577
....@@ -7120,7 +7581,7 @@
71207581 }
71217582
71227583 //System.out.println("info.modifiers = " + info.modifiers);
7123
- modified = (info.modifiers & CameraPane.META) != 0;
7584
+ modified = (clickInfo.modifiers & CameraPane.SHIFT) != 0; // Was META
71247585 //System.out.println("modified = " + modified);
71257586 //new Exception().printStackTrace();
71267587 //viewCode = info.pane.renderCamera.viewCode;
....@@ -7148,7 +7609,8 @@
71487609 return true;
71497610 }
71507611
7151
- void doEditDrag0(ClickInfo info)
7612
+ void doEditDrag0(//ClickInfo info,
7613
+ boolean opposite)
71527614 {
71537615 if (hitSomething == 0)
71547616 {
....@@ -7162,7 +7624,8 @@
71627624
71637625 //System.out.println("hitSomething = " + hitSomething);
71647626
7165
- double scale = 0.005f * info.camera.Distance();
7627
+ double scale = 0.005f * clickInfo.camera.Distance();
7628
+
71667629 cVector xlate = new cVector();
71677630 //cVector xlate2 = new cVector();
71687631 switch (hitSomething)
....@@ -7175,7 +7638,7 @@
71757638
71767639 scale *= 0.05f * Globals.theRenderer.RenderCamera().Distance();
71777640
7178
- if (modified)
7641
+ if (modified || opposite)
71797642 {
71807643 //assert(false);
71817644 /*
....@@ -7195,8 +7658,8 @@
71957658 toParent[3][i] = xlate.get(i);
71967659 LA.matInvert(toParent, fromParent);
71977660 */
7198
- cVector delta = LA.newVector(0, 0, startY - info.y);
7199
- LA.xformDir(delta, new Camera(info.camera.viewCode).fromScreen, delta);
7661
+ cVector delta = LA.newVector(0, 0, startY - clickInfo.y);
7662
+ LA.xformDir(delta, new Camera(clickInfo.camera.viewCode).fromScreen, delta);
72007663
72017664 LA.matCopy(startMat, toParent);
72027665 LA.matTranslate(toParent, delta.x * scale, delta.y * scale, delta.z * scale);
....@@ -7205,7 +7668,7 @@
72057668 } else
72067669 {
72077670 //LA.xformDir(delta, info.camera.fromScreen, delta);
7208
- cVector up = new cVector(info.camera.up);
7671
+ cVector up = new cVector(clickInfo.camera.up);
72097672 cVector away = new cVector();
72107673 //cVector right2 = new cVector();
72117674 //LA.vecCross(up, cVector.Z, right);
....@@ -7222,19 +7685,19 @@
72227685 LA.xformDir(up, ClickInfo.matbuffer, up);
72237686 // if (!CameraPane.LOCALTRANSFORM)
72247687 LA.xformDir(up, Globals.theRenderer.RenderCamera().toScreen, up);
7225
- LA.xformDir(info.camera.away, ClickInfo.matbuffer, away);
7688
+ LA.xformDir(clickInfo.camera.away, ClickInfo.matbuffer, away);
72267689 // if (!CameraPane.LOCALTRANSFORM)
72277690 LA.xformDir(away, Globals.theRenderer.RenderCamera().toScreen, away);
72287691 //LA.vecCross(up, cVector.Z, right2);
72297692
7230
- cVector delta = LA.newVector(info.x - startX, startY - info.y, 0);
7693
+ cVector delta = LA.newVector(clickInfo.x - startX, startY - clickInfo.y, 0);
72317694
72327695 //System.out.println("DELTA0 = " + delta);
72337696 //System.out.println("AWAY = " + info.camera.away);
72347697 //System.out.println("UP = " + info.camera.up);
72357698 if (away.z > 0)
72367699 {
7237
- if (info.camera.up.x == 0) // LA.vecDot(right, right2)<0)
7700
+ if (clickInfo.camera.up.x == 0) // LA.vecDot(right, right2)<0)
72387701 {
72397702 delta.x = -delta.x;
72407703 } else
....@@ -7249,7 +7712,7 @@
72497712 //System.out.println("DELTA1 = " + delta);
72507713 LA.xformDir(delta, ClickInfo.matbuffer, delta);
72517714 //System.out.println("DELTA2 = " + delta);
7252
- LA.xformDir(delta, new Camera(info.camera.viewCode).fromScreen, delta);
7715
+ LA.xformDir(delta, new Camera(clickInfo.camera.viewCode).fromScreen, delta);
72537716 LA.matCopy(startMat, toParent);
72547717 //System.out.println("DELTA3 = " + delta);
72557718 LA.matTranslate(toParent, delta.x * scale, delta.y * scale, delta.z * scale);
....@@ -7259,8 +7722,8 @@
72597722 break;
72607723
72617724 case hitRotate: // rotate
7262
- int dx = info.x - centerPt.x;
7263
- int dy = -(info.y - centerPt.y);
7725
+ int dx = clickInfo.x - centerPt.x;
7726
+ int dy = -(clickInfo.y - centerPt.y);
72647727 double angle = (double) Math.atan2(dx, dy);
72657728 angle = -(1.570796 - angle);
72667729
....@@ -7269,6 +7732,7 @@
72697732
72707733 if (modified)
72717734 {
7735
+ // Rotate 90 degrees
72727736 angle /= (Math.PI / 4);
72737737 angle = Math.floor(angle + 0.5);
72747738 angle *= (Math.PI / 4);
....@@ -7282,7 +7746,7 @@
72827746 }
72837747 /**/
72847748
7285
- switch (info.pane.RenderCamera().viewCode)
7749
+ switch (clickInfo.pane.RenderCamera().viewCode)
72867750 {
72877751 case 1: // '\001'
72887752 LA.matZRotate(toParent, angle);
....@@ -7309,26 +7773,30 @@
73097773 break;
73107774
73117775 case hitScale: // scale
7312
- double hScale = (double) (info.x - centerPt.x) / 32;
7776
+ double hScale = (double) (clickInfo.x - centerPt.x) / 64;
7777
+ double sign = 1;
7778
+ if (hScale < 0)
7779
+ {
7780
+ sign = -1;
7781
+ }
7782
+ hScale = sign*Math.pow(sign*hScale, scale * 50);
73137783 if (hScale < 0.01)
73147784 {
7315
- hScale = 0.01;
7785
+ //hScale = 0.01;
73167786 }
7317
- hScale = Math.pow(hScale, scale * 50);
7318
- if (hScale < 0.01)
7787
+
7788
+ double vScale = (double) (clickInfo.y - centerPt.y) / 64;
7789
+ sign = 1;
7790
+ if (vScale < 0)
73197791 {
7320
- hScale = 0.01;
7792
+ sign = -1;
73217793 }
7322
- double vScale = (double) (info.y - centerPt.y) / 32;
7794
+ vScale = sign*Math.pow(sign*vScale, scale * 50);
73237795 if (vScale < 0.01)
73247796 {
7325
- vScale = 0.01;
7797
+ //vScale = 0.01;
73267798 }
7327
- vScale = Math.pow(vScale, scale * 50);
7328
- if (vScale < 0.01)
7329
- {
7330
- vScale = 0.01;
7331
- }
7799
+
73327800 LA.matCopy(startMat, toParent);
73337801 /**/
73347802 for (int i = 0; i < 3; i++)
....@@ -7338,39 +7806,56 @@
73387806 }
73397807 /**/
73407808
7341
- switch (info.pane.RenderCamera().viewCode)
7809
+ double totalScale = Math.sqrt(hScale*hScale + vScale*vScale) / clickInfo.scale;
7810
+
7811
+ if (totalScale < 0.01)
7812
+ {
7813
+ totalScale = 0.01;
7814
+ }
7815
+
7816
+ switch (clickInfo.pane.RenderCamera().viewCode)
73427817 {
73437818 case 3: // '\001'
7344
- if (modified)
7819
+ if (modified || opposite)
73457820 {
7821
+ if (modified && opposite)
7822
+ LA.matScale(toParent, totalScale, totalScale, totalScale);
7823
+ else
73467824 //LA.matScale(toParent, 1, hScale, vScale);
7347
- LA.matScale(toParent, vScale, 1, 1);
7825
+ LA.matScale(toParent, totalScale, 1, 1);
73487826 } // vScale, 1);
73497827 else
73507828 {
7351
- LA.matScale(toParent, vScale, vScale, vScale);
7829
+ // EXCEPTION!
7830
+ LA.matScale(toParent, 1, totalScale, totalScale);
73527831 } // vScale, 1);
73537832 break;
73547833
73557834 case 2: // '\002'
7356
- if (modified)
7835
+ if (modified || opposite)
73577836 {
7358
- //LA.matScale(toParent, hScale, 1, vScale);
7359
- LA.matScale(toParent, 1, vScale, 1);
7837
+ if (modified && opposite)
7838
+ LA.matScale(toParent, totalScale, totalScale, totalScale);
7839
+ else
7840
+ //LA.matScale(toParent, hScale, 1, vScale);
7841
+ LA.matScale(toParent, 1, totalScale, 1);
73607842 } else
73617843 {
7362
- LA.matScale(toParent, vScale, 1, vScale);
7844
+ LA.matScale(toParent, totalScale, 1, totalScale);
73637845 }
73647846 break;
73657847
73667848 case 1: // '\003'
7367
- if (modified)
7849
+ if (modified || opposite)
73687850 {
7369
- //LA.matScale(toParent, hScale, vScale, 1);
7370
- LA.matScale(toParent, 1, 1, vScale);
7851
+ if (modified && opposite)
7852
+ LA.matScale(toParent, totalScale, totalScale, totalScale);
7853
+ else
7854
+ //LA.matScale(toParent, hScale, vScale, 1);
7855
+ LA.matScale(toParent, 1, 1, totalScale);
73717856 } else
73727857 {
7373
- LA.matScale(toParent, vScale, vScale, 1);
7858
+ LA.matScale(toParent, totalScale, totalScale, 1);
73747859 }
73757860 break;
73767861 }
....@@ -7404,7 +7889,7 @@
74047889 } // NEW ...
74057890
74067891
7407
- info.pane.repaint();
7892
+ clickInfo.pane.repaint();
74087893 }
74097894
74107895 boolean overflow = false;
....@@ -7503,14 +7988,22 @@
75037988 //return super.toString() + " (id=" + list + ")" + " (brep=" + bRep + ")";
75047989 //return name + " (id=" + list + ")" + " (brep=" + bRep + ") " + super.toString();
75057990 //return name + " (#tri = " + (bRep==null?0:bRep.VertexCount()) + ") " + super.toString();
7991
+
7992
+ String objname;
7993
+
75067994 if (false) //parent != null)
75077995 {
7508
- return name + " " + System.identityHashCode(this) + " (" + parent.name + " " + System.identityHashCode(parent) + ")";
7996
+ objname = name + " " + System.identityHashCode(this) + " (" + parent.name + " " + System.identityHashCode(parent) + ")";
75097997 } else
75107998 {
7511
- return GetName() + (Math.abs(count) == 1000 ? (count == 1000 ? " " : " * ") : (" (" + (count /*- 1*/) + ") ")) + /*(IsSelected()?"(selected) ":"") + (touched?"(touched) ":"") */ +System.identityHashCode(this);
7999
+ objname = GetName() + (Math.abs(count) == 1000 ? (count == 1000 ? " " : " * ") : (" (" + (count - 1) + ")")) + /*(IsSelected()?"(selected) ":"") + (touched?"(touched) ":"") */ "";
75128000 } // + super.toString();
75138001 //return name + " (" + (SizeOf.deepSizeOf(this)/1024) + "K) " + this.getClass().getName();
8002
+
8003
+ if (!Globals.ADVANCED)
8004
+ return objname;
8005
+
8006
+ return objname + " " + System.identityHashCode(this);
75148007 }
75158008
75168009 public int hashCode()
....@@ -7566,6 +8059,7 @@
75668059 objectUI.closeUI();
75678060 if (editWindow != null)
75688061 {
8062
+ editWindow.ctrlPanel.FlushUI();
75698063 editWindow.refreshContents();
75708064 } // ? new
75718065 objectUI = null;
....@@ -7574,6 +8068,10 @@
75748068 {
75758069 editWindow = null;
75768070 } // ?
8071
+ }
8072
+ else
8073
+ {
8074
+ //editWindow.closeUI();
75778075 }
75788076 }
75798077
....@@ -7586,7 +8084,7 @@
75868084 /*transient*/ cVector2[] projectedVertices = new cVector2[0];
75878085
75888086 Object3D /*Composite*/ parent;
7589
- Object3D /*Composite*/ fileparent;
8087
+ Object3D /*Composite*/ fileparent; // In the case of FileObject
75908088
75918089 double[][] toParent; // dynamic matrix
75928090 double[][] fromParent;
....@@ -7701,7 +8199,7 @@
77018199 {
77028200 assert(bRep != null);
77038201 if (!(support instanceof GenericJoint)) // support.bRep != null)
7704
- GrafreeD.Assert(support.bRep == bRep.support);
8202
+ Grafreed.Assert(support.bRep == bRep.support);
77058203 }
77068204 else
77078205 {
....@@ -7732,6 +8230,10 @@
77328230 }
77338231
77348232 transient ObjEditor editWindow;
8233
+ transient ObjEditor manipWindow;
8234
+
8235
+ transient boolean pinned;
8236
+
77358237 transient ObjectUI objectUI;
77368238 public static int povDepth = 0;
77378239 private static cVector tbMin = new cVector();
....@@ -7750,9 +8252,9 @@
77508252 private static cVector edge2 = new cVector();
77518253 //private static cVector norm = new cVector();
77528254 /*transient private*/ int hitSomething;
7753
- private static final int hitCenter = 1;
7754
- private static final int hitScale = 2;
7755
- private static final int hitRotate = 3;
8255
+ static final int hitCenter = 1;
8256
+ static final int hitScale = 2;
8257
+ static final int hitRotate = 3;
77568258 /*transient*/ /*private*/ int viewCode; // Now used for transparency cache flag
77578259 /*transient*/ private Point centerPt;
77588260 /*transient*/ private int startX;