Normand Briere
2019-06-29 a69bb4474a3264a9a7a7f8b8d8154ea771f167c8
ObjEditor.java
....@@ -4,6 +4,7 @@
44
55 import java.awt.*;
66 import java.awt.event.*;
7
+import java.awt.image.BufferedImage;
78 import javax.swing.*;
89 import javax.swing.event.*;
910 import javax.swing.text.*;
....@@ -13,6 +14,9 @@
1314 import javax.swing.plaf.metal.MetalLookAndFeel;
1415 //import javax.swing.plaf.ColorUIResource;
1516 //import javax.swing.plaf.metal.DefaultMetalTheme;
17
+
18
+import javax.swing.plaf.basic.BasicSplitPaneDivider;
19
+import javax.swing.plaf.basic.BasicSplitPaneUI;
1620
1721 //import javax.media.opengl.GLCanvas;
1822
....@@ -35,6 +39,67 @@
3539
3640 GroupEditor callee;
3741 JFrame frame;
42
+
43
+ static ObjEditor theFrame;
44
+
45
+ cButton GetButton(String name, boolean border)
46
+ {
47
+ try
48
+ {
49
+ ImageIcon icon = GetIcon(name);
50
+ return new cButton(icon, border);
51
+ }
52
+ catch (Exception e)
53
+ {
54
+ return new cButton(name, border);
55
+ }
56
+ }
57
+
58
+ cToggleButton GetToggleButton(String name, boolean border)
59
+ {
60
+ try
61
+ {
62
+ ImageIcon icon = GetIcon(name);
63
+ return new cToggleButton(icon, border);
64
+ }
65
+ catch (Exception e)
66
+ {
67
+ return new cToggleButton(name, border);
68
+ }
69
+ }
70
+
71
+ cCheckBox GetCheckBox(String name, boolean border)
72
+ {
73
+ try
74
+ {
75
+ ImageIcon icon = GetIcon(name);
76
+ return new cCheckBox(icon, border);
77
+ }
78
+ catch (Exception e)
79
+ {
80
+ return new cCheckBox(name, border);
81
+ }
82
+ }
83
+
84
+ private ImageIcon GetIcon(String name) throws IOException
85
+ {
86
+ BufferedImage image = javax.imageio.ImageIO.read(getClass().getClassLoader().getResourceAsStream(name));
87
+
88
+ if (image.getWidth() != 24 && image.getHeight() != 24)
89
+ {
90
+ BufferedImage resized = new BufferedImage(24, 24, image.getType());
91
+ Graphics2D g = resized.createGraphics();
92
+ g.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR);
93
+ //g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
94
+ g.drawImage(image, 0, 0, 24, 24, 0, 0, image.getWidth(), image.getHeight(), null);
95
+ g.dispose();
96
+
97
+ image = resized;
98
+ }
99
+
100
+ javax.swing.ImageIcon icon = new javax.swing.ImageIcon(image);
101
+ return icon;
102
+ }
38103
39104 // SCRIPT
40105
....@@ -138,34 +203,42 @@
138203 public void closeUI()
139204 {
140205 //new Exception().printStackTrace();
141
- System.out.println("this = " + this);
142
- System.out.println("objEditor = " + objEditor);
206
+// System.out.println("this = " + this);
207
+// System.out.println("objEditor = " + objEditor);
143208 //nameField.removeActionListener(this);
144
- objEditor.ctrlPanel.remove(nameField);
209
+// objEditor.ctrlPanel.remove(nameField);
145210
146
- if (!GroupEditor.allparams)
211
+ objEditor.ctrlPanel.remove(namePanel);
212
+
213
+ if (!allparams)
147214 return;
148215
149
- objEditor.ctrlPanel.remove(liveCB);
150
- objEditor.ctrlPanel.remove(hideCB);
151
- objEditor.ctrlPanel.remove(markCB);
152
-
153
- objEditor.ctrlPanel.remove(randomCB);
154
- objEditor.ctrlPanel.remove(speedupCB);
155
- objEditor.ctrlPanel.remove(rewindCB);
156
-
157
- objEditor.ctrlPanel.remove(resetButton);
158
- objEditor.ctrlPanel.remove(stepButton);
159
-// objEditor.ctrlPanel.remove(stepAllButton);
160
-// objEditor.ctrlPanel.remove(resetAllButton);
161
- objEditor.ctrlPanel.remove(link2masterCB);
162
- //objEditor.ctrlPanel.remove(flipVCB);
163
- //objEditor.ctrlPanel.remove(texresMenu);
164
- objEditor.ctrlPanel.remove(slowerButton);
165
- objEditor.ctrlPanel.remove(fasterButton);
166
- objEditor.ctrlPanel.remove(remarkButton);
216
+// objEditor.ctrlPanel.remove(liveCB);
217
+// objEditor.ctrlPanel.remove(hideCB);
218
+// objEditor.ctrlPanel.remove(markCB);
219
+//
220
+// objEditor.ctrlPanel.remove(randomCB);
221
+// objEditor.ctrlPanel.remove(speedupCB);
222
+// objEditor.ctrlPanel.remove(rewindCB);
223
+//
224
+// objEditor.ctrlPanel.remove(resetButton);
225
+// objEditor.ctrlPanel.remove(stepButton);
226
+//// objEditor.ctrlPanel.remove(stepAllButton);
227
+//// objEditor.ctrlPanel.remove(resetAllButton);
228
+// objEditor.ctrlPanel.remove(link2masterCB);
229
+// //objEditor.ctrlPanel.remove(flipVCB);
230
+// //objEditor.ctrlPanel.remove(texresMenu);
231
+// objEditor.ctrlPanel.remove(slowerButton);
232
+// objEditor.ctrlPanel.remove(fasterButton);
233
+// objEditor.ctrlPanel.remove(remarkButton);
167234
168
- Remove(normalpushField);
235
+ objEditor.ctrlPanel.remove(setupPanel);
236
+ objEditor.ctrlPanel.remove(setupPanel2);
237
+ objEditor.ctrlPanel.remove(objectCommandsPanel);
238
+ objEditor.ctrlPanel.remove(pushPanel);
239
+ //objEditor.ctrlPanel.remove(fillPanel);
240
+
241
+ //Remove(normalpushField);
169242 }
170243
171244 public ObjEditor GetEditor()
....@@ -236,6 +309,7 @@
236309 //localCopy.parent = null;
237310
238311 frame = new JFrame();
312
+ frame.setUndecorated(true);
239313 objEditor = this;
240314 this.callee = callee;
241315
....@@ -266,27 +340,48 @@
266340 return frame.action(event, obj);
267341 }
268342
343
+ // Cannot work without static
344
+ static boolean allparams = true;
345
+
346
+ static java.util.Vector<Object3D> listUI = new java.util.Vector<Object3D>();
347
+
269348 void SetupMenu()
270349 {
271350 frame.setMenuBar(menuBar = new MenuBar());
272
- menuBar.add(windowMenu = new Menu("File"));
273
- windowMenu.add(loadItem = new MenuItem("Load..."));
274
- windowMenu.add("-");
275
- windowMenu.add(saveItem = new MenuItem("Save"));
276
- windowMenu.add(saveAsItem = new MenuItem("Save As..."));
351
+ menuBar.add(fileMenu = new Menu("File"));
352
+ fileMenu.add(newItem = new MenuItem("New"));
353
+ fileMenu.add(loadItem = new MenuItem("Open..."));
354
+
355
+ //oe.menuBar.add(menu = new Menu("Include"));
356
+ Menu menu = new Menu("Import");
357
+ importOBJItem = menu.add(new MenuItem("OBJ file..."));
358
+ importOBJItem.addActionListener(this);
359
+ import3DSItem = menu.add(new MenuItem("3DS file..."));
360
+ import3DSItem.addActionListener(this);
361
+ importVRMLX3DItem = menu.add(new MenuItem("VRML/X3D file..."));
362
+ importVRMLX3DItem.addActionListener(this);
363
+ menu.add("-");
364
+ importGFDItem = menu.add(new MenuItem("Grafreed file..."));
365
+ importGFDItem.addActionListener(this);
366
+ fileMenu.add(menu);
367
+ fileMenu.add("-");
368
+
369
+ fileMenu.add(saveItem = new MenuItem("Save"));
370
+ fileMenu.add(saveAsItem = new MenuItem("Save As..."));
277371 //windowMenu.add(povItem = new MenuItem("Emit POV-Ray..."));
278
- windowMenu.add("-");
279
- windowMenu.add(exportAsItem = new MenuItem("Export Selection..."));
280
- windowMenu.add(reexportItem = new MenuItem("Re-export"));
281
- windowMenu.add("-");
372
+ fileMenu.add("-");
373
+ fileMenu.add(exportAsItem = new MenuItem("Export Selection..."));
374
+ fileMenu.add(reexportItem = new MenuItem("Re-export"));
375
+ fileMenu.add("-");
282376 if (client.parent != null)
283377 {
284
- windowMenu.add(closeItem = new MenuItem("Close"));
378
+ fileMenu.add(closeItem = new MenuItem("Close"));
285379 } else
286380 {
287
- windowMenu.add(closeItem = new MenuItem("Exit"));
381
+ fileMenu.add(closeItem = new MenuItem("Exit"));
288382 }
289383
384
+ newItem.addActionListener(this);
290385 loadItem.addActionListener(this);
291386 saveItem.addActionListener(this);
292387 saveAsItem.addActionListener(this);
....@@ -295,81 +390,66 @@
295390 //povItem.addActionListener(this);
296391 closeItem.addActionListener(this);
297392
298
- menuBar.add(cameraMenu = new Menu("View"));
299
- //cameraMenu.add(zBufferItem = new CheckboxMenuItem("Z Buffer"));
300
- //zBufferItem.addActionListener(this);
301
- //cameraMenu.add(normalLensItem = new MenuItem("Normal Lens"));
302
- //normalLensItem.addActionListener(this);
303
- cameraMenu.add(revertCameraItem = new MenuItem("Revert Camera"));
304
- revertCameraItem.addActionListener(this);
305
- cameraMenu.add(toggleTimelineItem = new CheckboxMenuItem("Timeline"));
306
- toggleTimelineItem.addItemListener(this);
307
- cameraMenu.add(toggleFullScreenItem = new CheckboxMenuItem("Full Screen"));
308
- toggleFullScreenItem.addItemListener(this);
309
- toggleFullScreenItem.setState(CameraPane.FULLSCREEN);
310
- cameraMenu.add("-");
311
- cameraMenu.add(toggleTextureItem = new CheckboxMenuItem("Texture"));
312
- toggleTextureItem.addItemListener(this);
313
- toggleTextureItem.setState(CameraPane.textureon);
314
- cameraMenu.add(toggleLiveItem = new CheckboxMenuItem("Live"));
315
- toggleLiveItem.addItemListener(this);
316
- toggleLiveItem.setState(Globals.isLIVE());
317
- cameraMenu.add(stepItem = new MenuItem("Step"));
318
- stepItem.addActionListener(this);
319
-// cameraMenu.add(toggleDLItem = new CheckboxMenuItem("Display List"));
320
-// toggleDLItem.addItemListener(this);
321
-// toggleDLItem.setState(false);
322
- cameraMenu.add(toggleRenderItem = new CheckboxMenuItem("Render"));
323
- toggleRenderItem.addItemListener(this);
324
- toggleRenderItem.setState(!CameraPane.frozen);
325
- cameraMenu.add(toggleDebugItem = new CheckboxMenuItem("Debug"));
326
- toggleDebugItem.addItemListener(this);
327
- toggleDebugItem.setState(CameraPane.DEBUG);
328
- cameraMenu.add(toggleFrustumItem = new CheckboxMenuItem("Frustum"));
329
- toggleFrustumItem.addItemListener(this);
330
- toggleFrustumItem.setState(CameraPane.FRUSTUM);
331
- cameraMenu.add(toggleFootContactItem = new CheckboxMenuItem("Foot contact"));
332
- toggleFootContactItem.addItemListener(this);
333
- toggleFootContactItem.setState(CameraPane.FOOTCONTACT);
334
- cameraMenu.add(toggleRandomItem = new CheckboxMenuItem("Random"));
335
- toggleRandomItem.addItemListener(this);
336
- toggleRandomItem.setState(CameraPane.RANDOM);
337
- cameraMenu.add(toggleHandleItem = new CheckboxMenuItem("Handles"));
338
- toggleHandleItem.addItemListener(this);
339
- toggleHandleItem.setState(CameraPane.HANDLES);
340
- cameraMenu.add(togglePaintItem = new CheckboxMenuItem("Paint mode"));
341
- togglePaintItem.addItemListener(this);
342
- togglePaintItem.setState(CameraPane.PAINTMODE);
343
-// cameraMenu.add(toggleRootItem = new CheckboxMenuItem("Alternate Root"));
344
-// toggleRootItem.addItemListener(this);
345
-// toggleRootItem.setState(false);
346
-// cameraMenu.add(animationItem = new CheckboxMenuItem("Animation"));
347
-// animationItem.addItemListener(this);
348
-// animationItem.setState(CameraPane.ANIMATION);
349
- cameraMenu.add("-");
350
- cameraMenu.add(editCameraItem = new MenuItem("Freeze Camera"));
351
- editCameraItem.addActionListener(this);
352
-
353393 objectPanel = new JTabbedPane();
394
+
395
+ ChangeListener changeListener = new ChangeListener()
396
+ {
397
+ public void stateChanged(ChangeEvent changeEvent)
398
+ {
399
+// if (objectPanel.getSelectedIndex() == objectPanel.indexOfTab("Material") && !materialFlushed)
400
+// {
401
+// if (latestObject != null)
402
+// {
403
+// refreshContents(true);
404
+// SetMaterial(latestObject);
405
+// }
406
+//
407
+// materialFlushed = true;
408
+// }
409
+// if (objectPanel.getSelectedIndex() == objectPanel.indexOfTab("Edit"))
410
+// {
411
+// if (listUI.size() == 0)
412
+// EditSelection(false);
413
+// }
414
+
415
+ refreshContents(false); // To refresh Info tab
416
+ }
417
+ };
418
+ objectPanel.addChangeListener(changeListener);
419
+
354420 toolbarPanel = new JPanel();
355421 toolbarPanel.setName("Toolbar");
356
- treePanel = new JPanel();
422
+ treePanel = new cGridBag();
357423 treePanel.setName("Tree");
358
- ctrlPanel = new JPanel(); // new GridBagLayout());
359
- ctrlPanel.setName("Edit");
360
- materialPanel = new JPanel();
424
+
425
+ editPanel = new cGridBag().setVertical(true);
426
+ editPanel.setName("Edit");
427
+
428
+ ctrlPanel = new cGridBag().setVertical(false); // new GridBagLayout());
429
+
430
+ editCommandsPanel = new cGridBag();
431
+ editPanel.add(editCommandsPanel);
432
+ editPanel.add(ctrlPanel);
433
+
434
+ toolboxPanel = new cGridBag().setVertical(false);
435
+ toolboxPanel.setName("Toolbox");
436
+
437
+ materialPanel = new cGridBag().setVertical(true);
361438 materialPanel.setName("Material");
439
+
362440 /*JTextPane*/
363441 infoarea = createTextPane();
442
+ doc = infoarea.getStyledDocument();
443
+
364444 infoarea.setEditable(true);
365445 SetText();
366446 // infoarea.setFont(infoarea.getFont().deriveFont(10, 14f));
367447 // infoarea.setOpaque(false);
368448 // //infoarea.setForeground(textcolor);
369
- infoarea.setLineWrap(true);
370
- infoarea.setWrapStyleWord(true);
449
+// TEXTAREA infoarea.setLineWrap(true);
450
+// TEXTAREA infoarea.setWrapStyleWord(true);
371451 infoPanel = new JScrollPane(infoarea, ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER); //AS_NEEDED);
372
- infoPanel.setPreferredSize(new Dimension(50, 200));
452
+ //infoPanel.setPreferredSize(new Dimension(50, 200));
373453 infoPanel.setName("Info");
374454 //infoPanel.setLayout(new BorderLayout());
375455 //infoPanel.add(createTextPane());
....@@ -378,16 +458,23 @@
378458 mainPanel.setName("Main");
379459 mainPanel.setContinuousLayout(true);
380460 mainPanel.setOneTouchExpandable(true);
381
- mainPanel.setDividerLocation(1.0);
382461 mainPanel.setDividerSize(9);
383
- mainPanel.setResizeWeight(0);
384
-
462
+ mainPanel.setDividerLocation(0.5); //1.0);
463
+ mainPanel.setResizeWeight(0.5);
464
+
465
+//mainPanel.setDividerSize((int) (mainPanel.getDividerSize() * 1.5));
466
+ BasicSplitPaneDivider divider = ( (BasicSplitPaneUI) mainPanel.getUI()).getDivider();
467
+ divider.setDividerSize(15);
468
+ divider.setBorder(BorderFactory.createTitledBorder(divider.getBorder(), "Custom border title -- gets rid of the one-touch arrows!"));
469
+
470
+ mainPanel.setUI(new BasicSplitPaneUI());
471
+
385472 //ctrlPanel.setLayout(new GridLayout(4, 1, 5, 5));
386473 //mainPanel.setLayout(new GridBagLayout());
387474 toolbarPanel.setLayout(new FlowLayout(FlowLayout.LEFT));
388
- treePanel.setLayout(new GridBagLayout());
389
- ctrlPanel.setLayout(new GridBagLayout());
390
- materialPanel.setLayout(new GridBagLayout());
475
+// treePanel.setLayout(new GridBagLayout());
476
+ //ctrlPanel.setLayout(new GridBagLayout());
477
+ //materialPanel.setLayout(new GridBagLayout());
391478
392479 aConstraints = new GridBagConstraints(0, 0, 1, 1, 1.0, 1.0,
393480 GridBagConstraints.NORTHEAST, GridBagConstraints.BOTH, new Insets(1, 1, 1, 1), 0, 0);
....@@ -426,7 +513,7 @@
426513 static String newline = "\n";
427514 protected static final String buttonString = "JButton";
428515 StyledDocument doc;
429
- JTextArea infoarea;
516
+ JTextPane infoarea;
430517
431518 void ClearInfo()
432519 {
....@@ -449,10 +536,10 @@
449536 e.printStackTrace();
450537 }
451538
452
- String selection = infoarea.getText();
453
- java.awt.datatransfer.StringSelection data = new java.awt.datatransfer.StringSelection(selection);
454
- java.awt.datatransfer.Clipboard clipboard =
455
- Toolkit.getDefaultToolkit().getSystemClipboard();
539
+// String selection = infoarea.getText();
540
+// java.awt.datatransfer.StringSelection data = new java.awt.datatransfer.StringSelection(selection);
541
+// java.awt.datatransfer.Clipboard clipboard =
542
+// Toolkit.getDefaultToolkit().getSystemClipboard();
456543 //clipboard.setContents(data, data);
457544 }
458545
....@@ -475,13 +562,13 @@
475562 //SendInfo("Name:", "bold");
476563 if (sel.GetTextures() != null || debug)
477564 {
478
- si.SendInfo(sel.toString(), "bold");
565
+ si.SendInfo(sel.toString() + (Globals.ADVANCED?"":" " + System.identityHashCode(sel)), "bold");
479566 //SendInfo("#children virtual = " + sel.size() + "; real = " + sel.Size() + newline, "regular");
480567 if (sel.Size() > 0)
481568 {
482569 si.SendInfo("#children = " + sel.Size(), "regular");
483570 }
484
- si.SendInfo((debug ? " Parent: " : " ") + sel.parent, "regular");
571
+ si.SendInfo((debug ? " Parent: " : " ") + sel.parent + (Globals.ADVANCED?"":" " + System.identityHashCode(sel.parent)), "regular");
485572 if (debug)
486573 {
487574 try
....@@ -493,7 +580,10 @@
493580 }
494581
495582 if (full)
496
- si.SendInfo(" BBox: " + minima + " - " + maxima, "regular");
583
+ {
584
+ si.SendInfo(" BBox min: " + minima, "regular");
585
+ si.SendInfo(" BBox max: " + maxima, "regular");
586
+ }
497587
498588 if (sel.bRep != null)
499589 {
....@@ -520,7 +610,7 @@
520610 }
521611 if (sel.support != null)
522612 {
523
- si.SendInfo(" support: " + sel.support, "regular");
613
+ si.SendInfo(" support: " + sel.support + (Globals.ADVANCED?"":" " + System.identityHashCode(sel.support)), "regular");
524614 }
525615 if (sel.scriptnode != null)
526616 {
....@@ -591,6 +681,9 @@
591681 {
592682 CameraPane.pointflow = (PointFlow) sel;
593683 }
684
+
685
+ si.SendInfo("_____________________", "regular");
686
+ si.SendInfo("", "regular");
594687 }
595688 }
596689
....@@ -606,68 +699,159 @@
606699 }
607700 }
608701
702
+static GraphicsDevice device = GraphicsEnvironment
703
+ .getLocalGraphicsEnvironment().getScreenDevices()[0];
704
+
705
+ Rectangle keeprect;
706
+ cRadio radio;
707
+
708
+cButton keepButton;
709
+ cButton twoButton; // Full 3D
710
+ cButton sixButton;
711
+ cButton threeButton;
712
+ cButton sevenButton;
713
+ cButton fourButton; // full panel
714
+ cButton oneButton; // full XYZ
715
+ //cButton currentLayout;
716
+
717
+ boolean maximized;
718
+
719
+ cButton fullscreenLayout;
720
+
721
+ void Minimize()
722
+ {
723
+ frame.setState(Frame.ICONIFIED);
724
+ frame.validate();
725
+ }
726
+
727
+// artifactURI=null, type=0, property=${file.reference.jfxrt.jar}, object=org.netbeans.modules.java.api.common.classpath.ClassPathSupport$RelativePath@6767876f, broken=false, additional={}
728
+// artifactURI=null, type=0, property=${file.reference.mac-ui.jar}, object=org.netbeans.modules.java.api.common.classpath.ClassPathSupport$RelativePath@16bdc817, broken=false, additional={}
729
+// artifactURI=null, type=0, property=${file.reference.classes.jar}, object=org.netbeans.modules.java.api.common.classpath.ClassPathSupport$RelativePath@9daa9c17, broken=false, additional={}
730
+ void Maximize()
731
+ {
732
+ if (CameraPane.FULLSCREEN)
733
+ {
734
+ ToggleFullScreen();
735
+ }
736
+
737
+ if (maximized)
738
+ {
739
+ frame.setBounds(keeprect.x, keeprect.y, keeprect.width, keeprect.height);
740
+ }
741
+ else
742
+ {
743
+ keeprect = frame.getBounds();
744
+ Rectangle rect = GraphicsEnvironment.getLocalGraphicsEnvironment().getMaximumWindowBounds();
745
+ Dimension rect2 = frame.getToolkit().getScreenSize();
746
+ frame.setBounds(0, rect2.height - rect.height, rect.width, rect.height);
747
+// frame.setState(Frame.MAXIMIZED_BOTH);
748
+ }
749
+
750
+ maximized ^= true;
751
+
752
+ frame.validate();
753
+ }
754
+
755
+ cButton minButton;
756
+ cButton maxButton;
757
+ cButton fullButton;
758
+
609759 void ToggleFullScreen()
610760 {
611
- if (CameraPane.FULLSCREEN)
761
+ cameraView.ToggleFullScreen();
762
+
763
+ if (!CameraPane.FULLSCREEN)
612764 {
613
- frame.getContentPane().remove(/*"Center",*/bigThree);
614
- framePanel.add(bigThree);
615
- frame.getContentPane().add(/*"Center",*/framePanel);
765
+ device.setFullScreenWindow(null);
766
+ frame.validate();
767
+
768
+ //frame.setVisible(false);
769
+// frame.removeNotify();
770
+// frame.setUndecorated(false);
771
+// frame.addNotify();
772
+ //frame.setBounds(keeprect.x, keeprect.y, keeprect.width, keeprect.height);
773
+
774
+// X frame.getContentPane().remove(/*"Center",*/bigThree);
775
+// X framePanel.add(bigThree);
776
+// X frame.getContentPane().add(/*"Center",*/framePanel);
777
+ framePanel.setDividerLocation(1);
778
+
779
+ //frame.setVisible(true);
780
+ radio.layout = keepButton;
781
+ //theFrame = null;
782
+ keepButton = null;
783
+ radio.layout.doClick();
784
+
616785 } else
617786 {
618
- frame.getContentPane().remove(/*"Center",*/framePanel);
619
- framePanel.remove(bigThree);
620
- frame.getContentPane().add(/*"Center",*/bigThree);
787
+ keepButton = radio.layout;
788
+ //keeprect = frame.getBounds();
789
+// frame.setBounds(0, 0, frame.getToolkit().getScreenSize().width,
790
+// frame.getToolkit().getScreenSize().height);
791
+ //frame.setVisible(false);
792
+ device.setFullScreenWindow(frame);
793
+ frame.validate();
794
+// frame.removeNotify();
795
+// frame.setUndecorated(true);
796
+// frame.addNotify();
797
+// X frame.getContentPane().remove(/*"Center",*/framePanel);
798
+// X framePanel.remove(bigThree);
799
+// X frame.getContentPane().add(/*"Center",*/bigThree);
800
+ framePanel.setDividerLocation(0);
801
+
802
+ radio.layout = fullscreenLayout;
803
+ radio.layout.doClick();
804
+ //frame.setVisible(true);
621805 }
622
- cameraView.ToggleFullScreen();
806
+ frame.validate();
623807 }
624808
625
- private JTextArea createTextPane()
809
+ private JTextPane createTextPane()
626810 {
627
- String[] initString =
628
- {
629
- "This is an editable JTextPane, ", //regular
630
- "another ", //italic
631
- "styled ", //bold
632
- "text ", //small
633
- "component, ", //large
634
- "which supports embedded components..." + newline,//regular
635
- " " + newline, //button
636
- "...and embedded icons..." + newline, //regular
637
- " ", //icon
638
- newline + "JTextPane is a subclass of JEditorPane that "
639
- + "uses a StyledEditorKit and StyledDocument, and provides "
640
- + "cover methods for interacting with those objects."
641
- };
811
+// TEXTAREA String[] initString =
812
+// {
813
+// "This is an editable JTextPane, ", //regular
814
+// "another ", //italic
815
+// "styled ", //bold
816
+// "text ", //small
817
+// "component, ", //large
818
+// "which supports embedded components..." + newline,//regular
819
+// " " + newline, //button
820
+// "...and embedded icons..." + newline, //regular
821
+// " ", //icon
822
+// newline + "JTextPane is a subclass of JEditorPane that "
823
+// + "uses a StyledEditorKit and StyledDocument, and provides "
824
+// + "cover methods for interacting with those objects."
825
+// };
826
+//
827
+// String[] initStyles =
828
+// {
829
+// "regular", "italic", "bold", "small", "large",
830
+// "regular", "button", "regular", "icon",
831
+// "regular"
832
+// };
833
+//
834
+// JTextPane textPane = new JTextPane();
835
+// textPane.setEditable(true);
836
+// /*StyledDocument*/ doc = textPane.getStyledDocument();
837
+// addStylesToDocument(doc);
838
+//
839
+// try
840
+// {
841
+// for (int j = 0; j < 2; j++)
842
+// {
843
+// for (int i = 0; i < initString.length; i++)
844
+// {
845
+// doc.insertString(doc.getLength(), initString[i],
846
+// doc.getStyle(initStyles[i]));
847
+// }
848
+// }
849
+// } catch (BadLocationException ble)
850
+// {
851
+// System.err.println("Couldn't insert initial text into text pane.");
852
+// }
642853
643
- String[] initStyles =
644
- {
645
- "regular", "italic", "bold", "small", "large",
646
- "regular", "button", "regular", "icon",
647
- "regular"
648
- };
649
-
650
- JTextPane textPane = new JTextPane();
651
- textPane.setEditable(true);
652
- /*StyledDocument*/ doc = textPane.getStyledDocument();
653
- addStylesToDocument(doc);
654
-
655
- try
656
- {
657
- for (int j = 0; j < 2; j++)
658
- {
659
- for (int i = 0; i < initString.length; i++)
660
- {
661
- doc.insertString(doc.getLength(), initString[i],
662
- doc.getStyle(initStyles[i]));
663
- }
664
- }
665
- } catch (BadLocationException ble)
666
- {
667
- System.err.println("Couldn't insert initial text into text pane.");
668
- }
669
-
670
- return new JTextArea(); // textPane;
854
+ return new JTextPane(); // textPane;
671855 }
672856
673857 protected void addStylesToDocument(StyledDocument doc)
....@@ -720,7 +904,7 @@
720904 protected static ImageIcon createImageIcon(String path,
721905 String description)
722906 {
723
- java.net.URL imgURL = GrafreeD.class.getResource(path);
907
+ java.net.URL imgURL = Grafreed.class.getResource(path);
724908 if (imgURL != null)
725909 {
726910 return new ImageIcon(imgURL, description);
....@@ -752,6 +936,7 @@
752936 // NumberSlider vDivsField;
753937 // JCheckBox endcaps;
754938 JCheckBox liveCB;
939
+ JCheckBox selectCB;
755940 JCheckBox hideCB;
756941 JCheckBox link2masterCB;
757942 JCheckBox markCB;
....@@ -759,7 +944,12 @@
759944 JCheckBox speedupCB;
760945 JCheckBox rewindCB;
761946 JCheckBox flipVCB;
947
+
948
+ cCheckBox toggleTextureCB;
949
+ cCheckBox toggleSwitchCB;
950
+
762951 JComboBox texresMenu;
952
+
763953 JButton resetButton;
764954 JButton stepButton;
765955 JButton stepAllButton;
....@@ -767,115 +957,87 @@
767957 JButton slowerButton;
768958 JButton fasterButton;
769959 JButton remarkButton;
960
+
961
+ cGridBag editPanel;
962
+ cGridBag editCommandsPanel;
963
+
964
+ cGridBag namePanel;
965
+ cGridBag setupPanel;
966
+ cGridBag setupPanel2;
967
+ cGridBag objectCommandsPanel;
968
+ cGridBag pushPanel;
969
+ cGridBag fillPanel;
770970
771
- JCheckBox AddCheckBox(ObjEditor oe, String label, boolean on)
971
+ JCheckBox AddCheckBox(cGridBag panel, String label, boolean on)
772972 {
773973 JCheckBox cb;
774974
775
- oe.aConstraints.fill = GridBagConstraints.HORIZONTAL;
776
- oe.aConstraints.gridwidth = 1; // 3;
777
-// oe.aConstraints.weightx = 1;
778
-// oe.aConstraints.anchor = GridBagConstraints.WEST;
779
- oe.ctrlPanel.add(cb = new JCheckBox(label, on), oe.aConstraints); //, oe.ctrlPanel.getComponentCount()-1);
975
+ panel.add(cb = new JCheckBox(label, on)); //, oe.aConstraints); //, oe.ctrlPanel.getComponentCount()-1);
780976 cb.addItemListener(this);
781
-// oe.aConstraints.anchor = GridBagConstraints.EAST;
782
- oe.aConstraints.gridwidth = 1;
783
- oe.aConstraints.gridx += 1;
784977
785978 return cb;
786979 }
787980
788
- cButton AddButton(ObjEditor oe, String label)
981
+ cButton AddButton(cGridBag panel, String label)
789982 {
790983 cButton cb;
791984
792
- oe.aConstraints.fill = GridBagConstraints.HORIZONTAL;
793
- oe.aConstraints.gridwidth = 1;
794
-// oe.aConstraints.weightx = 1;
795
-// oe.aConstraints.anchor = GridBagConstraints.WEST;
796
- oe.ctrlPanel.add(cb = new cButton(label), oe.aConstraints, oe.ctrlPanel.getComponentCount() - 1);
985
+ panel.add(cb = new cButton(label)); //, oe.aConstraints, oe.ctrlPanel.getComponentCount() - 1);
797986 cb.addActionListener(this);
798
-// oe.aConstraints.anchor = GridBagConstraints.EAST;
799
- oe.aConstraints.gridwidth = 1;
800
- oe.aConstraints.gridx += 1;
801987
802988 return cb;
803989 }
804990
805
- JComboBox AddCombo(ObjEditor oe, java.util.Vector list, int item)
991
+ JComboBox AddCombo(cGridBag panel, java.util.Vector list, int item)
806992 {
807993 JComboBox combo;
808994
809
- oe.aConstraints.fill = GridBagConstraints.HORIZONTAL;
810
- oe.ctrlPanel.add(combo = new JComboBox(new cListModel(list, item)), oe.aConstraints); //, oe.ctrlPanel.getComponentCount()-1);
811
- oe.aConstraints.gridx += 1;
995
+ panel.add(combo = new JComboBox(new cListModel(list, item))); //, oe.aConstraints); //, oe.ctrlPanel.getComponentCount()-1);
812996 combo.addActionListener(this);
813997
814998 return combo;
815999 }
8161000
817
- NumberSlider AddSlider(JPanel ctrlPanel, String label, double min, double max, double current, double pow)
1001
+ cGridBag AddSlider(cGridBag panel, String label, double min, double max, double current, double pow)
8181002 {
819
- NumberSlider combo;
1003
+ cGridBag control = new cGridBag();
1004
+
1005
+ cNumberSlider combo;
8201006
8211007 JLabel jlabel = new JLabel(label);
822
-
823
- aConstraints.fill = GridBagConstraints.VERTICAL;
8241008 jlabel.setHorizontalAlignment(SwingConstants.TRAILING);
825
- aConstraints.gridwidth = 1;
826
- ctrlPanel.add(jlabel, aConstraints); //, oe.ctrlPanel.getComponentCount()-1);
827
- aConstraints.gridx += 1;
828
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
829
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
830
- ctrlPanel.add(combo = new NumberSlider(min, max, pow), aConstraints); //, oe.ctrlPanel.getComponentCount()-1);
831
- aConstraints.gridx += 1;
832
- aConstraints.gridwidth = 1;
833
-
1009
+ control.add(jlabel); //, aConstraints); //, oe.ctrlPanel.getComponentCount()-1);
1010
+ control.add(combo = new cNumberSlider(this, min, max, pow)); //, aConstraints); //, oe.ctrlPanel.getComponentCount()-1);
8341011 combo.setFloat(current);
835
-
836
- combo.label = jlabel;
837
-
838
- combo.addChangeListener(this);
839
-
840
- return combo;
1012
+
1013
+ panel.add(control);
1014
+
1015
+ return control;
8411016 }
8421017
843
- NumberSlider AddSlider(JPanel ctrlPanel, String label, int min, int max, int current)
1018
+ cGridBag AddSlider(cGridBag panel, String label, int min, int max, int current)
8441019 {
845
- NumberSlider combo;
1020
+ cGridBag control = new cGridBag();
1021
+
1022
+ cNumberSlider combo;
8461023
8471024 JLabel jlabel = new JLabel(label);
848
-
849
- aConstraints.fill = GridBagConstraints.VERTICAL;
8501025 jlabel.setHorizontalAlignment(SwingConstants.TRAILING);
851
- aConstraints.gridwidth = 2;
852
- ctrlPanel.add(jlabel, aConstraints); //, oe.ctrlPanel.getComponentCount()-1);
853
- aConstraints.gridx += 1;
854
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
855
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
856
- ctrlPanel.add(combo = new NumberSlider(min, max), aConstraints); //, oe.ctrlPanel.getComponentCount()-1);
857
- aConstraints.gridx += 1;
858
- aConstraints.gridwidth = 1;
859
-
1026
+ control.add(jlabel); //, aConstraints); //, oe.ctrlPanel.getComponentCount()-1);
1027
+ control.add(combo = new cNumberSlider(this, min, max)); //, aConstraints); //, oe.ctrlPanel.getComponentCount()-1);
8601028 combo.setInteger(current);
8611029
862
- combo.label = jlabel;
863
-
864
- combo.addChangeListener(this);
865
-
866
- return combo;
1030
+ panel.add(control);
1031
+
1032
+ return control;
8671033 }
8681034
869
- JTextArea AddText(JPanel ctrlPanel, String name)
1035
+ JTextArea AddText(cGridBag ctrlPanel, String name)
8701036 {
8711037 JTextArea text;
8721038
873
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
874
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
875
- ctrlPanel.add(text = new JTextArea(name), aConstraints); //, oe.ctrlPanel.getComponentCount()-1);
1039
+ ctrlPanel.add(text = new JTextArea(name)); //, aConstraints); //, oe.ctrlPanel.getComponentCount()-1);
8761040 text.addCaretListener(this);
877
- aConstraints.gridx += 1;
878
- aConstraints.gridwidth = 1;
8791041
8801042 return text;
8811043 }
....@@ -905,9 +1067,16 @@
9051067 objEditor.ctrlPanel.remove(j);
9061068 }
9071069
1070
+ void Remove(cNumberSlider j)
1071
+ {
1072
+ j.removeChangeListener(this);
1073
+ //objEditor.ctrlPanel.remove(j.label);
1074
+ objEditor.ctrlPanel.remove(j);
1075
+ }
1076
+
9081077 /*
9091078 */
910
- void Return() // ObjEditor oe)
1079
+ void Return0() // ObjEditor oe)
9111080 {
9121081 aConstraints.gridy += 1;
9131082 aConstraints.gridx = 0;
....@@ -962,37 +1131,76 @@
9621131
9631132 void SetupUI2(ObjEditor oe)
9641133 {
965
-// oe.aConstraints.weightx = 0;
966
-// oe.aConstraints.weighty = 0;
967
-// oe.aConstraints.gridx = 0;
968
-// oe.aConstraints.gridy = 0;
969
- SetupName(oe);
1134
+ //SetupName(oe);
9701135
971
- if (!GroupEditor.allparams)
1136
+ namePanel = new cGridBag();
1137
+
1138
+ nameField = AddText(namePanel, copy.GetName());
1139
+ namePanel.add(new JScrollPane(nameField, ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER));
1140
+ oe.ctrlPanel.add(namePanel);
1141
+
1142
+ oe.ctrlPanel.Return();
1143
+
1144
+ if (!allparams)
9721145 return;
9731146
974
- liveCB = AddCheckBox(oe, "Live", copy.live);
975
- link2masterCB = AddCheckBox(oe, "Supp", copy.link2master);
976
- hideCB = AddCheckBox(oe, "Hide", copy.hide);
1147
+ setupPanel = new cGridBag().setVertical(false);
1148
+
1149
+ liveCB = AddCheckBox(setupPanel, "Live", copy.live);
1150
+ liveCB.setToolTipText("Animate object");
1151
+ selectCB = AddCheckBox(setupPanel, "Select", !copy.dontselect);
1152
+ selectCB.setToolTipText("Make object selectable");
9771153 // Return();
978
- markCB = AddCheckBox(oe, "Mark", copy.marked);
979
- rewindCB = AddCheckBox(oe, "Rew", copy.rewind);
980
- randomCB = AddCheckBox(oe, "Rand", copy.random);
981
- Return();
982
- resetButton = AddButton(oe, "Reset");
983
- stepButton = AddButton(oe, "Step");
1154
+ hideCB = AddCheckBox(setupPanel, "Hide", copy.hide);
1155
+ hideCB.setToolTipText("Hide object");
1156
+ markCB = AddCheckBox(setupPanel, "Mark", copy.marked);
1157
+ markCB.setToolTipText("As animation target transform");
1158
+
1159
+ setupPanel2 = new cGridBag().setVertical(false);
1160
+
1161
+ rewindCB = AddCheckBox(setupPanel2, "Rewind", copy.rewind);
1162
+ rewindCB.setToolTipText("Rewind animation");
1163
+
1164
+ randomCB = AddCheckBox(setupPanel2, "Random", copy.random);
1165
+ randomCB.setToolTipText("Randomly Rewind (or Go back and forth)");
1166
+
1167
+ if (Globals.ADVANCED)
1168
+ {
1169
+ link2masterCB = AddCheckBox(setupPanel2, "Supp", copy.link2master);
1170
+ link2masterCB.setToolTipText("Attach to support");
1171
+ speedupCB = AddCheckBox(setupPanel2, "Speed", copy.speedup);
1172
+ speedupCB.setToolTipText("Option motion capture");
1173
+ }
1174
+
1175
+ oe.ctrlPanel.add(setupPanel);
1176
+ oe.ctrlPanel.Return();
1177
+ oe.ctrlPanel.add(setupPanel2);
1178
+ oe.ctrlPanel.Return();
1179
+
1180
+ objectCommandsPanel = new cGridBag().setVertical(false);
1181
+
1182
+ resetButton = AddButton(objectCommandsPanel, "Reset");
1183
+ resetButton.setToolTipText("Jump to frame zero");
1184
+ stepButton = AddButton(objectCommandsPanel, "Step");
1185
+ stepButton.setToolTipText("Step one frame");
9841186 // resetAllButton = AddButton(oe, "Reset All");
9851187 // stepAllButton = AddButton(oe, "Step All");
986
- speedupCB = AddCheckBox(oe, "Speed", copy.speedup);
9871188 // Return();
988
- slowerButton = AddButton(oe, "Slow");
989
- fasterButton = AddButton(oe, "Fast");
990
- remarkButton = AddButton(oe, "Rem");
1189
+ slowerButton = AddButton(objectCommandsPanel, "Slow");
1190
+ slowerButton.setToolTipText("Decrease animation speed");
1191
+ fasterButton = AddButton(objectCommandsPanel, "Fast");
1192
+ fasterButton.setToolTipText("Increase animation speed");
1193
+ remarkButton = AddButton(objectCommandsPanel, "Remark");
1194
+ remarkButton.setToolTipText("Set the current transform as the target");
9911195
992
- Return();
1196
+ oe.ctrlPanel.add(objectCommandsPanel);
1197
+ oe.ctrlPanel.Return();
9931198
994
- normalpushField = AddSlider(oe.ctrlPanel, "Push", -10, 10, 0, -1);
995
- Return();
1199
+ pushPanel = AddSlider(oe.ctrlPanel, "Push", -1, 1, copy.NORMALPUSH, 1.1); // To have the buttons
1200
+ normalpushField = (cNumberSlider)pushPanel.getComponent(1);
1201
+ //Return();
1202
+
1203
+ oe.ctrlPanel.Return();
9961204
9971205 // oe.ctrlPanel.add(stepButton = new cButton("Step"), ObjEditor.aConstraints, oe.ctrlPanel.getComponentCount() - 2);
9981206 // ObjEditor.aConstraints.gridx += 1;
....@@ -1087,7 +1295,7 @@
10871295 oe.aConstraints.gridwidth = 1;
10881296 /**/
10891297 nameField = AddText(oe.ctrlPanel, copy.GetName());
1090
- Return();
1298
+ oe.ctrlPanel.Return();
10911299
10921300 //ctrlPanel.add(textureButton = new Button("Texture..."));
10931301 //textureButton.setEnabled(false);
....@@ -1191,8 +1399,11 @@
11911399 //worldPanel.setName("World");
11921400 centralPanel = new cGridBag();
11931401 centralPanel.preferredWidth = 20;
1194
- timelinePanel = new JPanel(new BorderLayout());
1195
- timelineMenubar = new timeflow.app.TimeflowApp().TimeFlowWindow(timelinePanel);
1402
+
1403
+ if (Globals.ADVANCED)
1404
+ {
1405
+ timelinePanel = new JPanel(new BorderLayout());
1406
+ timelineMenubar = new timeflow.app.TimeflowApp().TimeFlowWindow(timelinePanel);
11961407
11971408 cameraPanel = new JSplitPane(JSplitPane.VERTICAL_SPLIT, cameraView, timelinePanel);
11981409 cameraPanel.setContinuousLayout(true);
....@@ -1201,7 +1412,10 @@
12011412 // cameraPanel.setDividerSize(9);
12021413 cameraPanel.setResizeWeight(1.0);
12031414
1415
+ }
1416
+
12041417 centralPanel.add(cameraView);
1418
+ centralPanel.setFocusable(true);
12051419 //frame.setJMenuBar(timelineMenubar);
12061420 //centralPanel.add(timelinePanel);
12071421
....@@ -1264,11 +1478,13 @@
12641478 //JScrollPane tmp = new JScrollPane(ctrlPanel, ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
12651479 //tmp.setName("Edit");
12661480 objectPanel.add(materialPanel);
1267
- JPanel north = new JPanel(new BorderLayout());
1268
- north.setName("Edit");
1269
- north.add(ctrlPanel, BorderLayout.NORTH);
1270
- objectPanel.add(north);
1481
+// JPanel north = new JPanel(new BorderLayout());
1482
+// north.setName("Edit");
1483
+// north.add(ctrlPanel, BorderLayout.NORTH);
1484
+// objectPanel.add(north);
1485
+ objectPanel.add(editPanel);
12711486 objectPanel.add(infoPanel);
1487
+ objectPanel.add(toolboxPanel);
12721488
12731489 /*
12741490 aConstraints.gridx = 0;
....@@ -1277,7 +1493,7 @@
12771493 aConstraints.gridy += 1;
12781494 aConstraints.gridwidth = 1;
12791495 mainPanel.add(objectPanel, aConstraints);
1280
- */
1496
+ */
12811497
12821498 scrollpane = new JScrollPane(mainPanel, ScrollPaneConstants.// VERTICAL_SCROLLBAR_ALWAYS,
12831499 VERTICAL_SCROLLBAR_AS_NEEDED,
....@@ -1289,21 +1505,21 @@
12891505 scrollpane.addMouseWheelListener(this); // Default not fast enough
12901506
12911507 /*JTabbedPane*/ scenePanel = new cGridBag();
1292
- scenePanel.preferredWidth = 7;
1508
+ scenePanel.preferredWidth = 6;
12931509
12941510 JTabbedPane tabbedPane = new JTabbedPane();
12951511 tabbedPane.add(scrollpane);
12961512
1297
- tabbedPane.add(FSPane = new cFileSystemPane(this));
1298
-
1299
- optionsPanel = new JPanel(new GridBagLayout());
1513
+ optionsPanel = new cGridBag().setVertical(false);
13001514
13011515 optionsPanel.setName("Options");
13021516
1303
- AddOptions(optionsPanel, aConstraints);
1517
+ AddOptions(optionsPanel); //, aConstraints);
13041518
13051519 tabbedPane.add(optionsPanel);
13061520
1521
+ tabbedPane.add(FSPane = new cFileSystemPane(this));
1522
+
13071523 scenePanel.add(tabbedPane);
13081524
13091525 /*
....@@ -1395,9 +1611,13 @@
13951611
13961612 // aConstraints = gbc; // (GridBagConstraints) GrafreeD.clone(gbc);
13971613
1398
- frame.setSize(1024, 768);
1399
- frame.show();
1614
+ frame.setSize(1280, 860);
1615
+
1616
+ frame.validate();
1617
+ frame.setVisible(true);
14001618
1619
+ cameraView.requestFocusInWindow();
1620
+
14011621 gridPanel.setDividerLocation(1.0);
14021622
14031623 frame.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
....@@ -1411,7 +1631,7 @@
14111631 });
14121632 }
14131633
1414
- void AddOptions(JPanel panel, GridBagConstraints constraints)
1634
+ void AddOptions(cGridBag panel) //, GridBagConstraints constraints)
14151635 {
14161636 }
14171637
....@@ -1426,260 +1646,161 @@
14261646 ctrlPanel.removeAll();
14271647 }
14281648
1429
- void SetupMaterial(JPanel ctrlPanel)
1649
+ void SetupMaterial(cGridBag panel)
14301650 {
1431
- aConstraints.weighty = 0;
1432
- //aConstraints.weightx = 1;
1433
- /*
1651
+ /*
14341652 ctrlPanel.add(materialLabel = new JLabel("MATERIAL : "), aConstraints);
14351653 materialLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1436
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1437
- aConstraints.gridx += 1;
14381654 */
14391655
1440
- aConstraints.gridwidth = 1;
1441
- ctrlPanel.add(createMaterialButton = new cButton("Create"), aConstraints);
1442
- aConstraints.gridx += 1;
1443
- aConstraints.weighty = 0;
1444
- aConstraints.gridwidth = 1;
1656
+ cGridBag editBar = new cGridBag().setVertical(false);
1657
+
1658
+ editBar.add(createMaterialButton = new cButton("Create", !Grafreed.NIMBUSLAF)); // , aConstraints);
1659
+ createMaterialButton.setToolTipText("Create material");
14451660
14461661 /*
14471662 ctrlPanel.add(resetSlidersButton = new cButton("Reset All"), aConstraints);
1448
- aConstraints.gridx += 1;
1449
- aConstraints.weighty = 0;
1450
- aConstraints.gridwidth = 1;
14511663 */
14521664
1453
- ctrlPanel.add(clearMaterialButton = new cButton("Clear"), aConstraints);
1454
- aConstraints.gridx += 1;
1665
+ editBar.add(clearMaterialButton = new cButton("Clear", !Grafreed.NIMBUSLAF)); // , aConstraints);
1666
+ clearMaterialButton.setToolTipText("Clear material");
1667
+
1668
+ if (Globals.ADVANCED)
1669
+ {
1670
+ editBar.add(resetSlidersButton = new cButton("Reset", !Grafreed.NIMBUSLAF)); // , aConstraints);
1671
+ editBar.add(propagateToggle = new cCheckBox("Prop", propagate)); // , aConstraints);
1672
+ editBar.add(multiplyToggle = new cCheckBox("Mult", false)); // , aConstraints);
1673
+ }
14551674
1456
- ctrlPanel.add(resetSlidersButton = new cButton("Reset"), aConstraints);
1457
-
1458
- aConstraints.gridx += 1;
1459
-
1460
- ctrlPanel.add(propagateToggle = new cCheckBox("Prop", propagate), aConstraints);
1461
-
1462
- aConstraints.gridx += 1;
1463
-
1464
- ctrlPanel.add(multiplyToggle = new cCheckBox("Mult", false), aConstraints);
1465
-
1466
- aConstraints.gridx = 0;
1467
- aConstraints.gridy += 1;
1468
- aConstraints.weighty = 0;
1469
- aConstraints.gridwidth = 1;
1675
+ editBar.preferredHeight = 15;
1676
+
1677
+ panel.add(editBar);
1678
+
14701679 /**/
14711680 //aConstraints.weighty = 0;
14721681 ////aConstraints.weightx = 1;
14731682 //aConstraints.weighty = 1;
14741683 aConstraints.gridwidth = ObjEditor.GRIDWIDTH; // 100;
14751684 //aConstraints.gridx += 1;
1476
- ctrlPanel.add(new JLabel("----------------------------------"), aConstraints);
1477
- aConstraints.weighty = 0;
1478
- aConstraints.gridx = 0;
1479
- aConstraints.gridy += 1;
1480
- aConstraints.gridwidth = 1;
1685
+ //ctrlPanel.add(new JLabel("----------------------------------")); // , aConstraints);
14811686
1482
- ctrlPanel.add(colorLabel = new JLabel("Color/hue"), aConstraints);
1483
- colorLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1484
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1485
- aConstraints.gridx += 1;
1486
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1487
- //aConstraints.weightx = 0;
1488
- ctrlPanel.add(colorField = new NumberSlider(0.001, 1, -0.5), aConstraints);
1489
- aConstraints.gridx = 0;
1490
- aConstraints.gridy += 1;
1491
- aConstraints.gridwidth = 1;
1687
+ cGridBag colorSection = new cGridBag().setVertical(true);
1688
+
1689
+ cGridBag color = new cGridBag();
1690
+ color.add(colorLabel = new JLabel("Color/hue")); // , aConstraints);
1691
+ colorLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1692
+ color.add(colorField = new cNumberSlider(this, 0.001, 1, -0.5)); // , aConstraints);
1693
+ //colorField.preferredWidth = 200;
1694
+ colorSection.add(color);
14921695
1493
- ctrlPanel.add(modulationLabel = new JLabel("Saturation"), aConstraints);
1494
- modulationLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1495
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1496
- aConstraints.gridx += 1;
1497
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1498
- ctrlPanel.add(modulationField = new NumberSlider(0.001, 1, -0.5), aConstraints);
1499
- aConstraints.gridx = 0;
1500
- aConstraints.gridy += 1;
1501
- aConstraints.gridwidth = 1;
1696
+ cGridBag modulation = new cGridBag();
1697
+ modulation.add(modulationLabel = new JLabel("Saturation")); // , aConstraints);
1698
+ modulationLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1699
+ modulation.add(modulationField = new cNumberSlider(this, 0.001, 1, -0.5)); // , aConstraints);
1700
+ colorSection.add(modulation);
15021701
1503
- ctrlPanel.add(textureLabel = new JLabel("Texture"), aConstraints);
1504
- textureLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1505
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1506
- aConstraints.gridx += 1;
1507
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1508
- ctrlPanel.add(textureField = new NumberSlider(0.001, 1, -0.5), aConstraints);
1509
- aConstraints.gridx = 0;
1510
- aConstraints.gridy += 1;
1511
- aConstraints.gridwidth = 1;
1702
+ cGridBag texture = new cGridBag();
1703
+ texture.add(textureLabel = new JLabel("Texture")); // , aConstraints);
1704
+ textureLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1705
+ texture.add(textureField = new cNumberSlider(this, 0.001, 1, -0.5)); // , aConstraints);
1706
+ colorSection.add(texture);
15121707
1513
- ctrlPanel.add(anisoLabel = new JLabel("AnisoU"), aConstraints);
1514
- anisoLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1515
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1516
- aConstraints.gridx += 1;
1517
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1518
- ctrlPanel.add(anisoField = new NumberSlider(0.001, 1, -0.5), aConstraints);
1519
- aConstraints.gridx = 0;
1520
- aConstraints.gridy += 1;
1521
- aConstraints.gridwidth = 1;
1708
+ panel.add(new JSeparator());
1709
+
1710
+ panel.add(colorSection);
1711
+
1712
+ //ctrlPanel.add(new JLabel("----------------------------------")); // , aConstraints);
1713
+
1714
+ cGridBag diffuseSection = new cGridBag().setVertical(true);
1715
+
1716
+ cGridBag diffuse = new cGridBag();
1717
+ diffuse.add(diffuseLabel = new JLabel("Diffuse")); // , aConstraints);
1718
+ diffuseLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1719
+ diffuse.add(diffuseField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1720
+ diffuseSection.add(diffuse);
15221721
1523
- ctrlPanel.add(anisoVLabel = new JLabel("AnisoV"), aConstraints);
1524
- anisoVLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1525
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1526
- aConstraints.gridx += 1;
1527
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1528
- ctrlPanel.add(anisoVField = new NumberSlider(0.001, 1, -0.5), aConstraints);
1529
- aConstraints.gridx = 0;
1530
- aConstraints.gridy += 1;
1531
- aConstraints.gridwidth = 1;
1722
+ cGridBag diffuseness = new cGridBag();
1723
+ diffuseness.add(diffusenessLabel = new JLabel("Diffusion")); // , aConstraints);
1724
+ diffusenessLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1725
+ diffuseness.add(diffusenessField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1726
+ diffuseSection.add(diffuseness);
15321727
1533
- ctrlPanel.add(shadowbiasLabel = new JLabel("Shadowbias"), aConstraints);
1534
- shadowbiasLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1535
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1536
- aConstraints.gridx += 1;
1537
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1538
- ctrlPanel.add(shadowbiasField = new NumberSlider(0.001, 50, -1), aConstraints);
1539
- aConstraints.gridx = 0;
1540
- aConstraints.gridy += 1;
1541
- aConstraints.gridwidth = 1;
1728
+ cGridBag selfshadow = new cGridBag();
1729
+ selfshadow.add(selfshadowLabel = new JLabel("Selfshadow")); // , aConstraints);
1730
+ selfshadowLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1731
+ selfshadow.add(selfshadowField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1732
+ diffuseSection.add(selfshadow);
15421733
1543
- //aConstraints.weighty = 1;
1544
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH; // 100;
1545
- //aConstraints.gridx += 1;
1546
- ctrlPanel.add(new JLabel("----------------------------------"), aConstraints);
1547
- aConstraints.weighty = 0;
1548
- aConstraints.gridx = 0;
1549
- aConstraints.gridy += 1;
1550
- aConstraints.gridwidth = 1;
1734
+ cGridBag sheen = new cGridBag();
1735
+ sheen.add(sheenLabel = new JLabel("Sheen")); // , aConstraints);
1736
+ sheenLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1737
+ sheen.add(sheenField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1738
+ diffuseSection.add(sheen);
15511739
1552
- ctrlPanel.add(diffuseLabel = new JLabel("Diffuse"), aConstraints);
1553
- diffuseLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1554
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1555
- aConstraints.gridx += 1;
1556
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1557
- ctrlPanel.add(diffuseField = new NumberSlider(0.001, 50, -1), aConstraints);
1558
- aConstraints.gridx = 0;
1559
- aConstraints.gridy += 1;
1560
- aConstraints.gridwidth = 1;
1740
+ cGridBag subsurface = new cGridBag();
1741
+ subsurface.add(subsurfaceLabel = new JLabel("Subsurface")); // , aConstraints);
1742
+ subsurfaceLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1743
+ subsurface.add(subsurfaceField = new cNumberSlider(this, 0.001, 1, -0.5)); // , aConstraints);
1744
+ diffuseSection.add(subsurface);
15611745
1562
- ctrlPanel.add(diffusenessLabel = new JLabel("Diffusion"), aConstraints);
1563
- diffusenessLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1564
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1565
- aConstraints.gridx += 1;
1566
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1567
- ctrlPanel.add(diffusenessField = new NumberSlider(0.001, 50, -1), aConstraints);
1568
- aConstraints.gridx = 0;
1569
- aConstraints.gridy += 1;
1570
- aConstraints.gridwidth = 1;
1746
+ cGridBag shadow = new cGridBag();
1747
+ shadow.add(shadowLabel = new JLabel("Shadowing")); // , aConstraints);
1748
+ shadowLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1749
+ shadow.add(shadowField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1750
+ diffuseSection.add(shadow);
15711751
1572
- ctrlPanel.add(selfshadowLabel = new JLabel("Selfshadow"), aConstraints);
1573
- selfshadowLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1574
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1575
- aConstraints.gridx += 1;
1576
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1577
- ctrlPanel.add(selfshadowField = new NumberSlider(0.001, 50, -1), aConstraints);
1578
- aConstraints.gridx = 0;
1579
- aConstraints.gridy += 1;
1580
- aConstraints.gridwidth = 1;
1752
+ cGridBag fakedepth = new cGridBag();
1753
+ fakedepth.add(fakedepthLabel = new JLabel("Fakedepth")); // , aConstraints);
1754
+ fakedepthLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1755
+ fakedepth.add(fakedepthField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1756
+ diffuseSection.add(fakedepth);
15811757
1582
- ctrlPanel.add(sheenLabel = new JLabel("Sheen"), aConstraints);
1583
- sheenLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1584
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1585
- aConstraints.gridx += 1;
1586
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1587
- ctrlPanel.add(sheenField = new NumberSlider(0.001, 50, -1), aConstraints);
1588
- aConstraints.gridx = 0;
1589
- aConstraints.gridy += 1;
1590
- aConstraints.gridwidth = 1;
1758
+ cGridBag shadowbias = new cGridBag();
1759
+ shadowbias.add(shadowbiasLabel = new JLabel("Shadowbias")); // , aConstraints);
1760
+ shadowbiasLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1761
+ shadowbias.add(shadowbiasField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1762
+ diffuseSection.add(shadowbias);
15911763
1592
- ctrlPanel.add(subsurfaceLabel = new JLabel("Subsurface"), aConstraints);
1593
- subsurfaceLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1594
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1595
- aConstraints.gridx += 1;
1596
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1597
- ctrlPanel.add(subsurfaceField = new NumberSlider(0.001, 1, -0.5), aConstraints);
1598
- aConstraints.gridx = 0;
1599
- aConstraints.gridy += 1;
1600
- aConstraints.gridwidth = 1;
1764
+ panel.add(new JSeparator());
1765
+
1766
+ panel.add(diffuseSection);
1767
+
1768
+ //ctrlPanel.add(new JLabel("----------------------------------")); // , aConstraints);
1769
+
1770
+ cGridBag specularSection = new cGridBag().setVertical(true);
16011771
1602
- ctrlPanel.add(shadowLabel = new JLabel("Shadowing"), aConstraints);
1603
- shadowLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1604
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1605
- aConstraints.gridx += 1;
1606
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1607
- ctrlPanel.add(shadowField = new NumberSlider(0.001, 50, -1), aConstraints);
1608
- aConstraints.gridx = 0;
1609
- aConstraints.gridy += 1;
1610
- aConstraints.gridwidth = 1;
1772
+ cGridBag specular = new cGridBag();
1773
+ specular.add(specularLabel = new JLabel("Specular")); // , aConstraints);
1774
+ specularLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1775
+ specular.add(specularField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1776
+ specularSection.add(specular);
16111777
1612
- ctrlPanel.add(fakedepthLabel = new JLabel("Fakedepth"), aConstraints);
1613
- fakedepthLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1614
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1615
- aConstraints.gridx += 1;
1616
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1617
- ctrlPanel.add(fakedepthField = new NumberSlider(0.001, 50, -1), aConstraints);
1618
- aConstraints.gridx = 0;
1619
- aConstraints.gridy += 1;
1620
- aConstraints.gridwidth = 1;
1778
+ cGridBag lightarea = new cGridBag();
1779
+ lightarea.add(lightareaLabel = new JLabel("Lightarea")); // , aConstraints);
1780
+ lightareaLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1781
+ lightarea.add(lightareaField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1782
+ specularSection.add(lightarea);
16211783
1622
- //aConstraints.weighty = 1;
1623
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH; // 100;
1624
- //aConstraints.gridx += 1;
1625
- ctrlPanel.add(new JLabel("----------------------------------"), aConstraints);
1626
- aConstraints.weighty = 0;
1627
- aConstraints.gridx = 0;
1628
- aConstraints.gridy += 1;
1629
- aConstraints.gridwidth = 1;
1784
+ cGridBag shininess = new cGridBag();
1785
+ shininess.add(shininessLabel = new JLabel("Roughness")); // , aConstraints);
1786
+ shininessLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1787
+ shininess.add(shininessField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1788
+ specularSection.add(shininess);
16301789
1631
- ctrlPanel.add(specularLabel = new JLabel("Specular"), aConstraints);
1632
- specularLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1633
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1634
- aConstraints.gridx += 1;
1635
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1636
- ctrlPanel.add(specularField = new NumberSlider(0.001, 50, -1), aConstraints);
1637
- aConstraints.gridx = 0;
1638
- aConstraints.gridy += 1;
1639
- aConstraints.gridwidth = 1;
1790
+ cGridBag metalness = new cGridBag();
1791
+ metalness.add(metalnessLabel = new JLabel("Metalness")); // , aConstraints);
1792
+ metalnessLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1793
+ metalness.add(metalnessField = new cNumberSlider(this, 0.001, 1, -0.5)); // , aConstraints);
1794
+ specularSection.add(metalness);
16401795
1641
- ctrlPanel.add(lightareaLabel = new JLabel("Lightarea"), aConstraints);
1642
- lightareaLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1643
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1644
- aConstraints.gridx += 1;
1645
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1646
- ctrlPanel.add(lightareaField = new NumberSlider(0.001, 50, -1), aConstraints);
1647
- aConstraints.gridx = 0;
1648
- aConstraints.gridy += 1;
1649
- aConstraints.gridwidth = 1;
1796
+ cGridBag velvet = new cGridBag();
1797
+ velvet.add(velvetLabel = new JLabel("Velvet")); // , aConstraints);
1798
+ velvetLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1799
+ velvet.add(velvetField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1800
+ specularSection.add(velvet);
16501801
1651
- ctrlPanel.add(shininessLabel = new JLabel("Roughness"), aConstraints);
1652
- shininessLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1653
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1654
- aConstraints.gridx += 1;
1655
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1656
- ctrlPanel.add(shininessField = new NumberSlider(0.001, 50, -1), aConstraints);
1657
- aConstraints.gridx = 0;
1658
- aConstraints.gridy += 1;
1659
- aConstraints.gridwidth = 1;
1660
-
1661
- ctrlPanel.add(metalnessLabel = new JLabel("Metalness"), aConstraints);
1662
- metalnessLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1663
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1664
- aConstraints.gridx += 1;
1665
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1666
- ctrlPanel.add(metalnessField = new NumberSlider(0.001, 1, -0.5), aConstraints);
1667
- aConstraints.gridx = 0;
1668
- aConstraints.gridy += 1;
1669
- aConstraints.gridwidth = 1;
1670
-
1671
- ctrlPanel.add(velvetLabel = new JLabel("Velvet"), aConstraints);
1672
- velvetLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1673
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1674
- aConstraints.gridx += 1;
1675
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1676
- ctrlPanel.add(velvetField = new NumberSlider(0.001, 50, -1), aConstraints);
1677
- aConstraints.gridx = 0;
1678
- aConstraints.gridy += 1;
1679
- aConstraints.gridwidth = 1;
1680
-
1681
- shiftField = AddSlider(ctrlPanel, "Shift", 0.001, 50, copy.material.shift, -1);
1682
- Return();
1802
+ shiftField = (cNumberSlider)AddSlider(specularSection, "Shift", 0.001, 50, copy.material.shift, -1).getComponent(1);
1803
+ //Return();
16831804 // ctrlPanel.add(shiftLabel = new JLabel("Shift"), aConstraints);
16841805 // shiftLabel.setHorizontalAlignment(SwingConstants.TRAILING);
16851806 // aConstraints.fill = GridBagConstraints.HORIZONTAL;
....@@ -1690,130 +1811,105 @@
16901811 // aConstraints.gridy += 1;
16911812 // aConstraints.gridwidth = 1;
16921813
1693
- //aConstraints.weighty = 1;
1694
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH; // 100;
1695
- //aConstraints.gridx += 1;
1696
- ctrlPanel.add(new JLabel("----------------------------------"), aConstraints);
1697
- aConstraints.weighty = 0;
1698
- aConstraints.gridx = 0;
1699
- aConstraints.gridy += 1;
1700
- aConstraints.gridwidth = 1;
1814
+ cGridBag anisoU = new cGridBag();
1815
+ anisoU.add(anisoLabel = new JLabel("AnisoU")); // , aConstraints);
1816
+ anisoLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1817
+ anisoU.add(anisoField = new cNumberSlider(this, 0.001, 1, -0.5)); // , aConstraints);
1818
+ specularSection.add(anisoU);
17011819
1702
- ctrlPanel.add(cameraLabel = new JLabel("GlobalLight"), aConstraints);
1703
- cameraLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1704
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1705
- aConstraints.gridx += 1;
1706
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1707
- ctrlPanel.add(cameraField = new NumberSlider(0.001, 50, -1), aConstraints);
1708
- aConstraints.gridx = 0;
1709
- aConstraints.gridy += 1;
1710
- aConstraints.gridwidth = 1;
1820
+ cGridBag anisoV = new cGridBag();
1821
+ anisoV.add(anisoVLabel = new JLabel("AnisoV")); // , aConstraints);
1822
+ anisoVLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1823
+ anisoV.add(anisoVField = new cNumberSlider(this, 0.001, 1, -0.5)); // , aConstraints);
1824
+ specularSection.add(anisoV);
17111825
1712
- ctrlPanel.add(ambientLabel = new JLabel("Ambient"), aConstraints);
1713
- ambientLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1714
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1715
- aConstraints.gridx += 1;
1716
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1717
- ctrlPanel.add(ambientField = new NumberSlider(0.001, 50, -1), aConstraints);
1718
- aConstraints.gridx = 0;
1719
- aConstraints.gridy += 1;
1720
- aConstraints.gridwidth = 1;
17211826
1722
- ctrlPanel.add(backlitLabel = new JLabel("Backlit"), aConstraints);
1723
- backlitLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1724
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1725
- aConstraints.gridx += 1;
1726
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1727
- ctrlPanel.add(backlitField = new NumberSlider(0.001, 50, -1), aConstraints);
1728
- aConstraints.gridx = 0;
1729
- aConstraints.gridy += 1;
1730
- aConstraints.gridwidth = 1;
1827
+ panel.add(new JSeparator());
1828
+
1829
+ panel.add(specularSection);
1830
+
1831
+ //ctrlPanel.add(new JLabel("----------------------------------")); // , aConstraints);
1832
+
1833
+ //cGridBag globalSection = new cGridBag().setVertical(true);
17311834
1732
- ctrlPanel.add(opacityLabel = new JLabel("Opacity"), aConstraints);
1733
- opacityLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1734
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1735
- aConstraints.gridx += 1;
1736
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1737
- ctrlPanel.add(opacityField = new NumberSlider(0.001, 1, -0.5), aConstraints);
1738
- aConstraints.gridx = 0;
1739
- aConstraints.gridy += 1;
1740
- aConstraints.gridwidth = 1;
1741
- aConstraints.weighty = 0;
1835
+ cGridBag camera = new cGridBag();
1836
+ camera.add(cameraLabel = new JLabel("GlobalLight")); // , aConstraints);
1837
+ cameraLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1838
+ camera.add(cameraField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1839
+ colorSection.add(camera);
17421840
1743
- ctrlPanel.add(bumpLabel = new JLabel("Bump"), aConstraints);
1744
- bumpLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1745
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1746
- aConstraints.gridx += 1;
1747
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1748
- ctrlPanel.add(bumpField = new NumberSlider(0.0, 2), aConstraints);
1749
- aConstraints.gridx = 0;
1750
- aConstraints.gridy += 1;
1751
- aConstraints.gridwidth = 1;
1841
+ cGridBag ambient = new cGridBag();
1842
+ ambient.add(ambientLabel = new JLabel("Ambient")); // , aConstraints);
1843
+ ambientLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1844
+ ambient.add(ambientField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1845
+ colorSection.add(ambient);
17521846
1753
- ctrlPanel.add(noiseLabel = new JLabel("Noise"), aConstraints);
1754
- noiseLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1755
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1756
- aConstraints.gridx += 1;
1757
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1758
- ctrlPanel.add(noiseField = new NumberSlider(0.0, 1/*5*/), aConstraints);
1759
- aConstraints.gridx = 0;
1760
- aConstraints.gridy += 1;
1761
- aConstraints.gridwidth = 1;
1847
+ cGridBag backlit = new cGridBag();
1848
+ backlit.add(backlitLabel = new JLabel("Backlit")); // , aConstraints);
1849
+ backlitLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1850
+ backlit.add(backlitField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1851
+ colorSection.add(backlit);
17621852
1763
- ctrlPanel.add(powerLabel = new JLabel("Turbulance"), aConstraints);
1764
- powerLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1765
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1766
- aConstraints.gridx += 1;
1767
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1768
- ctrlPanel.add(powerField = new NumberSlider(0.0, 5), aConstraints);
1769
- aConstraints.gridx = 0;
1770
- aConstraints.gridy += 1;
1771
- aConstraints.gridwidth = 1;
1853
+ cGridBag opacity = new cGridBag();
1854
+ opacity.add(opacityLabel = new JLabel("Opacity")); // , aConstraints);
1855
+ opacityLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1856
+ opacity.add(opacityField = new cNumberSlider(this, 0.001, 1, -0.5)); // , aConstraints);
1857
+ colorSection.add(opacity);
17721858
1773
- ctrlPanel.add(borderfadeLabel = new JLabel("Borderfade"), aConstraints);
1774
- borderfadeLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1775
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1776
- aConstraints.gridx += 1;
1777
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1778
- ctrlPanel.add(borderfadeField = new NumberSlider(0.0, 2), aConstraints);
1779
- aConstraints.gridx = 0;
1780
- aConstraints.gridy += 1;
1781
- aConstraints.gridwidth = 1;
1859
+ //panel.add(new JSeparator());
1860
+
1861
+ //panel.add(globalSection);
1862
+
1863
+ //ctrlPanel.add(new JLabel("----------------------------------")); // , aConstraints);
1864
+
1865
+ cGridBag textureSection = new cGridBag().setVertical(true);
17821866
1783
- ctrlPanel.add(fogLabel = new JLabel("Punch"), aConstraints);
1784
- fogLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1785
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1786
- aConstraints.gridx += 1;
1787
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1788
- ctrlPanel.add(fogField = new NumberSlider(0.0, 20), aConstraints);
1789
- aConstraints.gridx = 0;
1790
- aConstraints.gridy += 1;
1791
- aConstraints.gridwidth = 1;
1867
+ cGridBag bump = new cGridBag();
1868
+ bump.add(bumpLabel = new JLabel("Bump")); // , aConstraints);
1869
+ bumpLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1870
+ bump.add(bumpField = new cNumberSlider(this, 0.0, 2)); // , aConstraints);
1871
+ textureSection.add(bump);
17921872
1793
- ctrlPanel.add(opacityPowerLabel = new JLabel("Halo"), aConstraints);
1794
- opacityPowerLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1795
- aConstraints.fill = GridBagConstraints.HORIZONTAL;
1796
- aConstraints.gridx += 1;
1797
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH;
1798
- ctrlPanel.add(opacityPowerField = new NumberSlider(0.0, 10 /*10 dec 2013*/), aConstraints);
1799
- aConstraints.gridx = 0;
1800
- aConstraints.gridy += 1;
1801
- aConstraints.gridwidth = 1;
1873
+ cGridBag noise = new cGridBag();
1874
+ noise.add(noiseLabel = new JLabel("Noise")); // , aConstraints);
1875
+ noiseLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1876
+ noise.add(noiseField = new cNumberSlider(this, 0.0, 1/*5*/)); // , aConstraints);
1877
+ textureSection.add(noise);
18021878
1803
- //aConstraints.weighty = 1;
1804
- aConstraints.gridwidth = ObjEditor.GRIDWIDTH; // 100;
1805
- //aConstraints.gridx += 1;
1806
- ctrlPanel.add(new JLabel("----------------------------------"), aConstraints);
1807
- aConstraints.weighty = 0;
1879
+ cGridBag power = new cGridBag();
1880
+ power.add(powerLabel = new JLabel("Turbulance")); // , aConstraints);
1881
+ powerLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1882
+ power.add(powerField = new cNumberSlider(this, 0.0, 5)); // , aConstraints);
1883
+ textureSection.add(power);
18081884
1809
- aConstraints.gridx = 0;
1810
- aConstraints.gridy = 0;
1811
- aConstraints.gridwidth = 1;
1885
+ cGridBag borderfade = new cGridBag();
1886
+ borderfade.add(borderfadeLabel = new JLabel("Borderfade")); // , aConstraints);
1887
+ borderfadeLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1888
+ borderfade.add(borderfadeField = new cNumberSlider(this, 0.0, 2)); // , aConstraints);
1889
+ textureSection.add(borderfade);
1890
+
1891
+ cGridBag fog = new cGridBag();
1892
+ fog.add(fogLabel = new JLabel("Punch")); // , aConstraints);
1893
+ fogLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1894
+ fog.add(fogField = new cNumberSlider(this, 0.0, 20)); // , aConstraints);
1895
+ textureSection.add(fog);
1896
+
1897
+ cGridBag opacityPower = new cGridBag();
1898
+ opacityPower.add(opacityPowerLabel = new JLabel("Halo")); // , aConstraints);
1899
+ opacityPowerLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1900
+ opacityPower.add(opacityPowerField = new cNumberSlider(this, 0.0, 10 /*10 dec 2013*/)); // , aConstraints);
1901
+ textureSection.add(opacityPower);
1902
+
1903
+ panel.add(new JSeparator());
1904
+
1905
+ panel.add(textureSection);
1906
+
1907
+ //ctrlPanel.add(new JLabel("----------------------------------")); // , aConstraints);
18121908
18131909 SetMaterial(copy); // .GetMaterial());
18141910
1815
- colorField.addChangeListener(this);
1816
- modulationField.addChangeListener(this);
1911
+ //colorField.addChangeListener(this);
1912
+// modulationField.addChangeListener(this);
18171913 metalnessField.addChangeListener(this);
18181914 diffuseField.addChangeListener(this);
18191915 specularField.addChangeListener(this);
....@@ -1843,12 +1939,15 @@
18431939 opacityPowerField.addChangeListener(this);
18441940 /**/
18451941
1846
- resetSlidersButton.addActionListener(this);
18471942 clearMaterialButton.addActionListener(this);
18481943 createMaterialButton.addActionListener(this);
1849
-
1850
- propagateToggle.addItemListener(this);
1851
- multiplyToggle.addItemListener(this);
1944
+
1945
+ if (Globals.ADVANCED)
1946
+ {
1947
+ resetSlidersButton.addActionListener(this);
1948
+ propagateToggle.addItemListener(this);
1949
+ multiplyToggle.addItemListener(this);
1950
+ }
18521951 }
18531952
18541953 void DropFile(java.io.File[] files, boolean textures)
....@@ -2019,7 +2118,7 @@
20192118
20202119 //? flashIt = false;
20212120 CameraPane pane = (CameraPane) cameraView;
2022
- pane.clickStart(location.x, location.y, 0);
2121
+ pane.clickStart(location.x, location.y, 0, 0);
20232122 pane.clickEnd(location.x, location.y, 0, true);
20242123
20252124 if (group.selection.size() == 1)
....@@ -2068,6 +2167,7 @@
20682167 e2.printStackTrace();
20692168 }
20702169 }
2170
+
20712171 LoadJMEThread loadThread;
20722172
20732173 class LoadJMEThread extends Thread
....@@ -2125,6 +2225,7 @@
21252225 //LoadFile0(filename, converter);
21262226 }
21272227 }
2228
+
21282229 LoadOBJThread loadObjThread;
21292230
21302231 class LoadOBJThread extends Thread
....@@ -2203,19 +2304,19 @@
22032304
22042305 void LoadObjFile(String fullname)
22052306 {
2206
- /*
2307
+ System.out.println("Loading " + fullname);
2308
+ /**/
22072309 //lastFilename = fullname;
22082310 if(loadObjThread == null)
22092311 {
2210
- loadObjThread = new LoadOBJThread();
2211
- loadObjThread.start();
2312
+ loadObjThread = new LoadOBJThread();
2313
+ loadObjThread.start();
22122314 }
22132315
22142316 loadObjThread.add(fullname);
2215
- */
2317
+ /**/
22162318
2217
- System.out.println("Loading " + fullname);
2218
- makeSomething(new FileObject(fullname, true), true);
2319
+ //makeSomething(new FileObject(fullname, true), true);
22192320 }
22202321
22212322 void LoadGFDFile(String fullname)
....@@ -2476,11 +2577,11 @@
24762577
24772578 void ImportJME(com.jmex.model.converters.FormatConverter converter, String ext, String dialogName)
24782579 {
2479
- if (GrafreeD.standAlone)
2580
+ if (Grafreed.standAlone)
24802581 {
24812582 /**/
24822583 FileDialog browser = new FileDialog(frame, dialogName, FileDialog.LOAD);
2483
- browser.show();
2584
+ browser.setVisible(true);
24842585 String filename = browser.getFile();
24852586 if (filename != null && filename.length() > 0)
24862587 {
....@@ -2625,6 +2726,7 @@
26252726 }
26262727 if (input == null)
26272728 {
2729
+ new Exception().printStackTrace();
26282730 System.exit(0);
26292731 }
26302732
....@@ -2831,6 +2933,8 @@
28312933
28322934 void SetMaterial(Object3D object)
28332935 {
2936
+ latestObject = object;
2937
+
28342938 cMaterial mat = object.material;
28352939
28362940 if (mat == null)
....@@ -2839,7 +2943,8 @@
28392943 return;
28402944 }
28412945
2842
- multiplyToggle.setSelected(mat.multiply);
2946
+ if (multiplyToggle != null)
2947
+ multiplyToggle.setSelected(mat.multiply);
28432948
28442949 assert (object.projectedVertices != null);
28452950
....@@ -2941,12 +3046,17 @@
29413046 // }
29423047
29433048 /**/
2944
- if (deselect)
3049
+ if (deselect || child == null)
29453050 {
29463051 //group.deselectAll();
29473052 //freeze = true;
29483053 GetTree().clearSelection();
29493054 //freeze = false;
3055
+
3056
+ if (child == null)
3057
+ {
3058
+ return;
3059
+ }
29503060 }
29513061
29523062 //group.addSelectee(child);
....@@ -3015,7 +3125,7 @@
30153125 cameraView.ToggleDL();
30163126 cameraView.repaint();
30173127 return;
3018
- } else if (event.getSource() == toggleTextureItem)
3128
+ } else if (event.getSource() == toggleTextureItem || event.getSource() == toggleTextureCB)
30193129 {
30203130 cameraView.ToggleTexture();
30213131 // june 2013 copy.HardTouch();
....@@ -3054,9 +3164,9 @@
30543164 frame.validate();
30553165
30563166 return;
3057
- } else if (event.getSource() == toggleRandomItem)
3167
+ } else if (event.getSource() == toggleSwitchItem || event.getSource() == toggleSwitchCB)
30583168 {
3059
- cameraView.ToggleRandom();
3169
+ cameraView.ToggleSwitch();
30603170 cameraView.repaint();
30613171 return;
30623172 } else if (event.getSource() == toggleHandleItem)
....@@ -3085,6 +3195,10 @@
30853195 {
30863196 copy.live ^= true;
30873197 return;
3198
+ } else if (event.getSource() == selectCB)
3199
+ {
3200
+ copy.dontselect ^= true;
3201
+ return;
30883202 } else if (event.getSource() == hideCB)
30893203 {
30903204 copy.hide ^= true;
....@@ -3099,6 +3213,7 @@
30993213 if (event.getSource() == randomCB)
31003214 {
31013215 copy.random ^= true;
3216
+ objEditor.refreshContents();
31023217 return;
31033218 }
31043219 if (event.getSource() == speedupCB)
....@@ -3122,8 +3237,9 @@
31223237
31233238 public void actionPerformed(ActionEvent event)
31243239 {
3240
+ Object source = event.getSource();
31253241 // SCRIPT DIALOG
3126
- if (event.getSource() == okbutton)
3242
+ if (source == okbutton)
31273243 {
31283244 textpanel.setVisible(false);
31293245 textpanel.remove(textarea);
....@@ -3135,7 +3251,7 @@
31353251 textarea = null;
31363252 textpanel = null;
31373253 }
3138
- if (event.getSource() == cancelbutton)
3254
+ if (source == cancelbutton)
31393255 {
31403256 textpanel.setVisible(false);
31413257 textpanel.remove(textarea);
....@@ -3147,50 +3263,50 @@
31473263 //applySelf();
31483264 //client.refreshEditWindow();
31493265 //refreshContents();
3150
- if (event.getSource() == nameField)
3266
+ if (source == nameField)
31513267 {
31523268 //System.out.println("ObjEditor " + event);
31533269 applySelf0(true);
31543270 //parent.applySelf();
31553271 objEditor.refreshContents();
3156
- } else if (event.getSource() == resetButton)
3272
+ } else if (source == resetButton)
31573273 {
31583274 CameraPane.fullreset = true;
31593275 copy.Reset(); // ResetMeshes();
31603276 copy.Touch();
31613277 objEditor.refreshContents();
3162
- } else if (event.getSource() == stepItem)
3278
+ } else if (source == stepItem)
31633279 {
31643280 //cameraView.ONESTEP = true;
31653281 Globals.ONESTEP = true;
31663282 cameraView.repaint();
31673283 return;
3168
- } else if (event.getSource() == stepButton)
3284
+ } else if (source == stepButton)
31693285 {
31703286 copy.Step();
31713287 copy.Touch();
31723288 objEditor.refreshContents();
3173
- } else if (event.getSource() == slowerButton)
3289
+ } else if (source == slowerButton)
31743290 {
31753291 copy.Slower();
31763292 copy.Touch();
31773293 objEditor.refreshContents();
3178
- } else if (event.getSource() == fasterButton)
3294
+ } else if (source == fasterButton)
31793295 {
31803296 copy.Faster();
31813297 copy.Touch();
31823298 objEditor.refreshContents();
3183
- } else if (event.getSource() == remarkButton)
3299
+ } else if (source == remarkButton)
31843300 {
31853301 copy.Remark();
31863302 copy.Touch();
31873303 objEditor.refreshContents();
3188
- } else if (event.getSource() == stepAllButton)
3304
+ } else if (source == stepAllButton)
31893305 {
31903306 copy.StepAll();
31913307 copy.Touch();
31923308 objEditor.refreshContents();
3193
- } else if (event.getSource() == resetAllButton)
3309
+ } else if (source == resetAllButton)
31943310 {
31953311 //CameraPane.fullreset = true;
31963312 copy.ResetAll(); // ResetMeshes();
....@@ -3223,53 +3339,75 @@
32233339 // Close();
32243340 // }
32253341 // else
3226
- if (event.getSource() == resetSlidersButton)
3342
+ if (source == resetSlidersButton)
32273343 {
32283344 ResetSliders();
3229
- } else if (event.getSource() == clearMaterialButton)
3345
+ } else if (source == clearMaterialButton)
32303346 {
32313347 ClearMaterial();
3232
- } else if (event.getSource() == createMaterialButton)
3348
+ } else if (source == createMaterialButton)
32333349 {
32343350 CreateMaterial();
3235
- } else if (event.getSource() == clearPanelButton)
3351
+ } else if (source == clearPanelButton)
32363352 {
32373353 copy.ClearUI();
32383354 refreshContents(true);
3239
- } /*
3240
- }
3241
-
3242
- public boolean action(Event event, Object arg)
3243
- {
3244
- */ else if (event.getSource() == closeItem)
3355
+ } else if (source == importGFDItem)
3356
+ {
3357
+ ImportGFD();
3358
+ } else
3359
+ if (source == importVRMLX3DItem)
3360
+ {
3361
+ ImportVRMLX3D();
3362
+ } else
3363
+ if (source == import3DSItem)
3364
+ {
3365
+ objEditor.ImportJME(new com.jmex.model.converters.MaxToJme(), "3ds", "Import 3DS");
3366
+ } else
3367
+ if (source == importOBJItem)
3368
+ {
3369
+ //objEditor.ImportJME(new com.jmex.model.converters.ObjToJme(), "obj", "Import OBJ");
3370
+ FileDialog browser = new FileDialog(frame, "Import OBJ", FileDialog.LOAD);
3371
+ browser.setVisible(true);
3372
+ String filename = browser.getFile();
3373
+ if (filename != null && filename.length() > 0)
3374
+ {
3375
+ String fullname = browser.getDirectory() + filename;
3376
+ makeSomething(ReadOBJ(fullname), true);
3377
+ }
3378
+ } else
3379
+ if (source == closeItem)
32453380 {
32463381 Close();
32473382 //return true;
3248
- } else if (event.getSource() == loadItem)
3383
+ } else if (source == loadItem)
32493384 {
32503385 load();
32513386 //return true;
3252
- } else if (event.getSource() == saveItem)
3387
+ } else if (source == newItem)
3388
+ {
3389
+ New();
3390
+ } else if (source == saveItem)
32533391 {
32543392 save();
32553393 //return true;
3256
- } else if (event.getSource() == saveAsItem)
3394
+ } else if (source == saveAsItem)
32573395 {
32583396 saveAs();
32593397 //return true;
3260
- } else if (event.getSource() == reexportItem)
3398
+ } else if (source == reexportItem)
32613399 {
32623400 reexport();
32633401 //return true;
3264
- } else if (event.getSource() == exportAsItem)
3402
+ } else if (source == exportAsItem)
32653403 {
32663404 export();
32673405 //return true;
3268
- } else if (event.getSource() == povItem)
3406
+ } else if (source == povItem)
32693407 {
32703408 generatePOV();
32713409 //return true;
3272
- } else if (event.getSource() == zBufferItem)
3410
+ } else if (source == zBufferItem)
32733411 {
32743412 try
32753413 {
....@@ -3291,21 +3429,8 @@
32913429 cameraView.repaint();
32923430 //return true;
32933431 }
3294
- */ else if (event.getSource() == editCameraItem)
3295
- {
3296
- cameraView.ProtectCamera();
3297
- cameraView.repaint();
3298
- return;
3299
- } else if (event.getSource() == revertCameraItem)
3300
- {
3301
- cameraView.RevertCamera();
3302
- cameraView.repaint();
3303
- return;
3304
-// } else if (event.getSource() == textureButton)
3305
-// {
3306
-// return; // true;
3307
- } else // combos...
3308
- if (event.getSource() == texresMenu)
3432
+ */ else // combos...
3433
+ if (source == texresMenu)
33093434 {
33103435 System.err.println("Object = " + copy + "; change value " + copy.texres + " to " + texresMenu.getSelectedIndex());
33113436 copy.texres = texresMenu.getSelectedIndex();
....@@ -3317,12 +3442,289 @@
33173442 }
33183443 }
33193444
3445
+ void New()
3446
+ {
3447
+ while (copy.Size() > 1)
3448
+ {
3449
+ copy.remove(1);
3450
+ }
3451
+
3452
+ ResetModel();
3453
+ objEditor.refreshContents();
3454
+ }
3455
+
3456
+ static public byte[] Compress(Object3D o)
3457
+ {
3458
+ try
3459
+ {
3460
+ ByteArrayOutputStream baos = new ByteArrayOutputStream();
3461
+ java.util.zip.GZIPOutputStream zstream = new java.util.zip.GZIPOutputStream(baos);
3462
+ ObjectOutputStream out = new ObjectOutputStream(zstream);
3463
+
3464
+ Object3D parent = o.parent;
3465
+ o.parent = null;
3466
+
3467
+ out.writeObject(o);
3468
+
3469
+ o.parent = parent;
3470
+
3471
+ out.flush();
3472
+
3473
+ zstream.close();
3474
+ out.close();
3475
+
3476
+ return baos.toByteArray();
3477
+ } catch (Exception e)
3478
+ {
3479
+ System.err.println(e);
3480
+ return null;
3481
+ }
3482
+ }
3483
+
3484
+ static public Object Uncompress(byte[] bytes)
3485
+ {
3486
+ System.out.println("#bytes = " + bytes.length);
3487
+ try
3488
+ {
3489
+ ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
3490
+ java.util.zip.GZIPInputStream istream = new java.util.zip.GZIPInputStream(bais);
3491
+ ObjectInputStream in = new ObjectInputStream(istream);
3492
+ Object obj = in.readObject();
3493
+ in.close();
3494
+
3495
+ return obj;
3496
+ } catch (Exception e)
3497
+ {
3498
+ System.err.println(e);
3499
+ return null;
3500
+ }
3501
+ }
3502
+
3503
+ static public Object clone(Object o)
3504
+ {
3505
+ try
3506
+ {
3507
+ ByteArrayOutputStream baos = new ByteArrayOutputStream();
3508
+ ObjectOutputStream out = new ObjectOutputStream(baos);
3509
+
3510
+ out.writeObject(o);
3511
+
3512
+ out.flush();
3513
+ out.close();
3514
+
3515
+ byte[] bytes = baos.toByteArray();
3516
+
3517
+ System.out.println("clone = " + bytes.length);
3518
+
3519
+ ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
3520
+ ObjectInputStream in = new ObjectInputStream(bais);
3521
+ Object obj = in.readObject();
3522
+ in.close();
3523
+
3524
+ return obj;
3525
+ } catch (Exception e)
3526
+ {
3527
+ System.err.println(e);
3528
+ return null;
3529
+ }
3530
+ }
3531
+
3532
+ cRadio GetCurrentTab()
3533
+ {
3534
+ cRadio ab;
3535
+ for (java.util.Enumeration e = buttonGroup.getElements(); e.hasMoreElements();)
3536
+ {
3537
+ ab = (cRadio)e.nextElement();
3538
+ if(ab.GetObject() == copy)
3539
+ {
3540
+ return ab;
3541
+ }
3542
+ }
3543
+
3544
+ return null;
3545
+ }
3546
+
3547
+ java.util.Hashtable<java.util.UUID, Object3D> hashtable = new java.util.Hashtable<java.util.UUID, Object3D>();
3548
+
3549
+ public void Save()
3550
+ {
3551
+ System.err.println("Save");
3552
+
3553
+ cRadio tab = GetCurrentTab();
3554
+
3555
+ boolean temp = CameraPane.SWITCH;
3556
+ CameraPane.SWITCH = false;
3557
+
3558
+ copy.ExtractBigData(hashtable);
3559
+
3560
+ byte[] compress = Compress(copy);
3561
+
3562
+ //EditorFrame.m_MainFrame.requestFocusInWindow();
3563
+ tab.graphs[tab.undoindex++] = compress;
3564
+
3565
+ copy.RestoreBigData(hashtable);
3566
+
3567
+ CameraPane.SWITCH = temp;
3568
+
3569
+ //assert(hashtable.isEmpty());
3570
+
3571
+ for (int i = tab.undoindex; i < tab.graphs.length; i++)
3572
+ {
3573
+ tab.graphs[i] = null;
3574
+ }
3575
+
3576
+ SetUndoStates();
3577
+
3578
+ // test save
3579
+ if (false)
3580
+ {
3581
+ try
3582
+ {
3583
+ FileOutputStream ostream = new FileOutputStream("save" + tab.undoindex);
3584
+ ObjectOutputStream p = new ObjectOutputStream(ostream);
3585
+
3586
+ p.writeObject(copy);
3587
+
3588
+ p.flush();
3589
+
3590
+ ostream.close();
3591
+ } catch (Exception e)
3592
+ {
3593
+ e.printStackTrace();
3594
+ }
3595
+ }
3596
+ }
3597
+
3598
+ void CopyChanged(Object3D obj)
3599
+ {
3600
+ SetUndoStates();
3601
+
3602
+ boolean temp = CameraPane.SWITCH;
3603
+ CameraPane.SWITCH = false;
3604
+
3605
+ copy.ExtractBigData(hashtable);
3606
+
3607
+ copy.clear();
3608
+
3609
+ for (int i=0; i<obj.Size(); i++)
3610
+ {
3611
+ copy.add(obj.get(i));
3612
+ }
3613
+
3614
+ copy.RestoreBigData(hashtable);
3615
+
3616
+ CameraPane.SWITCH = temp;
3617
+
3618
+ //assert(hashtable.isEmpty());
3619
+
3620
+ copy.Touch();
3621
+
3622
+ ResetModel();
3623
+ copy.HardTouch(); // recompile?
3624
+
3625
+ cRadio ab;
3626
+ for (java.util.Enumeration e = buttonGroup.getElements(); e.hasMoreElements();)
3627
+ {
3628
+ ab = (cRadio)e.nextElement();
3629
+ Object3D test = copy.GetObject(ab.object.GetUUID());
3630
+ //ab.camera = (Camera)copy.GetObject(ab.camera.GetUUID());
3631
+ if (test != null)
3632
+ {
3633
+ test.editWindow = ab.object.editWindow;
3634
+ ab.object = test;
3635
+ }
3636
+ }
3637
+
3638
+ refreshContents();
3639
+ }
3640
+
3641
+ cButton undoButton;
3642
+ cButton redoButton;
3643
+
3644
+ void SetUndoStates()
3645
+ {
3646
+ cRadio tab = GetCurrentTab();
3647
+
3648
+ undoButton.setEnabled(tab.undoindex > 0);
3649
+ redoButton.setEnabled(tab.graphs[tab.undoindex + 1] != null);
3650
+ }
3651
+
3652
+ public void Undo()
3653
+ {
3654
+ System.err.println("Undo");
3655
+
3656
+ cRadio tab = GetCurrentTab();
3657
+
3658
+ if (tab.undoindex == 0)
3659
+ {
3660
+ java.awt.Toolkit.getDefaultToolkit().beep();
3661
+ return;
3662
+ }
3663
+
3664
+ if (tab.graphs[tab.undoindex] == null)
3665
+ {
3666
+ Save();
3667
+ tab.undoindex -= 1;
3668
+ }
3669
+
3670
+ tab.undoindex -= 1;
3671
+
3672
+ CopyChanged((Object3D)Uncompress(tab.graphs[tab.undoindex]));
3673
+ }
3674
+
3675
+ public void Redo()
3676
+ {
3677
+ cRadio tab = GetCurrentTab();
3678
+
3679
+ if (tab.graphs[tab.undoindex + 1] == null)
3680
+ {
3681
+ java.awt.Toolkit.getDefaultToolkit().beep();
3682
+ return;
3683
+ }
3684
+
3685
+ tab.undoindex += 1;
3686
+
3687
+ CopyChanged((Object3D)Uncompress(tab.graphs[tab.undoindex]));
3688
+ }
3689
+
3690
+ void ImportGFD()
3691
+ {
3692
+ FileDialog browser = new FileDialog(objEditor.frame, "Import GrafreeD", FileDialog.LOAD);
3693
+ browser.show();
3694
+ String filename = browser.getFile();
3695
+ if (filename != null && filename.length() > 0)
3696
+ {
3697
+ String fullname = browser.getDirectory() + filename;
3698
+
3699
+ //Object3D readobj =
3700
+ objEditor.ReadGFD(fullname, objEditor);
3701
+ //makeSomething(readobj);
3702
+ }
3703
+ }
3704
+
3705
+ void ImportVRMLX3D()
3706
+ {
3707
+ if (Grafreed.standAlone)
3708
+ {
3709
+ /**/
3710
+ FileDialog browser = new FileDialog(objEditor.frame, "Import VRML/X3D", FileDialog.LOAD);
3711
+ browser.show();
3712
+ String filename = browser.getFile();
3713
+ if (filename != null && filename.length() > 0)
3714
+ {
3715
+ String fullname = browser.getDirectory() + filename;
3716
+ LoadVRMLX3D(fullname);
3717
+ }
3718
+ /**/
3719
+ }
3720
+ }
3721
+
33203722 void ToggleAnimation()
33213723 {
33223724 if (!Globals.ANIMATION)
33233725 {
33243726 FileDialog browser = new FileDialog(frame, "Save Animation As...", FileDialog.SAVE);
3325
- browser.show();
3727
+ browser.setVisible(true);
33263728 String filename = browser.getFile();
33273729 if (filename != null && filename.length() > 0)
33283730 {
....@@ -3332,8 +3734,8 @@
33323734
33333735 Globals.ANIMATION ^= true;
33343736
3335
- GrafreeD.wav.cursor = 0;
3336
- GrafreeD.wav.loop = 0;
3737
+ Grafreed.wav.cursor = 0;
3738
+ Grafreed.wav.loop = 0;
33373739 }
33383740 } else
33393741 {
....@@ -3383,7 +3785,7 @@
33833785 void CreateMaterial()
33843786 {
33853787 //copy.ClearMaterial(); // PATCH
3386
- copy.CreateMaterialS(multiplyToggle.isSelected());
3788
+ copy.CreateMaterialS(multiplyToggle != null && multiplyToggle.isSelected());
33873789 if (copy.selection.size() > 0)
33883790 //SetMaterial(copy);
33893791 {
....@@ -3434,7 +3836,7 @@
34343836 assert false;
34353837 }
34363838
3437
- void EditSelection()
3839
+ void EditSelection(boolean newWindow)
34383840 {
34393841 }
34403842
....@@ -3442,11 +3844,11 @@
34423844 {
34433845 copy.ResetBlockLoop(); // temporary problem
34443846
3445
- boolean random = CameraPane.RANDOM;
3446
- CameraPane.RANDOM = false; // parse everything
3847
+ boolean random = CameraPane.SWITCH;
3848
+ CameraPane.SWITCH = false; // parse everything
34473849 copy.ResetDisplayList();
34483850 copy.HardTouch();
3449
- CameraPane.RANDOM = random;
3851
+ CameraPane.SWITCH = random;
34503852 }
34513853
34523854 // public void applySelf()
....@@ -3516,10 +3918,40 @@
35163918 current.fakedepth = (float) fakedepthField.getFloat();
35173919 current.shadowbias = (float) shadowbiasField.getFloat();
35183920
3519
- if (!NumberSlider.frozen)
3921
+ if (!cNumberSlider.frozen)
35203922 {
35213923 //System.out.println("Propagate = " + propagate);
35223924 copy.UpdateMaterial(anchor, current, propagate);
3925
+
3926
+ if (copy.material != null)
3927
+ {
3928
+ cMaterial mat = copy.material;
3929
+
3930
+ colorField.SetToolTipValue((mat.color));
3931
+ modulationField.SetToolTipValue((mat.modulation));
3932
+ metalnessField.SetToolTipValue((mat.metalness));
3933
+ diffuseField.SetToolTipValue((mat.diffuse));
3934
+ specularField.SetToolTipValue((mat.specular));
3935
+ shininessField.SetToolTipValue((mat.shininess));
3936
+ shiftField.SetToolTipValue((mat.shift));
3937
+ ambientField.SetToolTipValue((mat.ambient));
3938
+ lightareaField.SetToolTipValue((mat.lightarea));
3939
+ diffusenessField.SetToolTipValue((mat.factor));
3940
+ velvetField.SetToolTipValue((mat.velvet));
3941
+ sheenField.SetToolTipValue((mat.sheen));
3942
+ subsurfaceField.SetToolTipValue((mat.subsurface));
3943
+ backlitField.SetToolTipValue((mat.bump));
3944
+ anisoField.SetToolTipValue((mat.aniso));
3945
+ anisoVField.SetToolTipValue((mat.anisoV));
3946
+ cameraField.SetToolTipValue((mat.cameralight));
3947
+ selfshadowField.SetToolTipValue((mat.diffuseness));
3948
+ shadowField.SetToolTipValue((mat.shadow));
3949
+ textureField.SetToolTipValue((mat.texture));
3950
+ opacityField.SetToolTipValue((mat.opacity));
3951
+ fakedepthField.SetToolTipValue((mat.fakedepth));
3952
+ shadowbiasField.SetToolTipValue((mat.shadowbias));
3953
+ }
3954
+
35233955 if (copy.material != null && copy.projectedVertices.length > 0 && copy.projectedVertices[0] != null)
35243956 {
35253957 copy.projectedVertices[0].x = (int) (bumpField.getFloat() * 1000);
....@@ -3564,6 +3996,7 @@
35643996 || e.getSource() == apertureField
35653997 || e.getSource() == shadowblurField)
35663998 {
3999
+ new Exception().printStackTrace();
35674000 System.exit(0);
35684001 cameraView.options1[0] = (float) focusField.getFloat() * 10;
35694002 cameraView.options1[1] = (float) apertureField.getFloat() / 1000;
....@@ -3634,7 +4067,7 @@
36344067 }
36354068
36364069 if (normalpushField != null)
3637
- copy.NORMALPUSH = (float)normalpushField.getFloat()/1000;
4070
+ copy.NORMALPUSH = (float)normalpushField.getFloat()/100;
36384071 }
36394072
36404073 void SnapObject()
....@@ -3889,7 +4322,7 @@
38894322
38904323 radioPanel.revalidate();
38914324 radioPanel.repaint();
3892
- ctrlPanel.revalidate(); // ? new
4325
+ ctrlPanel.validate(); // ? new
38934326 ctrlPanel.repaint();
38944327 }
38954328 }
....@@ -3898,6 +4331,8 @@
38984331
38994332 void makeSomething(Object3D thing, boolean resetmodel) // deselect)
39004333 {
4334
+ if (Globals.SAVEONMAKE) // && resetmodel)
4335
+ Save();
39014336 //Tween.set(thing, 0).target(1).start(tweenManager);
39024337 //Tween.to(thing, 0, 0.5f).target(0).start(tweenManager);
39034338 // if (thing instanceof GenericJointDemo)
....@@ -3984,6 +4419,12 @@
39844419 {
39854420 ResetModel();
39864421 Select(thing.GetTreePath(), true, false); // unselect... false);
4422
+
4423
+ if (thing.Size() == 0)
4424
+ {
4425
+ //EditSelection(false);
4426
+ }
4427
+
39874428 refreshContents();
39884429 }
39894430
....@@ -4101,6 +4542,7 @@
41014542 }
41024543 }
41034544 }
4545
+
41044546 LoadGFDThread loadGFDThread;
41054547
41064548 void ReadGFD(String fullname, iCallBack cb)
....@@ -4120,8 +4562,10 @@
41204562
41214563 try
41224564 {
4565
+ // Try compressed version first.
41234566 java.io.FileInputStream istream = new java.io.FileInputStream(fullname);
4124
- java.io.ObjectInputStream p = new java.io.ObjectInputStream(istream);
4567
+ java.util.zip.GZIPInputStream zstream = new java.util.zip.GZIPInputStream(istream);
4568
+ java.io.ObjectInputStream p = new java.io.ObjectInputStream(zstream);
41254569
41264570 readobj = (Object3D) p.readObject();
41274571 istream.close();
....@@ -4129,7 +4573,20 @@
41294573 readobj.ResetDisplayList();
41304574 } catch (Exception e)
41314575 {
4132
- e.printStackTrace();
4576
+ //e.printStackTrace();
4577
+ try
4578
+ {
4579
+ java.io.FileInputStream istream = new java.io.FileInputStream(fullname);
4580
+ java.io.ObjectInputStream p = new java.io.ObjectInputStream(istream);
4581
+
4582
+ readobj = (Object3D) p.readObject();
4583
+ istream.close();
4584
+
4585
+ readobj.ResetDisplayList();
4586
+ } catch (Exception e2)
4587
+ {
4588
+ e2.printStackTrace();
4589
+ }
41334590 }
41344591 // catch(java.io.StreamCorruptedException e) { e.printStackTrace(); }
41354592 // catch(java.io.IOException e) { System.out.println("IOexception"); e.printStackTrace(); }
....@@ -4175,6 +4632,12 @@
41754632
41764633 void LoadIt(Object obj)
41774634 {
4635
+ if (obj == null)
4636
+ {
4637
+ // Invalid file
4638
+ return;
4639
+ }
4640
+
41784641 System.out.println("Loaded " + obj);
41794642 //new Exception().printStackTrace();
41804643 Object3D readobj = (Object3D) obj;
....@@ -4184,6 +4647,8 @@
41844647
41854648 if (readobj != null)
41864649 {
4650
+ if (Globals.SAVEONMAKE)
4651
+ Save();
41874652 try
41884653 {
41894654 //readobj.deepCopySelf(copy);
....@@ -4246,7 +4711,7 @@
42464711
42474712 void load() // throws ClassNotFoundException
42484713 {
4249
- if (GrafreeD.standAlone)
4714
+ if (Grafreed.standAlone)
42504715 {
42514716 FileDialog browser = new FileDialog(frame, "Load", FileDialog.LOAD);
42524717 browser.show();
....@@ -4333,11 +4798,13 @@
43334798 try
43344799 {
43354800 FileOutputStream ostream = new FileOutputStream(lastname);
4336
- ObjectOutputStream p = new ObjectOutputStream(ostream);
4801
+ java.util.zip.GZIPOutputStream zstream = new java.util.zip.GZIPOutputStream(ostream);
4802
+ ObjectOutputStream p = new ObjectOutputStream(zstream);
43374803
43384804 p.writeObject(copy);
43394805 p.flush();
43404806
4807
+ zstream.close();
43414808 ostream.close();
43424809
43434810 //FileOutputStream fos = new FileOutputStream(fullname);
....@@ -4347,17 +4814,20 @@
43474814 {
43484815 }
43494816 }
4817
+
43504818 String lastname;
43514819
43524820 void saveAs()
43534821 {
4354
- if (GrafreeD.standAlone)
4822
+ if (Grafreed.standAlone)
43554823 {
43564824 FileDialog browser = new FileDialog(frame, "Save As", FileDialog.SAVE);
43574825 browser.setVisible(true);
43584826 String filename = browser.getFile();
43594827 if (filename != null && filename.length() > 0)
43604828 {
4829
+ if (!filename.endsWith(".gfd"))
4830
+ filename += ".gfd";
43614831 lastname = browser.getDirectory() + filename;
43624832 save();
43634833 }
....@@ -4456,13 +4926,13 @@
44564926 try
44574927 {
44584928 FileOutputStream ostream = new FileOutputStream(filename);
4459
- // ?? java.util.zip.GZIPOutputStream zstream = new java.util.zip.GZIPOutputStream(ostream);
4460
- ObjectOutputStream p = new ObjectOutputStream(/*z*/ostream);
4929
+ java.util.zip.GZIPOutputStream zstream = new java.util.zip.GZIPOutputStream(ostream);
4930
+ ObjectOutputStream p = new ObjectOutputStream(zstream);
44614931
44624932 Object3D objectparent = obj.parent;
44634933 obj.parent = null;
44644934
4465
- Object3D object = (Object3D) GrafreeD.clone(obj);
4935
+ Object3D object = (Object3D) Grafreed.clone(obj);
44664936
44674937 obj.parent = objectparent;
44684938
....@@ -4474,8 +4944,8 @@
44744944 p.writeObject(object);
44754945 p.flush();
44764946
4947
+ zstream.close();
44774948 ostream.close();
4478
- // zstream.close();
44794949
44804950 // group.selection.get(0).parent = parent;
44814951 //FileOutputStream fos = new FileOutputStream(fullname);
....@@ -4496,7 +4966,7 @@
44964966 buffer.append("background { color rgb <0.8,0.8,0.8> }\n\n");
44974967 cameraView.renderCamera.generatePOV(buffer, bnds.width, bnds.height);
44984968 copy.generatePOV(buffer);
4499
- if (GrafreeD.standAlone)
4969
+ if (Grafreed.standAlone)
45004970 {
45014971 FileDialog browser = new FileDialog(frame, "Export POV", 1);
45024972 browser.show();
....@@ -4522,7 +4992,8 @@
45224992 Object3D client;
45234993 Object3D copy;
45244994 MenuBar menuBar;
4525
- Menu windowMenu;
4995
+ Menu fileMenu;
4996
+ MenuItem newItem;
45264997 MenuItem loadItem;
45274998 MenuItem saveItem;
45284999 MenuItem saveAsItem;
....@@ -4530,13 +5001,11 @@
45305001 MenuItem reexportItem;
45315002 MenuItem povItem;
45325003 MenuItem closeItem;
4533
- Menu cameraMenu;
5004
+
45345005 CheckboxMenuItem zBufferItem;
45355006 //MenuItem normalLensItem;
4536
- MenuItem editCameraItem;
4537
- MenuItem revertCameraItem;
4538
- CheckboxMenuItem toggleLiveItem;
45395007 MenuItem stepItem;
5008
+ CheckboxMenuItem toggleLiveItem;
45405009 CheckboxMenuItem toggleFullScreenItem;
45415010 CheckboxMenuItem toggleTimelineItem;
45425011 CheckboxMenuItem toggleRenderItem;
....@@ -4545,25 +5014,38 @@
45455014 CheckboxMenuItem toggleFootContactItem;
45465015 CheckboxMenuItem toggleDLItem;
45475016 CheckboxMenuItem toggleTextureItem;
4548
- CheckboxMenuItem toggleRandomItem;
5017
+ CheckboxMenuItem toggleSwitchItem;
45495018 CheckboxMenuItem toggleRootItem;
45505019 CheckboxMenuItem animationItem;
45515020 CheckboxMenuItem toggleHandleItem;
45525021 CheckboxMenuItem togglePaintItem;
45535022 JSplitPane mainPanel;
45545023 JScrollPane scrollpane;
5024
+
45555025 JPanel toolbarPanel;
4556
- JPanel treePanel;
5026
+
5027
+ cGridBag treePanel;
5028
+
45575029 JPanel radioPanel;
45585030 ButtonGroup buttonGroup;
4559
- JPanel ctrlPanel;
4560
- JPanel materialPanel;
5031
+
5032
+ cGridBag toolboxPanel;
5033
+ cGridBag materialPanel;
5034
+ cGridBag ctrlPanel;
5035
+
45615036 JScrollPane infoPanel;
4562
- JPanel optionsPanel;
5037
+
5038
+ cGridBag optionsPanel;
5039
+
45635040 JTabbedPane objectPanel;
5041
+ boolean materialFlushed;
5042
+ Object3D latestObject;
5043
+
45645044 cGridBag XYZPanel;
5045
+
45655046 JSplitPane gridPanel;
45665047 JSplitPane bigPanel;
5048
+
45675049 cGridBag bigThree;
45685050 cGridBag scenePanel;
45695051 cGridBag centralPanel;
....@@ -4619,67 +5101,72 @@
46195101 // MATERIAL
46205102 JLabel materialLabel;
46215103 JLabel colorLabel;
4622
- NumberSlider colorField;
5104
+ cNumberSlider colorField;
46235105 JLabel modulationLabel;
4624
- NumberSlider modulationField;
5106
+ cNumberSlider modulationField;
46255107 JLabel metalnessLabel;
4626
- NumberSlider metalnessField;
5108
+ cNumberSlider metalnessField;
46275109 JLabel diffuseLabel;
4628
- NumberSlider diffuseField;
5110
+ cNumberSlider diffuseField;
46295111 JLabel specularLabel;
4630
- NumberSlider specularField;
5112
+ cNumberSlider specularField;
46315113 JLabel shininessLabel;
4632
- NumberSlider shininessField;
5114
+ cNumberSlider shininessField;
46335115 JLabel shiftLabel;
4634
- NumberSlider shiftField;
5116
+ cNumberSlider shiftField;
46355117 JLabel ambientLabel;
4636
- NumberSlider ambientField;
5118
+ cNumberSlider ambientField;
46375119 JLabel lightareaLabel;
4638
- NumberSlider lightareaField;
5120
+ cNumberSlider lightareaField;
46395121 JLabel diffusenessLabel;
4640
- NumberSlider diffusenessField;
5122
+ cNumberSlider diffusenessField;
46415123 JLabel velvetLabel;
4642
- NumberSlider velvetField;
5124
+ cNumberSlider velvetField;
46435125 JLabel sheenLabel;
4644
- NumberSlider sheenField;
5126
+ cNumberSlider sheenField;
46455127 JLabel subsurfaceLabel;
4646
- NumberSlider subsurfaceField;
5128
+ cNumberSlider subsurfaceField;
46475129 //JLabel bumpLabel;
46485130 //NumberSlider bumpField;
46495131 JLabel backlitLabel;
4650
- NumberSlider backlitField;
5132
+ cNumberSlider backlitField;
46515133 JLabel anisoLabel;
4652
- NumberSlider anisoField;
5134
+ cNumberSlider anisoField;
46535135 JLabel anisoVLabel;
4654
- NumberSlider anisoVField;
5136
+ cNumberSlider anisoVField;
46555137 JLabel cameraLabel;
4656
- NumberSlider cameraField;
5138
+ cNumberSlider cameraField;
46575139 JLabel selfshadowLabel;
4658
- NumberSlider selfshadowField;
5140
+ cNumberSlider selfshadowField;
46595141 JLabel shadowLabel;
4660
- NumberSlider shadowField;
5142
+ cNumberSlider shadowField;
46615143 JLabel textureLabel;
4662
- NumberSlider textureField;
5144
+ cNumberSlider textureField;
46635145 JLabel opacityLabel;
4664
- NumberSlider opacityField;
5146
+ cNumberSlider opacityField;
46655147 JLabel fakedepthLabel;
4666
- NumberSlider fakedepthField;
5148
+ cNumberSlider fakedepthField;
46675149 JLabel shadowbiasLabel;
4668
- NumberSlider shadowbiasField;
5150
+ cNumberSlider shadowbiasField;
46695151 JLabel bumpLabel;
4670
- NumberSlider bumpField;
5152
+ cNumberSlider bumpField;
46715153 JLabel noiseLabel;
4672
- NumberSlider noiseField;
5154
+ cNumberSlider noiseField;
46735155 JLabel powerLabel;
4674
- NumberSlider powerField;
5156
+ cNumberSlider powerField;
46755157 JLabel borderfadeLabel;
4676
- NumberSlider borderfadeField;
5158
+ cNumberSlider borderfadeField;
46775159 JLabel fogLabel;
4678
- NumberSlider fogField;
5160
+ cNumberSlider fogField;
46795161 JLabel opacityPowerLabel;
4680
- NumberSlider opacityPowerField;
4681
- JTree jTree;
5162
+ cNumberSlider opacityPowerField;
5163
+ cTree jTree;
46825164 //ObjectUI parent;
46835165
4684
- NumberSlider normalpushField;
5166
+ cNumberSlider normalpushField;
5167
+
5168
+ private MenuItem importGFDItem;
5169
+ private MenuItem importVRMLX3DItem;
5170
+ private MenuItem import3DSItem;
5171
+ private MenuItem importOBJItem;
46855172 }