.. | .. |
---|
16 | 16 | //import buoy.widget.BFileChooser; |
---|
17 | 17 | |
---|
18 | 18 | class GroupEditor extends ObjEditor implements //iParse, //iCallBack, |
---|
| 19 | + Grafreed.iResourceCallBack, |
---|
19 | 20 | ObjectUI, |
---|
20 | 21 | Runnable, |
---|
21 | 22 | ActionListener, |
---|
.. | .. |
---|
23 | 24 | DragGestureListener, DragSourceListener, DropTargetListener, |
---|
24 | 25 | ItemListener // ListSelectionListener |
---|
25 | 26 | { |
---|
| 27 | + |
---|
| 28 | + public void AddSkyboxButton(String f, String s, cGridBag row) |
---|
| 29 | + { |
---|
| 30 | + cButton skyboxButton; |
---|
| 31 | + final String path = "cubemaps/" + f + "-skyboxes/" + s; |
---|
| 32 | + row.add(skyboxButton = GetButton(path + "/preview.jpg", !Grafreed.NIMBUSLAF)); |
---|
| 33 | + //row.add(skyboxButton = GetButton(path + "/negx.jpg", !Grafreed.NIMBUSLAF)); |
---|
| 34 | + skyboxButton.setToolTipText(s.equals("") ? "No background" : s); |
---|
| 35 | + skyboxButton.addActionListener(new ActionListener() |
---|
| 36 | + { |
---|
| 37 | + @Override |
---|
| 38 | + public void actionPerformed(ActionEvent e) |
---|
| 39 | + { |
---|
| 40 | + ChangeSkybox(path); |
---|
| 41 | + } |
---|
| 42 | + }); |
---|
| 43 | + } |
---|
| 44 | + |
---|
| 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 | + |
---|
| 61 | + public void AddSkyboxTab0(JTabbedPane skyboxpanel) |
---|
| 62 | + { |
---|
| 63 | + cGridBag tab0 = new cGridBag().setVertical(true); |
---|
| 64 | + |
---|
| 65 | + tab0.setName("Urban"); |
---|
| 66 | + skyboxpanel.add(tab0); |
---|
| 67 | + |
---|
| 68 | + cGridBag row0 = new cGridBag(); |
---|
| 69 | + cGridBag row1 = new cGridBag(); |
---|
| 70 | + cGridBag row2 = new cGridBag(); |
---|
| 71 | + cGridBag row3 = new cGridBag(); |
---|
| 72 | + cGridBag row4 = new cGridBag(); |
---|
| 73 | + cGridBag row5 = new cGridBag(); |
---|
| 74 | + cGridBag row6 = new cGridBag(); |
---|
| 75 | + |
---|
| 76 | + AddSkyboxButton("default", "", row0); |
---|
| 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); |
---|
| 83 | + AddSkyboxButton("bridge", "Bridge", row1); |
---|
| 84 | + AddSkyboxButton("bridge", "Bridge2", row1); |
---|
| 85 | + AddSkyboxButton("urban", "GamlaStan2", row1); |
---|
| 86 | + |
---|
| 87 | + AddSkyboxButton("urban", "Parliament", row2); |
---|
| 88 | + AddSkyboxButton("urban", "Roundabout", row2); |
---|
| 89 | + AddSkyboxButton("urban", "SaintLazarusChurch", row2); |
---|
| 90 | + AddSkyboxButton("urban", "SaintLazarusChurch2", row2); |
---|
| 91 | + |
---|
| 92 | + AddSkyboxButton("urban", "SaintLazarusChurch3", row3); |
---|
| 93 | + AddSkyboxButton("urban", "UnionSquare", row3); |
---|
| 94 | + AddSkyboxButton("urban", "Medborgarplatsen", row3); |
---|
| 95 | + AddSkyboxButton("park", "BerzeliiPark", row3); |
---|
| 96 | + |
---|
| 97 | + AddSkyboxButton("park", "Buddha", row4); |
---|
| 98 | + AddSkyboxButton("park", "CNTower2", row4); |
---|
| 99 | + AddSkyboxButton("park", "NiagaraFalls1", row4); |
---|
| 100 | + AddSkyboxButton("park", "NiagaraFalls3", row4); |
---|
| 101 | + |
---|
| 102 | + AddSkyboxButton("park", "Park", row5); |
---|
| 103 | + AddSkyboxButton("park", "Pond", row5); |
---|
| 104 | + AddSkyboxButton("park", "Skansen", row5); |
---|
| 105 | + AddSkyboxButton("park", "Skansen2", row5); |
---|
| 106 | + |
---|
| 107 | + AddSkyboxButton("park", "Skansen3", row6); |
---|
| 108 | + AddSkyboxButton("park", "Skansen4", row6); |
---|
| 109 | + AddSkyboxButton("park", "Skansen5", row6); |
---|
| 110 | + AddSkyboxButton("persson", "VancouverConventionCentre", row6); |
---|
| 111 | + |
---|
| 112 | + tab0.add(row0); |
---|
| 113 | + tab0.add(row1); |
---|
| 114 | + tab0.add(row2); |
---|
| 115 | + tab0.add(row3); |
---|
| 116 | + tab0.add(row4); |
---|
| 117 | + tab0.add(row5); |
---|
| 118 | + tab0.add(row6); |
---|
| 119 | + |
---|
| 120 | + for (int i=5; --i>=0;) |
---|
| 121 | + { |
---|
| 122 | + //oe.toolboxPanel.Return(); |
---|
| 123 | + //tab0.add(new cGridBag()); |
---|
| 124 | + } |
---|
| 125 | + } |
---|
| 126 | + |
---|
| 127 | + public void AddSkyboxTab1(JTabbedPane skyboxpanel) |
---|
| 128 | + { |
---|
| 129 | + cGridBag tab0 = new cGridBag().setVertical(true); |
---|
| 130 | + |
---|
| 131 | + tab0.setName("Nature"); |
---|
| 132 | + skyboxpanel.add(tab0); |
---|
| 133 | + |
---|
| 134 | + cGridBag row0 = new cGridBag(); |
---|
| 135 | + cGridBag row1 = new cGridBag(); |
---|
| 136 | + cGridBag row2 = new cGridBag(); |
---|
| 137 | + cGridBag row3 = new cGridBag(); |
---|
| 138 | + cGridBag row4 = new cGridBag(); |
---|
| 139 | + cGridBag row5 = new cGridBag(); |
---|
| 140 | + cGridBag row6 = new cGridBag(); |
---|
| 141 | + |
---|
| 142 | + AddSkyboxButton("beach", "HeartInTheSand", row0); |
---|
| 143 | + AddSkyboxButton("beach", "LarnacaBeach", row0); |
---|
| 144 | + AddSkyboxButton("beach", "PalmTrees", row0); |
---|
| 145 | + AddSkyboxButton("beach", "Tenerife", row0); |
---|
| 146 | + |
---|
| 147 | + AddSkyboxButton("beach", "Tenerife2", row1); |
---|
| 148 | + AddSkyboxButton("beach", "Tenerife3", row1); |
---|
| 149 | + AddSkyboxButton("field", "FishPond", row1); |
---|
| 150 | + AddSkyboxButton("field", "Footballfield", row1); |
---|
| 151 | + |
---|
| 152 | + AddSkyboxButton("field", "Meadow", row2); |
---|
| 153 | + AddSkyboxButton("field", "Sorsele", row2); |
---|
| 154 | + AddSkyboxButton("field", "Sorsele2", row2); |
---|
| 155 | + AddSkyboxButton("field", "Sorsele3", row2); |
---|
| 156 | + |
---|
| 157 | + AddSkyboxButton("forest", "Brudslojan", row3); |
---|
| 158 | + AddSkyboxButton("forest", "Langholmen2", row3); |
---|
| 159 | + AddSkyboxButton("forest", "Plants", row3); |
---|
| 160 | + AddSkyboxButton("mountain", "Maskonaive", row3); |
---|
| 161 | + |
---|
| 162 | + AddSkyboxButton("mountain", "Maskonaive2", row4); |
---|
| 163 | + AddSkyboxButton("mountain", "Maskonaive3", row4); |
---|
| 164 | + AddSkyboxButton("mountain", "Teide", row4); |
---|
| 165 | + AddSkyboxButton("park", "Tantolunden4", row4); |
---|
| 166 | + |
---|
| 167 | + AddSkyboxButton("park", "Stairs", row5); |
---|
| 168 | + AddSkyboxButton("default", "skycube", row6); |
---|
| 169 | + AddSkyboxButton("rocky", "Langholmen", row5); |
---|
| 170 | + AddSkyboxButton("rocky", "Skinnarviksberget", row5); |
---|
| 171 | + |
---|
| 172 | + AddSkyboxButton("rocky", "Tantolunden6", row5); |
---|
| 173 | + AddSkyboxButton("default", "CloudyHills", row6); |
---|
| 174 | + AddSkyboxButton("daz", "Autumn", row6); |
---|
| 175 | + AddSkyboxButton("daz", "MountainTrail", row6); |
---|
| 176 | + /* |
---|
| 177 | +Autumn |
---|
| 178 | +Greenlands |
---|
| 179 | +MountainTrail |
---|
| 180 | +Oasis |
---|
| 181 | +TheRock |
---|
| 182 | +TopOfTheWorld |
---|
| 183 | +Winter |
---|
| 184 | + */ |
---|
| 185 | + |
---|
| 186 | + tab0.add(row0); |
---|
| 187 | + tab0.add(row1); |
---|
| 188 | + tab0.add(row2); |
---|
| 189 | + tab0.add(row3); |
---|
| 190 | + tab0.add(row4); |
---|
| 191 | + tab0.add(row5); |
---|
| 192 | + tab0.add(row6); |
---|
| 193 | + |
---|
| 194 | + for (int i=5; --i>=0;) |
---|
| 195 | + { |
---|
| 196 | + //oe.toolboxPanel.Return(); |
---|
| 197 | + //tab0.add(new cGridBag()); |
---|
| 198 | + } |
---|
| 199 | + } |
---|
| 200 | + |
---|
| 201 | + public void AddSkyboxTab2(JTabbedPane skyboxpanel) |
---|
| 202 | + { |
---|
| 203 | + cGridBag tab0 = new cGridBag().setVertical(true); |
---|
| 204 | + |
---|
| 205 | + tab0.setName("Night"); |
---|
| 206 | + skyboxpanel.add(tab0); |
---|
| 207 | + |
---|
| 208 | + cGridBag row0 = new cGridBag(); |
---|
| 209 | + cGridBag row1 = new cGridBag(); |
---|
| 210 | + cGridBag row2 = new cGridBag(); |
---|
| 211 | + cGridBag row3 = new cGridBag(); |
---|
| 212 | + cGridBag row4 = new cGridBag(); |
---|
| 213 | + cGridBag row5 = new cGridBag(); |
---|
| 214 | + cGridBag row6 = new cGridBag(); |
---|
| 215 | + |
---|
| 216 | + AddSkyboxButton("night", "NightPath", row0); |
---|
| 217 | + AddSkyboxButton("night", "PondNight", row0); |
---|
| 218 | + AddSkyboxButton("night", "Powerlines", row0); |
---|
| 219 | + AddSkyboxButton("night", "SwedishRoyalCastle", row0); |
---|
| 220 | + |
---|
| 221 | + AddSkyboxButton("urban", "CNTower", row1); |
---|
| 222 | + AddSkyboxButton("bridge", "ArstaBridge", row1); |
---|
| 223 | + AddSkyboxButton("rocky", "Riddarfjarden", row1); |
---|
| 224 | + AddSkyboxButton("penguins", "sleepyhollow", row1); |
---|
| 225 | + |
---|
| 226 | + AddSkyboxButton("penguins", "kenon_star", row2); |
---|
| 227 | + AddSkyboxButton("persson", "corona", row2); |
---|
| 228 | + AddSkyboxButton("persson", "spaceskybox", row2); |
---|
| 229 | + AddSkyboxButton("indoors", "Vasa", row2); |
---|
| 230 | + |
---|
| 231 | + AddSkyboxButton("winter", "Backyard", row3); |
---|
| 232 | + AddSkyboxButton("winter", "Creek", row3); |
---|
| 233 | + AddSkyboxButton("winter", "FootballField3", row3); |
---|
| 234 | + AddSkyboxButton("winter", "Forest", row3); |
---|
| 235 | + |
---|
| 236 | + AddSkyboxButton("winter", "HornstullsStrand2", row4); |
---|
| 237 | + AddSkyboxButton("winter", "House", row4); |
---|
| 238 | + AddSkyboxButton("winter", "IceLake", row4); |
---|
| 239 | + AddSkyboxButton("winter", "IceRiver", row4); |
---|
| 240 | + |
---|
| 241 | + AddSkyboxButton("winter", "Park3", row5); |
---|
| 242 | + AddSkyboxButton("winter", "PondWinter", row5); |
---|
| 243 | + AddSkyboxButton("winter", "Tantolunden5", row5); |
---|
| 244 | + AddSkyboxButton("winter", "Vindelalven", row5); |
---|
| 245 | + |
---|
| 246 | + AddSkyboxButton("daz", "TheRock", row6); |
---|
| 247 | + AddSkyboxButton("daz", "TopOfTheWorld", row6); |
---|
| 248 | + AddSkyboxButton("daz", "Winter", row6); |
---|
| 249 | + AddSkyboxButton("mountain", "Ryfjallet", row6); |
---|
| 250 | + |
---|
| 251 | + tab0.add(row0); |
---|
| 252 | + tab0.add(row1); |
---|
| 253 | + tab0.add(row2); |
---|
| 254 | + tab0.add(row3); |
---|
| 255 | + tab0.add(row4); |
---|
| 256 | + tab0.add(row5); |
---|
| 257 | + tab0.add(row6); |
---|
| 258 | + |
---|
| 259 | + for (int i=5; --i>=0;) |
---|
| 260 | + { |
---|
| 261 | + //oe.toolboxPanel.Return(); |
---|
| 262 | + //tab0.add(new cGridBag()); |
---|
| 263 | + } |
---|
| 264 | + } |
---|
| 265 | + |
---|
| 266 | + public void AddSkyboxTab3(JTabbedPane skyboxpanel) |
---|
| 267 | + { |
---|
| 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 | + if (skybox.endsWith("/")) |
---|
| 334 | + { |
---|
| 335 | + group.skyboxname = null; |
---|
| 336 | + group.skyboxext = null; |
---|
| 337 | + cameraView.repaint(); |
---|
| 338 | + } |
---|
| 339 | + else |
---|
| 340 | + { |
---|
| 341 | + //cameraView.envyoff = false; |
---|
| 342 | + group.skyboxname = skybox; |
---|
| 343 | + group.skyboxext = "jpg"; |
---|
| 344 | + cameraView.repaint(); |
---|
| 345 | + } |
---|
| 346 | + } |
---|
| 347 | + |
---|
| 348 | + public void CreateSkyboxPanel(cGridBag skyboxPanel) |
---|
| 349 | + { |
---|
| 350 | + JTabbedPane skyboxpane = new JTabbedPane(); |
---|
| 351 | + |
---|
| 352 | + AddSkyboxTab0(skyboxpane); |
---|
| 353 | + AddSkyboxTab1(skyboxpane); |
---|
| 354 | + AddSkyboxTab2(skyboxpane); |
---|
| 355 | + AddSkyboxTab3(skyboxpane); |
---|
| 356 | + |
---|
| 357 | + skyboxPanel.add(skyboxpane); |
---|
| 358 | + } |
---|
| 359 | + |
---|
| 360 | + public void ChangeTexture(String texture) |
---|
| 361 | + { |
---|
| 362 | + for (int i=0; i<group.selection.size(); i++) |
---|
| 363 | + { |
---|
| 364 | + Object3D obj = group.selection.get(i); |
---|
| 365 | + obj.SetPigmentTexture("@" + texture); |
---|
| 366 | + } |
---|
| 367 | + |
---|
| 368 | + refreshContents(); |
---|
| 369 | + } |
---|
| 370 | + |
---|
| 371 | + public void Show3DView() |
---|
| 372 | + { |
---|
| 373 | + // bug |
---|
| 374 | + //gridPanel.setDividerLocation(1.0); |
---|
| 375 | + //bigPanel.setDividerLocation(0.0); |
---|
| 376 | + bigThree.ClearUI(); |
---|
| 377 | + bigThree.add(centralPanel); |
---|
| 378 | + bigThree.FlushUI(); |
---|
| 379 | + } |
---|
| 380 | + |
---|
26 | 381 | //ObjEditor objEditor; |
---|
27 | 382 | public void closeUI2() |
---|
28 | 383 | { |
---|
.. | .. |
---|
60 | 415 | this.copy = this.group = group; |
---|
61 | 416 | //selectees = this.group.selectees; |
---|
62 | 417 | |
---|
| 418 | + assert(false); |
---|
| 419 | + |
---|
| 420 | + if (copy.versionlist == null) |
---|
| 421 | + { |
---|
| 422 | + copy.versionlist = new Object3D[100]; |
---|
| 423 | + copy.versionindex = -1; |
---|
| 424 | + |
---|
| 425 | + //Save(true); |
---|
| 426 | + } |
---|
| 427 | + |
---|
63 | 428 | if(ui) |
---|
64 | 429 | SetupUI(objEditor); |
---|
65 | 430 | } |
---|
.. | .. |
---|
74 | 439 | this.copy = this.group = copy; |
---|
75 | 440 | //selectees = this.group.selectees; |
---|
76 | 441 | |
---|
77 | | - SetupMenu2(objEditor); |
---|
| 442 | + SetupMenu2(this); //objEditor); |
---|
78 | 443 | SetupUI2(objEditor); |
---|
79 | 444 | objEditor.SetupUI(true); |
---|
80 | 445 | SetupViews(objEditor); |
---|
81 | 446 | |
---|
82 | 447 | ((cRadio)radioPanel.getComponent(0)).SetCamera(cameraView.renderCamera, true); |
---|
| 448 | + |
---|
| 449 | + if (copy.versionlist == null) |
---|
| 450 | + { |
---|
| 451 | + copy.versionlist = new Object3D[100]; |
---|
| 452 | + copy.versionindex = -1; |
---|
| 453 | + |
---|
| 454 | + //Save(true); |
---|
| 455 | + } |
---|
83 | 456 | } |
---|
84 | 457 | |
---|
85 | 458 | void CloneSelection(boolean supports) |
---|
86 | 459 | { |
---|
| 460 | + if (Globals.REPLACEONMAKE) |
---|
| 461 | + Save(); |
---|
| 462 | + boolean keep = Globals.REPLACEONMAKE; |
---|
| 463 | + Globals.REPLACEONMAKE = false; |
---|
87 | 464 | // Object3D keep = GrafreeD.clipboard; |
---|
88 | 465 | //Object3D obj; |
---|
89 | 466 | for (int i=0; i<group.selection.size(); i++)// Enumeration e = group.selection.elements(); e.hasMoreElements();) |
---|
.. | .. |
---|
94 | 471 | |
---|
95 | 472 | makeSomething(clone, i==group.selection.size()-1); |
---|
96 | 473 | } |
---|
| 474 | + Globals.REPLACEONMAKE = keep; |
---|
97 | 475 | } |
---|
98 | 476 | |
---|
99 | 477 | void CloneClipboard(boolean supports) |
---|
100 | 478 | { |
---|
101 | | - assert(GrafreeD.clipboard.parent == null); |
---|
102 | | - Object3D /*Composite*/ keepparent = GrafreeD.clipboard.get(0).parent; |
---|
103 | | - GrafreeD.clipboard.get(0).parent = null; // Avoid copy? |
---|
104 | | - if (LA.isIdentity(GrafreeD.clipboard.toParent)) |
---|
105 | | - makeSomething(CloneObject(GrafreeD.clipboard.get(0), false)); |
---|
| 479 | + assert(Grafreed.clipboard.parent == null); |
---|
| 480 | + Object3D /*Composite*/ keepparent = Grafreed.clipboard.get(0).parent; |
---|
| 481 | + Grafreed.clipboard.get(0).parent = null; // Avoid copy? |
---|
| 482 | + if (LA.isIdentity(Grafreed.clipboard.toParent)) |
---|
| 483 | + makeSomething(CloneObject(Grafreed.clipboard.get(0), false)); |
---|
106 | 484 | else |
---|
107 | | - makeSomething(CloneObject(GrafreeD.clipboard, false)); |
---|
108 | | - GrafreeD.clipboard.get(0).parent = keepparent; |
---|
| 485 | + makeSomething(CloneObject(Grafreed.clipboard, false)); |
---|
| 486 | + Grafreed.clipboard.get(0).parent = keepparent; |
---|
109 | 487 | } |
---|
110 | 488 | |
---|
111 | 489 | static Object3D CloneObject(Object3D obj, boolean supports) |
---|
.. | .. |
---|
119 | 497 | // obj.support = null; |
---|
120 | 498 | if (!supports) |
---|
121 | 499 | obj.SaveSupports(); |
---|
122 | | - Object3D clone = (Object3D)GrafreeD.clone(obj); |
---|
| 500 | + Object3D clone = (Object3D)Grafreed.clone(obj); |
---|
123 | 501 | obj.parent = parent; |
---|
124 | 502 | // obj.support = support; |
---|
125 | 503 | // clone.support = support; // aout 2013 |
---|
.. | .. |
---|
148 | 526 | |
---|
149 | 527 | //JTextField nameField; |
---|
150 | 528 | |
---|
151 | | - void SetupMenu2(ObjEditor oe) |
---|
| 529 | + void SetupMenu2(GroupEditor oe) |
---|
152 | 530 | { |
---|
153 | | - if (Globals.ADVANCED) |
---|
154 | | - { |
---|
155 | | - oe.cameraMenu.add(lookAtItem = new MenuItem("Set Interest")); |
---|
156 | | - //cameraMenu.add(lookFromItem = new MenuItem("Look From Selection")); |
---|
157 | | - //cameraMenu.add(switchItem = new MenuItem("Reverse View")); |
---|
158 | | - editLeafItem = oe.cameraMenu.add(new MenuItem("Edit Leaf")); |
---|
159 | | - oe.cameraMenu.add("-"); |
---|
160 | | - openWindowItem = oe.cameraMenu.add(new MenuItem("Edit copy...")); |
---|
161 | | - openWindowItem.addActionListener(this); |
---|
162 | | - editLeafItem.addActionListener(this); |
---|
163 | | - lookAtItem.addActionListener(this); |
---|
164 | | - //lookFromItem.addActinoListener(this); |
---|
165 | | - //switchItem.addActionListener(this); |
---|
166 | | - } |
---|
167 | | - |
---|
| 531 | + oe.jTree = new cTree(); |
---|
| 532 | + |
---|
168 | 533 | Menu menu; |
---|
169 | 534 | oe.menuBar.add(menu = new Menu("Edit")); |
---|
170 | 535 | //editItem = menu.add(new MenuItem("Edit")); |
---|
171 | 536 | //editItem.addActionListener(this); |
---|
172 | | - duplicateItem = menu.add(new MenuItem("Duplicate")); |
---|
| 537 | + |
---|
| 538 | +// undoItem = menu.add(new MenuItem("Undo")); |
---|
| 539 | +// undoItem.addActionListener(this); |
---|
| 540 | +// redoItem = menu.add(new MenuItem("Redo")); |
---|
| 541 | +// redoItem.addActionListener(this); |
---|
| 542 | +// menu.add("-"); |
---|
| 543 | + duplicateItem = oe.jTree.popup.add(new JMenuItem("Duplicate")); |
---|
173 | 544 | duplicateItem.addActionListener(this); |
---|
174 | | - cloneItem = menu.add(new MenuItem("Clone")); |
---|
| 545 | + |
---|
| 546 | + cloneItem = oe.jTree.popup.add(new JMenuItem("Clone")); |
---|
175 | 547 | cloneItem.addActionListener(this); |
---|
176 | | - if (Globals.ADVANCED) |
---|
| 548 | + //if (Globals.ADVANCED) |
---|
177 | 549 | { |
---|
178 | 550 | cloneSupportItem = menu.add(new MenuItem("Clone (+supports)")); |
---|
179 | 551 | cloneSupportItem.addActionListener(this); |
---|
180 | 552 | } |
---|
| 553 | + oe.jTree.popup.addSeparator(); |
---|
181 | 554 | menu.add("-"); |
---|
182 | | - cutItem = menu.add(new MenuItem("Cut")); |
---|
| 555 | + cutItem = oe.jTree.popup.add(new JMenuItem("Cut")); |
---|
183 | 556 | cutItem.addActionListener(this); |
---|
184 | | - copyItem = menu.add(new MenuItem("Copy")); |
---|
| 557 | + copyItem = oe.jTree.popup.add(new JMenuItem("Copy")); |
---|
185 | 558 | copyItem.addActionListener(this); |
---|
186 | 559 | pasteItem = menu.add(new MenuItem("Paste")); |
---|
187 | 560 | pasteItem.addActionListener(this); |
---|
188 | | - menu.add("-"); |
---|
189 | 561 | |
---|
190 | | - menu.add("-"); |
---|
191 | | - pasteIntoItem = menu.add(new MenuItem("Paste into")); |
---|
| 562 | + oe.jTree.popup.addSeparator(); |
---|
| 563 | + //menu.add("-"); |
---|
| 564 | + pasteIntoItem = oe.jTree.popup.add(new JMenuItem("Paste into")); |
---|
192 | 565 | pasteIntoItem.addActionListener(this); |
---|
193 | | - pasteLinkItem = menu.add(new MenuItem("Paste link")); |
---|
| 566 | + pasteLinkItem = oe.jTree.popup.add(new JMenuItem("Paste link")); |
---|
194 | 567 | pasteLinkItem.addActionListener(this); |
---|
195 | | - pasteCloneItem = menu.add(new MenuItem("Paste clone")); |
---|
| 568 | + pasteCloneItem = oe.jTree.popup.add(new JMenuItem("Paste clone")); |
---|
196 | 569 | pasteCloneItem.addActionListener(this); |
---|
197 | | -// pasteExpandItem = menu.add(new MenuItem("Paste expand")); |
---|
| 570 | +// CRASH pasteExpandItem = oe.jTree.popup.add(new JMenuItem("Paste expand")); |
---|
198 | 571 | // pasteExpandItem.addActionListener(this); |
---|
199 | | - menu.add("-"); |
---|
200 | | - clearItem = menu.add(new MenuItem("Clear")); |
---|
201 | | - clearItem.addActionListener(this); |
---|
| 572 | + //menu.add("-"); |
---|
| 573 | + oe.jTree.popup.addSeparator(); |
---|
202 | 574 | |
---|
203 | 575 | if (Globals.ADVANCED) |
---|
204 | 576 | { |
---|
.. | .. |
---|
206 | 578 | clearAllItem = menu.add(new MenuItem("Clear All")); |
---|
207 | 579 | clearAllItem.addActionListener(this); |
---|
208 | 580 | } |
---|
| 581 | + |
---|
| 582 | + menuBar.add(cameraMenu = new Menu("View")); |
---|
| 583 | + //cameraMenu.add(zBufferItem = new CheckboxMenuItem("Z Buffer")); |
---|
| 584 | + //zBufferItem.addActionListener(this); |
---|
| 585 | + //cameraMenu.add(normalLensItem = new MenuItem("Normal Lens")); |
---|
| 586 | + //normalLensItem.addActionListener(this); |
---|
| 587 | + cameraMenu.add(restoreCameraItem = new MenuItem("Restore Viewpoint")); |
---|
| 588 | + restoreCameraItem.addActionListener(this); |
---|
| 589 | + |
---|
| 590 | +// cameraMenu.add(toggleFullScreenItem = new CheckboxMenuItem("Full Screen")); |
---|
| 591 | +// toggleFullScreenItem.addItemListener(this); |
---|
| 592 | +// toggleFullScreenItem.setState(CameraPane.FULLSCREEN); |
---|
| 593 | +// cameraMenu.add("-"); |
---|
| 594 | +// |
---|
| 595 | +// cameraMenu.add(toggleTextureItem = new CheckboxMenuItem("Texture")); |
---|
| 596 | +// toggleTextureItem.addItemListener(this); |
---|
| 597 | +// toggleTextureItem.setState(CameraPane.textureon); |
---|
| 598 | +// |
---|
| 599 | +// cameraMenu.add(toggleSwitchItem = new CheckboxMenuItem("Switch")); |
---|
| 600 | +// toggleSwitchItem.addItemListener(this); |
---|
| 601 | +// toggleSwitchItem.setState(CameraPane.SWITCH); |
---|
| 602 | + |
---|
| 603 | + cameraMenu.add(toggleHandleItem = new CheckboxMenuItem("Show Handles")); |
---|
| 604 | + toggleHandleItem.addItemListener(this); |
---|
| 605 | + toggleHandleItem.setState(CameraPane.HANDLES); |
---|
| 606 | + |
---|
| 607 | + cameraMenu.add(togglePaintItem = new CheckboxMenuItem("Paint mode")); |
---|
| 608 | + togglePaintItem.addItemListener(this); |
---|
| 609 | + togglePaintItem.setState(CameraPane.PAINTMODE); |
---|
| 610 | + |
---|
| 611 | + if (Globals.ADVANCED) |
---|
| 612 | + { |
---|
| 613 | + cameraMenu.add("-"); |
---|
| 614 | + cameraMenu.add(toggleLiveItem = new CheckboxMenuItem("Live")); |
---|
| 615 | + toggleLiveItem.addItemListener(this); |
---|
| 616 | + toggleLiveItem.setState(Globals.isLIVE()); |
---|
209 | 617 | |
---|
| 618 | + cameraMenu.add(stepItem = new MenuItem("Step")); |
---|
| 619 | + stepItem.addActionListener(this); |
---|
| 620 | + // cameraMenu.add(toggleDLItem = new CheckboxMenuItem("Display List")); |
---|
| 621 | + // toggleDLItem.addItemListener(this); |
---|
| 622 | + // toggleDLItem.setState(false); |
---|
| 623 | + |
---|
| 624 | + cameraMenu.add(toggleRenderItem = new CheckboxMenuItem("Render")); |
---|
| 625 | + toggleRenderItem.addItemListener(this); |
---|
| 626 | + toggleRenderItem.setState(!CameraPane.frozen); |
---|
| 627 | + |
---|
| 628 | + cameraMenu.add(toggleDebugItem = new CheckboxMenuItem("Debug")); |
---|
| 629 | + toggleDebugItem.addItemListener(this); |
---|
| 630 | + toggleDebugItem.setState(Globals.DEBUG); |
---|
| 631 | + |
---|
| 632 | + cameraMenu.add(toggleFrustumItem = new CheckboxMenuItem("Frustum")); |
---|
| 633 | + toggleFrustumItem.addItemListener(this); |
---|
| 634 | + toggleFrustumItem.setState(CameraPane.FRUSTUM); |
---|
| 635 | + |
---|
| 636 | + cameraMenu.add(toggleFootContactItem = new CheckboxMenuItem("Foot contact")); |
---|
| 637 | + toggleFootContactItem.addItemListener(this); |
---|
| 638 | + toggleFootContactItem.setState(CameraPane.FOOTCONTACT); |
---|
| 639 | + |
---|
| 640 | + cameraMenu.add(toggleTimelineItem = new CheckboxMenuItem("Timeline")); |
---|
| 641 | + toggleTimelineItem.addItemListener(this); |
---|
| 642 | + } |
---|
| 643 | + |
---|
| 644 | +// cameraMenu.add(toggleRootItem = new CheckboxMenuItem("Alternate Root")); |
---|
| 645 | +// toggleRootItem.addItemListener(this); |
---|
| 646 | +// toggleRootItem.setState(false); |
---|
| 647 | +// cameraMenu.add(animationItem = new CheckboxMenuItem("Animation")); |
---|
| 648 | +// animationItem.addItemListener(this); |
---|
| 649 | +// animationItem.setState(CameraPane.ANIMATION); |
---|
| 650 | + cameraMenu.add("-"); |
---|
| 651 | + cameraMenu.add(editCameraItem = new MenuItem("Save Viewpoint")); |
---|
| 652 | + editCameraItem.addActionListener(this); |
---|
| 653 | + |
---|
| 654 | + if (Globals.ADVANCED) |
---|
| 655 | + { |
---|
| 656 | + oe.cameraMenu.add(lookAtItem = new MenuItem("Set Interest")); |
---|
| 657 | + //cameraMenu.add(lookFromItem = new MenuItem("Look From Selection")); |
---|
| 658 | + //cameraMenu.add(switchViewItem = new MenuItem("Reverse View")); |
---|
| 659 | + oe.cameraMenu.add("-"); |
---|
| 660 | + openWindowItem = oe.cameraMenu.add(new MenuItem("Edit copy...")); |
---|
| 661 | + openWindowItem.addActionListener(this); |
---|
| 662 | + lookAtItem.addActionListener(this); |
---|
| 663 | + //lookFromItem.addActinoListener(this); |
---|
| 664 | + //switchViewItem.addActionListener(this); |
---|
| 665 | + } |
---|
| 666 | + |
---|
210 | 667 | oe.menuBar.add(menu = new Menu("Setting")); |
---|
211 | 668 | if (Globals.ADVANCED) |
---|
212 | 669 | { |
---|
213 | | - resetMeshItem = menu.add(new MenuItem("Reset All")); |
---|
214 | | - resetMeshItem.addActionListener(this); |
---|
215 | | - stepAllItem = menu.add(new MenuItem("Step All")); |
---|
216 | | - stepAllItem.addActionListener(this); |
---|
217 | 670 | revertMeshItem = menu.add(new MenuItem("Revert Meshes")); |
---|
218 | 671 | revertMeshItem.addActionListener(this); |
---|
219 | 672 | resetreferencesItem = menu.add(new MenuItem("Reset Mesh References")); |
---|
.. | .. |
---|
252 | 705 | setMasterItem.addActionListener(this); |
---|
253 | 706 | } |
---|
254 | 707 | |
---|
255 | | - oe.menuBar.add(menu = new Menu("Group")); |
---|
256 | | - grabItem = menu.add(new MenuItem("Grab")); |
---|
257 | | - grabItem.addActionListener(this); |
---|
| 708 | + oe.menuBar.add(menu = new Menu("Order")); |
---|
| 709 | + |
---|
258 | 710 | backItem = menu.add(new MenuItem("Back")); |
---|
259 | 711 | backItem.addActionListener(this); |
---|
260 | 712 | frontItem = menu.add(new MenuItem("Front")); |
---|
261 | 713 | frontItem.addActionListener(this); |
---|
262 | | - compositeItem = menu.add(new MenuItem("Composite")); |
---|
263 | | - compositeItem.addActionListener(this); |
---|
| 714 | +// compositeItem = menu.add(new MenuItem("Composite")); |
---|
| 715 | +// compositeItem.addActionListener(this); |
---|
| 716 | + |
---|
| 717 | + grabItem = oe.jTree.popup.add(new JMenuItem("Group")); |
---|
| 718 | + grabItem.addActionListener(this); |
---|
| 719 | + |
---|
| 720 | + if (Globals.ADVANCED) |
---|
| 721 | + { |
---|
264 | 722 | hideItem = menu.add(new MenuItem("Hidden Group")); |
---|
265 | 723 | hideItem.addActionListener(this); |
---|
266 | | - ungroupItem = menu.add(new MenuItem("Ungroup")); |
---|
| 724 | + } |
---|
| 725 | + ungroupItem = oe.jTree.popup.add(new JMenuItem("Ungroup")); |
---|
267 | 726 | ungroupItem.addActionListener(this); |
---|
268 | | - menu.add("-"); |
---|
269 | | - randomItem = menu.add(new MenuItem("Switch node")); |
---|
270 | | - randomItem.addActionListener(this); |
---|
| 727 | + |
---|
| 728 | + oe.jTree.popup.addSeparator(); |
---|
| 729 | + |
---|
| 730 | + deleteItem = oe.jTree.popup.add(new JMenuItem("Delete")); |
---|
| 731 | + deleteItem.addActionListener(this); |
---|
| 732 | + |
---|
| 733 | +// menu.add("-"); |
---|
| 734 | +// |
---|
| 735 | +// switchItem = menu.add(new MenuItem("Switch node")); |
---|
| 736 | +// switchItem.addActionListener(this); |
---|
| 737 | + if (Globals.ADVANCED) |
---|
| 738 | + { |
---|
271 | 739 | switchGeoItem = menu.add(new MenuItem("Switch Geometry")); |
---|
272 | 740 | switchGeoItem.addActionListener(this); |
---|
273 | 741 | switchTransfoItem = menu.add(new MenuItem("Switch Transform")); |
---|
.. | .. |
---|
275 | 743 | morphItem = menu.add(new MenuItem("Morph Group")); |
---|
276 | 744 | morphItem.addActionListener(this); |
---|
277 | 745 | |
---|
278 | | - if (Globals.ADVANCED) |
---|
279 | | - { |
---|
280 | 746 | menu.add("-"); |
---|
281 | 747 | physicsItem = menu.add(new MenuItem("Physics")); |
---|
282 | 748 | physicsItem.addActionListener(this); |
---|
.. | .. |
---|
284 | 750 | frameselectorItem.addActionListener(this); |
---|
285 | 751 | scriptNodeItem = menu.add(new MenuItem("Script Node")); |
---|
286 | 752 | scriptNodeItem.addActionListener(this); |
---|
287 | | - cameraItem = menu.add(new MenuItem("Camera")); |
---|
288 | | - cameraItem.addActionListener(this); |
---|
289 | 753 | } |
---|
290 | 754 | |
---|
291 | 755 | oe.menuBar.add(menu = new Menu("Object")); |
---|
292 | | - textureItem = menu.add(new MenuItem("Texture")); |
---|
293 | | - textureItem.addActionListener(this); |
---|
| 756 | +// textureItem = menu.add(new MenuItem("Texture")); |
---|
| 757 | +// textureItem.addActionListener(this); |
---|
294 | 758 | billboardItem = menu.add(new MenuItem("Billboard")); |
---|
295 | 759 | billboardItem.addActionListener(this); |
---|
296 | 760 | csgItem = menu.add(new MenuItem("CSG")); |
---|
297 | 761 | csgItem.addActionListener(this); |
---|
298 | | - shadowXItem = menu.add(new MenuItem("Shadow X")); |
---|
| 762 | + shadowXItem = menu.add(new MenuItem("Shadow Red")); |
---|
299 | 763 | shadowXItem.addActionListener(this); |
---|
300 | | - shadowYItem = menu.add(new MenuItem("Shadow Y")); |
---|
| 764 | + shadowYItem = menu.add(new MenuItem("Shadow Green")); |
---|
301 | 765 | shadowYItem.addActionListener(this); |
---|
302 | | - shadowZItem = menu.add(new MenuItem("Shadow Z")); |
---|
| 766 | + shadowZItem = menu.add(new MenuItem("Shadow Blue")); |
---|
303 | 767 | shadowZItem.addActionListener(this); |
---|
| 768 | + attributeItem = menu.add(new MenuItem("Attribute")); |
---|
| 769 | + attributeItem.addActionListener(this); |
---|
| 770 | + |
---|
304 | 771 | if (Globals.ADVANCED) |
---|
305 | 772 | { |
---|
306 | 773 | menu.add("-"); |
---|
307 | 774 | linkerItem = menu.add(new MenuItem("Linker")); |
---|
308 | 775 | linkerItem.addActionListener(this); |
---|
309 | | - attributeItem = menu.add(new MenuItem("Attribute")); |
---|
310 | | - attributeItem.addActionListener(this); |
---|
311 | 776 | templateItem = menu.add(new MenuItem("Template")); |
---|
312 | 777 | templateItem.addActionListener(this); |
---|
313 | 778 | pointflowItem = menu.add(new MenuItem("Point Flow")); |
---|
.. | .. |
---|
318 | 783 | resetTransformItem.addActionListener(this); |
---|
319 | 784 | resetCentroidItem = menu.add(new MenuItem("Reset Centroid")); |
---|
320 | 785 | resetCentroidItem.addActionListener(this); |
---|
321 | | - transformgeometryItem = menu.add(new MenuItem("Transform Geometry")); |
---|
322 | | - transformgeometryItem.addActionListener(this); |
---|
| 786 | + resetCentroidXZItem = menu.add(new MenuItem("Reset Centroid XY")); |
---|
| 787 | + resetCentroidXZItem.addActionListener(this); |
---|
| 788 | + transformGeometryItem = menu.add(new MenuItem("Transform Geometry")); |
---|
| 789 | + transformGeometryItem.addActionListener(this); |
---|
| 790 | + transformChildrenItem = menu.add(new MenuItem("Transform Children")); |
---|
| 791 | + transformChildrenItem.addActionListener(this); |
---|
323 | 792 | |
---|
324 | 793 | oe.menuBar.add(menu = new Menu("Geometry")); |
---|
325 | 794 | genUVItem = menu.add(new MenuItem("Generate UV")); |
---|
.. | .. |
---|
332 | 801 | genNormalsMESHItem.addActionListener(this); |
---|
333 | 802 | if (Globals.ADVANCED) |
---|
334 | 803 | { |
---|
335 | | - genNormalsMINEItem = menu.add(new MenuItem("My Normals")); |
---|
| 804 | + genNormalsMINEItem = menu.add(new MenuItem("Stitch Normals")); |
---|
336 | 805 | genNormalsMINEItem.addActionListener(this); |
---|
337 | 806 | } |
---|
338 | 807 | stripifyItem = menu.add(new MenuItem("Stripify")); |
---|
.. | .. |
---|
368 | 837 | oe.menuBar.add(menu = new Menu("Attributes")); |
---|
369 | 838 | clearMaterialsItem = menu.add(new MenuItem("Clear Materials")); |
---|
370 | 839 | clearMaterialsItem.addActionListener(this); |
---|
| 840 | + resetAllItem = menu.add(new MenuItem("Reset All")); |
---|
| 841 | + resetAllItem.addActionListener(this); |
---|
| 842 | + stepAllItem = menu.add(new MenuItem("Step All")); |
---|
| 843 | + stepAllItem.addActionListener(this); |
---|
371 | 844 | menu.add("-"); |
---|
372 | 845 | liveleavesItem = menu.add(new MenuItem("Live Leaves")); |
---|
373 | 846 | liveleavesItem.addActionListener(this); |
---|
.. | .. |
---|
388 | 861 | markleavesItem.addActionListener(this); |
---|
389 | 862 | unmarkleavesItem = menu.add(new MenuItem("Unmark Leaves")); |
---|
390 | 863 | unmarkleavesItem.addActionListener(this); |
---|
| 864 | + rewindleavesItem = menu.add(new MenuItem("Rewind Leaves")); |
---|
| 865 | + rewindleavesItem.addActionListener(this); |
---|
| 866 | + unrewindleavesItem = menu.add(new MenuItem("Unrewind Leaves")); |
---|
| 867 | + unrewindleavesItem.addActionListener(this); |
---|
| 868 | + randomleavesItem = menu.add(new MenuItem("Random Leaves")); |
---|
| 869 | + randomleavesItem.addActionListener(this); |
---|
| 870 | + unrandomleavesItem = menu.add(new MenuItem("Unrandom Leaves")); |
---|
| 871 | + unrandomleavesItem.addActionListener(this); |
---|
391 | 872 | menu.add("-"); |
---|
392 | 873 | flipVItem = menu.add(new MenuItem("Flip V")); |
---|
393 | 874 | flipVItem.addActionListener(this); |
---|
.. | .. |
---|
413 | 894 | attachBumpItem.addActionListener(this); |
---|
414 | 895 | pigmentBumpItem = menu.add(new MenuItem("Pigment -> Bump")); |
---|
415 | 896 | pigmentBumpItem.addActionListener(this); |
---|
| 897 | + //embedTexturesItem |
---|
416 | 898 | detachPigmentItem = menu.add(new MenuItem("Detach Pigment")); |
---|
417 | 899 | detachPigmentItem.addActionListener(this); |
---|
418 | 900 | detachBumpItem = menu.add(new MenuItem("Detach Bump")); |
---|
419 | 901 | detachBumpItem.addActionListener(this); |
---|
| 902 | + embedTexturesItem = menu.add(new MenuItem("Embed Textures")); |
---|
| 903 | + embedTexturesItem.addActionListener(this); |
---|
| 904 | + deEmbedTexturesItem = menu.add(new MenuItem("De-embed Textures")); |
---|
| 905 | + deEmbedTexturesItem.addActionListener(this); |
---|
420 | 906 | menu.add("-"); |
---|
421 | 907 | sortbysizeItem = menu.add(new MenuItem("Sort by size")); |
---|
422 | 908 | sortbysizeItem.addActionListener(this); |
---|
423 | 909 | sortbynameItem = menu.add(new MenuItem("Sort by name")); |
---|
424 | 910 | sortbynameItem.addActionListener(this); |
---|
| 911 | + menu.add("-"); |
---|
| 912 | + shareGeometriesItem = menu.add(new MenuItem("Share Geometries")); |
---|
| 913 | + shareGeometriesItem.addActionListener(this); |
---|
| 914 | + mergeGeometriesItem = menu.add(new MenuItem("Merge Geometries")); |
---|
| 915 | + mergeGeometriesItem.addActionListener(this); |
---|
| 916 | + menu.add("-"); |
---|
| 917 | + editLeafItem = menu.add(new MenuItem("Edit leaf...")); |
---|
| 918 | + editLeafItem.addActionListener(this); |
---|
425 | 919 | if (Globals.ADVANCED) |
---|
426 | 920 | { |
---|
427 | | - menu.add("-"); |
---|
| 921 | + // Pretty much the same as duplicate and clone. |
---|
428 | 922 | extractGeometriesItem = menu.add(new MenuItem("Link Geometry")); |
---|
429 | 923 | extractGeometriesItem.addActionListener(this); |
---|
430 | 924 | cloneGeometriesItem = menu.add(new MenuItem("Clone Geometry")); |
---|
431 | 925 | cloneGeometriesItem.addActionListener(this); |
---|
432 | | - shareGeometriesItem = menu.add(new MenuItem("Share Geometry")); |
---|
433 | | - shareGeometriesItem.addActionListener(this); |
---|
434 | | - mergeGeometriesItem = menu.add(new MenuItem("Merge Geometry")); |
---|
435 | | - mergeGeometriesItem.addActionListener(this); |
---|
436 | 926 | } |
---|
437 | 927 | |
---|
438 | 928 | oe.menuBar.add(menu = new Menu("Insert")); |
---|
439 | 929 | buildCreateMenu(menu); |
---|
440 | 930 | |
---|
441 | | - oe.menuBar.add(menu = new Menu("Include")); |
---|
442 | | - importGFDItem = menu.add(new MenuItem("GrafreeD Object...")); |
---|
443 | | - importGFDItem.addActionListener(this); |
---|
444 | | - importVRMLX3DItem = menu.add(new MenuItem("VRML/X3D Object...")); |
---|
445 | | - importVRMLX3DItem.addActionListener(this); |
---|
446 | | - importOBJItem = menu.add(new MenuItem("OBJ Object...")); |
---|
447 | | - importOBJItem.addActionListener(this); |
---|
448 | | - import3DSItem = menu.add(new MenuItem("3DS Object...")); |
---|
449 | | - import3DSItem.addActionListener(this); |
---|
450 | | - |
---|
451 | 931 | oe.menuBar.add(menu = new Menu("Tools")); |
---|
452 | 932 | buildToolsMenu(menu); |
---|
453 | 933 | } |
---|
454 | 934 | |
---|
| 935 | + JTabbedPane resourcecontainer; |
---|
| 936 | + cGridBag currenttab; |
---|
| 937 | + //boolean added; // patch for jar |
---|
| 938 | + |
---|
| 939 | + int tabcount = 0; |
---|
| 940 | + int colcount = 0; |
---|
| 941 | + int rowcount = 0; |
---|
| 942 | + int texturecount = 0; |
---|
| 943 | + |
---|
| 944 | + int columns = 5; |
---|
| 945 | + int rows = 7; |
---|
| 946 | + |
---|
| 947 | + public void ResourceCallBack(String[] path) |
---|
| 948 | + { |
---|
| 949 | +// for (int i = 0; i < path.length; i++) |
---|
| 950 | +// System.out.print(path[i] + "/"); |
---|
| 951 | +// System.out.println(); |
---|
| 952 | + |
---|
| 953 | + if (//rowcount == 0 || |
---|
| 954 | + path.length == 1 && !path[0].equals("") && !path[0].equals(".DS_Store")) |
---|
| 955 | + { |
---|
| 956 | + currenttab = new cGridBag(); |
---|
| 957 | + String tabname = path[0]; // String.valueOf((char)('A'+tabcount)); |
---|
| 958 | + currenttab.setName(tabname); |
---|
| 959 | + //added = false; |
---|
| 960 | + resourcecontainer.add(currenttab); |
---|
| 961 | + resourcecontainer.setToolTipTextAt(tabcount++, "Texture Group " + tabname); |
---|
| 962 | + rowcount = 1; |
---|
| 963 | + colcount = 0; |
---|
| 964 | + texturecount = 0; |
---|
| 965 | + } |
---|
| 966 | + |
---|
| 967 | + if (path.length > 2 && path[2].toLowerCase().endsWith(".jpg")) |
---|
| 968 | + { |
---|
| 969 | + //if (!added) |
---|
| 970 | + { |
---|
| 971 | + //added = true; |
---|
| 972 | + String tabname = path[0]; // String.valueOf((char)('A'+tabcount)); |
---|
| 973 | + currenttab = (cGridBag)resourcecontainer.getComponentAt(resourcecontainer.indexOfTab(tabname)); |
---|
| 974 | + } |
---|
| 975 | + |
---|
| 976 | + AddTextureButton(path[0], path[1], path[2], texturecount++, currenttab); |
---|
| 977 | + |
---|
| 978 | + if (++colcount >= columns) |
---|
| 979 | + { |
---|
| 980 | + colcount = 0; |
---|
| 981 | + currenttab.Return(); |
---|
| 982 | + |
---|
| 983 | + if (rowcount++ >= rows) |
---|
| 984 | + { |
---|
| 985 | + rowcount = 0; |
---|
| 986 | + } |
---|
| 987 | + } |
---|
| 988 | + } |
---|
| 989 | + else |
---|
| 990 | + { |
---|
| 991 | +// if (!path[path.length-1].equals("icons")) |
---|
| 992 | +// resourcecontainer.Return(); |
---|
| 993 | + } |
---|
| 994 | + } |
---|
| 995 | + |
---|
| 996 | + void CreateTexturePanel(cGridBag container) |
---|
| 997 | + { |
---|
| 998 | + resourcecontainer = new JTabbedPane(JTabbedPane.LEFT); |
---|
| 999 | + container.add(resourcecontainer); |
---|
| 1000 | + |
---|
| 1001 | + Grafreed.ParseResources("textures", this); |
---|
| 1002 | + } |
---|
| 1003 | + |
---|
455 | 1004 | void SetupUI2(ObjEditor oe) |
---|
456 | 1005 | { |
---|
| 1006 | + // June 2019 |
---|
| 1007 | + if (oe == null) |
---|
| 1008 | + { |
---|
| 1009 | + //super.SetupUI2(this); |
---|
| 1010 | + //return; |
---|
| 1011 | + } |
---|
| 1012 | + |
---|
| 1013 | + if (copy != group) |
---|
| 1014 | + { |
---|
| 1015 | + //super.SetupUI2(this); |
---|
| 1016 | + } |
---|
| 1017 | + |
---|
457 | 1018 | //new Exception().printStackTrace(); |
---|
458 | 1019 | |
---|
459 | 1020 | oe.radioPanel = new JPanel(new GridBagLayout()); |
---|
460 | | - oe.aConstraints.weightx = 1; |
---|
461 | | - oe.aConstraints.weighty = 0; |
---|
462 | | - oe.aConstraints.fill = GridBagConstraints.HORIZONTAL; |
---|
463 | | - oe.aConstraints.gridwidth = 100; |
---|
464 | | - oe.aConstraints.gridheight = 1; |
---|
465 | 1021 | // oe.toolbarPanel.add(radioPanel); //, oe.aConstraints); |
---|
466 | 1022 | |
---|
467 | 1023 | oe.buttonGroup = new ButtonGroup(); |
---|
.. | .. |
---|
482 | 1038 | oe.radioPanel.add(dummyButton); |
---|
483 | 1039 | oe.buttonGroup.add(dummyButton); |
---|
484 | 1040 | */ |
---|
| 1041 | + cGridBag copyOptionsPanel = new cGridBag(); |
---|
| 1042 | + |
---|
| 1043 | + copyOptionsPanel.preferredHeight = 2; |
---|
| 1044 | + |
---|
485 | 1045 | //this.AddOptions(oe.toolbarPanel, oe.aConstraints); |
---|
486 | 1046 | |
---|
487 | | - oe.toolbarPanel.add(liveCB = new cCheckBox("Live", Globals.isLIVE())); //, oe.aConstraints); |
---|
488 | | - liveCB.setToolTipText("Enabled animation"); |
---|
489 | | - liveCB.addItemListener(this); |
---|
| 1047 | + //oe.toolbarPanel.add(minButton = new cButton("Min", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1048 | + //minButton.setToolTipText("Minimize window"); |
---|
| 1049 | + //minButton.addActionListener(this); |
---|
| 1050 | + |
---|
| 1051 | + if (Globals.ADVANCED) |
---|
| 1052 | + { |
---|
| 1053 | +// oe.toolbarPanel.add(maxButton = GetButton("icons/add-128.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1054 | +// maxButton.setToolTipText("Maximize window"); |
---|
| 1055 | +// maxButton.addActionListener(this); |
---|
| 1056 | + } |
---|
| 1057 | + |
---|
| 1058 | + cButton gcButton; |
---|
| 1059 | + |
---|
| 1060 | +// oe.toolbarPanel.add(gcButton = GetButton("icons/trash.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1061 | +// gcButton.setToolTipText("Garbage collect"); |
---|
| 1062 | +// gcButton.addActionListener(new ActionListener() |
---|
| 1063 | +// { |
---|
| 1064 | +// public void actionPerformed(ActionEvent e) |
---|
| 1065 | +// { |
---|
| 1066 | +// System.gc(); |
---|
| 1067 | +// } |
---|
| 1068 | +// }); |
---|
| 1069 | + |
---|
| 1070 | + oe.toolbarPanel.add(collapseButton = GetButton("icons/collapse.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1071 | + collapseButton.setToolTipText("Collapse toolbar"); |
---|
| 1072 | + collapseButton.addActionListener(this); |
---|
| 1073 | + |
---|
| 1074 | + oe.toolbarPanel.add(maximize3DButton = GetButton("icons/empty.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1075 | + maximize3DButton.setToolTipText("Maximize 3D view"); |
---|
| 1076 | + maximize3DButton.addActionListener(this); |
---|
| 1077 | + |
---|
| 1078 | + oe.toolbarPanel.add(twoButton = GetButton("icons/cube.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1079 | + twoButton.setToolTipText("Show 3D view only"); |
---|
| 1080 | + twoButton.addActionListener(this); |
---|
| 1081 | + this.fullscreenLayout = twoButton; |
---|
| 1082 | + |
---|
| 1083 | + oe.toolbarPanel.add(threeButton = GetButton("icons/controlsview.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1084 | + threeButton.setToolTipText("Show controls and 3D view"); |
---|
| 1085 | + threeButton.addActionListener(this); |
---|
| 1086 | + if (Globals.ADVANCED) |
---|
| 1087 | + { |
---|
| 1088 | + oe.toolbarPanel.add(sixButton = GetButton("icons/viewcontrols.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1089 | + sixButton.setToolTipText("Show 3D view and controls"); |
---|
| 1090 | + sixButton.addActionListener(this); |
---|
| 1091 | + } |
---|
| 1092 | +// oe.toolbarPanel.add(sevenButton = new cButton("-|-|-", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1093 | +// sevenButton.setToolTipText("3-column layout"); |
---|
| 1094 | +// sevenButton.addActionListener(this); |
---|
| 1095 | + // |
---|
| 1096 | + |
---|
| 1097 | + oe.toolbarPanel.add(fullButton = GetButton("icons/fullscreen.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1098 | + fullButton.setToolTipText("Full-screen window"); |
---|
| 1099 | + fullButton.addActionListener(this); |
---|
| 1100 | + |
---|
| 1101 | + oe.toolbarPanel.add(screenfitButton = GetButton("icons/fit.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1102 | + screenfitButton.setToolTipText("Screen fit"); |
---|
| 1103 | + screenfitButton.addActionListener(this); |
---|
490 | 1104 | |
---|
491 | | - oe.toolbarPanel.add(oneStepButton = new cButton("Step", !GrafreeD.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1105 | + oe.toolbarPanel.add(restoreCameraButton = GetButton("icons/eye.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1106 | + restoreCameraButton.setToolTipText("Restore viewpoint"); |
---|
| 1107 | + restoreCameraButton.addActionListener(this); |
---|
| 1108 | + |
---|
| 1109 | + copyOptionsPanel.add(saveVersionButton = GetButton("icons/down_arrow.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1110 | + saveVersionButton.setToolTipText("Duplicate current version"); |
---|
| 1111 | + saveVersionButton.addActionListener(this); |
---|
| 1112 | + |
---|
| 1113 | + copyOptionsPanel.add(deleteVersionButton = GetButton("icons/trash.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1114 | + deleteVersionButton.setToolTipText("Delete current version"); |
---|
| 1115 | + deleteVersionButton.addActionListener(this); |
---|
| 1116 | + deleteVersionButton.setEnabled(false); |
---|
| 1117 | + |
---|
| 1118 | + copyOptionsPanel.add(previousVersionButton = GetButton("icons/undo.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1119 | + previousVersionButton.setToolTipText("Previous version"); |
---|
| 1120 | + previousVersionButton.addActionListener(this); |
---|
| 1121 | + previousVersionButton.setEnabled(false); |
---|
| 1122 | + |
---|
| 1123 | + cGridBag updown = new cGridBag().setVertical(true); |
---|
| 1124 | + updown.add(restoreButton = GetButton("icons/restore.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1125 | + restoreButton.setToolTipText("Undo (restore current version)"); |
---|
| 1126 | + restoreButton.addActionListener(this); |
---|
| 1127 | + restoreButton.setEnabled(false); |
---|
| 1128 | + |
---|
| 1129 | + updown.add(replaceButton = GetButton("icons/replace.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1130 | + replaceButton.setToolTipText("Save (replace current version)"); |
---|
| 1131 | + replaceButton.addActionListener(this); |
---|
| 1132 | + replaceButton.setEnabled(false); |
---|
| 1133 | + |
---|
| 1134 | + copyOptionsPanel.add(updown); |
---|
| 1135 | + |
---|
| 1136 | + copyOptionsPanel.add(nextVersionButton = GetButton("icons/redo.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1137 | + nextVersionButton.setToolTipText("Next version"); |
---|
| 1138 | + nextVersionButton.addActionListener(this); |
---|
| 1139 | + nextVersionButton.setEnabled(false); |
---|
| 1140 | + |
---|
| 1141 | + oe.toolbarPanel.add(oneStepButton = GetButton("icons/step.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
492 | 1142 | oneStepButton.setToolTipText("Animate one step forward"); |
---|
493 | 1143 | oneStepButton.addActionListener(this); |
---|
494 | 1144 | |
---|
495 | | - oe.toolbarPanel.add(fastCB = new cCheckBox("Fast", CameraPane.FAST)); //, constraints); |
---|
| 1145 | + oe.toolbarPanel.add(liveCB = GetToggleButton("icons/run.png", Globals.isLIVE())); //, oe.aConstraints); |
---|
| 1146 | + liveCB.setToolTipText("Enable animation"); |
---|
| 1147 | + liveCB.addItemListener(this); |
---|
| 1148 | + |
---|
| 1149 | + oe.toolbarPanel.add(fastCB = GetToggleButton("icons/runfast.png", CameraPane.FAST)); //, constraints); |
---|
496 | 1150 | fastCB.setToolTipText("Fast mode"); |
---|
497 | 1151 | fastCB.addItemListener(this); |
---|
498 | 1152 | |
---|
499 | | - oe.toolbarPanel.add(trackCB = new cCheckBox("Track", CameraPane.TRACK)); //, oe.aConstraints); |
---|
500 | | - trackCB.setToolTipText("Enable tracking"); |
---|
501 | | - trackCB.addItemListener(this); |
---|
502 | | - |
---|
503 | | - oe.toolbarPanel.add(screenfitButton = new cButton("@", !GrafreeD.NIMBUSLAF)); //, oe.aConstraints); |
---|
504 | | - screenfitButton.setToolTipText("Screen fit"); |
---|
505 | | - screenfitButton.addActionListener(this); |
---|
| 1153 | + //oe.toolboxPanel.Return(); |
---|
| 1154 | + |
---|
| 1155 | +// copyOptionsPanel.add(trackCB = GetToggleButton("icons/track.png", CameraPane.TRACK)); //, oe.aConstraints); |
---|
| 1156 | +// trackCB.setToolTipText("Enable tracking"); |
---|
| 1157 | +// trackCB.addItemListener(this); |
---|
506 | 1158 | |
---|
507 | 1159 | // oe.toolbarPanel.add(screenfitpointButton = new cButton(" @+ ")); //, oe.aConstraints); |
---|
508 | 1160 | // screenfitpointButton.addActionListener(this); |
---|
509 | 1161 | |
---|
510 | 1162 | if (Globals.ADVANCED) |
---|
511 | 1163 | { |
---|
512 | | - oe.toolbarPanel.add(snapobjectButton = new cButton("O+", !GrafreeD.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1164 | + oe.toolbarPanel.add(snapobjectButton = new cButton("O+", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
513 | 1165 | snapobjectButton.addActionListener(this); |
---|
514 | 1166 | snapobjectButton.setToolTipText("Snap Object"); |
---|
| 1167 | + |
---|
| 1168 | + oe.toolbarPanel.add(fourButton = GetButton("icons/controls-horizontal.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1169 | + fourButton.addActionListener(this); |
---|
| 1170 | + fourButton.setToolTipText("Show control panel only"); |
---|
515 | 1171 | } |
---|
516 | 1172 | |
---|
517 | | - oe.toolbarPanel.add(flashSelectionButton = new cButton("?", !GrafreeD.NIMBUSLAF)); //, oe.aConstraints); |
---|
518 | | - flashSelectionButton.setToolTipText("Show selection"); |
---|
519 | | - flashSelectionButton.addActionListener(this); |
---|
| 1173 | + //oe.toolbarPanel.add(new JSeparator(SwingConstants.VERTICAL)); |
---|
520 | 1174 | |
---|
521 | | - oe.toolbarPanel.add(new JSeparator(SwingConstants.VERTICAL)); |
---|
522 | | - |
---|
523 | | - oe.toolbarPanel.add(twoButton = new cButton("|+|", !GrafreeD.NIMBUSLAF)); //, oe.aConstraints); |
---|
524 | | - twoButton.setToolTipText("Show center view only"); |
---|
525 | | - twoButton.addActionListener(this); |
---|
526 | | - oe.toolbarPanel.add(fourButton = new cButton("+||", !GrafreeD.NIMBUSLAF)); //, oe.aConstraints); |
---|
527 | | - fourButton.addActionListener(this); |
---|
528 | | - fourButton.setToolTipText("Show left panel only"); |
---|
529 | | - oe.toolbarPanel.add(sixButton = new cButton("+|+|", !GrafreeD.NIMBUSLAF)); //, oe.aConstraints); |
---|
530 | | - sixButton.setToolTipText("2-column layout left"); |
---|
531 | | - sixButton.addActionListener(this); |
---|
532 | | - oe.toolbarPanel.add(threeButton = new cButton("|+|+", !GrafreeD.NIMBUSLAF)); //, oe.aConstraints); |
---|
533 | | - threeButton.setToolTipText("2-column layout right"); |
---|
534 | | - threeButton.addActionListener(this); |
---|
535 | | - oe.toolbarPanel.add(sevenButton = new cButton("+|+|+", !GrafreeD.NIMBUSLAF)); //, oe.aConstraints); |
---|
536 | | - sevenButton.setToolTipText("3-column layout"); |
---|
537 | | - sevenButton.addActionListener(this); |
---|
538 | | - // |
---|
539 | 1175 | |
---|
540 | | - oe.toolbarPanel.add(rootButton = new cButton("o o o", !GrafreeD.NIMBUSLAF)); //, oe.aConstraints); |
---|
541 | | - rootButton.setToolTipText("Edit selection in new tab"); |
---|
| 1176 | + oe.toolbarPanel.add(rootButton = GetButton("icons/openwindow.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1177 | + rootButton.setToolTipText("Open selection in new tab"); |
---|
542 | 1178 | rootButton.addActionListener(this); |
---|
543 | 1179 | |
---|
544 | | - oe.toolbarPanel.add(closeButton = new cButton("X", !GrafreeD.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1180 | + oe.toolbarPanel.add(closeButton = GetButton("icons/close-icon.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
545 | 1181 | closeButton.setToolTipText("Close tab"); |
---|
546 | 1182 | closeButton.addActionListener(this); |
---|
547 | 1183 | //oe.treePanel.add(clearButton = new cButton("X"), oe.aConstraints); |
---|
548 | 1184 | //clearButton.addActionListener(this); |
---|
549 | | - |
---|
550 | | - cGridBag commandsPanel = new cGridBag(); |
---|
| 1185 | + |
---|
| 1186 | + cGridBag row1 = new cGridBag(); |
---|
551 | 1187 | |
---|
552 | | - commandsPanel.add(editButton = new cButton("+", !GrafreeD.NIMBUSLAF)); //, oe.aConstraints); |
---|
553 | | - editButton.setToolTipText("Edit selection"); |
---|
| 1188 | + // INSERT |
---|
| 1189 | + row1.add(gridButton = GetButton("icons/grid.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1190 | + gridButton.setToolTipText("Create ground"); |
---|
| 1191 | + gridButton.addActionListener(this); |
---|
| 1192 | + |
---|
| 1193 | + row1.add(boxButton = GetButton("icons/box.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1194 | + boxButton.setToolTipText("Create box"); |
---|
| 1195 | + boxButton.addActionListener(this); |
---|
| 1196 | + |
---|
| 1197 | + row1.add(superButton = GetButton("icons/super.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1198 | + superButton.setToolTipText("Create superellipsoid"); |
---|
| 1199 | + superButton.addActionListener(this); |
---|
| 1200 | + |
---|
| 1201 | + row1.add(sphereButton = GetButton("icons/sphere.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1202 | + sphereButton.setToolTipText("Create sphere"); |
---|
| 1203 | + sphereButton.addActionListener(this); |
---|
| 1204 | + |
---|
| 1205 | + row1.add(coneButton = GetButton("icons/cone.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1206 | + coneButton.setToolTipText("Create cone"); |
---|
| 1207 | + coneButton.addActionListener(this); |
---|
| 1208 | + |
---|
| 1209 | + row1.add(torusButton = GetButton("icons/torus.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1210 | + torusButton.setToolTipText("Create torus"); |
---|
| 1211 | + torusButton.addActionListener(this); |
---|
| 1212 | + |
---|
| 1213 | + if (Globals.ADVANCED) |
---|
| 1214 | + { |
---|
| 1215 | + oe.toolboxPanel.add(kleinButton = GetButton("icons/klein.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1216 | + kleinButton.setToolTipText("Create Klein bottle"); |
---|
| 1217 | + kleinButton.addActionListener(this); |
---|
| 1218 | + } |
---|
| 1219 | + |
---|
| 1220 | + row1.add(particlesButton = GetButton("icons/particles.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1221 | + particlesButton.setToolTipText("Create particle system"); |
---|
| 1222 | + particlesButton.addActionListener(this); |
---|
| 1223 | + |
---|
| 1224 | + oe.toolboxPanel.add(row1); |
---|
| 1225 | + |
---|
| 1226 | + cGridBag row2 = new cGridBag(); |
---|
| 1227 | + |
---|
| 1228 | + row2.add(groupButton = GetButton("icons/group.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1229 | + groupButton.setToolTipText("Create group"); |
---|
| 1230 | + groupButton.addActionListener(this); |
---|
| 1231 | + |
---|
| 1232 | + row2.add(compositeButton = GetButton("icons/composite.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1233 | + compositeButton.setToolTipText("Create composite"); |
---|
| 1234 | + compositeButton.addActionListener(this); |
---|
| 1235 | + |
---|
| 1236 | + row2.add(switchButton = GetButton("icons/switch.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1237 | + switchButton.setToolTipText("Create item switcher"); |
---|
| 1238 | + switchButton.addActionListener(this); |
---|
| 1239 | + |
---|
| 1240 | + row2.add(loopButton = GetButton("icons/loop.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1241 | + loopButton.setToolTipText("Create loop"); |
---|
| 1242 | + loopButton.addActionListener(this); |
---|
| 1243 | + |
---|
| 1244 | + row2.add(textureButton = GetButton("icons/texture.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1245 | + textureButton.setToolTipText("Create texture"); |
---|
| 1246 | + textureButton.addActionListener(this); |
---|
| 1247 | + |
---|
| 1248 | + row2.add(overlayButton = GetButton("icons/overlay.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1249 | + overlayButton.setToolTipText("Create overlay"); |
---|
| 1250 | + overlayButton.addActionListener(this); |
---|
| 1251 | + |
---|
| 1252 | + row2.add(lightButton = GetButton("icons/light-bulb.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1253 | + lightButton.setToolTipText("Create light"); |
---|
| 1254 | + lightButton.addActionListener(this); |
---|
| 1255 | + |
---|
| 1256 | + oe.toolboxPanel.add(row2); |
---|
| 1257 | + |
---|
| 1258 | + cGridBag textures = new cGridBag(); |
---|
| 1259 | + |
---|
| 1260 | + CreateTexturePanel(textures); |
---|
| 1261 | + |
---|
| 1262 | + resourcecontainer.setSelectedIndex((int)(Math.random() * resourcecontainer.getTabCount())); |
---|
| 1263 | + |
---|
| 1264 | + oe.toolboxPanel.add(textures); |
---|
| 1265 | + |
---|
| 1266 | + textures.preferredHeight = 100; |
---|
| 1267 | + |
---|
| 1268 | + CreateSkyboxPanel(oe.skyboxPanel); |
---|
| 1269 | + |
---|
| 1270 | + // EDIT panel |
---|
| 1271 | + editCommandsPanel.add(editButton = GetButton("icons/controls.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1272 | + editButton.setToolTipText("Pin selection controls"); |
---|
554 | 1273 | editButton.addActionListener(this); |
---|
555 | 1274 | |
---|
556 | | - commandsPanel.add(uneditButton = new cButton("-", !GrafreeD.NIMBUSLAF)); //, oe.aConstraints); |
---|
557 | | - uneditButton.setToolTipText("Unedit selection"); |
---|
| 1275 | + editCommandsPanel.add(uneditButton = GetButton("icons/remove.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1276 | + uneditButton.setToolTipText("Unpin and remove selection controls"); |
---|
558 | 1277 | uneditButton.addActionListener(this); |
---|
559 | 1278 | |
---|
560 | | - commandsPanel.add(allParamsButton = new JCheckBox("All", allparams)); //, oe.aConstraints); |
---|
561 | | - allParamsButton.setToolTipText("Edit all params"); |
---|
| 1279 | + editCommandsPanel.add(allParamsButton = new JCheckBox("All", allparams)); //, oe.aConstraints); |
---|
| 1280 | + allParamsButton.setToolTipText("Show all controls"); |
---|
562 | 1281 | allParamsButton.addActionListener(this); |
---|
563 | 1282 | |
---|
564 | | - commandsPanel.add(clearPanelButton = new cButton("C", !GrafreeD.NIMBUSLAF)); //, oe.aConstraints); |
---|
565 | | - clearPanelButton.setToolTipText("Clear edit panel"); |
---|
| 1283 | + editCommandsPanel.add(clearPanelButton = GetButton("icons/clear.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1284 | + clearPanelButton.setToolTipText("Clear all controls"); |
---|
566 | 1285 | clearPanelButton.addActionListener(this); |
---|
567 | 1286 | |
---|
568 | | - commandsPanel.add(unselectButton = new cButton("U", !GrafreeD.NIMBUSLAF)); //, oe.aConstraints); |
---|
569 | | - unselectButton.setToolTipText("Unselect"); |
---|
570 | | - unselectButton.addActionListener(this); |
---|
| 1287 | + //editCommandsPanel.add(unselectButton = new cButton("U", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1288 | + //unselectButton.setToolTipText("Unselect"); |
---|
| 1289 | + //unselectButton.addActionListener(this); |
---|
571 | 1290 | |
---|
572 | | - commandsPanel.preferredHeight = 1; |
---|
| 1291 | + editCommandsPanel.add(flashSelectionButton = GetButton("icons/flash-light.png", !Grafreed.NIMBUSLAF)); //, oe.aConstraints); |
---|
| 1292 | + flashSelectionButton.setToolTipText("Highlight selection"); |
---|
| 1293 | + flashSelectionButton.addActionListener(this); |
---|
573 | 1294 | |
---|
574 | | - oe.treePanel.add(commandsPanel); |
---|
575 | | - oe.treePanel.Return(); |
---|
| 1295 | + editCommandsPanel.preferredHeight = 1; |
---|
| 1296 | + |
---|
| 1297 | + SetPinStates(false); |
---|
| 1298 | +// oe.treePanel.add(commandsPanel); |
---|
| 1299 | +// oe.treePanel.Return(); |
---|
576 | 1300 | |
---|
577 | 1301 | // oe.aConstraints.gridx += 1; |
---|
578 | 1302 | // oe.aConstraints.weighty = 0; |
---|
.. | .. |
---|
589 | 1313 | |
---|
590 | 1314 | JScrollPane jSP; |
---|
591 | 1315 | //ctrlPanel.add(new JScrollPane(jTree = new cTree(new cTreeModel(this))), aConstraints); |
---|
592 | | - jSPPanel.add(jSP = new JScrollPane(oe.jTree = new cTree(null))); //, oe.aConstraints); |
---|
| 1316 | + jSPPanel.add(jSP = new JScrollPane(oe.jTree)); //, oe.aConstraints); |
---|
593 | 1317 | ResetModel(); |
---|
594 | 1318 | |
---|
595 | 1319 | oe.treePanel.add(jSPPanel); |
---|
596 | 1320 | oe.treePanel.Return(); |
---|
597 | 1321 | |
---|
598 | | - cGridBag copyOptionsPanel = new cGridBag(); |
---|
599 | | - |
---|
600 | | - copyOptionsPanel.add(colorCB = new cCheckBox("Color", (dropAttributes&Object3D.COLOR)!=0)); //, oe.aConstraints); |
---|
601 | | - colorCB.setToolTipText("Copy color when dropped"); |
---|
602 | | - colorCB.addItemListener(this); |
---|
603 | | - |
---|
604 | | - copyOptionsPanel.add(materialCB = new cCheckBox("Material", (dropAttributes&Object3D.MATERIAL)!=0)); //, oe.aConstraints); |
---|
605 | | - materialCB.setToolTipText("Copy material when dropped"); |
---|
606 | | - materialCB.addItemListener(this); |
---|
607 | | - |
---|
608 | | - copyOptionsPanel.add(textureCB = new cCheckBox("Texture", (dropAttributes&Object3D.TEXTURE)!=0)); //, oe.aConstraints); |
---|
609 | | - textureCB.setToolTipText("Copy texture when dropped"); |
---|
610 | | - textureCB.addItemListener(this); |
---|
611 | | - |
---|
612 | | - copyOptionsPanel.preferredHeight = 1; |
---|
613 | 1322 | oe.treePanel.add(copyOptionsPanel); |
---|
614 | 1323 | oe.treePanel.Return(); |
---|
| 1324 | + cGridBag sliderPane = AddSlider(oe.treePanel, "Version", 0, 0, 0); |
---|
| 1325 | + versionSlider = (cNumberSlider)sliderPane.getComponent(1); |
---|
| 1326 | + sliderPane.preferredHeight = 1; |
---|
615 | 1327 | |
---|
616 | | -// mainPanel.setDividerLocation(0.5); //1.0); |
---|
617 | | -// mainPanel.setResizeWeight(0.5); |
---|
| 1328 | +// mainPanel.setDividerLocation(0.1); //1.0); |
---|
| 1329 | + mainPanel.setResizeWeight(0.4); |
---|
618 | 1330 | |
---|
619 | 1331 | //jList.addListSelectionListener(this); |
---|
620 | 1332 | oe.jTree.addTreeSelectionListener(this); |
---|
.. | .. |
---|
622 | 1334 | //jTree.setEditable(true); |
---|
623 | 1335 | oe.jTree.setDragEnabled(true); |
---|
624 | 1336 | //jTree.setPreferredSize(new Dimension(10,10)); |
---|
625 | | - jSP.setPreferredSize(new Dimension(100,200)); |
---|
| 1337 | + //jSP.setPreferredSize(new Dimension(100,200)); |
---|
626 | 1338 | |
---|
627 | 1339 | oe.jTree.setCellRenderer(new cTreeModel.Renderer()); |
---|
628 | 1340 | |
---|
.. | .. |
---|
634 | 1346 | dgr.addDragGestureListener(this); |
---|
635 | 1347 | }catch(Exception e) {} |
---|
636 | 1348 | */ |
---|
637 | | - radio.layout = sevenButton; |
---|
| 1349 | + radio.layout = threeButton; // sixButton; |
---|
638 | 1350 | oe.toolbarPanel.add(radioPanel); //, oe.aConstraints); |
---|
639 | 1351 | } |
---|
640 | 1352 | |
---|
641 | 1353 | void AddOptions(cGridBag panel) //, GridBagConstraints constraints) |
---|
642 | 1354 | { |
---|
| 1355 | + panel.add(colorCB = new cCheckBox("Color", (dropAttributes&Object3D.COLOR)!=0)); //, oe.aConstraints); |
---|
| 1356 | + colorCB.setToolTipText("Copy color when dropped"); |
---|
| 1357 | + colorCB.addItemListener(this); |
---|
| 1358 | + |
---|
| 1359 | + panel.add(materialCB = new cCheckBox("Material", (dropAttributes&Object3D.MATERIAL)!=0)); //, oe.aConstraints); |
---|
| 1360 | + materialCB.setToolTipText("Copy material when dropped"); |
---|
| 1361 | + materialCB.addItemListener(this); |
---|
| 1362 | + |
---|
| 1363 | + panel.add(textureCB = new cCheckBox("Texture", (dropAttributes&Object3D.TEXTURE)!=0)); //, oe.aConstraints); |
---|
| 1364 | + textureCB.setToolTipText("Copy texture when dropped"); |
---|
| 1365 | + textureCB.addItemListener(this); |
---|
| 1366 | + |
---|
| 1367 | + panel.Return(); |
---|
| 1368 | + |
---|
643 | 1369 | panel.add(boxCB = new cCheckBox("Box", CameraPane.BOXMODE)); //, constraints); |
---|
644 | 1370 | boxCB.setToolTipText("Display bounding boxes"); |
---|
645 | 1371 | boxCB.addItemListener(this); |
---|
646 | 1372 | |
---|
647 | 1373 | panel.add(zoomBoxCB = new cCheckBox("Zoom", CameraPane.ZOOMBOXMODE)); //, constraints); |
---|
648 | | - zoomBoxCB.setToolTipText("Display bounding boxes when moving the wheel"); |
---|
| 1374 | + zoomBoxCB.setToolTipText("Display only for wheel"); |
---|
649 | 1375 | zoomBoxCB.addItemListener(this); |
---|
650 | 1376 | |
---|
651 | | - if (Globals.ADVANCED) |
---|
| 1377 | + if (true) // Globals.ADVANCED) |
---|
652 | 1378 | { |
---|
653 | | - panel.add(supportCB = new cCheckBox("Support", CameraPane.SUPPORT)); //, constraints); |
---|
654 | | - supportCB.setToolTipText("Enable rigging"); |
---|
655 | | - supportCB.addItemListener(this); |
---|
| 1379 | +// panel.add(supportCB = new cCheckBox("Support", CameraPane.SUPPORT)); //, constraints); |
---|
| 1380 | +// supportCB.setToolTipText("Enable rigging"); |
---|
| 1381 | +// supportCB.addItemListener(this); |
---|
| 1382 | + |
---|
| 1383 | + panel.add(freezeCB = new cCheckBox("Freeze", Globals.FREEZEONMOVE)); //, constraints); |
---|
| 1384 | + freezeCB.setToolTipText("Fast moving camera"); |
---|
| 1385 | + freezeCB.addItemListener(this); |
---|
656 | 1386 | |
---|
657 | 1387 | // panel.add(localCB = new cCheckBox("Local", CameraPane.LOCALTRANSFORM), constraints); |
---|
658 | 1388 | // localCB.addItemListener(this); |
---|
659 | 1389 | |
---|
| 1390 | + panel.Return(); |
---|
| 1391 | + |
---|
660 | 1392 | panel.add(crowdCB = new cCheckBox("Crowd", Globals.CROWD)); //, constraints); |
---|
661 | 1393 | crowdCB.setToolTipText("Used for crowds"); |
---|
662 | 1394 | crowdCB.addItemListener(this); |
---|
.. | .. |
---|
665 | 1397 | smoothCB.setToolTipText("Snapping delay"); |
---|
666 | 1398 | smoothCB.addItemListener(this); |
---|
667 | 1399 | |
---|
668 | | - panel.add(slowCB = new cCheckBox("Slow", CameraPane.SLOWPOSE)); //, constraints); |
---|
669 | | - slowCB.setToolTipText("Smooth interpolation"); |
---|
670 | | - slowCB.addItemListener(this); |
---|
| 1400 | +// panel.add(slowCB = new cCheckBox("Slow", CameraPane.SLOWPOSE)); //, constraints); |
---|
| 1401 | +// slowCB.setToolTipText("Smooth interpolation"); |
---|
| 1402 | +// slowCB.addItemListener(this); |
---|
| 1403 | + panel.add(minshaderCB = new cCheckBox("Min shader", Globals.MINSHADER)); //, constraints); |
---|
| 1404 | + minshaderCB.setToolTipText("Minimal fast shader"); |
---|
| 1405 | + minshaderCB.addItemListener(this); |
---|
671 | 1406 | |
---|
672 | 1407 | // constraints.gridy += 1; |
---|
673 | 1408 | // panel.add(speakerMocapCB = new cCheckBox("Mocap", CameraPane.SPEAKERMOCAP), constraints); |
---|
674 | 1409 | // speakerMocapCB.addItemListener(this); |
---|
675 | 1410 | |
---|
| 1411 | + panel.Return(); |
---|
| 1412 | + |
---|
676 | 1413 | if (false) |
---|
677 | 1414 | { |
---|
678 | 1415 | // handled in scripts |
---|
.. | .. |
---|
687 | 1424 | //constraints.gridy += 1; |
---|
688 | 1425 | panel.add(smoothfocusCB = new cCheckBox("Smooth", CameraPane.SMOOTHFOCUS)); //, constraints); |
---|
689 | 1426 | smoothfocusCB.addItemListener(this); |
---|
| 1427 | + panel.Return(); |
---|
690 | 1428 | } |
---|
691 | 1429 | |
---|
692 | 1430 | //constraints.gridx += 1; |
---|
693 | 1431 | //panel.add(debugCB = new cCheckBox("Debug", CameraPane.DEBUG), constraints); |
---|
694 | 1432 | // debugCB.addItemListener(this); |
---|
695 | 1433 | |
---|
| 1434 | + panel.add(trackCB = new cCheckBox("Track", CameraPane.TRACK)); //, oe.aConstraints); |
---|
| 1435 | + trackCB.setToolTipText("Enable tracking target"); |
---|
| 1436 | + trackCB.addItemListener(this); |
---|
| 1437 | + |
---|
696 | 1438 | panel.add(oeilCB = new cCheckBox("Eye", CameraPane.OEIL)); //, constraints); |
---|
| 1439 | + oeilCB.setToolTipText("Move camera when tracking"); |
---|
697 | 1440 | oeilCB.addItemListener(this); |
---|
698 | 1441 | |
---|
| 1442 | + panel.add(shadowCB = new cCheckBox("Shadow", Globals.COMPUTESHADOWWHENLIVE)); //, constraints); |
---|
| 1443 | + shadowCB.setToolTipText("When live compute shadows"); |
---|
| 1444 | + shadowCB.addItemListener(this); |
---|
| 1445 | + |
---|
| 1446 | + panel.Return(); |
---|
| 1447 | + panel.add(toggleTextureCB = new cCheckBox("Textures", CameraPane.textureon)); //, constraints); |
---|
| 1448 | + toggleTextureCB.setToolTipText("Load textures"); |
---|
| 1449 | + toggleTextureCB.addItemListener(this); |
---|
| 1450 | + |
---|
| 1451 | + panel.add(toggleSwitchCB = new cCheckBox("Switch", CameraPane.SWITCH)); //, constraints); |
---|
| 1452 | + toggleSwitchCB.setToolTipText("Choose a single item"); |
---|
| 1453 | + toggleSwitchCB.addItemListener(this); |
---|
| 1454 | + |
---|
| 1455 | + panel.add(autokeepCB = new cCheckBox("Auto-replace", Globals.REPLACEONMAKE)); //, constraints); |
---|
| 1456 | + autokeepCB.setToolTipText("On structure change"); |
---|
| 1457 | + autokeepCB.addItemListener(this); |
---|
| 1458 | + |
---|
| 1459 | + panel.Return(); |
---|
| 1460 | + if (Globals.ADVANCED) |
---|
| 1461 | + { |
---|
699 | 1462 | panel.add(lookAtCB = new cCheckBox("Target", CameraPane.LOOKAT)); //, constraints); |
---|
700 | 1463 | lookAtCB.setToolTipText("Look-at target"); |
---|
701 | 1464 | lookAtCB.addItemListener(this); |
---|
| 1465 | + } |
---|
702 | 1466 | |
---|
703 | 1467 | } |
---|
704 | 1468 | |
---|
705 | 1469 | cGridBag fill = new cGridBag(); |
---|
706 | | - |
---|
707 | 1470 | fill.preferredHeight = 200; |
---|
| 1471 | + cGridBag fill2 = new cGridBag(); |
---|
| 1472 | + fill2.preferredHeight = 200; |
---|
| 1473 | + cGridBag fill3 = new cGridBag(); |
---|
| 1474 | + fill3.preferredHeight = 200; |
---|
708 | 1475 | |
---|
709 | 1476 | panel.add(fill); |
---|
| 1477 | + panel.add(fill2); |
---|
| 1478 | + panel.add(fill3); |
---|
710 | 1479 | |
---|
711 | 1480 | } |
---|
712 | 1481 | |
---|
713 | 1482 | void EditObject(Object3D obj) |
---|
714 | 1483 | { |
---|
| 1484 | + assert(obj instanceof Composite); |
---|
| 1485 | + |
---|
| 1486 | +// if (obj.versionlist == null) |
---|
| 1487 | +// { |
---|
| 1488 | +// obj.versionlist = new Object3D[100]; |
---|
| 1489 | +// obj.versionindex = -1; |
---|
| 1490 | +// } |
---|
| 1491 | + |
---|
715 | 1492 | cRadio radioButton = new cRadio(obj.name); |
---|
| 1493 | + |
---|
| 1494 | + // June 2019. Patch to avoid bug with transparency. |
---|
| 1495 | + radioButton.hadMaterial = obj.material != null; |
---|
| 1496 | + if (!radioButton.hadMaterial) |
---|
| 1497 | + { |
---|
| 1498 | + obj.material = new cMaterial(); |
---|
| 1499 | + } |
---|
| 1500 | + |
---|
716 | 1501 | radioButton.SetObject(obj); |
---|
717 | | - radioButton.layout = sevenButton; |
---|
| 1502 | + radioButton.layout = threeButton; // sixButton; |
---|
718 | 1503 | radioButton.SetCamera(cameraView.renderCamera, false); |
---|
719 | 1504 | radioButton.addActionListener(this); |
---|
720 | 1505 | radioPanel.add(radioButton); |
---|
721 | 1506 | buttonGroup.add(radioButton); |
---|
722 | 1507 | radioButton.doClick(); |
---|
723 | 1508 | } |
---|
| 1509 | + |
---|
724 | 1510 | void SetupViews(ObjEditor oe) |
---|
725 | 1511 | { |
---|
| 1512 | + theFrame = this; |
---|
| 1513 | + |
---|
726 | 1514 | oe.SetupViews(); |
---|
727 | 1515 | |
---|
| 1516 | + if (Globals.DEBUG) |
---|
728 | 1517 | System.out.println("SetupViews"); |
---|
729 | 1518 | DragSource.getDefaultDragSource().createDefaultDragGestureRecognizer( |
---|
730 | 1519 | oe.cameraView, DnDConstants.ACTION_COPY_OR_MOVE, this); // ACTION_LINK ?? |
---|
731 | 1520 | /*DropTarget dropTarget =*/ new DropTarget(oe.cameraView, this); |
---|
732 | 1521 | } |
---|
733 | 1522 | |
---|
734 | | - JCheckBox liveCB; |
---|
735 | | - JCheckBox supportCB; |
---|
736 | | - JCheckBox localCB; |
---|
737 | | - JCheckBox crowdCB; |
---|
738 | | - JCheckBox smoothCB; |
---|
739 | | - JCheckBox fastCB; |
---|
740 | | - JCheckBox slowCB; |
---|
741 | | - JCheckBox boxCB; |
---|
742 | | - JCheckBox zoomBoxCB; |
---|
743 | | - JCheckBox trackCB; |
---|
744 | | - JCheckBox smoothfocusCB; |
---|
| 1523 | + cToggleButton liveCB; |
---|
| 1524 | + cCheckBox supportCB; |
---|
| 1525 | + cCheckBox localCB; |
---|
| 1526 | + cCheckBox crowdCB; |
---|
| 1527 | + cCheckBox smoothCB; |
---|
| 1528 | + cCheckBox minshaderCB; |
---|
| 1529 | + |
---|
| 1530 | + cToggleButton fastCB; |
---|
| 1531 | + cCheckBox slowCB; |
---|
| 1532 | + cCheckBox boxCB; |
---|
| 1533 | + cCheckBox zoomBoxCB; |
---|
| 1534 | + cCheckBox freezeCB; |
---|
| 1535 | + //cToggleButton trackCB; |
---|
| 1536 | + cCheckBox trackCB; |
---|
| 1537 | + cCheckBox smoothfocusCB; |
---|
745 | 1538 | // JCheckBox speakerMocapCB; |
---|
746 | | - JCheckBox speakerCameraCB; |
---|
747 | | - JCheckBox speakerFocusCB; |
---|
748 | | - JCheckBox debugCB; |
---|
749 | | - JCheckBox oeilCB; |
---|
750 | | - JCheckBox lookAtCB; |
---|
| 1539 | + cCheckBox speakerCameraCB; |
---|
| 1540 | + cCheckBox speakerFocusCB; |
---|
| 1541 | + cCheckBox debugCB; |
---|
| 1542 | + |
---|
| 1543 | + cCheckBox oeilCB; |
---|
| 1544 | + cCheckBox shadowCB; |
---|
| 1545 | + cCheckBox autokeepCB; |
---|
| 1546 | + cCheckBox lookAtCB; |
---|
751 | 1547 | |
---|
752 | 1548 | // static int COLOR = 1; |
---|
753 | 1549 | // static int MATERIAL = 2; |
---|
.. | .. |
---|
755 | 1551 | |
---|
756 | 1552 | int dropAttributes = Object3D.COLOR | Object3D.MATERIAL; |
---|
757 | 1553 | |
---|
758 | | - JCheckBox colorCB; |
---|
759 | | - JCheckBox materialCB; |
---|
760 | | - JCheckBox textureCB; |
---|
| 1554 | + cCheckBox colorCB; |
---|
| 1555 | + cCheckBox materialCB; |
---|
| 1556 | + cCheckBox textureCB; |
---|
761 | 1557 | |
---|
762 | 1558 | public void itemStateChanged(ItemEvent e) |
---|
763 | 1559 | { |
---|
.. | .. |
---|
785 | 1581 | } else if(e.getSource() == liveCB) |
---|
786 | 1582 | { |
---|
787 | 1583 | cameraView.ToggleLive(); |
---|
| 1584 | + refreshContents(false); |
---|
788 | 1585 | } |
---|
789 | 1586 | else if(e.getSource() == supportCB) |
---|
790 | 1587 | { |
---|
.. | .. |
---|
800 | 1597 | { |
---|
801 | 1598 | cameraView.ToggleInertia(); |
---|
802 | 1599 | cameraView.repaint(); |
---|
| 1600 | + } |
---|
| 1601 | + else if(e.getSource() == minshaderCB) |
---|
| 1602 | + { |
---|
| 1603 | + Globals.MINSHADER ^= true; |
---|
| 1604 | + cameraView.programInitialized = false; |
---|
| 1605 | + cameraView.repaint(); |
---|
803 | 1606 | } |
---|
804 | 1607 | else if(e.getSource() == localCB) |
---|
805 | 1608 | { |
---|
.. | .. |
---|
849 | 1652 | { |
---|
850 | 1653 | cameraView.ToggleOeil(); |
---|
851 | 1654 | } |
---|
| 1655 | + else if(e.getSource() == shadowCB) |
---|
| 1656 | + { |
---|
| 1657 | + Globals.COMPUTESHADOWWHENLIVE ^= true; |
---|
| 1658 | + } |
---|
| 1659 | + else if(e.getSource() == freezeCB) |
---|
| 1660 | + { |
---|
| 1661 | + Globals.FREEZEONMOVE ^= true; |
---|
| 1662 | + } |
---|
| 1663 | + else if(e.getSource() == autokeepCB) |
---|
| 1664 | + { |
---|
| 1665 | + Globals.REPLACEONMAKE ^= true; |
---|
| 1666 | + } |
---|
852 | 1667 | else if(e.getSource() == lookAtCB) |
---|
853 | 1668 | { |
---|
854 | 1669 | cameraView.ToggleLookAt(); |
---|
.. | .. |
---|
865 | 1680 | |
---|
866 | 1681 | /**/ |
---|
867 | 1682 | //DragSource.getDefaultDragSource().startDrag(dge, DragSource.DefaultMoveNoDrop, new StringSelection("Allo"), this); |
---|
868 | | - TreePath path = new TreePath(objEditor.jTree.getSelectionPath().getLastPathComponent()); |
---|
| 1683 | + //TreePath path = new TreePath(objEditor.jTree.getSelectionPath().getLastPathComponent()); |
---|
| 1684 | + TreePath path = objEditor.jTree.getSelectionPath(); |
---|
869 | 1685 | if ((path == null) || (path.getPathCount() <= 1)) { |
---|
870 | 1686 | // We can't move the root node or an empty selection |
---|
871 | 1687 | return; |
---|
.. | .. |
---|
928 | 1744 | } |
---|
929 | 1745 | } |
---|
930 | 1746 | |
---|
931 | | - String string = (String) object; |
---|
932 | | - |
---|
933 | 1747 | System.out.println("Transfer = " + object + "; drop : " + target); |
---|
934 | 1748 | // if( object instanceof java.io.File[]) |
---|
935 | 1749 | // { |
---|
.. | .. |
---|
937 | 1751 | // objEditor.DropFile((java.io.File[]) object, true); |
---|
938 | 1752 | // return; |
---|
939 | 1753 | // } |
---|
940 | | - if (string.charAt(0) == '/') |
---|
| 1754 | + |
---|
| 1755 | + String string = object.toString(); |
---|
| 1756 | + |
---|
| 1757 | + // File path for Mac and Windows |
---|
| 1758 | + if (string.charAt(0) == '/' || string.charAt(1) == ':') |
---|
941 | 1759 | { |
---|
942 | 1760 | // file(s) |
---|
943 | 1761 | String[] names = string.split("\n"); |
---|
.. | .. |
---|
964 | 1782 | |
---|
965 | 1783 | flashIt = false; |
---|
966 | 1784 | CameraPane pane = (CameraPane) target; |
---|
967 | | - pane.clickStart(objEditor.location.x, objEditor.location.y, 0); |
---|
| 1785 | + pane.clickStart(objEditor.location.x, objEditor.location.y, 0, 0); |
---|
968 | 1786 | pane.clickEnd(objEditor.location.x, objEditor.location.y, 0, true); |
---|
969 | 1787 | |
---|
970 | 1788 | if (group.selection.size() == 1) |
---|
.. | .. |
---|
980 | 1798 | |
---|
981 | 1799 | assert target == objEditor.jTree; |
---|
982 | 1800 | TreePath destinationPath = objEditor.jTree.getPathForLocation(objEditor.location.x, objEditor.location.y); |
---|
| 1801 | + Object3D destinationLeaf; |
---|
983 | 1802 | try { |
---|
984 | | - Object3D dummy = (Composite) destinationPath.getLastPathComponent(); |
---|
| 1803 | + destinationLeaf = (Composite) destinationPath.getLastPathComponent(); |
---|
985 | 1804 | } catch (Exception e) { |
---|
986 | 1805 | System.out.println("destinationPath : " + destinationPath); |
---|
987 | 1806 | return; |
---|
988 | 1807 | } |
---|
989 | 1808 | |
---|
990 | | - if (dtde.getDropAction() == DnDConstants.ACTION_MOVE) // ?? LINK) |
---|
| 1809 | + for (int i=group.selection.size(); --i>=0;) |
---|
991 | 1810 | { |
---|
| 1811 | + Object3D child = (Object3D)group.selection.elementAt(i); |
---|
| 1812 | + |
---|
| 1813 | + // Cannot move into itself |
---|
| 1814 | + if (child == destinationLeaf) |
---|
| 1815 | + return; |
---|
| 1816 | + } |
---|
| 1817 | + |
---|
| 1818 | +// june 2019 if (dtde.getDropAction() == DnDConstants.ACTION_MOVE) // ?? LINK) |
---|
| 1819 | +// { |
---|
992 | 1820 | loadClipboard(true); |
---|
993 | 1821 | objEditor.jTree.setSelectionPath(destinationPath); |
---|
994 | 1822 | pasteInto(false, false); |
---|
995 | | - } else { |
---|
996 | | - loadClipboard(false); |
---|
997 | | - objEditor.jTree.setSelectionPath(destinationPath); |
---|
998 | | - pasteInto(false, false); // true); // ??? |
---|
999 | | - } |
---|
| 1823 | +// } else { |
---|
| 1824 | +// loadClipboard(false); |
---|
| 1825 | +// objEditor.jTree.setSelectionPath(destinationPath); |
---|
| 1826 | +// pasteInto(false, false); // true); // ??? |
---|
| 1827 | +// } |
---|
1000 | 1828 | } |
---|
1001 | 1829 | public void dropActionChanged(DropTargetDragEvent dtde) |
---|
1002 | 1830 | // Called if the user has modified the current drop gesture |
---|
.. | .. |
---|
1052 | 1880 | TreePath path; |
---|
1053 | 1881 | |
---|
1054 | 1882 | public TransferableTreePath(TreePath tp) { |
---|
1055 | | - path = tp; |
---|
| 1883 | + Object[] objs = new Object[tp.getPathCount()]; |
---|
| 1884 | + for (int i=0; i<objs.length; i++) |
---|
| 1885 | + { |
---|
| 1886 | + objs[i] = ((Object3D)tp.getPathComponent(i)).GetUUID(); |
---|
| 1887 | + } |
---|
| 1888 | + path = new TreePath(objs); |
---|
1056 | 1889 | } |
---|
1057 | 1890 | |
---|
1058 | 1891 | public synchronized DataFlavor[] getTransferDataFlavors() { |
---|
.. | .. |
---|
1101 | 1934 | { |
---|
1102 | 1935 | //heightFieldItem = menu.add(new MenuItem("Height Field")); |
---|
1103 | 1936 | //heightFieldItem.addActionListener(this); |
---|
1104 | | - gridItem = menu.add(new MenuItem("Grid")); |
---|
1105 | | - gridItem.addActionListener(this); |
---|
1106 | | - rectoidItem = menu.add(new MenuItem("Box")); |
---|
1107 | | - rectoidItem.addActionListener(this); |
---|
1108 | | - ellipsoidItem = menu.add(new MenuItem("Sphere")); |
---|
1109 | | - ellipsoidItem.addActionListener(this); |
---|
1110 | | - coneItem = menu.add(new MenuItem("Cone")); |
---|
1111 | | - coneItem.addActionListener(this); |
---|
1112 | | - torusItem = menu.add(new MenuItem("Torus")); |
---|
1113 | | - torusItem.addActionListener(this); |
---|
1114 | | - superItem = menu.add(new MenuItem("Superellipsoid")); |
---|
1115 | | - superItem.addActionListener(this); |
---|
| 1937 | +// gridItem = menu.add(new MenuItem("Grid")); |
---|
| 1938 | +// gridItem.addActionListener(this); |
---|
| 1939 | +// rectoidItem = menu.add(new MenuItem("Box")); |
---|
| 1940 | +// rectoidItem.addActionListener(this); |
---|
| 1941 | +// ellipsoidItem = menu.add(new MenuItem("Sphere")); |
---|
| 1942 | +// ellipsoidItem.addActionListener(this); |
---|
| 1943 | +// coneItem = menu.add(new MenuItem("Cone")); |
---|
| 1944 | +// coneItem.addActionListener(this); |
---|
| 1945 | +// torusItem = menu.add(new MenuItem("Torus")); |
---|
| 1946 | +// torusItem.addActionListener(this); |
---|
| 1947 | +// superItem = menu.add(new MenuItem("Superellipsoid")); |
---|
| 1948 | +// superItem.addActionListener(this); |
---|
| 1949 | + |
---|
| 1950 | + cameraItem = menu.add(new MenuItem("Camera")); |
---|
| 1951 | + cameraItem.addActionListener(this); |
---|
| 1952 | + |
---|
| 1953 | + if (!Globals.ADVANCED) |
---|
| 1954 | + { |
---|
1116 | 1955 | kleinItem = menu.add(new MenuItem("Klein Bottle")); |
---|
1117 | 1956 | kleinItem.addActionListener(this); |
---|
1118 | | - particleItem = menu.add(new MenuItem("Particle system")); |
---|
1119 | | - particleItem.addActionListener(this); |
---|
| 1957 | + } |
---|
| 1958 | + |
---|
| 1959 | +// particleItem = menu.add(new MenuItem("Particle system")); |
---|
| 1960 | +// particleItem.addActionListener(this); |
---|
1120 | 1961 | if (Globals.ADVANCED) |
---|
1121 | 1962 | { |
---|
1122 | 1963 | ragdollItem = menu.add(new MenuItem("Rag Walk")); |
---|
.. | .. |
---|
1142 | 1983 | } |
---|
1143 | 1984 | bezierItem = menu.add(new MenuItem("Bezier Patch")); |
---|
1144 | 1985 | bezierItem.addActionListener(this); |
---|
1145 | | - overlayItem = menu.add(new MenuItem("Overlay")); |
---|
1146 | | - overlayItem.addActionListener(this); |
---|
1147 | | - lightItem = menu.add(new MenuItem("Light")); |
---|
1148 | | - lightItem.addActionListener(this); |
---|
| 1986 | +// overlayItem = menu.add(new MenuItem("Overlay")); |
---|
| 1987 | +// overlayItem.addActionListener(this); |
---|
| 1988 | +// lightItem = menu.add(new MenuItem("Light")); |
---|
| 1989 | +// lightItem.addActionListener(this); |
---|
1149 | 1990 | menu.add("-"); |
---|
1150 | 1991 | //superLoopItem = menu.add(new MenuItem("Super Loop")); |
---|
1151 | 1992 | //superLoopItem.addActionListener(this); |
---|
1152 | | - loopItem = menu.add(new MenuItem("Loop")); |
---|
1153 | | - loopItem.addActionListener(this); |
---|
| 1993 | +// loopItem = menu.add(new MenuItem("Loop")); |
---|
| 1994 | +// loopItem.addActionListener(this); |
---|
1154 | 1995 | doubleItem = menu.add(new MenuItem("Fork")); |
---|
1155 | 1996 | doubleItem.addActionListener(this); |
---|
1156 | 1997 | if (Globals.ADVANCED) |
---|
.. | .. |
---|
1166 | 2007 | animationItem.addItemListener(this); |
---|
1167 | 2008 | animationItem.setState(Globals.ANIMATION); |
---|
1168 | 2009 | |
---|
| 2010 | + menu.add(archiveItem = new MenuItem("Archive3D...")); |
---|
| 2011 | + archiveItem.addActionListener(this); |
---|
| 2012 | + |
---|
1169 | 2013 | menu.add("-"); |
---|
1170 | 2014 | parseverticesItem = menu.add(new MenuItem("Multiplicity")); |
---|
1171 | 2015 | parseverticesItem.addActionListener(this); |
---|
.. | .. |
---|
1178 | 2022 | reduce34MorphItem = menu.add(new MenuItem("Reduce Morphs (34)")); |
---|
1179 | 2023 | reduce34MorphItem.addActionListener(this); |
---|
1180 | 2024 | menu.add("-"); |
---|
| 2025 | + menu.add(memoryItem = new MenuItem("Memory Usage")); |
---|
| 2026 | + memoryItem.addActionListener(this); |
---|
1181 | 2027 | menu.add(computeAOItem = new MenuItem("Compute AO")); |
---|
1182 | 2028 | computeAOItem.addActionListener(this); |
---|
1183 | 2029 | |
---|
.. | .. |
---|
1186 | 2032 | mirrorItem = menu.add(new MenuItem("Mirror Poses")); |
---|
1187 | 2033 | mirrorItem.addActionListener(this); |
---|
1188 | 2034 | menu.add("-"); |
---|
1189 | | - menu.add(memoryItem = new MenuItem("Memory Usage")); |
---|
1190 | | - memoryItem.addActionListener(this); |
---|
1191 | 2035 | menu.add(analyzeItem = new MenuItem("Analyze")); |
---|
1192 | 2036 | analyzeItem.addActionListener(this); |
---|
1193 | | - menu.add(dumpItem = new MenuItem("Dump")); |
---|
| 2037 | + menu.add(dumpItem = new MenuItem("Print")); |
---|
1194 | 2038 | dumpItem.addActionListener(this); |
---|
1195 | 2039 | // menu.add(pathItem = new MenuItem("From-to path")); |
---|
1196 | 2040 | // pathItem.addActionListener(this); |
---|
.. | .. |
---|
1331 | 2175 | shadow.material = new cMaterial(obj.material); |
---|
1332 | 2176 | shadow.material.diffuse = 0.0001f; |
---|
1333 | 2177 | shadow.material.specular = 0.0001f; |
---|
| 2178 | + shadow.material.opacity = 0.75f; |
---|
| 2179 | + |
---|
| 2180 | + AllocProjectedVertices(shadow); |
---|
| 2181 | + |
---|
| 2182 | + shadow.projectedVertices[1].x = 300; |
---|
1334 | 2183 | |
---|
1335 | 2184 | makeSomething(shadow); |
---|
1336 | 2185 | } |
---|
| 2186 | + |
---|
| 2187 | + private void ClearUnpinned() |
---|
| 2188 | + { |
---|
| 2189 | + //for (Object3D obj : listUI) |
---|
| 2190 | + for (int i=listUI.size(); --i>=0;) |
---|
| 2191 | + { |
---|
| 2192 | + Object3D obj = listUI.elementAt(i); |
---|
| 2193 | + if (!obj.pinned) |
---|
| 2194 | + { |
---|
| 2195 | + obj.CloseUI(); |
---|
| 2196 | + listUI.remove(i); |
---|
| 2197 | + } |
---|
| 2198 | + } |
---|
| 2199 | + } |
---|
| 2200 | + |
---|
| 2201 | + private void EditElement(Object3D elem, boolean newWindow) |
---|
| 2202 | + { |
---|
| 2203 | + // if (!(elem instanceof Composite)) |
---|
| 2204 | + // newWindow = false; |
---|
| 2205 | + listUI.add(elem); |
---|
| 2206 | + elem.openEditWindow(this, newWindow); //, false); |
---|
| 2207 | + System.out.println("edit : " + elem); |
---|
| 2208 | + elem.editWindow.refreshContents(true); // ? new |
---|
| 2209 | + } |
---|
1337 | 2210 | |
---|
1338 | 2211 | /** |
---|
1339 | 2212 | * applyExample |
---|
.. | .. |
---|
1537 | 2410 | |
---|
1538 | 2411 | void Overwrite(int mask) |
---|
1539 | 2412 | { |
---|
1540 | | - if (/*group.selection.size() == 1 &&*/ GrafreeD.clipboard.size() == 1) |
---|
| 2413 | + if (/*group.selection.size() == 1 &&*/ Grafreed.clipboard.size() == 1) |
---|
1541 | 2414 | { |
---|
1542 | | - Object3D content = GrafreeD.clipboard.get(0); |
---|
| 2415 | + Object3D content = Grafreed.clipboard.get(0); |
---|
1543 | 2416 | |
---|
1544 | 2417 | if (content instanceof cGroup && ((cGroup)content).transientlink ) |
---|
1545 | 2418 | content = ((cGroup)content).get(0); |
---|
.. | .. |
---|
1578 | 2451 | { |
---|
1579 | 2452 | ScreenFit(); |
---|
1580 | 2453 | } else |
---|
1581 | | - if (source == switchItem) |
---|
| 2454 | + if (source == switchViewItem) |
---|
1582 | 2455 | { |
---|
1583 | 2456 | cVector v1 = new cVector(); |
---|
1584 | 2457 | cVector v2 = new cVector(); |
---|
.. | .. |
---|
1587 | 2460 | objEditor.cameraView.renderCamera.setAim(v2, v1); |
---|
1588 | 2461 | objEditor.cameraView.repaint(); |
---|
1589 | 2462 | } else |
---|
1590 | | - if (source == rectoidItem) |
---|
| 2463 | + if (source == rectoidItem || source == boxButton) |
---|
1591 | 2464 | { |
---|
1592 | 2465 | makeSomething(new Box()); |
---|
1593 | 2466 | } else |
---|
1594 | | - if (source == particleItem) |
---|
| 2467 | + if (source == particleItem || source == particlesButton) |
---|
1595 | 2468 | { |
---|
1596 | 2469 | ParticleNode particleGeom = new ParticleNode("Particles", 1000); //, particleType); |
---|
1597 | 2470 | ParticleController particleController = new ParticleController(particleGeom); |
---|
.. | .. |
---|
1670 | 2543 | |
---|
1671 | 2544 | makeSomething(obj); |
---|
1672 | 2545 | } else |
---|
1673 | | - if (source == gridItem) |
---|
| 2546 | + if (source == gridItem || source == gridButton) |
---|
1674 | 2547 | { |
---|
1675 | 2548 | makeSomething(new Grid()); |
---|
1676 | 2549 | } else |
---|
1677 | | - if (source == ellipsoidItem) |
---|
| 2550 | + if (source == ellipsoidItem || source == sphereButton) |
---|
1678 | 2551 | { |
---|
1679 | 2552 | makeSomething(new Sphere()); |
---|
1680 | 2553 | } else |
---|
1681 | | - if (source == coneItem) |
---|
| 2554 | + if (source == coneItem || source == coneButton) |
---|
1682 | 2555 | { |
---|
1683 | 2556 | makeSomething(new Cone()); |
---|
1684 | 2557 | } else |
---|
1685 | | - if (source == torusItem) |
---|
| 2558 | + if (source == torusItem || source == torusButton) |
---|
1686 | 2559 | { |
---|
1687 | 2560 | makeSomething(new Torus()); |
---|
1688 | 2561 | } else |
---|
1689 | | - if (source == superItem) |
---|
| 2562 | + if (source == superItem || source == superButton) |
---|
1690 | 2563 | { |
---|
1691 | 2564 | makeSomething(new Superellipsoid()); |
---|
1692 | 2565 | } else |
---|
1693 | | - if (source == kleinItem) |
---|
| 2566 | + if (source == kleinItem || source == kleinButton) |
---|
1694 | 2567 | { |
---|
1695 | 2568 | makeSomething(new Klein()); |
---|
1696 | 2569 | } else |
---|
.. | .. |
---|
1710 | 2583 | { |
---|
1711 | 2584 | makeSomething(new BezierSurface()); |
---|
1712 | 2585 | } else |
---|
1713 | | - if (source == overlayItem) |
---|
| 2586 | + if (source == overlayItem || source == overlayButton) |
---|
1714 | 2587 | { |
---|
1715 | 2588 | /* |
---|
1716 | 2589 | Object3D obj = new BezierSurface(5,8); |
---|
.. | .. |
---|
1758 | 2631 | s.setup(); |
---|
1759 | 2632 | makeSomething(s); |
---|
1760 | 2633 | } else |
---|
1761 | | - if (source == lightItem) |
---|
| 2634 | + if (source == lightItem || source == lightButton) |
---|
1762 | 2635 | { |
---|
1763 | 2636 | makeSomething(new Light()); |
---|
1764 | 2637 | } else |
---|
| 2638 | +// if (source == skybox1Button || |
---|
| 2639 | +// source == skybox2Button || |
---|
| 2640 | +// source == skybox3Button || |
---|
| 2641 | +// source == skybox4Button || |
---|
| 2642 | +// source == skybox5Button || |
---|
| 2643 | +// source == skybox6Button || |
---|
| 2644 | +// source == skybox7Button || |
---|
| 2645 | +// source == skybox11Button || |
---|
| 2646 | +// source == skybox12Button || |
---|
| 2647 | +// source == skybox13Button || |
---|
| 2648 | +// source == skybox14Button || |
---|
| 2649 | +// source == skybox15Button || |
---|
| 2650 | +// source == skybox16Button || |
---|
| 2651 | +// source == skybox17Button) |
---|
| 2652 | +// { |
---|
| 2653 | +// ChangeSkybox(source); |
---|
| 2654 | +// } else |
---|
1765 | 2655 | if (source == csgItem) |
---|
1766 | 2656 | { |
---|
1767 | 2657 | group(new CSG()); |
---|
.. | .. |
---|
1808 | 2698 | |
---|
1809 | 2699 | group(g); |
---|
1810 | 2700 | } else |
---|
1811 | | - if (source == loopItem) |
---|
| 2701 | + if (source == loopItem || source == loopButton) |
---|
1812 | 2702 | { |
---|
| 2703 | + if (!group.selection.isEmpty()) |
---|
| 2704 | + { |
---|
1813 | 2705 | Composite csg = new GroupLeaf(); |
---|
1814 | 2706 | csg.count = 5; |
---|
1815 | | - group(csg); |
---|
1816 | | - Composite child = new cGroup(); |
---|
| 2707 | + Composite child = new cGroup("Branch"); |
---|
1817 | 2708 | csg.addChild(child); |
---|
1818 | 2709 | child.addChild(csg); |
---|
| 2710 | + group(csg); |
---|
| 2711 | + } |
---|
1819 | 2712 | } else |
---|
1820 | 2713 | if (source == doubleItem) |
---|
1821 | 2714 | { |
---|
1822 | | - Composite csg = new GroupLeaf(); |
---|
| 2715 | + if (!group.selection.isEmpty()) |
---|
| 2716 | + { |
---|
| 2717 | + Composite csg = new GroupLeaf("Fork"); |
---|
1823 | 2718 | csg.count = 5; |
---|
| 2719 | + Composite child = new cGroup("Branch A"); |
---|
| 2720 | + csg.addChild(child); |
---|
| 2721 | + child.addChild(csg); |
---|
| 2722 | + child = new cGroup("Branch B"); |
---|
| 2723 | + csg.addChild(child); |
---|
| 2724 | + child.addChild(csg); |
---|
1824 | 2725 | group(csg); |
---|
1825 | | - Composite child = new cGroup(); |
---|
1826 | | - csg.addChild(child); |
---|
1827 | | - child.addChild(csg); |
---|
1828 | | - child = new cGroup(); |
---|
1829 | | - csg.addChild(child); |
---|
1830 | | - child.addChild(csg); |
---|
| 2726 | + } |
---|
1831 | 2727 | } else |
---|
1832 | 2728 | if (source == tripleItem) |
---|
1833 | 2729 | { |
---|
1834 | | - Composite csg = new GroupLeaf(); |
---|
| 2730 | + if (!group.selection.isEmpty()) |
---|
| 2731 | + { |
---|
| 2732 | + Composite csg = new GroupLeaf("Trident"); |
---|
1835 | 2733 | csg.count = 4; |
---|
1836 | 2734 | group(csg); |
---|
1837 | 2735 | Composite child = new cGroup(); |
---|
.. | .. |
---|
1843 | 2741 | child = new cGroup(); |
---|
1844 | 2742 | csg.addChild(child); |
---|
1845 | 2743 | child.addChild(csg); |
---|
1846 | | - } else |
---|
1847 | | - |
---|
1848 | | - if (source == importGFDItem) |
---|
1849 | | - { |
---|
1850 | | - ImportGFD(); |
---|
1851 | | - } else |
---|
1852 | | - if (source == importVRMLX3DItem) |
---|
1853 | | - { |
---|
1854 | | - ImportVRMLX3D(); |
---|
1855 | | - } else |
---|
1856 | | - if (source == import3DSItem) |
---|
1857 | | - { |
---|
1858 | | - objEditor.ImportJME(new com.jmex.model.converters.MaxToJme(), "3ds", "Import 3DS"); |
---|
1859 | | - } else |
---|
1860 | | - if (source == importOBJItem) |
---|
1861 | | - { |
---|
1862 | | - objEditor.ImportJME(new com.jmex.model.converters.ObjToJme(), "obj", "Import OBJ"); |
---|
| 2744 | + } |
---|
1863 | 2745 | } else |
---|
1864 | 2746 | if (source == computeAOItem) |
---|
1865 | 2747 | { |
---|
1866 | 2748 | Globals.drawMode = CameraPane.OCCLUSION; |
---|
1867 | | - Globals.theRenderer.repaint(); |
---|
| 2749 | + cameraView.repaint(); |
---|
1868 | 2750 | } else |
---|
1869 | 2751 | if (source == recompileItem) |
---|
1870 | 2752 | { |
---|
.. | .. |
---|
1879 | 2761 | if (source == invariantsItem) |
---|
1880 | 2762 | { |
---|
1881 | 2763 | System.out.println("Invariants:"); |
---|
1882 | | - GrafreeD.grafreeD.universe.invariants(); |
---|
| 2764 | + Grafreed.grafreed.universe.invariants(); |
---|
1883 | 2765 | } else |
---|
1884 | 2766 | if (source == memoryItem) |
---|
1885 | 2767 | { |
---|
.. | .. |
---|
1898 | 2780 | { |
---|
1899 | 2781 | DumpObject(); |
---|
1900 | 2782 | } else |
---|
| 2783 | + if (source == minButton) |
---|
| 2784 | + { |
---|
| 2785 | + Minimize(); |
---|
| 2786 | + } else |
---|
| 2787 | + if (source == maxButton) |
---|
| 2788 | + { |
---|
| 2789 | + Maximize(); |
---|
| 2790 | + } else |
---|
| 2791 | + if (source == fullButton) |
---|
| 2792 | + { |
---|
| 2793 | + ToggleFullScreen(); |
---|
| 2794 | + } else |
---|
| 2795 | + if (source == collapseButton) |
---|
| 2796 | + { |
---|
| 2797 | + this.expandedLayout = radio.layout; |
---|
| 2798 | + CollapseToolbar(); |
---|
| 2799 | + } else |
---|
| 2800 | + if (source == maximize3DButton) |
---|
| 2801 | + { |
---|
| 2802 | + this.expandedLayout = radio.layout; |
---|
| 2803 | + radio.layout = twoButton; |
---|
| 2804 | + Show3DView(); |
---|
| 2805 | + CollapseToolbar(); |
---|
| 2806 | + } else |
---|
| 2807 | + if (source == previousVersionButton) |
---|
| 2808 | + { |
---|
| 2809 | + // Go to previous version |
---|
| 2810 | + //if (!Undo()) |
---|
| 2811 | + //java.awt.Toolkit.getDefaultToolkit().beep(); |
---|
| 2812 | + PreviousVersion(); |
---|
| 2813 | + } else |
---|
| 2814 | + if (source == restoreButton) |
---|
| 2815 | + { |
---|
| 2816 | + // Restore current version |
---|
| 2817 | + Restore(); |
---|
| 2818 | + //restoreButton.setEnabled(false); |
---|
| 2819 | + } else |
---|
| 2820 | + if (source == replaceButton) |
---|
| 2821 | + { |
---|
| 2822 | + // Overwrite current version |
---|
| 2823 | + Replace(); |
---|
| 2824 | + //replaceButton.setEnabled(false); |
---|
| 2825 | + } else |
---|
| 2826 | + if (source == nextVersionButton) |
---|
| 2827 | + { |
---|
| 2828 | + // Go to next version |
---|
| 2829 | + NextVersion(); |
---|
| 2830 | + } else |
---|
| 2831 | + if (source == saveVersionButton) |
---|
| 2832 | + { |
---|
| 2833 | + // Save a new version |
---|
| 2834 | + if (!Save(true)) |
---|
| 2835 | + java.awt.Toolkit.getDefaultToolkit().beep(); |
---|
| 2836 | + } else |
---|
| 2837 | + if (source == deleteVersionButton) |
---|
| 2838 | + { |
---|
| 2839 | + // Delete a new version |
---|
| 2840 | + DeleteVersion(); |
---|
| 2841 | + } else |
---|
1901 | 2842 | if (source == oneStepButton) |
---|
1902 | 2843 | { |
---|
1903 | 2844 | Globals.ONESTEP = true; |
---|
.. | .. |
---|
1905 | 2846 | } else |
---|
1906 | 2847 | if (source == screenfitButton) |
---|
1907 | 2848 | { |
---|
1908 | | - //Reload(lastConverter, lastFilename, true); |
---|
1909 | 2849 | ScreenFit(); |
---|
1910 | 2850 | } else |
---|
1911 | 2851 | if (source == screenfitpointButton) |
---|
1912 | 2852 | { |
---|
1913 | | - //Reload(lastConverter, lastFilename, true); |
---|
1914 | 2853 | ScreenFitPoint(); |
---|
1915 | 2854 | } else |
---|
1916 | 2855 | if (source == snapobjectButton) |
---|
1917 | 2856 | { |
---|
1918 | | - //Reload(lastConverter, lastFilename, true); |
---|
1919 | 2857 | SnapObject(); |
---|
1920 | 2858 | } else |
---|
1921 | 2859 | // if (event.getSource() == recompileButton) |
---|
.. | .. |
---|
1952 | 2890 | { |
---|
1953 | 2891 | loadClipboard(true); |
---|
1954 | 2892 | } else |
---|
| 2893 | + if (source == undoItem) |
---|
| 2894 | + { |
---|
| 2895 | + PreviousVersion(); |
---|
| 2896 | + } else |
---|
| 2897 | + if (source == redoItem) |
---|
| 2898 | + { |
---|
| 2899 | + NextVersion(); |
---|
| 2900 | + } else |
---|
1955 | 2901 | if (source == duplicateItem) |
---|
1956 | 2902 | { |
---|
1957 | | - Object3D keep = GrafreeD.clipboard; |
---|
| 2903 | + Object3D keep = Grafreed.clipboard; |
---|
1958 | 2904 | loadClipboard(false); |
---|
1959 | 2905 | paste(false); |
---|
1960 | | - GrafreeD.clipboard = keep; |
---|
| 2906 | + Grafreed.clipboard = keep; |
---|
1961 | 2907 | } else |
---|
1962 | 2908 | if (source == cloneItem) |
---|
1963 | 2909 | { |
---|
.. | .. |
---|
2177 | 3123 | // group.selection.get(0).setMasterThis(content); // should be identity |
---|
2178 | 3124 | // refreshContents(); |
---|
2179 | 3125 | // } |
---|
2180 | | - if (/*group.selection.size() == 1 &&*/ GrafreeD.clipboard.size() == 1) |
---|
| 3126 | + if (/*group.selection.size() == 1 &&*/ Grafreed.clipboard.size() == 1) |
---|
2181 | 3127 | { |
---|
2182 | | - Object3D content = GrafreeD.clipboard.get(0); |
---|
| 3128 | + Object3D content = Grafreed.clipboard.get(0); |
---|
2183 | 3129 | |
---|
2184 | 3130 | if (content instanceof cGroup && ((cGroup)content).transientlink ) |
---|
2185 | 3131 | content = ((cGroup)content).get(0); |
---|
.. | .. |
---|
2229 | 3175 | } else |
---|
2230 | 3176 | if (source == setMasterItem) |
---|
2231 | 3177 | { |
---|
2232 | | - if (group.selection.size() == 1 && GrafreeD.clipboard.size() == 1) |
---|
| 3178 | + if (group.selection.size() == 1 && Grafreed.clipboard.size() == 1) |
---|
2233 | 3179 | { |
---|
2234 | | - Object3D content = GrafreeD.clipboard.get(0); |
---|
| 3180 | + Object3D content = Grafreed.clipboard.get(0); |
---|
2235 | 3181 | |
---|
2236 | 3182 | if (content instanceof cGroup && ((cGroup)content).transientlink ) |
---|
2237 | 3183 | content = ((cGroup)content).get(0); |
---|
.. | .. |
---|
2244 | 3190 | { |
---|
2245 | 3191 | if (group.selection.size() == 1) |
---|
2246 | 3192 | { |
---|
2247 | | - if (GrafreeD.clipboard.size() == 1) |
---|
| 3193 | + if (Grafreed.clipboard.size() == 1) |
---|
2248 | 3194 | { |
---|
2249 | | - Object3D content = GrafreeD.clipboard.get(0); |
---|
| 3195 | + Object3D content = Grafreed.clipboard.get(0); |
---|
2250 | 3196 | |
---|
2251 | 3197 | if (content instanceof cGroup && ((cGroup)content).transientlink ) |
---|
2252 | 3198 | content = ((cGroup)content).get(0); |
---|
.. | .. |
---|
2263 | 3209 | { |
---|
2264 | 3210 | RevertMeshes(); |
---|
2265 | 3211 | } else |
---|
2266 | | - if (source == resetMeshItem) |
---|
| 3212 | + if (source == resetAllItem) |
---|
2267 | 3213 | { |
---|
2268 | 3214 | ResetAll(); |
---|
2269 | 3215 | } else |
---|
.. | .. |
---|
2271 | 3217 | { |
---|
2272 | 3218 | StepAll(); |
---|
2273 | 3219 | } else |
---|
2274 | | - if (source == clearItem) // || event.getSource() == clearButton) |
---|
| 3220 | + if (source == deleteItem) // || event.getSource() == clearButton) |
---|
2275 | 3221 | { |
---|
2276 | 3222 | //int indices[] = jList.getSelectedIndices(); |
---|
2277 | 3223 | //for (int i = indices.length - 1; i >= 0; i--) |
---|
.. | .. |
---|
2283 | 3229 | { |
---|
2284 | 3230 | ClearSelection(true); |
---|
2285 | 3231 | } else |
---|
2286 | | - if (source == grabItem) |
---|
| 3232 | + if (source == grabItem || source == groupButton) |
---|
2287 | 3233 | { |
---|
2288 | | - group(new cGroup(), true); |
---|
| 3234 | + group(new cGroup(), false); // true); |
---|
2289 | 3235 | } else |
---|
2290 | 3236 | if (source == hideItem) |
---|
2291 | 3237 | { |
---|
.. | .. |
---|
2303 | 3249 | { |
---|
2304 | 3250 | makeSomething(new Camera()); |
---|
2305 | 3251 | } else |
---|
2306 | | - if (source == compositeItem) |
---|
| 3252 | + if (source == compositeItem || source == compositeButton) |
---|
2307 | 3253 | { |
---|
2308 | 3254 | group(new Composite()); |
---|
2309 | 3255 | } else |
---|
2310 | | - if (source == randomItem) |
---|
| 3256 | + if (source == switchItem || source == switchButton) |
---|
2311 | 3257 | { |
---|
2312 | 3258 | RandomNode random = new RandomNode(); |
---|
2313 | 3259 | group(random); |
---|
.. | .. |
---|
2409 | 3355 | { |
---|
2410 | 3356 | group(new cLinker()); |
---|
2411 | 3357 | } else |
---|
2412 | | - if (source == textureItem) |
---|
| 3358 | + if (source == textureItem || source == textureButton) |
---|
2413 | 3359 | { |
---|
2414 | 3360 | group(new TextureNode()); |
---|
2415 | 3361 | } else |
---|
.. | .. |
---|
2429 | 3375 | { |
---|
2430 | 3376 | CastShadow(2); |
---|
2431 | 3377 | } else |
---|
2432 | | - if (source == ungroupItem) |
---|
| 3378 | + if (source == ungroupItem || source == ungroupButton) |
---|
2433 | 3379 | { |
---|
2434 | | - //ungroup(); |
---|
| 3380 | + boolean canUngroup = true; |
---|
| 3381 | + |
---|
2435 | 3382 | for (int i=0; i<group.selection.size(); i++) |
---|
2436 | 3383 | { |
---|
2437 | | - Ungroup(group.selection.get(i)); |
---|
| 3384 | + Object3D selectedItem = group.selection.get(i); |
---|
| 3385 | + |
---|
| 3386 | + if (selectedItem.Size() == 0) |
---|
| 3387 | + { |
---|
| 3388 | + // Cannot ungroup leaves |
---|
| 3389 | + canUngroup = false; |
---|
| 3390 | + break; |
---|
| 3391 | + } |
---|
| 3392 | + |
---|
| 3393 | + if (selectedItem == group) |
---|
| 3394 | + { |
---|
| 3395 | + // Cannot ungroup root |
---|
| 3396 | + canUngroup = false; |
---|
| 3397 | + break; |
---|
| 3398 | + } |
---|
2438 | 3399 | } |
---|
2439 | 3400 | |
---|
2440 | | - ClearSelection(false); |
---|
2441 | | - |
---|
2442 | | - refreshContents(); |
---|
| 3401 | + if (canUngroup) |
---|
| 3402 | + { |
---|
| 3403 | + for (int i=0; i<group.selection.size(); i++) |
---|
| 3404 | + { |
---|
| 3405 | + Object3D selectedItem = group.selection.get(i); |
---|
| 3406 | + |
---|
| 3407 | + Ungroup(selectedItem); |
---|
| 3408 | + } |
---|
| 3409 | + |
---|
| 3410 | + ClearSelection(false); |
---|
| 3411 | + |
---|
| 3412 | + refreshContents(); |
---|
| 3413 | + } |
---|
2443 | 3414 | } else |
---|
2444 | 3415 | if (source == genUVItem) |
---|
2445 | 3416 | { |
---|
.. | .. |
---|
2451 | 3422 | } else |
---|
2452 | 3423 | if (source == genNormalsMESHItem) |
---|
2453 | 3424 | { |
---|
2454 | | - GenNormals(true); // TODO |
---|
| 3425 | + GenNormalsMESH(); |
---|
2455 | 3426 | } else |
---|
2456 | 3427 | if (source == genNormalsORGANItem) |
---|
2457 | 3428 | { |
---|
.. | .. |
---|
2516 | 3487 | if (source == unmarkleavesItem) |
---|
2517 | 3488 | { |
---|
2518 | 3489 | MarkLeaves(false); |
---|
| 3490 | + } else |
---|
| 3491 | + if (source == rewindleavesItem) |
---|
| 3492 | + { |
---|
| 3493 | + RewindLeaves(true); |
---|
| 3494 | + } else |
---|
| 3495 | + if (source == unrewindleavesItem) |
---|
| 3496 | + { |
---|
| 3497 | + RewindLeaves(false); |
---|
| 3498 | + } else |
---|
| 3499 | + if (source == randomleavesItem) |
---|
| 3500 | + { |
---|
| 3501 | + RandomLeaves(true); |
---|
| 3502 | + } else |
---|
| 3503 | + if (source == unrandomleavesItem) |
---|
| 3504 | + { |
---|
| 3505 | + RandomLeaves(false); |
---|
2519 | 3506 | } else |
---|
2520 | 3507 | if (source == flipVItem) |
---|
2521 | 3508 | { |
---|
.. | .. |
---|
2601 | 3588 | { |
---|
2602 | 3589 | SmoothMesh(); |
---|
2603 | 3590 | } else |
---|
2604 | | - if (source == transformgeometryItem) |
---|
| 3591 | + if (source == transformGeometryItem) |
---|
2605 | 3592 | { |
---|
2606 | 3593 | TransformGeometry(); |
---|
| 3594 | + } else |
---|
| 3595 | + if (source == transformChildrenItem) |
---|
| 3596 | + { |
---|
| 3597 | + TransformChildren(); |
---|
2607 | 3598 | } else |
---|
2608 | 3599 | if (source == resetTransformItem) |
---|
2609 | 3600 | { |
---|
.. | .. |
---|
2611 | 3602 | } else |
---|
2612 | 3603 | if (source == resetCentroidItem) |
---|
2613 | 3604 | { |
---|
2614 | | - ResetCentroid(); |
---|
| 3605 | + ResetCentroid(true); |
---|
| 3606 | + } else |
---|
| 3607 | + if (source == resetCentroidXZItem) |
---|
| 3608 | + { |
---|
| 3609 | + ResetCentroid(false); |
---|
2615 | 3610 | } else |
---|
2616 | 3611 | if (source == resetParentItem) |
---|
2617 | 3612 | { |
---|
.. | .. |
---|
2716 | 3711 | for (Enumeration e = group.selection.elements(); e.hasMoreElements();) |
---|
2717 | 3712 | { |
---|
2718 | 3713 | obj = (Object3D)e.nextElement(); |
---|
2719 | | - obj.SetBumpTexture(null); |
---|
| 3714 | + obj.ResetBumpTexture(); |
---|
2720 | 3715 | } |
---|
2721 | 3716 | |
---|
2722 | 3717 | refreshContents(); |
---|
.. | .. |
---|
2732 | 3727 | |
---|
2733 | 3728 | refreshContents(); |
---|
2734 | 3729 | } else |
---|
| 3730 | + if (source == embedTexturesItem) |
---|
| 3731 | + { |
---|
| 3732 | + Object3D obj; |
---|
| 3733 | + for (Enumeration e = group.selection.elements(); e.hasMoreElements();) |
---|
| 3734 | + { |
---|
| 3735 | + obj = (Object3D)e.nextElement(); |
---|
| 3736 | + obj.EmbedTextures(true); |
---|
| 3737 | + } |
---|
| 3738 | + |
---|
| 3739 | + refreshContents(); |
---|
| 3740 | + } else |
---|
| 3741 | + if (source == deEmbedTexturesItem) |
---|
| 3742 | + { |
---|
| 3743 | + Object3D obj; |
---|
| 3744 | + for (Enumeration e = group.selection.elements(); e.hasMoreElements();) |
---|
| 3745 | + { |
---|
| 3746 | + obj = (Object3D)e.nextElement(); |
---|
| 3747 | + obj.EmbedTextures(false); |
---|
| 3748 | + } |
---|
| 3749 | + |
---|
| 3750 | + CameraPane.texturepigment.clear(); |
---|
| 3751 | + CameraPane.texturebump.clear(); |
---|
| 3752 | + |
---|
| 3753 | + refreshContents(); |
---|
| 3754 | + } else |
---|
2735 | 3755 | if (source == flashSelectionButton) |
---|
2736 | 3756 | { |
---|
2737 | 3757 | CameraPane.flash = true; |
---|
.. | .. |
---|
2743 | 3763 | if (source == twoButton) |
---|
2744 | 3764 | { |
---|
2745 | 3765 | radio.layout = twoButton; |
---|
2746 | | - // bug |
---|
2747 | | - //gridPanel.setDividerLocation(1.0); |
---|
2748 | | - //bigPanel.setDividerLocation(0.0); |
---|
2749 | | -// bigThree.remove(scenePanel); |
---|
2750 | | -// bigThree.remove(centralPanel); |
---|
2751 | | -// bigThree.remove(XYZPanel); |
---|
2752 | | -// aWindowConstraints.gridx = 0; |
---|
2753 | | -// aWindowConstraints.gridy = 0; |
---|
2754 | | -// aWindowConstraints.gridwidth = 1; |
---|
2755 | | -// // aConstraints.gridheight = 3; |
---|
2756 | | -// aWindowConstraints.fill = GridBagConstraints.VERTICAL; |
---|
2757 | | -// aWindowConstraints.weightx = 0; |
---|
2758 | | -// aWindowConstraints.weighty = 1; |
---|
2759 | | -// //bigThree.add(jtp, aWindowConstraints); |
---|
2760 | | -// aWindowConstraints.weightx = 1; |
---|
2761 | | -// aWindowConstraints.gridwidth = 3; |
---|
2762 | | -// // aConstraints.gridheight = 3; |
---|
2763 | | -// aWindowConstraints.gridx = 1; |
---|
2764 | | -// aWindowConstraints.fill = GridBagConstraints.BOTH; |
---|
2765 | | -// bigThree.add(centralPanel, aWindowConstraints); |
---|
2766 | | -// aWindowConstraints.weightx = 0; |
---|
2767 | | -// aWindowConstraints.gridx = 4; |
---|
2768 | | -// aWindowConstraints.gridwidth = 1; |
---|
2769 | | -// // aConstraints.gridheight = 3; |
---|
2770 | | -// aWindowConstraints.fill = GridBagConstraints.VERTICAL; |
---|
2771 | | -// //bigThree.add(XYZPanel, aWindowConstraints); |
---|
2772 | | -// scenePanel.setVisible(false); |
---|
2773 | | -// centralPanel.setVisible(true); |
---|
2774 | | -// XYZPanel.setVisible(false); |
---|
2775 | | - bigThree.ClearUI(); |
---|
2776 | | - bigThree.add(centralPanel); |
---|
2777 | | - bigThree.FlushUI(); |
---|
| 3766 | + |
---|
| 3767 | + if (CameraPane.FULLSCREEN) |
---|
| 3768 | + fullscreenLayout = radio.layout; |
---|
| 3769 | + |
---|
| 3770 | + Show3DView(); |
---|
| 3771 | + |
---|
| 3772 | + cameraView.requestFocusInWindow(); |
---|
| 3773 | + |
---|
| 3774 | +// refreshContents(true); |
---|
| 3775 | +// |
---|
| 3776 | +// try |
---|
| 3777 | +// { |
---|
| 3778 | +// java.awt.Robot bot = new java.awt.Robot(); |
---|
| 3779 | +// int mask = InputEvent.BUTTON1_MASK; |
---|
| 3780 | +// bot.mouseMove(100, 100); |
---|
| 3781 | +// bot.mousePress(mask); |
---|
| 3782 | +// bot.mouseRelease(mask); |
---|
| 3783 | +// } |
---|
| 3784 | +// catch (Exception e) |
---|
| 3785 | +// { |
---|
| 3786 | +// |
---|
| 3787 | +// } |
---|
| 3788 | + |
---|
2778 | 3789 | } else |
---|
2779 | 3790 | if (source == threeButton) |
---|
2780 | 3791 | { |
---|
2781 | 3792 | radio.layout = threeButton; |
---|
| 3793 | + |
---|
| 3794 | + if (CameraPane.FULLSCREEN) |
---|
| 3795 | + fullscreenLayout = radio.layout; |
---|
2782 | 3796 | |
---|
2783 | 3797 | // bigThree.remove(scenePanel); |
---|
2784 | 3798 | // bigThree.remove(centralPanel); |
---|
.. | .. |
---|
2808 | 3822 | // centralPanel.setVisible(true); |
---|
2809 | 3823 | // XYZPanel.setVisible(true); |
---|
2810 | 3824 | bigThree.ClearUI(); |
---|
| 3825 | + bigThree.add(scenePanel); |
---|
2811 | 3826 | bigThree.add(centralPanel); |
---|
2812 | | - bigThree.add(XYZPanel); |
---|
2813 | 3827 | bigThree.FlushUI(); |
---|
| 3828 | + |
---|
| 3829 | + cameraView.requestFocusInWindow(); |
---|
2814 | 3830 | } else |
---|
2815 | 3831 | if (source == fourButton) |
---|
2816 | 3832 | { |
---|
2817 | 3833 | radio.layout = fourButton; |
---|
| 3834 | + |
---|
| 3835 | + if (CameraPane.FULLSCREEN) |
---|
| 3836 | + fullscreenLayout = radio.layout; |
---|
2818 | 3837 | |
---|
2819 | 3838 | // bigThree.remove(scenePanel); |
---|
2820 | 3839 | // bigThree.remove(centralPanel); |
---|
.. | .. |
---|
2846 | 3865 | bigThree.ClearUI(); |
---|
2847 | 3866 | bigThree.add(scenePanel); |
---|
2848 | 3867 | bigThree.FlushUI(); |
---|
| 3868 | + |
---|
| 3869 | + cameraView.requestFocusInWindow(); |
---|
2849 | 3870 | } else |
---|
2850 | 3871 | if (source == sixButton) |
---|
2851 | 3872 | { |
---|
2852 | 3873 | radio.layout = sixButton; |
---|
| 3874 | + |
---|
| 3875 | + if (CameraPane.FULLSCREEN) |
---|
| 3876 | + fullscreenLayout = radio.layout; |
---|
2853 | 3877 | |
---|
2854 | 3878 | // bigThree.remove(scenePanel); |
---|
2855 | 3879 | // bigThree.remove(centralPanel); |
---|
.. | .. |
---|
2879 | 3903 | // centralPanel.setVisible(true); |
---|
2880 | 3904 | // XYZPanel.setVisible(false); |
---|
2881 | 3905 | bigThree.ClearUI(); |
---|
2882 | | - bigThree.add(scenePanel); |
---|
2883 | 3906 | bigThree.add(centralPanel); |
---|
| 3907 | + bigThree.add(scenePanel); |
---|
2884 | 3908 | bigThree.FlushUI(); |
---|
| 3909 | + |
---|
| 3910 | + cameraView.requestFocusInWindow(); |
---|
2885 | 3911 | } else |
---|
2886 | 3912 | if (source == sevenButton) |
---|
2887 | 3913 | { |
---|
2888 | 3914 | radio.layout = sevenButton; |
---|
| 3915 | + |
---|
| 3916 | + if (CameraPane.FULLSCREEN) |
---|
| 3917 | + fullscreenLayout = radio.layout; |
---|
2889 | 3918 | |
---|
2890 | 3919 | // bigThree.remove(scenePanel); |
---|
2891 | 3920 | // bigThree.remove(centralPanel); |
---|
.. | .. |
---|
2919 | 3948 | bigThree.add(centralPanel); |
---|
2920 | 3949 | bigThree.add(XYZPanel); |
---|
2921 | 3950 | bigThree.FlushUI(); |
---|
| 3951 | + |
---|
| 3952 | + cameraView.requestFocusInWindow(); |
---|
2922 | 3953 | } else |
---|
2923 | 3954 | if (source == rootButton) |
---|
2924 | 3955 | { |
---|
| 3956 | + Replace(); |
---|
2925 | 3957 | Object3D obj; |
---|
2926 | 3958 | for (Enumeration e = group.selection.elements(); e.hasMoreElements();) |
---|
2927 | 3959 | { |
---|
.. | .. |
---|
2930 | 3962 | EditObject(obj); |
---|
2931 | 3963 | } |
---|
2932 | 3964 | |
---|
| 3965 | + cameraView.requestFocusInWindow(); |
---|
2933 | 3966 | refreshContents(true); |
---|
2934 | 3967 | } else |
---|
2935 | 3968 | if (source == closeButton) |
---|
.. | .. |
---|
2939 | 3972 | for (Enumeration e = buttonGroup.getElements(); e.hasMoreElements();) |
---|
2940 | 3973 | { |
---|
2941 | 3974 | ab = (cRadio)e.nextElement(); |
---|
2942 | | - if(ab.getModel().isSelected() && ab.GetObject() != client) |
---|
| 3975 | + if (ab.getModel().isSelected() && ab.GetObject() != client) |
---|
2943 | 3976 | { |
---|
| 3977 | + // Patch to avoid bug with transparency. |
---|
| 3978 | + if (!ab.hadMaterial) |
---|
| 3979 | + { |
---|
| 3980 | + ab.object.material = null; |
---|
| 3981 | + } |
---|
| 3982 | + |
---|
2944 | 3983 | buttonGroup.remove(ab); |
---|
2945 | 3984 | radioPanel.remove(ab); |
---|
2946 | 3985 | |
---|
2947 | | - ab.GetObject().editWindow = null; |
---|
| 3986 | + //ab.GetObject().editWindow = null; |
---|
| 3987 | + ab.GetObject().manipWindow = null; |
---|
2948 | 3988 | // ab.GetObject().objectUI = null; // ????????? |
---|
2949 | 3989 | |
---|
2950 | 3990 | ((cRadio)radioPanel.getComponent(radioPanel.getComponentCount() - 1)).doClick(); |
---|
2951 | 3991 | break; |
---|
2952 | 3992 | } |
---|
2953 | 3993 | } |
---|
| 3994 | + |
---|
| 3995 | + cameraView.requestFocusInWindow(); |
---|
2954 | 3996 | refreshContents(true); |
---|
2955 | 3997 | } else |
---|
2956 | 3998 | if (source == editItem || source == editButton) |
---|
2957 | 3999 | { |
---|
| 4000 | + for (Enumeration e = group.selection.elements(); e.hasMoreElements();) |
---|
| 4001 | + { |
---|
| 4002 | + Object3D child = (Object3D)e.nextElement(); |
---|
| 4003 | + child.pinned = true; |
---|
| 4004 | + } |
---|
| 4005 | + |
---|
2958 | 4006 | EditSelection(false); |
---|
2959 | 4007 | } else |
---|
2960 | 4008 | if (source == uneditButton) |
---|
.. | .. |
---|
2963 | 4011 | { |
---|
2964 | 4012 | Object3D child = (Object3D)e.nextElement(); |
---|
2965 | 4013 | if(child.editWindow != null) |
---|
2966 | | - objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit")); |
---|
| 4014 | + child.pinned = false; |
---|
2967 | 4015 | child.CloseUI(); |
---|
2968 | 4016 | listUI.remove(child); |
---|
| 4017 | +// objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit")); |
---|
2969 | 4018 | |
---|
2970 | | - child.editWindow = null; // ??????????? |
---|
| 4019 | + //child.editWindow = null; // ??????????? |
---|
2971 | 4020 | } |
---|
2972 | 4021 | objEditor.ctrlPanel.FlushUI(); |
---|
2973 | 4022 | //objEditor.jTree.clearSelection(); |
---|
.. | .. |
---|
2980 | 4029 | //copy.ClearUI(); |
---|
2981 | 4030 | for (Object3D obj : listUI) |
---|
2982 | 4031 | { |
---|
| 4032 | + obj.pinned = false; |
---|
2983 | 4033 | obj.CloseUI(); |
---|
2984 | 4034 | } |
---|
2985 | 4035 | listUI.clear(); |
---|
| 4036 | + SetPinStates(group.selection.size() > 0); |
---|
2986 | 4037 | refreshContents(true); |
---|
2987 | 4038 | } else |
---|
2988 | 4039 | if (source == allParamsButton) |
---|
2989 | 4040 | { |
---|
2990 | 4041 | assert(copy == group); |
---|
2991 | 4042 | |
---|
2992 | | - objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit")); |
---|
| 4043 | + //objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit")); |
---|
2993 | 4044 | |
---|
2994 | 4045 | for (Object3D obj : listUI) |
---|
2995 | 4046 | { |
---|
.. | .. |
---|
3038 | 4089 | } |
---|
3039 | 4090 | |
---|
3040 | 4091 | copy = group; |
---|
| 4092 | + |
---|
3041 | 4093 | //Globals.theRenderer.object = group; |
---|
3042 | 4094 | if(!useclient) |
---|
3043 | 4095 | { |
---|
.. | .. |
---|
3053 | 4105 | frontView.object = group; |
---|
3054 | 4106 | sideView.object = group; |
---|
3055 | 4107 | } |
---|
3056 | | - group.editWindow = this; |
---|
| 4108 | + |
---|
| 4109 | +// fix "+" issue |
---|
| 4110 | + //group.editWindow = this; |
---|
| 4111 | + group.manipWindow = this; |
---|
| 4112 | + |
---|
3057 | 4113 | /* |
---|
3058 | 4114 | currentLayout = radio.layout; |
---|
3059 | 4115 | if (currentLayout == null) |
---|
3060 | 4116 | currentLayout = sevenButton; |
---|
3061 | 4117 | */ |
---|
3062 | 4118 | radio.layout.doClick(); |
---|
| 4119 | + |
---|
| 4120 | + assert(copy instanceof Composite); |
---|
| 4121 | + |
---|
| 4122 | + if (copy.versionlist == null) |
---|
| 4123 | + { |
---|
| 4124 | + copy.versionlist = new Object3D[100]; |
---|
| 4125 | + copy.versionindex = -1; |
---|
| 4126 | + |
---|
| 4127 | + // Cannot work with loops |
---|
| 4128 | + // To fix this issue, first mark all nodes above the root, |
---|
| 4129 | + // and check if any of these nodes are reachable below the root. |
---|
| 4130 | + //Save(true); |
---|
| 4131 | + } |
---|
| 4132 | + |
---|
| 4133 | + SetVersionStates(); |
---|
| 4134 | + |
---|
| 4135 | + ClearUnpinned(); |
---|
| 4136 | + |
---|
| 4137 | + //Grafreed.Assert(group != null); |
---|
| 4138 | + //Grafreed.Assert(group.selection != null); |
---|
| 4139 | + SetPinStates(group.selection == null || group.selection.size() > 0); |
---|
| 4140 | + if (group.selection == null || group.selection.size() == 1) |
---|
| 4141 | + EditSelection(false); |
---|
3063 | 4142 | keepparent = group.parent; |
---|
3064 | 4143 | // PARENT = NULL or not??? |
---|
3065 | 4144 | //group.parent = null; // ROOT |
---|
3066 | 4145 | //group.attributes = -1; |
---|
3067 | 4146 | ResetModel(); |
---|
| 4147 | + |
---|
| 4148 | + cameraView.requestFocusInWindow(); |
---|
3068 | 4149 | refreshContents(true); |
---|
3069 | | - } |
---|
| 4150 | + } else if (event.getSource() == editCameraItem) |
---|
| 4151 | + { |
---|
| 4152 | + cameraView.ProtectCamera(); |
---|
| 4153 | + cameraView.requestFocusInWindow(); |
---|
| 4154 | + cameraView.repaint(); |
---|
| 4155 | + return; |
---|
| 4156 | + } else if (event.getSource() == restoreCameraItem || event.getSource() == restoreCameraButton) |
---|
| 4157 | + { |
---|
| 4158 | + cameraView.RevertCamera(); |
---|
| 4159 | + cameraView.requestFocusInWindow(); |
---|
| 4160 | + cameraView.repaint(); |
---|
| 4161 | + return; |
---|
| 4162 | + // } else if (event.getSource() == textureButton) |
---|
| 4163 | + // { |
---|
| 4164 | + // return; // true; |
---|
| 4165 | + } |
---|
3070 | 4166 | else |
---|
3071 | 4167 | { |
---|
3072 | 4168 | //return super.action(event, arg); |
---|
.. | .. |
---|
3075 | 4171 | } |
---|
3076 | 4172 | |
---|
3077 | 4173 | boolean useclient = false; |
---|
3078 | | - cRadio radio; |
---|
3079 | 4174 | |
---|
3080 | 4175 | void ToggleRoot() |
---|
3081 | 4176 | { |
---|
.. | .. |
---|
3127 | 4222 | refreshContents(); |
---|
3128 | 4223 | } |
---|
3129 | 4224 | |
---|
| 4225 | + void TransformChildren() |
---|
| 4226 | + { |
---|
| 4227 | + Object3D obj; |
---|
| 4228 | + for (Enumeration e = group.selection.elements(); e.hasMoreElements();) |
---|
| 4229 | + { |
---|
| 4230 | + obj = (Object3D)e.nextElement(); |
---|
| 4231 | + obj.KeepTextureMatrices(); |
---|
| 4232 | + obj.TransformChildren(); |
---|
| 4233 | + obj.RestoreTextureMatrices(); |
---|
| 4234 | + |
---|
| 4235 | +// if (obj.parent == null) |
---|
| 4236 | +// { |
---|
| 4237 | +// System.out.println("NULL PARENT!"); |
---|
| 4238 | +// new Exception().printStackTrace(); |
---|
| 4239 | +// } |
---|
| 4240 | +// else |
---|
| 4241 | +// TouchTransform(obj); |
---|
| 4242 | +// //obj.parent.Touch(); |
---|
| 4243 | + } |
---|
| 4244 | + |
---|
| 4245 | + refreshContents(); |
---|
| 4246 | + } |
---|
3130 | 4247 | |
---|
3131 | 4248 | void ResetTransform() |
---|
3132 | 4249 | { |
---|
.. | .. |
---|
3239 | 4356 | refreshContents(); |
---|
3240 | 4357 | } |
---|
3241 | 4358 | |
---|
3242 | | - void ResetCentroid() |
---|
| 4359 | + void ResetCentroid(boolean full) |
---|
3243 | 4360 | { |
---|
3244 | 4361 | Object3D obj; |
---|
3245 | 4362 | for (Enumeration e = group.selection.elements(); e.hasMoreElements();) |
---|
.. | .. |
---|
3254 | 4371 | LA.matIdentity(Object3D.mat); |
---|
3255 | 4372 | obj.getBounds(minima, maxima, false); |
---|
3256 | 4373 | Object3D.mat[3][0] = -(minima.x + maxima.x)/2; |
---|
3257 | | - Object3D.mat[3][1] = -(minima.y + maxima.y)/2; |
---|
| 4374 | + if (full) |
---|
| 4375 | + Object3D.mat[3][1] = -(minima.y + maxima.y)/2; |
---|
3258 | 4376 | Object3D.mat[3][2] = -(minima.z + maxima.z)/2; |
---|
3259 | 4377 | obj.TransformMesh(Object3D.mat); |
---|
| 4378 | + |
---|
3260 | 4379 | Object3D.mat[3][0] = (minima.x + maxima.x)/2; |
---|
3261 | | - Object3D.mat[3][1] = (minima.y + maxima.y)/2; |
---|
| 4380 | + if (full) |
---|
| 4381 | + Object3D.mat[3][1] = (minima.y + maxima.y)/2; |
---|
3262 | 4382 | Object3D.mat[3][2] = (minima.z + maxima.z)/2; |
---|
| 4383 | + |
---|
3263 | 4384 | LA.matConcat(Object3D.mat, obj.toParent, obj.toParent); |
---|
3264 | 4385 | //Object3D.mat[3][0] = -Object3D.mat[3][0]; |
---|
3265 | 4386 | //Object3D.mat[3][1] = -Object3D.mat[3][1]; |
---|
.. | .. |
---|
3288 | 4409 | |
---|
3289 | 4410 | int size = obj.MemorySize(); |
---|
3290 | 4411 | |
---|
3291 | | - System.err.println((size/1024) + " KB is the size of " + obj); |
---|
| 4412 | + //System.err.println((size/1024) + " KB is the size of " + obj); |
---|
| 4413 | + System.err.println("the size of " + obj + " is " + size + " (" + (size/1024) + "KB)"); |
---|
3292 | 4414 | } |
---|
3293 | 4415 | } |
---|
3294 | 4416 | catch (Exception e) |
---|
.. | .. |
---|
3325 | 4447 | obj = (Object3D)e.nextElement(); |
---|
3326 | 4448 | |
---|
3327 | 4449 | System.out.println("Object is: " + obj); |
---|
3328 | | - GrafreeD.AnalyzeObject(obj); |
---|
| 4450 | + Grafreed.AnalyzeObject(obj); |
---|
3329 | 4451 | System.out.println("Boundary rep: " + obj.bRep); |
---|
3330 | | - GrafreeD.AnalyzeObject(obj.bRep); |
---|
| 4452 | + Grafreed.AnalyzeObject(obj.bRep); |
---|
3331 | 4453 | |
---|
3332 | 4454 | // System.err.println((size/1024) + " KB is the size of " + obj); |
---|
3333 | 4455 | } |
---|
.. | .. |
---|
3369 | 4491 | void GenNormals(boolean crease) |
---|
3370 | 4492 | { |
---|
3371 | 4493 | group.GenNormalsS(crease); |
---|
| 4494 | + |
---|
| 4495 | + refreshContents(); |
---|
| 4496 | + } |
---|
| 4497 | + |
---|
| 4498 | + void GenNormalsMESH() |
---|
| 4499 | + { |
---|
| 4500 | + group.GenNormalsMeshS(); |
---|
3372 | 4501 | |
---|
3373 | 4502 | refreshContents(); |
---|
3374 | 4503 | } |
---|
.. | .. |
---|
3541 | 4670 | |
---|
3542 | 4671 | void ParseVertices() |
---|
3543 | 4672 | { |
---|
3544 | | - boolean epsequal = GrafreeD.epsequal; |
---|
3545 | | - GrafreeD.epsequal = true; |
---|
| 4673 | + boolean epsequal = Grafreed.epsequal; |
---|
| 4674 | + Grafreed.epsequal = true; |
---|
3546 | 4675 | |
---|
3547 | 4676 | for (int i=0; i<group.selection.size(); i++) |
---|
3548 | 4677 | { |
---|
.. | .. |
---|
3567 | 4696 | LA.matTranslate(g.toParent, temp.x, temp.y, temp.z); |
---|
3568 | 4697 | LA.matTranslate(g.fromParent, -temp.x, -temp.y, -temp.z); |
---|
3569 | 4698 | |
---|
3570 | | - g.add(GrafreeD.clipboard); |
---|
| 4699 | + g.add(Grafreed.clipboard); |
---|
3571 | 4700 | |
---|
3572 | 4701 | buffer.add(g); |
---|
3573 | 4702 | } |
---|
.. | .. |
---|
3582 | 4711 | makeSomething(buffer, i==group.selection.size()-1); |
---|
3583 | 4712 | } |
---|
3584 | 4713 | |
---|
3585 | | - GrafreeD.epsequal = epsequal; |
---|
| 4714 | + Grafreed.epsequal = epsequal; |
---|
3586 | 4715 | |
---|
3587 | 4716 | refreshContents(); |
---|
3588 | 4717 | } |
---|
.. | .. |
---|
3600 | 4729 | String pigment = Object3D.GetPigment(tex); |
---|
3601 | 4730 | //String bump = Object3D.GetBump(tex); |
---|
3602 | 4731 | |
---|
3603 | | - com.sun.opengl.util.texture.TextureData texturedata = Globals.theRenderer.GetTextureData(pigment, false, node.texres); |
---|
| 4732 | + com.sun.opengl.util.texture.TextureData texturedata = null; |
---|
| 4733 | + |
---|
| 4734 | + try |
---|
| 4735 | + { |
---|
| 4736 | + texturedata = Globals.theRenderer.GetTextureData(tex, false, node.texres); |
---|
| 4737 | + } |
---|
| 4738 | + catch (Exception e) |
---|
| 4739 | + { |
---|
| 4740 | + System.err.println("FAIL: " + node); |
---|
| 4741 | + } |
---|
3604 | 4742 | |
---|
3605 | 4743 | double s = v.s; |
---|
3606 | 4744 | |
---|
.. | .. |
---|
3732 | 4870 | return; |
---|
3733 | 4871 | |
---|
3734 | 4872 | Object3D poses = group.selection.get(0); |
---|
3735 | | - Object3D ref = GrafreeD.clipboard.get(0); |
---|
| 4873 | + Object3D ref = Grafreed.clipboard.get(0); |
---|
3736 | 4874 | |
---|
3737 | 4875 | Object3D newgroup = new Object3D("Po:" + poses.name); |
---|
3738 | 4876 | |
---|
.. | .. |
---|
3926 | 5064 | |
---|
3927 | 5065 | void ClipMesh() |
---|
3928 | 5066 | { |
---|
3929 | | - if (/*group.selection.size() == 1 &&*/ GrafreeD.clipboard.size() == 1) |
---|
| 5067 | + if (/*group.selection.size() == 1 &&*/ Grafreed.clipboard.size() == 1) |
---|
3930 | 5068 | { |
---|
3931 | | - Object3D content = GrafreeD.clipboard.get(0); |
---|
| 5069 | + Object3D content = Grafreed.clipboard.get(0); |
---|
3932 | 5070 | |
---|
3933 | 5071 | if (content instanceof cGroup && ((cGroup)content).transientlink ) |
---|
3934 | 5072 | content = ((cGroup)content).get(0); |
---|
.. | .. |
---|
3937 | 5075 | // { |
---|
3938 | 5076 | // group.selection.get(i).ClipMesh(GrafreeD.clipboard); |
---|
3939 | 5077 | // } |
---|
3940 | | - group.selection.ClipMesh(GrafreeD.clipboard); |
---|
| 5078 | + group.selection.ClipMesh(Grafreed.clipboard); |
---|
3941 | 5079 | } |
---|
3942 | 5080 | // group.selection.ClipMesh(GrafreeD.clipboard); |
---|
3943 | 5081 | System.out.println("DONE."); |
---|
.. | .. |
---|
3984 | 5122 | void MarkLeaves(boolean hide) |
---|
3985 | 5123 | { |
---|
3986 | 5124 | group.selection.MarkLeaves(hide); |
---|
| 5125 | + refreshContents(); |
---|
| 5126 | + } |
---|
| 5127 | + |
---|
| 5128 | + void RewindLeaves(boolean hide) |
---|
| 5129 | + { |
---|
| 5130 | + group.selection.RewindLeaves(hide); |
---|
| 5131 | + refreshContents(); |
---|
| 5132 | + } |
---|
| 5133 | + |
---|
| 5134 | + void RandomLeaves(boolean hide) |
---|
| 5135 | + { |
---|
| 5136 | + group.selection.RandomLeaves(hide); |
---|
3987 | 5137 | refreshContents(); |
---|
3988 | 5138 | } |
---|
3989 | 5139 | |
---|
.. | .. |
---|
4058 | 5208 | // } |
---|
4059 | 5209 | // } |
---|
4060 | 5210 | |
---|
4061 | | - static boolean allparams = true; |
---|
4062 | | - |
---|
4063 | | - static Vector<Object3D> listUI = new Vector<Object3D>(); |
---|
4064 | | - |
---|
4065 | 5211 | void EditSelection(boolean newWindow) |
---|
4066 | 5212 | { |
---|
| 5213 | + if (group.selection == null) |
---|
| 5214 | + { |
---|
| 5215 | + EditElement(group, newWindow); // ? new |
---|
| 5216 | + return; |
---|
| 5217 | + } |
---|
| 5218 | + |
---|
4067 | 5219 | // aConstraints.gridy = 0; |
---|
4068 | 5220 | for (int i=0; i<group.selection.size(); i++) |
---|
4069 | 5221 | { |
---|
4070 | 5222 | //System.out.println("edit : " + objectPanel.indexOfTab("Material")); |
---|
4071 | 5223 | //objectPanel.setEnabledAt(objectPanel.indexOfTab("Material"), false); |
---|
4072 | | - objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit")); |
---|
| 5224 | + //objectPanel.setSelectedIndex(objectPanel.indexOfTab("Edit")); |
---|
4073 | 5225 | |
---|
4074 | 5226 | Object3D elem = (Object3D)group.selection.elementAt(i); |
---|
4075 | | - if(elem != group) |
---|
| 5227 | + if(elem != group || !newWindow) |
---|
4076 | 5228 | { |
---|
4077 | | - // if (!(elem instanceof Composite)) |
---|
4078 | | - // newWindow = false; |
---|
4079 | | - listUI.add(elem); |
---|
4080 | | - elem.openEditWindow(this, newWindow); //, false); |
---|
4081 | | - System.out.println("edit : " + elem); |
---|
4082 | | - elem.editWindow.refreshContents(true); // ? new |
---|
| 5229 | + EditElement(elem, newWindow); // ? new |
---|
4083 | 5230 | } |
---|
4084 | 5231 | } |
---|
4085 | 5232 | } |
---|
.. | .. |
---|
4142 | 5289 | |
---|
4143 | 5290 | freezemodel = false; |
---|
4144 | 5291 | } |
---|
4145 | | - |
---|
4146 | | - boolean flashIt = true; |
---|
4147 | | - |
---|
| 5292 | + |
---|
4148 | 5293 | public void valueChanged(TreeSelectionEvent e) |
---|
4149 | 5294 | //public boolean handleEvent(Event event) |
---|
4150 | 5295 | { |
---|
.. | .. |
---|
4154 | 5299 | //new Exception().printStackTrace(); |
---|
4155 | 5300 | |
---|
4156 | 5301 | freezemodel = true; |
---|
4157 | | - |
---|
| 5302 | + ClearUnpinned(); |
---|
| 5303 | + |
---|
4158 | 5304 | /**/ |
---|
4159 | 5305 | //switch (event.id) |
---|
4160 | 5306 | { |
---|
.. | .. |
---|
4162 | 5308 | //case 702: // Event.LIST_DESELECT |
---|
4163 | 5309 | group.deselectAll(); |
---|
4164 | 5310 | TreePath tps[] = objEditor.jTree.getSelectionPaths(); |
---|
4165 | | - objEditor.ClearInfo(); // .GetMaterial()); |
---|
4166 | 5311 | if (tps != null) |
---|
4167 | 5312 | { |
---|
4168 | 5313 | for (int i=0; i < tps.length; i++) |
---|
.. | .. |
---|
4171 | 5316 | |
---|
4172 | 5317 | //if (child.parent != null) |
---|
4173 | 5318 | //child.parent.addSelectee(child); |
---|
| 5319 | + objEditor.SetMaterial(child); |
---|
4174 | 5320 | group.addSelectee(child); |
---|
4175 | | - objEditor.SetMaterial(child); // .GetMaterial()); |
---|
4176 | | - objEditor.AddInfo(child, this, true); // .GetMaterial()); |
---|
4177 | | - System.err.println("info : " + child.GetPath()); |
---|
4178 | 5321 | } |
---|
4179 | 5322 | } |
---|
4180 | 5323 | // else |
---|
.. | .. |
---|
4184 | 5327 | // System.err.println("info : " + group.GetPath()); |
---|
4185 | 5328 | // } |
---|
4186 | 5329 | |
---|
4187 | | - objEditor.SetText(); // jan 2014 |
---|
4188 | | - |
---|
4189 | | - if (flashIt && !Globals.isLIVE() && tps != null && tps.length > 0 && !(((Object3D) tps[0].getLastPathComponent()) instanceof Camera)) |
---|
| 5330 | + if (flashIt && !Globals.isLIVE() && tps != null && tps.length > 0 && !(tps[0].getLastPathComponent() instanceof Camera)) |
---|
4190 | 5331 | CameraPane.flash = true; |
---|
4191 | 5332 | |
---|
4192 | | - if (tps != null && tps.length > 0 && ((Object3D) tps[0].getLastPathComponent()) instanceof Camera) |
---|
| 5333 | + if (tps != null && tps.length > 0 && tps[0].getLastPathComponent() instanceof Camera) |
---|
4193 | 5334 | // a camera |
---|
4194 | 5335 | { |
---|
4195 | | - CameraPane.camerachangeframe = 0; // don't refuse it |
---|
4196 | | - Globals.theRenderer.SetCamera((Camera) tps[0].getLastPathComponent()); |
---|
| 5336 | + if (tps[0].getLastPathComponent() != Globals.theRenderer.LightCamera()) // Crash the camera because of invalid lightspace |
---|
| 5337 | + { |
---|
| 5338 | + CameraPane.camerachangeframe = 0; // don't refuse it |
---|
| 5339 | + Globals.theRenderer.SetCamera((Camera) tps[0].getLastPathComponent()); |
---|
| 5340 | + } |
---|
4197 | 5341 | // Globals.theRenderer.renderCamera = Globals.theRenderer.manipCamera; |
---|
4198 | 5342 | // Globals.theRenderer.eyeCamera = Globals.theRenderer.manipCamera; |
---|
4199 | 5343 | } |
---|
4200 | 5344 | |
---|
| 5345 | + if (tps != null && tps.length == 1) |
---|
| 5346 | + { |
---|
| 5347 | + EditSelection(false); |
---|
| 5348 | + } |
---|
| 5349 | + |
---|
| 5350 | + SetPinStates(tps != null && tps.length > 0); |
---|
| 5351 | + |
---|
4201 | 5352 | refreshContents(); |
---|
4202 | 5353 | //return true; |
---|
4203 | 5354 | } |
---|
.. | .. |
---|
4206 | 5357 | |
---|
4207 | 5358 | freezemodel = false; |
---|
4208 | 5359 | } |
---|
| 5360 | + |
---|
| 5361 | + void SetPinStates(boolean enabled) |
---|
| 5362 | + { |
---|
| 5363 | + editButton.setEnabled(enabled); |
---|
| 5364 | + uneditButton.setEnabled(enabled); |
---|
| 5365 | + //unselectButton.setEnabled(enabled); |
---|
| 5366 | + flashSelectionButton.setEnabled(enabled); |
---|
| 5367 | + |
---|
| 5368 | + clearPanelButton.setEnabled(!listUI.isEmpty()); |
---|
| 5369 | + |
---|
| 5370 | + boolean allComposites = true; |
---|
| 5371 | + |
---|
| 5372 | + if (group.selection != null) |
---|
| 5373 | + for (Enumeration e = group.selection.elements(); e.hasMoreElements();) |
---|
| 5374 | + { |
---|
| 5375 | + Object next = e.nextElement(); |
---|
| 5376 | + if (!(next instanceof Composite)) // || (next instanceof GroupLeaf)) |
---|
| 5377 | + { |
---|
| 5378 | + allComposites = false; |
---|
| 5379 | + break; |
---|
| 5380 | + } |
---|
| 5381 | + } |
---|
| 5382 | + |
---|
| 5383 | + rootButton.setEnabled(allComposites); |
---|
| 5384 | + } |
---|
| 5385 | + |
---|
| 5386 | + void refreshContents(boolean cp) |
---|
| 5387 | + { |
---|
| 5388 | + //if (objectPanel.getSelectedIndex() == 2) // objectPanel.indexOfTab("Info")) |
---|
| 5389 | + if (!Globals.MOUSEDRAGGED && group.selection != null) // && !Globals.TIMERRUNNING) |
---|
| 5390 | + { |
---|
| 5391 | + objEditor.ClearInfo(); // .GetMaterial()); |
---|
| 5392 | + |
---|
| 5393 | + for (int i=0; i < group.selection.Size(); i++) |
---|
| 5394 | + { |
---|
| 5395 | + Object3D child = (Object3D) group.selection.get(i); |
---|
| 5396 | + |
---|
| 5397 | + objEditor.AddInfo(child, this, true); |
---|
| 5398 | +// System.err.println("info : " + child.GetPath()); |
---|
| 5399 | + } |
---|
| 5400 | + |
---|
| 5401 | + objEditor.SetText(); // jan 2014 |
---|
| 5402 | + } |
---|
| 5403 | + |
---|
| 5404 | + super.refreshContents(cp); |
---|
| 5405 | + } |
---|
4209 | 5406 | |
---|
4210 | 5407 | void linkSomething(Object3D thing) |
---|
4211 | 5408 | { |
---|
.. | .. |
---|
4277 | 5474 | { |
---|
4278 | 5475 | if (group.selection.isEmpty()) |
---|
4279 | 5476 | return; |
---|
4280 | | - GrafreeD.clipboardIsTempGroup = false; |
---|
| 5477 | + |
---|
| 5478 | + Grafreed.clipboardIsTempGroup = false; |
---|
4281 | 5479 | Composite tGroup = null; |
---|
4282 | 5480 | if (group.selection.size() > 0) // 1) |
---|
4283 | 5481 | { |
---|
4284 | 5482 | tGroup = new cGroup(); |
---|
4285 | | - GrafreeD.clipboardIsTempGroup = true; |
---|
| 5483 | + Grafreed.clipboardIsTempGroup = true; |
---|
4286 | 5484 | } |
---|
4287 | 5485 | |
---|
4288 | 5486 | if (cut) |
---|
4289 | 5487 | { |
---|
| 5488 | +// if (Globals.SAVEONMAKE) // Moved to the clipboard, no need to save. |
---|
| 5489 | +// Save(); |
---|
4290 | 5490 | //int indices[] = jList.getSelectedIndices(); |
---|
4291 | 5491 | //for (int i = indices.length - 1; i >= 0; i--) |
---|
4292 | 5492 | //jList.remove(indices[i]); |
---|
.. | .. |
---|
4322 | 5522 | //System.out.println("cut " + child); |
---|
4323 | 5523 | //System.out.println("parent = " + child.parent); |
---|
4324 | 5524 | // tmp.addChild(child); |
---|
4325 | | - if (GrafreeD.clipboardIsTempGroup) |
---|
| 5525 | + if (Grafreed.clipboardIsTempGroup) |
---|
4326 | 5526 | tGroup.add/*Child*/(tmp); |
---|
4327 | 5527 | else |
---|
4328 | | - GrafreeD.clipboard = tmp; |
---|
| 5528 | + Grafreed.clipboard = tmp; |
---|
4329 | 5529 | } |
---|
4330 | 5530 | else |
---|
4331 | | - if (GrafreeD.clipboardIsTempGroup) |
---|
| 5531 | + if (Grafreed.clipboardIsTempGroup) |
---|
4332 | 5532 | tGroup.add/*Child*/(child); |
---|
4333 | 5533 | else |
---|
4334 | | - GrafreeD.clipboard = child; |
---|
| 5534 | + Grafreed.clipboard = child; |
---|
4335 | 5535 | } |
---|
4336 | 5536 | |
---|
4337 | 5537 | //ResetModel(); |
---|
.. | .. |
---|
4363 | 5563 | //System.out.println("cut " + elem); |
---|
4364 | 5564 | //System.out.println("parent = " + elem.parent); |
---|
4365 | 5565 | // tmp.addChild(elem); |
---|
4366 | | - if (GrafreeD.clipboardIsTempGroup) |
---|
| 5566 | + if (Grafreed.clipboardIsTempGroup) |
---|
4367 | 5567 | tGroup.add/*Child*/(tmp); |
---|
4368 | 5568 | else |
---|
4369 | | - GrafreeD.clipboard = tmp; |
---|
| 5569 | + Grafreed.clipboard = tmp; |
---|
4370 | 5570 | } |
---|
4371 | 5571 | else |
---|
4372 | | - if (GrafreeD.clipboardIsTempGroup) |
---|
| 5572 | + if (Grafreed.clipboardIsTempGroup) |
---|
4373 | 5573 | tGroup.add/*Child*/(child); |
---|
4374 | 5574 | else |
---|
4375 | | - GrafreeD.clipboard = child; |
---|
| 5575 | + Grafreed.clipboard = child; |
---|
4376 | 5576 | } |
---|
4377 | 5577 | |
---|
4378 | 5578 | } |
---|
4379 | | - if (GrafreeD.clipboardIsTempGroup) |
---|
4380 | | - GrafreeD.clipboard = tGroup; |
---|
| 5579 | + |
---|
| 5580 | + if (Grafreed.clipboardIsTempGroup) |
---|
| 5581 | + Grafreed.clipboard = tGroup; |
---|
| 5582 | + |
---|
4381 | 5583 | if (cut) |
---|
4382 | 5584 | { |
---|
4383 | 5585 | ResetModel(); |
---|
.. | .. |
---|
4387 | 5589 | |
---|
4388 | 5590 | void paste(boolean expand) |
---|
4389 | 5591 | { |
---|
| 5592 | + if (Globals.REPLACEONMAKE) |
---|
| 5593 | + Save(); |
---|
| 5594 | + boolean keep = Globals.REPLACEONMAKE; |
---|
| 5595 | + Globals.REPLACEONMAKE = false; |
---|
4390 | 5596 | // if (GrafreeD.clipboard == null) |
---|
4391 | 5597 | // return; |
---|
4392 | 5598 | boolean first = true; |
---|
4393 | 5599 | |
---|
4394 | | - if (GrafreeD.clipboardIsTempGroup) |
---|
| 5600 | + if (Grafreed.clipboardIsTempGroup) |
---|
4395 | 5601 | { |
---|
4396 | 5602 | Composite temp; |
---|
4397 | 5603 | |
---|
.. | .. |
---|
4402 | 5608 | temp = (Composite)Applet3D.clipboard.deepCopy(); |
---|
4403 | 5609 | */ |
---|
4404 | 5610 | Object3D elem; |
---|
4405 | | - for (Enumeration e = /*temp.children*/GrafreeD.clipboard.elements(); e.hasMoreElements();) // objList.add(copy.name)) |
---|
| 5611 | + for (Enumeration e = /*temp.children*/Grafreed.clipboard.elements(); e.hasMoreElements();) // objList.add(copy.name)) |
---|
4406 | 5612 | { |
---|
4407 | 5613 | Object3D child = (Object3D)e.nextElement(); |
---|
4408 | 5614 | |
---|
.. | .. |
---|
4436 | 5642 | //Object3D cb = Applet3D.clipboard; |
---|
4437 | 5643 | //temp.addChild(cb); |
---|
4438 | 5644 | //makeSomething((expand?temp.copyExpand():temp.deepCopy()).get(0)); |
---|
4439 | | - assert(GrafreeD.clipboard.parent == null); |
---|
4440 | | - Object3D /*Composite*/ keepparent = GrafreeD.clipboard.get(0).parent; |
---|
4441 | | - GrafreeD.clipboard.get(0).parent = null; // Avoid copy? |
---|
4442 | | - if (LA.isIdentity(GrafreeD.clipboard.toParent)) |
---|
4443 | | - makeSomething(expand?GrafreeD.clipboard.get(0).copyExpand():GrafreeD.clipboard.get(0).deepCopy()); |
---|
| 5645 | + assert(Grafreed.clipboard.parent == null); |
---|
| 5646 | + Object3D /*Composite*/ keepparent = Grafreed.clipboard.get(0).parent; |
---|
| 5647 | + Grafreed.clipboard.get(0).parent = null; // Avoid copy? |
---|
| 5648 | + if (LA.isIdentity(Grafreed.clipboard.toParent)) |
---|
| 5649 | + makeSomething(expand?Grafreed.clipboard.get(0).copyExpand():Grafreed.clipboard.get(0).deepCopy()); |
---|
4444 | 5650 | else |
---|
4445 | | - makeSomething(expand?GrafreeD.clipboard.copyExpand():GrafreeD.clipboard.deepCopy()); |
---|
4446 | | - GrafreeD.clipboard.get(0).parent = keepparent; |
---|
| 5651 | + makeSomething(expand?Grafreed.clipboard.copyExpand():Grafreed.clipboard.deepCopy()); |
---|
| 5652 | + Grafreed.clipboard.get(0).parent = keepparent; |
---|
4447 | 5653 | } |
---|
4448 | 5654 | |
---|
| 5655 | + Globals.REPLACEONMAKE = keep; |
---|
4449 | 5656 | ResetModel(); |
---|
4450 | 5657 | refreshContents(); |
---|
4451 | 5658 | } |
---|
.. | .. |
---|
4492 | 5699 | { |
---|
4493 | 5700 | boolean first = true; |
---|
4494 | 5701 | |
---|
4495 | | - if (GrafreeD.clipboardIsTempGroup) |
---|
| 5702 | + if (Grafreed.clipboardIsTempGroup) |
---|
4496 | 5703 | { |
---|
4497 | | - Composite temp = (Composite)GrafreeD.clipboard; |
---|
| 5704 | + Composite temp = (Composite)Grafreed.clipboard; |
---|
4498 | 5705 | Object3D copy; |
---|
4499 | 5706 | for (Enumeration e = temp.children.elements(); e.hasMoreElements();) |
---|
4500 | 5707 | { |
---|
.. | .. |
---|
4504 | 5711 | } |
---|
4505 | 5712 | } else |
---|
4506 | 5713 | { |
---|
4507 | | - linkSomething(GrafreeD.clipboard); //.get(0)); |
---|
| 5714 | + linkSomething(Grafreed.clipboard); //.get(0)); |
---|
4508 | 5715 | } |
---|
4509 | 5716 | } |
---|
4510 | 5717 | } |
---|
.. | .. |
---|
4581 | 5788 | |
---|
4582 | 5789 | void group(Object3D csg, boolean grab) |
---|
4583 | 5790 | { |
---|
| 5791 | + if (Globals.REPLACEONMAKE) |
---|
| 5792 | + Save(); |
---|
| 5793 | + boolean keep = Globals.REPLACEONMAKE; |
---|
| 5794 | + Globals.REPLACEONMAKE = false; |
---|
4584 | 5795 | if (//false) // why?? |
---|
4585 | 5796 | !group.selection.isEmpty()) |
---|
4586 | 5797 | { |
---|
.. | .. |
---|
4694 | 5905 | //node.add(csg); |
---|
4695 | 5906 | //makeSomething(node); |
---|
4696 | 5907 | makeSomething(csg); |
---|
| 5908 | + Globals.REPLACEONMAKE = keep; |
---|
4697 | 5909 | } |
---|
4698 | 5910 | |
---|
4699 | 5911 | void Ungroup(Object3D g) |
---|
4700 | 5912 | { |
---|
| 5913 | + if (Globals.REPLACEONMAKE) |
---|
| 5914 | + Save(); |
---|
| 5915 | + boolean keep = Globals.REPLACEONMAKE; |
---|
| 5916 | + Globals.REPLACEONMAKE = false; |
---|
4701 | 5917 | if (g instanceof HiddenObject) |
---|
4702 | 5918 | { |
---|
4703 | 5919 | HiddenObject h = (HiddenObject) g; |
---|
.. | .. |
---|
4714 | 5930 | objEditor.makeSomething(g.get(i), false); |
---|
4715 | 5931 | } |
---|
4716 | 5932 | } |
---|
| 5933 | + Globals.REPLACEONMAKE = keep; |
---|
4717 | 5934 | } |
---|
4718 | 5935 | |
---|
4719 | 5936 | void ungroup() |
---|
.. | .. |
---|
4909 | 6126 | } |
---|
4910 | 6127 | */ |
---|
4911 | 6128 | |
---|
4912 | | - void ImportGFD() |
---|
4913 | | - { |
---|
4914 | | - FileDialog browser = new FileDialog(objEditor.frame, "Import GrafreeD", FileDialog.LOAD); |
---|
4915 | | - browser.show(); |
---|
4916 | | - String filename = browser.getFile(); |
---|
4917 | | - if (filename != null && filename.length() > 0) |
---|
4918 | | - { |
---|
4919 | | - String fullname = browser.getDirectory() + filename; |
---|
4920 | | - |
---|
4921 | | - //Object3D readobj = |
---|
4922 | | - objEditor.ReadGFD(fullname, objEditor); |
---|
4923 | | - //makeSomething(readobj); |
---|
4924 | | - } |
---|
4925 | | - } |
---|
4926 | | - |
---|
4927 | 6129 | /* |
---|
4928 | 6130 | public void Callback(Object obj) |
---|
4929 | 6131 | { |
---|
.. | .. |
---|
4947 | 6149 | } |
---|
4948 | 6150 | */ |
---|
4949 | 6151 | |
---|
4950 | | - void ImportVRMLX3D() |
---|
4951 | | - { |
---|
4952 | | - if (GrafreeD.standAlone) |
---|
4953 | | - { |
---|
4954 | | - /**/ |
---|
4955 | | - FileDialog browser = new FileDialog(objEditor.frame, "Import VRML/X3D", FileDialog.LOAD); |
---|
4956 | | - browser.show(); |
---|
4957 | | - String filename = browser.getFile(); |
---|
4958 | | - if (filename != null && filename.length() > 0) |
---|
4959 | | - { |
---|
4960 | | - String fullname = browser.getDirectory() + filename; |
---|
4961 | | - LoadVRMLX3D(fullname); |
---|
4962 | | - } |
---|
4963 | | - /**/ |
---|
4964 | | - } |
---|
4965 | | - } |
---|
4966 | | - |
---|
4967 | 6152 | String GetFile(String dialogName) |
---|
4968 | 6153 | { |
---|
4969 | | - if (GrafreeD.standAlone) |
---|
| 6154 | + if (Grafreed.standAlone) |
---|
4970 | 6155 | { |
---|
4971 | 6156 | FileDialog browser = new FileDialog(objEditor.frame, dialogName, FileDialog.LOAD); |
---|
4972 | 6157 | browser.show(); |
---|
.. | .. |
---|
5034 | 6219 | cButton clearpanelButton; |
---|
5035 | 6220 | cButton unselectButton; |
---|
5036 | 6221 | |
---|
| 6222 | + cButton restoreCameraButton; |
---|
| 6223 | + |
---|
5037 | 6224 | cButton oneStepButton; |
---|
| 6225 | + |
---|
| 6226 | + cButton groupButton; |
---|
| 6227 | + cButton ungroupButton; |
---|
| 6228 | + cButton compositeButton; |
---|
| 6229 | + cButton switchButton; |
---|
| 6230 | + cButton loopButton; |
---|
| 6231 | + cButton textureButton; |
---|
| 6232 | + |
---|
| 6233 | + cButton skybox1Button; |
---|
| 6234 | + cButton skybox2Button; |
---|
| 6235 | + cButton skybox3Button; |
---|
| 6236 | + cButton skybox4Button; |
---|
| 6237 | + cButton skybox5Button; |
---|
| 6238 | + cButton skybox6Button; |
---|
| 6239 | + cButton skybox7Button; |
---|
| 6240 | + |
---|
| 6241 | + cButton skybox11Button; |
---|
| 6242 | + cButton skybox12Button; |
---|
| 6243 | + cButton skybox13Button; |
---|
| 6244 | + cButton skybox14Button; |
---|
| 6245 | + cButton skybox15Button; |
---|
| 6246 | + cButton skybox16Button; |
---|
| 6247 | + cButton skybox17Button; |
---|
| 6248 | + |
---|
| 6249 | + cButton gridButton; |
---|
| 6250 | + cButton boxButton; |
---|
| 6251 | + cButton sphereButton; |
---|
| 6252 | + cButton coneButton; |
---|
| 6253 | + cButton torusButton; |
---|
| 6254 | + cButton superButton; |
---|
| 6255 | + cButton kleinButton; |
---|
| 6256 | + cButton particlesButton; |
---|
| 6257 | + cButton overlayButton; |
---|
| 6258 | + cButton lightButton; |
---|
5038 | 6259 | |
---|
5039 | 6260 | cButton screenfitButton; |
---|
5040 | 6261 | cButton screenfitpointButton; |
---|
.. | .. |
---|
5047 | 6268 | |
---|
5048 | 6269 | cButton setsupportButton; |
---|
5049 | 6270 | |
---|
5050 | | - cButton twoButton; |
---|
5051 | | - cButton sixButton; |
---|
5052 | | - cButton threeButton; |
---|
5053 | | - cButton sevenButton; |
---|
5054 | | - cButton fourButton; // full panel |
---|
5055 | | - cButton oneButton; // full XYZ |
---|
5056 | | - //cButton currentLayout; |
---|
5057 | | - |
---|
5058 | 6271 | // |
---|
5059 | 6272 | //Composite |
---|
5060 | 6273 | Object3D // to do !! |
---|
.. | .. |
---|
5064 | 6277 | //JTree jTree; |
---|
5065 | 6278 | private MenuItem lookAtItem; |
---|
5066 | 6279 | private MenuItem lookFromItem; |
---|
5067 | | - private MenuItem switchItem; |
---|
5068 | | - private MenuItem cutItem; |
---|
5069 | | - private MenuItem duplicateItem; |
---|
5070 | | - private MenuItem cloneItem; |
---|
| 6280 | + private MenuItem switchViewItem; |
---|
| 6281 | + private JMenuItem cutItem; |
---|
| 6282 | + private MenuItem undoItem; |
---|
| 6283 | + private MenuItem redoItem; |
---|
| 6284 | + private JMenuItem duplicateItem; |
---|
| 6285 | + private JMenuItem cloneItem; |
---|
5071 | 6286 | private MenuItem cloneSupportItem; |
---|
5072 | 6287 | private MenuItem overwriteGeoItem; |
---|
5073 | 6288 | private MenuItem overwriteMatItem; |
---|
.. | .. |
---|
5079 | 6294 | private MenuItem linkverticesItem; |
---|
5080 | 6295 | private MenuItem relinkverticesItem; |
---|
5081 | 6296 | private MenuItem setMasterItem; |
---|
5082 | | - private MenuItem resetMeshItem; |
---|
| 6297 | + private MenuItem resetAllItem; |
---|
5083 | 6298 | private MenuItem stepAllItem; |
---|
5084 | 6299 | private MenuItem revertMeshItem; |
---|
5085 | 6300 | private MenuItem poseMeshItem; |
---|
.. | .. |
---|
5088 | 6303 | private MenuItem cloneGeometriesItem; |
---|
5089 | 6304 | private MenuItem shareGeometriesItem; |
---|
5090 | 6305 | private MenuItem mergeGeometriesItem; |
---|
5091 | | - private MenuItem copyItem; |
---|
| 6306 | + private JMenuItem copyItem; |
---|
5092 | 6307 | private MenuItem pasteItem; |
---|
5093 | | - private MenuItem pasteIntoItem; |
---|
5094 | | - private MenuItem pasteLinkItem; |
---|
5095 | | - private MenuItem pasteCloneItem; |
---|
5096 | | - private MenuItem pasteExpandItem; |
---|
5097 | | - private MenuItem clearItem; |
---|
| 6308 | + private JMenuItem pasteIntoItem; |
---|
| 6309 | + private JMenuItem pasteLinkItem; |
---|
| 6310 | + private JMenuItem pasteCloneItem; |
---|
| 6311 | + private JMenuItem pasteExpandItem; |
---|
| 6312 | + private JMenuItem deleteItem; |
---|
5098 | 6313 | private MenuItem clearAllItem; |
---|
5099 | 6314 | private MenuItem genUVItem; |
---|
5100 | 6315 | private MenuItem genNormalsMESHItem; |
---|
.. | .. |
---|
5129 | 6344 | private MenuItem showleavesItem; |
---|
5130 | 6345 | private MenuItem markleavesItem; |
---|
5131 | 6346 | private MenuItem unmarkleavesItem; |
---|
| 6347 | + private MenuItem rewindleavesItem; |
---|
| 6348 | + private MenuItem unrewindleavesItem; |
---|
| 6349 | + private MenuItem randomleavesItem; |
---|
| 6350 | + private MenuItem unrandomleavesItem; |
---|
5132 | 6351 | |
---|
5133 | 6352 | private MenuItem flipVItem; |
---|
5134 | 6353 | private MenuItem unflipVItem; |
---|
.. | .. |
---|
5140 | 6359 | private MenuItem panoTexturesItem; |
---|
5141 | 6360 | |
---|
5142 | 6361 | private MenuItem resetCentroidItem; |
---|
5143 | | - private MenuItem transformgeometryItem; |
---|
| 6362 | + private MenuItem resetCentroidXZItem; |
---|
5144 | 6363 | private MenuItem resetTransformItem; |
---|
| 6364 | + private MenuItem transformGeometryItem; |
---|
| 6365 | + private MenuItem transformChildrenItem; |
---|
5145 | 6366 | private MenuItem hideItem; |
---|
5146 | | - private MenuItem grabItem; |
---|
| 6367 | + private JMenuItem grabItem; |
---|
5147 | 6368 | private MenuItem backItem; |
---|
5148 | 6369 | private MenuItem frontItem; |
---|
5149 | 6370 | private MenuItem cameraItem; |
---|
5150 | 6371 | private MenuItem compositeItem; |
---|
5151 | | - private MenuItem randomItem; |
---|
| 6372 | + private MenuItem switchItem; |
---|
5152 | 6373 | private MenuItem physicsItem; |
---|
5153 | 6374 | private MenuItem frameselectorItem; |
---|
5154 | 6375 | private MenuItem scriptNodeItem; |
---|
.. | .. |
---|
5156 | 6377 | private MenuItem switchTransfoItem; |
---|
5157 | 6378 | private MenuItem morphItem; |
---|
5158 | 6379 | private MenuItem linkerItem; |
---|
5159 | | - private MenuItem ungroupItem; |
---|
| 6380 | + private JMenuItem ungroupItem; |
---|
5160 | 6381 | private MenuItem editItem; |
---|
5161 | 6382 | private MenuItem openWindowItem; |
---|
5162 | 6383 | private MenuItem editLeafItem; |
---|
.. | .. |
---|
5172 | 6393 | private MenuItem attachBumpItem; |
---|
5173 | 6394 | private MenuItem detachBumpItem; |
---|
5174 | 6395 | private MenuItem pigmentBumpItem; |
---|
| 6396 | + private MenuItem embedTexturesItem; |
---|
| 6397 | + private MenuItem deEmbedTexturesItem; |
---|
5175 | 6398 | |
---|
5176 | 6399 | private MenuItem particleItem; |
---|
5177 | 6400 | private MenuItem ragdollItem; |
---|
.. | .. |
---|
5210 | 6433 | private MenuItem doubleItem; |
---|
5211 | 6434 | private MenuItem tripleItem; |
---|
5212 | 6435 | |
---|
5213 | | - private MenuItem importGFDItem; |
---|
5214 | | - private MenuItem importVRMLX3DItem; |
---|
5215 | | - private MenuItem import3DSItem; |
---|
5216 | | - private MenuItem importOBJItem; |
---|
5217 | | - |
---|
5218 | 6436 | private MenuItem computeAOItem; |
---|
5219 | 6437 | private MenuItem recompileItem; |
---|
5220 | 6438 | private MenuItem editScriptItem; |
---|
.. | .. |
---|
5224 | 6442 | private MenuItem analyzeItem; |
---|
5225 | 6443 | private MenuItem dumpItem; |
---|
5226 | 6444 | //boolean freezemodel = false; |
---|
| 6445 | + |
---|
| 6446 | + Menu cameraMenu; |
---|
| 6447 | + MenuItem editCameraItem; |
---|
| 6448 | + MenuItem restoreCameraItem; |
---|
5227 | 6449 | } |
---|