Normand Briere
2019-08-20 564f4d12d93813b5d680fc24d4f118c3886d96ed
CameraPane.java
....@@ -18,7 +18,10 @@
1818 import javax.imageio.ImageIO;
1919 import javax.imageio.ImageWriteParam;
2020 import javax.imageio.ImageWriter;
21
+import javax.imageio.ImageReadParam;
22
+import javax.imageio.ImageReader;
2123 import javax.imageio.plugins.jpeg.JPEGImageWriteParam;
24
+import javax.imageio.stream.ImageInputStream;
2225 import javax.imageio.stream.ImageOutputStream;
2326 import javax.imageio.ImageWriteParam;
2427
....@@ -30,6 +33,7 @@
3033 import java.nio.*;
3134
3235 import gleem.linalg.Mat4f;
36
+import javax.imageio.ImageTypeSpecifier;
3337
3438 class CameraPane extends GLCanvas implements iCameraPane, Runnable, GLEventListener, ActionListener, MouseWheelListener, MouseMotionListener, MouseListener, KeyListener
3539 {
....@@ -44,6 +48,39 @@
4448 static boolean ABORTED = false;
4549
4650 static int STEP = 1;
51
+
52
+ private static BufferedImage CreateBim(byte[] bytes, int width, int height)
53
+ {
54
+ int[] pixels = new int[bytes.length/3];
55
+ for (int i=pixels.length; --i>=0;)
56
+ {
57
+ int i3 = i*3;
58
+ pixels[i] = 0xFF;
59
+ pixels[i] <<= 8;
60
+ pixels[i] |= bytes[i3+2] & 0xFF;
61
+ pixels[i] <<= 8;
62
+ pixels[i] |= bytes[i3+1] & 0xFF;
63
+ pixels[i] <<= 8;
64
+ pixels[i] |= bytes[i3] & 0xFF;
65
+ }
66
+ /*
67
+ int r=0,g=0,b=0,a=0;
68
+ for (int i=0; i<width; i++)
69
+ for (int j=0; j<height; j++)
70
+ {
71
+ int index = j*width+i;
72
+ int p = pixels[index];
73
+ a = ((p>>24) & 0xFF);
74
+ r = ((p>>16) & 0xFF);
75
+ g = ((p>>8) & 0xFF);
76
+ b = (p & 0xFF);
77
+ pixels[index] = (a<<24) | (b<<16) | (g<<8) | r;
78
+ }
79
+ /**/
80
+ BufferedImage rendImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); // ImageIO.read(infile);
81
+ rendImage.setRGB(0,0,width,height,pixels,width*(height-1),-width);
82
+ return rendImage;
83
+ }
4784
4885 /*static*/ private boolean CULLFACE = false; // true;
4986 /*static*/ boolean NEAREST = false; // true;
....@@ -60,7 +97,7 @@
6097 //boolean REDUCETEXTURE = true;
6198 boolean CACHETEXTURE = true;
6299 boolean CLEANCACHE = false; // true;
63
- boolean MIPMAP = false; // true;
100
+ boolean MIPMAP = false; // true; // never works...
64101 boolean COMPRESSTEXTURE = false;
65102 boolean KOMPACTTEXTURE = false; // true;
66103 boolean RESIZETEXTURE = false;
....@@ -73,7 +110,11 @@
73110 //private Mat4f spotlightTransform = new Mat4f();
74111 //private Mat4f spotlightInverseTransform = new Mat4f();
75112 static GLContext glcontext = null;
76
- /*static*/ com.sun.opengl.util.texture.Texture cubemap;
113
+ /*static*/ com.sun.opengl.util.texture.Texture cubemap; // Either custom or rgb
114
+ /*static*/ com.sun.opengl.util.texture.Texture cubemapcustom;
115
+ /*static*/ com.sun.opengl.util.texture.Texture cubemaprgb;
116
+ boolean transformMode;
117
+
77118 boolean reverseUP = false;
78119 static boolean frozen = false;
79120 boolean enablebackspace = false; // patch for back buffer refresh
....@@ -127,7 +168,7 @@
127168
128169
129170 // OPTIONS
130
- boolean Skinshader = true;
171
+ boolean Skinshader = false; // true;
131172 boolean cameraLight = false;
132173 boolean UVdebug = false;
133174 boolean Udebug = false;
....@@ -136,7 +177,7 @@
136177 static boolean doublesided = false; // true; // reversed normals are awful for conformance
137178 boolean anisotropy = true;
138179 boolean softshadow = true; // slower but better false;
139
- boolean opacityhalo = false;
180
+ boolean opacityhalo = false; // reverse the halo effect (e.g. glass)
140181
141182 boolean macromode = false;
142183
....@@ -150,6 +191,19 @@
150191 }
151192
152193 private File defaultDirectory = javax.swing.filechooser.FileSystemView.getFileSystemView().getDefaultDirectory();
194
+
195
+ public com.sun.opengl.util.texture.Texture LoadSkybox(String name, String ext, boolean mipmap) throws GLException
196
+ {
197
+ try
198
+ {
199
+ return LoadCubemap(getClass().getClassLoader(), name, ext, mipmap);
200
+ } catch (IOException e)
201
+ {
202
+ System.out.println("NAME = " + name);
203
+ e.printStackTrace(); // throw new RuntimeException(e);
204
+ return null;
205
+ }
206
+ }
153207
154208 void SetAsGLRenderer(boolean b)
155209 {
....@@ -169,7 +223,8 @@
169223
170224 SetCamera(cam);
171225
172
- SetLight(new Camera(new cVector(10, 10, -20)));
226
+ // Warning: not used.
227
+ SetLight(new Camera(new cVector(15, 10, -20)));
173228
174229 object = o;
175230
....@@ -335,14 +390,28 @@
335390 display.options1[2] = material.shadowbias;
336391 display.options1[3] = material.aniso;
337392 display.options1[4] = material.anisoV;
393
+// System.out.println("display.options1[0] " + display.options1[0]);
394
+// System.out.println("display.options1[1] " + display.options1[1]);
395
+// System.out.println("display.options1[2] " + display.options1[2]);
396
+// System.out.println("display.options1[3] " + display.options1[3]);
397
+// System.out.println("display.options1[4] " + display.options1[4]);
338398 display.options2[0] = material.opacity;
339399 display.options2[1] = material.diffuse;
340400 display.options2[2] = material.factor;
401
+// System.out.println("display.options2[0] " + display.options2[0]);
402
+// System.out.println("display.options2[1] " + display.options2[1]);
403
+// System.out.println("display.options2[2] " + display.options2[2]);
341404
342405 cColor.HSBtoRGB(material.color, material.modulation, 1, display.options3);
406
+// System.out.println("display.options3[0] " + display.options3[0]);
407
+// System.out.println("display.options3[1] " + display.options3[1]);
408
+// System.out.println("display.options3[2] " + display.options3[2]);
343409 display.options4[0] = material.cameralight/0.2f;
344410 display.options4[1] = material.subsurface;
345411 display.options4[2] = material.sheen;
412
+// System.out.println("display.options4[0] " + display.options4[0]);
413
+// System.out.println("display.options4[1] " + display.options4[1]);
414
+// System.out.println("display.options4[2] " + display.options4[2]);
346415
347416 // if (display.CURRENTANTIALIAS > 0)
348417 // display.options3[3] /= 4;
....@@ -1433,6 +1502,8 @@
14331502 gl.glVertex3f((float) pv.x, (float) pv.y, (float) pv.z);
14341503 }
14351504
1505
+ float[] colorV = new float[4];
1506
+
14361507 void SetColor(Object3D obj, Vertex p0)
14371508 {
14381509 CameraPane display = this;
....@@ -1500,8 +1571,6 @@
15001571 {
15011572 return;
15021573 }
1503
-
1504
- float[] colorV = new float[3];
15051574
15061575 if (false) // marked)
15071576 {
....@@ -1750,7 +1819,7 @@
17501819
17511820 display.modelParams7[0] = 0;
17521821 display.modelParams7[1] = 1000;
1753
- display.modelParams7[2] = 0;
1822
+ display.modelParams7[2] = material.parallax;
17541823 display.modelParams7[3] = 0;
17551824
17561825 //display.modelParams6[0] = 100; // criss de bug de bump
....@@ -1983,9 +2052,9 @@
19832052 switch(viewcode)
19842053 {
19852054 case 0: return "main";
1986
- case 1: return "one";
1987
- case 2: return "two";
1988
- case 3: return "three";
2055
+ case 1: return "Red";
2056
+ case 2: return "Green";
2057
+ case 3: return "Blue";
19892058 case 4: return "light";
19902059 }
19912060
....@@ -2051,7 +2120,7 @@
20512120 //System.err.println("Oeil on");
20522121 OEIL = true;
20532122 if ((TRACK || SHADOWTRACK) && trackedobject != null && DrawMode() == SHADOW) // && !lightMode)
2054
- object.editWindow.ScreenFit(trackedobject, SHADOWTRACK && !TRACK);
2123
+ object.GetWindow().ScreenFit(trackedobject, SHADOWTRACK && !TRACK);
20552124 //pingthread.StepToTarget(true);
20562125 }
20572126
....@@ -2284,10 +2353,17 @@
22842353 HANDLES ^= true;
22852354 }
22862355
2356
+ Object3D paintFolder;
2357
+
22872358 void TogglePaint()
22882359 {
22892360 PAINTMODE ^= true;
22902361 paintcount = 0;
2362
+
2363
+ if (PAINTMODE)
2364
+ {
2365
+ paintFolder = GetFolder();
2366
+ }
22912367 }
22922368
22932369 void SwapCamera(int a, int b)
....@@ -2384,6 +2460,21 @@
23842460 return currentGL;
23852461 }
23862462
2463
+ static private BufferedImage CreateBim(TextureData texturedata)
2464
+ {
2465
+ Grafreed.Assert(texturedata != null);
2466
+
2467
+ int width = texturedata.getWidth();
2468
+ int height = texturedata.getHeight();
2469
+
2470
+ Buffer buffer = texturedata.getBuffer();
2471
+ ByteBuffer bytebuf = (ByteBuffer)buffer;
2472
+
2473
+ byte[] bytes = bytebuf.array();
2474
+
2475
+ return CreateBim(bytes, width, height);
2476
+ }
2477
+
23872478 /**/
23882479 class CacheTexture
23892480 {
....@@ -2392,28 +2483,31 @@
23922483
23932484 int resolution;
23942485
2395
- CacheTexture(com.sun.opengl.util.texture.Texture tex, int res)
2486
+ CacheTexture(com.sun.opengl.util.texture.TextureData texdata, int res)
23962487 {
2397
- texture = tex;
2488
+ texture = com.sun.opengl.util.texture.TextureIO.newTexture(texdata);
2489
+ texturedata = texdata;
23982490 resolution = res;
23992491 }
24002492 }
24012493 /**/
24022494
24032495 // TEXTURE static Texture texture;
2404
- static public java.util.Hashtable<String, CacheTexture/*com.sun.opengl.util.texture.Texture*/> textures
2405
- = new java.util.Hashtable<String, CacheTexture/*com.sun.opengl.util.texture.Texture*/>();
2406
- static public java.util.Hashtable<String, String> usedtextures = new java.util.Hashtable<String, String>();
2496
+ static public Hashtable<cTexture, CacheTexture> texturepigment = new Hashtable<cTexture, CacheTexture>();
2497
+ static public Hashtable<cTexture, CacheTexture> texturebump = new Hashtable<cTexture, CacheTexture>();
2498
+ static public Hashtable<byte[], CacheTexture> bimtextures = new Hashtable<byte[], CacheTexture>();
2499
+ static public java.util.HashSet<cTexture> usedtextures = new java.util.HashSet<cTexture>();
2500
+
24072501 int pigmentdepth = 0;
24082502 public com.sun.opengl.util.texture.Texture[] pigmentstack = new com.sun.opengl.util.texture.Texture[65536];
24092503 int bumpdepth = 0;
24102504 public com.sun.opengl.util.texture.Texture[] bumpstack = new com.sun.opengl.util.texture.Texture[65536];
24112505 //public static String DEFAULT_TEXTURE = "DEFAULT_TEXTURE";
24122506 public static cTexture DEFAULT_TEXTURES = new cTexture("DEFAULT_TEXTURE" + ":" + "DEFAULT_TEXTURE_BUMP");
2413
- public static String NOISE_TEXTURE = "WHITE_NOISE";
2507
+ public static cTexture NOISE_TEXTURE = new cTexture("WHITE_NOISE:");
24142508 // public static cTexture IMMORTAL_TEXTURE = new cTexture("IMMORTAL");
24152509
2416
- com.sun.opengl.util.texture.Texture GetResourceTexture(String name, boolean bump)
2510
+ com.sun.opengl.util.texture.TextureData GetResourceTexture(String name, boolean bump)
24172511 {
24182512 TextureData texturedata = null;
24192513
....@@ -2423,7 +2517,7 @@
24232517 com.sun.opengl.util.texture.TextureIO.newTextureData(
24242518 getClass().getClassLoader().getResourceAsStream(name),
24252519 true,
2426
- com.sun.opengl.util.texture.TextureIO.PNG);
2520
+ GetFormat(name)); // com.sun.opengl.util.texture.TextureIO.PNG);
24272521 } catch (java.io.IOException e)
24282522 {
24292523 throw new javax.media.opengl.GLException(e);
....@@ -2432,13 +2526,34 @@
24322526 if (bump)
24332527 texturedata = ConvertBump(texturedata, false);
24342528
2435
- com.sun.opengl.util.texture.Texture texture =
2436
- com.sun.opengl.util.texture.TextureIO.newTexture(texturedata);
2529
+// com.sun.opengl.util.texture.Texture texture =
2530
+// com.sun.opengl.util.texture.TextureIO.newTexture(texturedata);
24372531
2438
- texture.setTexParameteri(javax.media.opengl.GL.GL_TEXTURE_WRAP_S, javax.media.opengl.GL.GL_REPEAT);
2439
- texture.setTexParameteri(javax.media.opengl.GL.GL_TEXTURE_WRAP_T, javax.media.opengl.GL.GL_REPEAT);
2532
+ //texture.setTexParameteri(javax.media.opengl.GL.GL_TEXTURE_WRAP_S, javax.media.opengl.GL.GL_REPEAT);
2533
+ //texture.setTexParameteri(javax.media.opengl.GL.GL_TEXTURE_WRAP_T, javax.media.opengl.GL.GL_REPEAT);
24402534
2441
- return texture;
2535
+ return texturedata;
2536
+ }
2537
+
2538
+ com.sun.opengl.util.texture.TextureData GetBimTexture(BufferedImage bim, boolean bump)
2539
+ {
2540
+ TextureData texturedata = null;
2541
+
2542
+ try
2543
+ {
2544
+ texturedata =
2545
+ com.sun.opengl.util.texture.TextureIO.newTextureData(
2546
+ bim,
2547
+ true);
2548
+ } catch (Exception e)
2549
+ {
2550
+ throw new javax.media.opengl.GLException(e);
2551
+ }
2552
+
2553
+ if (bump)
2554
+ texturedata = ConvertBump(texturedata, false);
2555
+
2556
+ return texturedata;
24422557 }
24432558
24442559 boolean HUESMOOTH = true; // wrap around bug... true;
....@@ -3511,6 +3626,8 @@
35113626
35123627 System.out.println("LOADING TEXTURE : " + name);
35133628
3629
+ Object x = texturedata.getMipmapData(); // .getBuffer();
3630
+
35143631 //
35153632 if (false) // compressbit > 0)
35163633 {
....@@ -7909,7 +8026,7 @@
79098026 String pigment = Object3D.GetPigment(tex);
79108027 String bump = Object3D.GetBump(tex);
79118028
7912
- if (!tex.equals(":") && !tex.equals(DEFAULT_TEXTURES))
8029
+ //if (!tex.equals(":") && !tex.equals(DEFAULT_TEXTURES))
79138030 {
79148031 // System.out.print("RELEASE +++++++++++++++ pigment = " + pigment);
79158032 // System.out.println("; bump = " + bump);
....@@ -7924,8 +8041,8 @@
79248041 pigment = null;
79258042 }
79268043
7927
- ReleaseTexture(bump, true);
7928
- ReleaseTexture(pigment, false);
8044
+ ReleaseTexture(tex, true);
8045
+ ReleaseTexture(tex, false);
79298046 }
79308047
79318048 public void ReleasePigmentTexture(cTexture tex) // INTERFACE
....@@ -7943,7 +8060,7 @@
79438060
79448061 String pigment = Object3D.GetPigment(tex);
79458062
7946
- if (!tex.equals(":") && !tex.equals(DEFAULT_TEXTURES))
8063
+ //if (!tex.equals(":") && !tex.equals(DEFAULT_TEXTURES))
79478064 {
79488065 // System.out.print("RELEASE +++++++++++++++ pigment = " + pigment);
79498066 // System.out.println("; bump = " + bump);
....@@ -7954,7 +8071,7 @@
79548071 pigment = null;
79558072 }
79568073
7957
- ReleaseTexture(pigment, false);
8074
+ ReleaseTexture(tex, false);
79588075 }
79598076
79608077 public void ReleaseBumpTexture(cTexture tex) // INTERFACE
....@@ -7972,7 +8089,7 @@
79728089
79738090 String bump = Object3D.GetBump(tex);
79748091
7975
- if (!tex.equals(":") && !tex.equals(DEFAULT_TEXTURES))
8092
+ //if (!tex.equals(":") && !tex.equals(DEFAULT_TEXTURES))
79768093 {
79778094 // System.out.print("RELEASE +++++++++++++++ pigment = " + pigment);
79788095 // System.out.println("; bump = " + bump);
....@@ -7983,10 +8100,10 @@
79838100 bump = null;
79848101 }
79858102
7986
- ReleaseTexture(bump, true);
8103
+ ReleaseTexture(tex, true);
79878104 }
79888105
7989
- void ReleaseTexture(String tex, boolean bump)
8106
+ void ReleaseTexture(cTexture tex, boolean bump)
79908107 {
79918108 if (// DrawMode() != 0 || /*tex == null ||*/
79928109 ambientOcclusion ) // || !textureon)
....@@ -7997,7 +8114,7 @@
79978114 CacheTexture/*com.sun.opengl.util.texture.Texture*/ texture = null;
79988115
79998116 if (tex != null)
8000
- texture = textures.get(tex);
8117
+ texture = bump ? texturebump.get(tex) : texturepigment.get(tex);
80018118
80028119 // //assert( texture != null );
80038120 // if (texture == null)
....@@ -8091,47 +8208,50 @@
80918208
80928209 /*boolean*/ public void BindTextures(cTexture tex, int resolution) throws Exception // INTERFACE
80938210 {
8094
- if (// DrawMode() != 0 || /*tex == null ||*/
8095
- ambientOcclusion ) // || !textureon)
8096
- {
8097
- return; // false;
8098
- }
8099
-
8100
- if (tex == null)
8101
- {
8102
- BindTexture(null,false,resolution);
8103
- BindTexture(null,true,resolution);
8104
- return;
8105
- }
8211
+// if (// DrawMode() != 0 || /*tex == null ||*/
8212
+// ambientOcclusion ) // || !textureon)
8213
+// {
8214
+// return; // false;
8215
+// }
8216
+//
8217
+// if (tex == null)
8218
+// {
8219
+// BindTexture(null,false,resolution);
8220
+// BindTexture(null,true,resolution);
8221
+// return;
8222
+// }
8223
+//
8224
+// String pigment = Object3D.GetPigment(tex);
8225
+// String bump = Object3D.GetBump(tex);
8226
+//
8227
+// usedtextures.add(pigment);
8228
+// usedtextures.add(bump);
8229
+//
8230
+// //if (!tex.equals(":") && !tex.equals(DEFAULT_TEXTURES))
8231
+// {
8232
+// // System.out.print("BIND +++++++++++++++ pigment = " + pigment);
8233
+// // System.out.println("; bump = " + bump);
8234
+// }
8235
+//
8236
+// if (bump.equals(""))
8237
+// {
8238
+// bump = null;
8239
+// }
8240
+// if (pigment.equals(""))
8241
+// {
8242
+// pigment = null;
8243
+// }
8244
+//
8245
+// GetGL().glActiveTexture(GetGL().GL_TEXTURE0);
8246
+// BindTexture(pigment, false, resolution);
8247
+// GetGL().glActiveTexture(GetGL().GL_TEXTURE2);
8248
+// BindTexture(bump, true, resolution);
8249
+// GetGL().glActiveTexture(GetGL().GL_TEXTURE0);
8250
+//
8251
+// return; // true;
81068252
8107
- String pigment = Object3D.GetPigment(tex);
8108
- String bump = Object3D.GetBump(tex);
8109
-
8110
- usedtextures.put(pigment, pigment);
8111
- usedtextures.put(bump, bump);
8112
-
8113
- if (!tex.equals(":") && !tex.equals(DEFAULT_TEXTURES))
8114
- {
8115
- // System.out.print("BIND +++++++++++++++ pigment = " + pigment);
8116
- // System.out.println("; bump = " + bump);
8117
- }
8118
-
8119
- if (bump.equals(""))
8120
- {
8121
- bump = null;
8122
- }
8123
- if (pigment.equals(""))
8124
- {
8125
- pigment = null;
8126
- }
8127
-
8128
- GetGL().glActiveTexture(GetGL().GL_TEXTURE0);
8129
- BindTexture(pigment, false, resolution);
8130
- GetGL().glActiveTexture(GetGL().GL_TEXTURE2);
8131
- BindTexture(bump, true, resolution);
8132
- GetGL().glActiveTexture(GetGL().GL_TEXTURE0);
8133
-
8134
- return; // true;
8253
+ BindPigmentTexture(tex, resolution);
8254
+ BindBumpTexture(tex, resolution);
81358255 }
81368256
81378257 /*boolean*/ public void BindPigmentTexture(cTexture tex, int resolution) throws Exception // INTERFACE
....@@ -8150,9 +8270,9 @@
81508270
81518271 String pigment = Object3D.GetPigment(tex);
81528272
8153
- usedtextures.put(pigment, pigment);
8273
+ usedtextures.add(tex);
81548274
8155
- if (!tex.equals(":") && !tex.equals(DEFAULT_TEXTURES))
8275
+ //if (!tex.equals(":") && !tex.equals(DEFAULT_TEXTURES))
81568276 {
81578277 // System.out.print("BIND +++++++++++++++ pigment = " + pigment);
81588278 // System.out.println("; bump = " + bump);
....@@ -8164,7 +8284,7 @@
81648284 }
81658285
81668286 GetGL().glActiveTexture(GetGL().GL_TEXTURE0);
8167
- BindTexture(pigment, false, resolution);
8287
+ BindTexture(tex, false, resolution);
81688288 }
81698289
81708290 /*boolean*/ public void BindBumpTexture(cTexture tex, int resolution) throws Exception // INTERFACE
....@@ -8183,9 +8303,9 @@
81838303
81848304 String bump = Object3D.GetBump(tex);
81858305
8186
- usedtextures.put(bump, bump);
8306
+ usedtextures.add(tex);
81878307
8188
- if (!tex.equals(":") && !tex.equals(DEFAULT_TEXTURES))
8308
+ //if (!tex.equals(":") && !tex.equals(DEFAULT_TEXTURES))
81898309 {
81908310 // System.out.print("BIND +++++++++++++++ pigment = " + pigment);
81918311 // System.out.println("; bump = " + bump);
....@@ -8197,7 +8317,7 @@
81978317 }
81988318
81998319 GetGL().glActiveTexture(GetGL().GL_TEXTURE2);
8200
- BindTexture(bump, true, resolution);
8320
+ BindTexture(tex, true, resolution);
82018321 GetGL().glActiveTexture(GetGL().GL_TEXTURE0);
82028322 }
82038323
....@@ -8221,13 +8341,19 @@
82218341 return fileExists;
82228342 }
82238343
8224
- CacheTexture GetCacheTexture(String tex, boolean bump, int resolution) throws Exception
8344
+ CacheTexture GetCacheTexture(cTexture tex, boolean bump, int resolution) throws Exception
82258345 {
8226
- CacheTexture/*com.sun.opengl.util.texture.Texture*/ texture = null;
8346
+ CacheTexture texturecache = null;
82278347
82288348 if (tex != null)
82298349 {
8230
- String texname = tex;
8350
+ String texname = bump ? Object3D.GetBump(tex) : Object3D.GetPigment(tex);
8351
+ byte[] texdata = bump ? tex.bumpdata : tex.pigmentdata;
8352
+
8353
+ if (texname.equals("") && texdata == null)
8354
+ {
8355
+ return null;
8356
+ }
82318357
82328358 String fallbackTextureName = defaultDirectory + "/Textures/" + texname;
82338359
....@@ -8237,19 +8363,46 @@
82378363 // else
82388364 // if (!texname.startsWith("/"))
82398365 // texname = "/Users/nbriere/Textures/" + texname;
8240
- if (!FileExists(tex))
8366
+ if (!FileExists(texname) && !texname.startsWith("@"))
82418367 {
82428368 texname = fallbackTextureName;
82438369 }
82448370
82458371 if (CACHETEXTURE)
8246
- texture = textures.get(texname); // TEXTURE CACHE
8247
-
8248
- TextureData texturedata = null;
8249
-
8250
- if (texture == null || texture.resolution < resolution)
82518372 {
8252
- if (tex.equals("DEFAULT_TEXTURE")) // ||*/ tex.equals(""))
8373
+ if (texdata == null)
8374
+ texturecache = bump ? texturebump.get(tex) : texturepigment.get(tex);
8375
+ else
8376
+ texturecache = bimtextures.get(texdata);
8377
+ }
8378
+
8379
+ if (texturecache == null || texturecache.resolution != -1 && texturecache.resolution < resolution)
8380
+ {
8381
+ TextureData texturedata = null;
8382
+
8383
+ if (texdata != null && textureon)
8384
+ {
8385
+ BufferedImage bim; // = new BufferedImage(bump?tex.bw:tex.pw, bump?tex.bh:tex.ph, BufferedImage.TYPE_INT_RGB);
8386
+
8387
+ try
8388
+ {
8389
+ bim = DecompressJPEG(texdata, bump?tex.bw:tex.pw, bump?tex.bh:tex.ph);
8390
+ }
8391
+ catch (Exception e)
8392
+ {
8393
+ bim = CreateBim(texdata, bump?tex.bw:tex.pw, bump?tex.bh:tex.ph);
8394
+ }
8395
+
8396
+ texturecache = new CacheTexture(GetBimTexture(bim, bump), -1);
8397
+ bimtextures.put(texdata, texturecache);
8398
+
8399
+ //BufferedImage bim3 = new BufferedImage(bump?tex.bw:tex.pw, bump?tex.bh:tex.ph, BufferedImage.TYPE_INT_RGB);
8400
+
8401
+ //Object bim2 = CreateBim(texturecache.texturedata);
8402
+ //bim2 = bim;
8403
+ }
8404
+ else
8405
+ if (texname.endsWith("DEFAULT_TEXTURE")) // ||*/ tex.equals(""))
82538406 {
82548407 assert(!bump);
82558408 // if (bump)
....@@ -8260,19 +8413,23 @@
82608413 // }
82618414 // else
82628415 // {
8263
- texture = textures.get(tex);
8264
- if (texture == null)
8416
+ // texturecache = textures.get(texname); // suspicious
8417
+ if (texturecache == null)
82658418 {
8266
- texture = new CacheTexture(GetResourceTexture("default.png", bump),resolution);
8419
+ texturecache = new CacheTexture(GetResourceTexture("default.png", bump),resolution);
82678420 }
8421
+ else
8422
+ new Exception().printStackTrace();
82688423 // }
82698424 } else
8270
- if (tex.equals("DEFAULT_TEXTURE_BUMP")) // ||*/ tex.equals(""))
8425
+ if (texname.endsWith("DEFAULT_TEXTURE_BUMP")) // ||*/ tex.equals(""))
82718426 {
82728427 assert(bump);
8273
- texture = textures.get(tex);
8274
- if (texture == null)
8275
- texture = new CacheTexture(GetResourceTexture("default.png", bump),resolution);
8428
+ // texturecache = textures.get(texname); // suspicious
8429
+ if (texturecache == null)
8430
+ texturecache = new CacheTexture(GetResourceTexture("default.png", bump),resolution);
8431
+ else
8432
+ new Exception().printStackTrace();
82768433 } else
82778434 {
82788435 //if (tex.equals("IMMORTAL"))
....@@ -8280,11 +8437,22 @@
82808437 // texture = GetResourceTexture("default.png");
82818438 //} else
82828439 //{
8283
- if (tex.equals("WHITE_NOISE"))
8440
+ if (texname.endsWith("WHITE_NOISE"))
82848441 {
8285
- texture = textures.get(tex);
8286
- if (texture == null)
8287
- texture = new CacheTexture(GetResourceTexture("whitenoise.png", bump),resolution);
8442
+ // texturecache = textures.get(texname); // suspicious
8443
+ if (texturecache == null)
8444
+ texturecache = new CacheTexture(GetResourceTexture("whitenoise.png", bump),resolution);
8445
+ else
8446
+ new Exception().printStackTrace();
8447
+ } else
8448
+ {
8449
+ if (texname.startsWith("@"))
8450
+ {
8451
+ // texturecache = textures.get(texname); // suspicious
8452
+ if (texturecache == null)
8453
+ texturecache = new CacheTexture(GetResourceTexture(texname.substring(1), bump),resolution);
8454
+ else
8455
+ new Exception().printStackTrace();
82888456 } else
82898457 {
82908458 if (textureon)
....@@ -8343,19 +8511,20 @@
83438511 if (texturedata == null)
83448512 throw new Exception();
83458513
8346
- texture = new CacheTexture(com.sun.opengl.util.texture.TextureIO.newTexture(texturedata),resolution);
8514
+ texturecache = new CacheTexture(texturedata,resolution);
83478515 //texture = GetTexture(tex, bump);
83488516 }
8517
+ }
83498518 }
83508519 //}
83518520 }
83528521
8353
- if (/*CACHETEXTURE &&*/ texture != null && textureon)
8522
+ if (texdata == null && /*CACHETEXTURE &&*/ texturecache != null && textureon)
83548523 {
83558524 //return false;
83568525
83578526 // System.out.println("CACHE +++++++++++++++ TEXTURE : " + texname + " (" + texture.getEstimatedMemorySize() + ")");
8358
- if (texturedata != null && (texname.endsWith(".jpg") || texname.endsWith(".JPG")))
8527
+ if (texturedata != null && texname.toLowerCase().endsWith(".jpg"))
83598528 {
83608529 // String ext = "_highres";
83618530 // if (REDUCETEXTURE)
....@@ -8372,52 +8541,17 @@
83728541 File cachefile = new File(texname.substring(0, texname.length()-4)+ext+".jpg");
83738542 if (!cachefile.exists())
83748543 {
8375
- // cache to disk
8376
- Buffer buffer = texturedata.getBuffer(); // getMipmapData();
8377
- //buffers[0].
8378
-
8379
- ByteBuffer bytebuf = (ByteBuffer)buffer; // ).asIntBuffer();
8380
- int[] pixels = new int[bytebuf.capacity()/3];
8381
-
8382
- // squared size heuristic...
8383
- if ((int)Math.sqrt(pixels.length) == Math.sqrt(pixels.length))
8544
+ //if (texturedata.getWidth() == texturedata.getHeight())
83848545 {
8385
- for (int i=pixels.length; --i>=0;)
8386
- {
8387
- int i3 = i*3;
8388
- pixels[i] = 0xFF;
8389
- pixels[i] <<= 8;
8390
- pixels[i] |= bytebuf.get(i3+2) & 0xFF;
8391
- pixels[i] <<= 8;
8392
- pixels[i] |= bytebuf.get(i3+1) & 0xFF;
8393
- pixels[i] <<= 8;
8394
- pixels[i] |= bytebuf.get(i3) & 0xFF;
8395
- }
8396
-
8397
- /*
8398
- int r=0,g=0,b=0,a=0;
8399
- for (int i=0; i<width; i++)
8400
- for (int j=0; j<height; j++)
8401
- {
8402
- int index = j*width+i;
8403
- int p = pixels[index];
8404
- a = ((p>>24) & 0xFF);
8405
- r = ((p>>16) & 0xFF);
8406
- g = ((p>>8) & 0xFF);
8407
- b = (p & 0xFF);
8408
- pixels[index] = (a<<24) | (b<<16) | (g<<8) | r;
8409
- }
8410
- /**/
8411
- int width = (int)Math.sqrt(pixels.length); // squared
8412
- int height = width;
8413
- BufferedImage rendImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); // ImageIO.read(infile);
8414
- rendImage.setRGB(0,0,width,height,pixels,width*(height-1),-width);
8546
+ BufferedImage rendImage = CreateBim(texturedata);
8547
+
84158548 ImageWriter writer = null;
84168549 Iterator iter = ImageIO.getImageWritersByFormatName("jpg");
84178550 if (iter.hasNext()) {
84188551 writer = (ImageWriter)iter.next();
84198552 }
8420
- float compressionQuality = 0.9f;
8553
+
8554
+ float compressionQuality = 0.85f;
84218555 try
84228556 {
84238557 ImageOutputStream ios = ImageIO.createImageOutputStream(cachefile);
....@@ -8434,18 +8568,20 @@
84348568 }
84358569 }
84368570 }
8437
-
8571
+
8572
+ Hashtable<cTexture, CacheTexture> textures = bump ? texturebump : texturepigment;
8573
+
84388574 //System.out.println("Texture = " + tex);
8439
- if (textures.containsKey(texname))
8575
+ if (textures.containsKey(tex))
84408576 {
8441
- CacheTexture thetex = textures.get(texname);
8577
+ CacheTexture thetex = textures.get(tex);
84428578 thetex.texture.disable();
84438579 thetex.texture.dispose();
8444
- textures.remove(texname);
8580
+ textures.remove(tex);
84458581 }
84468582
8447
- texture.texturedata = texturedata;
8448
- textures.put(texname, texture);
8583
+ //texture.texturedata = texturedata;
8584
+ textures.put(tex, texturecache);
84498585
84508586 // newtex = true;
84518587 }
....@@ -8461,10 +8597,44 @@
84618597 }
84628598 }
84638599
8464
- return texture;
8600
+ return texturecache;
84658601 }
84668602
8467
- com.sun.opengl.util.texture.Texture GetTexture(String tex, boolean bump, int resolution) throws Exception
8603
+ static void EmbedTextures(cTexture tex)
8604
+ {
8605
+ if (tex.pigmentdata == null)
8606
+ {
8607
+ //String texname = Object3D.GetPigment(tex);
8608
+
8609
+ CacheTexture texturecache = texturepigment.get(tex);
8610
+
8611
+ if (texturecache != null)
8612
+ {
8613
+ tex.pw = texturecache.texturedata.getWidth();
8614
+ tex.ph = texturecache.texturedata.getHeight();
8615
+ tex.pigmentdata = //CompressJPEG(CreateBim
8616
+ ((ByteBuffer)texturecache.texturedata.getBuffer()).array()
8617
+ ;
8618
+ //, tex.pw, tex.ph), 0.5f);
8619
+ }
8620
+ }
8621
+
8622
+ if (tex.bumpdata == null)
8623
+ {
8624
+ //String texname = Object3D.GetBump(tex);
8625
+
8626
+ CacheTexture texturecache = texturebump.get(tex);
8627
+
8628
+ if (texturecache != null)
8629
+ {
8630
+ tex.bw = texturecache.texturedata.getWidth();
8631
+ tex.bh = texturecache.texturedata.getHeight();
8632
+ tex.bumpdata = CompressJPEG(CreateBim(((ByteBuffer)texturecache.texturedata.getBuffer()).array(), tex.bw, tex.bh), 0.5f);
8633
+ }
8634
+ }
8635
+ }
8636
+
8637
+ com.sun.opengl.util.texture.Texture GetTexture(cTexture tex, boolean bump, int resolution) throws Exception
84688638 {
84698639 CacheTexture texture = GetCacheTexture(tex, bump, resolution);
84708640
....@@ -8482,21 +8652,21 @@
84828652 return texture!=null?texture.texture:null;
84838653 }
84848654
8485
- public com.sun.opengl.util.texture.TextureData GetTextureData(String tex, boolean bump, int resolution) throws Exception
8655
+ public com.sun.opengl.util.texture.TextureData GetTextureData(cTexture tex, boolean bump, int resolution) throws Exception
84868656 {
84878657 CacheTexture texture = GetCacheTexture(tex, bump, resolution);
84888658
84898659 return texture!=null?texture.texturedata:null;
84908660 }
84918661
8492
- boolean BindTexture(String tex, boolean bump, int resolution) throws Exception
8662
+ boolean BindTexture(cTexture tex, boolean bump, int resolution) throws Exception
84938663 {
84948664 if (/*tex == null ||*/ ambientOcclusion ) // || !textureon)
84958665 {
84968666 return false;
84978667 }
84988668
8499
- boolean newtex = false;
8669
+ //boolean newtex = false;
85008670
85018671 com.sun.opengl.util.texture.Texture texture = GetTexture(tex, bump, resolution);
85028672
....@@ -8528,9 +8698,75 @@
85288698 texture.setTexParameteri(GetGL().GL_TEXTURE_WRAP_S, GetGL().GL_REPEAT);
85298699 texture.setTexParameteri(GetGL().GL_TEXTURE_WRAP_T, GetGL().GL_REPEAT);
85308700
8531
- return newtex;
8701
+ return true; // Warning: not used.
85328702 }
85338703
8704
+ public static byte[] CompressJPEG(BufferedImage image, float quality)
8705
+ {
8706
+ try
8707
+ {
8708
+ ByteArrayOutputStream baos = new ByteArrayOutputStream();
8709
+ Iterator<ImageWriter> writers = ImageIO.getImageWritersByFormatName("jpg");
8710
+ ImageWriter writer = writers.next();
8711
+
8712
+ ImageWriteParam param = writer.getDefaultWriteParam();
8713
+ param.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);
8714
+ param.setCompressionQuality(quality);
8715
+
8716
+ ImageOutputStream ios = ImageIO.createImageOutputStream(baos);
8717
+ writer.setOutput(ios);
8718
+ writer.write(null, new IIOImage(image, null, null), param);
8719
+
8720
+ byte[] data = baos.toByteArray();
8721
+ writer.dispose();
8722
+ return data;
8723
+ }
8724
+ catch (Exception e)
8725
+ {
8726
+ e.printStackTrace();
8727
+ return null;
8728
+ }
8729
+ }
8730
+
8731
+ public static BufferedImage DecompressJPEG(byte[] image, int w, int h) throws IOException
8732
+ {
8733
+ ByteArrayInputStream baos = new ByteArrayInputStream(image);
8734
+ Iterator<ImageReader> writers = ImageIO.getImageReadersByFormatName("jpg");
8735
+ ImageReader reader = writers.next();
8736
+
8737
+ BufferedImage bim = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
8738
+
8739
+ ImageReadParam param = reader.getDefaultReadParam();
8740
+ param.setDestination(bim);
8741
+ //param.setDestinationType(ImageTypeSpecifier.createFromBufferedImageType(BufferedImage.TYPE_INT_RGB));
8742
+
8743
+ ImageInputStream ios = ImageIO.createImageInputStream(baos);
8744
+ reader.setInput(ios);
8745
+ BufferedImage bim2 = reader.read(0, param);
8746
+ reader.dispose();
8747
+
8748
+// WritableRaster raster = bim2.getRaster();
8749
+// DataBufferByte data = (DataBufferByte) raster.getDataBuffer();
8750
+// byte[] bytes = data.getData();
8751
+//
8752
+// int[] pixels = new int[bytes.length/3];
8753
+// for (int i=pixels.length; --i>=0;)
8754
+// {
8755
+// int i3 = i*3;
8756
+// pixels[i] = 0xFF;
8757
+// pixels[i] <<= 8;
8758
+// pixels[i] |= bytes[i3+2] & 0xFF;
8759
+// pixels[i] <<= 8;
8760
+// pixels[i] |= bytes[i3+1] & 0xFF;
8761
+// pixels[i] <<= 8;
8762
+// pixels[i] |= bytes[i3] & 0xFF;
8763
+// }
8764
+//
8765
+// bim.setRGB(0,0,w,h, pixels, w*(h-1),-w);
8766
+
8767
+ return bim;
8768
+ }
8769
+
85348770 ShadowBuffer shadowPBuf;
85358771 AntialiasBuffer antialiasPBuf;
85368772 int MAXSTACK;
....@@ -8547,10 +8783,12 @@
85478783
85488784 gl.glGetIntegerv(GL.GL_MAX_TEXTURE_STACK_DEPTH, temp, 0);
85498785 MAXSTACK = temp[0];
8550
- System.out.println("GL_MAX_TEXTURE_STACK_DEPTH = " + MAXSTACK);
8786
+ if (Globals.DEBUG)
8787
+ System.out.println("GL_MAX_TEXTURE_STACK_DEPTH = " + MAXSTACK);
85518788 gl.glGetIntegerv(GL.GL_MAX_MODELVIEW_STACK_DEPTH, temp, 0);
85528789 MAXSTACK = temp[0];
8553
- System.out.println("GL_MAX_MODELVIEW_STACK_DEPTH = " + MAXSTACK);
8790
+ if (Globals.DEBUG)
8791
+ System.out.println("GL_MAX_MODELVIEW_STACK_DEPTH = " + MAXSTACK);
85548792
85558793 // Use debug pipeline
85568794 //drawable.setGL(new DebugGL(gl)); //
....@@ -8558,7 +8796,8 @@
85588796 gl = drawable.getGL(); //
85598797
85608798 GL gl3 = getGL();
8561
- System.out.println("INIT GL IS: " + gl.getClass().getName());
8799
+ if (Globals.DEBUG)
8800
+ System.out.println("INIT GL IS: " + gl.getClass().getName());
85628801
85638802
85648803 //float pos[] = { 100, 100, 100, 0 };
....@@ -8723,7 +8962,7 @@
87238962
87248963 if (cubemap == null)
87258964 {
8726
- LoadEnvy(5);
8965
+ //LoadEnvy(1);
87278966 }
87288967
87298968 //cubemap.enable();
....@@ -8999,6 +9238,8 @@
89999238
90009239 void LoadEnvy(int which)
90019240 {
9241
+ assert(false);
9242
+
90029243 String name;
90039244 String ext;
90049245
....@@ -9010,37 +9251,58 @@
90109251 cubemap = null;
90119252 return;
90129253 case 1:
9013
- name = "cubemaps/box_";
9014
- ext = "png";
9254
+ name = "cubemaps/rgb/";
9255
+ ext = "jpg";
90159256 reverseUP = false;
90169257 break;
90179258 case 2:
9018
- name = "cubemaps/uffizi_";
9019
- ext = "png";
9020
- break; // reverseUP = true; break;
9259
+ name = "cubemaps/uffizi/";
9260
+ ext = "jpg";
9261
+ reverseUP = false;
9262
+ break;
90219263 case 3:
9022
- name = "cubemaps/CloudyHills_";
9023
- ext = "tga";
9264
+ name = "cubemaps/CloudyHills/";
9265
+ ext = "jpg";
90249266 reverseUP = false;
90259267 break;
90269268 case 4:
9027
- name = "cubemaps/cornell_";
9269
+ name = "cubemaps/cornell/";
90289270 ext = "png";
90299271 reverseUP = false;
90309272 break;
9273
+ case 5:
9274
+ name = "cubemaps/skycube/";
9275
+ ext = "jpg";
9276
+ reverseUP = false;
9277
+ break;
9278
+ case 6:
9279
+ name = "cubemaps/SaintLazarusChurch3/";
9280
+ ext = "jpg";
9281
+ reverseUP = false;
9282
+ break;
9283
+ case 7:
9284
+ name = "cubemaps/Sodermalmsallen/";
9285
+ ext = "jpg";
9286
+ reverseUP = false;
9287
+ break;
9288
+ case 8:
9289
+ name = "cubemaps/Sodermalmsallen2/";
9290
+ ext = "jpg";
9291
+ reverseUP = false;
9292
+ break;
9293
+ case 9:
9294
+ name = "cubemaps/UnionSquare/";
9295
+ ext = "jpg";
9296
+ reverseUP = false;
9297
+ break;
90319298 default:
9032
- name = "cubemaps/rgb_";
9033
- ext = "png"; /*mipmap = true;*/ reverseUP = false;
9299
+ name = "cubemaps/box/";
9300
+ ext = "png"; /*mipmap = true;*/
9301
+ reverseUP = false;
90349302 break;
90359303 }
9036
-
9037
- try
9038
- {
9039
- cubemap = LoadCubemap(getClass().getClassLoader(), name, ext, mipmap);
9040
- } catch (IOException e)
9041
- {
9042
- throw new RuntimeException(e);
9043
- }
9304
+
9305
+ LoadSkybox(name, ext, mipmap);
90449306 }
90459307
90469308 public void reshape(GLAutoDrawable drawable, int x, int y, int width, int height)
....@@ -9072,8 +9334,12 @@
90729334 static double[] model = new double[16];
90739335 double[] camera2light = new double[16];
90749336 double[] light2camera = new double[16];
9075
- int newenvy = -1;
9076
- boolean envyoff = true; // false;
9337
+
9338
+ //int newenvy = -1;
9339
+ //boolean envyoff = false;
9340
+
9341
+ String loadedskyboxname;
9342
+
90779343 cVector light0 = new cVector(0, 0, 0); // 1,3,2);
90789344 //float[] light0 = { 0,0,0 };
90799345 cVector dirlight = new cVector(0, 0, 1); // 1,3,2);
....@@ -9366,11 +9632,35 @@
93669632 jy8[3] = 0.5f;
93679633 }
93689634
9369
- float[] options1 = new float[]{1000, 0.00001f, 20, 0, 0}; // focus, aperture, Shadow blur, aniso, anisoV
9635
+ float[] options1 = new float[]{100, 0.00001f, 20, 0, 0}; // focus, aperture, Shadow blur, aniso, anisoV
93709636 float[] options2 = new float[]{0, 1, 0, 0}; // fog density, intensity, elevation
93719637 float[] options3 = new float[]{1, 1, 1, 0}; // fog color
93729638 float[] options4 = new float[]{1, 0, 1, 0}; // image intensity, subsurface, lightsheen
93739639
9640
+ void ResetOptions()
9641
+ {
9642
+ options1[0] = 100;
9643
+ options1[1] = 0.025f;
9644
+ options1[2] = 0.01f;
9645
+ options1[3] = 0;
9646
+ options1[4] = 0;
9647
+
9648
+ options2[0] = 0;
9649
+ options2[1] = 0.75f;
9650
+ options2[2] = 0;
9651
+ options2[3] = 0;
9652
+
9653
+ options3[0] = 1;
9654
+ options3[1] = 1;
9655
+ options3[2] = 1;
9656
+ options3[3] = 0;
9657
+
9658
+ options4[0] = 1;
9659
+ options4[1] = 0;
9660
+ options4[2] = 1;
9661
+ options4[3] = 0;
9662
+ }
9663
+
93749664 static int imagecount = 0; // movie generation
93759665
93769666 static int jitter = 0;
....@@ -9467,7 +9757,7 @@
94679757
94689758 if (renderCamera != lightCamera)
94699759 //for (int count = parentcam.GetTransformCount(); --count>=0;)
9470
- LA.matConcat(matrix, parentcam.GlobalTransform(), matrix);
9760
+ LA.matConcat(matrix, parentcam.GlobalTransformInv(), matrix);
94719761
94729762 // LA.matConcat(renderCamera.toScreen, renderCamera.toParent, matrix);
94739763
....@@ -9483,7 +9773,7 @@
94839773
94849774 if (renderCamera != lightCamera)
94859775 //for (int count = parentcam.GetTransformCount(); --count>=0;)
9486
- LA.matConcat(parentcam.GlobalTransformInv(), matrix, matrix);
9776
+ LA.matConcat(parentcam.GlobalTransform(), matrix, matrix);
94879777
94889778 // LA.matConcat(renderCamera.fromParent, renderCamera.fromScreen, matrix);
94899779
....@@ -9529,10 +9819,12 @@
95299819 rati = 1 / rati;
95309820 gl.glOrtho(-skyscale / rati, skyscale / rati, -skyscale, skyscale, 0.001, 1000);
95319821 }
9532
- assert (newenvy == -1);
9822
+
9823
+ //assert (newenvy == -1);
9824
+
95339825 gl.glDisable(GL.GL_FRAGMENT_PROGRAM_ARB);
95349826 gl.glDisable(GL.GL_VERTEX_PROGRAM_ARB);
9535
- DrawSkyBox(gl);
9827
+ DrawSkyBox(gl, (float)rati);
95369828 gl.glEnable(GL.GL_FRAGMENT_PROGRAM_ARB);
95379829 gl.glEnable(GL.GL_VERTEX_PROGRAM_ARB);
95389830 accPerspective(gl, renderCamera.shaper_fovy / ratio,
....@@ -10398,9 +10690,18 @@
1039810690 static boolean init = false;
1039910691
1040010692 double[][] matrix = LA.newMatrix();
10693
+
10694
+ // This is to refresh the UI of the material panel.
10695
+ ObjEditor patchMaterial;
1040110696
1040210697 public void display(GLAutoDrawable drawable)
1040310698 {
10699
+ if (patchMaterial.patchMaterial)
10700
+ {
10701
+ patchMaterial.patchMaterial = false;
10702
+ patchMaterial.objectPanel.setSelectedIndex(1);
10703
+ }
10704
+
1040410705 if (Grafreed.savesound && Grafreed.hassound)
1040510706 {
1040610707 Grafreed.wav.save();
....@@ -10569,7 +10870,7 @@
1056910870
1057010871 if (wait)
1057110872 {
10572
- Sleep(500);
10873
+ Sleep(200); // blocks everything
1057310874
1057410875 wait = false;
1057510876 }
....@@ -10684,7 +10985,7 @@
1068410985 // if (parentcam != renderCamera) // not a light
1068510986 if (cam != lightCamera)
1068610987 //for (int count = parentcam.GetTransformCount(); --count>=0;)
10687
- LA.matConcat(matrix, parentcam.GlobalTransform(), matrix);
10988
+ LA.matConcat(matrix, parentcam.GlobalTransformInv(), matrix);
1068810989
1068910990 for (int j = 0; j < 4; j++)
1069010991 {
....@@ -10699,7 +11000,7 @@
1069911000 // if (parentcam != renderCamera) // not a light
1070011001 if (cam != lightCamera)
1070111002 //for (int count = parentcam.GetTransformCount(); --count>=0;)
10702
- LA.matConcat(parentcam.GlobalTransformInv(), matrix, matrix);
11003
+ LA.matConcat(parentcam.GlobalTransform(), matrix, matrix);
1070311004
1070411005 //LA.matConcat(cam.fromScreen, parentcam.fromParent, matrix);
1070511006
....@@ -10785,13 +11086,43 @@
1078511086 gl.glOrtho(-skyscale / ratio, skyscale / ratio, -skyscale, skyscale, 0.001, 1000);
1078611087 }
1078711088
10788
- if (newenvy > -1)
11089
+// if (newenvy > -1)
11090
+// {
11091
+// LoadEnvy(newenvy);
11092
+// }
11093
+//
11094
+// newenvy = -1;
11095
+
11096
+ if (transformMode) // object.skyboxname != null && object.skyboxname.equals("cubemaps/default-skyboxes/rgb"))
1078911097 {
10790
- LoadEnvy(newenvy);
11098
+ if (cubemaprgb == null)
11099
+ {
11100
+ cubemaprgb = LoadSkybox("cubemaps/default-skyboxes/rgb2" + "/", "jpg", false);
11101
+ }
11102
+
11103
+ cubemap = cubemaprgb;
1079111104 }
10792
-
10793
- newenvy = -1;
10794
-
11105
+ else
11106
+ {
11107
+ if (object.skyboxname != null)
11108
+ {
11109
+ if (!object.skyboxname.equals(this.loadedskyboxname))
11110
+ {
11111
+ if (cubemap != null && cubemap != cubemaprgb)
11112
+ cubemap.dispose();
11113
+ cubemapcustom = LoadSkybox(object.skyboxname + "/", object.skyboxext, false);
11114
+ loadedskyboxname = object.skyboxname;
11115
+ }
11116
+ }
11117
+ else
11118
+ {
11119
+ cubemapcustom = null;
11120
+ loadedskyboxname = null;
11121
+ }
11122
+
11123
+ cubemap = cubemapcustom;
11124
+ }
11125
+
1079511126 ratio = ((double) getWidth()) / getHeight();
1079611127 //System.out.println("ratio = " + ratio);
1079711128
....@@ -10807,7 +11138,7 @@
1080711138
1080811139 if (!IsFrozen() && !ambientOcclusion)
1080911140 {
10810
- DrawSkyBox(gl);
11141
+ DrawSkyBox(gl, (float)ratio);
1081111142 }
1081211143
1081311144 //if (selection_view == -1)
....@@ -10990,9 +11321,9 @@
1099011321
1099111322 gl.glMatrixMode(GL.GL_MODELVIEW);
1099211323
10993
-//gl.glHint(gl.GL_POLYGON_SMOOTH_HINT, gl.GL_NICEST);
10994
-//gl.glEnable(gl.GL_POLYGON_SMOOTH);
10995
-//gl.glEnable(gl.GL_MULTISAMPLE);
11324
+gl.glEnable(gl.GL_POLYGON_SMOOTH);
11325
+gl.glHint(gl.GL_POLYGON_SMOOTH_HINT, gl.GL_NICEST);
11326
+gl.glEnable(gl.GL_MULTISAMPLE);
1099611327 } else
1099711328 {
1099811329 //gl.glDisable(GL.GL_TEXTURE_2D);
....@@ -11003,7 +11334,7 @@
1100311334 //System.out.println("BLENDING ON");
1100411335 gl.glEnable(GL.GL_BLEND);
1100511336 gl.glBlendFunc(GL.GL_SRC_ALPHA, GL.GL_ONE_MINUS_SRC_ALPHA);
11006
-
11337
+// gl.glBlendFunc(GL.GL_SRC_ALPHA_SATURATE, GL.GL_ONE);
1100711338 gl.glMatrixMode(gl.GL_PROJECTION);
1100811339 gl.glLoadIdentity();
1100911340
....@@ -11093,7 +11424,7 @@
1109311424
1109411425 // if (cam != lightCamera)
1109511426 //for (int count = parentcam.GetTransformCount(); --count>=0;)
11096
- LA.xformDir(lightposition, parentcam.GlobalTransform(), lightposition); // may 2013
11427
+ LA.xformDir(lightposition, parentcam.GlobalTransformInv(), lightposition); // may 2013
1109711428 }
1109811429
1109911430 LA.xformDir(lightposition, cam.toScreen, lightposition);
....@@ -11252,7 +11583,7 @@
1125211583 }
1125311584 }
1125411585
11255
- if (false) // fast && !IsFreezed() && DrawMode() != SELECTION && !ambientOcclusion)
11586
+ if (false) //RENDERPROGRAM > 0 && DrawMode() == DEFAULT) // fast && !IsFreezed() && DrawMode() != SELECTION && !ambientOcclusion)
1125611587 {
1125711588 //gl.glDepthFunc(GL.GL_LEQUAL);
1125811589 //gl.glClear(gl.GL_COLOR_BUFFER_BIT | gl.GL_DEPTH_BUFFER_BIT);
....@@ -11260,24 +11591,21 @@
1126011591
1126111592 boolean texon = textureon;
1126211593
11263
- if (RENDERPROGRAM > 0)
11264
- {
11265
- gl.glDisable(GL.GL_FRAGMENT_PROGRAM_ARB);
11266
- textureon = false;
11267
- }
11594
+ gl.glDisable(GL.GL_FRAGMENT_PROGRAM_ARB);
11595
+ textureon = false;
11596
+
1126811597 //gl.glDisable(GL.GL_VERTEX_PROGRAM_ARB);
1126911598 //System.out.println("ALLO");
1127011599 gl.glColorMask(false, false, false, false);
1127111600 DrawObject(gl);
11272
- if (RENDERPROGRAM > 0)
11273
- {
11274
- gl.glEnable(GL.GL_FRAGMENT_PROGRAM_ARB);
11275
- textureon = texon;
11276
- }
11601
+
11602
+ gl.glEnable(GL.GL_FRAGMENT_PROGRAM_ARB);
11603
+ textureon = texon;
11604
+
1127711605 gl.glColorMask(true, true, true, true);
1127811606
1127911607 gl.glDepthFunc(GL.GL_EQUAL);
11280
- //gl.glDepthMask(false);
11608
+ gl.glDepthMask(false);
1128111609 }
1128211610
1128311611 if (false) // DrawMode() == SHADOW)
....@@ -11480,13 +11808,16 @@
1148011808
1148111809 void DrawObject(GL gl, boolean draw)
1148211810 {
11811
+ // To clear camera values
11812
+ ResetOptions();
11813
+
1148311814 //System.out.println("DRAW OBJECT " + mouseDown);
1148411815 // DrawMode() = SELECTION;
1148511816 //GL gl = getGL();
1148611817 if ((TRACK || SHADOWTRACK) || zoomonce)
1148711818 {
1148811819 if ((TRACK || SHADOWTRACK) && trackedobject != null && DrawMode() == SHADOW) // && !lightMode)
11489
- object.editWindow.ScreenFit(trackedobject, SHADOWTRACK && !TRACK);
11820
+ object.GetWindow().ScreenFit(trackedobject, SHADOWTRACK && !TRACK);
1149011821 pingthread.StepToTarget(true); // true);
1149111822 // zoomonce = false;
1149211823 }
....@@ -11614,20 +11945,32 @@
1161411945 ReleaseTextures(DEFAULT_TEXTURES);
1161511946
1161611947 if (CLEANCACHE)
11617
- for (java.util.Enumeration<String> e = textures.keys() ; e.hasMoreElements();)
11948
+ for (java.util.Enumeration<cTexture> e = texturepigment.keys() ; e.hasMoreElements();)
1161811949 {
11619
- String tex = e.nextElement();
11950
+ cTexture tex = e.nextElement();
1162011951
1162111952 // System.out.println("Texture --------- " + tex);
1162211953
11623
- if (tex.equals("WHITE_NOISE"))
11954
+ if (tex.equals("WHITE_NOISE:"))
1162411955 continue;
1162511956
11626
- if (!usedtextures.containsKey(tex))
11957
+ if (!usedtextures.contains(tex))
1162711958 {
11959
+ CacheTexture gettex = texturepigment.get(tex);
1162811960 // System.out.println("DISPOSE +++++++++++++++ " + tex);
11629
- textures.get(tex).texture.dispose();
11630
- textures.remove(tex);
11961
+ if (gettex != null)
11962
+ {
11963
+ gettex.texture.dispose();
11964
+ texturepigment.remove(tex);
11965
+ }
11966
+
11967
+ gettex = texturebump.get(tex);
11968
+ // System.out.println("DISPOSE +++++++++++++++ " + tex);
11969
+ if (gettex != null)
11970
+ {
11971
+ gettex.texture.dispose();
11972
+ texturebump.remove(tex);
11973
+ }
1163111974 }
1163211975 }
1163311976 }
....@@ -12047,7 +12390,7 @@
1204712390 for (int i = tp.size(); --i >= 0;)
1204812391 {
1204912392 //for (int count = tp.get(i).GetTransformCount(); --count>=0;)
12050
- LA.xformPos(light, tp.get(i).GlobalTransform(), light);
12393
+ LA.xformPos(light, tp.get(i).GlobalTransformInv(), light);
1205112394 }
1205212395
1205312396
....@@ -12155,8 +12498,76 @@
1215512498
1215612499 //gl.glProgramEnvParameter4fvARB(GL.GL_FRAGMENT_PROGRAM_ARB, 127, lightParams, 0);
1215712500
12158
- String program =
12501
+ String programmin =
12502
+ // Min shader
1215912503 "!!ARBfp1.0\n" +
12504
+ "PARAM zero123 = { 0.0, 1.0, 2, 1.25 };" +
12505
+ "PARAM pow2 = { 0.5, 0.25, 0.125, 0.0 };" +
12506
+ "PARAM one = { 1.0, 1.0, 1.0, 1.0 };" +
12507
+ "PARAM eps = { 0.001, 0.001, 0.001, 1.0 };" +
12508
+ "PARAM infinity = { 100000000, 100000000, 100000000, 1.0 };" +
12509
+ "PARAM light2cam0 = program.env[10];" +
12510
+ "PARAM light2cam1 = program.env[11];" +
12511
+ "PARAM light2cam2 = program.env[12];" +
12512
+ "TEMP temp;" +
12513
+ "TEMP light;" +
12514
+ "TEMP ndotl;" +
12515
+ "TEMP normal;" +
12516
+ "TEMP depth;" +
12517
+ "TEMP eye;" +
12518
+ "TEMP pos;" +
12519
+
12520
+ "MAD normal, fragment.color, zero123.z, -zero123.y;" +
12521
+ Normalize("normal") +
12522
+ "MOV light, state.light[0].position;" +
12523
+ "DP3 ndotl.x, light, normal;" +
12524
+
12525
+ // shadow
12526
+ "MOV pos, fragment.texcoord[1];" +
12527
+ "MOV temp, pos;" +
12528
+ ShadowTextureFetch("depth", "temp", "1") +
12529
+ //"TEX depth, fragment.texcoord[1], texture[1], 2D;" +
12530
+ "SLT ndotl.z, fragment.texcoord[1].z, depth.z;" +
12531
+
12532
+ // No shadow when out of frustum
12533
+ //"SGE temp.y, depth.z, zero123.y;" +
12534
+ //"LRP temp.x, temp.y, zero123.y, temp.x;" +
12535
+
12536
+ "MUL ndotl.x, ndotl.x, ndotl.z;" + // Shadow
12537
+
12538
+ // Backlit
12539
+ "MOV pos.w, zero123.y;" +
12540
+ "DP4 eye.x, pos, light2cam0;" +
12541
+ "DP4 eye.y, pos, light2cam1;" +
12542
+ "DP4 eye.z, pos, light2cam2;" +
12543
+ Normalize("eye") +
12544
+
12545
+ "DP3 ndotl.y, -eye, normal;" +
12546
+ //"MUL ndotl.y, ndotl.y, pow2.x;" +
12547
+ "POW ndotl.y, ndotl.y, pow2.z;" + // backlit
12548
+ "SUB ndotl.y, zero123.y, ndotl.y;" +
12549
+ //"SUB ndotl.y, zero123.y, ndotl.y;" +
12550
+ //"MUL ndotl.y, ndotl.y, pow2.z;" +
12551
+
12552
+ //"MAX ndotl.x, ndotl.x, ndotl.y;" + // Ambient
12553
+ //"MAX ndotl.x, ndotl.x, pow2.y;" + // Ambient
12554
+
12555
+ // Pigment
12556
+ "TEX temp, fragment.texcoord[0], texture[0], 2D;" +
12557
+ "LRP temp, zero123.w, temp, one;" + // texture proportion
12558
+ "MUL temp, temp, ndotl.x;" +
12559
+
12560
+ "MUL temp, temp, zero123.z;" +
12561
+
12562
+ //"MUL temp, temp, ndotl.y;" +
12563
+
12564
+ "MOV temp.w, zero123.y;" + // reset alpha
12565
+ "MOV result.color, temp;" +
12566
+ "END";
12567
+
12568
+ String programmax =
12569
+ "!!ARBfp1.0\n" +
12570
+
1216012571 //"OPTION ARB_fragment_program_shadow;" +
1216112572 "PARAM light2cam0 = program.env[10];" +
1216212573 "PARAM light2cam1 = program.env[11];" +
....@@ -12182,7 +12593,7 @@
1218212593 "PARAM params4 = program.env[4];" + // anisoV, cameralight, selfshadow, shadow
1218312594 "PARAM params5 = program.env[5];" + // texture, opacity, fakedepth, shadowbias
1218412595 "PARAM params6 = program.env[6];" + // bump, noise, borderfade, fog punchthrough
12185
- "PARAM params7 = program.env[7];" + // noise power, opacity power
12596
+ "PARAM params7 = program.env[7];" + // noise power, opacity power, parallax
1218612597 "PARAM options0 = program.env[63];" + // fog density, intensity, elevation
1218712598 "PARAM options1 = program.env[62];" + // fog rgb color
1218812599 "PARAM options2 = program.env[61];" + // image intensity, subsurface, lightsheen
....@@ -12271,8 +12682,7 @@
1227112682 "TEMP shininess;" +
1227212683 "\n" +
1227312684 "MOV texSamp, one;" +
12274
- //"TEX texSamp, fragment.texcoord[0], texture[0], 2D;" +
12275
-
12685
+
1227612686 "MOV mapgrid.x, one2048th.x;" +
1227712687 "MOV temp, fragment.texcoord[1];" +
1227812688 /*
....@@ -12293,20 +12703,20 @@
1229312703 "MUL temp, floor, mapgrid.x;" +
1229412704 //"TEX depth0, temp, texture[1], 2D;" +
1229512705 (((mode & FP_SOFTSHADOW) == 0) ? "" :
12296
- TextureFetch("depth0", "temp", "1") +
12706
+ ShadowTextureFetch("depth0", "temp", "1") +
1229712707 "") +
1229812708 "ADD temp.x, temp.x, mapgrid.x;" +
1229912709 //"TEX depth1, temp, texture[1], 2D;" +
1230012710 (((mode & FP_SOFTSHADOW) == 0) ? "" :
12301
- TextureFetch("depth1", "temp", "1") +
12711
+ ShadowTextureFetch("depth1", "temp", "1") +
1230212712 "") +
1230312713 "ADD temp.y, temp.y, mapgrid.x;" +
1230412714 //"TEX depth2, temp, texture[1], 2D;" +
12305
- TextureFetch("depth2", "temp", "1") +
12715
+ ShadowTextureFetch("depth2", "temp", "1") +
1230612716 "SUB temp.x, temp.x, mapgrid.x;" +
1230712717 //"TEX depth3, temp, texture[1], 2D;" +
1230812718 (((mode & FP_SOFTSHADOW) == 0) ? "" :
12309
- TextureFetch("depth3", "temp", "1") +
12719
+ ShadowTextureFetch("depth3", "temp", "1") +
1231012720 "") +
1231112721 //"MUL texSamp0, texSamp0, state.material.front.diffuse;" +
1231212722 //"MOV params, material;" +
....@@ -12428,7 +12838,7 @@
1242812838 "POW texSamp.a, texSamp.a, params6.w;" + // fog punch through shortcut
1242912839 // mar 2013 ??? "KIL alpha.a;" +
1243012840 "MOV alpha, texSamp.aaaa;" + // y;" +
12431
- "KIL alpha.a;" +
12841
+ "KIL alpha.a;" + // not sure with parallax mapping
1243212842 /*
1243312843 "MUL temp.xy, temp, two;" +
1243412844 "TXB bump, temp, texture[0], 2D;" +
....@@ -12514,11 +12924,6 @@
1251412924 "SUB bump0, bump0, half;" +
1251512925 "ADD bump, bump, bump0;" +
1251612926
12517
- "MOV temp.x, texSamp.a;" +
12518
- "LRP texSamp, params5.x, texSamp, one;" + // texture proportion
12519
- //"LRP texSamp0, params5.x, texSamp0, one;" +
12520
- "MOV texSamp.a, temp.x;" +
12521
-
1252212927 // double-sided
1252312928 /**/
1252412929 (doublesided?"DP3 temp.z, normal, eye;" +
....@@ -12548,6 +12953,41 @@
1254812953 Normalize("U") +
1254912954
1255012955 // parallax mapping
12956
+
12957
+ "DP3 temp2.x, V, eye;" +
12958
+ "DP3 temp2.y, U, eye;" +
12959
+ "DP3 temp2.z, normal, eye;" +
12960
+ "RCP temp2.z, temp2.z;" +
12961
+
12962
+ "DP3 temp2.w, texSamp, texSamp;" + // Height
12963
+ "RSQ temp2.w, temp2.w;" +
12964
+ "RCP temp2.w, temp2.w;" +
12965
+
12966
+ "SUB temp2.w, temp2.w, half;" +
12967
+// "SGE temp.x, temp2.w, eps.x;" +
12968
+// "MUL temp2.w, temp2.w, temp.x;" +
12969
+
12970
+ //"MOV texSamp, U;" +
12971
+
12972
+ "MUL temp2.z, temp2.z, temp2.w;" +
12973
+ "MUL temp2.z, temp2.z, params7.z;" + // parallax
12974
+
12975
+ "MUL temp2, temp2, temp2.z;" +
12976
+
12977
+ "MOV temp, fragment.texcoord[0];" +
12978
+
12979
+ "SUB temp, temp, temp2;" +
12980
+
12981
+ "TEX texSamp, temp, texture[0], 2D;" +
12982
+ "POW texSamp.a, texSamp.a, params6.w;" + // punch through
12983
+ "MOV alpha, texSamp.aaaa;" +
12984
+
12985
+// parallax mapping
12986
+
12987
+ "MOV temp.x, texSamp.a;" +
12988
+ "LRP texSamp, params5.x, texSamp, one;" + // texture proportion
12989
+ //"LRP texSamp0, params5.x, texSamp0, one;" +
12990
+ "MOV texSamp.a, temp.x;" +
1255112991
1255212992 //"MOV temp, fragment.texcoord[0];" +
1255312993 //
....@@ -12677,10 +13117,10 @@
1267713117 "MAD shadow.x, buffer.x, frac.y, shadow.x;" +
1267813118 "") +
1267913119
12680
- // display shadow only (bump == 0)
13120
+ // display shadow only (fakedepth == 0)
1268113121 "SUB temp.x, half.x, shadow.x;" +
1268213122 "MOV temp.y, -params5.z;" + // params6.x;" +
12683
- "SLT temp.z, temp.y, -one2048th.x;" +
13123
+ "SLT temp.z, temp.y, -c256i.x;" +
1268413124 "SUB temp.y, one.x, temp.z;" +
1268513125 "MUL temp.x, temp.x, temp.y;" +
1268613126 "KIL temp.x;" +
....@@ -13011,8 +13451,19 @@
1301113451 //once = true;
1301213452 }
1301313453
13014
- System.out.print("Program #" + mode + "; instructions = " + program.split(";").length + "; length = " + program.length());
13015
- System.out.println(" - " + (mode >> 3) + " lights; " + ((mode & 2) == 2 ? "anisoUV " : "") + ((mode & 4) == 4 ? "SoftShadow " : ""));
13454
+ String program = programmax;
13455
+
13456
+ if (Globals.MINSHADER)
13457
+ {
13458
+ program = programmin;
13459
+ }
13460
+
13461
+ if (Globals.DEBUG)
13462
+ {
13463
+ System.out.print("Program #" + mode + "; instructions = " + program.split(";").length + "; length = " + program.length());
13464
+ System.out.println(" - " + (mode >> 3) + " lights; " + ((mode & 2) == 2 ? "anisoUV " : "") + ((mode & 4) == 4 ? "SoftShadow " : ""));
13465
+ }
13466
+
1301613467 loadProgram(gl, GL.GL_FRAGMENT_PROGRAM_ARB, program);
1301713468
1301813469 //gl.glNewList(displayListID, GL.GL_COMPILE);
....@@ -13059,7 +13510,8 @@
1305913510 "\n" +
1306013511 "END\n";
1306113512
13062
- System.out.println("Program shadow #" + 0 + "; length = " + program.length());
13513
+ if (Globals.DEBUG)
13514
+ System.out.println("Program shadow #" + 0 + "; length = " + program.length());
1306313515 loadProgram(gl, GL.GL_FRAGMENT_PROGRAM_ARB, program);
1306413516
1306513517 //gl.glNewList(displayListID, GL.GL_COMPILE);
....@@ -13104,25 +13556,26 @@
1310413556 return out;
1310513557 }
1310613558
13107
- String TextureFetch(String dest, String src, String unit)
13559
+ // Also does frustum culling
13560
+ String ShadowTextureFetch(String dest, String src, String unit)
1310813561 {
1310913562 return "TEX " + dest + ", " + src + ", texture[" + unit + "], 2D;" +
1311013563 "SGE " + src + ".w, " + src + ".x, eps.x;" +
1311113564 "SGE " + src + ".z, " + src + ".y, eps.x;" +
13565
+ "SLT " + dest + ".x, " + src + ".x, one.x;" +
13566
+ "SLT " + dest + ".y, " + src + ".y, one.x;" +
1311213567 "MUL " + src + ".w, " + src + ".z, " + src + ".w;" +
13113
- "SLT " + src + ".z, " + src + ".x, one.x;" +
13114
- "MUL " + src + ".w, " + src + ".z, " + src + ".w;" +
13115
- "SLT " + src + ".z, " + src + ".y, one.x;" +
13116
- "MUL " + src + ".w, " + src + ".z, " + src + ".w;" +
13568
+ "MUL " + src + ".w, " + dest + ".x, " + src + ".w;" +
13569
+ "MUL " + src + ".w, " + dest + ".y, " + src + ".w;" +
1311713570 //"SWZ buffer, temp, w,w,w,w;";
13118
- "MUL " + dest + ".z, " + dest + ".z, " + src + ".w;" +
13571
+ //"MUL " + dest + ".z, " + dest + ".z, " + src + ".w;" +
1311913572 "SUB " + src + ".z, " + "one.x, " + src + ".w;" +
1312013573 //"MUL " + src + ".z, " + src + ".z, infinity.x;" +
1312113574 //"ADD " + dest + ".z, " + dest + ".z, " + src + ".z;";
13122
- "MAD " + dest + ".z, " + src + ".z, infinity.x," + dest + ".z;";
13575
+ //"MAD " + dest + ".z, " + src + ".z, infinity.x," + dest + ".z;";
1312313576
13124
- //"LRP " + dest + ".z, " + src + ".w," + dest + ".z, infinity.x;";
13125
- //"LRP " + dest + ".z" + ", " + src + ".w, infinity.x," + dest + ".z;";
13577
+ //?? "LRP " + dest + ".z, " + src + ".w," + dest + ".z, infinity.x;";
13578
+ "LRP " + dest + ".z, " + src + ".z, infinity.x," + dest + ".z;";
1312613579 }
1312713580
1312813581 String Shadow(String depth, String shadow)
....@@ -13169,7 +13622,7 @@
1316913622 "SLT temp.x, temp.x, zero.x;" + // shadoweps
1317013623 "LRP " + shadow + ", temp.x, one, " + shadow + ";" +
1317113624
13172
- // No shadow when out of frustrum
13625
+ // No shadow when out of frustum
1317313626 "SGE temp.x, " + depth + ".z, one.z;" +
1317413627 "LRP " + shadow + ", temp.x, one, " + shadow + ";" +
1317513628 "";
....@@ -13316,7 +13769,7 @@
1331613769 /*static*/ float[] modelParams4 = new float[]{0, 0, 0, 0}; // anisoV, cameralight, selfshadow, shadow
1331713770 /*static*/ float[] modelParams5 = new float[]{0, 0, 0, 0}; // texture, opacity, fakedepth, shadowbias
1331813771 /*static*/ float[] modelParams6 = new float[]{0, 0, 0, 0}; // bump, noise, borderfade, fog punchthrough
13319
- /*static*/ float[] modelParams7 = new float[]{0, 0, 0, 0}; // noise power, opacity power
13772
+ /*static*/ float[] modelParams7 = new float[]{0, 0, 0, 0}; // noise power, opacity power, parallax
1332013773
1332113774 //Object3D.cVector2[] vector2buffer;
1332213775
....@@ -13334,9 +13787,10 @@
1333413787 "DP3 " + dest + ".z," + "normals," + "eye;" +
1333513788 "MAX " + dest + ".w," + dest + ".z," + "eps.x;" +
1333613789 //"MOV " + dest + ".w," + "normal.z;" +
13337
- "MUL " + dest + ".z," + "params2.w," + dest + ".x;" +
13338
- "MUL " + dest + ".z," + dest + ".z," + dest + ".x;" +
13339
- //"MOV " + dest + ".z," + "params2.w;" +
13790
+// "MUL " + dest + ".z," + "params2.w," + dest + ".x;" + // PRETTY HEURISTIC FOR VELVET
13791
+// "MUL " + dest + ".z," + dest + ".z," + dest + ".x;" +
13792
+
13793
+ "MOV " + dest + ".z," + "params2.w;" + // EXACT
1334013794 "POW " + dest + ".w," + dest + ".w," + dest + ".z;" +
1334113795 "RCP " + dest + ".w," + dest + ".w;" +
1334213796 //"RSQ " + dest + ".w," + dest + ".w;" +
....@@ -13901,7 +14355,7 @@
1390114355
1390214356 // fev 2014???
1390314357 if ((TRACK || SHADOWTRACK) && trackedobject != null) // && DrawMode() == SHADOW) // && !lightMode)
13904
- object.editWindow.ScreenFit(trackedobject, SHADOWTRACK && !TRACK);
14358
+ object.GetWindow().ScreenFit(trackedobject, SHADOWTRACK && !TRACK);
1390514359 pingthread.StepToTarget(true); // true);
1390614360 }
1390714361 // if (!LIVE)
....@@ -13966,14 +14420,15 @@
1396614420 drag = false;
1396714421 //System.out.println("Mouse DOWN");
1396814422 editObj = false;
13969
- ClickInfo info = new ClickInfo();
13970
- info.bounds.setBounds(0, 0, (int) (getBounds().width * zoom), (int) (getBounds().height * zoom));
13971
- info.pane = this;
13972
- info.camera = renderCamera;
13973
- info.x = x;
13974
- info.y = y;
13975
- info.modifiers = modifiersex;
13976
- editObj = object.doEditClick(info, 0);
14423
+ //ClickInfo info = new ClickInfo();
14424
+ object.clickInfo.bounds.setBounds(0, 0, (int) (getBounds().width * zoom), (int) (getBounds().height * zoom));
14425
+ object.clickInfo.pane = this;
14426
+ object.clickInfo.camera = renderCamera;
14427
+ object.clickInfo.x = x;
14428
+ object.clickInfo.y = y;
14429
+ object.clickInfo.modifiers = modifiersex;
14430
+ editObj = object.doEditClick(//info,
14431
+ 0);
1397714432 if (!editObj)
1397814433 {
1397914434 hasMarquee = true;
....@@ -14255,12 +14710,18 @@
1425514710 void GoDown(int mod)
1425614711 {
1425714712 MODIFIERS |= COMMAND;
14258
- /*
14713
+ boolean isVR = (mouseMode&VR)!=0;
14714
+ /**/
1425914715 if((mod&SHIFT) == SHIFT)
14260
- manipCamera.RotatePosition(0, -speed);
14716
+ {
14717
+ if (isVR)
14718
+ manipCamera.RotateInterest(0, -speed);
14719
+ else
14720
+ manipCamera.RotatePosition(0, -speed);
14721
+ }
1426114722 else
14262
- manipCamera.BackForth(0, -speed*delta, getWidth());
14263
- */
14723
+ manipCamera.BackForth(0, -speed*delta, isVR?1000:0); // getWidth());
14724
+ /**/
1426414725 if ((mod & SHIFT) == SHIFT)
1426514726 {
1426614727 mouseMode = mouseMode; // VR??
....@@ -14269,6 +14730,8 @@
1426914730 mouseMode |= BACKFORTH;
1427014731 }
1427114732
14733
+ targetLookAt.set(manipCamera.lookAt);
14734
+
1427214735 //prevX = X = anchorX;
1427314736 prevY = Y = anchorY - (int) (renderCamera.Distance());
1427414737 }
....@@ -14276,12 +14739,19 @@
1427614739 void GoUp(int mod)
1427714740 {
1427814741 MODIFIERS |= COMMAND;
14279
- /*
14742
+ /**/
14743
+ boolean isVR = (mouseMode&VR)!=0;
14744
+
1428014745 if((mod&SHIFT) == SHIFT)
14281
- manipCamera.RotatePosition(0, speed);
14746
+ {
14747
+ if (isVR)
14748
+ manipCamera.RotateInterest(0, speed);
14749
+ else
14750
+ manipCamera.RotatePosition(0, speed);
14751
+ }
1428214752 else
14283
- manipCamera.BackForth(0, speed*delta, getWidth());
14284
- */
14753
+ manipCamera.BackForth(0, speed*delta, isVR?1000:0); // getWidth());
14754
+ /**/
1428514755 if ((mod & SHIFT) == SHIFT)
1428614756 {
1428714757 mouseMode = mouseMode;
....@@ -14290,6 +14760,8 @@
1429014760 mouseMode |= BACKFORTH;
1429114761 }
1429214762
14763
+ targetLookAt.set(manipCamera.lookAt);
14764
+
1429314765 //prevX = X = anchorX;
1429414766 prevY = Y = anchorY + (int) (renderCamera.Distance());
1429514767 }
....@@ -14297,12 +14769,17 @@
1429714769 void GoLeft(int mod)
1429814770 {
1429914771 MODIFIERS |= COMMAND;
14300
- /*
14772
+ /**/
1430114773 if((mod&SHIFT) == SHIFT)
14302
- manipCamera.RotatePosition(speed, 0);
14774
+ manipCamera.Translate(speed*delta, 0, getWidth());
1430314775 else
14304
- manipCamera.Translate(speed*delta, 0, getWidth());
14305
- */
14776
+ {
14777
+ if ((mouseMode&VR)!=0)
14778
+ manipCamera.RotateInterest(-speed, 0);
14779
+ else
14780
+ manipCamera.RotatePosition(speed, 0);
14781
+ }
14782
+ /**/
1430614783 if ((mod & SHIFT) == SHIFT)
1430714784 {
1430814785 mouseMode = mouseMode;
....@@ -14311,6 +14788,8 @@
1431114788 mouseMode |= ROTATE;
1431214789 } // TRANSLATE;
1431314790
14791
+ targetLookAt.set(manipCamera.lookAt);
14792
+
1431414793 prevX = X = anchorX - 10; // (int)(10*renderCamera.Distance());
1431514794 prevY = Y = anchorY;
1431614795 }
....@@ -14318,12 +14797,18 @@
1431814797 void GoRight(int mod)
1431914798 {
1432014799 MODIFIERS |= COMMAND;
14321
- /*
14800
+ /**/
1432214801 if((mod&SHIFT) == SHIFT)
14323
- manipCamera.RotatePosition(-speed, 0);
14802
+ manipCamera.Translate(-speed*delta, 0, getWidth());
1432414803 else
14325
- manipCamera.Translate(-speed*delta, 0, getWidth());
14326
- */
14804
+ {
14805
+ if ((mouseMode&VR)!=0)
14806
+ manipCamera.RotateInterest(speed, 0);
14807
+ else
14808
+ manipCamera.RotatePosition(-speed, 0);
14809
+ }
14810
+
14811
+ /**/
1432714812 if ((mod & SHIFT) == SHIFT)
1432814813 {
1432914814 mouseMode = mouseMode;
....@@ -14332,6 +14817,8 @@
1433214817 mouseMode |= ROTATE;
1433314818 } // TRANSLATE;
1433414819
14820
+ targetLookAt.set(manipCamera.lookAt);
14821
+
1433514822 prevX = X = anchorX + 10; // (int)(10*renderCamera.Distance());
1433614823 prevY = Y = anchorY;
1433714824 }
....@@ -14373,15 +14860,16 @@
1437314860 if (editObj)
1437414861 {
1437514862 drag = true;
14376
- ClickInfo info = new ClickInfo();
14377
- info.bounds.setBounds(0, 0,
14863
+ //ClickInfo info = new ClickInfo();
14864
+ object.clickInfo.bounds.setBounds(0, 0,
1437814865 (int) (getBounds().width * zoom), (int) (getBounds().height * zoom));
14379
- info.pane = this;
14380
- info.camera = renderCamera;
14381
- info.x = x;
14382
- info.y = y;
14383
- object.GetWindow().copy
14384
- .doEditDrag(info, (modifiers & MouseEvent.BUTTON3_MASK) != 0);
14866
+ object.clickInfo.pane = this;
14867
+ object.clickInfo.camera = renderCamera;
14868
+ object.clickInfo.x = x;
14869
+ object.clickInfo.y = y;
14870
+ object //.GetWindow().copy
14871
+ .doEditDrag(//info,
14872
+ (modifiers & MouseEvent.BUTTON3_MASK) != 0);
1438514873 } else
1438614874 {
1438714875 if (x < startX)
....@@ -14530,24 +15018,27 @@
1453015018 }
1453115019 }
1453215020
15021
+// ClickInfo clickInfo = new ClickInfo();
15022
+
1453315023 public void mouseMoved(MouseEvent e)
1453415024 {
1453515025 //System.out.println("mouseMoved: " + e);
1453615026 if (isRenderer)
1453715027 return;
1453815028
14539
- ClickInfo ci = new ClickInfo();
14540
- ci.x = e.getX();
14541
- ci.y = e.getY();
14542
- ci.modifiers = e.getModifiersEx();
14543
- ci.bounds.setBounds(0, 0, (int) (getBounds().width * zoom), (int) (getBounds().height * zoom));
14544
- ci.pane = this;
14545
- ci.camera = renderCamera;
15029
+ // Mouse cursor feedback
15030
+ object.clickInfo.x = e.getX();
15031
+ object.clickInfo.y = e.getY();
15032
+ object.clickInfo.modifiers = e.getModifiersEx();
15033
+ object.clickInfo.bounds.setBounds(0, 0, (int) (getBounds().width * zoom), (int) (getBounds().height * zoom));
15034
+ object.clickInfo.pane = this;
15035
+ object.clickInfo.camera = renderCamera;
1454615036 if (!isRenderer)
1454715037 {
1454815038 //ObjEditor editWindow = object.editWindow;
1454915039 //Object3D copy = editWindow.copy;
14550
- if (object.doEditClick(ci, 0))
15040
+ if (object.doEditClick(//clickInfo,
15041
+ 0))
1455115042 {
1455215043 setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
1455315044 } else
....@@ -14562,7 +15053,8 @@
1456215053 Globals.MOUSEDRAGGED = false;
1456315054
1456415055 movingcamera = false;
14565
- X = Y = 0;
15056
+ X = 0; // getBounds().width/2;
15057
+ Y = 0; // getBounds().height/2;
1456615058 //System.out.println("mouseReleased: " + e);
1456715059 clickEnd(e.getX(), e.getY(), e.getModifiersEx());
1456815060 }
....@@ -14818,7 +15310,8 @@
1481815310 // break;
1481915311 case 'T':
1482015312 CACHETEXTURE ^= true;
14821
- textures.clear();
15313
+ texturepigment.clear();
15314
+ texturebump.clear();
1482215315 // repaint();
1482315316 break;
1482415317 case 'Y':
....@@ -14828,8 +15321,8 @@
1482815321 case 'K':
1482915322 KOMPACTTEXTURE ^= true;
1483015323 //textures.clear();
14831
- break;
14832
- case 'P': // Texture Projection macros
15324
+ // break;
15325
+ //case 'P': // Texture Projection macros
1483315326 // SAVETEXTURE ^= true;
1483415327 macromode = true;
1483515328 Udebug = Vdebug = NORMALdebug = false; programInitialized = false;
....@@ -14903,7 +15396,9 @@
1490315396 case 'E' : COMPACT ^= true;
1490415397 repaint();
1490515398 break;
14906
- case 'W' : DEBUGHSB ^= true;
15399
+ case 'W' : // Wide Window (fullscreen)
15400
+ //DEBUGHSB ^= true;
15401
+ ObjEditor.theFrame.ToggleFullScreen();
1490715402 repaint();
1490815403 break;
1490915404 case 'u' : Udebug ^= true; Vdebug = false; NORMALdebug = false; programInitialized = false; repaint(); break;
....@@ -14929,13 +15424,7 @@
1492915424 repaint();
1493015425 break;
1493115426 case 'l':
14932
- lightMode ^= true;
14933
- Globals.lighttouched = true;
14934
- manipCamera = renderCamera = lightMode ? lightCamera : eyeCamera;
14935
- targetLookAt.set(manipCamera.lookAt);
14936
- repaint();
14937
- break;
14938
- case 'L':
15427
+ //case 'L':
1493915428 if (lightMode)
1494015429 {
1494115430 lightMode = false;
....@@ -14954,7 +15443,7 @@
1495415443 targetLookAt.set(manipCamera.lookAt);
1495515444 repaint();
1495615445 break;
14957
- case 'p':
15446
+ case 'P': // p':
1495815447 // c'est quoi ca au juste? spherical ^= true;
1495915448 Skinshader ^= true; programInitialized = false;
1496015449 repaint();
....@@ -14999,20 +15488,24 @@
1499915488 OCCLUSION_CULLING ^= true;
1500015489 System.out.println("OCCLUSION CULLING = " + OCCLUSION_CULLING);
1500115490 break;
15002
- case '0': envyoff ^= true; repaint(); break;
15491
+ //case '0': envyoff ^= true; repaint(); break;
1500315492 case '1':
1500415493 case '2':
1500515494 case '3':
1500615495 case '4':
1500715496 case '5':
15008
- newenvy = Character.getNumericValue(key);
15009
- repaint();
15010
- break;
1501115497 case '6':
1501215498 case '7':
1501315499 case '8':
1501415500 case '9':
15015
- BGcolor = (key - '6')/3.f;
15501
+ if (true) // envyoff)
15502
+ {
15503
+ BGcolor = (key - '1')/8.f;
15504
+ }
15505
+ else
15506
+ {
15507
+ //newenvy = Character.getNumericValue(key);
15508
+ }
1501615509 repaint();
1501715510 break;
1501815511 case '!':
....@@ -15078,11 +15571,14 @@
1507815571 case '_':
1507915572 kompactbit = 5;
1508015573 break;
15081
- case '+':
15082
- kompactbit = 6;
15083
- break;
15574
+// case '+':
15575
+// kompactbit = 6;
15576
+// break;
1508415577 case ' ':
15085
- ObjEditor.theFrame.ToggleFullScreen();
15578
+ lightMode ^= true;
15579
+ Globals.lighttouched = true;
15580
+ manipCamera = renderCamera = lightMode ? lightCamera : eyeCamera;
15581
+ targetLookAt.set(manipCamera.lookAt);
1508615582 repaint();
1508715583 break;
1508815584 //case '`' :
....@@ -15129,8 +15625,9 @@
1512915625 case DELETE:
1513015626 ClearSelection();
1513115627 break;
15132
- /*
1513315628 case '+':
15629
+
15630
+ /*
1513415631 //fontsize += 1;
1513515632 bbzoom *= 2;
1513615633 repaint();
....@@ -15147,17 +15644,17 @@
1514715644 case '=':
1514815645 IncDepth();
1514915646 //fontsize += 1;
15150
- object.editWindow.refreshContents(true);
15647
+ object.GetWindow().refreshContents(true);
1515115648 maskbit = 6;
1515215649 break;
1515315650 case '-': //if (PixelThreshold>1) PixelThreshold /= 2;
1515415651 DecDepth();
1515515652 maskbit = 5;
1515615653 //if(fontsize > 1) fontsize -= 1;
15157
- if (object.editWindow == null)
15158
- new Exception().printStackTrace();
15159
- else
15160
- object.editWindow.refreshContents(true);
15654
+// if (object.editWindow == null)
15655
+// new Exception().printStackTrace();
15656
+// else
15657
+ object.GetWindow().refreshContents(true);
1516115658 break;
1516215659 case '{':
1516315660 manipCamera.shaper_fovy /= 1.1;
....@@ -15381,7 +15878,7 @@
1538115878 }
1538215879 */
1538315880
15384
- object.editWindow.EditSelection(false);
15881
+ object.GetWindow().EditSelection(false);
1538515882 }
1538615883
1538715884 void SelectParent()
....@@ -15398,10 +15895,10 @@
1539815895 {
1539915896 //selectees.remove(i);
1540015897 System.out.println("select parent of " + elem);
15401
- group.editWindow.Select(elem.parent.GetTreePath(), first, true);
15898
+ group.GetWindow().Select(elem.parent.GetTreePath(), first, true);
1540215899 } else
1540315900 {
15404
- group.editWindow.Select(elem.GetTreePath(), first, true);
15901
+ group.GetWindow().Select(elem.GetTreePath(), first, true);
1540515902 }
1540615903
1540715904 first = false;
....@@ -15443,12 +15940,12 @@
1544315940 for (int j = 0; j < group.children.size(); j++)
1544415941 {
1544515942 elem = (Object3D) group.children.elementAt(j);
15446
- object.editWindow.Select(elem.GetTreePath(), first, true);
15943
+ object.GetWindow().Select(elem.GetTreePath(), first, true);
1544715944 first = false;
1544815945 }
1544915946 } else
1545015947 {
15451
- object.editWindow.Select(elem.GetTreePath(), first, true);
15948
+ object.GetWindow().Select(elem.GetTreePath(), first, true);
1545215949 }
1545315950
1545415951 first = false;
....@@ -15459,21 +15956,21 @@
1545915956 {
1546015957 //Composite group = (Composite) object;
1546115958 Object3D group = object;
15462
- group.editWindow.loadClipboard(true); // ClearSelection(false);
15959
+ group.GetWindow().loadClipboard(true); // ClearSelection(false);
1546315960 }
1546415961
1546515962 void ResetTransform(int mask)
1546615963 {
1546715964 //Composite group = (Composite) object;
1546815965 Object3D group = object;
15469
- group.editWindow.ResetTransform(mask);
15966
+ group.GetWindow().ResetTransform(mask);
1547015967 }
1547115968
1547215969 void FlipTransform()
1547315970 {
1547415971 //Composite group = (Composite) object;
1547515972 Object3D group = object;
15476
- group.editWindow.FlipTransform();
15973
+ group.GetWindow().FlipTransform();
1547715974 // group.editWindow.ReduceMesh(true);
1547815975 }
1547915976
....@@ -15481,7 +15978,7 @@
1548115978 {
1548215979 //Composite group = (Composite) object;
1548315980 Object3D group = object;
15484
- group.editWindow.PrintMemory();
15981
+ group.GetWindow().PrintMemory();
1548515982 // group.editWindow.ReduceMesh(true);
1548615983 }
1548715984
....@@ -15489,7 +15986,7 @@
1548915986 {
1549015987 //Composite group = (Composite) object;
1549115988 Object3D group = object;
15492
- group.editWindow.ResetCentroid();
15989
+ group.GetWindow().ResetCentroid();
1549315990 }
1549415991
1549515992 void IncDepth()
....@@ -15571,8 +16068,6 @@
1557116068
1557216069 int width = getBounds().width;
1557316070 int height = getBounds().height;
15574
- ClickInfo info = new ClickInfo();
15575
- info.bounds.setBounds(0, 0, (int) (width * zoom), (int) (height * zoom));
1557616071 //Image img = CreateImage(width, height);
1557716072 //System.out.println("width = " + width + "; height = " + height + "\n");
1557816073
....@@ -15649,48 +16144,77 @@
1564916144 }
1565016145 if (object != null && !hasMarquee)
1565116146 {
16147
+ if (object.clickInfo == null)
16148
+ object.clickInfo = new ClickInfo();
16149
+ ClickInfo info = object.clickInfo;
16150
+ //ClickInfo info = new ClickInfo();
16151
+ info.bounds.setBounds(0, 0, (int) (width * zoom), (int) (height * zoom));
16152
+
1565216153 if (isRenderer)
1565316154 {
15654
- info.flags++;
16155
+ object.clickInfo.flags++;
1565516156 double frameAspect = (double) width / (double) height;
1565616157 if (frameAspect > renderCamera.aspect)
1565716158 {
1565816159 int desired = (int) ((double) height * renderCamera.aspect);
15659
- info.bounds.width -= width - desired;
15660
- info.bounds.x += (width - desired) / 2;
16160
+ object.clickInfo.bounds.width -= width - desired;
16161
+ object.clickInfo.bounds.x += (width - desired) / 2;
1566116162 } else
1566216163 {
1566316164 int desired = (int) ((double) width / renderCamera.aspect);
15664
- info.bounds.height -= height - desired;
15665
- info.bounds.y += (height - desired) / 2;
16165
+ object.clickInfo.bounds.height -= height - desired;
16166
+ object.clickInfo.bounds.y += (height - desired) / 2;
1566616167 }
1566716168 }
15668
- info.g = gr;
15669
- info.camera = renderCamera;
16169
+
16170
+ object.clickInfo.g = gr;
16171
+ object.clickInfo.camera = renderCamera;
1567016172 /*
1567116173 // Memory intensive (brep.verticescopy)
1567216174 if (!(object instanceof Composite))
1567316175 object.draw(info, 0, false); // SLOW :
1567416176 */
15675
- if (!isRenderer)
16177
+ if (!isRenderer) // && drag)
1567616178 {
15677
- object.drawEditHandles(info, 0);
15678
-
15679
- if (drag && (X != 0 || Y != 0) && object.selection.Size() > 0)
16179
+ Grafreed.Assert(object != null);
16180
+ Grafreed.Assert(object.selection != null);
16181
+ if (object.selection.Size() > 0)
1568016182 {
15681
- switch (object.selection.get(0).hitSomething)
16183
+ int hitSomething = object.selection.get(0).hitSomething;
16184
+
16185
+ object.clickInfo.DX = 0;
16186
+ object.clickInfo.DY = 0;
16187
+ object.clickInfo.W = 1;
16188
+ if (hitSomething == Object3D.hitCenter)
1568216189 {
15683
- case Object3D.hitCenter: gr.setColor(Color.pink);
15684
- gr.drawLine(X, Y, info.bounds.width/2, info.bounds.height/2);
15685
- break;
15686
- case Object3D.hitRotate: gr.setColor(Color.yellow);
15687
- gr.drawLine(X, Y, info.bounds.width/2, info.bounds.height/2);
15688
- break;
15689
- case Object3D.hitScale: gr.setColor(Color.cyan);
15690
- gr.drawLine(X, Y, info.bounds.width/2, info.bounds.height/2);
15691
- break;
16190
+ info.DX = X;
16191
+ if (X != 0)
16192
+ info.DX -= info.bounds.width/2;
16193
+
16194
+ info.DY = Y;
16195
+ if (Y != 0)
16196
+ info.DY -= info.bounds.height/2;
1569216197 }
15693
-
16198
+
16199
+ object.drawEditHandles(//info,
16200
+ 0);
16201
+
16202
+ if (drag && (X != 0 || Y != 0))
16203
+ {
16204
+ switch (hitSomething)
16205
+ {
16206
+ case Object3D.hitCenter: gr.setColor(Color.white);
16207
+ gr.drawLine(X, Y, info.bounds.width/2, info.bounds.height/2);
16208
+ break;
16209
+ case Object3D.hitRotate: gr.setColor(Color.yellow);
16210
+ gr.drawLine(X, Y, info.bounds.width/2, info.bounds.height/2);
16211
+ break;
16212
+ case Object3D.hitScale: gr.setColor(Color.cyan);
16213
+ gr.drawLine(X, Y, info.bounds.width/2, info.bounds.height/2);
16214
+ break;
16215
+ }
16216
+
16217
+ }
1569416218 }
1569516219 }
1569616220 }
....@@ -15705,7 +16229,7 @@
1570516229 if (hasMarquee)
1570616230 {
1570716231 gr.setXORMode(Color.white);
15708
- gr.setColor(Color.red);
16232
+ gr.setColor(Color.white);
1570916233 if (!firstime)
1571016234 {
1571116235 gr.drawRect(prevmarqX, prevmarqY, prevmarqW, prevmarqH);
....@@ -16172,6 +16696,8 @@
1617216696 private /*static*/ boolean firstime;
1617316697 private /*static*/ cVector newView = new cVector();
1617416698 private static final String[] suffixes = {"posx", "negx", "posy", "negy", "posz", "negz"};
16699
+ private static final String[] suffixes2 = {"east", "west", "top", "bottom", "north", "south"};
16700
+ private static final String[] suffixes3 = {"ft", "bk", "up", "dn", "rt", "lf"};
1617516701 private static final int[] targets = {GL.GL_TEXTURE_CUBE_MAP_POSITIVE_X,
1617616702 GL.GL_TEXTURE_CUBE_MAP_NEGATIVE_X,
1617716703 GL.GL_TEXTURE_CUBE_MAP_POSITIVE_Y,
....@@ -16184,29 +16710,67 @@
1618416710 {
1618516711 com.sun.opengl.util.texture.Texture cubemap = TextureIO.newTexture(GL.GL_TEXTURE_CUBE_MAP);
1618616712
16713
+ int usedsuf = 0;
16714
+
1618716715 for (int i = 0; i < suffixes.length; i++)
1618816716 {
16189
- String resourceName = basename + suffixes[i] + "." + suffix;
16190
- TextureData data = TextureIO.newTextureData(scope.getResourceAsStream(resourceName),
16191
- mipmapped,
16192
- FileUtil.getFileSuffix(resourceName));
16193
- if (data == null)
16717
+ String[] suffixe = suffixes;
16718
+ String[] fallback = suffixes2;
16719
+ String[] fallfallback = suffixes3;
16720
+
16721
+ for (int c=usedsuf; --c>=0;)
1619416722 {
16195
- throw new IOException("Unable to load texture " + resourceName);
16723
+// String[] temp = suffixe;
16724
+// suffixe = fallback;
16725
+// fallback = fallfallback;
16726
+// fallfallback = temp;
1619616727 }
16728
+
16729
+ String resourceName = basename + suffixe[i] + "." + suffix;
16730
+ TextureData data;
16731
+
16732
+ try
16733
+ {
16734
+ data = TextureIO.newTextureData(scope.getResourceAsStream(resourceName),
16735
+ mipmapped,
16736
+ FileUtil.getFileSuffix(resourceName));
16737
+ }
16738
+ catch (Exception e)
16739
+ {
16740
+ try
16741
+ {
16742
+ resourceName = basename + fallback[i] + "." + suffix;
16743
+ data = TextureIO.newTextureData(scope.getResourceAsStream(resourceName),
16744
+ mipmapped,
16745
+ FileUtil.getFileSuffix(resourceName));
16746
+ }
16747
+ catch (Exception e2)
16748
+ {
16749
+ resourceName = basename + fallfallback[i] + "." + suffix;
16750
+ data = TextureIO.newTextureData(scope.getResourceAsStream(resourceName),
16751
+ mipmapped,
16752
+ FileUtil.getFileSuffix(resourceName));
16753
+ }
16754
+ }
16755
+
1619716756 //System.out.println("Target = " + targets[i]);
1619816757 cubemap.updateImage(data, targets[i]);
1619916758 }
1620016759
1620116760 return cubemap;
1620216761 }
16762
+
1620316763 int bigsphere = -1;
1620416764
1620516765 float BGcolor = 0.5f;
1620616766
16207
- private void DrawSkyBox(GL gl)
16767
+ float ambientLight[] = {1f, 1f, 1f, 1.0f};
16768
+
16769
+ private void DrawSkyBox(GL gl, float ratio)
1620816770 {
16209
- if (envyoff || cubemap == null)
16771
+ if (//envyoff ||
16772
+ WIREFRAME ||
16773
+ cubemap == null)
1621016774 {
1621116775 gl.glClearColor(BGcolor, BGcolor, BGcolor, 1);
1621216776 gl.glClear(gl.GL_COLOR_BUFFER_BIT);
....@@ -16221,7 +16785,17 @@
1622116785 // Compensates for ExaminerViewer's modification of modelview matrix
1622216786 gl.glMatrixMode(GL.GL_MODELVIEW);
1622316787 gl.glLoadIdentity();
16788
+ gl.glScalef(1,ratio,1);
1622416789
16790
+// colorV[0] = 2;
16791
+// colorV[1] = 2;
16792
+// colorV[2] = 2;
16793
+// colorV[3] = 1;
16794
+// gl.glDisable(gl.GL_COLOR_MATERIAL);
16795
+// gl.glMaterialfv(gl.GL_FRONT_AND_BACK, gl.GL_AMBIENT, colorV, 0);
16796
+//
16797
+// gl.glLightModelfv(gl.GL_LIGHT_MODEL_AMBIENT, ambientLight, 0);
16798
+
1622516799 //gl.glActiveTexture(GL.GL_TEXTURE1);
1622616800 //gl.glDisable(GL.GL_TEXTURE_CUBE_MAP);
1622716801
....@@ -16253,6 +16827,7 @@
1625316827 {
1625416828 gl.glScalef(1.0f, -1.0f, 1.0f);
1625516829 }
16830
+ gl.glScalef(-1.0f, 1.0f, 1.0f);
1625616831 gl.glMultMatrixd(viewrot_1, 0);
1625716832 gl.glTranslatef(0, 0, 0.5f); // (float)lightCamera.Distance()); // 0.5f);
1625816833 //viewer.updateInverseRotation(gl);
....@@ -16293,7 +16868,8 @@
1629316868 gl.glDisable(GL.GL_TEXTURE_GEN_R);
1629416869
1629516870 cubemap.disable();
16296
- ////cubemap.unbind();
16871
+ //cubemap.dispose();
16872
+
1629716873 if (CULLFACE)
1629816874 {
1629916875 gl.glEnable(gl.GL_CULL_FACE);
....@@ -16488,6 +17064,14 @@
1648817064 }
1648917065 }
1649017066
17067
+ private Object3D GetFolder()
17068
+ {
17069
+ Object3D folder = object.GetWindow().copy;
17070
+ if (object.GetWindow().copy.selection.Size() > 0)
17071
+ folder = object.GetWindow().copy.selection.elementAt(0);
17072
+ return folder;
17073
+ }
17074
+
1649117075 class SelectBuffer implements GLEventListener
1649217076 {
1649317077
....@@ -16503,7 +17087,7 @@
1650317087 //new Exception().printStackTrace();
1650417088 System.out.println("select buffer init");
1650517089 // Use debug pipeline
16506
- drawable.setGL(new DebugGL(drawable.getGL()));
17090
+ //drawable.setGL(new DebugGL(drawable.getGL()));
1650717091
1650817092 GL gl = drawable.getGL();
1650917093
....@@ -16567,6 +17151,17 @@
1656717151
1656817152 //gl.glDisable(GL.GL_POLYGON_OFFSET_FILL);
1656917153
17154
+ if (PAINTMODE)
17155
+ {
17156
+ if (object.GetWindow().copy.selection.Size() > 0)
17157
+ {
17158
+ Object3D paintobj = object.GetWindow().copy.selection.elementAt(0);
17159
+
17160
+ // Make what you paint not selectable.
17161
+ paintobj.ResetSelectable();
17162
+ }
17163
+ }
17164
+
1657017165 //int tmp = selection_view;
1657117166 //selection_view = -1;
1657217167 int temp = DrawMode();
....@@ -16578,6 +17173,17 @@
1657817173 // temp = DEFAULT; // patch for selection debug
1657917174 Globals.drawMode = temp; // WARNING
1658017175
17176
+ if (PAINTMODE)
17177
+ {
17178
+ if (object.GetWindow().copy.selection.Size() > 0)
17179
+ {
17180
+ Object3D paintobj = object.GetWindow().copy.selection.elementAt(0);
17181
+
17182
+ // Revert.
17183
+ paintobj.RestoreSelectable();
17184
+ }
17185
+ }
17186
+
1658117187 //gl.glBindTexture(GL.GL_TEXTURE_2D, selection_view);
1658217188
1658317189 // trying different ways of getting the depth info over
....@@ -16681,29 +17287,31 @@
1668117287 }
1668217288
1668317289 if (!movingcamera && !PAINTMODE)
16684
- object.editWindow.ScreenFitPoint(); // fev 2014
17290
+ object.GetWindow().ScreenFitPoint(); // fev 2014
1668517291
16686
- if (PAINTMODE && Grafreed.clipboard.size() == 1) // object.editWindow.copy.selection.Size() > 0)
17292
+ if (PAINTMODE) // && Grafreed.clipboard.size() == 1) // object.editWindow.copy.selection.Size() > 0)
1668717293 {
16688
- Object3D paintobj = Grafreed.clipboard.get(0); // object.editWindow.copy.selection.elementAt(0);
17294
+ //Object3D paintobj; // = Grafreed.clipboard.get(0); // object.editWindow.copy.selection.elementAt(0);
1668917295
16690
- Object3D group = new Object3D("inst" + paintcount++);
17296
+ if (object.GetWindow().copy.selection.Size() > 0)
17297
+ {
17298
+ Object3D paintobj = object.GetWindow().copy.selection.elementAt(0);
1669117299
16692
- group.CreateMaterial(); // use a void leaf to select instances
16693
-
16694
- group.add(paintobj); // link
16695
-
16696
- object.editWindow.SnapObject(group);
16697
-
16698
- Object3D folder = object.editWindow.copy;
16699
-
16700
- if (object.editWindow.copy.selection.Size() > 0)
16701
- folder = object.editWindow.copy.selection.elementAt(0);
16702
-
16703
- folder.add(group);
16704
-
16705
- object.editWindow.ResetModel();
16706
- object.editWindow.refreshContents();
17300
+ Object3D inst = new Object3D("inst" + paintcount++);
17301
+
17302
+ inst.CreateMaterial(); // use a void leaf to select instances
17303
+
17304
+ inst.add(paintobj); // link
17305
+
17306
+ object.GetWindow().SnapObject(inst);
17307
+
17308
+ Object3D folder = paintFolder; // GetFolder();
17309
+
17310
+ folder.add(inst);
17311
+
17312
+ object.GetWindow().ResetModel();
17313
+ object.GetWindow().refreshContents();
17314
+ }
1670717315 }
1670817316 else
1670917317 paintcount = 0;
....@@ -16742,6 +17350,11 @@
1674217350 //System.out.println("objects[color] = " + objects[color]);
1674317351 //objects[color].Select();
1674417352 indexcount = 0;
17353
+ ObjEditor window = object.GetWindow();
17354
+ if (window != null && deselect)
17355
+ {
17356
+ window.Select(null, deselect, true);
17357
+ }
1674517358 object.Select(color, deselect);
1674617359 }
1674717360
....@@ -16792,6 +17405,7 @@
1679217405
1679317406 public void init(GLAutoDrawable drawable)
1679417407 {
17408
+ if (Globals.DEBUG)
1679517409 System.out.println("shadow buffer init");
1679617410
1679717411 GL gl = drawable.getGL();
....@@ -17020,10 +17634,14 @@
1702017634 gl.glFlush();
1702117635
1702217636 /**/
17023
- gl.glReadPixels(0, 0, OCCLUSION_SIZE, OCCLUSION_SIZE, GL.GL_DEPTH_COMPONENT, GL.GL_FLOAT, occlusionsizebuffer);
17637
+ gl.glReadPixels(0, 0, OCCLUSION_SIZE, OCCLUSION_SIZE, GL.GL_DEPTH_COMPONENT, GL.GL_FLOAT, occlusiondepthbuffer);
1702417638
17025
- float[] pixels = occlusionsizebuffer.array();
17639
+ float[] depths = occlusiondepthbuffer.array();
1702617640
17641
+ gl.glReadPixels(0, 0, OCCLUSION_SIZE, OCCLUSION_SIZE, GL.GL_BGRA, GL.GL_UNSIGNED_INT_8_8_8_8_REV, occlusioncolorbuffer);
17642
+
17643
+ int[] pixels = selectsizebuffer.array();
17644
+
1702717645 double r = 0, g = 0, b = 0;
1702817646
1702917647 double count = 0;
....@@ -17034,7 +17652,7 @@
1703417652
1703517653 double FACTOR = 1;
1703617654
17037
- for (int i = 0; i < pixels.length; i++)
17655
+ for (int i = 0; i < depths.length; i++)
1703817656 {
1703917657 int x = i / OCCLUSION_SIZE - OCCLUSION_SIZE / 2;
1704017658 int y = i % OCCLUSION_SIZE - OCCLUSION_SIZE / 2;
....@@ -17117,7 +17735,7 @@
1711717735
1711817736 double scale = ray.z; // 1; // cos
1711917737
17120
- float depth = pixels[newindex];
17738
+ float depth = depths[newindex];
1712117739
1712217740 /*
1712317741 int newindex2 = (x + 1) * OCCLUSION_SIZE + y;
....@@ -17314,11 +17932,14 @@
1731417932 static IntBuffer AAbuffer; // = IntBuffer.allocate(MAX_SIZE*MAX_SIZE);
1731517933 static IntBuffer bigAAbuffer;
1731617934 static java.nio.FloatBuffer histogram = BufferUtil.newFloatBuffer(HISTOGRAM_SIZE * 3);
17317
- static IntBuffer texturesizebuffer = IntBuffer.allocate(TEX_SIZE * TEX_SIZE);
17935
+ //static IntBuffer texturesizebuffer = IntBuffer.allocate(TEX_SIZE * TEX_SIZE);
1731817936 static IntBuffer selectsizebuffer = IntBuffer.allocate(SELECT_SIZE * SELECT_SIZE);
1731917937 static java.nio.FloatBuffer pointselectsizebuffer = java.nio.FloatBuffer.allocate(SELECT_SIZE * SELECT_SIZE);
1732017938 //static IntBuffer occlusionsizebuffer = IntBuffer.allocate(OCCLUSION_SIZE * OCCLUSION_SIZE);
17321
- static java.nio.FloatBuffer occlusionsizebuffer = java.nio.FloatBuffer.allocate(OCCLUSION_SIZE * OCCLUSION_SIZE);
17939
+ static java.nio.FloatBuffer occlusiondepthbuffer = java.nio.FloatBuffer.allocate(OCCLUSION_SIZE * OCCLUSION_SIZE);
17940
+
17941
+ static IntBuffer occlusioncolorbuffer = IntBuffer.allocate(OCCLUSION_SIZE * OCCLUSION_SIZE);
17942
+
1732217943 static BufferedImage bufimage = new BufferedImage(TEX_SIZE, TEX_SIZE, BufferedImage.TYPE_INT_RGB);
1732317944 static BufferedImage textest = new cBufferedImage(1, 1, BufferedImage.TYPE_INT_ARGB);
1732417945 static java.util.Vector<BufferedImage> billboards = new java.util.Vector<BufferedImage>();