Normand Briere
2019-08-17 d5d6485126da83b06645e90e3e4ce66659a56009
Object3D.java
....@@ -22,12 +22,21 @@
2222 //static final long serialVersionUID = -607422624994562685L;
2323 static final long serialVersionUID = 5022536242724664900L;
2424
25
+ // Use GetUUID for backward compatibility with null.
2526 private UUID uuid = UUID.randomUUID();
2627
27
- // TEMPORARY for mocap undo
28
- mocap.reader.BVHReader.BVHResult bvh;
29
- Object3D skeleton;
28
+ // TEMPORARY for mocap undo. No need to be transient.
29
+ mocap.reader.BVHReader.BVHResult savebvh;
30
+ Object3D saveskeleton;
3031 //
32
+
33
+ String skyboxname;
34
+ String skyboxext;
35
+
36
+ Object3D versionlist[];
37
+ int versionindex = -1;
38
+
39
+ java.util.Hashtable<java.util.UUID, Object3D> versiontable; // = new java.util.Hashtable<java.util.UUID, Object3D>();
3140
3241 ScriptNode scriptnode;
3342
....@@ -170,24 +179,35 @@
170179
171180 void ExtractBigData(java.util.Hashtable<java.util.UUID, Object3D> hashtable)
172181 {
182
+ Object3D o;
183
+
173184 if (hashtable.containsKey(GetUUID()))
174185 {
175
- Object3D o = hashtable.get(GetUUID());
186
+ o = hashtable.get(GetUUID());
176187
177188 Grafreed.Assert(this.bRep == o.bRep);
178
- if (this.bRep != null)
179
- assert(this.bRep.support == o.transientrep);
189
+ //if (this.bRep != null)
190
+ // assert(this.bRep.support == o.transientrep);
191
+ if (this.support != null)
192
+ assert(this.support.bRep == o.transientrep);
193
+ }
194
+ else
195
+ {
196
+ o = new Object3D("copy of " + this.name);
180197
181
- return;
198
+ hashtable.put(GetUUID(), o);
182199 }
183200
184
- Object3D o = new Object3D();
185
-
186
- hashtable.put(GetUUID(), o);
187
-
188
- for (int i=0; i<Size(); i++)
201
+ if (!blockloop)
189202 {
190
- get(i).ExtractBigData(hashtable);
203
+ blockloop = true;
204
+
205
+ for (int i=0; i<Size(); i++)
206
+ {
207
+ get(i).ExtractBigData(hashtable);
208
+ }
209
+
210
+ blockloop = false;
191211 }
192212
193213 ExtractBigData(o);
....@@ -195,11 +215,26 @@
195215
196216 void ExtractBigData(Object3D o)
197217 {
218
+ if (o.bRep != null)
219
+ Grafreed.Assert(o.bRep == this.bRep);
220
+
198221 o.bRep = this.bRep;
199
- if (this.bRep != null)
222
+// July 2019 if (this.bRep != null)
223
+// {
224
+// o.transientrep = this.bRep.support;
225
+// o.bRep.support = null;
226
+// }
227
+ o.selection = this.selection;
228
+ o.versionlist = this.versionlist;
229
+ o.versionindex = this.versionindex;
230
+
231
+ if (this.support != null)
200232 {
201
- o.transientrep = this.bRep.support;
202
- o.bRep.support = null;
233
+ if (o.transientrep != null)
234
+ Grafreed.Assert(o.transientrep == this.support.bRep);
235
+
236
+ o.transientrep = this.support.bRep;
237
+ this.support.bRep = null;
203238 }
204239
205240 // o.support = this.support;
....@@ -214,6 +249,73 @@
214249 // this.fileparent = null;
215250 }
216251
252
+// Object3D GetObject(java.util.UUID uuid)
253
+// {
254
+// if (this.uuid.equals(uuid))
255
+// return this;
256
+//
257
+// if (blockloop)
258
+// return null;
259
+//
260
+// blockloop = true;
261
+//
262
+// for (int i=0; i<Size(); i++)
263
+// {
264
+// Object3D o = get(i).GetObject(uuid);
265
+//
266
+// if (o != null)
267
+// return o;
268
+// }
269
+//
270
+// blockloop = false;
271
+//
272
+// return null;
273
+// }
274
+
275
+ transient boolean tag;
276
+
277
+ void TagObjects(Object3D o, boolean tag)
278
+ {
279
+ if (blockloop)
280
+ return;
281
+
282
+ o.tag = tag;
283
+
284
+ if (o == this)
285
+ return;
286
+
287
+ blockloop = true;
288
+
289
+ for (int i=0; i<Size(); i++)
290
+ {
291
+ get(i).TagObjects(o, tag);
292
+ }
293
+
294
+ blockloop = false;
295
+ }
296
+
297
+ boolean HasTags()
298
+ {
299
+ if (blockloop)
300
+ return false;
301
+
302
+ blockloop = true;
303
+
304
+ boolean hasTags = false;
305
+
306
+ for (int i=0; i<Size(); i++)
307
+ {
308
+ hasTags |= get(i).tag || get(i).HasTags();
309
+
310
+ if (hasTags)
311
+ break;
312
+ }
313
+
314
+ blockloop = false;
315
+
316
+ return hasTags;
317
+ }
318
+
217319 void RestoreBigData(java.util.Hashtable<java.util.UUID, Object3D> hashtable)
218320 {
219321 if (!hashtable.containsKey(GetUUID()))
....@@ -223,19 +325,35 @@
223325
224326 RestoreBigData(o);
225327
226
- hashtable.remove(GetUUID());
328
+ if (blockloop)
329
+ return;
330
+
331
+ blockloop = true;
332
+
333
+ //hashtable.remove(GetUUID());
227334
228335 for (int i=0; i<Size(); i++)
229336 {
230337 get(i).RestoreBigData(hashtable);
231338 }
339
+
340
+ blockloop = false;
232341 }
233342
234343 void RestoreBigData(Object3D o)
235344 {
236345 this.bRep = o.bRep;
237
- if (this.bRep != null)
238
- this.bRep.support = o.transientrep;
346
+ if (this.support != null && o.transientrep != null)
347
+ {
348
+ this.support.bRep = o.transientrep;
349
+ }
350
+
351
+ this.selection = o.selection;
352
+
353
+ this.versionlist = o.versionlist;
354
+ this.versionindex = o.versionindex;
355
+// July 2019 if (this.bRep != null)
356
+// this.bRep.support = o.transientrep;
239357 // this.support = o.support;
240358 // this.fileparent = o.fileparent;
241359 }
....@@ -381,6 +499,7 @@
381499 }
382500
383501 boolean live = false;
502
+ transient boolean keepdontselect;
384503 boolean dontselect = false;
385504 boolean hide = false;
386505 boolean link2master = false; // performs reset support/master at each frame
....@@ -881,7 +1000,7 @@
8811000
8821001 if (marked && Globals.isLIVE() && live &&
8831002 //TEMP21aug2018
884
- (Globals.DrawMode() == iCameraPane.SHADOW || !Globals.RENDERSHADOW) &&
1003
+ (Globals.DrawMode() == iCameraPane.SHADOW || !Globals.RENDERSHADOW || !Globals.COMPUTESHADOWWHENLIVE) &&
8851004 currentframe != Globals.framecount)
8861005 {
8871006 currentframe = Globals.framecount;
....@@ -893,7 +1012,8 @@
8931012
8941013 boolean changedir = random && Math.random() < 0.01; // && !link2master;
8951014
896
- if (transformcount*factor > maxcount || (step == 1 && changedir))
1015
+ if (transformcount*factor >= maxcount && (rewind || random) ||
1016
+ (step == 1 && changedir))
8971017 {
8981018 countdown = 1;
8991019 delay = speedup?8:1;
....@@ -965,6 +1085,10 @@
9651085 if (material == null || material.multiply)
9661086 return true;
9671087
1088
+ if (projectedVertices != null && projectedVertices.length > 2 && projectedVertices[2].y >= 10000)
1089
+ return false;
1090
+
1091
+ // Transparent objects are dynamic because we have to sort the triangles.
9681092 return material.opacity > 0.99;
9691093 }
9701094
....@@ -1365,6 +1489,7 @@
13651489 toParent = LA.newMatrix();
13661490 fromParent = LA.newMatrix();
13671491 }
1492
+
13681493 LA.matCopy(other.toParent, toParent);
13691494 LA.matCopy(other.fromParent, fromParent);
13701495
....@@ -2386,6 +2511,15 @@
23862511 }
23872512 */
23882513 }
2514
+ else
2515
+ {
2516
+ //((ObjEditor)editWindow).SetupUI2(null);
2517
+ if (objectUI != null)
2518
+ ((ObjEditor)objectUI).pinButton.setSelected(pinned);
2519
+ else
2520
+ //new Exception().printStackTrace();
2521
+ System.err.println("objectUI is null");
2522
+ }
23892523 }
23902524
23912525 void createEditWindow(GroupEditor callee, boolean newWindow) //, boolean root)
....@@ -2427,6 +2561,14 @@
24272561 {
24282562 editWindow.refreshContents();
24292563 }
2564
+ else
2565
+ {
2566
+ if (manipWindow != null)
2567
+ {
2568
+ manipWindow.refreshContents();
2569
+ }
2570
+ }
2571
+
24302572 //if (parent != null)
24312573 //parent.refreshEditWindow();
24322574 }
....@@ -2506,7 +2648,8 @@
25062648 private static final int editSelf = 1;
25072649 private static final int editChild = 2;
25082650
2509
- void drawEditHandles(ClickInfo info, int level)
2651
+ void drawEditHandles(//ClickInfo info,
2652
+ int level)
25102653 {
25112654 if (level == 0)
25122655 {
....@@ -2514,7 +2657,8 @@
25142657 return;
25152658
25162659 Object3D selectee;
2517
- for (java.util.Enumeration e = selection.elements(); e.hasMoreElements(); selectee.drawEditHandles(info, level + 1))
2660
+ for (java.util.Enumeration e = selection.elements(); e.hasMoreElements(); selectee.drawEditHandles(//info,
2661
+ level + 1))
25182662 {
25192663 selectee = (Object3D) e.nextElement();
25202664 }
....@@ -2522,19 +2666,22 @@
25222666 } else
25232667 {
25242668 //super.
2525
- drawEditHandles0(info, level + 1);
2669
+ drawEditHandles0(//info,
2670
+ level + 1);
25262671 }
25272672 }
25282673
2529
- boolean doEditClick(ClickInfo info, int level)
2674
+ boolean doEditClick(//ClickInfo info,
2675
+ int level)
25302676 {
25312677 doSomething = 0;
25322678 if (level == 0)
25332679 {
2534
- return doParentClick(info);
2680
+ return doParentClick(); //info);
25352681 }
25362682 if (//super.
2537
- doEditClick0(info, level))
2683
+ doEditClick0(//info,
2684
+ level))
25382685 {
25392686 doSomething = 1;
25402687 return true;
....@@ -2544,7 +2691,7 @@
25442691 }
25452692 }
25462693
2547
- boolean doParentClick(ClickInfo info)
2694
+ boolean doParentClick() //ClickInfo info)
25482695 {
25492696 if (selection == null)
25502697 {
....@@ -2557,7 +2704,8 @@
25572704 for (java.util.Enumeration e = selection.elements(); e.hasMoreElements();)
25582705 {
25592706 Object3D selectee = (Object3D) e.nextElement();
2560
- if (selectee.doEditClick(info, 1))
2707
+ if (selectee.doEditClick(//info,
2708
+ 1))
25612709 {
25622710 childToDrag = selectee;
25632711 doSomething = 2;
....@@ -2569,13 +2717,15 @@
25692717 return retval;
25702718 }
25712719
2572
- void doEditDrag(ClickInfo info, boolean opposite)
2720
+ void doEditDrag(//ClickInfo clickInfo,
2721
+ boolean opposite)
25732722 {
25742723 switch (doSomething)
25752724 {
25762725 case 1: // '\001'
25772726 //super.
2578
- doEditDrag0(info, opposite);
2727
+ doEditDrag0(//clickInfo,
2728
+ opposite);
25792729 break;
25802730
25812731 case 2: // '\002'
....@@ -2588,11 +2738,13 @@
25882738 {
25892739 //sel.hitSomething = childToDrag.hitSomething;
25902740 //childToDrag.doEditDrag(info);
2591
- sel.doEditDrag(info, opposite);
2741
+ sel.doEditDrag(//clickInfo,
2742
+ opposite);
25922743 } else
25932744 {
25942745 //super.
2595
- doEditDrag0(info, opposite);
2746
+ doEditDrag0(//clickInfo,
2747
+ opposite);
25962748 }
25972749 }
25982750 break;
....@@ -2610,6 +2762,9 @@
26102762 {
26112763 deselectAll();
26122764 }
2765
+
2766
+ new Exception().printStackTrace();
2767
+
26132768 ClickInfo newInfo = new ClickInfo();
26142769 newInfo.flags = info.flags;
26152770 newInfo.bounds = info.bounds;
....@@ -3057,7 +3212,7 @@
30573212 {
30583213 if (bRep != null)
30593214 {
3060
- bRep.GenerateNormalsMINE();
3215
+ bRep.MergeNormals(); //.GenerateNormalsMINE();
30613216 Touch();
30623217 }
30633218 }
....@@ -3503,7 +3658,8 @@
35033658 if (blockloop)
35043659 return;
35053660
3506
- if (marked || (bRep != null && material != null)) // borderline...
3661
+ if (//marked || // does not make sense
3662
+ (bRep != null || material != null)) // borderline...
35073663 live = h;
35083664
35093665 for (int i = 0; i < Size(); i++)
....@@ -3524,7 +3680,8 @@
35243680 return;
35253681
35263682 //if (bRep != null)
3527
- if (marked || (bRep != null && material != null)) // borderline...
3683
+ if (//marked || // does not make sense
3684
+ (bRep != null || material != null)) // borderline...
35283685 link2master = h;
35293686
35303687 for (int i = 0; i < Size(); i++)
....@@ -3544,7 +3701,8 @@
35443701 if (blockloop)
35453702 return;
35463703
3547
- if (marked || (bRep != null && material != null)) // borderline...
3704
+ if (//marked || // does not make sense
3705
+ (bRep != null || material != null)) // borderline...
35483706 hide = h;
35493707
35503708 for (int i = 0; i < Size(); i++)
....@@ -3564,7 +3722,7 @@
35643722 if (blockloop)
35653723 return;
35663724
3567
- if (bRep != null && material != null) // borderline...
3725
+ if (bRep != null || material != null) // borderline...
35683726 marked = h;
35693727
35703728 for (int i = 0; i < Size(); i++)
....@@ -3574,6 +3732,46 @@
35743732 continue;
35753733 blockloop = true;
35763734 child.MarkLeaves(h);
3735
+ blockloop = false;
3736
+ // release(i);
3737
+ }
3738
+ }
3739
+
3740
+ void RewindLeaves(boolean h)
3741
+ {
3742
+ if (blockloop)
3743
+ return;
3744
+
3745
+ if (bRep != null || material != null) // borderline...
3746
+ rewind = h;
3747
+
3748
+ for (int i = 0; i < Size(); i++)
3749
+ {
3750
+ Object3D child = (Object3D) get(i); // reserve(i);
3751
+ if (child == null)
3752
+ continue;
3753
+ blockloop = true;
3754
+ child.RewindLeaves(h);
3755
+ blockloop = false;
3756
+ // release(i);
3757
+ }
3758
+ }
3759
+
3760
+ void RandomLeaves(boolean h)
3761
+ {
3762
+ if (blockloop)
3763
+ return;
3764
+
3765
+ if (bRep != null || material != null) // borderline...
3766
+ random = h;
3767
+
3768
+ for (int i = 0; i < Size(); i++)
3769
+ {
3770
+ Object3D child = (Object3D) get(i); // reserve(i);
3771
+ if (child == null)
3772
+ continue;
3773
+ blockloop = true;
3774
+ child.RandomLeaves(h);
35773775 blockloop = false;
35783776 // release(i);
35793777 }
....@@ -4351,6 +4549,55 @@
43514549 }
43524550 }
43534551
4552
+ void RepairSOV()
4553
+ {
4554
+ if (blockloop)
4555
+ return;
4556
+
4557
+ String texname = this.GetPigmentTexture();
4558
+
4559
+ if (texname.startsWith("sov"))
4560
+ {
4561
+ String[] s = texname.split("/");
4562
+
4563
+ String[] sname = s[1].split("Color.pn");
4564
+
4565
+ texname = sname[0];
4566
+
4567
+ if (sname.length > 1)
4568
+ {
4569
+ texname += "Color.jpg";
4570
+ }
4571
+
4572
+ this.SetPigmentTexture("sov/" + texname);
4573
+ }
4574
+
4575
+ texname = this.GetBumpTexture();
4576
+
4577
+ if (texname.startsWith("sov"))
4578
+ {
4579
+ String[] s = texname.split("/");
4580
+
4581
+ String[] sname = s[1].split("Bump.pn");
4582
+
4583
+ texname = sname[0];
4584
+
4585
+ if (sname.length > 1)
4586
+ {
4587
+ texname += "Bump.jpg";
4588
+ }
4589
+
4590
+ this.SetBumpTexture("sov/" + texname);
4591
+ }
4592
+
4593
+ for (int i=0; i<Size(); i++)
4594
+ {
4595
+ blockloop = true;
4596
+ get(i).RepairSOV();
4597
+ blockloop = false;
4598
+ }
4599
+ }
4600
+
43544601 void RepairTexture()
43554602 {
43564603 if (this instanceof FileObject || blockloop)
....@@ -4865,6 +5112,14 @@
48655112 }
48665113 }
48675114
5115
+ ObjEditor GetWindow()
5116
+ {
5117
+ if (editWindow != null)
5118
+ return editWindow;
5119
+
5120
+ return manipWindow;
5121
+ }
5122
+
48685123 cTreePath Select(int indexcount, boolean deselect)
48695124 {
48705125 if (hide || dontselect)
....@@ -4901,10 +5156,11 @@
49015156 if (leaf != null)
49025157 {
49035158 cTreePath tp = new cTreePath(this, leaf);
4904
- if (editWindow != null)
5159
+ ObjEditor window = GetWindow();
5160
+ if (window != null)
49055161 {
49065162 //System.out.println("editWindow = " + editWindow + " vs " + this);
4907
- editWindow.Select(tp, deselect, true);
5163
+ window.Select(tp, deselect, true);
49085164 }
49095165
49105166 return tp;
....@@ -4921,6 +5177,7 @@
49215177
49225178 if (child == null)
49235179 continue;
5180
+
49245181 if (child.HasTransparency() && child.size() != 0)
49255182 {
49265183 cTreePath leaf = child.Select(indexcount, deselect);
....@@ -4930,9 +5187,10 @@
49305187 if (leaf != null)
49315188 {
49325189 cTreePath tp = new cTreePath(this, leaf);
4933
- if (editWindow != null)
5190
+ ObjEditor window = GetWindow();
5191
+ if (window != null)
49345192 {
4935
- editWindow.Select(tp, deselect, true);
5193
+ window.Select(tp, deselect, true);
49365194 }
49375195
49385196 return tp;
....@@ -5257,6 +5515,51 @@
52575515 blockloop = false;
52585516 }
52595517
5518
+ void ResetSelectable()
5519
+ {
5520
+ if (blockloop)
5521
+ return;
5522
+
5523
+ blockloop = true;
5524
+
5525
+ keepdontselect = dontselect;
5526
+ dontselect = true;
5527
+
5528
+ Object3D child;
5529
+ int nb = Size();
5530
+ for (int i = 0; i < nb; i++)
5531
+ {
5532
+ child = (Object3D) get(i);
5533
+ if (child == null)
5534
+ continue;
5535
+ child.ResetSelectable();
5536
+ }
5537
+
5538
+ blockloop = false;
5539
+ }
5540
+
5541
+ void RestoreSelectable()
5542
+ {
5543
+ if (blockloop)
5544
+ return;
5545
+
5546
+ blockloop = true;
5547
+
5548
+ dontselect = keepdontselect;
5549
+
5550
+ Object3D child;
5551
+ int nb = Size();
5552
+ for (int i = 0; i < nb; i++)
5553
+ {
5554
+ child = (Object3D) get(i);
5555
+ if (child == null)
5556
+ continue;
5557
+ child.RestoreSelectable();
5558
+ }
5559
+
5560
+ blockloop = false;
5561
+ }
5562
+
52605563 boolean IsSelected()
52615564 {
52625565 if (parent == null)
....@@ -5317,6 +5620,11 @@
53175620 if (fullname == null)
53185621 return "";
53195622
5623
+ if (fullname.pigment != null)
5624
+ {
5625
+ return fullname.pigment;
5626
+ }
5627
+
53205628 // System.out.println("Fullname = " + fullname);
53215629
53225630 // Does not work on Windows due to C:
....@@ -5329,7 +5637,7 @@
53295637
53305638 if (split.length == 0)
53315639 {
5332
- return "";
5640
+ return fullname.pigment = "";
53335641 }
53345642
53355643 if (split.length <= 2)
....@@ -5337,22 +5645,27 @@
53375645 if (fullname.name.endsWith(":"))
53385646 {
53395647 // Windows
5340
- return fullname.name.substring(0, fullname.name.length()-1);
5648
+ return fullname.pigment = fullname.name.substring(0, fullname.name.length()-1);
53415649 }
53425650
5343
- return split[0];
5651
+ return fullname.pigment = split[0];
53445652 }
53455653
53465654 // Windows
53475655 assert(split.length == 4);
53485656
5349
- return split[0] + ":" + split[1];
5657
+ return fullname.pigment = split[0] + ":" + split[1];
53505658 }
53515659
53525660 static String GetBump(cTexture fullname)
53535661 {
53545662 if (fullname == null)
53555663 return "";
5664
+
5665
+ if (fullname.bump != null)
5666
+ {
5667
+ return fullname.bump;
5668
+ }
53565669
53575670 // System.out.println("Fullname = " + fullname);
53585671 // Does not work on Windows due to C:
....@@ -5364,12 +5677,12 @@
53645677
53655678 if (split.length == 0)
53665679 {
5367
- return "";
5680
+ return fullname.bump = "";
53685681 }
53695682
53705683 if (split.length == 1)
53715684 {
5372
- return "";
5685
+ return fullname.bump = "";
53735686 }
53745687
53755688 if (split.length == 2)
....@@ -5377,16 +5690,16 @@
53775690 if (fullname.name.endsWith(":"))
53785691 {
53795692 // Windows
5380
- return "";
5693
+ return fullname.bump = "";
53815694 }
53825695
5383
- return split[1];
5696
+ return fullname.bump = split[1];
53845697 }
53855698
53865699 // Windows
53875700 assert(split.length == 4);
53885701
5389
- return split[2] + ":" + split[3];
5702
+ return fullname.bump = split[2] + ":" + split[3];
53905703 }
53915704
53925705 String GetPigmentTexture()
....@@ -5469,6 +5782,9 @@
54695782 texname = "";
54705783
54715784 GetTextures().name = texname + ":" + GetBump(GetTextures());
5785
+
5786
+ GetTextures().pigment = null;
5787
+
54725788 Touch();
54735789 }
54745790
....@@ -5542,6 +5858,8 @@
55425858
55435859 GetTextures().name = Object3D.GetPigment(GetTextures()) + ":" + texname;
55445860
5861
+ GetTextures().bump = null;
5862
+
55455863 Touch();
55465864 }
55475865
....@@ -5562,6 +5880,38 @@
55625880
55635881 blockloop = true;
55645882 child.ResetBumpTexture();
5883
+ blockloop = false;
5884
+ }
5885
+ }
5886
+
5887
+ void EmbedTextures(boolean embed)
5888
+ {
5889
+ if (blockloop)
5890
+ return;
5891
+
5892
+ //if (GetTextures() != null)
5893
+ if (embed)
5894
+ CameraPane.EmbedTextures(GetTextures());
5895
+ else
5896
+ {
5897
+ GetTextures().pigmentdata = null;
5898
+ GetTextures().bumpdata = null;
5899
+ GetTextures().pw = 0;
5900
+ GetTextures().ph = 0;
5901
+ GetTextures().bw = 0;
5902
+ GetTextures().bh = 0;
5903
+ }
5904
+
5905
+ int nb = Size();
5906
+ for (int i = 0; i < nb; i++)
5907
+ {
5908
+ Object3D child = (Object3D) get(i);
5909
+
5910
+ if (child == null)
5911
+ continue;
5912
+
5913
+ blockloop = true;
5914
+ child.EmbedTextures(embed);
55655915 blockloop = false;
55665916 }
55675917 }
....@@ -5652,8 +6002,10 @@
56526002 if (support != null)
56536003 support = support;
56546004
5655
- //boolean usecalllists = IsStatic() && GetBRep() != null && (!CameraPane.SUPPORT || support == null || !link2master); // !(this instanceof cSpring) && !(this instanceof BezierPatch);
5656
- boolean usecalllists = IsLive(); // IsStatic() && GetBRep() != null && (!CameraPane.SUPPORT || support == null) && !link2master; // !(this instanceof cSpring) && !(this instanceof BezierPatch);
6005
+ boolean usecalllists = !IsLive() && IsStatic() && GetBRep() != null && (!CameraPane.SUPPORT || support == null || !link2master); // !(this instanceof cSpring) && !(this instanceof BezierPatch);
6006
+ //boolean usecalllists = false; //!IsLive(); // IsStatic() && GetBRep() != null && (!CameraPane.SUPPORT || support == null) && !link2master; // !(this instanceof cSpring) && !(this instanceof BezierPatch);
6007
+
6008
+ //usecalllists &= display.DrawMode() == display.DEFAULT; // Don't compute list in shadow pass.
56576009
56586010 if (!usecalllists && bRep != null && bRep.displaylist > 0)
56596011 {
....@@ -5663,8 +6015,9 @@
56636015 // usecalllists &= !(parent instanceof RandomNode);
56646016 // usecalllists = false;
56656017
5666
- if (GetBRep() != null)
5667
- usecalllists = usecalllists;
6018
+ if (display.DrawMode() == display.SHADOW)
6019
+ //GetBRep() != null)
6020
+ usecalllists = !!usecalllists;
56686021 //System.out.println("draw " + this);
56696022 //new Exception().printStackTrace();
56706023
....@@ -5673,10 +6026,12 @@
56736026 boolean selectmode = display.DrawMode() == display.SELECTION || display.IsDebugSelection();
56746027
56756028 if (!selectmode && //display.DrawMode() != display.SELECTION &&
5676
- (touched || (bRep != null && bRep.displaylist <= 0)))
6029
+ //(touched || (bRep != null && bRep.displaylist <= 0)))
6030
+ (Globals.isLIVE() && Globals.COMPUTESHADOWWHENLIVE || touched && Globals.COMPUTESHADOWWHENLIVE)) // || (bRep != null && bRep.displaylist <= 0)))
56776031 {
56786032 Globals.lighttouched = true;
56796033 } // all panes...
6034
+
56806035 //if (usecalllists && display.DrawMode() != display.SELECTION && display.DrawMode() != display.SHADOW &&
56816036 if (bRep != null && usecalllists && !selectmode && // june 2013 display.DrawMode() != display.SHADOW &&
56826037 (touched || (bRep != null && bRep.displaylist <= 0)))
....@@ -5684,7 +6039,7 @@
56846039 if (!(this instanceof Composite))
56856040 touched = false;
56866041 //if (displaylist == -1 && usecalllists)
5687
- if ((bRep != null && bRep.displaylist <= 0) && usecalllists) // june 2013
6042
+ if (bRep.displaylist <= 0 && usecalllists) // && display.DrawMode() == display.DEFAULT) // june 2013
56886043 {
56896044 bRep.displaylist = display.GenList();
56906045 assert(bRep.displaylist != 0);
....@@ -5695,7 +6050,7 @@
56956050
56966051 //System.out.println("\tnew list " + list);
56976052 //gl.glDrawBuffer(gl.GL_NONE);
5698
- if (usecalllists)
6053
+ if (usecalllists && bRep.displaylist > 0)
56996054 {
57006055 // System.err.println("new list " + bRep.displaylist + " for " + this);
57016056 display.NewList(bRep.displaylist);
....@@ -5704,7 +6059,7 @@
57046059 CallList(display, root, selected, blocked);
57056060
57066061 // compiled = true;
5707
- if (usecalllists)
6062
+ if (usecalllists && bRep.displaylist > 0)
57086063 {
57096064 // System.err.println("end list " + bRep.displaylist + " for " + this);
57106065 display.EndList();
....@@ -5804,6 +6159,7 @@
58046159 if (GetBRep() != null)
58056160 {
58066161 display.NextIndex();
6162
+
58076163 // vertex color conflict : gl.glCallList(list);
58086164 DrawNode(display, root, selected);
58096165 if (this instanceof BezierPatch)
....@@ -5844,16 +6200,27 @@
58446200 tex = GetTextures();
58456201 }
58466202
5847
- boolean failed = false;
6203
+ boolean failedPigment = false;
6204
+ boolean failedBump = false;
58486205
58496206 try
58506207 {
5851
- display.BindTextures(tex, texres);
6208
+ display.BindPigmentTexture(tex, texres);
58526209 }
58536210 catch (Exception e)
58546211 {
58556212 System.err.println("FAILED: " + this);
5856
- failed = true;
6213
+ failedPigment = true;
6214
+ }
6215
+
6216
+ try
6217
+ {
6218
+ display.BindBumpTexture(tex, texres);
6219
+ }
6220
+ catch (Exception e)
6221
+ {
6222
+ //System.err.println("FAILED: " + this);
6223
+ failedBump = true;
58576224 }
58586225
58596226 if (!compiled)
....@@ -5876,8 +6243,11 @@
58766243 }
58776244 }
58786245
5879
- if (!failed)
5880
- display.ReleaseTextures(tex);
6246
+ if (!failedBump)
6247
+ display.ReleaseBumpTexture(tex);
6248
+
6249
+ if (!failedPigment)
6250
+ display.ReleasePigmentTexture(tex);
58816251
58826252 display.PopMaterial(this, selected);
58836253 }
....@@ -6250,6 +6620,11 @@
62506620 // dec 2012
62516621 new Exception().printStackTrace();
62526622 return;
6623
+ }
6624
+
6625
+ if (dontselect)
6626
+ {
6627
+ //bRep.GenerateNormalsMINE();
62536628 }
62546629
62556630 display.DrawGeometry(bRep, flipV, selectmode);
....@@ -7035,20 +7410,23 @@
70357410 }
70367411 }
70377412
7038
- protected void calcHotSpot(cVector in, ClickInfo info, Point outPt, Rectangle outRec)
7413
+ static ClickInfo clickInfo = new ClickInfo();
7414
+
7415
+ protected void calcHotSpot(cVector in, //ClickInfo clickInfo,
7416
+ Point outPt, Rectangle outRec)
70397417 {
7040
- int hc = info.bounds.x + info.bounds.width / 2;
7041
- int vc = info.bounds.y + info.bounds.height / 2;
7042
- double[][] toscreen = info.toScreen;
7418
+ int hc = clickInfo.bounds.x + clickInfo.bounds.width / 2;
7419
+ int vc = clickInfo.bounds.y + clickInfo.bounds.height / 2;
7420
+ double[][] toscreen = clickInfo.toScreen;
70437421 if (toscreen == null)
70447422 {
7045
- toscreen = new Camera(info.camera.viewCode).toScreen;
7423
+ toscreen = new Camera(clickInfo.camera.viewCode).toScreen;
70467424 }
70477425 cVector vec = in;
70487426 LA.xformPos(in, toscreen, in);
70497427 //System.out.println("Distance = " + info.camera.Distance());
7050
- vec.x *= 100 * info.camera.SCALE / info.camera.Distance();
7051
- vec.y *= 100 * info.camera.SCALE / info.camera.Distance();
7428
+ vec.x *= 100 * clickInfo.camera.SCALE / clickInfo.camera.Distance();
7429
+ vec.y *= 100 * clickInfo.camera.SCALE / clickInfo.camera.Distance();
70527430 outPt.x = hc + (int) vec.x;
70537431 outPt.y = vc - (int) vec.y;
70547432 outRec.x = outPt.x - 3;
....@@ -7056,15 +7434,18 @@
70567434 outRec.width = outRec.height = 6;
70577435 }
70587436
7059
- protected Rectangle calcHotSpot(cVector in, ClickInfo info)
7437
+ protected Rectangle calcHotSpot(cVector in//, ClickInfo clickInfo
7438
+ )
70607439 {
70617440 Point pt = new Point(0, 0);
70627441 Rectangle rec = new Rectangle();
7063
- calcHotSpot(in, info, pt, rec);
7442
+ calcHotSpot(in, //clickInfo,
7443
+ pt, rec);
70647444 return rec;
70657445 }
70667446
7067
- void drawEditHandles0(ClickInfo info, int level)
7447
+ void drawEditHandles0(//ClickInfo clickInfo,
7448
+ int level)
70687449 {
70697450 if (level == 0)
70707451 {
....@@ -7073,16 +7454,19 @@
70737454 {
70747455 cVector origin = new cVector();
70757456 //LA.xformPos(origin, toParent, origin);
7076
- Rectangle spot = calcHotSpot(origin, info);
7457
+ if (this.clickInfo == null)
7458
+ this.clickInfo = new ClickInfo();
7459
+
7460
+ Rectangle spot = calcHotSpot(origin); //, clickInfo);
70777461 Rectangle boundary = new Rectangle();
70787462 boundary.x = spot.x - 30;
70797463 boundary.y = spot.y - 30;
70807464 boundary.width = spot.width + 60;
70817465 boundary.height = spot.height + 60;
7082
- info.g.setColor(Color.red);
7466
+ clickInfo.g.setColor(Color.white);
70837467 int spotw = spot.x + spot.width;
70847468 int spoth = spot.y + spot.height;
7085
- info.g.fillRect(spot.x, spot.y, spot.width, spot.height);
7469
+ clickInfo.g.fillRect(spot.x, spot.y, spot.width, spot.height);
70867470 // if (CameraPane.Xmin > spot.x)
70877471 // {
70887472 // CameraPane.Xmin = spot.x;
....@@ -7099,11 +7483,33 @@
70997483 // {
71007484 // CameraPane.Ymax = spoth;
71017485 // }
7102
- spot.translate(32, 32);
7486
+// if (CameraPane.Xmin > spot.x)
7487
+// {
7488
+// CameraPane.Xmin = spot.x;
7489
+// }
7490
+// if (CameraPane.Xmax < spotw)
7491
+// {
7492
+// CameraPane.Xmax = spotw;
7493
+// }
7494
+// if (CameraPane.Ymin > spot.y)
7495
+// {
7496
+// CameraPane.Ymin = spot.y;
7497
+// }
7498
+// if (CameraPane.Ymax < spoth)
7499
+// {
7500
+// CameraPane.Ymax = spoth;
7501
+// }
7502
+ // bonhommes info.g.drawLine(spotw, spoth, spotw, spoth - boundary.height/2); // 15
7503
+ //info.g.drawLine(spotw, spoth, spotw - boundary.width/2, spoth); // 15
7504
+ spot.translate(32, 0);
7505
+ clickInfo.g.setColor(Color.yellow);
7506
+ clickInfo.g.fillRect(spot.x, spot.y, spot.width, spot.height);
7507
+
7508
+ spot.translate(32, 64);
71037509 spotw = spot.x + spot.width;
71047510 spoth = spot.y + spot.height;
7105
- info.g.setColor(Color.blue);
7106
- info.g.fillRect(spot.x, spot.y, spot.width, spot.height);
7511
+ clickInfo.g.setColor(Color.cyan);
7512
+ clickInfo.g.fillRect(spot.x, spot.y, spot.width, spot.height);
71077513 // if (CameraPane.Xmin > spot.x)
71087514 // {
71097515 // CameraPane.Xmin = spot.x;
....@@ -7120,29 +7526,9 @@
71207526 // {
71217527 // CameraPane.Ymax = spoth;
71227528 // }
7123
- // bonhommes info.g.drawLine(spotw, spoth, spotw, spoth - 15);
7124
- //info.g.drawLine(spotw, spoth, spotw - 15, spoth);
7125
- spot.translate(0, -32);
7126
- info.g.setColor(Color.green);
7127
- info.g.fillRect(spot.x, spot.y, spot.width, spot.height);
7128
-// if (CameraPane.Xmin > spot.x)
7129
-// {
7130
-// CameraPane.Xmin = spot.x;
7131
-// }
7132
-// if (CameraPane.Xmax < spotw)
7133
-// {
7134
-// CameraPane.Xmax = spotw;
7135
-// }
7136
-// if (CameraPane.Ymin > spot.y)
7137
-// {
7138
-// CameraPane.Ymin = spot.y;
7139
-// }
7140
-// if (CameraPane.Ymax < spoth)
7141
-// {
7142
-// CameraPane.Ymax = spoth;
7143
-// }
7144
- info.g.drawArc(boundary.x, boundary.y,
7145
- boundary.width, boundary.height, 0, 360);
7529
+ clickInfo.g.setColor(Color.green);
7530
+ clickInfo.g.drawArc(boundary.x + clickInfo.DX, boundary.y + clickInfo.DY,
7531
+ (int)(boundary.width * clickInfo.W), (int)(boundary.height * clickInfo.W), 0, 360);
71467532 //info.g.drawArc(spot.x, spotw, spot.width/2, boundary.height/2, 0, 360);
71477533 // if (CameraPane.Xmin > boundary.x)
71487534 // {
....@@ -7164,7 +7550,8 @@
71647550 }
71657551 }
71667552
7167
- boolean doEditClick0(ClickInfo info, int level)
7553
+ boolean doEditClick0(//ClickInfo clickInfo,
7554
+ int level)
71687555 {
71697556 if (level == 0)
71707557 {
....@@ -7173,8 +7560,8 @@
71737560
71747561 boolean retval = false;
71757562
7176
- startX = info.x;
7177
- startY = info.y;
7563
+ startX = clickInfo.x;
7564
+ startY = clickInfo.y;
71787565
71797566 hitSomething = -1;
71807567 cVector origin = new cVector();
....@@ -7184,22 +7571,53 @@
71847571 {
71857572 centerPt = new Point(0, 0);
71867573 }
7187
- calcHotSpot(origin, info, centerPt, spot);
7188
- if (spot.contains(info.x, info.y))
7574
+ calcHotSpot(origin, //info,
7575
+ centerPt, spot);
7576
+ if (spot.contains(clickInfo.x, clickInfo.y))
71897577 {
71907578 hitSomething = hitCenter;
71917579 retval = true;
71927580 }
71937581 spot.translate(32, 0);
7194
- if (spot.contains(info.x, info.y))
7582
+ if (spot.contains(clickInfo.x, clickInfo.y))
71957583 {
71967584 hitSomething = hitRotate;
71977585 retval = true;
71987586 }
71997587 spot.translate(0, 32);
7200
- if (spot.contains(info.x, info.y))
7588
+ spot.translate(32, 0);
7589
+ spot.translate(0, 32);
7590
+ if (spot.contains(clickInfo.x, clickInfo.y))
72017591 {
72027592 hitSomething = hitScale;
7593
+
7594
+ double scale = 0.005f * clickInfo.camera.Distance();
7595
+ double hScale = (double) (clickInfo.x - centerPt.x) / 64;
7596
+ double sign = 1;
7597
+ if (hScale < 0)
7598
+ {
7599
+ sign = -1;
7600
+ }
7601
+ hScale = sign*Math.pow(sign*hScale, scale * 50);
7602
+ if (hScale < 0.01)
7603
+ {
7604
+ //hScale = 0.01;
7605
+ }
7606
+
7607
+ double vScale = (double) (clickInfo.y - centerPt.y) / 64;
7608
+ sign = 1;
7609
+ if (vScale < 0)
7610
+ {
7611
+ sign = -1;
7612
+ }
7613
+ vScale = sign*Math.pow(sign*vScale, scale * 50);
7614
+ if (vScale < 0.01)
7615
+ {
7616
+ //vScale = 0.01;
7617
+ }
7618
+
7619
+ clickInfo.scale = Math.sqrt(hScale*hScale + vScale*vScale);
7620
+
72037621 retval = true;
72047622 }
72057623
....@@ -7209,7 +7627,7 @@
72097627 }
72107628
72117629 //System.out.println("info.modifiers = " + info.modifiers);
7212
- modified = (info.modifiers & CameraPane.SHIFT) != 0; // Was META
7630
+ modified = (clickInfo.modifiers & CameraPane.SHIFT) != 0; // Was META
72137631 //System.out.println("modified = " + modified);
72147632 //new Exception().printStackTrace();
72157633 //viewCode = info.pane.renderCamera.viewCode;
....@@ -7237,7 +7655,8 @@
72377655 return true;
72387656 }
72397657
7240
- void doEditDrag0(ClickInfo info, boolean opposite)
7658
+ void doEditDrag0(//ClickInfo info,
7659
+ boolean opposite)
72417660 {
72427661 if (hitSomething == 0)
72437662 {
....@@ -7251,7 +7670,7 @@
72517670
72527671 //System.out.println("hitSomething = " + hitSomething);
72537672
7254
- double scale = 0.005f * info.camera.Distance();
7673
+ double scale = 0.005f * clickInfo.camera.Distance();
72557674
72567675 cVector xlate = new cVector();
72577676 //cVector xlate2 = new cVector();
....@@ -7285,8 +7704,8 @@
72857704 toParent[3][i] = xlate.get(i);
72867705 LA.matInvert(toParent, fromParent);
72877706 */
7288
- cVector delta = LA.newVector(0, 0, startY - info.y);
7289
- LA.xformDir(delta, new Camera(info.camera.viewCode).fromScreen, delta);
7707
+ cVector delta = LA.newVector(0, 0, startY - clickInfo.y);
7708
+ LA.xformDir(delta, new Camera(clickInfo.camera.viewCode).fromScreen, delta);
72907709
72917710 LA.matCopy(startMat, toParent);
72927711 LA.matTranslate(toParent, delta.x * scale, delta.y * scale, delta.z * scale);
....@@ -7295,7 +7714,7 @@
72957714 } else
72967715 {
72977716 //LA.xformDir(delta, info.camera.fromScreen, delta);
7298
- cVector up = new cVector(info.camera.up);
7717
+ cVector up = new cVector(clickInfo.camera.up);
72997718 cVector away = new cVector();
73007719 //cVector right2 = new cVector();
73017720 //LA.vecCross(up, cVector.Z, right);
....@@ -7312,19 +7731,19 @@
73127731 LA.xformDir(up, ClickInfo.matbuffer, up);
73137732 // if (!CameraPane.LOCALTRANSFORM)
73147733 LA.xformDir(up, Globals.theRenderer.RenderCamera().toScreen, up);
7315
- LA.xformDir(info.camera.away, ClickInfo.matbuffer, away);
7734
+ LA.xformDir(clickInfo.camera.away, ClickInfo.matbuffer, away);
73167735 // if (!CameraPane.LOCALTRANSFORM)
73177736 LA.xformDir(away, Globals.theRenderer.RenderCamera().toScreen, away);
73187737 //LA.vecCross(up, cVector.Z, right2);
73197738
7320
- cVector delta = LA.newVector(info.x - startX, startY - info.y, 0);
7739
+ cVector delta = LA.newVector(clickInfo.x - startX, startY - clickInfo.y, 0);
73217740
73227741 //System.out.println("DELTA0 = " + delta);
73237742 //System.out.println("AWAY = " + info.camera.away);
73247743 //System.out.println("UP = " + info.camera.up);
73257744 if (away.z > 0)
73267745 {
7327
- if (info.camera.up.x == 0) // LA.vecDot(right, right2)<0)
7746
+ if (clickInfo.camera.up.x == 0) // LA.vecDot(right, right2)<0)
73287747 {
73297748 delta.x = -delta.x;
73307749 } else
....@@ -7339,7 +7758,7 @@
73397758 //System.out.println("DELTA1 = " + delta);
73407759 LA.xformDir(delta, ClickInfo.matbuffer, delta);
73417760 //System.out.println("DELTA2 = " + delta);
7342
- LA.xformDir(delta, new Camera(info.camera.viewCode).fromScreen, delta);
7761
+ LA.xformDir(delta, new Camera(clickInfo.camera.viewCode).fromScreen, delta);
73437762 LA.matCopy(startMat, toParent);
73447763 //System.out.println("DELTA3 = " + delta);
73457764 LA.matTranslate(toParent, delta.x * scale, delta.y * scale, delta.z * scale);
....@@ -7349,8 +7768,8 @@
73497768 break;
73507769
73517770 case hitRotate: // rotate
7352
- int dx = info.x - centerPt.x;
7353
- int dy = -(info.y - centerPt.y);
7771
+ int dx = clickInfo.x - centerPt.x;
7772
+ int dy = -(clickInfo.y - centerPt.y);
73547773 double angle = (double) Math.atan2(dx, dy);
73557774 angle = -(1.570796 - angle);
73567775
....@@ -7373,7 +7792,7 @@
73737792 }
73747793 /**/
73757794
7376
- switch (info.pane.RenderCamera().viewCode)
7795
+ switch (clickInfo.pane.RenderCamera().viewCode)
73777796 {
73787797 case 1: // '\001'
73797798 LA.matZRotate(toParent, angle);
....@@ -7400,7 +7819,7 @@
74007819 break;
74017820
74027821 case hitScale: // scale
7403
- double hScale = (double) (info.x - centerPt.x) / 32;
7822
+ double hScale = (double) (clickInfo.x - centerPt.x) / 64;
74047823 double sign = 1;
74057824 if (hScale < 0)
74067825 {
....@@ -7412,7 +7831,7 @@
74127831 //hScale = 0.01;
74137832 }
74147833
7415
- double vScale = (double) (info.y - centerPt.y) / 32;
7834
+ double vScale = (double) (clickInfo.y - centerPt.y) / 64;
74167835 sign = 1;
74177836 if (vScale < 0)
74187837 {
....@@ -7423,6 +7842,7 @@
74237842 {
74247843 //vScale = 0.01;
74257844 }
7845
+
74267846 LA.matCopy(startMat, toParent);
74277847 /**/
74287848 for (int i = 0; i < 3; i++)
....@@ -7432,32 +7852,39 @@
74327852 }
74337853 /**/
74347854
7435
- double totalScale = Math.sqrt(hScale*hScale + vScale*vScale) / Math.sqrt(2);
7855
+ double totalScale = Math.sqrt(hScale*hScale + vScale*vScale) / clickInfo.scale;
74367856
74377857 if (totalScale < 0.01)
74387858 {
74397859 totalScale = 0.01;
74407860 }
74417861
7442
- switch (info.pane.RenderCamera().viewCode)
7862
+ switch (clickInfo.pane.RenderCamera().viewCode)
74437863 {
74447864 case 3: // '\001'
7445
- if (modified)
7865
+ if (modified || opposite)
74467866 {
7867
+ if (modified && opposite)
7868
+ LA.matScale(toParent, totalScale, totalScale, totalScale);
7869
+ else
74477870 //LA.matScale(toParent, 1, hScale, vScale);
7448
- LA.matScale(toParent, totalScale, 1, 1);
7871
+ LA.matScale(toParent, totalScale, 1, 1);
74497872 } // vScale, 1);
74507873 else
74517874 {
7452
- LA.matScale(toParent, totalScale, totalScale, totalScale);
7875
+ // EXCEPTION!
7876
+ LA.matScale(toParent, 1, totalScale, totalScale);
74537877 } // vScale, 1);
74547878 break;
74557879
74567880 case 2: // '\002'
7457
- if (modified)
7881
+ if (modified || opposite)
74587882 {
7459
- //LA.matScale(toParent, hScale, 1, vScale);
7460
- LA.matScale(toParent, 1, totalScale, 1);
7883
+ if (modified && opposite)
7884
+ LA.matScale(toParent, totalScale, totalScale, totalScale);
7885
+ else
7886
+ //LA.matScale(toParent, hScale, 1, vScale);
7887
+ LA.matScale(toParent, 1, totalScale, 1);
74617888 } else
74627889 {
74637890 LA.matScale(toParent, totalScale, 1, totalScale);
....@@ -7465,10 +7892,13 @@
74657892 break;
74667893
74677894 case 1: // '\003'
7468
- if (modified)
7895
+ if (modified || opposite)
74697896 {
7470
- //LA.matScale(toParent, hScale, vScale, 1);
7471
- LA.matScale(toParent, 1, 1, totalScale);
7897
+ if (modified && opposite)
7898
+ LA.matScale(toParent, totalScale, totalScale, totalScale);
7899
+ else
7900
+ //LA.matScale(toParent, hScale, vScale, 1);
7901
+ LA.matScale(toParent, 1, 1, totalScale);
74727902 } else
74737903 {
74747904 LA.matScale(toParent, totalScale, totalScale, 1);
....@@ -7505,7 +7935,7 @@
75057935 } // NEW ...
75067936
75077937
7508
- info.pane.repaint();
7938
+ clickInfo.pane.repaint();
75097939 }
75107940
75117941 boolean overflow = false;
....@@ -7685,6 +8115,10 @@
76858115 editWindow = null;
76868116 } // ?
76878117 }
8118
+ else
8119
+ {
8120
+ //editWindow.closeUI();
8121
+ }
76888122 }
76898123
76908124 boolean root; // patch for edit windows
....@@ -7842,6 +8276,10 @@
78428276 }
78438277
78448278 transient ObjEditor editWindow;
8279
+ transient ObjEditor manipWindow;
8280
+
8281
+ transient boolean pinned;
8282
+
78458283 transient ObjectUI objectUI;
78468284 public static int povDepth = 0;
78478285 private static cVector tbMin = new cVector();