Normand Briere
2019-06-29 a69bb4474a3264a9a7a7f8b8d8154ea771f167c8
GroupEditor.java
....@@ -74,7 +74,7 @@
7474 this.copy = this.group = copy;
7575 //selectees = this.group.selectees;
7676
77
- SetupMenu2(objEditor);
77
+ SetupMenu2(this); //objEditor);
7878 SetupUI2(objEditor);
7979 objEditor.SetupUI(true);
8080 SetupViews(objEditor);
....@@ -148,28 +148,21 @@
148148
149149 //JTextField nameField;
150150
151
- void SetupMenu2(ObjEditor oe)
151
+ void SetupMenu2(GroupEditor oe)
152152 {
153
- if (Globals.ADVANCED)
154
- {
155
- oe.cameraMenu.add(lookAtItem = new MenuItem("Set Interest"));
156
- //cameraMenu.add(lookFromItem = new MenuItem("Look From Selection"));
157
- //cameraMenu.add(switchItem = new MenuItem("Reverse View"));
158
- editLeafItem = oe.cameraMenu.add(new MenuItem("Edit Leaf"));
159
- oe.cameraMenu.add("-");
160
- openWindowItem = oe.cameraMenu.add(new MenuItem("Edit copy..."));
161
- openWindowItem.addActionListener(this);
162
- editLeafItem.addActionListener(this);
163
- lookAtItem.addActionListener(this);
164
- //lookFromItem.addActinoListener(this);
165
- //switchItem.addActionListener(this);
166
- }
167
-
153
+ oe.jTree = new cTree();
154
+
168155 Menu menu;
169156 oe.menuBar.add(menu = new Menu("Edit"));
170157 //editItem = menu.add(new MenuItem("Edit"));
171158 //editItem.addActionListener(this);
172
- 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"));
173166 duplicateItem.addActionListener(this);
174167 cloneItem = menu.add(new MenuItem("Clone"));
175168 cloneItem.addActionListener(this);
....@@ -185,7 +178,6 @@
185178 copyItem.addActionListener(this);
186179 pasteItem = menu.add(new MenuItem("Paste"));
187180 pasteItem.addActionListener(this);
188
- menu.add("-");
189181
190182 menu.add("-");
191183 pasteIntoItem = menu.add(new MenuItem("Paste into"));
....@@ -206,14 +198,97 @@
206198 clearAllItem = menu.add(new MenuItem("Clear All"));
207199 clearAllItem.addActionListener(this);
208200 }
201
+
202
+ menuBar.add(cameraMenu = new Menu("View"));
203
+ //cameraMenu.add(zBufferItem = new CheckboxMenuItem("Z Buffer"));
204
+ //zBufferItem.addActionListener(this);
205
+ //cameraMenu.add(normalLensItem = new MenuItem("Normal Lens"));
206
+ //normalLensItem.addActionListener(this);
207
+ cameraMenu.add(restoreCameraItem = new MenuItem("Restore Viewpoint"));
208
+ restoreCameraItem.addActionListener(this);
209
+
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);
222
+
223
+ cameraMenu.add(toggleHandleItem = new CheckboxMenuItem("Show Handles"));
224
+ toggleHandleItem.addItemListener(this);
225
+ toggleHandleItem.setState(CameraPane.HANDLES);
226
+
227
+ cameraMenu.add(togglePaintItem = new CheckboxMenuItem("Paint mode"));
228
+ togglePaintItem.addItemListener(this);
229
+ togglePaintItem.setState(CameraPane.PAINTMODE);
230
+
231
+ if (Globals.ADVANCED)
232
+ {
233
+ cameraMenu.add("-");
234
+ cameraMenu.add(toggleLiveItem = new CheckboxMenuItem("Live"));
235
+ toggleLiveItem.addItemListener(this);
236
+ toggleLiveItem.setState(Globals.isLIVE());
209237
238
+ cameraMenu.add(stepItem = new MenuItem("Step"));
239
+ stepItem.addActionListener(this);
240
+ // cameraMenu.add(toggleDLItem = new CheckboxMenuItem("Display List"));
241
+ // toggleDLItem.addItemListener(this);
242
+ // toggleDLItem.setState(false);
243
+
244
+ cameraMenu.add(toggleRenderItem = new CheckboxMenuItem("Render"));
245
+ toggleRenderItem.addItemListener(this);
246
+ toggleRenderItem.setState(!CameraPane.frozen);
247
+
248
+ cameraMenu.add(toggleDebugItem = new CheckboxMenuItem("Debug"));
249
+ toggleDebugItem.addItemListener(this);
250
+ toggleDebugItem.setState(Globals.DEBUG);
251
+
252
+ cameraMenu.add(toggleFrustumItem = new CheckboxMenuItem("Frustum"));
253
+ toggleFrustumItem.addItemListener(this);
254
+ toggleFrustumItem.setState(CameraPane.FRUSTUM);
255
+
256
+ cameraMenu.add(toggleFootContactItem = new CheckboxMenuItem("Foot contact"));
257
+ toggleFootContactItem.addItemListener(this);
258
+ toggleFootContactItem.setState(CameraPane.FOOTCONTACT);
259
+
260
+ cameraMenu.add(toggleTimelineItem = new CheckboxMenuItem("Timeline"));
261
+ toggleTimelineItem.addItemListener(this);
262
+ }
263
+
264
+// cameraMenu.add(toggleRootItem = new CheckboxMenuItem("Alternate Root"));
265
+// toggleRootItem.addItemListener(this);
266
+// toggleRootItem.setState(false);
267
+// cameraMenu.add(animationItem = new CheckboxMenuItem("Animation"));
268
+// animationItem.addItemListener(this);
269
+// animationItem.setState(CameraPane.ANIMATION);
270
+ cameraMenu.add("-");
271
+ cameraMenu.add(editCameraItem = new MenuItem("Save Viewpoint"));
272
+ editCameraItem.addActionListener(this);
273
+
274
+ if (Globals.ADVANCED)
275
+ {
276
+ oe.cameraMenu.add(lookAtItem = new MenuItem("Set Interest"));
277
+ //cameraMenu.add(lookFromItem = new MenuItem("Look From Selection"));
278
+ //cameraMenu.add(switchViewItem = new MenuItem("Reverse View"));
279
+ editLeafItem = oe.cameraMenu.add(new MenuItem("Edit Leaf"));
280
+ oe.cameraMenu.add("-");
281
+ openWindowItem = oe.cameraMenu.add(new MenuItem("Edit copy..."));
282
+ openWindowItem.addActionListener(this);
283
+ editLeafItem.addActionListener(this);
284
+ lookAtItem.addActionListener(this);
285
+ //lookFromItem.addActinoListener(this);
286
+ //switchViewItem.addActionListener(this);
287
+ }
288
+
210289 oe.menuBar.add(menu = new Menu("Setting"));
211290 if (Globals.ADVANCED)
212291 {
213
- resetMeshItem = menu.add(new MenuItem("Reset All"));
214
- resetMeshItem.addActionListener(this);
215
- stepAllItem = menu.add(new MenuItem("Step All"));
216
- stepAllItem.addActionListener(this);
217292 revertMeshItem = menu.add(new MenuItem("Revert Meshes"));
218293 revertMeshItem.addActionListener(this);
219294 resetreferencesItem = menu.add(new MenuItem("Reset Mesh References"));
....@@ -253,21 +328,29 @@
253328 }
254329
255330 oe.menuBar.add(menu = new Menu("Group"));
256
- grabItem = menu.add(new MenuItem("Grab"));
257
- grabItem.addActionListener(this);
331
+// grabItem = menu.add(new MenuItem("Grab"));
332
+// grabItem.addActionListener(this);
258333 backItem = menu.add(new MenuItem("Back"));
259334 backItem.addActionListener(this);
260335 frontItem = menu.add(new MenuItem("Front"));
261336 frontItem.addActionListener(this);
262
- compositeItem = menu.add(new MenuItem("Composite"));
263
- compositeItem.addActionListener(this);
337
+// compositeItem = menu.add(new MenuItem("Composite"));
338
+// compositeItem.addActionListener(this);
339
+
340
+ if (Globals.ADVANCED)
341
+ {
264342 hideItem = menu.add(new MenuItem("Hidden Group"));
265343 hideItem.addActionListener(this);
344
+ }
266345 ungroupItem = menu.add(new MenuItem("Ungroup"));
267346 ungroupItem.addActionListener(this);
268
- menu.add("-");
269
- randomItem = menu.add(new MenuItem("Switch node"));
270
- 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
+ {
271354 switchGeoItem = menu.add(new MenuItem("Switch Geometry"));
272355 switchGeoItem.addActionListener(this);
273356 switchTransfoItem = menu.add(new MenuItem("Switch Transform"));
....@@ -275,8 +358,6 @@
275358 morphItem = menu.add(new MenuItem("Morph Group"));
276359 morphItem.addActionListener(this);
277360
278
- if (Globals.ADVANCED)
279
- {
280361 menu.add("-");
281362 physicsItem = menu.add(new MenuItem("Physics"));
282363 physicsItem.addActionListener(this);
....@@ -284,22 +365,20 @@
284365 frameselectorItem.addActionListener(this);
285366 scriptNodeItem = menu.add(new MenuItem("Script Node"));
286367 scriptNodeItem.addActionListener(this);
287
- cameraItem = menu.add(new MenuItem("Camera"));
288
- cameraItem.addActionListener(this);
289368 }
290369
291370 oe.menuBar.add(menu = new Menu("Object"));
292
- textureItem = menu.add(new MenuItem("Texture"));
293
- textureItem.addActionListener(this);
371
+// textureItem = menu.add(new MenuItem("Texture"));
372
+// textureItem.addActionListener(this);
294373 billboardItem = menu.add(new MenuItem("Billboard"));
295374 billboardItem.addActionListener(this);
296375 csgItem = menu.add(new MenuItem("CSG"));
297376 csgItem.addActionListener(this);
298
- shadowXItem = menu.add(new MenuItem("Shadow X"));
377
+ shadowXItem = menu.add(new MenuItem("Shadow Red"));
299378 shadowXItem.addActionListener(this);
300
- shadowYItem = menu.add(new MenuItem("Shadow Y"));
379
+ shadowYItem = menu.add(new MenuItem("Shadow Green"));
301380 shadowYItem.addActionListener(this);
302
- shadowZItem = menu.add(new MenuItem("Shadow Z"));
381
+ shadowZItem = menu.add(new MenuItem("Shadow Blue"));
303382 shadowZItem.addActionListener(this);
304383 if (Globals.ADVANCED)
305384 {
....@@ -318,8 +397,12 @@
318397 resetTransformItem.addActionListener(this);
319398 resetCentroidItem = menu.add(new MenuItem("Reset Centroid"));
320399 resetCentroidItem.addActionListener(this);
321
- transformgeometryItem = menu.add(new MenuItem("Transform Geometry"));
322
- transformgeometryItem.addActionListener(this);
400
+ resetCentroidXZItem = menu.add(new MenuItem("Reset Centroid XY"));
401
+ resetCentroidXZItem.addActionListener(this);
402
+ transformGeometryItem = menu.add(new MenuItem("Transform Geometry"));
403
+ transformGeometryItem.addActionListener(this);
404
+ transformChildrenItem = menu.add(new MenuItem("Transform Children"));
405
+ transformChildrenItem.addActionListener(this);
323406
324407 oe.menuBar.add(menu = new Menu("Geometry"));
325408 genUVItem = menu.add(new MenuItem("Generate UV"));
....@@ -368,6 +451,10 @@
368451 oe.menuBar.add(menu = new Menu("Attributes"));
369452 clearMaterialsItem = menu.add(new MenuItem("Clear Materials"));
370453 clearMaterialsItem.addActionListener(this);
454
+ resetAllItem = menu.add(new MenuItem("Reset All"));
455
+ resetAllItem.addActionListener(this);
456
+ stepAllItem = menu.add(new MenuItem("Step All"));
457
+ stepAllItem.addActionListener(this);
371458 menu.add("-");
372459 liveleavesItem = menu.add(new MenuItem("Live Leaves"));
373460 liveleavesItem.addActionListener(this);
....@@ -388,6 +475,14 @@
388475 markleavesItem.addActionListener(this);
389476 unmarkleavesItem = menu.add(new MenuItem("Unmark Leaves"));
390477 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);
391486 menu.add("-");
392487 flipVItem = menu.add(new MenuItem("Flip V"));
393488 flipVItem.addActionListener(this);
....@@ -422,41 +517,41 @@
422517 sortbysizeItem.addActionListener(this);
423518 sortbynameItem = menu.add(new MenuItem("Sort by name"));
424519 sortbynameItem.addActionListener(this);
520
+ menu.add("-");
521
+ shareGeometriesItem = menu.add(new MenuItem("Share Geometries"));
522
+ shareGeometriesItem.addActionListener(this);
523
+ mergeGeometriesItem = menu.add(new MenuItem("Merge Geometries"));
524
+ mergeGeometriesItem.addActionListener(this);
425525 if (Globals.ADVANCED)
426526 {
427
- menu.add("-");
527
+ // Pretty much the same as duplicate and clone.
428528 extractGeometriesItem = menu.add(new MenuItem("Link Geometry"));
429529 extractGeometriesItem.addActionListener(this);
430530 cloneGeometriesItem = menu.add(new MenuItem("Clone Geometry"));
431531 cloneGeometriesItem.addActionListener(this);
432
- shareGeometriesItem = menu.add(new MenuItem("Share Geometry"));
433
- shareGeometriesItem.addActionListener(this);
434
- mergeGeometriesItem = menu.add(new MenuItem("Merge Geometry"));
435
- mergeGeometriesItem.addActionListener(this);
436532 }
437533
438534 oe.menuBar.add(menu = new Menu("Insert"));
439535 buildCreateMenu(menu);
440536
441
- oe.menuBar.add(menu = new Menu("Include"));
442
- importOBJItem = menu.add(new MenuItem("OBJ file..."));
443
- importOBJItem.addActionListener(this);
444
- menu.add("-");
445
- import3DSItem = menu.add(new MenuItem("3DS file..."));
446
- import3DSItem.addActionListener(this);
447
- menu.add("-");
448
- importVRMLX3DItem = menu.add(new MenuItem("VRML/X3D file..."));
449
- importVRMLX3DItem.addActionListener(this);
450
- menu.add("-");
451
- importGFDItem = menu.add(new MenuItem("GrafreeD file..."));
452
- importGFDItem.addActionListener(this);
453
-
454537 oe.menuBar.add(menu = new Menu("Tools"));
455538 buildToolsMenu(menu);
456539 }
457540
458541 void SetupUI2(ObjEditor oe)
459542 {
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
+
460555 //new Exception().printStackTrace();
461556
462557 oe.radioPanel = new JPanel(new GridBagLayout());
....@@ -485,27 +580,63 @@
485580 oe.radioPanel.add(dummyButton);
486581 oe.buttonGroup.add(dummyButton);
487582 */
583
+ cGridBag copyOptionsPanel = new cGridBag();
584
+
585
+ copyOptionsPanel.preferredHeight = 1;
586
+
488587 //this.AddOptions(oe.toolbarPanel, oe.aConstraints);
489588
490
- oe.toolbarPanel.add(liveCB = new cCheckBox("Live", Globals.isLIVE())); //, oe.aConstraints);
491
- liveCB.setToolTipText("Enabled animation");
589
+ //oe.toolbarPanel.add(minButton = new cButton("Min", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
590
+ //minButton.setToolTipText("Minimize window");
591
+ //minButton.addActionListener(this);
592
+
593
+ oe.toolbarPanel.add(maxButton = GetButton("icons/add-128.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
594
+ maxButton.setToolTipText("Maximize window");
595
+ maxButton.addActionListener(this);
596
+
597
+ oe.toolbarPanel.add(fullButton = GetButton("icons/fullscreen.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
598
+ fullButton.setToolTipText("Full-screen window");
599
+ fullButton.addActionListener(this);
600
+
601
+ oe.toolbarPanel.add(restoreCameraButton = GetButton("icons/eye.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
602
+ restoreCameraButton.setToolTipText("Restore viewpoint");
603
+ restoreCameraButton.addActionListener(this);
604
+
605
+ copyOptionsPanel.add(undoButton = GetButton("icons/undo.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
606
+ undoButton.setToolTipText("Undo changes");
607
+ undoButton.addActionListener(this);
608
+ undoButton.setEnabled(false);
609
+
610
+ copyOptionsPanel.add(redoButton = GetButton("icons/redo.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
611
+ redoButton.setToolTipText("Redo changes");
612
+ redoButton.addActionListener(this);
613
+ redoButton.setEnabled(false);
614
+
615
+ copyOptionsPanel.add(saveButton = GetButton("icons/down_arrow.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
616
+ saveButton.setToolTipText("Save changes");
617
+ saveButton.addActionListener(this);
618
+
619
+ copyOptionsPanel.add(liveCB = GetToggleButton("icons/run.png", Globals.isLIVE())); //, oe.aConstraints);
620
+ liveCB.setToolTipText("Enable animation");
492621 liveCB.addItemListener(this);
493622
494
- oe.toolbarPanel.add(oneStepButton = new cButton("Step", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
623
+ copyOptionsPanel.add(oneStepButton = GetButton("icons/step.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
495624 oneStepButton.setToolTipText("Animate one step forward");
496625 oneStepButton.addActionListener(this);
497626
498
- oe.toolbarPanel.add(fastCB = new cCheckBox("Fast", CameraPane.FAST)); //, constraints);
627
+ copyOptionsPanel.add(fastCB = GetToggleButton("icons/runfast.png", CameraPane.FAST)); //, constraints);
499628 fastCB.setToolTipText("Fast mode");
500629 fastCB.addItemListener(this);
501630
502
- oe.toolbarPanel.add(trackCB = new cCheckBox("Track", CameraPane.TRACK)); //, oe.aConstraints);
503
- trackCB.setToolTipText("Enable tracking");
504
- trackCB.addItemListener(this);
505
-
506
- oe.toolbarPanel.add(screenfitButton = new cButton("@", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
631
+ //oe.toolboxPanel.Return();
632
+
633
+ copyOptionsPanel.add(screenfitButton = GetButton("icons/fit.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
507634 screenfitButton.setToolTipText("Screen fit");
508635 screenfitButton.addActionListener(this);
636
+
637
+// copyOptionsPanel.add(trackCB = GetToggleButton("icons/track.png", CameraPane.TRACK)); //, oe.aConstraints);
638
+// trackCB.setToolTipText("Enable tracking");
639
+// trackCB.addItemListener(this);
509640
510641 // oe.toolbarPanel.add(screenfitpointButton = new cButton(" @+ ")); //, oe.aConstraints);
511642 // screenfitpointButton.addActionListener(this);
....@@ -517,65 +648,145 @@
517648 snapobjectButton.setToolTipText("Snap Object");
518649 }
519650
520
- oe.toolbarPanel.add(flashSelectionButton = new cButton("?", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
521
- flashSelectionButton.setToolTipText("Show selection");
522
- flashSelectionButton.addActionListener(this);
651
+ //oe.toolbarPanel.add(new JSeparator(SwingConstants.VERTICAL));
523652
524
- oe.toolbarPanel.add(new JSeparator(SwingConstants.VERTICAL));
525
-
526
- oe.toolbarPanel.add(twoButton = new cButton("|+|", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
653
+ oe.toolbarPanel.add(twoButton = new cButton("|-|", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
527654 twoButton.setToolTipText("Show center view only");
528655 twoButton.addActionListener(this);
529
- oe.toolbarPanel.add(fourButton = new cButton("+||", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
656
+ this.fullscreenLayout = twoButton;
657
+
658
+ oe.toolbarPanel.add(fourButton = new cButton("-||", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
530659 fourButton.addActionListener(this);
531660 fourButton.setToolTipText("Show left panel only");
532
- oe.toolbarPanel.add(sixButton = new cButton("+|+|", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
661
+ oe.toolbarPanel.add(sixButton = new cButton("-|-|", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
533662 sixButton.setToolTipText("2-column layout left");
534663 sixButton.addActionListener(this);
535
- oe.toolbarPanel.add(threeButton = new cButton("|+|+", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
664
+ oe.toolbarPanel.add(threeButton = new cButton("|-|-", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
536665 threeButton.setToolTipText("2-column layout right");
537666 threeButton.addActionListener(this);
538
- oe.toolbarPanel.add(sevenButton = new cButton("+|+|+", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
667
+ oe.toolbarPanel.add(sevenButton = new cButton("-|-|-", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
539668 sevenButton.setToolTipText("3-column layout");
540669 sevenButton.addActionListener(this);
541670 //
542671
543
- oe.toolbarPanel.add(rootButton = new cButton("o o o", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
672
+ oe.toolbarPanel.add(rootButton = GetButton("icons/write.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
544673 rootButton.setToolTipText("Edit selection in new tab");
545674 rootButton.addActionListener(this);
546675
547
- oe.toolbarPanel.add(closeButton = new cButton("X", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
676
+ oe.toolbarPanel.add(closeButton = GetButton("icons/close-icon.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
548677 closeButton.setToolTipText("Close tab");
549678 closeButton.addActionListener(this);
550679 //oe.treePanel.add(clearButton = new cButton("X"), oe.aConstraints);
551680 //clearButton.addActionListener(this);
552
-
553
- cGridBag commandsPanel = new cGridBag();
681
+
682
+ // INSERT
683
+ oe.toolboxPanel.add(gridButton = GetButton("icons/grid.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
684
+ gridButton.setToolTipText("Create grid");
685
+ gridButton.addActionListener(this);
686
+
687
+ oe.toolboxPanel.add(boxButton = GetButton("icons/box.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
688
+ boxButton.setToolTipText("Create box");
689
+ boxButton.addActionListener(this);
690
+
691
+ oe.toolboxPanel.add(sphereButton = GetButton("icons/sphere.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
692
+ sphereButton.setToolTipText("Create sphere");
693
+ sphereButton.addActionListener(this);
694
+
695
+ oe.toolboxPanel.add(coneButton = GetButton("icons/cone.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
696
+ coneButton.setToolTipText("Create cone");
697
+ coneButton.addActionListener(this);
698
+
699
+ oe.toolboxPanel.add(torusButton = GetButton("icons/torus.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
700
+ torusButton.setToolTipText("Create torus");
701
+ torusButton.addActionListener(this);
702
+
703
+ oe.toolboxPanel.add(superButton = GetButton("icons/super.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
704
+ superButton.setToolTipText("Create superellipsoid");
705
+ superButton.addActionListener(this);
706
+
707
+ if (Globals.ADVANCED)
708
+ {
709
+ oe.toolboxPanel.add(kleinButton = GetButton("icons/klein.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
710
+ kleinButton.setToolTipText("Create Klein bottle");
711
+ kleinButton.addActionListener(this);
712
+ }
554713
555
- commandsPanel.add(editButton = new cButton("+", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
556
- editButton.setToolTipText("Edit selection");
714
+ oe.toolboxPanel.add(particlesButton = GetButton("icons/particles.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
715
+ particlesButton.setToolTipText("Create particle system");
716
+ particlesButton.addActionListener(this);
717
+
718
+ oe.toolboxPanel.Return();
719
+
720
+ oe.toolboxPanel.add(groupButton = GetButton("icons/group.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
721
+ groupButton.setToolTipText("Create group");
722
+ groupButton.addActionListener(this);
723
+
724
+ oe.toolboxPanel.add(compositeButton = GetButton("icons/composite.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
725
+ compositeButton.setToolTipText("Create composite");
726
+ compositeButton.addActionListener(this);
727
+
728
+ oe.toolboxPanel.add(switchButton = GetButton("icons/switch.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
729
+ switchButton.setToolTipText("Create item switcher");
730
+ switchButton.addActionListener(this);
731
+
732
+ oe.toolboxPanel.add(loopButton = GetButton("icons/loop.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
733
+ loopButton.setToolTipText("Create loop");
734
+ loopButton.addActionListener(this);
735
+
736
+ oe.toolboxPanel.add(textureButton = GetButton("icons/texture.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
737
+ textureButton.setToolTipText("Create texture");
738
+ textureButton.addActionListener(this);
739
+
740
+ oe.toolboxPanel.add(overlayButton = GetButton("icons/overlay.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
741
+ overlayButton.setToolTipText("Create overlay");
742
+ overlayButton.addActionListener(this);
743
+
744
+ oe.toolboxPanel.add(lightButton = GetButton("icons/light-bulb.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
745
+ lightButton.setToolTipText("Create light");
746
+ lightButton.addActionListener(this);
747
+
748
+ for (int i=6; --i>=0;)
749
+ {
750
+ oe.toolboxPanel.Return();
751
+ oe.toolboxPanel.add(new cGridBag());
752
+ oe.toolboxPanel.add(new cGridBag());
753
+ oe.toolboxPanel.add(new cGridBag());
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
+ }
759
+
760
+ // EDIT panel
761
+ editCommandsPanel.add(editButton = GetButton("icons/controls.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
762
+ editButton.setToolTipText("Pin selection controls");
557763 editButton.addActionListener(this);
558764
559
- commandsPanel.add(uneditButton = new cButton("-", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
560
- uneditButton.setToolTipText("Unedit selection");
765
+ editCommandsPanel.add(uneditButton = GetButton("icons/remove.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
766
+ uneditButton.setToolTipText("Remove selection controls");
561767 uneditButton.addActionListener(this);
562768
563
- commandsPanel.add(allParamsButton = new JCheckBox("All", allparams)); //, oe.aConstraints);
564
- allParamsButton.setToolTipText("Edit all params");
769
+ editCommandsPanel.add(allParamsButton = new JCheckBox("All", allparams)); //, oe.aConstraints);
770
+ allParamsButton.setToolTipText("Show all controle");
565771 allParamsButton.addActionListener(this);
566772
567
- commandsPanel.add(clearPanelButton = new cButton("C", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
773
+ editCommandsPanel.add(clearPanelButton = new cButton("C", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
568774 clearPanelButton.setToolTipText("Clear edit panel");
569775 clearPanelButton.addActionListener(this);
570776
571
- commandsPanel.add(unselectButton = new cButton("U", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
777
+ editCommandsPanel.add(unselectButton = new cButton("U", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
572778 unselectButton.setToolTipText("Unselect");
573779 unselectButton.addActionListener(this);
574780
575
- commandsPanel.preferredHeight = 1;
781
+ editCommandsPanel.add(flashSelectionButton = GetButton("icons/flash-light.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
782
+ flashSelectionButton.setToolTipText("Highlight selection");
783
+ flashSelectionButton.addActionListener(this);
576784
577
- oe.treePanel.add(commandsPanel);
578
- oe.treePanel.Return();
785
+ editCommandsPanel.preferredHeight = 1;
786
+
787
+ SetPinStates(false);
788
+// oe.treePanel.add(commandsPanel);
789
+// oe.treePanel.Return();
579790
580791 // oe.aConstraints.gridx += 1;
581792 // oe.aConstraints.weighty = 0;
....@@ -592,27 +803,12 @@
592803
593804 JScrollPane jSP;
594805 //ctrlPanel.add(new JScrollPane(jTree = new cTree(new cTreeModel(this))), aConstraints);
595
- jSPPanel.add(jSP = new JScrollPane(oe.jTree = new cTree(null))); //, oe.aConstraints);
806
+ jSPPanel.add(jSP = new JScrollPane(oe.jTree)); //, oe.aConstraints);
596807 ResetModel();
597808
598809 oe.treePanel.add(jSPPanel);
599810 oe.treePanel.Return();
600811
601
- cGridBag copyOptionsPanel = new cGridBag();
602
-
603
- copyOptionsPanel.add(colorCB = new cCheckBox("Color", (dropAttributes&Object3D.COLOR)!=0)); //, oe.aConstraints);
604
- colorCB.setToolTipText("Copy color when dropped");
605
- colorCB.addItemListener(this);
606
-
607
- copyOptionsPanel.add(materialCB = new cCheckBox("Material", (dropAttributes&Object3D.MATERIAL)!=0)); //, oe.aConstraints);
608
- materialCB.setToolTipText("Copy material when dropped");
609
- materialCB.addItemListener(this);
610
-
611
- copyOptionsPanel.add(textureCB = new cCheckBox("Texture", (dropAttributes&Object3D.TEXTURE)!=0)); //, oe.aConstraints);
612
- textureCB.setToolTipText("Copy texture when dropped");
613
- textureCB.addItemListener(this);
614
-
615
- copyOptionsPanel.preferredHeight = 1;
616812 oe.treePanel.add(copyOptionsPanel);
617813 oe.treePanel.Return();
618814
....@@ -643,23 +839,43 @@
643839
644840 void AddOptions(cGridBag panel) //, GridBagConstraints constraints)
645841 {
842
+ panel.add(colorCB = new cCheckBox("Color", (dropAttributes&Object3D.COLOR)!=0)); //, oe.aConstraints);
843
+ colorCB.setToolTipText("Copy color when dropped");
844
+ colorCB.addItemListener(this);
845
+
846
+ panel.add(materialCB = new cCheckBox("Material", (dropAttributes&Object3D.MATERIAL)!=0)); //, oe.aConstraints);
847
+ materialCB.setToolTipText("Copy material when dropped");
848
+ materialCB.addItemListener(this);
849
+
850
+ panel.add(textureCB = new cCheckBox("Texture", (dropAttributes&Object3D.TEXTURE)!=0)); //, oe.aConstraints);
851
+ textureCB.setToolTipText("Copy texture when dropped");
852
+ textureCB.addItemListener(this);
853
+
854
+ panel.Return();
855
+
646856 panel.add(boxCB = new cCheckBox("Box", CameraPane.BOXMODE)); //, constraints);
647857 boxCB.setToolTipText("Display bounding boxes");
648858 boxCB.addItemListener(this);
649859
650860 panel.add(zoomBoxCB = new cCheckBox("Zoom", CameraPane.ZOOMBOXMODE)); //, constraints);
651
- zoomBoxCB.setToolTipText("Display bounding boxes when moving the wheel");
861
+ zoomBoxCB.setToolTipText("Display only for wheel");
652862 zoomBoxCB.addItemListener(this);
653863
654
- if (Globals.ADVANCED)
864
+ if (true) // Globals.ADVANCED)
655865 {
656
- panel.add(supportCB = new cCheckBox("Support", CameraPane.SUPPORT)); //, constraints);
657
- supportCB.setToolTipText("Enable rigging");
658
- supportCB.addItemListener(this);
866
+// panel.add(supportCB = new cCheckBox("Support", CameraPane.SUPPORT)); //, constraints);
867
+// supportCB.setToolTipText("Enable rigging");
868
+// supportCB.addItemListener(this);
869
+
870
+ panel.add(freezeCB = new cCheckBox("Freeze", Globals.FREEZEONMOVE)); //, constraints);
871
+ freezeCB.setToolTipText("Fast moving camera");
872
+ freezeCB.addItemListener(this);
659873
660874 // panel.add(localCB = new cCheckBox("Local", CameraPane.LOCALTRANSFORM), constraints);
661875 // localCB.addItemListener(this);
662876
877
+ panel.Return();
878
+
663879 panel.add(crowdCB = new cCheckBox("Crowd", Globals.CROWD)); //, constraints);
664880 crowdCB.setToolTipText("Used for crowds");
665881 crowdCB.addItemListener(this);
....@@ -676,6 +892,8 @@
676892 // panel.add(speakerMocapCB = new cCheckBox("Mocap", CameraPane.SPEAKERMOCAP), constraints);
677893 // speakerMocapCB.addItemListener(this);
678894
895
+ panel.Return();
896
+
679897 if (false)
680898 {
681899 // handled in scripts
....@@ -690,32 +908,72 @@
690908 //constraints.gridy += 1;
691909 panel.add(smoothfocusCB = new cCheckBox("Smooth", CameraPane.SMOOTHFOCUS)); //, constraints);
692910 smoothfocusCB.addItemListener(this);
911
+ panel.Return();
693912 }
694913
695914 //constraints.gridx += 1;
696915 //panel.add(debugCB = new cCheckBox("Debug", CameraPane.DEBUG), constraints);
697916 // debugCB.addItemListener(this);
698917
918
+ panel.add(trackCB = new cCheckBox("Track", CameraPane.TRACK)); //, oe.aConstraints);
919
+ trackCB.setToolTipText("Enable tracking target");
920
+ trackCB.addItemListener(this);
921
+
699922 panel.add(oeilCB = new cCheckBox("Eye", CameraPane.OEIL)); //, constraints);
923
+ oeilCB.setToolTipText("Move camera when tracking");
700924 oeilCB.addItemListener(this);
701925
926
+ panel.add(shadowCB = new cCheckBox("Shadow", Globals.COMPUTESHADOWWHENLIVE)); //, constraints);
927
+ shadowCB.setToolTipText("When live compute shadows");
928
+ shadowCB.addItemListener(this);
929
+
930
+ panel.Return();
931
+ panel.add(toggleTextureCB = new cCheckBox("Textures", CameraPane.textureon)); //, constraints);
932
+ toggleTextureCB.setToolTipText("Load textures");
933
+ toggleTextureCB.addItemListener(this);
934
+
935
+ panel.add(toggleSwitchCB = new cCheckBox("Switch", CameraPane.SWITCH)); //, constraints);
936
+ toggleSwitchCB.setToolTipText("Choose a single item");
937
+ toggleSwitchCB.addItemListener(this);
938
+
939
+ panel.add(autosaveCB = new cCheckBox("Auto-save", Globals.SAVEONMAKE)); //, constraints);
940
+ autosaveCB.setToolTipText("On structure change");
941
+ autosaveCB.addItemListener(this);
942
+
943
+ panel.Return();
944
+ if (Globals.ADVANCED)
945
+ {
702946 panel.add(lookAtCB = new cCheckBox("Target", CameraPane.LOOKAT)); //, constraints);
703947 lookAtCB.setToolTipText("Look-at target");
704948 lookAtCB.addItemListener(this);
949
+ }
705950
706951 }
707952
708953 cGridBag fill = new cGridBag();
709
-
710954 fill.preferredHeight = 200;
955
+ cGridBag fill2 = new cGridBag();
956
+ fill2.preferredHeight = 200;
957
+ cGridBag fill3 = new cGridBag();
958
+ fill3.preferredHeight = 200;
711959
712960 panel.add(fill);
961
+ panel.add(fill2);
962
+ panel.add(fill3);
713963
714964 }
715965
716966 void EditObject(Object3D obj)
717967 {
718968 cRadio radioButton = new cRadio(obj.name);
969
+
970
+ // Patch to avoid bug with transparency.
971
+ radioButton.hadMaterial = obj.material != null;
972
+ if (!radioButton.hadMaterial)
973
+ {
974
+ obj.material = new cMaterial();
975
+ }
976
+
719977 radioButton.SetObject(obj);
720978 radioButton.layout = sevenButton;
721979 radioButton.SetCamera(cameraView.renderCamera, false);
....@@ -724,8 +982,11 @@
724982 buttonGroup.add(radioButton);
725983 radioButton.doClick();
726984 }
985
+
727986 void SetupViews(ObjEditor oe)
728987 {
988
+ theFrame = this;
989
+
729990 oe.SetupViews();
730991
731992 System.out.println("SetupViews");
....@@ -734,23 +995,28 @@
734995 /*DropTarget dropTarget =*/ new DropTarget(oe.cameraView, this);
735996 }
736997
737
- JCheckBox liveCB;
738
- JCheckBox supportCB;
739
- JCheckBox localCB;
740
- JCheckBox crowdCB;
741
- JCheckBox smoothCB;
742
- JCheckBox fastCB;
743
- JCheckBox slowCB;
744
- JCheckBox boxCB;
745
- JCheckBox zoomBoxCB;
746
- JCheckBox trackCB;
747
- JCheckBox smoothfocusCB;
998
+ cToggleButton liveCB;
999
+ cCheckBox supportCB;
1000
+ cCheckBox localCB;
1001
+ cCheckBox crowdCB;
1002
+ cCheckBox smoothCB;
1003
+ cToggleButton fastCB;
1004
+ cCheckBox slowCB;
1005
+ cCheckBox boxCB;
1006
+ cCheckBox zoomBoxCB;
1007
+ cCheckBox freezeCB;
1008
+ //cToggleButton trackCB;
1009
+ cCheckBox trackCB;
1010
+ cCheckBox smoothfocusCB;
7481011 // JCheckBox speakerMocapCB;
749
- JCheckBox speakerCameraCB;
750
- JCheckBox speakerFocusCB;
751
- JCheckBox debugCB;
752
- JCheckBox oeilCB;
753
- JCheckBox lookAtCB;
1012
+ cCheckBox speakerCameraCB;
1013
+ cCheckBox speakerFocusCB;
1014
+ cCheckBox debugCB;
1015
+
1016
+ cCheckBox oeilCB;
1017
+ cCheckBox shadowCB;
1018
+ cCheckBox autosaveCB;
1019
+ cCheckBox lookAtCB;
7541020
7551021 // static int COLOR = 1;
7561022 // static int MATERIAL = 2;
....@@ -758,9 +1024,9 @@
7581024
7591025 int dropAttributes = Object3D.COLOR | Object3D.MATERIAL;
7601026
761
- JCheckBox colorCB;
762
- JCheckBox materialCB;
763
- JCheckBox textureCB;
1027
+ cCheckBox colorCB;
1028
+ cCheckBox materialCB;
1029
+ cCheckBox textureCB;
7641030
7651031 public void itemStateChanged(ItemEvent e)
7661032 {
....@@ -788,6 +1054,7 @@
7881054 } else if(e.getSource() == liveCB)
7891055 {
7901056 cameraView.ToggleLive();
1057
+ refreshContents(false);
7911058 }
7921059 else if(e.getSource() == supportCB)
7931060 {
....@@ -852,6 +1119,18 @@
8521119 {
8531120 cameraView.ToggleOeil();
8541121 }
1122
+ else if(e.getSource() == shadowCB)
1123
+ {
1124
+ Globals.COMPUTESHADOWWHENLIVE ^= true;
1125
+ }
1126
+ else if(e.getSource() == freezeCB)
1127
+ {
1128
+ Globals.FREEZEONMOVE ^= true;
1129
+ }
1130
+ else if(e.getSource() == autosaveCB)
1131
+ {
1132
+ Globals.SAVEONMAKE ^= true;
1133
+ }
8551134 else if(e.getSource() == lookAtCB)
8561135 {
8571136 cameraView.ToggleLookAt();
....@@ -868,7 +1147,8 @@
8681147
8691148 /**/
8701149 //DragSource.getDefaultDragSource().startDrag(dge, DragSource.DefaultMoveNoDrop, new StringSelection("Allo"), this);
871
- TreePath path = new TreePath(objEditor.jTree.getSelectionPath().getLastPathComponent());
1150
+ //TreePath path = new TreePath(objEditor.jTree.getSelectionPath().getLastPathComponent());
1151
+ TreePath path = objEditor.jTree.getSelectionPath();
8721152 if ((path == null) || (path.getPathCount() <= 1)) {
8731153 // We can't move the root node or an empty selection
8741154 return;
....@@ -985,23 +1265,33 @@
9851265
9861266 assert target == objEditor.jTree;
9871267 TreePath destinationPath = objEditor.jTree.getPathForLocation(objEditor.location.x, objEditor.location.y);
1268
+ Object3D destinationLeaf;
9881269 try {
989
- Object3D dummy = (Composite) destinationPath.getLastPathComponent();
1270
+ destinationLeaf = (Composite) destinationPath.getLastPathComponent();
9901271 } catch (Exception e) {
9911272 System.out.println("destinationPath : " + destinationPath);
9921273 return;
9931274 }
9941275
995
- if (dtde.getDropAction() == DnDConstants.ACTION_MOVE) // ?? LINK)
1276
+ for (int i=group.selection.size(); --i>=0;)
9961277 {
1278
+ Object3D child = (Object3D)group.selection.elementAt(i);
1279
+
1280
+ // Cannot move into itself
1281
+ if (child == destinationLeaf)
1282
+ return;
1283
+ }
1284
+
1285
+// june 2019 if (dtde.getDropAction() == DnDConstants.ACTION_MOVE) // ?? LINK)
1286
+// {
9971287 loadClipboard(true);
9981288 objEditor.jTree.setSelectionPath(destinationPath);
9991289 pasteInto(false, false);
1000
- } else {
1001
- loadClipboard(false);
1002
- objEditor.jTree.setSelectionPath(destinationPath);
1003
- pasteInto(false, false); // true); // ???
1004
- }
1290
+// } else {
1291
+// loadClipboard(false);
1292
+// objEditor.jTree.setSelectionPath(destinationPath);
1293
+// pasteInto(false, false); // true); // ???
1294
+// }
10051295 }
10061296 public void dropActionChanged(DropTargetDragEvent dtde)
10071297 // Called if the user has modified the current drop gesture
....@@ -1106,22 +1396,30 @@
11061396 {
11071397 //heightFieldItem = menu.add(new MenuItem("Height Field"));
11081398 //heightFieldItem.addActionListener(this);
1109
- gridItem = menu.add(new MenuItem("Grid"));
1110
- gridItem.addActionListener(this);
1111
- rectoidItem = menu.add(new MenuItem("Box"));
1112
- rectoidItem.addActionListener(this);
1113
- ellipsoidItem = menu.add(new MenuItem("Sphere"));
1114
- ellipsoidItem.addActionListener(this);
1115
- coneItem = menu.add(new MenuItem("Cone"));
1116
- coneItem.addActionListener(this);
1117
- torusItem = menu.add(new MenuItem("Torus"));
1118
- torusItem.addActionListener(this);
1119
- superItem = menu.add(new MenuItem("Superellipsoid"));
1120
- superItem.addActionListener(this);
1399
+// gridItem = menu.add(new MenuItem("Grid"));
1400
+// gridItem.addActionListener(this);
1401
+// rectoidItem = menu.add(new MenuItem("Box"));
1402
+// rectoidItem.addActionListener(this);
1403
+// ellipsoidItem = menu.add(new MenuItem("Sphere"));
1404
+// ellipsoidItem.addActionListener(this);
1405
+// coneItem = menu.add(new MenuItem("Cone"));
1406
+// coneItem.addActionListener(this);
1407
+// torusItem = menu.add(new MenuItem("Torus"));
1408
+// torusItem.addActionListener(this);
1409
+// superItem = menu.add(new MenuItem("Superellipsoid"));
1410
+// superItem.addActionListener(this);
1411
+
1412
+ cameraItem = menu.add(new MenuItem("Camera"));
1413
+ cameraItem.addActionListener(this);
1414
+
1415
+ if (!Globals.ADVANCED)
1416
+ {
11211417 kleinItem = menu.add(new MenuItem("Klein Bottle"));
11221418 kleinItem.addActionListener(this);
1123
- particleItem = menu.add(new MenuItem("Particle system"));
1124
- particleItem.addActionListener(this);
1419
+ }
1420
+
1421
+// particleItem = menu.add(new MenuItem("Particle system"));
1422
+// particleItem.addActionListener(this);
11251423 if (Globals.ADVANCED)
11261424 {
11271425 ragdollItem = menu.add(new MenuItem("Rag Walk"));
....@@ -1147,15 +1445,15 @@
11471445 }
11481446 bezierItem = menu.add(new MenuItem("Bezier Patch"));
11491447 bezierItem.addActionListener(this);
1150
- overlayItem = menu.add(new MenuItem("Overlay"));
1151
- overlayItem.addActionListener(this);
1152
- lightItem = menu.add(new MenuItem("Light"));
1153
- lightItem.addActionListener(this);
1448
+// overlayItem = menu.add(new MenuItem("Overlay"));
1449
+// overlayItem.addActionListener(this);
1450
+// lightItem = menu.add(new MenuItem("Light"));
1451
+// lightItem.addActionListener(this);
11541452 menu.add("-");
11551453 //superLoopItem = menu.add(new MenuItem("Super Loop"));
11561454 //superLoopItem.addActionListener(this);
1157
- loopItem = menu.add(new MenuItem("Loop"));
1158
- loopItem.addActionListener(this);
1455
+// loopItem = menu.add(new MenuItem("Loop"));
1456
+// loopItem.addActionListener(this);
11591457 doubleItem = menu.add(new MenuItem("Fork"));
11601458 doubleItem.addActionListener(this);
11611459 if (Globals.ADVANCED)
....@@ -1195,7 +1493,7 @@
11951493 memoryItem.addActionListener(this);
11961494 menu.add(analyzeItem = new MenuItem("Analyze"));
11971495 analyzeItem.addActionListener(this);
1198
- menu.add(dumpItem = new MenuItem("Dump"));
1496
+ menu.add(dumpItem = new MenuItem("Print"));
11991497 dumpItem.addActionListener(this);
12001498 // menu.add(pathItem = new MenuItem("From-to path"));
12011499 // pathItem.addActionListener(this);
....@@ -1336,9 +1634,24 @@
13361634 shadow.material = new cMaterial(obj.material);
13371635 shadow.material.diffuse = 0.0001f;
13381636 shadow.material.specular = 0.0001f;
1637
+ //shadow.projectedVertices[1].x = 300;
13391638
13401639 makeSomething(shadow);
13411640 }
1641
+
1642
+ private void ClearUnpinned()
1643
+ {
1644
+ //for (Object3D obj : listUI)
1645
+ for (int i=listUI.size(); --i>=0;)
1646
+ {
1647
+ Object3D obj = listUI.elementAt(i);
1648
+ if (!obj.pinned)
1649
+ {
1650
+ obj.CloseUI();
1651
+ listUI.remove(i);
1652
+ }
1653
+ }
1654
+ }
13421655
13431656 /**
13441657 * applyExample
....@@ -1583,7 +1896,7 @@
15831896 {
15841897 ScreenFit();
15851898 } else
1586
- if (source == switchItem)
1899
+ if (source == switchViewItem)
15871900 {
15881901 cVector v1 = new cVector();
15891902 cVector v2 = new cVector();
....@@ -1592,11 +1905,11 @@
15921905 objEditor.cameraView.renderCamera.setAim(v2, v1);
15931906 objEditor.cameraView.repaint();
15941907 } else
1595
- if (source == rectoidItem)
1908
+ if (source == rectoidItem || source == boxButton)
15961909 {
15971910 makeSomething(new Box());
15981911 } else
1599
- if (source == particleItem)
1912
+ if (source == particleItem || source == particlesButton)
16001913 {
16011914 ParticleNode particleGeom = new ParticleNode("Particles", 1000); //, particleType);
16021915 ParticleController particleController = new ParticleController(particleGeom);
....@@ -1675,27 +1988,27 @@
16751988
16761989 makeSomething(obj);
16771990 } else
1678
- if (source == gridItem)
1991
+ if (source == gridItem || source == gridButton)
16791992 {
16801993 makeSomething(new Grid());
16811994 } else
1682
- if (source == ellipsoidItem)
1995
+ if (source == ellipsoidItem || source == sphereButton)
16831996 {
16841997 makeSomething(new Sphere());
16851998 } else
1686
- if (source == coneItem)
1999
+ if (source == coneItem || source == coneButton)
16872000 {
16882001 makeSomething(new Cone());
16892002 } else
1690
- if (source == torusItem)
2003
+ if (source == torusItem || source == torusButton)
16912004 {
16922005 makeSomething(new Torus());
16932006 } else
1694
- if (source == superItem)
2007
+ if (source == superItem || source == superButton)
16952008 {
16962009 makeSomething(new Superellipsoid());
16972010 } else
1698
- if (source == kleinItem)
2011
+ if (source == kleinItem || source == kleinButton)
16992012 {
17002013 makeSomething(new Klein());
17012014 } else
....@@ -1715,7 +2028,7 @@
17152028 {
17162029 makeSomething(new BezierSurface());
17172030 } else
1718
- if (source == overlayItem)
2031
+ if (source == overlayItem || source == overlayButton)
17192032 {
17202033 /*
17212034 Object3D obj = new BezierSurface(5,8);
....@@ -1763,7 +2076,7 @@
17632076 s.setup();
17642077 makeSomething(s);
17652078 } else
1766
- if (source == lightItem)
2079
+ if (source == lightItem || source == lightButton)
17672080 {
17682081 makeSomething(new Light());
17692082 } else
....@@ -1813,30 +2126,30 @@
18132126
18142127 group(g);
18152128 } else
1816
- if (source == loopItem)
2129
+ if (source == loopItem || source == loopButton)
18172130 {
18182131 Composite csg = new GroupLeaf();
18192132 csg.count = 5;
18202133 group(csg);
1821
- Composite child = new cGroup();
2134
+ Composite child = new cGroup("Branch");
18222135 csg.addChild(child);
18232136 child.addChild(csg);
18242137 } else
18252138 if (source == doubleItem)
18262139 {
1827
- Composite csg = new GroupLeaf();
2140
+ Composite csg = new GroupLeaf("Fork");
18282141 csg.count = 5;
18292142 group(csg);
1830
- Composite child = new cGroup();
2143
+ Composite child = new cGroup("Branch A");
18312144 csg.addChild(child);
18322145 child.addChild(csg);
1833
- child = new cGroup();
2146
+ child = new cGroup("Branch B");
18342147 csg.addChild(child);
18352148 child.addChild(csg);
18362149 } else
18372150 if (source == tripleItem)
18382151 {
1839
- Composite csg = new GroupLeaf();
2152
+ Composite csg = new GroupLeaf("Trident");
18402153 csg.count = 4;
18412154 group(csg);
18422155 Composite child = new cGroup();
....@@ -1848,31 +2161,6 @@
18482161 child = new cGroup();
18492162 csg.addChild(child);
18502163 child.addChild(csg);
1851
- } else
1852
-
1853
- if (source == importGFDItem)
1854
- {
1855
- ImportGFD();
1856
- } else
1857
- if (source == importVRMLX3DItem)
1858
- {
1859
- ImportVRMLX3D();
1860
- } else
1861
- if (source == import3DSItem)
1862
- {
1863
- objEditor.ImportJME(new com.jmex.model.converters.MaxToJme(), "3ds", "Import 3DS");
1864
- } else
1865
- if (source == importOBJItem)
1866
- {
1867
- //objEditor.ImportJME(new com.jmex.model.converters.ObjToJme(), "obj", "Import OBJ");
1868
- FileDialog browser = new FileDialog(frame, "Import OBJ", FileDialog.LOAD);
1869
- browser.setVisible(true);
1870
- String filename = browser.getFile();
1871
- if (filename != null && filename.length() > 0)
1872
- {
1873
- String fullname = browser.getDirectory() + filename;
1874
- makeSomething(ReadOBJ(fullname), true);
1875
- }
18762164 } else
18772165 if (source == computeAOItem)
18782166 {
....@@ -1910,6 +2198,30 @@
19102198 if (source == dumpItem)
19112199 {
19122200 DumpObject();
2201
+ } else
2202
+ if (source == minButton)
2203
+ {
2204
+ Minimize();
2205
+ } else
2206
+ if (source == maxButton)
2207
+ {
2208
+ Maximize();
2209
+ } else
2210
+ if (source == fullButton)
2211
+ {
2212
+ ToggleFullScreen();
2213
+ } else
2214
+ if (source == undoButton)
2215
+ {
2216
+ Undo();
2217
+ } else
2218
+ if (source == redoButton)
2219
+ {
2220
+ Redo();
2221
+ } else
2222
+ if (source == saveButton)
2223
+ {
2224
+ Save();
19132225 } else
19142226 if (source == oneStepButton)
19152227 {
....@@ -1964,6 +2276,14 @@
19642276 if (source == cutItem || source == clearButton)
19652277 {
19662278 loadClipboard(true);
2279
+ } else
2280
+ if (source == undoItem)
2281
+ {
2282
+ Undo();
2283
+ } else
2284
+ if (source == redoItem)
2285
+ {
2286
+ Redo();
19672287 } else
19682288 if (source == duplicateItem)
19692289 {
....@@ -2276,7 +2596,7 @@
22762596 {
22772597 RevertMeshes();
22782598 } else
2279
- if (source == resetMeshItem)
2599
+ if (source == resetAllItem)
22802600 {
22812601 ResetAll();
22822602 } else
....@@ -2296,9 +2616,9 @@
22962616 {
22972617 ClearSelection(true);
22982618 } else
2299
- if (source == grabItem)
2619
+ if (source == grabItem || source == groupButton)
23002620 {
2301
- group(new cGroup(), true);
2621
+ group(new cGroup(), false); // true);
23022622 } else
23032623 if (source == hideItem)
23042624 {
....@@ -2316,11 +2636,11 @@
23162636 {
23172637 makeSomething(new Camera());
23182638 } else
2319
- if (source == compositeItem)
2639
+ if (source == compositeItem || source == compositeButton)
23202640 {
23212641 group(new Composite());
23222642 } else
2323
- if (source == randomItem)
2643
+ if (source == switchItem || source == switchButton)
23242644 {
23252645 RandomNode random = new RandomNode();
23262646 group(random);
....@@ -2422,7 +2742,7 @@
24222742 {
24232743 group(new cLinker());
24242744 } else
2425
- if (source == textureItem)
2745
+ if (source == textureItem || source == textureButton)
24262746 {
24272747 group(new TextureNode());
24282748 } else
....@@ -2442,17 +2762,30 @@
24422762 {
24432763 CastShadow(2);
24442764 } else
2445
- if (source == ungroupItem)
2765
+ if (source == ungroupItem || source == ungroupButton)
24462766 {
2447
- //ungroup();
2767
+ boolean hasRoot = false;
2768
+
24482769 for (int i=0; i<group.selection.size(); i++)
24492770 {
2450
- Ungroup(group.selection.get(i));
2771
+ if (group.selection.get(i) == group)
2772
+ {
2773
+ hasRoot = true;
2774
+ break;
2775
+ }
24512776 }
24522777
2453
- ClearSelection(false);
2454
-
2455
- refreshContents();
2778
+ if (!hasRoot)
2779
+ {
2780
+ for (int i=0; i<group.selection.size(); i++)
2781
+ {
2782
+ Ungroup(group.selection.get(i));
2783
+ }
2784
+
2785
+ ClearSelection(false);
2786
+
2787
+ refreshContents();
2788
+ }
24562789 } else
24572790 if (source == genUVItem)
24582791 {
....@@ -2464,7 +2797,7 @@
24642797 } else
24652798 if (source == genNormalsMESHItem)
24662799 {
2467
- GenNormals(true); // TODO
2800
+ GenNormalsMESH();
24682801 } else
24692802 if (source == genNormalsORGANItem)
24702803 {
....@@ -2529,6 +2862,22 @@
25292862 if (source == unmarkleavesItem)
25302863 {
25312864 MarkLeaves(false);
2865
+ } else
2866
+ if (source == rewindleavesItem)
2867
+ {
2868
+ RewindLeaves(true);
2869
+ } else
2870
+ if (source == unrewindleavesItem)
2871
+ {
2872
+ RewindLeaves(false);
2873
+ } else
2874
+ if (source == randomleavesItem)
2875
+ {
2876
+ RandomLeaves(true);
2877
+ } else
2878
+ if (source == unrandomleavesItem)
2879
+ {
2880
+ RandomLeaves(false);
25322881 } else
25332882 if (source == flipVItem)
25342883 {
....@@ -2614,9 +2963,13 @@
26142963 {
26152964 SmoothMesh();
26162965 } else
2617
- if (source == transformgeometryItem)
2966
+ if (source == transformGeometryItem)
26182967 {
26192968 TransformGeometry();
2969
+ } else
2970
+ if (source == transformChildrenItem)
2971
+ {
2972
+ TransformChildren();
26202973 } else
26212974 if (source == resetTransformItem)
26222975 {
....@@ -2624,7 +2977,11 @@
26242977 } else
26252978 if (source == resetCentroidItem)
26262979 {
2627
- ResetCentroid();
2980
+ ResetCentroid(true);
2981
+ } else
2982
+ if (source == resetCentroidXZItem)
2983
+ {
2984
+ ResetCentroid(false);
26282985 } else
26292986 if (source == resetParentItem)
26302987 {
....@@ -2756,6 +3113,10 @@
27563113 if (source == twoButton)
27573114 {
27583115 radio.layout = twoButton;
3116
+
3117
+ if (CameraPane.FULLSCREEN)
3118
+ fullscreenLayout = radio.layout;
3119
+
27593120 // bug
27603121 //gridPanel.setDividerLocation(1.0);
27613122 //bigPanel.setDividerLocation(0.0);
....@@ -2788,10 +3149,31 @@
27883149 bigThree.ClearUI();
27893150 bigThree.add(centralPanel);
27903151 bigThree.FlushUI();
3152
+
3153
+ cameraView.requestFocusInWindow();
3154
+
3155
+// refreshContents(true);
3156
+//
3157
+// try
3158
+// {
3159
+// java.awt.Robot bot = new java.awt.Robot();
3160
+// int mask = InputEvent.BUTTON1_MASK;
3161
+// bot.mouseMove(100, 100);
3162
+// bot.mousePress(mask);
3163
+// bot.mouseRelease(mask);
3164
+// }
3165
+// catch (Exception e)
3166
+// {
3167
+//
3168
+// }
3169
+
27913170 } else
27923171 if (source == threeButton)
27933172 {
27943173 radio.layout = threeButton;
3174
+
3175
+ if (CameraPane.FULLSCREEN)
3176
+ fullscreenLayout = radio.layout;
27953177
27963178 // bigThree.remove(scenePanel);
27973179 // bigThree.remove(centralPanel);
....@@ -2824,10 +3206,15 @@
28243206 bigThree.add(centralPanel);
28253207 bigThree.add(XYZPanel);
28263208 bigThree.FlushUI();
3209
+
3210
+ cameraView.requestFocusInWindow();
28273211 } else
28283212 if (source == fourButton)
28293213 {
28303214 radio.layout = fourButton;
3215
+
3216
+ if (CameraPane.FULLSCREEN)
3217
+ fullscreenLayout = radio.layout;
28313218
28323219 // bigThree.remove(scenePanel);
28333220 // bigThree.remove(centralPanel);
....@@ -2859,10 +3246,15 @@
28593246 bigThree.ClearUI();
28603247 bigThree.add(scenePanel);
28613248 bigThree.FlushUI();
3249
+
3250
+ cameraView.requestFocusInWindow();
28623251 } else
28633252 if (source == sixButton)
28643253 {
28653254 radio.layout = sixButton;
3255
+
3256
+ if (CameraPane.FULLSCREEN)
3257
+ fullscreenLayout = radio.layout;
28663258
28673259 // bigThree.remove(scenePanel);
28683260 // bigThree.remove(centralPanel);
....@@ -2895,10 +3287,15 @@
28953287 bigThree.add(scenePanel);
28963288 bigThree.add(centralPanel);
28973289 bigThree.FlushUI();
3290
+
3291
+ cameraView.requestFocusInWindow();
28983292 } else
28993293 if (source == sevenButton)
29003294 {
29013295 radio.layout = sevenButton;
3296
+
3297
+ if (CameraPane.FULLSCREEN)
3298
+ fullscreenLayout = radio.layout;
29023299
29033300 // bigThree.remove(scenePanel);
29043301 // bigThree.remove(centralPanel);
....@@ -2932,6 +3329,8 @@
29323329 bigThree.add(centralPanel);
29333330 bigThree.add(XYZPanel);
29343331 bigThree.FlushUI();
3332
+
3333
+ cameraView.requestFocusInWindow();
29353334 } else
29363335 if (source == rootButton)
29373336 {
....@@ -2943,6 +3342,7 @@
29433342 EditObject(obj);
29443343 }
29453344
3345
+ cameraView.requestFocusInWindow();
29463346 refreshContents(true);
29473347 } else
29483348 if (source == closeButton)
....@@ -2952,22 +3352,37 @@
29523352 for (Enumeration e = buttonGroup.getElements(); e.hasMoreElements();)
29533353 {
29543354 ab = (cRadio)e.nextElement();
2955
- if(ab.getModel().isSelected() && ab.GetObject() != client)
3355
+ if (ab.getModel().isSelected() && ab.GetObject() != client)
29563356 {
3357
+ // Patch to avoid bug with transparency.
3358
+ if (!ab.hadMaterial)
3359
+ {
3360
+ ab.object.material = null;
3361
+ }
3362
+
29573363 buttonGroup.remove(ab);
29583364 radioPanel.remove(ab);
29593365
2960
- ab.GetObject().editWindow = null;
3366
+ //ab.GetObject().editWindow = null;
3367
+ ab.GetObject().manipWindow = null;
29613368 // ab.GetObject().objectUI = null; // ?????????
29623369
29633370 ((cRadio)radioPanel.getComponent(radioPanel.getComponentCount() - 1)).doClick();
29643371 break;
29653372 }
29663373 }
3374
+
3375
+ cameraView.requestFocusInWindow();
29673376 refreshContents(true);
29683377 } else
29693378 if (source == editItem || source == editButton)
29703379 {
3380
+ for (Enumeration e = group.selection.elements(); e.hasMoreElements();)
3381
+ {
3382
+ Object3D child = (Object3D)e.nextElement();
3383
+ child.pinned = true;
3384
+ }
3385
+
29713386 EditSelection(false);
29723387 } else
29733388 if (source == uneditButton)
....@@ -2977,10 +3392,11 @@
29773392 Object3D child = (Object3D)e.nextElement();
29783393 if(child.editWindow != null)
29793394 objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit"));
3395
+ child.pinned = false;
29803396 child.CloseUI();
29813397 listUI.remove(child);
29823398
2983
- child.editWindow = null; // ???????????
3399
+ //child.editWindow = null; // ???????????
29843400 }
29853401 objEditor.ctrlPanel.FlushUI();
29863402 //objEditor.jTree.clearSelection();
....@@ -2993,6 +3409,7 @@
29933409 //copy.ClearUI();
29943410 for (Object3D obj : listUI)
29953411 {
3412
+ obj.pinned = false;
29963413 obj.CloseUI();
29973414 }
29983415 listUI.clear();
....@@ -3002,7 +3419,7 @@
30023419 {
30033420 assert(copy == group);
30043421
3005
- objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit"));
3422
+ //objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit"));
30063423
30073424 for (Object3D obj : listUI)
30083425 {
....@@ -3066,20 +3483,44 @@
30663483 frontView.object = group;
30673484 sideView.object = group;
30683485 }
3069
- group.editWindow = this;
3486
+
3487
+// fix "+" issue
3488
+ //group.editWindow = this;
3489
+ group.manipWindow = this;
3490
+
30703491 /*
30713492 currentLayout = radio.layout;
30723493 if (currentLayout == null)
30733494 currentLayout = sevenButton;
30743495 */
30753496 radio.layout.doClick();
3497
+
3498
+ ClearUnpinned();
3499
+ SetPinStates(group.selection.size() > 0);
3500
+ if (group.selection.size() == 1)
3501
+ EditSelection(false);
30763502 keepparent = group.parent;
30773503 // PARENT = NULL or not???
30783504 //group.parent = null; // ROOT
30793505 //group.attributes = -1;
30803506 ResetModel();
3507
+
3508
+ cameraView.requestFocusInWindow();
30813509 refreshContents(true);
3082
- }
3510
+ } else if (event.getSource() == editCameraItem)
3511
+ {
3512
+ cameraView.ProtectCamera();
3513
+ cameraView.repaint();
3514
+ return;
3515
+ } else if (event.getSource() == restoreCameraItem || event.getSource() == restoreCameraButton)
3516
+ {
3517
+ cameraView.RevertCamera();
3518
+ cameraView.repaint();
3519
+ return;
3520
+ // } else if (event.getSource() == textureButton)
3521
+ // {
3522
+ // return; // true;
3523
+ }
30833524 else
30843525 {
30853526 //return super.action(event, arg);
....@@ -3088,7 +3529,6 @@
30883529 }
30893530
30903531 boolean useclient = false;
3091
- cRadio radio;
30923532
30933533 void ToggleRoot()
30943534 {
....@@ -3140,6 +3580,28 @@
31403580 refreshContents();
31413581 }
31423582
3583
+ void TransformChildren()
3584
+ {
3585
+ Object3D obj;
3586
+ for (Enumeration e = group.selection.elements(); e.hasMoreElements();)
3587
+ {
3588
+ obj = (Object3D)e.nextElement();
3589
+ obj.KeepTextureMatrices();
3590
+ obj.TransformChildren();
3591
+ obj.RestoreTextureMatrices();
3592
+
3593
+// if (obj.parent == null)
3594
+// {
3595
+// System.out.println("NULL PARENT!");
3596
+// new Exception().printStackTrace();
3597
+// }
3598
+// else
3599
+// TouchTransform(obj);
3600
+// //obj.parent.Touch();
3601
+ }
3602
+
3603
+ refreshContents();
3604
+ }
31433605
31443606 void ResetTransform()
31453607 {
....@@ -3252,7 +3714,7 @@
32523714 refreshContents();
32533715 }
32543716
3255
- void ResetCentroid()
3717
+ void ResetCentroid(boolean full)
32563718 {
32573719 Object3D obj;
32583720 for (Enumeration e = group.selection.elements(); e.hasMoreElements();)
....@@ -3267,12 +3729,16 @@
32673729 LA.matIdentity(Object3D.mat);
32683730 obj.getBounds(minima, maxima, false);
32693731 Object3D.mat[3][0] = -(minima.x + maxima.x)/2;
3270
- Object3D.mat[3][1] = -(minima.y + maxima.y)/2;
3732
+ if (full)
3733
+ Object3D.mat[3][1] = -(minima.y + maxima.y)/2;
32713734 Object3D.mat[3][2] = -(minima.z + maxima.z)/2;
32723735 obj.TransformMesh(Object3D.mat);
3736
+
32733737 Object3D.mat[3][0] = (minima.x + maxima.x)/2;
3274
- Object3D.mat[3][1] = (minima.y + maxima.y)/2;
3738
+ if (full)
3739
+ Object3D.mat[3][1] = (minima.y + maxima.y)/2;
32753740 Object3D.mat[3][2] = (minima.z + maxima.z)/2;
3741
+
32763742 LA.matConcat(Object3D.mat, obj.toParent, obj.toParent);
32773743 //Object3D.mat[3][0] = -Object3D.mat[3][0];
32783744 //Object3D.mat[3][1] = -Object3D.mat[3][1];
....@@ -3301,7 +3767,8 @@
33013767
33023768 int size = obj.MemorySize();
33033769
3304
- System.err.println((size/1024) + " KB is the size of " + obj);
3770
+ //System.err.println((size/1024) + " KB is the size of " + obj);
3771
+ System.err.println("the size of " + obj + " is " + size + " (" + (size/1024) + "KB)");
33053772 }
33063773 }
33073774 catch (Exception e)
....@@ -3382,6 +3849,13 @@
33823849 void GenNormals(boolean crease)
33833850 {
33843851 group.GenNormalsS(crease);
3852
+
3853
+ refreshContents();
3854
+ }
3855
+
3856
+ void GenNormalsMESH()
3857
+ {
3858
+ group.GenNormalsMeshS();
33853859
33863860 refreshContents();
33873861 }
....@@ -3613,7 +4087,16 @@
36134087 String pigment = Object3D.GetPigment(tex);
36144088 //String bump = Object3D.GetBump(tex);
36154089
3616
- com.sun.opengl.util.texture.TextureData texturedata = Globals.theRenderer.GetTextureData(pigment, false, node.texres);
4090
+ com.sun.opengl.util.texture.TextureData texturedata = null;
4091
+
4092
+ try
4093
+ {
4094
+ texturedata = Globals.theRenderer.GetTextureData(pigment, false, node.texres);
4095
+ }
4096
+ catch (Exception e)
4097
+ {
4098
+ System.err.println("FAIL: " + node);
4099
+ }
36174100
36184101 double s = v.s;
36194102
....@@ -4000,6 +4483,18 @@
40004483 refreshContents();
40014484 }
40024485
4486
+ void RewindLeaves(boolean hide)
4487
+ {
4488
+ group.selection.RewindLeaves(hide);
4489
+ refreshContents();
4490
+ }
4491
+
4492
+ void RandomLeaves(boolean hide)
4493
+ {
4494
+ group.selection.RandomLeaves(hide);
4495
+ refreshContents();
4496
+ }
4497
+
40034498 void SetTexRes(int tr)
40044499 {
40054500 group.selection.SetTexRes(tr);
....@@ -4071,10 +4566,6 @@
40714566 // }
40724567 // }
40734568
4074
- static boolean allparams = true;
4075
-
4076
- static Vector<Object3D> listUI = new Vector<Object3D>();
4077
-
40784569 void EditSelection(boolean newWindow)
40794570 {
40804571 // aConstraints.gridy = 0;
....@@ -4082,10 +4573,10 @@
40824573 {
40834574 //System.out.println("edit : " + objectPanel.indexOfTab("Material"));
40844575 //objectPanel.setEnabledAt(objectPanel.indexOfTab("Material"), false);
4085
- objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit"));
4576
+ //objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit"));
40864577
40874578 Object3D elem = (Object3D)group.selection.elementAt(i);
4088
- if(elem != group)
4579
+ if(elem != group || !newWindow)
40894580 {
40904581 // if (!(elem instanceof Composite))
40914582 // newWindow = false;
....@@ -4167,7 +4658,8 @@
41674658 //new Exception().printStackTrace();
41684659
41694660 freezemodel = true;
4170
-
4661
+ ClearUnpinned();
4662
+
41714663 /**/
41724664 //switch (event.id)
41734665 {
....@@ -4175,7 +4667,6 @@
41754667 //case 702: // Event.LIST_DESELECT
41764668 group.deselectAll();
41774669 TreePath tps[] = objEditor.jTree.getSelectionPaths();
4178
- objEditor.ClearInfo(); // .GetMaterial());
41794670 if (tps != null)
41804671 {
41814672 for (int i=0; i < tps.length; i++)
....@@ -4184,10 +4675,8 @@
41844675
41854676 //if (child.parent != null)
41864677 //child.parent.addSelectee(child);
4678
+ objEditor.SetMaterial(child);
41874679 group.addSelectee(child);
4188
- objEditor.SetMaterial(child); // .GetMaterial());
4189
- objEditor.AddInfo(child, this, true); // .GetMaterial());
4190
- System.err.println("info : " + child.GetPath());
41914680 }
41924681 }
41934682 // else
....@@ -4197,20 +4686,28 @@
41974686 // System.err.println("info : " + group.GetPath());
41984687 // }
41994688
4200
- objEditor.SetText(); // jan 2014
4201
-
4202
- if (flashIt && !Globals.isLIVE() && tps != null && tps.length > 0 && !(((Object3D) tps[0].getLastPathComponent()) instanceof Camera))
4689
+ if (flashIt && !Globals.isLIVE() && tps != null && tps.length > 0 && !(tps[0].getLastPathComponent() instanceof Camera))
42034690 CameraPane.flash = true;
42044691
4205
- if (tps != null && tps.length > 0 && ((Object3D) tps[0].getLastPathComponent()) instanceof Camera)
4692
+ if (tps != null && tps.length > 0 && tps[0].getLastPathComponent() instanceof Camera)
42064693 // a camera
42074694 {
4208
- CameraPane.camerachangeframe = 0; // don't refuse it
4209
- Globals.theRenderer.SetCamera((Camera) tps[0].getLastPathComponent());
4695
+ if (tps[0].getLastPathComponent() != Globals.theRenderer.LightCamera()) // Crash the camera because of invalid lightspace
4696
+ {
4697
+ CameraPane.camerachangeframe = 0; // don't refuse it
4698
+ Globals.theRenderer.SetCamera((Camera) tps[0].getLastPathComponent());
4699
+ }
42104700 // Globals.theRenderer.renderCamera = Globals.theRenderer.manipCamera;
42114701 // Globals.theRenderer.eyeCamera = Globals.theRenderer.manipCamera;
42124702 }
42134703
4704
+ if (tps != null && tps.length == 1)
4705
+ {
4706
+ EditSelection(false);
4707
+ }
4708
+
4709
+ SetPinStates(tps != null && tps.length > 0);
4710
+
42144711 refreshContents();
42154712 //return true;
42164713 }
....@@ -4219,6 +4716,35 @@
42194716
42204717 freezemodel = false;
42214718 }
4719
+
4720
+ void SetPinStates(boolean enabled)
4721
+ {
4722
+ editButton.setEnabled(enabled);
4723
+ uneditButton.setEnabled(enabled);
4724
+ unselectButton.setEnabled(enabled);
4725
+ flashSelectionButton.setEnabled(enabled);
4726
+ }
4727
+
4728
+ void refreshContents(boolean cp)
4729
+ {
4730
+ if (objectPanel.getSelectedIndex() == objectPanel.indexOfTab("Info"))
4731
+ if (!Globals.MOUSEDRAGGED) // && !Globals.TIMERRUNNING)
4732
+ {
4733
+ objEditor.ClearInfo(); // .GetMaterial());
4734
+
4735
+ for (int i=0; i < group.selection.Size(); i++)
4736
+ {
4737
+ Object3D child = (Object3D) group.selection.get(i);
4738
+
4739
+ objEditor.AddInfo(child, this, true);
4740
+ System.err.println("info : " + child.GetPath());
4741
+ }
4742
+
4743
+ objEditor.SetText(); // jan 2014
4744
+ }
4745
+
4746
+ super.refreshContents(cp);
4747
+ }
42224748
42234749 void linkSomething(Object3D thing)
42244750 {
....@@ -4290,6 +4816,7 @@
42904816 {
42914817 if (group.selection.isEmpty())
42924818 return;
4819
+
42934820 Grafreed.clipboardIsTempGroup = false;
42944821 Composite tGroup = null;
42954822 if (group.selection.size() > 0) // 1)
....@@ -4300,6 +4827,8 @@
43004827
43014828 if (cut)
43024829 {
4830
+ if (Globals.SAVEONMAKE)
4831
+ Save();
43034832 //int indices[] = jList.getSelectedIndices();
43044833 //for (int i = indices.length - 1; i >= 0; i--)
43054834 //jList.remove(indices[i]);
....@@ -4389,8 +4918,10 @@
43894918 }
43904919
43914920 }
4921
+
43924922 if (Grafreed.clipboardIsTempGroup)
43934923 Grafreed.clipboard = tGroup;
4924
+
43944925 if (cut)
43954926 {
43964927 ResetModel();
....@@ -4922,21 +5453,6 @@
49225453 }
49235454 */
49245455
4925
- void ImportGFD()
4926
- {
4927
- FileDialog browser = new FileDialog(objEditor.frame, "Import GrafreeD", FileDialog.LOAD);
4928
- browser.show();
4929
- String filename = browser.getFile();
4930
- if (filename != null && filename.length() > 0)
4931
- {
4932
- String fullname = browser.getDirectory() + filename;
4933
-
4934
- //Object3D readobj =
4935
- objEditor.ReadGFD(fullname, objEditor);
4936
- //makeSomething(readobj);
4937
- }
4938
- }
4939
-
49405456 /*
49415457 public void Callback(Object obj)
49425458 {
....@@ -4960,23 +5476,6 @@
49605476 }
49615477 */
49625478
4963
- void ImportVRMLX3D()
4964
- {
4965
- if (Grafreed.standAlone)
4966
- {
4967
- /**/
4968
- FileDialog browser = new FileDialog(objEditor.frame, "Import VRML/X3D", FileDialog.LOAD);
4969
- browser.show();
4970
- String filename = browser.getFile();
4971
- if (filename != null && filename.length() > 0)
4972
- {
4973
- String fullname = browser.getDirectory() + filename;
4974
- LoadVRMLX3D(fullname);
4975
- }
4976
- /**/
4977
- }
4978
- }
4979
-
49805479 String GetFile(String dialogName)
49815480 {
49825481 if (Grafreed.standAlone)
....@@ -5047,7 +5546,28 @@
50475546 cButton clearpanelButton;
50485547 cButton unselectButton;
50495548
5549
+ cButton restoreCameraButton;
5550
+
5551
+ cButton saveButton;
50505552 cButton oneStepButton;
5553
+
5554
+ cButton groupButton;
5555
+ cButton ungroupButton;
5556
+ cButton compositeButton;
5557
+ cButton switchButton;
5558
+ cButton loopButton;
5559
+ cButton textureButton;
5560
+
5561
+ cButton gridButton;
5562
+ cButton boxButton;
5563
+ cButton sphereButton;
5564
+ cButton coneButton;
5565
+ cButton torusButton;
5566
+ cButton superButton;
5567
+ cButton kleinButton;
5568
+ cButton particlesButton;
5569
+ cButton overlayButton;
5570
+ cButton lightButton;
50515571
50525572 cButton screenfitButton;
50535573 cButton screenfitpointButton;
....@@ -5060,14 +5580,6 @@
50605580
50615581 cButton setsupportButton;
50625582
5063
- cButton twoButton;
5064
- cButton sixButton;
5065
- cButton threeButton;
5066
- cButton sevenButton;
5067
- cButton fourButton; // full panel
5068
- cButton oneButton; // full XYZ
5069
- //cButton currentLayout;
5070
-
50715583 //
50725584 //Composite
50735585 Object3D // to do !!
....@@ -5077,9 +5589,11 @@
50775589 //JTree jTree;
50785590 private MenuItem lookAtItem;
50795591 private MenuItem lookFromItem;
5080
- private MenuItem switchItem;
5592
+ private MenuItem switchViewItem;
50815593 private MenuItem cutItem;
5082
- private MenuItem duplicateItem;
5594
+ private MenuItem undoItem;
5595
+ private MenuItem redoItem;
5596
+ private JMenuItem duplicateItem;
50835597 private MenuItem cloneItem;
50845598 private MenuItem cloneSupportItem;
50855599 private MenuItem overwriteGeoItem;
....@@ -5092,7 +5606,7 @@
50925606 private MenuItem linkverticesItem;
50935607 private MenuItem relinkverticesItem;
50945608 private MenuItem setMasterItem;
5095
- private MenuItem resetMeshItem;
5609
+ private MenuItem resetAllItem;
50965610 private MenuItem stepAllItem;
50975611 private MenuItem revertMeshItem;
50985612 private MenuItem poseMeshItem;
....@@ -5142,6 +5656,10 @@
51425656 private MenuItem showleavesItem;
51435657 private MenuItem markleavesItem;
51445658 private MenuItem unmarkleavesItem;
5659
+ private MenuItem rewindleavesItem;
5660
+ private MenuItem unrewindleavesItem;
5661
+ private MenuItem randomleavesItem;
5662
+ private MenuItem unrandomleavesItem;
51455663
51465664 private MenuItem flipVItem;
51475665 private MenuItem unflipVItem;
....@@ -5153,15 +5671,17 @@
51535671 private MenuItem panoTexturesItem;
51545672
51555673 private MenuItem resetCentroidItem;
5156
- private MenuItem transformgeometryItem;
5674
+ private MenuItem resetCentroidXZItem;
51575675 private MenuItem resetTransformItem;
5676
+ private MenuItem transformGeometryItem;
5677
+ private MenuItem transformChildrenItem;
51585678 private MenuItem hideItem;
51595679 private MenuItem grabItem;
51605680 private MenuItem backItem;
51615681 private MenuItem frontItem;
51625682 private MenuItem cameraItem;
51635683 private MenuItem compositeItem;
5164
- private MenuItem randomItem;
5684
+ private MenuItem switchItem;
51655685 private MenuItem physicsItem;
51665686 private MenuItem frameselectorItem;
51675687 private MenuItem scriptNodeItem;
....@@ -5223,11 +5743,6 @@
52235743 private MenuItem doubleItem;
52245744 private MenuItem tripleItem;
52255745
5226
- private MenuItem importGFDItem;
5227
- private MenuItem importVRMLX3DItem;
5228
- private MenuItem import3DSItem;
5229
- private MenuItem importOBJItem;
5230
-
52315746 private MenuItem computeAOItem;
52325747 private MenuItem recompileItem;
52335748 private MenuItem editScriptItem;
....@@ -5237,4 +5752,8 @@
52375752 private MenuItem analyzeItem;
52385753 private MenuItem dumpItem;
52395754 //boolean freezemodel = false;
5755
+
5756
+ Menu cameraMenu;
5757
+ MenuItem editCameraItem;
5758
+ MenuItem restoreCameraItem;
52405759 }