Normand Briere
2019-08-22 6a145f6c81dfcbe0653eda27d042efb48daa7512
ObjEditor.java
....@@ -34,6 +34,7 @@
3434 iSendInfo
3535 //KeyListener
3636 {
37
+ public cToggleButton pinButton;
3738 boolean timeline;
3839 boolean wasFullScreen;
3940
....@@ -41,64 +42,143 @@
4142 JFrame frame;
4243
4344 static ObjEditor theFrame;
45
+
46
+ public void AllocProjectedVertices(Object3D object)
47
+ {
48
+ assert (object.projectedVertices != null);
49
+
50
+ if (object.projectedVertices.length <= 2)
51
+ {
52
+ // Side effect...
53
+ Object3D.cVector2[] keep = object.projectedVertices;
54
+ object.projectedVertices = new Object3D.cVector2[3];
55
+ for (int i = 0; i < 3; i++)
56
+ {
57
+ if (i < keep.length)
58
+ {
59
+ object.projectedVertices[i] = keep[i];
60
+ } else
61
+ {
62
+ object.projectedVertices[i] = new Object3D.cVector2();
63
+ }
64
+ /*
65
+ if(keep.length == 0)
66
+ object.projectedVertices[0] = new Object3D.cVector2();
67
+ else
68
+ object.projectedVertices[0] = keep[0];
69
+ object.projectedVertices[1] = new Object3D.cVector2();
70
+ */
71
+ }
72
+ }
73
+ }
74
+
75
+ public Composite CreateCameras()
76
+ {
77
+ Composite cams = new cTemplate();
78
+ cams.name = "Cameras";
79
+ copy.insertElementAt(cams, 0);
80
+
81
+ cams.addChild(new Camera());
82
+ cams.addChild(new Camera(1));
83
+ cams.addChild(new Camera(2));
84
+ cams.addChild(new Camera(3));
85
+ cams.addChild(new Camera(4));
86
+
87
+ return cams;
88
+ }
89
+
90
+ public cGridBag GetSeparator()
91
+ {
92
+ cGridBag separator = new cGridBag();
93
+ separator.add(new JSeparator());
94
+ separator.preferredHeight = 5;
95
+ return separator;
96
+ }
4497
4598 cButton GetButton(String name, boolean border)
4699 {
47
- try
48
- {
49
- ImageIcon icon = GetIcon(name);
100
+ ImageIcon icon = GetIcon(name);
101
+ if (icon != null || name.contains("/"))
50102 return new cButton(icon, border);
51
- }
52
- catch (Exception e)
53
- {
103
+ else
54104 return new cButton(name, border);
55
- }
105
+ }
106
+
107
+ cLabel GetLabel(String name, boolean border)
108
+ {
109
+ //ImageIcon icon = GetIcon(name);
110
+ return new cLabel(GetImage(name), border);
56111 }
57112
58113 cToggleButton GetToggleButton(String name, boolean border)
59114 {
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
- }
115
+ ImageIcon icon = GetIcon(name);
116
+ return new cToggleButton(icon, border);
69117 }
70118
71119 cCheckBox GetCheckBox(String name, boolean border)
72120 {
121
+ ImageIcon icon = GetIcon(name);
122
+ return new cCheckBox(icon, border);
123
+ }
124
+
125
+ static java.util.Hashtable<String, javax.swing.ImageIcon> icons = new java.util.Hashtable<String, javax.swing.ImageIcon>();
126
+
127
+ static ImageIcon GetIcon(String name)
128
+ {
129
+ javax.swing.ImageIcon iconCache = icons.get(name);
130
+ if (iconCache != null)
131
+ {
132
+ return iconCache;
133
+ }
134
+
73135 try
74136 {
75
- ImageIcon icon = GetIcon(name);
76
- return new cCheckBox(icon, border);
137
+ BufferedImage image;
138
+
139
+ if (name.endsWith("jpg"))
140
+ // Much faster!
141
+ image = new sun.awt.image.codec.JPEGImageDecoderImpl(ObjEditor.class.getClassLoader().getResourceAsStream(name)).decodeAsBufferedImage();
142
+ else
143
+ image = javax.imageio.ImageIO.read(ObjEditor.class.getClassLoader().getResourceAsStream(name));
144
+
145
+// if (image.getWidth() > 48 && image.getHeight() > 48)
146
+// {
147
+// BufferedImage resized = new BufferedImage(48, 48, image.getType());
148
+// Graphics2D g = resized.createGraphics();
149
+// g.setRenderingHint(RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR);
150
+// //g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
151
+// g.drawImage(image, 0, 0, 48, 48, 0, 0, image.getWidth(), image.getHeight(), null);
152
+// g.dispose();
153
+//
154
+// image = resized;
155
+// }
156
+
157
+ javax.swing.ImageIcon icon = new javax.swing.ImageIcon(image);
158
+
159
+ icons.put(name, icon);
160
+
161
+ return icon;
77162 }
78163 catch (Exception e)
79164 {
80
- return new cCheckBox(name, border);
165
+ //icons.put(name, null);
166
+ return null;
81167 }
82168 }
83
-
84
- private ImageIcon GetIcon(String name) throws IOException
169
+
170
+ BufferedImage GetImage(String name)
85171 {
86
- BufferedImage image = javax.imageio.ImageIO.read(getClass().getClassLoader().getResourceAsStream(name));
87
-
88
- if (image.getWidth() != 24 && image.getHeight() != 24)
172
+ try
89173 {
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;
174
+ BufferedImage image = javax.imageio.ImageIO.read(getClass().getClassLoader().getResourceAsStream(name));
175
+
176
+ return image;
98177 }
99
-
100
- javax.swing.ImageIcon icon = new javax.swing.ImageIcon(image);
101
- return icon;
178
+ catch (Exception e)
179
+ {
180
+ return null;
181
+ }
102182 }
103183
104184 // SCRIPT
....@@ -282,6 +362,14 @@
282362 client = inClient;
283363 copy = client;
284364
365
+// if (copy.versionlist == null)
366
+// {
367
+// copy.versionlist = new Object3D[100];
368
+// copy.versionindex = -1;
369
+//
370
+// callee.Save(true);
371
+// }
372
+
285373 // "this" is not called: SetupUI2(objEditor);
286374 }
287375
....@@ -295,6 +383,14 @@
295383 client = inClient;
296384 copy = client;
297385
386
+ if (copy.versionlist == null)
387
+ {
388
+ copy.versionlist = new Object3D[100];
389
+ copy.versionindex = -1;
390
+
391
+// Save(true);
392
+ }
393
+
298394 SetupUI2(callee.GetEditor());
299395 }
300396
....@@ -309,14 +405,15 @@
309405 //localCopy.parent = null;
310406
311407 frame = new JFrame();
312
- frame.setUndecorated(true);
408
+ frame.setUndecorated(false);
313409 objEditor = this;
314410 this.callee = callee;
315411
316412 //parent = p;
317413
318414 GraphicsDevice gd = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
319
- System.out.println("getFullScreenWindow? " + gd.getFullScreenWindow());
415
+ if (Globals.DEBUG)
416
+ System.out.println("getFullScreenWindow? " + gd.getFullScreenWindow());
320417 //gd.setFullScreenWindow(this);
321418 //setResizable(false);
322419 //if (!isDisplayable())
....@@ -327,6 +424,14 @@
327424 copy = localCopy;
328425 copy.editWindow = this;
329426
427
+// if (copy.versionlist == null)
428
+// {
429
+// copy.versionlist = new Object3D[100];
430
+// copy.versionindex = -1;
431
+//
432
+// Save(true);
433
+// }
434
+
330435 SetupMenu();
331436
332437 //SetupName(objEditor); // new
....@@ -345,12 +450,15 @@
345450
346451 static java.util.Vector<Object3D> listUI = new java.util.Vector<Object3D>();
347452
453
+ // This is to refresh the UI of the material panel.
454
+ boolean patchMaterial;
455
+
348456 void SetupMenu()
349457 {
350458 frame.setMenuBar(menuBar = new MenuBar());
351459 menuBar.add(fileMenu = new Menu("File"));
352460 fileMenu.add(newItem = new MenuItem("New"));
353
- fileMenu.add(loadItem = new MenuItem("Open..."));
461
+ fileMenu.add(openItem = new MenuItem("Open..."));
354462
355463 //oe.menuBar.add(menu = new Menu("Include"));
356464 Menu menu = new Menu("Import");
....@@ -358,8 +466,11 @@
358466 importOBJItem.addActionListener(this);
359467 import3DSItem = menu.add(new MenuItem("3DS file..."));
360468 import3DSItem.addActionListener(this);
469
+ if (Globals.ADVANCED)
470
+ {
361471 importVRMLX3DItem = menu.add(new MenuItem("VRML/X3D file..."));
362472 importVRMLX3DItem.addActionListener(this);
473
+ }
363474 menu.add("-");
364475 importGFDItem = menu.add(new MenuItem("Grafreed file..."));
365476 importGFDItem.addActionListener(this);
....@@ -382,7 +493,7 @@
382493 }
383494
384495 newItem.addActionListener(this);
385
- loadItem.addActionListener(this);
496
+ openItem.addActionListener(this);
386497 saveItem.addActionListener(this);
387498 saveAsItem.addActionListener(this);
388499 exportAsItem.addActionListener(this);
....@@ -394,6 +505,8 @@
394505
395506 ChangeListener changeListener = new ChangeListener()
396507 {
508
+ //String name;
509
+
397510 public void stateChanged(ChangeEvent changeEvent)
398511 {
399512 // if (objectPanel.getSelectedIndex() == objectPanel.indexOfTab("Material") && !materialFlushed)
....@@ -412,18 +525,49 @@
412525 // EditSelection(false);
413526 // }
414527
415
- refreshContents(false); // To refresh Info tab
528
+// if (objectPanel.getSelectedIndex() == 4)
529
+// {
530
+// name = copy.skyboxname;
531
+//
532
+// if (name == null)
533
+// {
534
+// name = "";
535
+// }
536
+//
537
+// copy.skyboxname = "cubemaps/default-skyboxes/rgb";
538
+// copy.skyboxext = "jpg";
539
+// }
540
+// else
541
+// {
542
+// if (name != null)
543
+// {
544
+// if (name.equals(""))
545
+// {
546
+// copy.skyboxname = null;
547
+// copy.skyboxext = null;
548
+// }
549
+// else
550
+// {
551
+// copy.skyboxname = name;
552
+// }
553
+// }
554
+// }
555
+ cameraView.transformMode = objectPanel.getSelectedIndex() == 4;
556
+
557
+// refreshContents(false); // To refresh Info tab
558
+ cameraView.repaint();
416559 }
417560 };
418561 objectPanel.addChangeListener(changeListener);
419562
420563 toolbarPanel = new JPanel();
421564 toolbarPanel.setName("Toolbar");
565
+
422566 treePanel = new cGridBag();
423567 treePanel.setName("Tree");
424568
425569 editPanel = new cGridBag().setVertical(true);
426
- editPanel.setName("Edit");
570
+ //editPanel.setName("Edit");
427571
428572 ctrlPanel = new cGridBag().setVertical(false); // new GridBagLayout());
429573
....@@ -431,11 +575,13 @@
431575 editPanel.add(editCommandsPanel);
432576 editPanel.add(ctrlPanel);
433577
434
- toolboxPanel = new cGridBag().setVertical(false);
435
- toolboxPanel.setName("Toolbox");
578
+ toolboxPanel = new cGridBag().setVertical(true);
579
+ //toolboxPanel.setName("Toolbox");
436580
437
- materialPanel = new cGridBag().setVertical(true);
438
- materialPanel.setName("Material");
581
+ skyboxPanel = new cGridBag().setVertical(true);
582
+
583
+ materialPanel = new cGridBag().setVertical(false);
584
+ //materialPanel.setName("Material");
439585
440586 /*JTextPane*/
441587 infoarea = createTextPane();
....@@ -443,14 +589,15 @@
443589
444590 infoarea.setEditable(true);
445591 SetText();
592
+
446593 // infoarea.setFont(infoarea.getFont().deriveFont(10, 14f));
447594 // infoarea.setOpaque(false);
448595 // //infoarea.setForeground(textcolor);
449596 // TEXTAREA infoarea.setLineWrap(true);
450597 // TEXTAREA infoarea.setWrapStyleWord(true);
451598 infoPanel = new JScrollPane(infoarea, ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER); //AS_NEEDED);
452
- infoPanel.setPreferredSize(new Dimension(50, 200));
453
- infoPanel.setName("Info");
599
+ infoPanel.setPreferredSize(new Dimension(1, 1));
600
+ //infoPanel.setName("Info");
454601 //infoPanel.setLayout(new BorderLayout());
455602 //infoPanel.add(createTextPane());
456603
....@@ -699,8 +846,8 @@
699846 }
700847 }
701848
702
-static GraphicsDevice device = GraphicsEnvironment
703
- .getLocalGraphicsEnvironment().getScreenDevices()[0];
849
+//static GraphicsDevice device = GraphicsEnvironment
850
+// .getLocalGraphicsEnvironment().getScreenDevices()[0];
704851
705852 Rectangle keeprect;
706853 cRadio radio;
....@@ -717,14 +864,24 @@
717864 boolean maximized;
718865
719866 cButton fullscreenLayout;
867
+ cButton expandedLayout;
720868
721869 void Minimize()
722870 {
723871 frame.setState(Frame.ICONIFIED);
872
+ frame.validate();
724873 }
725874
875
+// artifactURI=null, type=0, property=${file.reference.jfxrt.jar}, object=org.netbeans.modules.java.api.common.classpath.ClassPathSupport$RelativePath@6767876f, broken=false, additional={}
876
+// artifactURI=null, type=0, property=${file.reference.mac-ui.jar}, object=org.netbeans.modules.java.api.common.classpath.ClassPathSupport$RelativePath@16bdc817, broken=false, additional={}
877
+// artifactURI=null, type=0, property=${file.reference.classes.jar}, object=org.netbeans.modules.java.api.common.classpath.ClassPathSupport$RelativePath@9daa9c17, broken=false, additional={}
726878 void Maximize()
727879 {
880
+ if (CameraPane.FULLSCREEN)
881
+ {
882
+ ToggleFullScreen();
883
+ }
884
+
728885 if (maximized)
729886 {
730887 frame.setBounds(keeprect.x, keeprect.y, keeprect.width, keeprect.height);
....@@ -732,22 +889,38 @@
732889 else
733890 {
734891 keeprect = frame.getBounds();
735
- Rectangle rect = GraphicsEnvironment.getLocalGraphicsEnvironment().getMaximumWindowBounds();
736
- Dimension rect2 = frame.getToolkit().getScreenSize();
737
- frame.setBounds(0, rect2.height - rect.height, rect.width, rect.height);
892
+// Rectangle rect = GraphicsEnvironment.getLocalGraphicsEnvironment().getMaximumWindowBounds();
893
+// Dimension rect2 = frame.getToolkit().getScreenSize();
894
+// frame.setBounds(0, rect2.height - rect.height, rect.width, rect.height);
738895 // frame.setState(Frame.MAXIMIZED_BOTH);
896
+ frame.setBounds(frame.getGraphicsConfiguration().getBounds());
739897 }
740898
741899 maximized ^= true;
900
+
901
+ frame.validate();
742902 }
903
+
904
+ cButton minButton;
905
+ cButton maxButton;
906
+ cButton fullButton;
907
+ cButton collapseButton;
908
+ cButton maximize3DButton;
743909
744910 void ToggleFullScreen()
745911 {
912
+ GraphicsDevice device = frame.getGraphicsConfiguration().getDevice();
913
+
746914 cameraView.ToggleFullScreen();
747915
748916 if (!CameraPane.FULLSCREEN)
749917 {
750918 device.setFullScreenWindow(null);
919
+ frame.dispose();
920
+ frame.setUndecorated(false);
921
+ frame.validate();
922
+ frame.setVisible(true);
923
+
751924 //frame.setVisible(false);
752925 // frame.removeNotify();
753926 // frame.setUndecorated(false);
....@@ -757,13 +930,13 @@
757930 // X frame.getContentPane().remove(/*"Center",*/bigThree);
758931 // X framePanel.add(bigThree);
759932 // X frame.getContentPane().add(/*"Center",*/framePanel);
760
- framePanel.setDividerLocation(1);
933
+// framePanel.setDividerLocation(46); // icons are 24x24
761934
762935 //frame.setVisible(true);
763
- radio.layout = keepButton;
936
+// radio.layout = keepButton;
764937 //theFrame = null;
765938 keepButton = null;
766
- radio.layout.doClick();
939
+// radio.layout.doClick();
767940
768941 } else
769942 {
....@@ -772,20 +945,70 @@
772945 // frame.setBounds(0, 0, frame.getToolkit().getScreenSize().width,
773946 // frame.getToolkit().getScreenSize().height);
774947 //frame.setVisible(false);
948
+
949
+ frame.dispose();
950
+ frame.setUndecorated(true);
775951 device.setFullScreenWindow(frame);
952
+ frame.validate();
953
+ frame.setVisible(true);
776954 // frame.removeNotify();
777955 // frame.setUndecorated(true);
778956 // frame.addNotify();
779957 // X frame.getContentPane().remove(/*"Center",*/framePanel);
780958 // X framePanel.remove(bigThree);
781959 // X frame.getContentPane().add(/*"Center",*/bigThree);
782
- framePanel.setDividerLocation(0);
960
+// framePanel.setDividerLocation(0);
783961
784
- radio.layout = fullscreenLayout;
785
- radio.layout.doClick();
962
+// radio.layout = fullscreenLayout;
963
+// radio.layout.doClick();
786964 //frame.setVisible(true);
787965 }
966
+ frame.validate();
967
+
968
+ cameraView.requestFocusInWindow();
788969 }
970
+
971
+ void CollapseToolbar()
972
+ {
973
+ framePanel.setDividerLocation(0);
974
+ //frame.validate();
975
+
976
+ cameraView.requestFocusInWindow();
977
+ }
978
+
979
+ private Object3D Duplicate(Object3D object)
980
+ {
981
+ boolean temp = CameraPane.SWITCH;
982
+ CameraPane.SWITCH = false;
983
+
984
+ if (Grafreed.grafreed.universe.versiontable == null)
985
+ Grafreed.grafreed.universe.versiontable = new java.util.Hashtable<java.util.UUID, Object3D>();
986
+
987
+ object.ExtractBigData(Grafreed.grafreed.universe.versiontable);
988
+ // if (copy == client)
989
+
990
+ Object3D versions[] = object.versionlist;
991
+ java.util.Hashtable<java.util.UUID, Object3D> versiontable = object.versiontable; // if Grafreed.grafreed.universe
992
+ object.versionlist = null;
993
+ object.versiontable = null;
994
+
995
+ Object3D parent = object.parent;
996
+ object.parent = null;
997
+
998
+ //byte[] compress = Compress(copy);
999
+ Object3D compress = (Object3D)Grafreed.clone(object);
1000
+
1001
+ object.parent = parent;
1002
+
1003
+ object.versionlist = versions;
1004
+ object.versiontable = versiontable; // if Grafreed.grafreed.universe
1005
+
1006
+ object.RestoreBigData(Grafreed.grafreed.universe.versiontable);
1007
+
1008
+ CameraPane.SWITCH = temp;
1009
+
1010
+ return compress;
1011
+ }
7891012
7901013 private JTextPane createTextPane()
7911014 {
....@@ -908,6 +1131,7 @@
9081131 {
9091132 SetupMaterial(materialPanel);
9101133 }
1134
+
9111135 //SetupName();
9121136 //SetupViews();
9131137 }
....@@ -917,7 +1141,7 @@
9171141 // NumberSlider vDivsField;
9181142 // JCheckBox endcaps;
9191143 JCheckBox liveCB;
920
- JCheckBox selectCB;
1144
+ JCheckBox selectableCB;
9211145 JCheckBox hideCB;
9221146 JCheckBox link2masterCB;
9231147 JCheckBox markCB;
....@@ -1116,8 +1340,20 @@
11161340
11171341 namePanel = new cGridBag();
11181342
1343
+ //if (copy.pinned)
1344
+ {
1345
+ pinButton = GetToggleButton("icons/pin.png", !Globals.NIMBUSLAF);
1346
+ pinButton.setSelected(copy.pinned);
1347
+ cGridBag t = new cGridBag();
1348
+ t.preferredWidth = 2;
1349
+ t.add(pinButton);
1350
+ namePanel.add(t);
1351
+
1352
+ pinButton.addItemListener(this);
1353
+ }
1354
+
11191355 nameField = AddText(namePanel, copy.GetName());
1120
- namePanel.add(nameField);
1356
+ namePanel.add(new JScrollPane(nameField, ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER));
11211357 oe.ctrlPanel.add(namePanel);
11221358
11231359 oe.ctrlPanel.Return();
....@@ -1129,26 +1365,30 @@
11291365
11301366 liveCB = AddCheckBox(setupPanel, "Live", copy.live);
11311367 liveCB.setToolTipText("Animate object");
1132
- selectCB = AddCheckBox(setupPanel, "Select", !copy.dontselect);
1133
- selectCB.setToolTipText("Make object selectable");
1368
+ markCB = AddCheckBox(setupPanel, "Anim", copy.marked);
1369
+ markCB.setToolTipText("Set target transform");
1370
+ selectableCB = AddCheckBox(setupPanel, "Select", !copy.dontselect);
1371
+ selectableCB.setToolTipText("Make object selectable");
11341372 // Return();
1373
+
11351374 hideCB = AddCheckBox(setupPanel, "Hide", copy.hide);
11361375 hideCB.setToolTipText("Hide object");
1137
- markCB = AddCheckBox(setupPanel, "Mark", copy.marked);
1138
- markCB.setToolTipText("As animation target transform");
1376
+
1377
+ ToolTipManager.sharedInstance().setLightWeightPopupEnabled(false);
11391378
11401379 setupPanel2 = new cGridBag().setVertical(false);
11411380
11421381 rewindCB = AddCheckBox(setupPanel2, "Rewind", copy.rewind);
11431382 rewindCB.setToolTipText("Rewind animation");
11441383
1145
- randomCB = AddCheckBox(setupPanel2, "Rand", copy.random);
1384
+ randomCB = AddCheckBox(setupPanel2, "Random", copy.random);
11461385 randomCB.setToolTipText("Randomly Rewind (or Go back and forth)");
11471386
1387
+ link2masterCB = AddCheckBox(setupPanel2, "Support", copy.link2master);
1388
+ link2masterCB.setToolTipText("Attach to support");
1389
+
11481390 if (Globals.ADVANCED)
11491391 {
1150
- link2masterCB = AddCheckBox(setupPanel2, "Supp", copy.link2master);
1151
- link2masterCB.setToolTipText("Attach to support");
11521392 speedupCB = AddCheckBox(setupPanel2, "Speed", copy.speedup);
11531393 speedupCB.setToolTipText("Option motion capture");
11541394 }
....@@ -1334,22 +1574,9 @@
13341574
13351575 if (cam == null || !(copy.get(0) instanceof cGroup))
13361576 {
1337
- System.out.println("CREATE CAMERAS");
1338
- cams = new cTemplate();
1339
- cams.name = "Cameras";
1340
- copy.insertElementAt(cams, 0);
1341
- //cams.parent = copy;
1342
-
1343
- cam = new Camera(); // LA.newVector(3, 2, 1));
1344
- cams.addChild(cam);
1345
- cam = new Camera(1);
1346
- cams.addChild(cam);
1347
- cam = new Camera(2);
1348
- cams.addChild(cam);
1349
- cam = new Camera(3);
1350
- cams.addChild(cam);
1351
- cam = new Camera(4); // Light
1352
- cams.addChild(cam);
1577
+ if (Globals.DEBUG)
1578
+ System.out.println("CREATE CAMERAS");
1579
+ cams = CreateCameras();
13531580 } else
13541581 {
13551582 cams = (cGroup) copy.get(0);
....@@ -1415,6 +1642,45 @@
14151642 //frontView.object = copy;
14161643 //sideView.object = copy;
14171644
1645
+ transformPanel = new cGridBag().setVertical(true);
1646
+
1647
+ cGridBag resetTransformPanel = new cGridBag();
1648
+
1649
+ resetTransformPanel.preferredHeight = 2;
1650
+
1651
+ cButton resetTransform = GetButton("Reset all", !Globals.NIMBUSLAF);
1652
+ resetTransform.setToolTipText("Reset Translation, Rotation and Scale");
1653
+ resetTransform.addMouseListener(new MouseAdapter()
1654
+ {
1655
+ public void mouseClicked(MouseEvent e)
1656
+ {
1657
+ ResetTransform();
1658
+ }
1659
+ });
1660
+ resetTransformPanel.add(resetTransform);
1661
+
1662
+ resetTransform = GetButton("T only", !Globals.NIMBUSLAF);
1663
+ resetTransform.setToolTipText("Reset Translation only");
1664
+ resetTransform.addMouseListener(new MouseAdapter()
1665
+ {
1666
+ public void mouseClicked(MouseEvent e)
1667
+ {
1668
+ ResetTransform(1);
1669
+ }
1670
+ });
1671
+ resetTransformPanel.add(resetTransform);
1672
+
1673
+ resetTransform = GetButton("RS only", !Globals.NIMBUSLAF);
1674
+ resetTransform.setToolTipText("Reset Rotation and Scale only");
1675
+ resetTransform.addMouseListener(new MouseAdapter()
1676
+ {
1677
+ public void mouseClicked(MouseEvent e)
1678
+ {
1679
+ ResetTransform(2);
1680
+ }
1681
+ });
1682
+ resetTransformPanel.add(resetTransform);
1683
+
14181684 XYZPanel = new cGridBag().setVertical(true);
14191685 //XYZPanel.setLayout(new GridLayout(3, 1, 5, 5));
14201686
....@@ -1422,7 +1688,11 @@
14221688 XYZPanel.addComponent(/*BorderLayout.SOUTH,*/sideView); // Scroll);
14231689 XYZPanel.addComponent(/*BorderLayout.CENTER,*/frontView); // Scroll);
14241690 XYZPanel.addComponent(/*BorderLayout.NORTH,*/topView); // Scroll);
1691
+ //XYZPanel.setName("XYZ");
14251692
1693
+ transformPanel.add(resetTransformPanel);
1694
+ transformPanel.add(XYZPanel);
1695
+
14261696 /*
14271697 gridPanel = new JPanel(); //new BorderLayout());
14281698 gridPanel.setLayout(new GridLayout(1, 2));
....@@ -1430,12 +1700,12 @@
14301700 gridPanel.add(cameraView);
14311701 gridPanel.add(XYZPanel);
14321702 */
1433
- gridPanel = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, centralPanel, XYZPanel); //new BorderLayout());
1434
- gridPanel.setContinuousLayout(true);
1435
- gridPanel.setOneTouchExpandable(true);
1436
- gridPanel.setDividerLocation(1.0);
1437
- gridPanel.setDividerSize(9);
1438
- gridPanel.setResizeWeight(0.85);
1703
+// gridPanel = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, centralPanel, XYZPanel); //new BorderLayout());
1704
+// gridPanel.setContinuousLayout(true);
1705
+// gridPanel.setOneTouchExpandable(true);
1706
+// gridPanel.setDividerLocation(1.0);
1707
+// gridPanel.setDividerSize(9);
1708
+// gridPanel.setResizeWeight(0.85);
14391709
14401710 // aConstraints.weighty = 0;
14411711 //System.out.println("THIS = " + this);
....@@ -1458,15 +1728,34 @@
14581728
14591729 //JScrollPane tmp = new JScrollPane(ctrlPanel, ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED, ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
14601730 //tmp.setName("Edit");
1731
+ objectPanel.add(skyboxPanel);
1732
+ objectPanel.setIconAt(0, GetIcon("icons/skybox.jpg"));
1733
+ objectPanel.setToolTipTextAt(0, "Backgrounds");
1734
+
1735
+ objectPanel.add(toolboxPanel);
1736
+ objectPanel.setIconAt(1, GetIcon("icons/primitives.png"));
1737
+ objectPanel.setToolTipTextAt(1, "Objects & textures");
1738
+
14611739 objectPanel.add(materialPanel);
1740
+ objectPanel.setIconAt(2, GetIcon("icons/material.png"));
1741
+ objectPanel.setToolTipTextAt(2, "Material");
1742
+
14621743 // JPanel north = new JPanel(new BorderLayout());
14631744 // north.setName("Edit");
14641745 // north.add(ctrlPanel, BorderLayout.NORTH);
14651746 // objectPanel.add(north);
14661747 objectPanel.add(editPanel);
1467
- objectPanel.add(infoPanel);
1468
- objectPanel.add(toolboxPanel);
1469
-
1748
+ objectPanel.setIconAt(3, GetIcon("icons/writewhite.png"));
1749
+ objectPanel.setToolTipTextAt(3, "Edit controls");
1750
+
1751
+ objectPanel.add(transformPanel);
1752
+ objectPanel.setIconAt(4, GetIcon("icons/XYZ.png"));
1753
+ objectPanel.setToolTipTextAt(4, "TRS transform");
1754
+
1755
+ patchMaterial = true;
1756
+ cameraView.patchMaterial = this;
1757
+ objectPanel.setSelectedIndex(2);
1758
+
14701759 /*
14711760 aConstraints.gridx = 0;
14721761 aConstraints.gridwidth = 1;
....@@ -1497,11 +1786,108 @@
14971786
14981787 AddOptions(optionsPanel); //, aConstraints);
14991788
1500
- tabbedPane.add(optionsPanel);
1501
-
15021789 tabbedPane.add(FSPane = new cFileSystemPane(this));
15031790
1791
+ tabbedPane.add(optionsPanel);
1792
+
15041793 scenePanel.add(tabbedPane);
1794
+
1795
+ cGridBag creditsPanel = new cGridBag().setVertical(true);
1796
+ creditsPanel.setName("Credits");
1797
+
1798
+ cLabel ogaLabel = new cLabel(" Skyboxes courtesy of OpenGameArt!", !Globals.NIMBUSLAF);
1799
+ creditsPanel.add(ogaLabel);
1800
+
1801
+ cButton creditButton;
1802
+ creditsPanel.add(creditButton = GetButton("icons/sara-logo.png", !Globals.NIMBUSLAF));
1803
+ creditButton.setToolTipText("https://opengameart.org");
1804
+
1805
+ creditButton.addMouseListener(new MouseAdapter()
1806
+ {
1807
+ public void mouseClicked(MouseEvent e)
1808
+ {
1809
+ try
1810
+ {
1811
+ Desktop.getDesktop().browse(new java.net.URI("https://opengameart.org/"));
1812
+ } catch (Exception e1)
1813
+// } catch (java.io.IOException | java.net.URISyntaxException e1)
1814
+ {
1815
+ e1.printStackTrace();
1816
+ }
1817
+ }
1818
+ });
1819
+
1820
+ ogaLabel = new cLabel(" Download 3D models! (.3ds and .obj only)", !Globals.NIMBUSLAF);
1821
+ creditsPanel.add(ogaLabel);
1822
+
1823
+ creditsPanel.add(creditButton = GetButton("icons/3delicious.png", !Globals.NIMBUSLAF));
1824
+ creditButton.setToolTipText("https://3delicious.net");
1825
+
1826
+ creditButton.addMouseListener(new MouseAdapter()
1827
+ {
1828
+ public void mouseClicked(MouseEvent e)
1829
+ {
1830
+ try
1831
+ {
1832
+ Desktop.getDesktop().browse(new java.net.URI("https://3delicious.net"));
1833
+ } catch (Exception e1)
1834
+// } catch (java.io.IOException | java.net.URISyntaxException e1)
1835
+ {
1836
+ e1.printStackTrace();
1837
+ }
1838
+ }
1839
+ });
1840
+
1841
+ creditsPanel.add(creditButton = GetButton("icons/archive3d.png", !Globals.NIMBUSLAF));
1842
+ creditButton.setToolTipText("https://archive3d.net");
1843
+
1844
+ creditButton.addMouseListener(new MouseAdapter()
1845
+ {
1846
+ public void mouseClicked(MouseEvent e)
1847
+ {
1848
+ try
1849
+ {
1850
+ Desktop.getDesktop().browse(new java.net.URI("https://archive3d.net"));
1851
+ } catch (Exception e1)
1852
+// } catch (java.io.IOException | java.net.URISyntaxException e1)
1853
+ {
1854
+ e1.printStackTrace();
1855
+ }
1856
+ }
1857
+ });
1858
+
1859
+ creditsPanel.add(creditButton = GetButton("icons/turbosquid.png", !Globals.NIMBUSLAF));
1860
+ creditButton.setToolTipText("https://turbosquid.com");
1861
+
1862
+ creditButton.addMouseListener(new MouseAdapter()
1863
+ {
1864
+ public void mouseClicked(MouseEvent e)
1865
+ {
1866
+ try
1867
+ {
1868
+ Desktop.getDesktop().browse(new java.net.URI("https://www.turbosquid.com/Search/3D-Models/free"));
1869
+ } catch (Exception e1)
1870
+// } catch (java.io.IOException | java.net.URISyntaxException e1)
1871
+ {
1872
+ e1.printStackTrace();
1873
+ }
1874
+ }
1875
+ });
1876
+
1877
+ for (int i=6; --i>=0;)
1878
+ {
1879
+ creditsPanel.add(new cGridBag());
1880
+ }
1881
+
1882
+ tabbedPane.add(creditsPanel);
1883
+ tabbedPane.setToolTipTextAt(3, "Credits");
1884
+
1885
+ if (Globals.ADVANCED)
1886
+ {
1887
+ tabbedPane.add(infoPanel);
1888
+ tabbedPane.setIconAt(4, GetIcon("icons/info.png"));
1889
+ tabbedPane.setToolTipTextAt(4, "Information");
1890
+ }
15051891
15061892 /*
15071893 cTree jTree = new cTree(null);
....@@ -1523,13 +1909,13 @@
15231909 jtp.add(tree);
15241910 */
15251911
1526
- bigPanel = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, scenePanel, gridPanel);
1527
- bigPanel.setContinuousLayout(true);
1528
- bigPanel.setOneTouchExpandable(true);
1529
- bigPanel.setDividerLocation(0.8);
1530
- bigPanel.setDividerSize(15);
1531
- bigPanel.setResizeWeight(0.15);
1532
- bigPanel.setName("Scene");
1912
+// bigPanel = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, scenePanel, gridPanel);
1913
+// bigPanel.setContinuousLayout(true);
1914
+// bigPanel.setOneTouchExpandable(true);
1915
+// bigPanel.setDividerLocation(0.8);
1916
+// bigPanel.setDividerSize(15);
1917
+// bigPanel.setResizeWeight(0.15);
1918
+// bigPanel.setName("Scene");
15331919
15341920 //bigPanel.setLayout(new BorderLayout());
15351921 //bigPanel.setSize(new Dimension(10,10));
....@@ -1564,7 +1950,7 @@
15641950 bigThree = new cGridBag();
15651951 bigThree.addComponent(scenePanel);
15661952 bigThree.addComponent(centralPanel);
1567
- bigThree.addComponent(XYZPanel);
1953
+ //bigThree.addComponent(XYZPanel);
15681954
15691955 // // SIDE EFFECT!!!
15701956 // aConstraints.gridx = 0;
....@@ -1573,16 +1959,33 @@
15731959 // aConstraints.gridheight = 1;
15741960
15751961 framePanel = new JSplitPane(JSplitPane.VERTICAL_SPLIT, toolbarPanel, bigThree);
1576
- framePanel.setContinuousLayout(true);
1577
- framePanel.setOneTouchExpandable(true);
1578
- framePanel.setDividerLocation(0.8);
1962
+
1963
+ framePanel.addPropertyChangeListener(JSplitPane.DIVIDER_LOCATION_PROPERTY,
1964
+ new java.beans.PropertyChangeListener()
1965
+ {
1966
+ public void propertyChange(java.beans.PropertyChangeEvent pce)
1967
+ {
1968
+ if ((Integer)pce.getOldValue() == 1)
1969
+ {
1970
+ if (radio.layout != expandedLayout)
1971
+ {
1972
+ radio.layout = expandedLayout;
1973
+ radio.layout.doClick();
1974
+ }
1975
+ }
1976
+ }
1977
+ });
1978
+
1979
+ framePanel.setContinuousLayout(false);
1980
+ framePanel.setOneTouchExpandable(false);
1981
+ //.setDividerLocation(0.8);
15791982 //framePanel.setDividerSize(15);
15801983 //framePanel.setResizeWeight(0.15);
15811984 framePanel.setName("Frame");
15821985
15831986 frame.getContentPane().setLayout(new BorderLayout());
15841987 /**/
1585
- JTabbedPane worldPane = new JTabbedPane();
1988
+ //JTabbedPane worldPane = new JTabbedPane();
15861989 //worldPane.add(bigPanel);
15871990 //worldPane.add(worldPanel);
15881991 /**/
....@@ -1594,17 +1997,17 @@
15941997
15951998 frame.setSize(1280, 860);
15961999
1597
- frame.validate();
1598
- frame.setVisible(true);
1599
-
16002000 cameraView.requestFocusInWindow();
16012001
1602
- gridPanel.setDividerLocation(1.0);
2002
+// gridPanel.setDividerLocation(1.0);
2003
+
2004
+ frame.validate();
2005
+
2006
+ frame.setVisible(true);
16032007
16042008 frame.setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE);
16052009 frame.addWindowListener(new WindowAdapter()
16062010 {
1607
-
16082011 public void windowClosing(WindowEvent e)
16092012 {
16102013 Close();
....@@ -1627,28 +2030,484 @@
16272030 ctrlPanel.removeAll();
16282031 }
16292032
1630
- void SetupMaterial(cGridBag panel)
2033
+ void SetupMaterial(cGridBag materialpanel)
16312034 {
1632
- /*
2035
+ cGridBag presetpanel = new cGridBag().setVertical(true);
2036
+
2037
+ cLabel skin = GetLabel("icons/shadericons/shadericon00000.png", !Globals.NIMBUSLAF);
2038
+ skin.setToolTipText("Skin");
2039
+ skin.addMouseListener(new MouseAdapter()
2040
+ {
2041
+ public void mouseClicked(MouseEvent e)
2042
+ {
2043
+ Object3D object = Grafreed.materials.versionlist[0].get(0);
2044
+ cMaterial material = object.material;
2045
+
2046
+ // Skin
2047
+ colorField.setFloat(material.color);
2048
+ float saturation = material.modulation;
2049
+
2050
+ if (!cameraView.Skinshader)
2051
+ {
2052
+ saturation /= 1.5;
2053
+ }
2054
+
2055
+ saturationField.setFloat(saturation);
2056
+
2057
+ subsurfaceField.setFloat(material.subsurface);
2058
+ selfshadowField.setFloat(material.diffuseness);
2059
+ diffusenessField.setFloat(material.factor);
2060
+ shininessField.setFloat(material.shininess);
2061
+ shadowbiasField.setFloat(material.shadowbias);
2062
+ diffuseField.setFloat(material.diffuse);
2063
+ specularField.setFloat(material.specular);
2064
+
2065
+ bumpField.setFloat(object.projectedVertices[0].x / 1000.0);
2066
+ noiseField.setFloat(object.projectedVertices[0].y / 1000.0);
2067
+ powerField.setFloat(object.projectedVertices[2].x / 1000.0);
2068
+
2069
+ materialtouched = true;
2070
+ applySelf();
2071
+ }
2072
+ });
2073
+ presetpanel.add(skin);
2074
+
2075
+ cLabel lambert = GetLabel("icons/shadericons/shadericon00002.png", !Globals.NIMBUSLAF);
2076
+ lambert.setToolTipText("Diffuse");
2077
+ lambert.addMouseListener(new MouseAdapter()
2078
+ {
2079
+ public void mouseClicked(MouseEvent e)
2080
+ {
2081
+ Object3D object = Grafreed.materials.versionlist[2].get(0);
2082
+ cMaterial material = object.material;
2083
+
2084
+ diffusenessField.setFloat(material.factor);
2085
+ selfshadowField.setFloat(material.diffuseness);
2086
+
2087
+ materialtouched = true;
2088
+ applySelf();
2089
+ }
2090
+ });
2091
+ presetpanel.add(lambert);
2092
+
2093
+ cLabel diffuse2 = GetLabel("icons/shadericons/shadericon00003.png", !Globals.NIMBUSLAF);
2094
+ diffuse2.setToolTipText("Diffuse2");
2095
+ diffuse2.addMouseListener(new MouseAdapter()
2096
+ {
2097
+ public void mouseClicked(MouseEvent e)
2098
+ {
2099
+ Object3D object = Grafreed.materials.versionlist[3].get(0);
2100
+ cMaterial material = object.material;
2101
+
2102
+ diffusenessField.setFloat(material.factor);
2103
+ selfshadowField.setFloat(material.diffuseness);
2104
+
2105
+ materialtouched = true;
2106
+ applySelf();
2107
+ }
2108
+ });
2109
+ presetpanel.add(diffuse2);
2110
+
2111
+ cLabel diffusemoon = GetLabel("icons/shadericons/shadericon00004.png", !Globals.NIMBUSLAF);
2112
+ diffusemoon.setToolTipText("Moon");
2113
+ diffusemoon.addMouseListener(new MouseAdapter()
2114
+ {
2115
+ public void mouseClicked(MouseEvent e)
2116
+ {
2117
+ Object3D object = Grafreed.materials.versionlist[4].get(0);
2118
+ cMaterial material = object.material;
2119
+
2120
+ diffusenessField.setFloat(material.factor);
2121
+ selfshadowField.setFloat(material.diffuseness);
2122
+
2123
+ materialtouched = true;
2124
+ applySelf();
2125
+ }
2126
+ });
2127
+ presetpanel.add(diffusemoon);
2128
+
2129
+ cLabel diffusemoon2 = GetLabel("icons/shadericons/shadericon00005.png", !Globals.NIMBUSLAF);
2130
+ diffusemoon2.setToolTipText("Moon2");
2131
+ diffusemoon2.addMouseListener(new MouseAdapter()
2132
+ {
2133
+ public void mouseClicked(MouseEvent e)
2134
+ {
2135
+ Object3D object = Grafreed.materials.versionlist[5].get(0);
2136
+ cMaterial material = object.material;
2137
+
2138
+ diffusenessField.setFloat(material.factor);
2139
+ selfshadowField.setFloat(material.diffuseness);
2140
+
2141
+ materialtouched = true;
2142
+ applySelf();
2143
+ }
2144
+ });
2145
+ presetpanel.add(diffusemoon2);
2146
+
2147
+ cLabel diffusemoon3 = GetLabel("icons/shadericons/shadericon00006.png", !Globals.NIMBUSLAF);
2148
+ diffusemoon3.setToolTipText("Moon3");
2149
+ diffusemoon3.addMouseListener(new MouseAdapter()
2150
+ {
2151
+ public void mouseClicked(MouseEvent e)
2152
+ {
2153
+ Object3D object = Grafreed.materials.versionlist[6].get(0);
2154
+ cMaterial material = object.material;
2155
+
2156
+ diffusenessField.setFloat(material.factor);
2157
+ selfshadowField.setFloat(material.diffuseness);
2158
+
2159
+ materialtouched = true;
2160
+ applySelf();
2161
+ }
2162
+ });
2163
+ presetpanel.add(diffusemoon3);
2164
+
2165
+ cLabel diffusesheen = GetLabel("icons/shadericons/shadericon00007.png", !Globals.NIMBUSLAF);
2166
+ diffusesheen.setToolTipText("Sheen");
2167
+ diffusesheen.addMouseListener(new MouseAdapter()
2168
+ {
2169
+ public void mouseClicked(MouseEvent e)
2170
+ {
2171
+ Object3D object = Grafreed.materials.versionlist[7].get(0);
2172
+ cMaterial material = object.material;
2173
+
2174
+ sheenField.setFloat(material.sheen);
2175
+
2176
+ materialtouched = true;
2177
+ applySelf();
2178
+ }
2179
+ });
2180
+ presetpanel.add(diffusesheen);
2181
+
2182
+ cLabel rough = GetLabel("icons/shadericons/shadericon00001.png", !Globals.NIMBUSLAF);
2183
+ rough.setToolTipText("Rough metal");
2184
+ rough.addMouseListener(new MouseAdapter()
2185
+ {
2186
+ public void mouseClicked(MouseEvent e)
2187
+ {
2188
+ Object3D object = Grafreed.materials.versionlist[1].get(0);
2189
+ cMaterial material = object.material;
2190
+
2191
+ shininessField.setFloat(material.shininess);
2192
+ velvetField.setFloat(material.velvet);
2193
+
2194
+ materialtouched = true;
2195
+ applySelf();
2196
+ }
2197
+ });
2198
+ presetpanel.add(rough);
2199
+
2200
+ cLabel rough2 = GetLabel("icons/shadericons/shadericon00013.png", !Globals.NIMBUSLAF);
2201
+ rough2.setToolTipText("Medium metal");
2202
+ rough2.addMouseListener(new MouseAdapter()
2203
+ {
2204
+ public void mouseClicked(MouseEvent e)
2205
+ {
2206
+ Object3D object = Grafreed.materials.versionlist[13].get(0);
2207
+ cMaterial material = object.material;
2208
+
2209
+ shininessField.setFloat(material.shininess);
2210
+ lightareaField.setFloat(material.lightarea);
2211
+
2212
+ materialtouched = true;
2213
+ applySelf();
2214
+ }
2215
+ });
2216
+ presetpanel.add(rough2);
2217
+
2218
+ cLabel shini0 = GetLabel("icons/shadericons/shadericon00014.png", !Globals.NIMBUSLAF);
2219
+ shini0.setToolTipText("Shiny");
2220
+ shini0.addMouseListener(new MouseAdapter()
2221
+ {
2222
+ public void mouseClicked(MouseEvent e)
2223
+ {
2224
+ Object3D object = Grafreed.materials.versionlist[14].get(0);
2225
+ cMaterial material = object.material;
2226
+
2227
+ shininessField.setFloat(material.shininess);
2228
+ lightareaField.setFloat(material.lightarea);
2229
+
2230
+ materialtouched = true;
2231
+ applySelf();
2232
+ }
2233
+ });
2234
+ presetpanel.add(shini0);
2235
+
2236
+ cLabel shini1 = GetLabel("icons/shadericons/shadericon00011.png", !Globals.NIMBUSLAF);
2237
+ shini1.setToolTipText("Shiny2");
2238
+ shini1.addMouseListener(new MouseAdapter()
2239
+ {
2240
+ public void mouseClicked(MouseEvent e)
2241
+ {
2242
+ Object3D object = Grafreed.materials.versionlist[11].get(0);
2243
+ cMaterial material = object.material;
2244
+
2245
+ shininessField.setFloat(material.shininess);
2246
+ lightareaField.setFloat(material.lightarea);
2247
+
2248
+ materialtouched = true;
2249
+ applySelf();
2250
+ }
2251
+ });
2252
+ presetpanel.add(shini1);
2253
+
2254
+ cLabel shini2 = GetLabel("icons/shadericons/shadericon00012.png", !Globals.NIMBUSLAF);
2255
+ shini2.setToolTipText("Shiny3");
2256
+ shini2.addMouseListener(new MouseAdapter()
2257
+ {
2258
+ public void mouseClicked(MouseEvent e)
2259
+ {
2260
+ Object3D object = Grafreed.materials.versionlist[12].get(0);
2261
+ cMaterial material = object.material;
2262
+
2263
+ shininessField.setFloat(material.shininess);
2264
+ lightareaField.setFloat(material.lightarea);
2265
+
2266
+ materialtouched = true;
2267
+ applySelf();
2268
+ }
2269
+ });
2270
+ presetpanel.add(shini2);
2271
+
2272
+ cLabel aniso = GetLabel("icons/shadericons/shadericon00008.png", !Globals.NIMBUSLAF);
2273
+ aniso.setToolTipText("AnisoU");
2274
+ aniso.addMouseListener(new MouseAdapter()
2275
+ {
2276
+ public void mouseClicked(MouseEvent e)
2277
+ {
2278
+ Object3D object = Grafreed.materials.versionlist[8].get(0);
2279
+ cMaterial material = object.material;
2280
+
2281
+ anisoField.setFloat(material.aniso);
2282
+ anisoVField.setFloat(material.anisoV);
2283
+
2284
+ materialtouched = true;
2285
+ applySelf();
2286
+ }
2287
+ });
2288
+ presetpanel.add(aniso);
2289
+
2290
+ cLabel aniso2 = GetLabel("icons/shadericons/shadericon00009.png", !Globals.NIMBUSLAF);
2291
+ aniso2.setToolTipText("AnisoV");
2292
+ aniso2.addMouseListener(new MouseAdapter()
2293
+ {
2294
+ public void mouseClicked(MouseEvent e)
2295
+ {
2296
+ Object3D object = Grafreed.materials.versionlist[9].get(0);
2297
+ cMaterial material = object.material;
2298
+
2299
+ anisoField.setFloat(material.aniso);
2300
+ anisoVField.setFloat(material.anisoV);
2301
+
2302
+ materialtouched = true;
2303
+ applySelf();
2304
+ }
2305
+ });
2306
+ presetpanel.add(aniso2);
2307
+
2308
+ cLabel aniso3 = GetLabel("icons/shadericons/shadericon00010.png", !Globals.NIMBUSLAF);
2309
+ aniso3.setToolTipText("AnisoUV");
2310
+ aniso3.addMouseListener(new MouseAdapter()
2311
+ {
2312
+ public void mouseClicked(MouseEvent e)
2313
+ {
2314
+ Object3D object = Grafreed.materials.versionlist[10].get(0);
2315
+ cMaterial material = object.material;
2316
+
2317
+ anisoField.setFloat(material.aniso);
2318
+ anisoVField.setFloat(material.anisoV);
2319
+
2320
+ materialtouched = true;
2321
+ applySelf();
2322
+ }
2323
+ });
2324
+ presetpanel.add(aniso3);
2325
+
2326
+ cLabel velvet0 = GetLabel("icons/shadericons/shadericon00015.png", !Globals.NIMBUSLAF);
2327
+ velvet0.setToolTipText("Velvet");
2328
+ velvet0.addMouseListener(new MouseAdapter()
2329
+ {
2330
+ public void mouseClicked(MouseEvent e)
2331
+ {
2332
+ Object3D object = Grafreed.materials.versionlist[15].get(0);
2333
+ cMaterial material = object.material;
2334
+
2335
+ diffusenessField.setFloat(material.factor);
2336
+ selfshadowField.setFloat(material.diffuseness);
2337
+ sheenField.setFloat(material.sheen);
2338
+ shininessField.setFloat(material.shininess);
2339
+ velvetField.setFloat(material.velvet);
2340
+ shiftField.setFloat(material.shift);
2341
+
2342
+ materialtouched = true;
2343
+ applySelf();
2344
+ }
2345
+ });
2346
+ presetpanel.add(velvet0);
2347
+
2348
+ cLabel bump0 = GetLabel("icons/shadericons/shadericon00016.png", !Globals.NIMBUSLAF);
2349
+ bump0.setToolTipText("Bump texture");
2350
+ bump0.addMouseListener(new MouseAdapter()
2351
+ {
2352
+ public void mouseClicked(MouseEvent e)
2353
+ {
2354
+ Object3D object = Grafreed.materials.versionlist[16].get(0);
2355
+ cMaterial material = object.material;
2356
+
2357
+ bumpField.setFloat(object.projectedVertices[0].x / 1000.0);
2358
+ noiseField.setFloat(object.projectedVertices[0].y / 1000.0);
2359
+ powerField.setFloat(object.projectedVertices[2].x / 1000.0);
2360
+
2361
+ materialtouched = true;
2362
+ applySelf();
2363
+ }
2364
+ });
2365
+ presetpanel.add(bump0);
2366
+
2367
+ cLabel borderShader = GetLabel("icons/shadericons/borderfade.jpg", !Globals.NIMBUSLAF);
2368
+ borderShader.setToolTipText("Border fade");
2369
+ borderShader.addMouseListener(new MouseAdapter()
2370
+ {
2371
+ public void mouseClicked(MouseEvent e)
2372
+ {
2373
+ borderfadeField.setFloat(0.4);
2374
+ opacityField.setFloat(0.75);
2375
+
2376
+ materialtouched = true;
2377
+ applySelf();
2378
+ }
2379
+ });
2380
+ presetpanel.add(borderShader);
2381
+
2382
+ cLabel halo = GetLabel("icons/shadericons/shadericon00017.png", !Globals.NIMBUSLAF);
2383
+ halo.setToolTipText("Halo");
2384
+ halo.addMouseListener(new MouseAdapter()
2385
+ {
2386
+ public void mouseClicked(MouseEvent e)
2387
+ {
2388
+ Object3D object = Grafreed.materials.versionlist[17].get(0);
2389
+ cMaterial material = object.material;
2390
+
2391
+ opacityPowerField.setFloat(object.projectedVertices[2].y / 1000.0);
2392
+
2393
+ materialtouched = true;
2394
+ applySelf();
2395
+ }
2396
+ });
2397
+ presetpanel.add(halo);
2398
+
2399
+ cLabel candle = GetLabel("icons/shadericons/shadericon00018.png", !Globals.NIMBUSLAF);
2400
+ candle.setToolTipText("Candle");
2401
+ candle.addMouseListener(new MouseAdapter()
2402
+ {
2403
+ public void mouseClicked(MouseEvent e)
2404
+ {
2405
+ Object3D object = Grafreed.materials.versionlist[18].get(0);
2406
+ cMaterial material = object.material;
2407
+
2408
+ subsurfaceField.setFloat(material.subsurface);
2409
+ shadowbiasField.setFloat(material.shadowbias);
2410
+ ambientField.setFloat(material.ambient);
2411
+ specularField.setFloat(material.specular);
2412
+ lightareaField.setFloat(material.lightarea);
2413
+ shininessField.setFloat(material.shininess);
2414
+
2415
+ materialtouched = true;
2416
+ applySelf();
2417
+ }
2418
+ });
2419
+ presetpanel.add(candle);
2420
+
2421
+ cLabel shadowShader = GetLabel("icons/shadericons/shadow.png", !Globals.NIMBUSLAF);
2422
+ shadowShader.setToolTipText("Shadow");
2423
+ shadowShader.addMouseListener(new MouseAdapter()
2424
+ {
2425
+ public void mouseClicked(MouseEvent e)
2426
+ {
2427
+ diffuseField.setFloat(0.001);
2428
+ ambientField.setFloat(0.001);
2429
+ cameraField.setFloat(0.001);
2430
+ specularField.setFloat(0.001);
2431
+ fakedepthField.setFloat(0.001);
2432
+ opacityField.setFloat(0.6);
2433
+
2434
+ materialtouched = true;
2435
+ applySelf();
2436
+ }
2437
+ });
2438
+ presetpanel.add(shadowShader);
2439
+
2440
+ cLabel para0 = GetLabel("icons/shadericons/parallax0.png", !Globals.NIMBUSLAF);
2441
+ para0.setToolTipText("No parallax");
2442
+ para0.addMouseListener(new MouseAdapter()
2443
+ {
2444
+ public void mouseClicked(MouseEvent e)
2445
+ {
2446
+ parallaxField.setFloat(0.125);
2447
+
2448
+ materialtouched = true;
2449
+ applySelf();
2450
+ }
2451
+ });
2452
+ presetpanel.add(para0);
2453
+
2454
+ cLabel para1 = GetLabel("icons/shadericons/parallax1.png", !Globals.NIMBUSLAF);
2455
+ para1.setToolTipText("With parallax");
2456
+ para1.addMouseListener(new MouseAdapter()
2457
+ {
2458
+ public void mouseClicked(MouseEvent e)
2459
+ {
2460
+ parallaxField.setFloat(0.13);
2461
+
2462
+ materialtouched = true;
2463
+ applySelf();
2464
+ }
2465
+ });
2466
+ presetpanel.add(para1);
2467
+
2468
+ cLabel para2 = GetLabel("icons/shadericons/parallax2.png", !Globals.NIMBUSLAF);
2469
+ para2.setToolTipText("Reset parallax");
2470
+ para2.addMouseListener(new MouseAdapter()
2471
+ {
2472
+ public void mouseClicked(MouseEvent e)
2473
+ {
2474
+ parallaxField.setFloat(0.14);
2475
+
2476
+ materialtouched = true;
2477
+ applySelf();
2478
+ }
2479
+ });
2480
+ presetpanel.add(para2);
2481
+
2482
+ cGridBag panel = new cGridBag().setVertical(true);
2483
+
2484
+ presetpanel.preferredWidth = 1;
2485
+
2486
+ materialpanel.add(presetpanel);
2487
+ materialpanel.add(panel);
2488
+
2489
+ panel.preferredWidth = 8;
2490
+
2491
+ /*
16332492 ctrlPanel.add(materialLabel = new JLabel("MATERIAL : "), aConstraints);
16342493 materialLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1635
- */
2494
+ */
16362495
16372496 cGridBag editBar = new cGridBag().setVertical(false);
16382497
1639
- editBar.add(createMaterialButton = new cButton("Create", !Grafreed.NIMBUSLAF)); // , aConstraints);
2498
+ editBar.add(createMaterialButton = new cButton("Create", !Globals.NIMBUSLAF)); // , aConstraints);
16402499 createMaterialButton.setToolTipText("Create material");
16412500
16422501 /*
16432502 ctrlPanel.add(resetSlidersButton = new cButton("Reset All"), aConstraints);
16442503 */
16452504
1646
- editBar.add(clearMaterialButton = new cButton("Clear", !Grafreed.NIMBUSLAF)); // , aConstraints);
2505
+ editBar.add(clearMaterialButton = new cButton("Clear", !Globals.NIMBUSLAF)); // , aConstraints);
16472506 clearMaterialButton.setToolTipText("Clear material");
16482507
16492508 if (Globals.ADVANCED)
16502509 {
1651
- editBar.add(resetSlidersButton = new cButton("Reset", !Grafreed.NIMBUSLAF)); // , aConstraints);
2510
+ editBar.add(resetSlidersButton = new cButton("Reset", !Globals.NIMBUSLAF)); // , aConstraints);
16522511 editBar.add(propagateToggle = new cCheckBox("Prop", propagate)); // , aConstraints);
16532512 editBar.add(multiplyToggle = new cCheckBox("Mult", false)); // , aConstraints);
16542513 }
....@@ -1666,45 +2525,61 @@
16662525 //ctrlPanel.add(new JLabel("----------------------------------")); // , aConstraints);
16672526
16682527 cGridBag colorSection = new cGridBag().setVertical(true);
2528
+
2529
+ cGridBag huepanel = new cGridBag();
2530
+ cGridBag huelabel = new cGridBag();
2531
+ cLabel hue = GetLabel("icons/hue.png", false);
2532
+ hue.fit = true;
2533
+
2534
+ hue.addMouseListener(new MouseAdapter()
2535
+ {
2536
+ public void mousePressed(MouseEvent e)
2537
+ {
2538
+ int x = e.getX();
2539
+
2540
+ colorField.setFloat((double)x / ((cLabel)e.getSource()).getWidth());
2541
+ }
2542
+ });
2543
+
2544
+ huelabel.add(hue);
2545
+ huelabel.preferredWidth = 20;
2546
+ huepanel.add(new cGridBag()); // Label
2547
+ huepanel.add(huelabel); // Field/slider
2548
+
2549
+ huepanel.preferredHeight = 7;
2550
+
2551
+ colorSection.add(huepanel);
16692552
16702553 cGridBag color = new cGridBag();
1671
- color.add(colorLabel = new JLabel("Color/hue")); // , aConstraints);
1672
- colorLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1673
- color.add(colorField = new cNumberSlider(this, 0.001, 1, -0.5)); // , aConstraints);
2554
+
2555
+ color.add(colorLabel = new JLabel("Color/hue")); // , aConstraints);
2556
+ colorLabel.setHorizontalAlignment(SwingConstants.TRAILING);
2557
+ color.add(colorField = new cNumberSlider(this, 0.001, 1)); // , aConstraints);
2558
+
16742559 //colorField.preferredWidth = 200;
16752560 colorSection.add(color);
16762561
16772562 cGridBag modulation = new cGridBag();
16782563 modulation.add(modulationLabel = new JLabel("Saturation")); // , aConstraints);
16792564 modulationLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1680
- modulation.add(modulationField = new cNumberSlider(this, 0.001, 1, -0.5)); // , aConstraints);
2565
+ modulation.add(saturationField = new cNumberSlider(this, 0.001, 1)); // , aConstraints);
16812566 colorSection.add(modulation);
16822567
2568
+ cGridBag opacity = new cGridBag();
2569
+ opacity.add(opacityLabel = new JLabel("Opacity")); // , aConstraints);
2570
+ opacityLabel.setHorizontalAlignment(SwingConstants.TRAILING);
2571
+ opacity.add(opacityField = new cNumberSlider(this, 0.001, 1)); // , aConstraints);
2572
+ colorSection.add(opacity);
2573
+
2574
+ colorSection.add(GetSeparator());
2575
+
16832576 cGridBag texture = new cGridBag();
16842577 texture.add(textureLabel = new JLabel("Texture")); // , aConstraints);
16852578 textureLabel.setHorizontalAlignment(SwingConstants.TRAILING);
16862579 texture.add(textureField = new cNumberSlider(this, 0.001, 1, -0.5)); // , aConstraints);
16872580 colorSection.add(texture);
16882581
1689
- cGridBag anisoU = new cGridBag();
1690
- anisoU.add(anisoLabel = new JLabel("AnisoU")); // , aConstraints);
1691
- anisoLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1692
- anisoU.add(anisoField = new cNumberSlider(this, 0.001, 1, -0.5)); // , aConstraints);
1693
- colorSection.add(anisoU);
1694
-
1695
- cGridBag anisoV = new cGridBag();
1696
- anisoV.add(anisoVLabel = new JLabel("AnisoV")); // , aConstraints);
1697
- anisoVLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1698
- anisoV.add(anisoVField = new cNumberSlider(this, 0.001, 1, -0.5)); // , aConstraints);
1699
- colorSection.add(anisoV);
1700
-
1701
- cGridBag shadowbias = new cGridBag();
1702
- shadowbias.add(shadowbiasLabel = new JLabel("Shadowbias")); // , aConstraints);
1703
- shadowbiasLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1704
- shadowbias.add(shadowbiasField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1705
- colorSection.add(shadowbias);
1706
-
1707
- panel.add(new JSeparator());
2582
+ panel.add(GetSeparator());
17082583
17092584 panel.add(colorSection);
17102585
....@@ -1754,7 +2629,13 @@
17542629 fakedepth.add(fakedepthField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
17552630 diffuseSection.add(fakedepth);
17562631
1757
- panel.add(new JSeparator());
2632
+ cGridBag shadowbias = new cGridBag();
2633
+ shadowbias.add(shadowbiasLabel = new JLabel("Shadowbias")); // , aConstraints);
2634
+ shadowbiasLabel.setHorizontalAlignment(SwingConstants.TRAILING);
2635
+ shadowbias.add(shadowbiasField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
2636
+ diffuseSection.add(shadowbias);
2637
+
2638
+ panel.add(GetSeparator());
17582639
17592640 panel.add(diffuseSection);
17602641
....@@ -1804,42 +2685,54 @@
18042685 // aConstraints.gridy += 1;
18052686 // aConstraints.gridwidth = 1;
18062687
2688
+ cGridBag anisoU = new cGridBag();
2689
+ anisoU.add(anisoLabel = new JLabel("AnisoU")); // , aConstraints);
2690
+ anisoLabel.setHorizontalAlignment(SwingConstants.TRAILING);
2691
+ anisoU.add(anisoField = new cNumberSlider(this, 0.001, 1, -0.5)); // , aConstraints);
2692
+ specularSection.add(anisoU);
18072693
1808
- panel.add(new JSeparator());
2694
+ cGridBag anisoV = new cGridBag();
2695
+ anisoV.add(anisoVLabel = new JLabel("AnisoV")); // , aConstraints);
2696
+ anisoVLabel.setHorizontalAlignment(SwingConstants.TRAILING);
2697
+ anisoV.add(anisoVField = new cNumberSlider(this, 0.001, 1, -0.5)); // , aConstraints);
2698
+ specularSection.add(anisoV);
2699
+
2700
+
2701
+ panel.add(GetSeparator());
18092702
18102703 panel.add(specularSection);
18112704
18122705 //ctrlPanel.add(new JLabel("----------------------------------")); // , aConstraints);
18132706
1814
- cGridBag globalSection = new cGridBag().setVertical(true);
2707
+ //cGridBag globalSection = new cGridBag().setVertical(true);
18152708
18162709 cGridBag camera = new cGridBag();
18172710 camera.add(cameraLabel = new JLabel("GlobalLight")); // , aConstraints);
18182711 cameraLabel.setHorizontalAlignment(SwingConstants.TRAILING);
18192712 camera.add(cameraField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1820
- globalSection.add(camera);
2713
+ colorSection.add(camera);
18212714
18222715 cGridBag ambient = new cGridBag();
18232716 ambient.add(ambientLabel = new JLabel("Ambient")); // , aConstraints);
18242717 ambientLabel.setHorizontalAlignment(SwingConstants.TRAILING);
18252718 ambient.add(ambientField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1826
- globalSection.add(ambient);
2719
+ colorSection.add(ambient);
18272720
18282721 cGridBag backlit = new cGridBag();
18292722 backlit.add(backlitLabel = new JLabel("Backlit")); // , aConstraints);
18302723 backlitLabel.setHorizontalAlignment(SwingConstants.TRAILING);
18312724 backlit.add(backlitField = new cNumberSlider(this, 0.001, 50, -1)); // , aConstraints);
1832
- globalSection.add(backlit);
2725
+ colorSection.add(backlit);
18332726
1834
- cGridBag opacity = new cGridBag();
1835
- opacity.add(opacityLabel = new JLabel("Opacity")); // , aConstraints);
1836
- opacityLabel.setHorizontalAlignment(SwingConstants.TRAILING);
1837
- opacity.add(opacityField = new cNumberSlider(this, 0.001, 1, -0.5)); // , aConstraints);
1838
- globalSection.add(opacity);
1839
-
1840
- panel.add(new JSeparator());
2727
+ cGridBag parallax = new cGridBag();
2728
+ parallax.add(parallaxLabel = new JLabel("Parallax")); // , aConstraints);
2729
+ parallaxLabel.setHorizontalAlignment(SwingConstants.TRAILING);
2730
+ parallax.add(parallaxField = new cNumberSlider(this, 0.001, 0.25, -0.125)); // , aConstraints);
2731
+ colorSection.add(parallax);
18412732
1842
- panel.add(globalSection);
2733
+ //panel.add(new JSeparator());
2734
+
2735
+ //panel.add(globalSection);
18432736
18442737 //ctrlPanel.add(new JLabel("----------------------------------")); // , aConstraints);
18452738
....@@ -1881,7 +2774,7 @@
18812774 opacityPower.add(opacityPowerField = new cNumberSlider(this, 0.0, 10 /*10 dec 2013*/)); // , aConstraints);
18822775 textureSection.add(opacityPower);
18832776
1884
- panel.add(new JSeparator());
2777
+ panel.add(GetSeparator());
18852778
18862779 panel.add(textureSection);
18872780
....@@ -1946,8 +2839,9 @@
19462839 // 3D models
19472840 if (filename.endsWith(".3ds") || filename.endsWith(".3DS"))
19482841 {
1949
- lastConverter = new com.jmex.model.converters.MaxToJme();
1950
- LoadFile(filename, lastConverter);
2842
+ //lastConverter = new com.jmex.model.converters.MaxToJme();
2843
+ //LoadFile(filename, lastConverter);
2844
+ LoadObjFile(filename); // New 3ds loader
19512845 continue;
19522846 }
19532847 if (filename.endsWith(".dae") || filename.endsWith(".DAE"))
....@@ -2673,6 +3567,7 @@
26733567 LA.matXRotate(((Object3D) group.get(group.size() - 1)).toParent, -Math.PI / 2);
26743568 LA.matXRotate(((Object3D) group.get(group.size() - 1)).fromParent, Math.PI / 2);
26753569 }
3570
+
26763571 //cJME.count++;
26773572 //cJME.count %= 12;
26783573 if (gc)
....@@ -2856,6 +3751,7 @@
28563751 }
28573752 }
28583753 }
3754
+
28593755 cFileSystemPane FSPane;
28603756
28613757 void SetMaterial(cMaterial mat, Object3D.cVector2[] others)
....@@ -2865,7 +3761,7 @@
28653761
28663762 freezematerial = true;
28673763 colorField.setFloat(mat.color);
2868
- modulationField.setFloat(mat.modulation);
3764
+ saturationField.setFloat(mat.modulation);
28693765 metalnessField.setFloat(mat.metalness);
28703766 diffuseField.setFloat(mat.diffuse);
28713767 specularField.setFloat(mat.specular);
....@@ -2885,6 +3781,7 @@
28853781 shadowField.setFloat(mat.shadow);
28863782 textureField.setFloat(mat.texture);
28873783 opacityField.setFloat(mat.opacity);
3784
+ parallaxField.setFloat(mat.parallax + 0.125f);
28883785 fakedepthField.setFloat(mat.fakedepth);
28893786 shadowbiasField.setFloat(mat.shadowbias);
28903787 bumpField.setInteger(1); // dec 2013
....@@ -2909,6 +3806,7 @@
29093806 }
29103807 }
29113808 }
3809
+
29123810 freezematerial = false;
29133811 }
29143812
....@@ -2926,32 +3824,8 @@
29263824
29273825 if (multiplyToggle != null)
29283826 multiplyToggle.setSelected(mat.multiply);
2929
-
2930
- assert (object.projectedVertices != null);
2931
-
2932
- if (object.projectedVertices.length <= 2)
2933
- {
2934
- // Side effect...
2935
- Object3D.cVector2[] keep = object.projectedVertices;
2936
- object.projectedVertices = new Object3D.cVector2[3];
2937
- for (int i = 0; i < 3; i++)
2938
- {
2939
- if (i < keep.length)
2940
- {
2941
- object.projectedVertices[i] = keep[i];
2942
- } else
2943
- {
2944
- object.projectedVertices[i] = new Object3D.cVector2();
2945
- }
2946
- /*
2947
- if(keep.length == 0)
2948
- object.projectedVertices[0] = new Object3D.cVector2();
2949
- else
2950
- object.projectedVertices[0] = keep[0];
2951
- object.projectedVertices[1] = new Object3D.cVector2();
2952
- */
2953
- }
2954
- }
3827
+
3828
+ AllocProjectedVertices(object);
29553829
29563830 SetMaterial(mat, object.projectedVertices);
29573831 }
....@@ -3071,6 +3945,17 @@
30713945 public void itemStateChanged(ItemEvent event)
30723946 {
30733947 // System.out.println("Propagate = " + propagate);
3948
+ if (event.getSource() == pinButton)
3949
+ {
3950
+ copy.pinned ^= true;
3951
+ if (!copy.pinned && !copy.editWindow.copy.selection.contains(copy))
3952
+ {
3953
+ ((GroupEditor)copy.editWindow).listUI.remove(copy);
3954
+ copy.CloseUI();
3955
+ //copy.editWindow.refreshContents();
3956
+ }
3957
+ }
3958
+ else
30743959 if (event.getSource() == propagateToggle)
30753960 {
30763961 propagate ^= true;
....@@ -3175,8 +4060,9 @@
31754060 } else if (event.getSource() == liveCB)
31764061 {
31774062 copy.live ^= true;
4063
+ objEditor.refreshContents(true); // To show item colors
31784064 return;
3179
- } else if (event.getSource() == selectCB)
4065
+ } else if (event.getSource() == selectableCB)
31804066 {
31814067 copy.dontselect ^= true;
31824068 return;
....@@ -3184,7 +4070,7 @@
31844070 {
31854071 copy.hide ^= true;
31864072 copy.Touch(); // display list issue
3187
- objEditor.refreshContents();
4073
+ objEditor.refreshContents(true); // To show item colors
31884074 return;
31894075 } else if (event.getSource() == link2masterCB)
31904076 {
....@@ -3249,7 +4135,7 @@
32494135 //System.out.println("ObjEditor " + event);
32504136 applySelf0(true);
32514137 //parent.applySelf();
3252
- objEditor.refreshContents();
4138
+ // conflicts with requestFocus objEditor.refreshContents();
32534139 } else if (source == resetButton)
32544140 {
32554141 CameraPane.fullreset = true;
....@@ -3361,9 +4247,9 @@
33614247 {
33624248 Close();
33634249 //return true;
3364
- } else if (source == loadItem)
4250
+ } else if (source == openItem)
33654251 {
3366
- load();
4252
+ Open();
33674253 //return true;
33684254 } else if (source == newItem)
33694255 {
....@@ -3388,6 +4274,10 @@
33884274 {
33894275 generatePOV();
33904276 //return true;
4277
+ } else if (event.getSource() == archiveItem)
4278
+ {
4279
+ cTools.Archive(frame);
4280
+ return;
33914281 } else if (source == zBufferItem)
33924282 {
33934283 try
....@@ -3425,22 +4315,30 @@
34254315
34264316 void New()
34274317 {
3428
- while (copy.Size() > 1)
4318
+ while (copy.Size() > 0)
34294319 {
3430
- copy.remove(1);
4320
+ copy.remove(0);
34314321 }
34324322
4323
+ copy.selection.clear();
4324
+
4325
+ if (copy == Grafreed.grafreed.universe)
4326
+ {
4327
+ CreateCameras();
4328
+ cameraView.SetCamera(GetCamera(copy, 0));
4329
+ }
34334330 ResetModel();
34344331 objEditor.refreshContents();
34354332 }
34364333
34374334 static public byte[] Compress(Object3D o)
34384335 {
4336
+ // Slower to actually compress.
34394337 try
34404338 {
34414339 ByteArrayOutputStream baos = new ByteArrayOutputStream();
3442
- java.util.zip.GZIPOutputStream zstream = new java.util.zip.GZIPOutputStream(baos);
3443
- ObjectOutputStream out = new ObjectOutputStream(zstream);
4340
+// java.util.zip.GZIPOutputStream zstream = new java.util.zip.GZIPOutputStream(baos);
4341
+ ObjectOutputStream out = new ObjectOutputStream(baos); //zstream);
34444342
34454343 Object3D parent = o.parent;
34464344 o.parent = null;
....@@ -3451,10 +4349,14 @@
34514349
34524350 out.flush();
34534351
3454
- zstream.close();
4352
+ baos //zstream
4353
+ .close();
34554354 out.close();
34564355
3457
- return baos.toByteArray();
4356
+ byte[] bytes = baos.toByteArray();
4357
+
4358
+ System.out.println("save #bytes = " + bytes.length);
4359
+ return bytes;
34584360 } catch (Exception e)
34594361 {
34604362 System.err.println(e);
....@@ -3464,13 +4366,16 @@
34644366
34654367 static public Object Uncompress(byte[] bytes)
34664368 {
3467
- System.out.println("#bytes = " + bytes.length);
4369
+ System.out.println("restore #bytes = " + bytes.length);
34684370 try
34694371 {
34704372 ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
3471
- java.util.zip.GZIPInputStream istream = new java.util.zip.GZIPInputStream(bais);
3472
- ObjectInputStream in = new ObjectInputStream(istream);
4373
+ //java.util.zip.GZIPInputStream istream = new java.util.zip.GZIPInputStream(bais);
4374
+ ObjectInputStream in = new ObjectInputStream(bais); // istream);
34734375 Object obj = in.readObject();
4376
+
4377
+ bais //istream
4378
+ .close();
34744379 in.close();
34754380
34764381 return obj;
....@@ -3525,41 +4430,97 @@
35254430 return null;
35264431 }
35274432
3528
- java.util.Hashtable<java.util.UUID, Object3D> hashtable = new java.util.Hashtable<java.util.UUID, Object3D>();
35294433
35304434 public void Save()
35314435 {
4436
+ //Save(true);
4437
+ Replace();
4438
+ SetVersionStates();
4439
+ }
4440
+
4441
+ private boolean Equal(byte[] compress, byte[] name)
4442
+ {
4443
+ if (compress.length != name.length)
4444
+ {
4445
+ return false;
4446
+ }
4447
+
4448
+ for (int i=compress.length; --i>=0;)
4449
+ {
4450
+ if (compress[i] != name[i])
4451
+ return false;
4452
+ }
4453
+
4454
+ return true;
4455
+ }
4456
+
4457
+ void DeleteVersion()
4458
+ {
4459
+ for (int i = copy.versionindex; i < copy.versionlist.length-1; i++)
4460
+ {
4461
+ copy.versionlist[i] = copy.versionlist[i+1];
4462
+ }
4463
+
4464
+ if (copy.versionlist[copy.versionindex] == null)
4465
+ copy.versionindex -= 1;
4466
+
4467
+ if (copy.versionindex != -1)
4468
+ CopyChanged();
4469
+
4470
+ SetVersionStates();
4471
+ }
4472
+
4473
+ public boolean Save(boolean user)
4474
+ {
35324475 System.err.println("Save");
4476
+ Replace();
35334477
3534
- cRadio tab = GetCurrentTab();
4478
+ //cRadio tab = GetCurrentTab();
35354479
3536
- boolean temp = CameraPane.SWITCH;
3537
- CameraPane.SWITCH = false;
4480
+ Object3D compress = Duplicate(copy); // Saved version. No need for "Replace"?
35384481
3539
- copy.ExtractBigData(hashtable);
4482
+ boolean thesame = false;
4483
+
4484
+// if (copy.versionindex > 0 && copy.versions[copy.versionindex-1] != null && Equal(compress, copy.versions[copy.versionindex-1]))
4485
+// {
4486
+// thesame = true;
4487
+// }
35404488
35414489 //EditorFrame.m_MainFrame.requestFocusInWindow();
3542
- tab.graphs[tab.undoindex++] = Compress(copy);
3543
-
3544
- copy.RestoreBigData(hashtable);
3545
-
3546
- CameraPane.SWITCH = temp;
3547
-
3548
- //assert(hashtable.isEmpty());
3549
-
3550
- for (int i = tab.undoindex; i < tab.graphs.length; i++)
4490
+ if (!thesame)
35514491 {
3552
- tab.graphs[i] = null;
4492
+ for (int i = copy.versionlist.length; --i > copy.versionindex+1;)
4493
+ {
4494
+ copy.versionlist[i] = copy.versionlist[i-1];
4495
+ }
4496
+
4497
+ //tab.user[tab.versionindex] = user;
4498
+ //boolean increment = true; // tab.graphs[tab.versionindex] == null;
4499
+
4500
+ copy.versionlist[++copy.versionindex] = compress;
4501
+
4502
+ // if (increment)
4503
+ // tab.versionindex++;
35534504 }
35544505
3555
- SetUndoStates();
4506
+ //copy.RestoreBigData(versiontable);
4507
+
4508
+ //assert(hashtable.isEmpty());
4509
+
4510
+// for (int i = copy.versionindex+1; i < copy.versionlist.length; i++)
4511
+// {
4512
+// //tab.user[i] = false;
4513
+// copy.versionlist[i] = null;
4514
+// }
4515
+
4516
+ SetVersionStates();
35564517
35574518 // test save
35584519 if (false)
35594520 {
35604521 try
35614522 {
3562
- FileOutputStream ostream = new FileOutputStream("save" + tab.undoindex);
4523
+ FileOutputStream ostream = new FileOutputStream("save" + copy.versionindex);
35634524 ObjectOutputStream p = new ObjectOutputStream(ostream);
35644525
35654526 p.writeObject(copy);
....@@ -3572,28 +4533,68 @@
35724533 e.printStackTrace();
35734534 }
35744535 }
4536
+
4537
+ return !thesame;
4538
+ }
4539
+
4540
+ boolean flashIt = true;
4541
+
4542
+ void RefreshSelection()
4543
+ {
4544
+ Object3D selection = new Object3D();
4545
+
4546
+ for (int i = 0; i < copy.selection.size(); i++)
4547
+ {
4548
+ Object3D elem = copy.selection.elementAt(i);
4549
+
4550
+ Object3D obj = copy.GetObject(elem.GetUUID());
4551
+
4552
+ if (obj == null)
4553
+ {
4554
+ copy.selection.remove(i--);
4555
+ }
4556
+ else
4557
+ {
4558
+ selection.add(obj);
4559
+ copy.selection.setElementAt(obj, i);
4560
+ }
4561
+ }
4562
+
4563
+ flashIt = false;
4564
+ GetTree().clearSelection();
4565
+ for (int i = 0; i < selection.size(); i++)
4566
+ GetTree().addSelectionPath(selection.elementAt(i).GetTreePath().GetTreePath());
4567
+ flashIt = true;
4568
+
4569
+ //refreshContents(false);
35754570 }
35764571
3577
- void CopyChanged(Object3D obj)
4572
+ void CopyChanged()
35784573 {
3579
- SetUndoStates();
4574
+ Object3D obj = (Object3D)Grafreed.clone(copy.versionlist[copy.versionindex]);
4575
+
4576
+ SetVersionStates();
35804577
35814578 boolean temp = CameraPane.SWITCH;
35824579 CameraPane.SWITCH = false;
35834580
3584
- copy.ExtractBigData(hashtable);
4581
+ copy.ExtractBigData(Grafreed.grafreed.universe.versiontable);
35854582
35864583 copy.clear();
35874584
4585
+ copy.skyboxname = obj.skyboxname;
4586
+ copy.skyboxext = obj.skyboxext;
4587
+
35884588 for (int i=0; i<obj.Size(); i++)
35894589 {
35904590 copy.add(obj.get(i));
35914591 }
35924592
3593
- copy.RestoreBigData(hashtable);
4593
+ copy.RestoreBigData(Grafreed.grafreed.universe.versiontable);
35944594
35954595 CameraPane.SWITCH = temp;
35964596
4597
+ RefreshSelection();
35974598 //assert(hashtable.isEmpty());
35984599
35994600 copy.Touch();
....@@ -3614,56 +4615,161 @@
36144615 }
36154616 }
36164617
3617
- refreshContents();
4618
+ refreshContents(true);
36184619 }
36194620
3620
- cButton undoButton;
3621
- cButton redoButton;
4621
+ cButton previousVersionButton;
4622
+ cButton restoreButton;
4623
+ cButton replaceButton;
4624
+ cButton nextVersionButton;
4625
+ cButton saveVersionButton;
4626
+ cButton deleteVersionButton;
36224627
3623
- void SetUndoStates()
4628
+ boolean muteSlider;
4629
+
4630
+ int VersionCount()
36244631 {
3625
- cRadio tab = GetCurrentTab();
4632
+ int count = 0;
36264633
3627
- undoButton.setEnabled(tab.undoindex > 0);
3628
- redoButton.setEnabled(tab.graphs[tab.undoindex + 1] != null);
4634
+ for (int i = copy.versionlist.length; --i >= 0;)
4635
+ {
4636
+ if (copy.versionlist[i] != null)
4637
+ count++;
4638
+ }
4639
+
4640
+ return count;
36294641 }
36304642
3631
- public void Undo()
4643
+ public cGridBag versionSliderPane;
4644
+
4645
+ void SetVersionStates()
36324646 {
4647
+ //if (true)
4648
+ // return;
4649
+
4650
+ //cRadio tab = GetCurrentTab();
4651
+
4652
+ if (copy.versionlist == null)
4653
+ {
4654
+ saveVersionButton.setEnabled(false);
4655
+ restoreButton.setEnabled(false);
4656
+ replaceButton.setEnabled(false);
4657
+ previousVersionButton.setEnabled(false);
4658
+ nextVersionButton.setEnabled(false);
4659
+ deleteVersionButton.setEnabled(false);
4660
+ versionSliderPane.setVisible(false);
4661
+ }
4662
+ else
4663
+ {
4664
+ restoreButton.setEnabled(copy.versionindex != -1);
4665
+ replaceButton.setEnabled(copy.versionindex != -1);
4666
+
4667
+ previousVersionButton.setEnabled(copy.versionindex > 0);
4668
+ nextVersionButton.setEnabled(copy.versionlist[copy.versionindex + 1] != null);
4669
+
4670
+ deleteVersionButton.setEnabled(copy.versionindex != -1);
4671
+ //copy.versionlist[copy.versionindex + 1] != null);
4672
+
4673
+ muteSlider = true;
4674
+ versionSlider.setMinimum(0);
4675
+ versionSlider.setMaximum(VersionCount() - 1);
4676
+ versionSlider.setInteger(copy.versionindex);
4677
+ versionSlider.setEnabled(copy.versionindex != -1);
4678
+ muteSlider = false;
4679
+
4680
+ versionSliderPane.setVisible(true);
4681
+ }
4682
+ }
4683
+
4684
+ public boolean PreviousVersion()
4685
+ {
4686
+ // Option?
4687
+ Replace();
4688
+
36334689 System.err.println("Undo");
36344690
3635
- cRadio tab = GetCurrentTab();
4691
+ //cRadio tab = GetCurrentTab();
36364692
3637
- if (tab.undoindex == 0)
4693
+ if (copy.versionindex == 0)
36384694 {
36394695 java.awt.Toolkit.getDefaultToolkit().beep();
3640
- return;
4696
+ return false;
36414697 }
36424698
3643
- if (tab.graphs[tab.undoindex] == null)
3644
- {
3645
- Save();
3646
- tab.undoindex -= 1;
3647
- }
4699
+// if (tab.graphs[tab.versionindex] == null) // || !tab.user[tab.versionindex])
4700
+// {
4701
+// if (Save(false))
4702
+// tab.versionindex -= 1;
4703
+// else
4704
+// {
4705
+// if (tab.versionindex <= 0)
4706
+// return false;
4707
+// else
4708
+// tab.versionindex -= 1;
4709
+// }
4710
+// }
36484711
3649
- tab.undoindex -= 1;
4712
+ copy.versionindex -= 1;
36504713
3651
- CopyChanged((Object3D)Uncompress(tab.graphs[tab.undoindex]));
4714
+ CopyChanged();
4715
+
4716
+ return true;
36524717 }
36534718
3654
- public void Redo()
4719
+ public boolean Restore()
36554720 {
3656
- cRadio tab = GetCurrentTab();
4721
+ System.err.println("Restore");
36574722
3658
- if (tab.graphs[tab.undoindex + 1] == null)
4723
+ //cRadio tab = GetCurrentTab();
4724
+
4725
+ if (copy.versionindex == -1 || copy.versionlist[copy.versionindex] == null)
4726
+ {
4727
+ java.awt.Toolkit.getDefaultToolkit().beep();
4728
+ return false;
4729
+ }
4730
+
4731
+ //CopyChanged((Object3D)Uncompress(copy.versions[copy.versionindex]));
4732
+ CopyChanged();
4733
+
4734
+ return true;
4735
+ }
4736
+
4737
+ public boolean Replace()
4738
+ {
4739
+ //System.err.println("Replace");
4740
+
4741
+ //cRadio tab = GetCurrentTab();
4742
+
4743
+ if (copy.versionindex == -1 || copy.versionlist[copy.versionindex] == null)
4744
+ {
4745
+ // No version yet. OK. java.awt.Toolkit.getDefaultToolkit().beep();
4746
+ return false;
4747
+ }
4748
+
4749
+ copy.versionlist[copy.versionindex] = Duplicate(copy);
4750
+
4751
+ return true;
4752
+ }
4753
+
4754
+ public void NextVersion()
4755
+ {
4756
+ // Option?
4757
+ Replace();
4758
+
4759
+ //cRadio tab = GetCurrentTab();
4760
+
4761
+ if (copy.versionlist[copy.versionindex + 1] == null)
36594762 {
36604763 java.awt.Toolkit.getDefaultToolkit().beep();
36614764 return;
36624765 }
36634766
3664
- tab.undoindex += 1;
4767
+ copy.versionindex += 1;
36654768
3666
- CopyChanged((Object3D)Uncompress(tab.graphs[tab.undoindex]));
4769
+ CopyChanged();
4770
+
4771
+ //if (!tab.user[tab.versionindex])
4772
+ // tab.graphs[tab.versionindex] = null;
36674773 }
36684774
36694775 void ImportGFD()
....@@ -3857,6 +4963,12 @@
38574963 // else
38584964 // applySelf(true);
38594965 // }
4966
+
4967
+ boolean Equal(double a, double b)
4968
+ {
4969
+ return Math.abs(a - b) < 0.001;
4970
+ }
4971
+
38604972 void applySelf0(boolean name)
38614973 {
38624974 if (name)
....@@ -3874,7 +4986,7 @@
38744986 //copy.material = new cMaterial(copy.GetMaterial());
38754987
38764988 current.color = (float) colorField.getFloat();
3877
- current.modulation = (float) modulationField.getFloat();
4989
+ current.modulation = (float) saturationField.getFloat();
38784990 current.metalness = (float) metalnessField.getFloat();
38794991 current.diffuse = (float) diffuseField.getFloat();
38804992 current.specular = (float) specularField.getFloat();
....@@ -3894,6 +5006,7 @@
38945006 current.shadow = (float) shadowField.getFloat();
38955007 current.texture = (float) textureField.getFloat();
38965008 current.opacity = (float) opacityField.getFloat();
5009
+ current.parallax = (float) parallaxField.getFloat() - 0.125f;
38975010 current.fakedepth = (float) fakedepthField.getFloat();
38985011 current.shadowbias = (float) shadowbiasField.getFloat();
38995012
....@@ -3906,29 +5019,54 @@
39065019 {
39075020 cMaterial mat = copy.material;
39085021
3909
- colorField.SetToolTipValue((mat.color));
3910
- modulationField.SetToolTipValue((mat.modulation));
3911
- metalnessField.SetToolTipValue((mat.metalness));
3912
- diffuseField.SetToolTipValue((mat.diffuse));
3913
- specularField.SetToolTipValue((mat.specular));
3914
- shininessField.SetToolTipValue((mat.shininess));
3915
- shiftField.SetToolTipValue((mat.shift));
3916
- ambientField.SetToolTipValue((mat.ambient));
3917
- lightareaField.SetToolTipValue((mat.lightarea));
3918
- diffusenessField.SetToolTipValue((mat.factor));
3919
- velvetField.SetToolTipValue((mat.velvet));
3920
- sheenField.SetToolTipValue((mat.sheen));
3921
- subsurfaceField.SetToolTipValue((mat.subsurface));
3922
- backlitField.SetToolTipValue((mat.bump));
3923
- anisoField.SetToolTipValue((mat.aniso));
3924
- anisoVField.SetToolTipValue((mat.anisoV));
3925
- cameraField.SetToolTipValue((mat.cameralight));
3926
- selfshadowField.SetToolTipValue((mat.diffuseness));
3927
- shadowField.SetToolTipValue((mat.shadow));
3928
- textureField.SetToolTipValue((mat.texture));
3929
- opacityField.SetToolTipValue((mat.opacity));
3930
- fakedepthField.SetToolTipValue((mat.fakedepth));
3931
- shadowbiasField.SetToolTipValue((mat.shadowbias));
5022
+ if (!Equal(colorField.getFloat(), mat.color))
5023
+ colorField.SetToolTipValue((mat.color));
5024
+ if (!Equal(saturationField.getFloat(), mat.modulation))
5025
+ saturationField.SetToolTipValue((mat.modulation));
5026
+ if (!Equal(metalnessField.getFloat(), mat.metalness))
5027
+ metalnessField.SetToolTipValue((mat.metalness));
5028
+ if (!Equal(diffuseField.getFloat(), mat.diffuse))
5029
+ diffuseField.SetToolTipValue((mat.diffuse));
5030
+ if (!Equal(specularField.getFloat(), mat.specular))
5031
+ specularField.SetToolTipValue((mat.specular));
5032
+ if (!Equal(shininessField.getFloat(), mat.shininess))
5033
+ shininessField.SetToolTipValue((mat.shininess));
5034
+ if (!Equal(shiftField.getFloat(), mat.shift))
5035
+ shiftField.SetToolTipValue((mat.shift));
5036
+ if (!Equal(ambientField.getFloat(), mat.ambient))
5037
+ ambientField.SetToolTipValue((mat.ambient));
5038
+ if (!Equal(lightareaField.getFloat(), mat.lightarea))
5039
+ lightareaField.SetToolTipValue((mat.lightarea));
5040
+ if (!Equal(diffusenessField.getFloat(), mat.factor))
5041
+ diffusenessField.SetToolTipValue((mat.factor));
5042
+ if (!Equal(velvetField.getFloat(), mat.velvet))
5043
+ velvetField.SetToolTipValue((mat.velvet));
5044
+ if (!Equal(sheenField.getFloat(), mat.sheen))
5045
+ sheenField.SetToolTipValue((mat.sheen));
5046
+ if (!Equal(subsurfaceField.getFloat(), mat.subsurface))
5047
+ subsurfaceField.SetToolTipValue((mat.subsurface));
5048
+ if (!Equal(backlitField.getFloat(), mat.bump))
5049
+ backlitField.SetToolTipValue((mat.bump));
5050
+ if (!Equal(anisoField.getFloat(), mat.aniso))
5051
+ anisoField.SetToolTipValue((mat.aniso));
5052
+ if (!Equal(anisoVField.getFloat(), mat.anisoV))
5053
+ anisoVField.SetToolTipValue((mat.anisoV));
5054
+ if (!Equal(cameraField.getFloat(), mat.cameralight))
5055
+ cameraField.SetToolTipValue((mat.cameralight));
5056
+ if (!Equal(selfshadowField.getFloat(), mat.diffuseness))
5057
+ selfshadowField.SetToolTipValue((mat.diffuseness));
5058
+ if (!Equal(shadowField.getFloat(), mat.shadow))
5059
+ shadowField.SetToolTipValue((mat.shadow));
5060
+ if (!Equal(textureField.getFloat(), mat.texture))
5061
+ textureField.SetToolTipValue((mat.texture));
5062
+ if (!Equal(opacityField.getFloat(), mat.opacity))
5063
+ opacityField.SetToolTipValue((mat.opacity));
5064
+ //if (!Equal(parallaxField.getFloat(), mat.parallax))
5065
+ parallaxField.SetToolTipValue((mat.parallax));
5066
+ if (!Equal(fakedepthField.getFloat(), mat.fakedepth))
5067
+ fakedepthField.SetToolTipValue((mat.fakedepth));
5068
+ if (!Equal(shadowbiasField.getFloat(), mat.shadowbias))
5069
+ shadowbiasField.SetToolTipValue((mat.shadowbias));
39325070 }
39335071
39345072 if (copy.material != null && copy.projectedVertices.length > 0 && copy.projectedVertices[0] != null)
....@@ -3959,9 +5097,28 @@
39595097 //copy.Touch();
39605098 }
39615099
5100
+ cNumberSlider versionSlider;
5101
+
39625102 public void stateChanged(ChangeEvent e)
39635103 {
3964
- // assert(false);
5104
+ // assert(false);
5105
+ if (e.getSource() == versionSlider)
5106
+ {
5107
+ if (muteSlider)
5108
+ return;
5109
+
5110
+ Replace();
5111
+
5112
+ int version = versionSlider.getInteger();
5113
+
5114
+ if (version != -1 && copy.versionlist[version] != null)
5115
+ {
5116
+ copy.versionindex = version;
5117
+ CopyChanged();
5118
+ }
5119
+
5120
+ return;
5121
+ }
39655122
39665123 if (freezematerial)
39675124 {
....@@ -3997,6 +5154,12 @@
39975154 {
39985155 //System.out.println("stateChanged = " + this);
39995156 materialtouched = true;
5157
+
5158
+ if (Globals.AUTOSATURATE && e.getSource() == colorField && saturationField.getFloat() == 0.001)
5159
+ {
5160
+ saturationField.setFloat(1);
5161
+ }
5162
+
40005163 applySelf();
40015164 //System.out.println("this = " + this);
40025165 //System.out.println("PARENT = " + parent);
....@@ -4296,6 +5459,7 @@
42965459 {
42975460 if (GetTree() != null)
42985461 {
5462
+ GetTree().revalidate();
42995463 GetTree().repaint();
43005464 }
43015465
....@@ -4304,13 +5468,18 @@
43045468 ctrlPanel.validate(); // ? new
43055469 ctrlPanel.repaint();
43065470 }
5471
+
5472
+ if (previousVersionButton != null && copy.versionlist != null)
5473
+ SetVersionStates();
5474
+
5475
+ cameraView.requestFocusInWindow();
43075476 }
43085477
43095478 static TweenManager tweenManager = new TweenManager();
43105479
43115480 void makeSomething(Object3D thing, boolean resetmodel) // deselect)
43125481 {
4313
- if (Globals.SAVEONMAKE) // && resetmodel)
5482
+ if (Globals.REPLACEONMAKE) // && resetmodel)
43145483 Save();
43155484 //Tween.set(thing, 0).target(1).start(tweenManager);
43165485 //Tween.to(thing, 0, 0.5f).target(0).start(tweenManager);
....@@ -4335,7 +5504,7 @@
43355504 // group = (Composite) group.get(0);
43365505 // }
43375506
4338
- System.out.println("makeSomething of " + thing);
5507
+ //System.out.println("makeSomething of " + thing);
43395508
43405509 /*
43415510 if (deselect && jList != null)
....@@ -4552,7 +5721,9 @@
45525721 readobj.ResetDisplayList();
45535722 } catch (Exception e)
45545723 {
4555
- //e.printStackTrace();
5724
+ if (!e.toString().contains("GZIP"))
5725
+ e.printStackTrace();
5726
+
45565727 try
45575728 {
45585729 java.io.FileInputStream istream = new java.io.FileInputStream(fullname);
....@@ -4626,12 +5797,14 @@
46265797
46275798 if (readobj != null)
46285799 {
4629
- if (Globals.SAVEONMAKE)
4630
- Save();
5800
+ //if (Globals.SAVEONMAKE) // A new object cannot share meshes
5801
+ // Save();
46315802 try
46325803 {
46335804 //readobj.deepCopySelf(copy);
46345805 copy.clear(); // june 2014
5806
+ copy.skyboxname = readobj.skyboxname;
5807
+ copy.skyboxext = readobj.skyboxext;
46355808 for (int i = 0; i < readobj.size(); i++)
46365809 {
46375810 Object3D child = readobj.get(i); // reserve(i);
....@@ -4672,6 +5845,7 @@
46725845 }
46735846 } catch (ClassCastException e)
46745847 {
5848
+ e.printStackTrace();
46755849 assert (false);
46765850 Composite c = (Composite) copy;
46775851 c.children.clear();
....@@ -4682,17 +5856,32 @@
46825856 c.addChild(csg);
46835857 }
46845858
5859
+ copy.versionlist = readobj.versionlist;
5860
+ copy.versionindex = readobj.versionindex;
5861
+ copy.versiontable = readobj.versiontable;
5862
+
5863
+ if (copy.versionlist == null)
5864
+ {
5865
+ // Backward compatibility
5866
+ copy.versionlist = new Object3D[100];
5867
+ copy.versionindex = -1;
5868
+
5869
+ //Save(true);
5870
+ }
5871
+
5872
+ //? SetUndoStates();
5873
+
46855874 ResetModel();
46865875 copy.HardTouch(); // recompile?
46875876 refreshContents();
46885877 }
46895878 }
46905879
4691
- void load() // throws ClassNotFoundException
5880
+ void Open() // throws ClassNotFoundException
46925881 {
46935882 if (Grafreed.standAlone)
46945883 {
4695
- FileDialog browser = new FileDialog(frame, "Load", FileDialog.LOAD);
5884
+ FileDialog browser = new FileDialog(frame, "Open", FileDialog.LOAD);
46965885 browser.show();
46975886 String filename = browser.getFile();
46985887 if (filename != null && filename.length() > 0)
....@@ -4769,6 +5958,8 @@
47695958
47705959 void save()
47715960 {
5961
+ Replace();
5962
+
47725963 if (lastname == null)
47735964 {
47745965 return;
....@@ -4791,6 +5982,7 @@
47915982 //ps.print(buffer.toString());
47925983 } catch (IOException e)
47935984 {
5985
+ e.printStackTrace();
47945986 }
47955987 }
47965988
....@@ -4973,7 +6165,7 @@
49736165 MenuBar menuBar;
49746166 Menu fileMenu;
49756167 MenuItem newItem;
4976
- MenuItem loadItem;
6168
+ MenuItem openItem;
49776169 MenuItem saveItem;
49786170 MenuItem saveAsItem;
49796171 MenuItem exportAsItem;
....@@ -4996,6 +6188,7 @@
49966188 CheckboxMenuItem toggleSwitchItem;
49976189 CheckboxMenuItem toggleRootItem;
49986190 CheckboxMenuItem animationItem;
6191
+ MenuItem archiveItem;
49996192 CheckboxMenuItem toggleHandleItem;
50006193 CheckboxMenuItem togglePaintItem;
50016194 JSplitPane mainPanel;
....@@ -5009,6 +6202,7 @@
50096202 ButtonGroup buttonGroup;
50106203
50116204 cGridBag toolboxPanel;
6205
+ cGridBag skyboxPanel;
50126206 cGridBag materialPanel;
50136207 cGridBag ctrlPanel;
50146208
....@@ -5020,6 +6214,7 @@
50206214 boolean materialFlushed;
50216215 Object3D latestObject;
50226216
6217
+ cGridBag transformPanel;
50236218 cGridBag XYZPanel;
50246219
50256220 JSplitPane gridPanel;
....@@ -5082,7 +6277,7 @@
50826277 JLabel colorLabel;
50836278 cNumberSlider colorField;
50846279 JLabel modulationLabel;
5085
- cNumberSlider modulationField;
6280
+ cNumberSlider saturationField;
50866281 JLabel metalnessLabel;
50876282 cNumberSlider metalnessField;
50886283 JLabel diffuseLabel;
....@@ -5113,6 +6308,7 @@
51136308 cNumberSlider anisoField;
51146309 JLabel anisoVLabel;
51156310 cNumberSlider anisoVField;
6311
+
51166312 JLabel cameraLabel;
51176313 cNumberSlider cameraField;
51186314 JLabel selfshadowLabel;
....@@ -5123,10 +6319,13 @@
51236319 cNumberSlider textureField;
51246320 JLabel opacityLabel;
51256321 cNumberSlider opacityField;
6322
+ JLabel parallaxLabel;
6323
+ cNumberSlider parallaxField;
51266324 JLabel fakedepthLabel;
51276325 cNumberSlider fakedepthField;
51286326 JLabel shadowbiasLabel;
51296327 cNumberSlider shadowbiasField;
6328
+
51306329 JLabel bumpLabel;
51316330 cNumberSlider bumpField;
51326331 JLabel noiseLabel;