Normand Briere
2019-06-30 cfd7a643cb5a445016ddb15595158ecc59b184fd
GroupEditor.java
....@@ -150,11 +150,19 @@
150150
151151 void SetupMenu2(GroupEditor oe)
152152 {
153
+ oe.jTree = new cTree();
154
+
153155 Menu menu;
154156 oe.menuBar.add(menu = new Menu("Edit"));
155157 //editItem = menu.add(new MenuItem("Edit"));
156158 //editItem.addActionListener(this);
157
- duplicateItem = menu.add(new MenuItem("Duplicate"));
159
+
160
+// undoItem = menu.add(new MenuItem("Undo"));
161
+// undoItem.addActionListener(this);
162
+// redoItem = menu.add(new MenuItem("Redo"));
163
+// redoItem.addActionListener(this);
164
+// menu.add("-");
165
+ duplicateItem = oe.jTree.popup.add(new JMenuItem("Duplicate"));
158166 duplicateItem.addActionListener(this);
159167 cloneItem = menu.add(new MenuItem("Clone"));
160168 cloneItem.addActionListener(this);
....@@ -170,7 +178,6 @@
170178 copyItem.addActionListener(this);
171179 pasteItem = menu.add(new MenuItem("Paste"));
172180 pasteItem.addActionListener(this);
173
- menu.add("-");
174181
175182 menu.add("-");
176183 pasteIntoItem = menu.add(new MenuItem("Paste into"));
....@@ -197,23 +204,23 @@
197204 //zBufferItem.addActionListener(this);
198205 //cameraMenu.add(normalLensItem = new MenuItem("Normal Lens"));
199206 //normalLensItem.addActionListener(this);
200
- cameraMenu.add(revertCameraItem = new MenuItem("Revert Camera"));
201
- revertCameraItem.addActionListener(this);
207
+ cameraMenu.add(restoreCameraItem = new MenuItem("Restore Viewpoint"));
208
+ restoreCameraItem.addActionListener(this);
202209
203
- cameraMenu.add(toggleFullScreenItem = new CheckboxMenuItem("Full Screen"));
204
- toggleFullScreenItem.addItemListener(this);
205
- toggleFullScreenItem.setState(CameraPane.FULLSCREEN);
206
- cameraMenu.add("-");
210
+// cameraMenu.add(toggleFullScreenItem = new CheckboxMenuItem("Full Screen"));
211
+// toggleFullScreenItem.addItemListener(this);
212
+// toggleFullScreenItem.setState(CameraPane.FULLSCREEN);
213
+// cameraMenu.add("-");
214
+//
215
+// cameraMenu.add(toggleTextureItem = new CheckboxMenuItem("Texture"));
216
+// toggleTextureItem.addItemListener(this);
217
+// toggleTextureItem.setState(CameraPane.textureon);
218
+//
219
+// cameraMenu.add(toggleSwitchItem = new CheckboxMenuItem("Switch"));
220
+// toggleSwitchItem.addItemListener(this);
221
+// toggleSwitchItem.setState(CameraPane.SWITCH);
207222
208
- cameraMenu.add(toggleTextureItem = new CheckboxMenuItem("Texture"));
209
- toggleTextureItem.addItemListener(this);
210
- toggleTextureItem.setState(CameraPane.textureon);
211
-
212
- cameraMenu.add(toggleSwitchItem = new CheckboxMenuItem("Switch"));
213
- toggleSwitchItem.addItemListener(this);
214
- toggleSwitchItem.setState(CameraPane.SWITCH);
215
-
216
- cameraMenu.add(toggleHandleItem = new CheckboxMenuItem("Handles"));
223
+ cameraMenu.add(toggleHandleItem = new CheckboxMenuItem("Show Handles"));
217224 toggleHandleItem.addItemListener(this);
218225 toggleHandleItem.setState(CameraPane.HANDLES);
219226
....@@ -240,7 +247,7 @@
240247
241248 cameraMenu.add(toggleDebugItem = new CheckboxMenuItem("Debug"));
242249 toggleDebugItem.addItemListener(this);
243
- toggleDebugItem.setState(CameraPane.DEBUG);
250
+ toggleDebugItem.setState(Globals.DEBUG);
244251
245252 cameraMenu.add(toggleFrustumItem = new CheckboxMenuItem("Frustum"));
246253 toggleFrustumItem.addItemListener(this);
....@@ -261,14 +268,14 @@
261268 // animationItem.addItemListener(this);
262269 // animationItem.setState(CameraPane.ANIMATION);
263270 cameraMenu.add("-");
264
- cameraMenu.add(editCameraItem = new MenuItem("Freeze Camera"));
271
+ cameraMenu.add(editCameraItem = new MenuItem("Save Viewpoint"));
265272 editCameraItem.addActionListener(this);
266273
267274 if (Globals.ADVANCED)
268275 {
269276 oe.cameraMenu.add(lookAtItem = new MenuItem("Set Interest"));
270277 //cameraMenu.add(lookFromItem = new MenuItem("Look From Selection"));
271
- //cameraMenu.add(switchItem = new MenuItem("Reverse View"));
278
+ //cameraMenu.add(switchViewItem = new MenuItem("Reverse View"));
272279 editLeafItem = oe.cameraMenu.add(new MenuItem("Edit Leaf"));
273280 oe.cameraMenu.add("-");
274281 openWindowItem = oe.cameraMenu.add(new MenuItem("Edit copy..."));
....@@ -276,7 +283,7 @@
276283 editLeafItem.addActionListener(this);
277284 lookAtItem.addActionListener(this);
278285 //lookFromItem.addActinoListener(this);
279
- //switchItem.addActionListener(this);
286
+ //switchViewItem.addActionListener(this);
280287 }
281288
282289 oe.menuBar.add(menu = new Menu("Setting"));
....@@ -321,21 +328,29 @@
321328 }
322329
323330 oe.menuBar.add(menu = new Menu("Group"));
324
- grabItem = menu.add(new MenuItem("Grab"));
325
- grabItem.addActionListener(this);
331
+// grabItem = menu.add(new MenuItem("Grab"));
332
+// grabItem.addActionListener(this);
326333 backItem = menu.add(new MenuItem("Back"));
327334 backItem.addActionListener(this);
328335 frontItem = menu.add(new MenuItem("Front"));
329336 frontItem.addActionListener(this);
330
- compositeItem = menu.add(new MenuItem("Composite"));
331
- compositeItem.addActionListener(this);
337
+// compositeItem = menu.add(new MenuItem("Composite"));
338
+// compositeItem.addActionListener(this);
339
+
340
+ if (Globals.ADVANCED)
341
+ {
332342 hideItem = menu.add(new MenuItem("Hidden Group"));
333343 hideItem.addActionListener(this);
344
+ }
334345 ungroupItem = menu.add(new MenuItem("Ungroup"));
335346 ungroupItem.addActionListener(this);
336
- menu.add("-");
337
- randomItem = menu.add(new MenuItem("Switch node"));
338
- randomItem.addActionListener(this);
347
+
348
+// menu.add("-");
349
+//
350
+// switchItem = menu.add(new MenuItem("Switch node"));
351
+// switchItem.addActionListener(this);
352
+ if (Globals.ADVANCED)
353
+ {
339354 switchGeoItem = menu.add(new MenuItem("Switch Geometry"));
340355 switchGeoItem.addActionListener(this);
341356 switchTransfoItem = menu.add(new MenuItem("Switch Transform"));
....@@ -343,8 +358,6 @@
343358 morphItem = menu.add(new MenuItem("Morph Group"));
344359 morphItem.addActionListener(this);
345360
346
- if (Globals.ADVANCED)
347
- {
348361 menu.add("-");
349362 physicsItem = menu.add(new MenuItem("Physics"));
350363 physicsItem.addActionListener(this);
....@@ -352,22 +365,20 @@
352365 frameselectorItem.addActionListener(this);
353366 scriptNodeItem = menu.add(new MenuItem("Script Node"));
354367 scriptNodeItem.addActionListener(this);
355
- cameraItem = menu.add(new MenuItem("Camera"));
356
- cameraItem.addActionListener(this);
357368 }
358369
359370 oe.menuBar.add(menu = new Menu("Object"));
360
- textureItem = menu.add(new MenuItem("Texture"));
361
- textureItem.addActionListener(this);
371
+// textureItem = menu.add(new MenuItem("Texture"));
372
+// textureItem.addActionListener(this);
362373 billboardItem = menu.add(new MenuItem("Billboard"));
363374 billboardItem.addActionListener(this);
364375 csgItem = menu.add(new MenuItem("CSG"));
365376 csgItem.addActionListener(this);
366
- shadowXItem = menu.add(new MenuItem("Shadow X"));
377
+ shadowXItem = menu.add(new MenuItem("Shadow Red"));
367378 shadowXItem.addActionListener(this);
368
- shadowYItem = menu.add(new MenuItem("Shadow Y"));
379
+ shadowYItem = menu.add(new MenuItem("Shadow Green"));
369380 shadowYItem.addActionListener(this);
370
- shadowZItem = menu.add(new MenuItem("Shadow Z"));
381
+ shadowZItem = menu.add(new MenuItem("Shadow Blue"));
371382 shadowZItem.addActionListener(this);
372383 if (Globals.ADVANCED)
373384 {
....@@ -464,6 +475,14 @@
464475 markleavesItem.addActionListener(this);
465476 unmarkleavesItem = menu.add(new MenuItem("Unmark Leaves"));
466477 unmarkleavesItem.addActionListener(this);
478
+ rewindleavesItem = menu.add(new MenuItem("Rewind Leaves"));
479
+ rewindleavesItem.addActionListener(this);
480
+ unrewindleavesItem = menu.add(new MenuItem("Unrewind Leaves"));
481
+ unrewindleavesItem.addActionListener(this);
482
+ randomleavesItem = menu.add(new MenuItem("Random Leaves"));
483
+ randomleavesItem.addActionListener(this);
484
+ unrandomleavesItem = menu.add(new MenuItem("Unrandom Leaves"));
485
+ unrandomleavesItem.addActionListener(this);
467486 menu.add("-");
468487 flipVItem = menu.add(new MenuItem("Flip V"));
469488 flipVItem.addActionListener(this);
....@@ -521,6 +540,18 @@
521540
522541 void SetupUI2(ObjEditor oe)
523542 {
543
+ // June 2019
544
+ if (oe == null)
545
+ {
546
+ //super.SetupUI2(this);
547
+ //return;
548
+ }
549
+
550
+ if (copy != group)
551
+ {
552
+ //super.SetupUI2(this);
553
+ }
554
+
524555 //new Exception().printStackTrace();
525556
526557 oe.radioPanel = new JPanel(new GridBagLayout());
....@@ -549,27 +580,66 @@
549580 oe.radioPanel.add(dummyButton);
550581 oe.buttonGroup.add(dummyButton);
551582 */
583
+ cGridBag copyOptionsPanel = new cGridBag();
584
+
585
+ copyOptionsPanel.preferredHeight = 1;
586
+
552587 //this.AddOptions(oe.toolbarPanel, oe.aConstraints);
553588
554
- oe.toolbarPanel.add(liveCB = new cCheckBox("Live", Globals.isLIVE())); //, oe.aConstraints);
589
+ //oe.toolbarPanel.add(minButton = new cButton("Min", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
590
+ //minButton.setToolTipText("Minimize window");
591
+ //minButton.addActionListener(this);
592
+
593
+ if (Globals.ADVANCED)
594
+ {
595
+ oe.toolbarPanel.add(maxButton = GetButton("icons/add-128.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
596
+ maxButton.setToolTipText("Maximize window");
597
+ maxButton.addActionListener(this);
598
+ }
599
+
600
+ oe.toolbarPanel.add(fullButton = GetButton("icons/fullscreen.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
601
+ fullButton.setToolTipText("Full-screen window");
602
+ fullButton.addActionListener(this);
603
+
604
+ oe.toolbarPanel.add(restoreCameraButton = GetButton("icons/eye.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
605
+ restoreCameraButton.setToolTipText("Restore viewpoint");
606
+ restoreCameraButton.addActionListener(this);
607
+
608
+ copyOptionsPanel.add(undoButton = GetButton("icons/undo.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
609
+ undoButton.setToolTipText("Undo changes");
610
+ undoButton.addActionListener(this);
611
+ undoButton.setEnabled(false);
612
+
613
+ copyOptionsPanel.add(redoButton = GetButton("icons/redo.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
614
+ redoButton.setToolTipText("Redo changes");
615
+ redoButton.addActionListener(this);
616
+ redoButton.setEnabled(false);
617
+
618
+ copyOptionsPanel.add(saveButton = GetButton("icons/down_arrow.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
619
+ saveButton.setToolTipText("Save changes");
620
+ saveButton.addActionListener(this);
621
+
622
+ copyOptionsPanel.add(liveCB = GetToggleButton("icons/run.png", Globals.isLIVE())); //, oe.aConstraints);
555623 liveCB.setToolTipText("Enable animation");
556624 liveCB.addItemListener(this);
557625
558
- oe.toolbarPanel.add(oneStepButton = new cButton("Step", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
626
+ copyOptionsPanel.add(oneStepButton = GetButton("icons/step.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
559627 oneStepButton.setToolTipText("Animate one step forward");
560628 oneStepButton.addActionListener(this);
561629
562
- oe.toolbarPanel.add(fastCB = new cCheckBox("Fast", CameraPane.FAST)); //, constraints);
630
+ copyOptionsPanel.add(fastCB = GetToggleButton("icons/runfast.png", CameraPane.FAST)); //, constraints);
563631 fastCB.setToolTipText("Fast mode");
564632 fastCB.addItemListener(this);
565633
566
- oe.toolbarPanel.add(trackCB = new cCheckBox("Track", CameraPane.TRACK)); //, oe.aConstraints);
567
- trackCB.setToolTipText("Enable tracking");
568
- trackCB.addItemListener(this);
569
-
570
- oe.toolbarPanel.add(screenfitButton = new cButton("@", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
634
+ //oe.toolboxPanel.Return();
635
+
636
+ copyOptionsPanel.add(screenfitButton = GetButton("icons/fit.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
571637 screenfitButton.setToolTipText("Screen fit");
572638 screenfitButton.addActionListener(this);
639
+
640
+// copyOptionsPanel.add(trackCB = GetToggleButton("icons/track.png", CameraPane.TRACK)); //, oe.aConstraints);
641
+// trackCB.setToolTipText("Enable tracking");
642
+// trackCB.addItemListener(this);
573643
574644 // oe.toolbarPanel.add(screenfitpointButton = new cButton(" @+ ")); //, oe.aConstraints);
575645 // screenfitpointButton.addActionListener(this);
....@@ -581,65 +651,145 @@
581651 snapobjectButton.setToolTipText("Snap Object");
582652 }
583653
584
- oe.toolbarPanel.add(flashSelectionButton = new cButton("?", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
585
- flashSelectionButton.setToolTipText("Show selection");
586
- flashSelectionButton.addActionListener(this);
654
+ //oe.toolbarPanel.add(new JSeparator(SwingConstants.VERTICAL));
587655
588
- oe.toolbarPanel.add(new JSeparator(SwingConstants.VERTICAL));
589
-
590
- oe.toolbarPanel.add(twoButton = new cButton("|+|", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
656
+ oe.toolbarPanel.add(twoButton = new cButton("|-|", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
591657 twoButton.setToolTipText("Show center view only");
592658 twoButton.addActionListener(this);
593
- oe.toolbarPanel.add(fourButton = new cButton("+||", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
659
+ this.fullscreenLayout = twoButton;
660
+
661
+ oe.toolbarPanel.add(fourButton = new cButton("-||", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
594662 fourButton.addActionListener(this);
595663 fourButton.setToolTipText("Show left panel only");
596
- oe.toolbarPanel.add(sixButton = new cButton("+|+|", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
664
+ oe.toolbarPanel.add(sixButton = new cButton("-|-|", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
597665 sixButton.setToolTipText("2-column layout left");
598666 sixButton.addActionListener(this);
599
- oe.toolbarPanel.add(threeButton = new cButton("|+|+", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
667
+ oe.toolbarPanel.add(threeButton = new cButton("|-|-", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
600668 threeButton.setToolTipText("2-column layout right");
601669 threeButton.addActionListener(this);
602
- oe.toolbarPanel.add(sevenButton = new cButton("+|+|+", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
670
+ oe.toolbarPanel.add(sevenButton = new cButton("-|-|-", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
603671 sevenButton.setToolTipText("3-column layout");
604672 sevenButton.addActionListener(this);
605673 //
606674
607
- oe.toolbarPanel.add(rootButton = new cButton("o o o", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
675
+ oe.toolbarPanel.add(rootButton = GetButton("icons/write.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
608676 rootButton.setToolTipText("Edit selection in new tab");
609677 rootButton.addActionListener(this);
610678
611
- oe.toolbarPanel.add(closeButton = new cButton("X", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
679
+ oe.toolbarPanel.add(closeButton = GetButton("icons/close-icon.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
612680 closeButton.setToolTipText("Close tab");
613681 closeButton.addActionListener(this);
614682 //oe.treePanel.add(clearButton = new cButton("X"), oe.aConstraints);
615683 //clearButton.addActionListener(this);
616
-
617
- cGridBag commandsPanel = new cGridBag();
684
+
685
+ // INSERT
686
+ oe.toolboxPanel.add(gridButton = GetButton("icons/grid.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
687
+ gridButton.setToolTipText("Create grid");
688
+ gridButton.addActionListener(this);
689
+
690
+ oe.toolboxPanel.add(boxButton = GetButton("icons/box.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
691
+ boxButton.setToolTipText("Create box");
692
+ boxButton.addActionListener(this);
693
+
694
+ oe.toolboxPanel.add(sphereButton = GetButton("icons/sphere.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
695
+ sphereButton.setToolTipText("Create sphere");
696
+ sphereButton.addActionListener(this);
697
+
698
+ oe.toolboxPanel.add(coneButton = GetButton("icons/cone.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
699
+ coneButton.setToolTipText("Create cone");
700
+ coneButton.addActionListener(this);
701
+
702
+ oe.toolboxPanel.add(torusButton = GetButton("icons/torus.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
703
+ torusButton.setToolTipText("Create torus");
704
+ torusButton.addActionListener(this);
705
+
706
+ oe.toolboxPanel.add(superButton = GetButton("icons/super.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
707
+ superButton.setToolTipText("Create superellipsoid");
708
+ superButton.addActionListener(this);
709
+
710
+ if (Globals.ADVANCED)
711
+ {
712
+ oe.toolboxPanel.add(kleinButton = GetButton("icons/klein.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
713
+ kleinButton.setToolTipText("Create Klein bottle");
714
+ kleinButton.addActionListener(this);
715
+ }
618716
619
- commandsPanel.add(editButton = new cButton("+", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
620
- editButton.setToolTipText("Edit selection");
717
+ oe.toolboxPanel.add(particlesButton = GetButton("icons/particles.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
718
+ particlesButton.setToolTipText("Create particle system");
719
+ particlesButton.addActionListener(this);
720
+
721
+ oe.toolboxPanel.Return();
722
+
723
+ oe.toolboxPanel.add(groupButton = GetButton("icons/group.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
724
+ groupButton.setToolTipText("Create group");
725
+ groupButton.addActionListener(this);
726
+
727
+ oe.toolboxPanel.add(compositeButton = GetButton("icons/composite.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
728
+ compositeButton.setToolTipText("Create composite");
729
+ compositeButton.addActionListener(this);
730
+
731
+ oe.toolboxPanel.add(switchButton = GetButton("icons/switch.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
732
+ switchButton.setToolTipText("Create item switcher");
733
+ switchButton.addActionListener(this);
734
+
735
+ oe.toolboxPanel.add(loopButton = GetButton("icons/loop.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
736
+ loopButton.setToolTipText("Create loop");
737
+ loopButton.addActionListener(this);
738
+
739
+ oe.toolboxPanel.add(textureButton = GetButton("icons/texture.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
740
+ textureButton.setToolTipText("Create texture");
741
+ textureButton.addActionListener(this);
742
+
743
+ oe.toolboxPanel.add(overlayButton = GetButton("icons/overlay.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
744
+ overlayButton.setToolTipText("Create overlay");
745
+ overlayButton.addActionListener(this);
746
+
747
+ oe.toolboxPanel.add(lightButton = GetButton("icons/light-bulb.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
748
+ lightButton.setToolTipText("Create light");
749
+ lightButton.addActionListener(this);
750
+
751
+ for (int i=6; --i>=0;)
752
+ {
753
+ oe.toolboxPanel.Return();
754
+ oe.toolboxPanel.add(new cGridBag());
755
+ oe.toolboxPanel.add(new cGridBag());
756
+ oe.toolboxPanel.add(new cGridBag());
757
+ oe.toolboxPanel.add(new cGridBag());
758
+ oe.toolboxPanel.add(new cGridBag());
759
+ oe.toolboxPanel.add(new cGridBag());
760
+ oe.toolboxPanel.add(new cGridBag());
761
+ }
762
+
763
+ // EDIT panel
764
+ editCommandsPanel.add(editButton = GetButton("icons/controls.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
765
+ editButton.setToolTipText("Pin selection controls");
621766 editButton.addActionListener(this);
622767
623
- commandsPanel.add(uneditButton = new cButton("-", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
624
- uneditButton.setToolTipText("Unedit selection");
768
+ editCommandsPanel.add(uneditButton = GetButton("icons/remove.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
769
+ uneditButton.setToolTipText("Remove selection controls");
625770 uneditButton.addActionListener(this);
626771
627
- commandsPanel.add(allParamsButton = new JCheckBox("All", allparams)); //, oe.aConstraints);
628
- allParamsButton.setToolTipText("Edit all params");
772
+ editCommandsPanel.add(allParamsButton = new JCheckBox("All", allparams)); //, oe.aConstraints);
773
+ allParamsButton.setToolTipText("Show all controle");
629774 allParamsButton.addActionListener(this);
630775
631
- commandsPanel.add(clearPanelButton = new cButton("C", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
776
+ editCommandsPanel.add(clearPanelButton = new cButton("C", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
632777 clearPanelButton.setToolTipText("Clear edit panel");
633778 clearPanelButton.addActionListener(this);
634779
635
- commandsPanel.add(unselectButton = new cButton("U", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
780
+ editCommandsPanel.add(unselectButton = new cButton("U", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
636781 unselectButton.setToolTipText("Unselect");
637782 unselectButton.addActionListener(this);
638783
639
- commandsPanel.preferredHeight = 1;
784
+ editCommandsPanel.add(flashSelectionButton = GetButton("icons/flash-light.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
785
+ flashSelectionButton.setToolTipText("Highlight selection");
786
+ flashSelectionButton.addActionListener(this);
640787
641
- oe.treePanel.add(commandsPanel);
642
- oe.treePanel.Return();
788
+ editCommandsPanel.preferredHeight = 1;
789
+
790
+ SetPinStates(false);
791
+// oe.treePanel.add(commandsPanel);
792
+// oe.treePanel.Return();
643793
644794 // oe.aConstraints.gridx += 1;
645795 // oe.aConstraints.weighty = 0;
....@@ -656,27 +806,12 @@
656806
657807 JScrollPane jSP;
658808 //ctrlPanel.add(new JScrollPane(jTree = new cTree(new cTreeModel(this))), aConstraints);
659
- jSPPanel.add(jSP = new JScrollPane(oe.jTree = new cTree(null))); //, oe.aConstraints);
809
+ jSPPanel.add(jSP = new JScrollPane(oe.jTree)); //, oe.aConstraints);
660810 ResetModel();
661811
662812 oe.treePanel.add(jSPPanel);
663813 oe.treePanel.Return();
664814
665
- cGridBag copyOptionsPanel = new cGridBag();
666
-
667
- copyOptionsPanel.add(colorCB = new cCheckBox("Color", (dropAttributes&Object3D.COLOR)!=0)); //, oe.aConstraints);
668
- colorCB.setToolTipText("Copy color when dropped");
669
- colorCB.addItemListener(this);
670
-
671
- copyOptionsPanel.add(materialCB = new cCheckBox("Material", (dropAttributes&Object3D.MATERIAL)!=0)); //, oe.aConstraints);
672
- materialCB.setToolTipText("Copy material when dropped");
673
- materialCB.addItemListener(this);
674
-
675
- copyOptionsPanel.add(textureCB = new cCheckBox("Texture", (dropAttributes&Object3D.TEXTURE)!=0)); //, oe.aConstraints);
676
- textureCB.setToolTipText("Copy texture when dropped");
677
- textureCB.addItemListener(this);
678
-
679
- copyOptionsPanel.preferredHeight = 1;
680815 oe.treePanel.add(copyOptionsPanel);
681816 oe.treePanel.Return();
682817
....@@ -707,23 +842,43 @@
707842
708843 void AddOptions(cGridBag panel) //, GridBagConstraints constraints)
709844 {
845
+ panel.add(colorCB = new cCheckBox("Color", (dropAttributes&Object3D.COLOR)!=0)); //, oe.aConstraints);
846
+ colorCB.setToolTipText("Copy color when dropped");
847
+ colorCB.addItemListener(this);
848
+
849
+ panel.add(materialCB = new cCheckBox("Material", (dropAttributes&Object3D.MATERIAL)!=0)); //, oe.aConstraints);
850
+ materialCB.setToolTipText("Copy material when dropped");
851
+ materialCB.addItemListener(this);
852
+
853
+ panel.add(textureCB = new cCheckBox("Texture", (dropAttributes&Object3D.TEXTURE)!=0)); //, oe.aConstraints);
854
+ textureCB.setToolTipText("Copy texture when dropped");
855
+ textureCB.addItemListener(this);
856
+
857
+ panel.Return();
858
+
710859 panel.add(boxCB = new cCheckBox("Box", CameraPane.BOXMODE)); //, constraints);
711860 boxCB.setToolTipText("Display bounding boxes");
712861 boxCB.addItemListener(this);
713862
714863 panel.add(zoomBoxCB = new cCheckBox("Zoom", CameraPane.ZOOMBOXMODE)); //, constraints);
715
- zoomBoxCB.setToolTipText("Display bounding boxes when moving the wheel");
864
+ zoomBoxCB.setToolTipText("Display only for wheel");
716865 zoomBoxCB.addItemListener(this);
717866
718867 if (true) // Globals.ADVANCED)
719868 {
720
- panel.add(supportCB = new cCheckBox("Support", CameraPane.SUPPORT)); //, constraints);
721
- supportCB.setToolTipText("Enable rigging");
722
- supportCB.addItemListener(this);
869
+// panel.add(supportCB = new cCheckBox("Support", CameraPane.SUPPORT)); //, constraints);
870
+// supportCB.setToolTipText("Enable rigging");
871
+// supportCB.addItemListener(this);
872
+
873
+ panel.add(freezeCB = new cCheckBox("Freeze", Globals.FREEZEONMOVE)); //, constraints);
874
+ freezeCB.setToolTipText("Fast moving camera");
875
+ freezeCB.addItemListener(this);
723876
724877 // panel.add(localCB = new cCheckBox("Local", CameraPane.LOCALTRANSFORM), constraints);
725878 // localCB.addItemListener(this);
726879
880
+ panel.Return();
881
+
727882 panel.add(crowdCB = new cCheckBox("Crowd", Globals.CROWD)); //, constraints);
728883 crowdCB.setToolTipText("Used for crowds");
729884 crowdCB.addItemListener(this);
....@@ -740,6 +895,8 @@
740895 // panel.add(speakerMocapCB = new cCheckBox("Mocap", CameraPane.SPEAKERMOCAP), constraints);
741896 // speakerMocapCB.addItemListener(this);
742897
898
+ panel.Return();
899
+
743900 if (false)
744901 {
745902 // handled in scripts
....@@ -754,32 +911,72 @@
754911 //constraints.gridy += 1;
755912 panel.add(smoothfocusCB = new cCheckBox("Smooth", CameraPane.SMOOTHFOCUS)); //, constraints);
756913 smoothfocusCB.addItemListener(this);
914
+ panel.Return();
757915 }
758916
759917 //constraints.gridx += 1;
760918 //panel.add(debugCB = new cCheckBox("Debug", CameraPane.DEBUG), constraints);
761919 // debugCB.addItemListener(this);
762920
921
+ panel.add(trackCB = new cCheckBox("Track", CameraPane.TRACK)); //, oe.aConstraints);
922
+ trackCB.setToolTipText("Enable tracking target");
923
+ trackCB.addItemListener(this);
924
+
763925 panel.add(oeilCB = new cCheckBox("Eye", CameraPane.OEIL)); //, constraints);
926
+ oeilCB.setToolTipText("Move camera when tracking");
764927 oeilCB.addItemListener(this);
765928
929
+ panel.add(shadowCB = new cCheckBox("Shadow", Globals.COMPUTESHADOWWHENLIVE)); //, constraints);
930
+ shadowCB.setToolTipText("When live compute shadows");
931
+ shadowCB.addItemListener(this);
932
+
933
+ panel.Return();
934
+ panel.add(toggleTextureCB = new cCheckBox("Textures", CameraPane.textureon)); //, constraints);
935
+ toggleTextureCB.setToolTipText("Load textures");
936
+ toggleTextureCB.addItemListener(this);
937
+
938
+ panel.add(toggleSwitchCB = new cCheckBox("Switch", CameraPane.SWITCH)); //, constraints);
939
+ toggleSwitchCB.setToolTipText("Choose a single item");
940
+ toggleSwitchCB.addItemListener(this);
941
+
942
+ panel.add(autosaveCB = new cCheckBox("Auto-save", Globals.SAVEONMAKE)); //, constraints);
943
+ autosaveCB.setToolTipText("On structure change");
944
+ autosaveCB.addItemListener(this);
945
+
946
+ panel.Return();
947
+ if (Globals.ADVANCED)
948
+ {
766949 panel.add(lookAtCB = new cCheckBox("Target", CameraPane.LOOKAT)); //, constraints);
767950 lookAtCB.setToolTipText("Look-at target");
768951 lookAtCB.addItemListener(this);
952
+ }
769953
770954 }
771955
772956 cGridBag fill = new cGridBag();
773
-
774957 fill.preferredHeight = 200;
958
+ cGridBag fill2 = new cGridBag();
959
+ fill2.preferredHeight = 200;
960
+ cGridBag fill3 = new cGridBag();
961
+ fill3.preferredHeight = 200;
775962
776963 panel.add(fill);
964
+ panel.add(fill2);
965
+ panel.add(fill3);
777966
778967 }
779968
780969 void EditObject(Object3D obj)
781970 {
782971 cRadio radioButton = new cRadio(obj.name);
972
+
973
+ // Patch to avoid bug with transparency.
974
+ radioButton.hadMaterial = obj.material != null;
975
+ if (!radioButton.hadMaterial)
976
+ {
977
+ obj.material = new cMaterial();
978
+ }
979
+
783980 radioButton.SetObject(obj);
784981 radioButton.layout = sevenButton;
785982 radioButton.SetCamera(cameraView.renderCamera, false);
....@@ -791,6 +988,8 @@
791988
792989 void SetupViews(ObjEditor oe)
793990 {
991
+ theFrame = this;
992
+
794993 oe.SetupViews();
795994
796995 System.out.println("SetupViews");
....@@ -799,23 +998,28 @@
799998 /*DropTarget dropTarget =*/ new DropTarget(oe.cameraView, this);
800999 }
8011000
802
- JCheckBox liveCB;
803
- JCheckBox supportCB;
804
- JCheckBox localCB;
805
- JCheckBox crowdCB;
806
- JCheckBox smoothCB;
807
- JCheckBox fastCB;
808
- JCheckBox slowCB;
809
- JCheckBox boxCB;
810
- JCheckBox zoomBoxCB;
811
- JCheckBox trackCB;
812
- JCheckBox smoothfocusCB;
1001
+ cToggleButton liveCB;
1002
+ cCheckBox supportCB;
1003
+ cCheckBox localCB;
1004
+ cCheckBox crowdCB;
1005
+ cCheckBox smoothCB;
1006
+ cToggleButton fastCB;
1007
+ cCheckBox slowCB;
1008
+ cCheckBox boxCB;
1009
+ cCheckBox zoomBoxCB;
1010
+ cCheckBox freezeCB;
1011
+ //cToggleButton trackCB;
1012
+ cCheckBox trackCB;
1013
+ cCheckBox smoothfocusCB;
8131014 // JCheckBox speakerMocapCB;
814
- JCheckBox speakerCameraCB;
815
- JCheckBox speakerFocusCB;
816
- JCheckBox debugCB;
817
- JCheckBox oeilCB;
818
- JCheckBox lookAtCB;
1015
+ cCheckBox speakerCameraCB;
1016
+ cCheckBox speakerFocusCB;
1017
+ cCheckBox debugCB;
1018
+
1019
+ cCheckBox oeilCB;
1020
+ cCheckBox shadowCB;
1021
+ cCheckBox autosaveCB;
1022
+ cCheckBox lookAtCB;
8191023
8201024 // static int COLOR = 1;
8211025 // static int MATERIAL = 2;
....@@ -823,9 +1027,9 @@
8231027
8241028 int dropAttributes = Object3D.COLOR | Object3D.MATERIAL;
8251029
826
- JCheckBox colorCB;
827
- JCheckBox materialCB;
828
- JCheckBox textureCB;
1030
+ cCheckBox colorCB;
1031
+ cCheckBox materialCB;
1032
+ cCheckBox textureCB;
8291033
8301034 public void itemStateChanged(ItemEvent e)
8311035 {
....@@ -853,6 +1057,7 @@
8531057 } else if(e.getSource() == liveCB)
8541058 {
8551059 cameraView.ToggleLive();
1060
+ refreshContents(false);
8561061 }
8571062 else if(e.getSource() == supportCB)
8581063 {
....@@ -917,6 +1122,18 @@
9171122 {
9181123 cameraView.ToggleOeil();
9191124 }
1125
+ else if(e.getSource() == shadowCB)
1126
+ {
1127
+ Globals.COMPUTESHADOWWHENLIVE ^= true;
1128
+ }
1129
+ else if(e.getSource() == freezeCB)
1130
+ {
1131
+ Globals.FREEZEONMOVE ^= true;
1132
+ }
1133
+ else if(e.getSource() == autosaveCB)
1134
+ {
1135
+ Globals.SAVEONMAKE ^= true;
1136
+ }
9201137 else if(e.getSource() == lookAtCB)
9211138 {
9221139 cameraView.ToggleLookAt();
....@@ -933,7 +1150,8 @@
9331150
9341151 /**/
9351152 //DragSource.getDefaultDragSource().startDrag(dge, DragSource.DefaultMoveNoDrop, new StringSelection("Allo"), this);
936
- TreePath path = new TreePath(objEditor.jTree.getSelectionPath().getLastPathComponent());
1153
+ //TreePath path = new TreePath(objEditor.jTree.getSelectionPath().getLastPathComponent());
1154
+ TreePath path = objEditor.jTree.getSelectionPath();
9371155 if ((path == null) || (path.getPathCount() <= 1)) {
9381156 // We can't move the root node or an empty selection
9391157 return;
....@@ -1050,23 +1268,33 @@
10501268
10511269 assert target == objEditor.jTree;
10521270 TreePath destinationPath = objEditor.jTree.getPathForLocation(objEditor.location.x, objEditor.location.y);
1271
+ Object3D destinationLeaf;
10531272 try {
1054
- Object3D dummy = (Composite) destinationPath.getLastPathComponent();
1273
+ destinationLeaf = (Composite) destinationPath.getLastPathComponent();
10551274 } catch (Exception e) {
10561275 System.out.println("destinationPath : " + destinationPath);
10571276 return;
10581277 }
10591278
1060
- if (dtde.getDropAction() == DnDConstants.ACTION_MOVE) // ?? LINK)
1279
+ for (int i=group.selection.size(); --i>=0;)
10611280 {
1281
+ Object3D child = (Object3D)group.selection.elementAt(i);
1282
+
1283
+ // Cannot move into itself
1284
+ if (child == destinationLeaf)
1285
+ return;
1286
+ }
1287
+
1288
+// june 2019 if (dtde.getDropAction() == DnDConstants.ACTION_MOVE) // ?? LINK)
1289
+// {
10621290 loadClipboard(true);
10631291 objEditor.jTree.setSelectionPath(destinationPath);
10641292 pasteInto(false, false);
1065
- } else {
1066
- loadClipboard(false);
1067
- objEditor.jTree.setSelectionPath(destinationPath);
1068
- pasteInto(false, false); // true); // ???
1069
- }
1293
+// } else {
1294
+// loadClipboard(false);
1295
+// objEditor.jTree.setSelectionPath(destinationPath);
1296
+// pasteInto(false, false); // true); // ???
1297
+// }
10701298 }
10711299 public void dropActionChanged(DropTargetDragEvent dtde)
10721300 // Called if the user has modified the current drop gesture
....@@ -1171,22 +1399,30 @@
11711399 {
11721400 //heightFieldItem = menu.add(new MenuItem("Height Field"));
11731401 //heightFieldItem.addActionListener(this);
1174
- gridItem = menu.add(new MenuItem("Grid"));
1175
- gridItem.addActionListener(this);
1176
- rectoidItem = menu.add(new MenuItem("Box"));
1177
- rectoidItem.addActionListener(this);
1178
- ellipsoidItem = menu.add(new MenuItem("Sphere"));
1179
- ellipsoidItem.addActionListener(this);
1180
- coneItem = menu.add(new MenuItem("Cone"));
1181
- coneItem.addActionListener(this);
1182
- torusItem = menu.add(new MenuItem("Torus"));
1183
- torusItem.addActionListener(this);
1184
- superItem = menu.add(new MenuItem("Superellipsoid"));
1185
- superItem.addActionListener(this);
1402
+// gridItem = menu.add(new MenuItem("Grid"));
1403
+// gridItem.addActionListener(this);
1404
+// rectoidItem = menu.add(new MenuItem("Box"));
1405
+// rectoidItem.addActionListener(this);
1406
+// ellipsoidItem = menu.add(new MenuItem("Sphere"));
1407
+// ellipsoidItem.addActionListener(this);
1408
+// coneItem = menu.add(new MenuItem("Cone"));
1409
+// coneItem.addActionListener(this);
1410
+// torusItem = menu.add(new MenuItem("Torus"));
1411
+// torusItem.addActionListener(this);
1412
+// superItem = menu.add(new MenuItem("Superellipsoid"));
1413
+// superItem.addActionListener(this);
1414
+
1415
+ cameraItem = menu.add(new MenuItem("Camera"));
1416
+ cameraItem.addActionListener(this);
1417
+
1418
+ if (!Globals.ADVANCED)
1419
+ {
11861420 kleinItem = menu.add(new MenuItem("Klein Bottle"));
11871421 kleinItem.addActionListener(this);
1188
- particleItem = menu.add(new MenuItem("Particle system"));
1189
- particleItem.addActionListener(this);
1422
+ }
1423
+
1424
+// particleItem = menu.add(new MenuItem("Particle system"));
1425
+// particleItem.addActionListener(this);
11901426 if (Globals.ADVANCED)
11911427 {
11921428 ragdollItem = menu.add(new MenuItem("Rag Walk"));
....@@ -1212,15 +1448,15 @@
12121448 }
12131449 bezierItem = menu.add(new MenuItem("Bezier Patch"));
12141450 bezierItem.addActionListener(this);
1215
- overlayItem = menu.add(new MenuItem("Overlay"));
1216
- overlayItem.addActionListener(this);
1217
- lightItem = menu.add(new MenuItem("Light"));
1218
- lightItem.addActionListener(this);
1451
+// overlayItem = menu.add(new MenuItem("Overlay"));
1452
+// overlayItem.addActionListener(this);
1453
+// lightItem = menu.add(new MenuItem("Light"));
1454
+// lightItem.addActionListener(this);
12191455 menu.add("-");
12201456 //superLoopItem = menu.add(new MenuItem("Super Loop"));
12211457 //superLoopItem.addActionListener(this);
1222
- loopItem = menu.add(new MenuItem("Loop"));
1223
- loopItem.addActionListener(this);
1458
+// loopItem = menu.add(new MenuItem("Loop"));
1459
+// loopItem.addActionListener(this);
12241460 doubleItem = menu.add(new MenuItem("Fork"));
12251461 doubleItem.addActionListener(this);
12261462 if (Globals.ADVANCED)
....@@ -1260,7 +1496,7 @@
12601496 memoryItem.addActionListener(this);
12611497 menu.add(analyzeItem = new MenuItem("Analyze"));
12621498 analyzeItem.addActionListener(this);
1263
- menu.add(dumpItem = new MenuItem("Dump"));
1499
+ menu.add(dumpItem = new MenuItem("Print"));
12641500 dumpItem.addActionListener(this);
12651501 // menu.add(pathItem = new MenuItem("From-to path"));
12661502 // pathItem.addActionListener(this);
....@@ -1401,9 +1637,24 @@
14011637 shadow.material = new cMaterial(obj.material);
14021638 shadow.material.diffuse = 0.0001f;
14031639 shadow.material.specular = 0.0001f;
1640
+ //shadow.projectedVertices[1].x = 300;
14041641
14051642 makeSomething(shadow);
14061643 }
1644
+
1645
+ private void ClearUnpinned()
1646
+ {
1647
+ //for (Object3D obj : listUI)
1648
+ for (int i=listUI.size(); --i>=0;)
1649
+ {
1650
+ Object3D obj = listUI.elementAt(i);
1651
+ if (!obj.pinned)
1652
+ {
1653
+ obj.CloseUI();
1654
+ listUI.remove(i);
1655
+ }
1656
+ }
1657
+ }
14071658
14081659 /**
14091660 * applyExample
....@@ -1648,7 +1899,7 @@
16481899 {
16491900 ScreenFit();
16501901 } else
1651
- if (source == switchItem)
1902
+ if (source == switchViewItem)
16521903 {
16531904 cVector v1 = new cVector();
16541905 cVector v2 = new cVector();
....@@ -1657,11 +1908,11 @@
16571908 objEditor.cameraView.renderCamera.setAim(v2, v1);
16581909 objEditor.cameraView.repaint();
16591910 } else
1660
- if (source == rectoidItem)
1911
+ if (source == rectoidItem || source == boxButton)
16611912 {
16621913 makeSomething(new Box());
16631914 } else
1664
- if (source == particleItem)
1915
+ if (source == particleItem || source == particlesButton)
16651916 {
16661917 ParticleNode particleGeom = new ParticleNode("Particles", 1000); //, particleType);
16671918 ParticleController particleController = new ParticleController(particleGeom);
....@@ -1740,27 +1991,27 @@
17401991
17411992 makeSomething(obj);
17421993 } else
1743
- if (source == gridItem)
1994
+ if (source == gridItem || source == gridButton)
17441995 {
17451996 makeSomething(new Grid());
17461997 } else
1747
- if (source == ellipsoidItem)
1998
+ if (source == ellipsoidItem || source == sphereButton)
17481999 {
17492000 makeSomething(new Sphere());
17502001 } else
1751
- if (source == coneItem)
2002
+ if (source == coneItem || source == coneButton)
17522003 {
17532004 makeSomething(new Cone());
17542005 } else
1755
- if (source == torusItem)
2006
+ if (source == torusItem || source == torusButton)
17562007 {
17572008 makeSomething(new Torus());
17582009 } else
1759
- if (source == superItem)
2010
+ if (source == superItem || source == superButton)
17602011 {
17612012 makeSomething(new Superellipsoid());
17622013 } else
1763
- if (source == kleinItem)
2014
+ if (source == kleinItem || source == kleinButton)
17642015 {
17652016 makeSomething(new Klein());
17662017 } else
....@@ -1780,7 +2031,7 @@
17802031 {
17812032 makeSomething(new BezierSurface());
17822033 } else
1783
- if (source == overlayItem)
2034
+ if (source == overlayItem || source == overlayButton)
17842035 {
17852036 /*
17862037 Object3D obj = new BezierSurface(5,8);
....@@ -1828,7 +2079,7 @@
18282079 s.setup();
18292080 makeSomething(s);
18302081 } else
1831
- if (source == lightItem)
2082
+ if (source == lightItem || source == lightButton)
18322083 {
18332084 makeSomething(new Light());
18342085 } else
....@@ -1878,30 +2129,30 @@
18782129
18792130 group(g);
18802131 } else
1881
- if (source == loopItem)
2132
+ if (source == loopItem || source == loopButton)
18822133 {
18832134 Composite csg = new GroupLeaf();
18842135 csg.count = 5;
18852136 group(csg);
1886
- Composite child = new cGroup();
2137
+ Composite child = new cGroup("Branch");
18872138 csg.addChild(child);
18882139 child.addChild(csg);
18892140 } else
18902141 if (source == doubleItem)
18912142 {
1892
- Composite csg = new GroupLeaf();
2143
+ Composite csg = new GroupLeaf("Fork");
18932144 csg.count = 5;
18942145 group(csg);
1895
- Composite child = new cGroup();
2146
+ Composite child = new cGroup("Branch A");
18962147 csg.addChild(child);
18972148 child.addChild(csg);
1898
- child = new cGroup();
2149
+ child = new cGroup("Branch B");
18992150 csg.addChild(child);
19002151 child.addChild(csg);
19012152 } else
19022153 if (source == tripleItem)
19032154 {
1904
- Composite csg = new GroupLeaf();
2155
+ Composite csg = new GroupLeaf("Trident");
19052156 csg.count = 4;
19062157 group(csg);
19072158 Composite child = new cGroup();
....@@ -1950,6 +2201,30 @@
19502201 if (source == dumpItem)
19512202 {
19522203 DumpObject();
2204
+ } else
2205
+ if (source == minButton)
2206
+ {
2207
+ Minimize();
2208
+ } else
2209
+ if (source == maxButton)
2210
+ {
2211
+ Maximize();
2212
+ } else
2213
+ if (source == fullButton)
2214
+ {
2215
+ ToggleFullScreen();
2216
+ } else
2217
+ if (source == undoButton)
2218
+ {
2219
+ Undo();
2220
+ } else
2221
+ if (source == redoButton)
2222
+ {
2223
+ Redo();
2224
+ } else
2225
+ if (source == saveButton)
2226
+ {
2227
+ Save();
19532228 } else
19542229 if (source == oneStepButton)
19552230 {
....@@ -2004,6 +2279,14 @@
20042279 if (source == cutItem || source == clearButton)
20052280 {
20062281 loadClipboard(true);
2282
+ } else
2283
+ if (source == undoItem)
2284
+ {
2285
+ Undo();
2286
+ } else
2287
+ if (source == redoItem)
2288
+ {
2289
+ Redo();
20072290 } else
20082291 if (source == duplicateItem)
20092292 {
....@@ -2336,9 +2619,9 @@
23362619 {
23372620 ClearSelection(true);
23382621 } else
2339
- if (source == grabItem)
2622
+ if (source == grabItem || source == groupButton)
23402623 {
2341
- group(new cGroup(), true);
2624
+ group(new cGroup(), false); // true);
23422625 } else
23432626 if (source == hideItem)
23442627 {
....@@ -2356,11 +2639,11 @@
23562639 {
23572640 makeSomething(new Camera());
23582641 } else
2359
- if (source == compositeItem)
2642
+ if (source == compositeItem || source == compositeButton)
23602643 {
23612644 group(new Composite());
23622645 } else
2363
- if (source == randomItem)
2646
+ if (source == switchItem || source == switchButton)
23642647 {
23652648 RandomNode random = new RandomNode();
23662649 group(random);
....@@ -2462,7 +2745,7 @@
24622745 {
24632746 group(new cLinker());
24642747 } else
2465
- if (source == textureItem)
2748
+ if (source == textureItem || source == textureButton)
24662749 {
24672750 group(new TextureNode());
24682751 } else
....@@ -2482,17 +2765,30 @@
24822765 {
24832766 CastShadow(2);
24842767 } else
2485
- if (source == ungroupItem)
2768
+ if (source == ungroupItem || source == ungroupButton)
24862769 {
2487
- //ungroup();
2770
+ boolean hasRoot = false;
2771
+
24882772 for (int i=0; i<group.selection.size(); i++)
24892773 {
2490
- Ungroup(group.selection.get(i));
2774
+ if (group.selection.get(i) == group)
2775
+ {
2776
+ hasRoot = true;
2777
+ break;
2778
+ }
24912779 }
24922780
2493
- ClearSelection(false);
2494
-
2495
- refreshContents();
2781
+ if (!hasRoot)
2782
+ {
2783
+ for (int i=0; i<group.selection.size(); i++)
2784
+ {
2785
+ Ungroup(group.selection.get(i));
2786
+ }
2787
+
2788
+ ClearSelection(false);
2789
+
2790
+ refreshContents();
2791
+ }
24962792 } else
24972793 if (source == genUVItem)
24982794 {
....@@ -2504,7 +2800,7 @@
25042800 } else
25052801 if (source == genNormalsMESHItem)
25062802 {
2507
- GenNormals(true); // TODO
2803
+ GenNormalsMESH();
25082804 } else
25092805 if (source == genNormalsORGANItem)
25102806 {
....@@ -2569,6 +2865,22 @@
25692865 if (source == unmarkleavesItem)
25702866 {
25712867 MarkLeaves(false);
2868
+ } else
2869
+ if (source == rewindleavesItem)
2870
+ {
2871
+ RewindLeaves(true);
2872
+ } else
2873
+ if (source == unrewindleavesItem)
2874
+ {
2875
+ RewindLeaves(false);
2876
+ } else
2877
+ if (source == randomleavesItem)
2878
+ {
2879
+ RandomLeaves(true);
2880
+ } else
2881
+ if (source == unrandomleavesItem)
2882
+ {
2883
+ RandomLeaves(false);
25722884 } else
25732885 if (source == flipVItem)
25742886 {
....@@ -2804,6 +3116,10 @@
28043116 if (source == twoButton)
28053117 {
28063118 radio.layout = twoButton;
3119
+
3120
+ if (CameraPane.FULLSCREEN)
3121
+ fullscreenLayout = radio.layout;
3122
+
28073123 // bug
28083124 //gridPanel.setDividerLocation(1.0);
28093125 //bigPanel.setDividerLocation(0.0);
....@@ -2836,10 +3152,31 @@
28363152 bigThree.ClearUI();
28373153 bigThree.add(centralPanel);
28383154 bigThree.FlushUI();
3155
+
3156
+ cameraView.requestFocusInWindow();
3157
+
3158
+// refreshContents(true);
3159
+//
3160
+// try
3161
+// {
3162
+// java.awt.Robot bot = new java.awt.Robot();
3163
+// int mask = InputEvent.BUTTON1_MASK;
3164
+// bot.mouseMove(100, 100);
3165
+// bot.mousePress(mask);
3166
+// bot.mouseRelease(mask);
3167
+// }
3168
+// catch (Exception e)
3169
+// {
3170
+//
3171
+// }
3172
+
28393173 } else
28403174 if (source == threeButton)
28413175 {
28423176 radio.layout = threeButton;
3177
+
3178
+ if (CameraPane.FULLSCREEN)
3179
+ fullscreenLayout = radio.layout;
28433180
28443181 // bigThree.remove(scenePanel);
28453182 // bigThree.remove(centralPanel);
....@@ -2872,10 +3209,15 @@
28723209 bigThree.add(centralPanel);
28733210 bigThree.add(XYZPanel);
28743211 bigThree.FlushUI();
3212
+
3213
+ cameraView.requestFocusInWindow();
28753214 } else
28763215 if (source == fourButton)
28773216 {
28783217 radio.layout = fourButton;
3218
+
3219
+ if (CameraPane.FULLSCREEN)
3220
+ fullscreenLayout = radio.layout;
28793221
28803222 // bigThree.remove(scenePanel);
28813223 // bigThree.remove(centralPanel);
....@@ -2907,10 +3249,15 @@
29073249 bigThree.ClearUI();
29083250 bigThree.add(scenePanel);
29093251 bigThree.FlushUI();
3252
+
3253
+ cameraView.requestFocusInWindow();
29103254 } else
29113255 if (source == sixButton)
29123256 {
29133257 radio.layout = sixButton;
3258
+
3259
+ if (CameraPane.FULLSCREEN)
3260
+ fullscreenLayout = radio.layout;
29143261
29153262 // bigThree.remove(scenePanel);
29163263 // bigThree.remove(centralPanel);
....@@ -2943,10 +3290,15 @@
29433290 bigThree.add(scenePanel);
29443291 bigThree.add(centralPanel);
29453292 bigThree.FlushUI();
3293
+
3294
+ cameraView.requestFocusInWindow();
29463295 } else
29473296 if (source == sevenButton)
29483297 {
29493298 radio.layout = sevenButton;
3299
+
3300
+ if (CameraPane.FULLSCREEN)
3301
+ fullscreenLayout = radio.layout;
29503302
29513303 // bigThree.remove(scenePanel);
29523304 // bigThree.remove(centralPanel);
....@@ -2980,6 +3332,8 @@
29803332 bigThree.add(centralPanel);
29813333 bigThree.add(XYZPanel);
29823334 bigThree.FlushUI();
3335
+
3336
+ cameraView.requestFocusInWindow();
29833337 } else
29843338 if (source == rootButton)
29853339 {
....@@ -2991,6 +3345,7 @@
29913345 EditObject(obj);
29923346 }
29933347
3348
+ cameraView.requestFocusInWindow();
29943349 refreshContents(true);
29953350 } else
29963351 if (source == closeButton)
....@@ -3000,22 +3355,37 @@
30003355 for (Enumeration e = buttonGroup.getElements(); e.hasMoreElements();)
30013356 {
30023357 ab = (cRadio)e.nextElement();
3003
- if(ab.getModel().isSelected() && ab.GetObject() != client)
3358
+ if (ab.getModel().isSelected() && ab.GetObject() != client)
30043359 {
3360
+ // Patch to avoid bug with transparency.
3361
+ if (!ab.hadMaterial)
3362
+ {
3363
+ ab.object.material = null;
3364
+ }
3365
+
30053366 buttonGroup.remove(ab);
30063367 radioPanel.remove(ab);
30073368
3008
- ab.GetObject().editWindow = null;
3369
+ //ab.GetObject().editWindow = null;
3370
+ ab.GetObject().manipWindow = null;
30093371 // ab.GetObject().objectUI = null; // ?????????
30103372
30113373 ((cRadio)radioPanel.getComponent(radioPanel.getComponentCount() - 1)).doClick();
30123374 break;
30133375 }
30143376 }
3377
+
3378
+ cameraView.requestFocusInWindow();
30153379 refreshContents(true);
30163380 } else
30173381 if (source == editItem || source == editButton)
30183382 {
3383
+ for (Enumeration e = group.selection.elements(); e.hasMoreElements();)
3384
+ {
3385
+ Object3D child = (Object3D)e.nextElement();
3386
+ child.pinned = true;
3387
+ }
3388
+
30193389 EditSelection(false);
30203390 } else
30213391 if (source == uneditButton)
....@@ -3025,10 +3395,11 @@
30253395 Object3D child = (Object3D)e.nextElement();
30263396 if(child.editWindow != null)
30273397 objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit"));
3398
+ child.pinned = false;
30283399 child.CloseUI();
30293400 listUI.remove(child);
30303401
3031
- child.editWindow = null; // ???????????
3402
+ //child.editWindow = null; // ???????????
30323403 }
30333404 objEditor.ctrlPanel.FlushUI();
30343405 //objEditor.jTree.clearSelection();
....@@ -3041,6 +3412,7 @@
30413412 //copy.ClearUI();
30423413 for (Object3D obj : listUI)
30433414 {
3415
+ obj.pinned = false;
30443416 obj.CloseUI();
30453417 }
30463418 listUI.clear();
....@@ -3050,7 +3422,7 @@
30503422 {
30513423 assert(copy == group);
30523424
3053
- objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit"));
3425
+ //objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit"));
30543426
30553427 for (Object3D obj : listUI)
30563428 {
....@@ -3115,7 +3487,9 @@
31153487 sideView.object = group;
31163488 }
31173489
3118
-// fix "+" issue group.editWindow = this;
3490
+// fix "+" issue
3491
+ //group.editWindow = this;
3492
+ group.manipWindow = this;
31193493
31203494 /*
31213495 currentLayout = radio.layout;
....@@ -3123,18 +3497,25 @@
31233497 currentLayout = sevenButton;
31243498 */
31253499 radio.layout.doClick();
3500
+
3501
+ ClearUnpinned();
3502
+ SetPinStates(group.selection.size() > 0);
3503
+ if (group.selection.size() == 1)
3504
+ EditSelection(false);
31263505 keepparent = group.parent;
31273506 // PARENT = NULL or not???
31283507 //group.parent = null; // ROOT
31293508 //group.attributes = -1;
31303509 ResetModel();
3510
+
3511
+ cameraView.requestFocusInWindow();
31313512 refreshContents(true);
31323513 } else if (event.getSource() == editCameraItem)
31333514 {
31343515 cameraView.ProtectCamera();
31353516 cameraView.repaint();
31363517 return;
3137
- } else if (event.getSource() == revertCameraItem)
3518
+ } else if (event.getSource() == restoreCameraItem || event.getSource() == restoreCameraButton)
31383519 {
31393520 cameraView.RevertCamera();
31403521 cameraView.repaint();
....@@ -3151,7 +3532,6 @@
31513532 }
31523533
31533534 boolean useclient = false;
3154
- cRadio radio;
31553535
31563536 void ToggleRoot()
31573537 {
....@@ -3390,7 +3770,8 @@
33903770
33913771 int size = obj.MemorySize();
33923772
3393
- System.err.println((size/1024) + " KB is the size of " + obj);
3773
+ //System.err.println((size/1024) + " KB is the size of " + obj);
3774
+ System.err.println("the size of " + obj + " is " + size + " (" + (size/1024) + "KB)");
33943775 }
33953776 }
33963777 catch (Exception e)
....@@ -3471,6 +3852,13 @@
34713852 void GenNormals(boolean crease)
34723853 {
34733854 group.GenNormalsS(crease);
3855
+
3856
+ refreshContents();
3857
+ }
3858
+
3859
+ void GenNormalsMESH()
3860
+ {
3861
+ group.GenNormalsMeshS();
34743862
34753863 refreshContents();
34763864 }
....@@ -4098,6 +4486,18 @@
40984486 refreshContents();
40994487 }
41004488
4489
+ void RewindLeaves(boolean hide)
4490
+ {
4491
+ group.selection.RewindLeaves(hide);
4492
+ refreshContents();
4493
+ }
4494
+
4495
+ void RandomLeaves(boolean hide)
4496
+ {
4497
+ group.selection.RandomLeaves(hide);
4498
+ refreshContents();
4499
+ }
4500
+
41014501 void SetTexRes(int tr)
41024502 {
41034503 group.selection.SetTexRes(tr);
....@@ -4169,10 +4569,6 @@
41694569 // }
41704570 // }
41714571
4172
- static boolean allparams = true;
4173
-
4174
- static Vector<Object3D> listUI = new Vector<Object3D>();
4175
-
41764572 void EditSelection(boolean newWindow)
41774573 {
41784574 // aConstraints.gridy = 0;
....@@ -4180,7 +4576,7 @@
41804576 {
41814577 //System.out.println("edit : " + objectPanel.indexOfTab("Material"));
41824578 //objectPanel.setEnabledAt(objectPanel.indexOfTab("Material"), false);
4183
- objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit"));
4579
+ //objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit"));
41844580
41854581 Object3D elem = (Object3D)group.selection.elementAt(i);
41864582 if(elem != group || !newWindow)
....@@ -4265,7 +4661,8 @@
42654661 //new Exception().printStackTrace();
42664662
42674663 freezemodel = true;
4268
-
4664
+ ClearUnpinned();
4665
+
42694666 /**/
42704667 //switch (event.id)
42714668 {
....@@ -4273,7 +4670,6 @@
42734670 //case 702: // Event.LIST_DESELECT
42744671 group.deselectAll();
42754672 TreePath tps[] = objEditor.jTree.getSelectionPaths();
4276
- objEditor.ClearInfo(); // .GetMaterial());
42774673 if (tps != null)
42784674 {
42794675 for (int i=0; i < tps.length; i++)
....@@ -4282,10 +4678,8 @@
42824678
42834679 //if (child.parent != null)
42844680 //child.parent.addSelectee(child);
4681
+ objEditor.SetMaterial(child);
42854682 group.addSelectee(child);
4286
- objEditor.SetMaterial(child); // .GetMaterial());
4287
- objEditor.AddInfo(child, this, true); // .GetMaterial());
4288
- System.err.println("info : " + child.GetPath());
42894683 }
42904684 }
42914685 // else
....@@ -4295,20 +4689,28 @@
42954689 // System.err.println("info : " + group.GetPath());
42964690 // }
42974691
4298
- objEditor.SetText(); // jan 2014
4299
-
4300
- if (flashIt && !Globals.isLIVE() && tps != null && tps.length > 0 && !(((Object3D) tps[0].getLastPathComponent()) instanceof Camera))
4692
+ if (flashIt && !Globals.isLIVE() && tps != null && tps.length > 0 && !(tps[0].getLastPathComponent() instanceof Camera))
43014693 CameraPane.flash = true;
43024694
4303
- if (tps != null && tps.length > 0 && ((Object3D) tps[0].getLastPathComponent()) instanceof Camera)
4695
+ if (tps != null && tps.length > 0 && tps[0].getLastPathComponent() instanceof Camera)
43044696 // a camera
43054697 {
4306
- CameraPane.camerachangeframe = 0; // don't refuse it
4307
- Globals.theRenderer.SetCamera((Camera) tps[0].getLastPathComponent());
4698
+ if (tps[0].getLastPathComponent() != Globals.theRenderer.LightCamera()) // Crash the camera because of invalid lightspace
4699
+ {
4700
+ CameraPane.camerachangeframe = 0; // don't refuse it
4701
+ Globals.theRenderer.SetCamera((Camera) tps[0].getLastPathComponent());
4702
+ }
43084703 // Globals.theRenderer.renderCamera = Globals.theRenderer.manipCamera;
43094704 // Globals.theRenderer.eyeCamera = Globals.theRenderer.manipCamera;
43104705 }
43114706
4707
+ if (tps != null && tps.length == 1)
4708
+ {
4709
+ EditSelection(false);
4710
+ }
4711
+
4712
+ SetPinStates(tps != null && tps.length > 0);
4713
+
43124714 refreshContents();
43134715 //return true;
43144716 }
....@@ -4317,6 +4719,35 @@
43174719
43184720 freezemodel = false;
43194721 }
4722
+
4723
+ void SetPinStates(boolean enabled)
4724
+ {
4725
+ editButton.setEnabled(enabled);
4726
+ uneditButton.setEnabled(enabled);
4727
+ unselectButton.setEnabled(enabled);
4728
+ flashSelectionButton.setEnabled(enabled);
4729
+ }
4730
+
4731
+ void refreshContents(boolean cp)
4732
+ {
4733
+ if (objectPanel.getSelectedIndex() == objectPanel.indexOfTab("Info"))
4734
+ if (!Globals.MOUSEDRAGGED) // && !Globals.TIMERRUNNING)
4735
+ {
4736
+ objEditor.ClearInfo(); // .GetMaterial());
4737
+
4738
+ for (int i=0; i < group.selection.Size(); i++)
4739
+ {
4740
+ Object3D child = (Object3D) group.selection.get(i);
4741
+
4742
+ objEditor.AddInfo(child, this, true);
4743
+ System.err.println("info : " + child.GetPath());
4744
+ }
4745
+
4746
+ objEditor.SetText(); // jan 2014
4747
+ }
4748
+
4749
+ super.refreshContents(cp);
4750
+ }
43204751
43214752 void linkSomething(Object3D thing)
43224753 {
....@@ -4388,6 +4819,7 @@
43884819 {
43894820 if (group.selection.isEmpty())
43904821 return;
4822
+
43914823 Grafreed.clipboardIsTempGroup = false;
43924824 Composite tGroup = null;
43934825 if (group.selection.size() > 0) // 1)
....@@ -4398,6 +4830,8 @@
43984830
43994831 if (cut)
44004832 {
4833
+ if (Globals.SAVEONMAKE)
4834
+ Save();
44014835 //int indices[] = jList.getSelectedIndices();
44024836 //for (int i = indices.length - 1; i >= 0; i--)
44034837 //jList.remove(indices[i]);
....@@ -4487,8 +4921,10 @@
44874921 }
44884922
44894923 }
4924
+
44904925 if (Grafreed.clipboardIsTempGroup)
44914926 Grafreed.clipboard = tGroup;
4927
+
44924928 if (cut)
44934929 {
44944930 ResetModel();
....@@ -5113,7 +5549,28 @@
51135549 cButton clearpanelButton;
51145550 cButton unselectButton;
51155551
5552
+ cButton restoreCameraButton;
5553
+
5554
+ cButton saveButton;
51165555 cButton oneStepButton;
5556
+
5557
+ cButton groupButton;
5558
+ cButton ungroupButton;
5559
+ cButton compositeButton;
5560
+ cButton switchButton;
5561
+ cButton loopButton;
5562
+ cButton textureButton;
5563
+
5564
+ cButton gridButton;
5565
+ cButton boxButton;
5566
+ cButton sphereButton;
5567
+ cButton coneButton;
5568
+ cButton torusButton;
5569
+ cButton superButton;
5570
+ cButton kleinButton;
5571
+ cButton particlesButton;
5572
+ cButton overlayButton;
5573
+ cButton lightButton;
51175574
51185575 cButton screenfitButton;
51195576 cButton screenfitpointButton;
....@@ -5126,14 +5583,6 @@
51265583
51275584 cButton setsupportButton;
51285585
5129
- cButton twoButton;
5130
- cButton sixButton;
5131
- cButton threeButton;
5132
- cButton sevenButton;
5133
- cButton fourButton; // full panel
5134
- cButton oneButton; // full XYZ
5135
- //cButton currentLayout;
5136
-
51375586 //
51385587 //Composite
51395588 Object3D // to do !!
....@@ -5143,9 +5592,11 @@
51435592 //JTree jTree;
51445593 private MenuItem lookAtItem;
51455594 private MenuItem lookFromItem;
5146
- private MenuItem switchItem;
5595
+ private MenuItem switchViewItem;
51475596 private MenuItem cutItem;
5148
- private MenuItem duplicateItem;
5597
+ private MenuItem undoItem;
5598
+ private MenuItem redoItem;
5599
+ private JMenuItem duplicateItem;
51495600 private MenuItem cloneItem;
51505601 private MenuItem cloneSupportItem;
51515602 private MenuItem overwriteGeoItem;
....@@ -5208,6 +5659,10 @@
52085659 private MenuItem showleavesItem;
52095660 private MenuItem markleavesItem;
52105661 private MenuItem unmarkleavesItem;
5662
+ private MenuItem rewindleavesItem;
5663
+ private MenuItem unrewindleavesItem;
5664
+ private MenuItem randomleavesItem;
5665
+ private MenuItem unrandomleavesItem;
52115666
52125667 private MenuItem flipVItem;
52135668 private MenuItem unflipVItem;
....@@ -5229,7 +5684,7 @@
52295684 private MenuItem frontItem;
52305685 private MenuItem cameraItem;
52315686 private MenuItem compositeItem;
5232
- private MenuItem randomItem;
5687
+ private MenuItem switchItem;
52335688 private MenuItem physicsItem;
52345689 private MenuItem frameselectorItem;
52355690 private MenuItem scriptNodeItem;
....@@ -5303,5 +5758,5 @@
53035758
53045759 Menu cameraMenu;
53055760 MenuItem editCameraItem;
5306
- MenuItem revertCameraItem;
5761
+ MenuItem restoreCameraItem;
53075762 }