Normand Briere
2019-08-12 b1d79b74514041a059b454a9f6fc3970773c0cb8
GroupEditor.java
....@@ -16,6 +16,7 @@
1616 //import buoy.widget.BFileChooser;
1717
1818 class GroupEditor extends ObjEditor implements //iParse, //iCallBack,
19
+ Grafreed.iResourceCallBack,
1920 ObjectUI,
2021 Runnable,
2122 ActionListener,
....@@ -28,8 +29,8 @@
2829 {
2930 cButton skyboxButton;
3031 final String path = "cubemaps/" + f + "-skyboxes/" + s;
31
- //row.add(skyboxButton = GetButton(path + "/" + s + ".jpg", !Grafreed.NIMBUSLAF));
32
- row.add(skyboxButton = GetButton(path + "/negx.jpg", !Grafreed.NIMBUSLAF));
32
+ row.add(skyboxButton = GetButton(path + "/preview.jpg", !Grafreed.NIMBUSLAF));
33
+ //row.add(skyboxButton = GetButton(path + "/negx.jpg", !Grafreed.NIMBUSLAF));
3334 skyboxButton.setToolTipText(s);
3435 skyboxButton.addActionListener(new ActionListener()
3536 {
....@@ -41,6 +42,22 @@
4142 });
4243 }
4344
45
+ public void AddTextureButton(String f, String c, final String t, int count, cGridBag row)
46
+ {
47
+ cButton textureButton;
48
+ final String path = "textures/" + f + "/" + c + "/"; // + t;
49
+ row.add(textureButton = GetButton(path + "icons/" + t, !Grafreed.NIMBUSLAF));
50
+ textureButton.setToolTipText(c + count);
51
+ textureButton.addActionListener(new ActionListener()
52
+ {
53
+ @Override
54
+ public void actionPerformed(ActionEvent e)
55
+ {
56
+ ChangeTexture(path + t);
57
+ }
58
+ });
59
+ }
60
+
4461 public void AddSkyboxTab0(JTabbedPane skyboxpanel)
4562 {
4663 cGridBag tab0 = new cGridBag().setVertical(true);
....@@ -57,11 +74,12 @@
5774 cGridBag row6 = new cGridBag();
5875
5976 AddSkyboxButton("default", "rgb", row0);
60
- AddSkyboxButton("default", "cornell", row0);
61
- AddSkyboxButton("default", "uffizi", row0);
62
- AddSkyboxButton("default", "CloudyHills", row0);
63
-
64
- AddSkyboxButton("default", "skycube", row1);
77
+ //AddSkyboxButton("default", "cornell", row0);
78
+ AddSkyboxButton("penguins", "dust", row0);
79
+ AddSkyboxButton("penguins", "tropic", row0);
80
+ AddSkyboxButton("penguins", "yonder", row0);
81
+
82
+ AddSkyboxButton("default", "uffizi", row1);
6583 AddSkyboxButton("bridge", "Bridge", row1);
6684 AddSkyboxButton("bridge", "Bridge2", row1);
6785 AddSkyboxButton("urban", "GamlaStan2", row1);
....@@ -73,23 +91,23 @@
7391
7492 AddSkyboxButton("urban", "SaintLazarusChurch3", row3);
7593 AddSkyboxButton("urban", "UnionSquare", row3);
94
+ AddSkyboxButton("urban", "Medborgarplatsen", row3);
7695 AddSkyboxButton("park", "BerzeliiPark", row3);
77
- AddSkyboxButton("park", "Buddha", row3);
7896
97
+ AddSkyboxButton("park", "Buddha", row4);
7998 AddSkyboxButton("park", "CNTower2", row4);
8099 AddSkyboxButton("park", "NiagaraFalls1", row4);
81100 AddSkyboxButton("park", "NiagaraFalls3", row4);
82
- AddSkyboxButton("park", "Park", row4);
83101
102
+ AddSkyboxButton("park", "Park", row5);
84103 AddSkyboxButton("park", "Pond", row5);
85104 AddSkyboxButton("park", "Skansen", row5);
86105 AddSkyboxButton("park", "Skansen2", row5);
87
- AddSkyboxButton("park", "Skansen3", row5);
88106
107
+ AddSkyboxButton("park", "Skansen3", row6);
89108 AddSkyboxButton("park", "Skansen4", row6);
90109 AddSkyboxButton("park", "Skansen5", row6);
91
- AddSkyboxButton("park", "Stairs", row6);
92
- AddSkyboxButton("park", "Tantolunden4", row6);
110
+ AddSkyboxButton("persson", "VancouverConventionCentre", row6);
93111
94112 tab0.add(row0);
95113 tab0.add(row1);
....@@ -140,24 +158,29 @@
140158 AddSkyboxButton("forest", "Langholmen2", row3);
141159 AddSkyboxButton("forest", "Plants", row3);
142160 AddSkyboxButton("mountain", "Maskonaive", row3);
161
+
143162 AddSkyboxButton("mountain", "Maskonaive2", row4);
144
-
145163 AddSkyboxButton("mountain", "Maskonaive3", row4);
146
- AddSkyboxButton("mountain", "Ryfjallet", row4);
147
- AddSkyboxButton("mountain", "Teide", row4);
164
+ AddSkyboxButton("mountain", "Teide", row4);
165
+ AddSkyboxButton("park", "Tantolunden4", row4);
148166
167
+ AddSkyboxButton("park", "Stairs", row5);
168
+ AddSkyboxButton("default", "skycube", row6);
149169 AddSkyboxButton("rocky", "Langholmen", row5);
150
- AddSkyboxButton("rocky", "Riddarfjarden", row5);
151170 AddSkyboxButton("rocky", "Skinnarviksberget", row5);
171
+
152172 AddSkyboxButton("rocky", "Tantolunden6", row5);
173
+ AddSkyboxButton("default", "CloudyHills", row6);
174
+ AddSkyboxButton("daz", "Autumn", row6);
175
+ AddSkyboxButton("daz", "MountainTrail", row6);
153176 /*
154
-Kastellholmen
155
-Langholmen
156
-Riddarfjarden
157
-Skinnarviksberget
158
-Tanto
159
-Tantolunden2
160
-Tantolunden6
177
+Autumn
178
+Greenlands
179
+MountainTrail
180
+Oasis
181
+TheRock
182
+TopOfTheWorld
183
+Winter
161184 */
162185
163186 tab0.add(row0);
....@@ -197,39 +220,33 @@
197220
198221 AddSkyboxButton("urban", "CNTower", row1);
199222 AddSkyboxButton("bridge", "ArstaBridge", row1);
200
- AddSkyboxButton("indoors", "DallasW", row1);
201
- AddSkyboxButton("indoors", "MarriottMadisonWest", row1);
223
+ AddSkyboxButton("rocky", "Riddarfjarden", row1);
224
+ AddSkyboxButton("penguins", "sleepyhollow", row1);
202225
226
+ AddSkyboxButton("penguins", "kenon_star", row2);
227
+ AddSkyboxButton("persson", "corona", row2);
228
+ AddSkyboxButton("persson", "spaceskybox", row2);
203229 AddSkyboxButton("indoors", "Vasa", row2);
204
- AddSkyboxButton("winter", "Backyard", row2);
205
- AddSkyboxButton("winter", "Creek", row2);
206
- AddSkyboxButton("winter", "FootballField3", row2);
207230
231
+ AddSkyboxButton("winter", "Backyard", row3);
232
+ AddSkyboxButton("winter", "Creek", row3);
233
+ AddSkyboxButton("winter", "FootballField3", row3);
208234 AddSkyboxButton("winter", "Forest", row3);
209
- AddSkyboxButton("winter", "HornstullsStrand2", row3);
210
- AddSkyboxButton("winter", "House", row3);
211
- AddSkyboxButton("winter", "IceLake", row3);
212235
236
+ AddSkyboxButton("winter", "HornstullsStrand2", row4);
237
+ AddSkyboxButton("winter", "House", row4);
238
+ AddSkyboxButton("winter", "IceLake", row4);
213239 AddSkyboxButton("winter", "IceRiver", row4);
214
- AddSkyboxButton("winter", "Park3", row4);
215
- AddSkyboxButton("winter", "PondWinter", row4);
216240
241
+ AddSkyboxButton("winter", "Park3", row5);
242
+ AddSkyboxButton("winter", "PondWinter", row5);
217243 AddSkyboxButton("winter", "Tantolunden5", row5);
218244 AddSkyboxButton("winter", "Vindelalven", row5);
219
- /*
220
-Backyard
221
-Creek
222
-FootballField3
223
-Forest
224
-HornstullsStrand2
225
-House
226
-IceLake
227
-IceRiver
228
-Park3
229
-PondWinter
230
-Tantolunden5
231
-Vindelalven *
232
- */
245
+
246
+ AddSkyboxButton("daz", "TheRock", row6);
247
+ AddSkyboxButton("daz", "TopOfTheWorld", row6);
248
+ AddSkyboxButton("daz", "Winter", row6);
249
+ AddSkyboxButton("mountain", "Ryfjallet", row6);
233250
234251 tab0.add(row0);
235252 tab0.add(row1);
....@@ -245,15 +262,113 @@
245262 //tab0.add(new cGridBag());
246263 }
247264 }
248
-
249
- public void ChangeSkybox(String name)
265
+
266
+ public void AddSkyboxTab3(JTabbedPane skyboxpanel)
250267 {
251
- cameraView.envyoff = false;
252
- cameraView.skyboxname = name;
253
- cameraView.skyboxext = "jpg";
268
+ cGridBag tab0 = new cGridBag().setVertical(true);
269
+
270
+ tab0.setName("Others");
271
+ skyboxpanel.add(tab0);
272
+
273
+ cGridBag row0 = new cGridBag();
274
+ cGridBag row1 = new cGridBag();
275
+ cGridBag row2 = new cGridBag();
276
+ cGridBag row3 = new cGridBag();
277
+ cGridBag row4 = new cGridBag();
278
+ cGridBag row5 = new cGridBag();
279
+ cGridBag row6 = new cGridBag();
280
+
281
+ AddSkyboxButton("mayhem", "afterrain", row0);
282
+ AddSkyboxButton("mayhem", "aqua4", row0);
283
+ AddSkyboxButton("mayhem", "aqua9", row0);
284
+ AddSkyboxButton("mayhem", "flame", row0);
285
+
286
+ AddSkyboxButton("mayhem", "h2s", row1);
287
+ AddSkyboxButton("mayhem", "prehistoric", row1);
288
+ AddSkyboxButton("mayhem", "scorched", row1);
289
+ AddSkyboxButton("penguins", "desertdawn", row1);
290
+
291
+ AddSkyboxButton("persson", "Citadella", row2);
292
+ AddSkyboxButton("persson", "Citadella2", row2);
293
+ AddSkyboxButton("persson", "clouds1", row2);
294
+ AddSkyboxButton("penguins", "wrath", row2);
295
+
296
+ AddSkyboxButton("persson", "FishermansBastion", row3);
297
+ AddSkyboxButton("persson", "HeroesSquare", row3);
298
+ AddSkyboxButton("indoors", "DallasW", row3);
299
+ AddSkyboxButton("indoors", "MarriottMadisonWest", row3);
300
+
301
+ AddSkyboxButton("persson", "LancellottiChapel", row4);
302
+ AddSkyboxButton("persson", "PereaBeach1", row4);
303
+ AddSkyboxButton("persson", "PereaBeach2", row4);
304
+ AddSkyboxButton("persson", "redeclipse", row4);
305
+
306
+ AddSkyboxButton("daz", "Greenlands", row5);
307
+ AddSkyboxButton("daz", "Oasis", row5);
308
+ AddSkyboxButton("elyvisions", "arch3", row5);
309
+ AddSkyboxButton("elyvisions", "calm_sea", row5);
310
+
311
+ AddSkyboxButton("elyvisions", "rainbow", row6);
312
+ AddSkyboxButton("elyvisions", "distant_sunset", row6);
313
+ AddSkyboxButton("elyvisions", "heaven", row6);
314
+ AddSkyboxButton("elyvisions", "hot", row6);
315
+
316
+ tab0.add(row0);
317
+ tab0.add(row1);
318
+ tab0.add(row2);
319
+ tab0.add(row3);
320
+ tab0.add(row4);
321
+ tab0.add(row5);
322
+ tab0.add(row6);
323
+
324
+ for (int i=5; --i>=0;)
325
+ {
326
+ //oe.toolboxPanel.Return();
327
+ //tab0.add(new cGridBag());
328
+ }
329
+ }
330
+
331
+ public void ChangeSkybox(String skybox)
332
+ {
333
+ //cameraView.envyoff = false;
334
+ group.skyboxname = skybox;
335
+ group.skyboxext = "jpg";
254336 cameraView.repaint();
255337 }
338
+
339
+ public void CreateSkyboxPanel(cGridBag skyboxPanel)
340
+ {
341
+ JTabbedPane skyboxpane = new JTabbedPane();
342
+
343
+ AddSkyboxTab0(skyboxpane);
344
+ AddSkyboxTab1(skyboxpane);
345
+ AddSkyboxTab2(skyboxpane);
346
+ AddSkyboxTab3(skyboxpane);
347
+
348
+ skyboxPanel.add(skyboxpane);
349
+ }
256350
351
+ public void ChangeTexture(String texture)
352
+ {
353
+ for (int i=0; i<group.selection.size(); i++)
354
+ {
355
+ Object3D obj = group.selection.get(i);
356
+ obj.SetPigmentTexture("@" + texture);
357
+ }
358
+
359
+ refreshContents();
360
+ }
361
+
362
+ public void Show3DView()
363
+ {
364
+ // bug
365
+ //gridPanel.setDividerLocation(1.0);
366
+ //bigPanel.setDividerLocation(0.0);
367
+ bigThree.ClearUI();
368
+ bigThree.add(centralPanel);
369
+ bigThree.FlushUI();
370
+ }
371
+
257372 //ObjEditor objEditor;
258373 public void closeUI2()
259374 {
....@@ -291,9 +406,9 @@
291406 this.copy = this.group = group;
292407 //selectees = this.group.selectees;
293408
294
- if (copy.versions == null)
409
+ if (copy.versionlist == null)
295410 {
296
- copy.versions = new byte[100][];
411
+ copy.versionlist = new Object3D[100];
297412 copy.versionindex = -1;
298413 }
299414
....@@ -318,9 +433,9 @@
318433
319434 ((cRadio)radioPanel.getComponent(0)).SetCamera(cameraView.renderCamera, true);
320435
321
- if (copy.versions == null)
436
+ if (copy.versionlist == null)
322437 {
323
- copy.versions = new byte[100][];
438
+ copy.versionlist = new Object3D[100];
324439 copy.versionindex = -1;
325440
326441 Save(true);
....@@ -794,6 +909,73 @@
794909 buildToolsMenu(menu);
795910 }
796911
912
+ JTabbedPane resourcecontainer;
913
+ cGridBag currenttab;
914
+ boolean added; // patch for jar
915
+
916
+ int tabcount = 0;
917
+ int colcount = 0;
918
+ int rowcount = 0;
919
+ int texturecount = 0;
920
+
921
+ int columns = 5;
922
+ int rows = 7;
923
+
924
+ public void ResourceCallBack(String[] path)
925
+ {
926
+// for (int i = 0; i < path.length; i++)
927
+// System.out.print(path[i] + "/");
928
+// System.out.println();
929
+
930
+ if (//rowcount == 0 ||
931
+ path.length == 1)
932
+ {
933
+ currenttab = new cGridBag();
934
+ added = false;
935
+ String tabname = path[0]; // String.valueOf((char)('A'+tabcount));
936
+ currenttab.setName(tabname);
937
+ rowcount = 1;
938
+ colcount = 0;
939
+ texturecount = 0;
940
+ }
941
+
942
+ if (path.length > 2 && path[2].toLowerCase().endsWith(".jpg"))
943
+ {
944
+ if (!added)
945
+ {
946
+ added = true;
947
+ resourcecontainer.add(currenttab);
948
+ String tabname = path[0]; // String.valueOf((char)('A'+tabcount));
949
+ resourcecontainer.setToolTipTextAt(tabcount++, "Texture Group " + tabname);
950
+ }
951
+
952
+ AddTextureButton(path[0], path[1], path[2], texturecount++, currenttab);
953
+
954
+ if (++colcount >= columns)
955
+ {
956
+ colcount = 0;
957
+ currenttab.Return();
958
+
959
+ if (rowcount++ >= rows)
960
+ {
961
+ rowcount = 0;
962
+ }
963
+ }
964
+ }
965
+ else
966
+ {
967
+// if (!path[path.length-1].equals("icons"))
968
+// resourcecontainer.Return();
969
+ }
970
+ }
971
+
972
+ void CreateTexturePanel(cGridBag container)
973
+ {
974
+ resourcecontainer = new JTabbedPane(JTabbedPane.LEFT);
975
+ container.add(resourcecontainer);
976
+
977
+ Grafreed.ParseResources("textures", this);
978
+ }
797979
798980 void SetupUI2(ObjEditor oe)
799981 {
....@@ -812,11 +994,6 @@
812994 //new Exception().printStackTrace();
813995
814996 oe.radioPanel = new JPanel(new GridBagLayout());
815
- oe.aConstraints.weightx = 1;
816
- oe.aConstraints.weighty = 0;
817
- oe.aConstraints.fill = GridBagConstraints.HORIZONTAL;
818
- oe.aConstraints.gridwidth = 100;
819
- oe.aConstraints.gridheight = 1;
820997 // oe.toolbarPanel.add(radioPanel); //, oe.aConstraints);
821998
822999 oe.buttonGroup = new ButtonGroup();
....@@ -854,6 +1031,45 @@
8541031 maxButton.addActionListener(this);
8551032 }
8561033
1034
+ cButton gcButton;
1035
+
1036
+ oe.toolbarPanel.add(gcButton = GetButton("icons/trash.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
1037
+ gcButton.setToolTipText("Garbage collect");
1038
+ gcButton.addActionListener(new ActionListener()
1039
+ {
1040
+ public void actionPerformed(ActionEvent e)
1041
+ {
1042
+ System.gc();
1043
+ }
1044
+ });
1045
+
1046
+ oe.toolbarPanel.add(collapseButton = GetButton("icons/collapse.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
1047
+ collapseButton.setToolTipText("Collapse toolbar");
1048
+ collapseButton.addActionListener(this);
1049
+
1050
+ oe.toolbarPanel.add(maximize3DButton = GetButton("", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
1051
+ maximize3DButton.setToolTipText("Maximize 3D view");
1052
+ maximize3DButton.addActionListener(this);
1053
+
1054
+ oe.toolbarPanel.add(twoButton = GetButton("icons/cube.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
1055
+ twoButton.setToolTipText("Show 3D view only");
1056
+ twoButton.addActionListener(this);
1057
+ this.fullscreenLayout = twoButton;
1058
+
1059
+ oe.toolbarPanel.add(threeButton = GetButton("icons/controlsview.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
1060
+ threeButton.setToolTipText("Show controls and 3D view");
1061
+ threeButton.addActionListener(this);
1062
+ if (Globals.ADVANCED)
1063
+ {
1064
+ oe.toolbarPanel.add(sixButton = GetButton("icons/viewcontrols.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
1065
+ sixButton.setToolTipText("Show 3D view and controls");
1066
+ sixButton.addActionListener(this);
1067
+ }
1068
+// oe.toolbarPanel.add(sevenButton = new cButton("-|-|-", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
1069
+// sevenButton.setToolTipText("3-column layout");
1070
+// sevenButton.addActionListener(this);
1071
+ //
1072
+
8571073 oe.toolbarPanel.add(fullButton = GetButton("icons/fullscreen.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
8581074 fullButton.setToolTipText("Full-screen window");
8591075 fullButton.addActionListener(this);
....@@ -866,41 +1082,45 @@
8661082 restoreCameraButton.setToolTipText("Restore viewpoint");
8671083 restoreCameraButton.addActionListener(this);
8681084
869
- copyOptionsPanel.add(saveButton = GetButton("icons/down_arrow.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
870
- saveButton.setToolTipText("New version");
871
- saveButton.addActionListener(this);
1085
+ copyOptionsPanel.add(saveVersionButton = GetButton("icons/down_arrow.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
1086
+ saveVersionButton.setToolTipText("Duplicate current version");
1087
+ saveVersionButton.addActionListener(this);
8721088
873
- copyOptionsPanel.add(undoButton = GetButton("icons/undo.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
874
- undoButton.setToolTipText("Previous version");
875
- undoButton.addActionListener(this);
876
- undoButton.setEnabled(false);
1089
+ copyOptionsPanel.add(deleteVersionButton = GetButton("icons/trash.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
1090
+ deleteVersionButton.setToolTipText("Delete current version");
1091
+ deleteVersionButton.addActionListener(this);
1092
+
1093
+ copyOptionsPanel.add(previousVersionButton = GetButton("icons/undo.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
1094
+ previousVersionButton.setToolTipText("Previous version");
1095
+ previousVersionButton.addActionListener(this);
1096
+ previousVersionButton.setEnabled(false);
8771097
8781098 cGridBag updown = new cGridBag().setVertical(true);
8791099 updown.add(restoreButton = GetButton("icons/restore.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
880
- restoreButton.setToolTipText("Restore current");
1100
+ restoreButton.setToolTipText("Undo (restore current version)");
8811101 restoreButton.addActionListener(this);
882
- restoreButton.setEnabled(false);
1102
+ //restoreButton.setEnabled(false);
8831103
8841104 updown.add(replaceButton = GetButton("icons/replace.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
885
- replaceButton.setToolTipText("Replace current");
1105
+ replaceButton.setToolTipText("Save (replace current version)");
8861106 replaceButton.addActionListener(this);
887
- replaceButton.setEnabled(false);
1107
+ //replaceButton.setEnabled(false);
8881108
8891109 copyOptionsPanel.add(updown);
8901110
891
- copyOptionsPanel.add(redoButton = GetButton("icons/redo.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
892
- redoButton.setToolTipText("Next version");
893
- redoButton.addActionListener(this);
894
- redoButton.setEnabled(false);
1111
+ copyOptionsPanel.add(nextVersionButton = GetButton("icons/redo.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
1112
+ nextVersionButton.setToolTipText("Next version");
1113
+ nextVersionButton.addActionListener(this);
1114
+ nextVersionButton.setEnabled(false);
1115
+
1116
+ oe.toolbarPanel.add(oneStepButton = GetButton("icons/step.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
1117
+ oneStepButton.setToolTipText("Animate one step forward");
1118
+ oneStepButton.addActionListener(this);
8951119
8961120 oe.toolbarPanel.add(liveCB = GetToggleButton("icons/run.png", Globals.isLIVE())); //, oe.aConstraints);
8971121 liveCB.setToolTipText("Enable animation");
8981122 liveCB.addItemListener(this);
8991123
900
- oe.toolbarPanel.add(oneStepButton = GetButton("icons/step.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
901
- oneStepButton.setToolTipText("Animate one step forward");
902
- oneStepButton.addActionListener(this);
903
-
9041124 oe.toolbarPanel.add(fastCB = GetToggleButton("icons/runfast.png", CameraPane.FAST)); //, constraints);
9051125 fastCB.setToolTipText("Fast mode");
9061126 fastCB.addItemListener(this);
....@@ -927,21 +1147,6 @@
9271147
9281148 //oe.toolbarPanel.add(new JSeparator(SwingConstants.VERTICAL));
9291149
930
- oe.toolbarPanel.add(twoButton = GetButton("icons/cube.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
931
- twoButton.setToolTipText("Show 3D view only");
932
- twoButton.addActionListener(this);
933
- this.fullscreenLayout = twoButton;
934
-
935
- oe.toolbarPanel.add(threeButton = GetButton("icons/controlsview.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
936
- threeButton.setToolTipText("Show controls and 3D view");
937
- threeButton.addActionListener(this);
938
- oe.toolbarPanel.add(sixButton = GetButton("icons/viewcontrols.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
939
- sixButton.setToolTipText("Show 3D view and controls");
940
- sixButton.addActionListener(this);
941
-// oe.toolbarPanel.add(sevenButton = new cButton("-|-|-", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
942
-// sevenButton.setToolTipText("3-column layout");
943
-// sevenButton.addActionListener(this);
944
- //
9451150
9461151 oe.toolbarPanel.add(rootButton = GetButton("icons/openwindow.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
9471152 rootButton.setToolTipText("Open selection in new tab");
....@@ -1025,18 +1230,15 @@
10251230
10261231 oe.toolboxPanel.add(row2);
10271232
1028
- // ENVYMAPS
1029
- cGridBag skyboxpane = new cGridBag();
1030
- skyboxpane.preferredHeight = 100;
1233
+ cGridBag textures = new cGridBag();
10311234
1032
- oe.toolboxPanel.add(skyboxpane);
1235
+ CreateTexturePanel(textures);
10331236
1034
- JTabbedPane skyboxpanel = new JTabbedPane();
1035
- skyboxpane.add(skyboxpanel);
1237
+ oe.toolboxPanel.add(textures);
10361238
1037
- AddSkyboxTab0(skyboxpanel);
1038
- AddSkyboxTab1(skyboxpanel);
1039
- AddSkyboxTab2(skyboxpanel);
1239
+ textures.preferredHeight = 100;
1240
+
1241
+ CreateSkyboxPanel(oe.skyboxPanel);
10401242
10411243 // EDIT panel
10421244 editCommandsPanel.add(editButton = GetButton("icons/controls.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
....@@ -1044,20 +1246,20 @@
10441246 editButton.addActionListener(this);
10451247
10461248 editCommandsPanel.add(uneditButton = GetButton("icons/remove.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
1047
- uneditButton.setToolTipText("Remove selection controls");
1249
+ uneditButton.setToolTipText("Unpin and remove selection controls");
10481250 uneditButton.addActionListener(this);
10491251
10501252 editCommandsPanel.add(allParamsButton = new JCheckBox("All", allparams)); //, oe.aConstraints);
1051
- allParamsButton.setToolTipText("Show all controle");
1253
+ allParamsButton.setToolTipText("Show all controls");
10521254 allParamsButton.addActionListener(this);
10531255
1054
- editCommandsPanel.add(clearPanelButton = new cButton("C", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
1055
- clearPanelButton.setToolTipText("Clear edit panel");
1256
+ editCommandsPanel.add(clearPanelButton = GetButton("icons/clear.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
1257
+ clearPanelButton.setToolTipText("Clear all controls");
10561258 clearPanelButton.addActionListener(this);
10571259
1058
- editCommandsPanel.add(unselectButton = new cButton("U", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
1059
- unselectButton.setToolTipText("Unselect");
1060
- unselectButton.addActionListener(this);
1260
+ //editCommandsPanel.add(unselectButton = new cButton("U", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
1261
+ //unselectButton.setToolTipText("Unselect");
1262
+ //unselectButton.addActionListener(this);
10611263
10621264 editCommandsPanel.add(flashSelectionButton = GetButton("icons/flash-light.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints);
10631265 flashSelectionButton.setToolTipText("Highlight selection");
....@@ -1117,7 +1319,7 @@
11171319 dgr.addDragGestureListener(this);
11181320 }catch(Exception e) {}
11191321 */
1120
- radio.layout = sixButton; // sevenButton;
1322
+ radio.layout = threeButton; // sixButton;
11211323 oe.toolbarPanel.add(radioPanel); //, oe.aConstraints);
11221324 }
11231325
....@@ -1168,9 +1370,12 @@
11681370 smoothCB.setToolTipText("Snapping delay");
11691371 smoothCB.addItemListener(this);
11701372
1171
- panel.add(slowCB = new cCheckBox("Slow", CameraPane.SLOWPOSE)); //, constraints);
1172
- slowCB.setToolTipText("Smooth interpolation");
1173
- slowCB.addItemListener(this);
1373
+// panel.add(slowCB = new cCheckBox("Slow", CameraPane.SLOWPOSE)); //, constraints);
1374
+// slowCB.setToolTipText("Smooth interpolation");
1375
+// slowCB.addItemListener(this);
1376
+ panel.add(minshaderCB = new cCheckBox("Min shader", Globals.MINSHADER)); //, constraints);
1377
+ minshaderCB.setToolTipText("Minimal fast shader");
1378
+ minshaderCB.addItemListener(this);
11741379
11751380 // constraints.gridy += 1;
11761381 // panel.add(speakerMocapCB = new cCheckBox("Mocap", CameraPane.SPEAKERMOCAP), constraints);
....@@ -1259,7 +1464,7 @@
12591464 }
12601465
12611466 radioButton.SetObject(obj);
1262
- radioButton.layout = sixButton; // sevenButton;
1467
+ radioButton.layout = threeButton; // sixButton;
12631468 radioButton.SetCamera(cameraView.renderCamera, false);
12641469 radioButton.addActionListener(this);
12651470 radioPanel.add(radioButton);
....@@ -1284,6 +1489,8 @@
12841489 cCheckBox localCB;
12851490 cCheckBox crowdCB;
12861491 cCheckBox smoothCB;
1492
+ cCheckBox minshaderCB;
1493
+
12871494 cToggleButton fastCB;
12881495 cCheckBox slowCB;
12891496 cCheckBox boxCB;
....@@ -1354,6 +1561,12 @@
13541561 {
13551562 cameraView.ToggleInertia();
13561563 cameraView.repaint();
1564
+ }
1565
+ else if(e.getSource() == minshaderCB)
1566
+ {
1567
+ Globals.MINSHADER ^= true;
1568
+ cameraView.programInitialized = false;
1569
+ cameraView.repaint();
13571570 }
13581571 else if(e.getSource() == localCB)
13591572 {
....@@ -1631,7 +1844,12 @@
16311844 TreePath path;
16321845
16331846 public TransferableTreePath(TreePath tp) {
1634
- path = tp;
1847
+ Object[] objs = new Object[tp.getPathCount()];
1848
+ for (int i=0; i<objs.length; i++)
1849
+ {
1850
+ objs[i] = ((Object3D)tp.getPathComponent(i)).GetUUID();
1851
+ }
1852
+ path = new TreePath(objs);
16351853 }
16361854
16371855 public synchronized DataFlavor[] getTransferDataFlavors() {
....@@ -2494,7 +2712,7 @@
24942712 if (source == invariantsItem)
24952713 {
24962714 System.out.println("Invariants:");
2497
- Grafreed.grafreeD.universe.invariants();
2715
+ Grafreed.grafreed.universe.invariants();
24982716 } else
24992717 if (source == memoryItem)
25002718 {
....@@ -2525,33 +2743,52 @@
25252743 {
25262744 ToggleFullScreen();
25272745 } else
2528
- if (source == undoButton)
2746
+ if (source == collapseButton)
2747
+ {
2748
+ this.expandedLayout = radio.layout;
2749
+ CollapseToolbar();
2750
+ } else
2751
+ if (source == maximize3DButton)
2752
+ {
2753
+ this.expandedLayout = radio.layout;
2754
+ radio.layout = twoButton;
2755
+ Show3DView();
2756
+ CollapseToolbar();
2757
+ } else
2758
+ if (source == previousVersionButton)
25292759 {
25302760 // Go to previous version
25312761 //if (!Undo())
25322762 //java.awt.Toolkit.getDefaultToolkit().beep();
2533
- Undo();
2763
+ PreviousVersion();
25342764 } else
25352765 if (source == restoreButton)
25362766 {
25372767 // Restore current version
25382768 Restore();
2769
+ //restoreButton.setEnabled(false);
25392770 } else
25402771 if (source == replaceButton)
25412772 {
25422773 // Overwrite current version
25432774 Replace();
2775
+ //replaceButton.setEnabled(false);
25442776 } else
2545
- if (source == redoButton)
2777
+ if (source == nextVersionButton)
25462778 {
25472779 // Go to next version
2548
- Redo();
2780
+ NextVersion();
25492781 } else
2550
- if (source == saveButton)
2782
+ if (source == saveVersionButton)
25512783 {
25522784 // Save a new version
25532785 if (!Save(true))
25542786 java.awt.Toolkit.getDefaultToolkit().beep();
2787
+ } else
2788
+ if (source == deleteVersionButton)
2789
+ {
2790
+ // Delete a new version
2791
+ DeleteVersion();
25552792 } else
25562793 if (source == oneStepButton)
25572794 {
....@@ -2606,11 +2843,11 @@
26062843 } else
26072844 if (source == undoItem)
26082845 {
2609
- Undo();
2846
+ PreviousVersion();
26102847 } else
26112848 if (source == redoItem)
26122849 {
2613
- Redo();
2850
+ NextVersion();
26142851 } else
26152852 if (source == duplicateItem)
26162853 {
....@@ -3469,38 +3706,7 @@
34693706 if (CameraPane.FULLSCREEN)
34703707 fullscreenLayout = radio.layout;
34713708
3472
- // bug
3473
- //gridPanel.setDividerLocation(1.0);
3474
- //bigPanel.setDividerLocation(0.0);
3475
-// bigThree.remove(scenePanel);
3476
-// bigThree.remove(centralPanel);
3477
-// bigThree.remove(XYZPanel);
3478
-// aWindowConstraints.gridx = 0;
3479
-// aWindowConstraints.gridy = 0;
3480
-// aWindowConstraints.gridwidth = 1;
3481
-// // aConstraints.gridheight = 3;
3482
-// aWindowConstraints.fill = GridBagConstraints.VERTICAL;
3483
-// aWindowConstraints.weightx = 0;
3484
-// aWindowConstraints.weighty = 1;
3485
-// //bigThree.add(jtp, aWindowConstraints);
3486
-// aWindowConstraints.weightx = 1;
3487
-// aWindowConstraints.gridwidth = 3;
3488
-// // aConstraints.gridheight = 3;
3489
-// aWindowConstraints.gridx = 1;
3490
-// aWindowConstraints.fill = GridBagConstraints.BOTH;
3491
-// bigThree.add(centralPanel, aWindowConstraints);
3492
-// aWindowConstraints.weightx = 0;
3493
-// aWindowConstraints.gridx = 4;
3494
-// aWindowConstraints.gridwidth = 1;
3495
-// // aConstraints.gridheight = 3;
3496
-// aWindowConstraints.fill = GridBagConstraints.VERTICAL;
3497
-// //bigThree.add(XYZPanel, aWindowConstraints);
3498
-// scenePanel.setVisible(false);
3499
-// centralPanel.setVisible(true);
3500
-// XYZPanel.setVisible(false);
3501
- bigThree.ClearUI();
3502
- bigThree.add(centralPanel);
3503
- bigThree.FlushUI();
3709
+ Show3DView();
35043710
35053711 cameraView.requestFocusInWindow();
35063712
....@@ -3743,10 +3949,10 @@
37433949 {
37443950 Object3D child = (Object3D)e.nextElement();
37453951 if(child.editWindow != null)
3746
- objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit"));
37473952 child.pinned = false;
37483953 child.CloseUI();
37493954 listUI.remove(child);
3955
+// objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit"));
37503956
37513957 //child.editWindow = null; // ???????????
37523958 }
....@@ -3765,6 +3971,7 @@
37653971 obj.CloseUI();
37663972 }
37673973 listUI.clear();
3974
+ SetPinStates(group.selection.size() > 0);
37683975 refreshContents(true);
37693976 } else
37703977 if (source == allParamsButton)
....@@ -3851,6 +4058,7 @@
38514058 radio.layout.doClick();
38524059
38534060 ClearUnpinned();
4061
+
38544062 //Grafreed.Assert(group != null);
38554063 //Grafreed.Assert(group.selection != null);
38564064 SetPinStates(group.selection == null || group.selection.size() > 0);
....@@ -3867,11 +4075,13 @@
38674075 } else if (event.getSource() == editCameraItem)
38684076 {
38694077 cameraView.ProtectCamera();
4078
+ cameraView.requestFocusInWindow();
38704079 cameraView.repaint();
38714080 return;
38724081 } else if (event.getSource() == restoreCameraItem || event.getSource() == restoreCameraButton)
38734082 {
38744083 cameraView.RevertCamera();
4084
+ cameraView.requestFocusInWindow();
38754085 cameraView.repaint();
38764086 return;
38774087 // } else if (event.getSource() == textureButton)
....@@ -5004,9 +5214,7 @@
50045214
50055215 freezemodel = false;
50065216 }
5007
-
5008
- boolean flashIt = true;
5009
-
5217
+
50105218 public void valueChanged(TreeSelectionEvent e)
50115219 //public boolean handleEvent(Event event)
50125220 {
....@@ -5079,13 +5287,15 @@
50795287 {
50805288 editButton.setEnabled(enabled);
50815289 uneditButton.setEnabled(enabled);
5082
- unselectButton.setEnabled(enabled);
5290
+ //unselectButton.setEnabled(enabled);
50835291 flashSelectionButton.setEnabled(enabled);
5292
+
5293
+ clearPanelButton.setEnabled(!listUI.isEmpty());
50845294 }
50855295
50865296 void refreshContents(boolean cp)
50875297 {
5088
- if (objectPanel.getSelectedIndex() == 2) // objectPanel.indexOfTab("Info"))
5298
+ //if (objectPanel.getSelectedIndex() == 2) // objectPanel.indexOfTab("Info"))
50895299 if (!Globals.MOUSEDRAGGED && group.selection != null) // && !Globals.TIMERRUNNING)
50905300 {
50915301 objEditor.ClearInfo(); // .GetMaterial());
....@@ -5095,7 +5305,7 @@
50955305 Object3D child = (Object3D) group.selection.get(i);
50965306
50975307 objEditor.AddInfo(child, this, true);
5098
- System.err.println("info : " + child.GetPath());
5308
+// System.err.println("info : " + child.GetPath());
50995309 }
51005310
51015311 objEditor.SetText(); // jan 2014
....@@ -5921,7 +6131,6 @@
59216131
59226132 cButton restoreCameraButton;
59236133
5924
- cButton saveButton;
59256134 cButton oneStepButton;
59266135
59276136 cButton groupButton;