Normand Briere
2019-10-04 57c5b6cd8d12ffdaa3e0b099451e3c031012750a
CameraPane.java
....@@ -1,4 +1,5 @@
11
2
+import com.bulletphysics.dynamics.RigidBody;
23 import java.awt.*;
34 import java.awt.event.*;
45 import java.awt.image.*;
....@@ -18,7 +19,10 @@
1819 import javax.imageio.ImageIO;
1920 import javax.imageio.ImageWriteParam;
2021 import javax.imageio.ImageWriter;
22
+import javax.imageio.ImageReadParam;
23
+import javax.imageio.ImageReader;
2124 import javax.imageio.plugins.jpeg.JPEGImageWriteParam;
25
+import javax.imageio.stream.ImageInputStream;
2226 import javax.imageio.stream.ImageOutputStream;
2327 import javax.imageio.ImageWriteParam;
2428
....@@ -30,6 +34,7 @@
3034 import java.nio.*;
3135
3236 import gleem.linalg.Mat4f;
37
+import javax.imageio.ImageTypeSpecifier;
3338
3439 class CameraPane extends GLCanvas implements iCameraPane, Runnable, GLEventListener, ActionListener, MouseWheelListener, MouseMotionListener, MouseListener, KeyListener
3540 {
....@@ -44,6 +49,39 @@
4449 static boolean ABORTED = false;
4550
4651 static int STEP = 1;
52
+
53
+ private static BufferedImage CreateBim(byte[] bytes, int width, int height)
54
+ {
55
+ int[] pixels = new int[bytes.length/3];
56
+ for (int i=pixels.length; --i>=0;)
57
+ {
58
+ int i3 = i*3;
59
+ pixels[i] = 0xFF;
60
+ pixels[i] <<= 8;
61
+ pixels[i] |= bytes[i3+2] & 0xFF;
62
+ pixels[i] <<= 8;
63
+ pixels[i] |= bytes[i3+1] & 0xFF;
64
+ pixels[i] <<= 8;
65
+ pixels[i] |= bytes[i3] & 0xFF;
66
+ }
67
+ /*
68
+ int r=0,g=0,b=0,a=0;
69
+ for (int i=0; i<width; i++)
70
+ for (int j=0; j<height; j++)
71
+ {
72
+ int index = j*width+i;
73
+ int p = pixels[index];
74
+ a = ((p>>24) & 0xFF);
75
+ r = ((p>>16) & 0xFF);
76
+ g = ((p>>8) & 0xFF);
77
+ b = (p & 0xFF);
78
+ pixels[index] = (a<<24) | (b<<16) | (g<<8) | r;
79
+ }
80
+ /**/
81
+ BufferedImage rendImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); // ImageIO.read(infile);
82
+ rendImage.setRGB(0,0,width,height,pixels,width*(height-1),-width);
83
+ return rendImage;
84
+ }
4785
4886 /*static*/ private boolean CULLFACE = false; // true;
4987 /*static*/ boolean NEAREST = false; // true;
....@@ -60,7 +98,7 @@
6098 //boolean REDUCETEXTURE = true;
6199 boolean CACHETEXTURE = true;
62100 boolean CLEANCACHE = false; // true;
63
- boolean MIPMAP = true; // false; // true;
101
+ boolean MIPMAP = false; // true; // never works...
64102 boolean COMPRESSTEXTURE = false;
65103 boolean KOMPACTTEXTURE = false; // true;
66104 boolean RESIZETEXTURE = false;
....@@ -73,7 +111,11 @@
73111 //private Mat4f spotlightTransform = new Mat4f();
74112 //private Mat4f spotlightInverseTransform = new Mat4f();
75113 static GLContext glcontext = null;
76
- /*static*/ com.sun.opengl.util.texture.Texture cubemap;
114
+ /*static*/ com.sun.opengl.util.texture.Texture cubemap; // Either custom or rgb
115
+ /*static*/ com.sun.opengl.util.texture.Texture cubemapcustom;
116
+ /*static*/ com.sun.opengl.util.texture.Texture cubemaprgb;
117
+ boolean transformMode;
118
+
77119 boolean reverseUP = false;
78120 static boolean frozen = false;
79121 boolean enablebackspace = false; // patch for back buffer refresh
....@@ -82,7 +124,7 @@
82124 static boolean LOCALTRANSFORM = false;
83125 static boolean FULLSCREEN = false;
84126 static boolean SUPPORT = true;
85
-static boolean INERTIA = true;
127
+static boolean INERTIA = false; // true;
86128 static boolean FAST = false;
87129 static boolean SLOWPOSE = false;
88130 static boolean FOOTCONTACT = true;
....@@ -93,7 +135,7 @@
93135 static boolean ZOOMBOXMODE = false;
94136 static boolean BOXMODE = false;
95137 static boolean IMAGEFLIP = false;
96
-static boolean SMOOTHFOCUS = false;
138
+static boolean SMOOTHFOCUS = true; // false;
97139 static boolean SPEAKERMOCAP = true; // jan 2014 false;
98140 static boolean SPEAKERCAMERA = false;
99141 static boolean SPEAKERFOCUS = false;
....@@ -127,16 +169,16 @@
127169
128170
129171 // OPTIONS
130
- boolean Skinshader = true;
172
+ boolean Skinshader = false; // true;
131173 boolean cameraLight = false;
132174 boolean UVdebug = false;
133175 boolean Udebug = false;
134176 boolean Vdebug = false;
135177 boolean NORMALdebug = false;
136
- static boolean doublesided = false; // true; // reversed normals are awful for conformance
178
+ static boolean doublesided = true; // false; // reversed normals are awful for conformance
137179 boolean anisotropy = true;
138180 boolean softshadow = true; // slower but better false;
139
- boolean opacityhalo = false;
181
+ boolean opacityhalo = false; // reverse the halo effect (e.g. glass)
140182
141183 boolean macromode = false;
142184
....@@ -150,6 +192,19 @@
150192 }
151193
152194 private File defaultDirectory = javax.swing.filechooser.FileSystemView.getFileSystemView().getDefaultDirectory();
195
+
196
+ public com.sun.opengl.util.texture.Texture LoadSkybox(String name, String ext, boolean mipmap) throws GLException
197
+ {
198
+ try
199
+ {
200
+ return LoadCubemap(getClass().getClassLoader(), name, ext, mipmap);
201
+ } catch (IOException e)
202
+ {
203
+ System.out.println("NAME = " + name);
204
+ e.printStackTrace(); // throw new RuntimeException(e);
205
+ return null;
206
+ }
207
+ }
153208
154209 void SetAsGLRenderer(boolean b)
155210 {
....@@ -167,9 +222,10 @@
167222 cameras = new Camera[2];
168223 targetLookAts = new cVector[2];
169224
170
- SetCamera(cam);
225
+ SetCamera(cam, true);
171226
172
- SetLight(new Camera(new cVector(10, 10, -20)));
227
+ // Warning: not used.
228
+ //SetLight(new Camera(new cVector(15, 10, -20)));
173229
174230 object = o;
175231
....@@ -194,7 +250,7 @@
194250
195251 public javax.media.opengl.GL GetGL0()
196252 {
197
- return null;
253
+ return currentGL;
198254 }
199255
200256 public int GenList()
....@@ -487,7 +543,8 @@
487543 LA.vecSub(pv/*.pos*/, rv/*.pos*/, obj.v1);
488544 LA.vecCross(obj.v0, obj.v1, obj.v2);
489545 LA.vecNormalize(obj.v2);
490
- gl.glNormal3f((float) obj.v2.x, (float) obj.v2.y, (float) obj.v2.z);
546
+
547
+ SetGLNormal(gl, (float) obj.v2.x, (float) obj.v2.y, (float) obj.v2.z);
491548 }
492549
493550 // P
....@@ -509,7 +566,7 @@
509566 y += ny * obj.NORMALPUSH;
510567 z += nz * obj.NORMALPUSH;
511568
512
- gl.glNormal3f(nx, ny, nz);
569
+ SetGLNormal(gl, nx, ny, nz);
513570 }
514571 gl.glColor4f(pv.AO, pv.AO, pv.AO, 1);
515572 SetColor(obj, pv);
....@@ -541,7 +598,7 @@
541598 y += ny * obj.NORMALPUSH;
542599 z += nz * obj.NORMALPUSH;
543600
544
- gl.glNormal3f(nx, ny, nz);
601
+ SetGLNormal(gl, nx, ny, nz);
545602 }
546603 //System.out.println("vertexq = " + qv.s + ", " + qv.t);
547604 // boolean locked = false;
....@@ -589,7 +646,7 @@
589646 y += ny * obj.NORMALPUSH;
590647 z += nz * obj.NORMALPUSH;
591648
592
- gl.glNormal3f(nx, ny, nz);
649
+ SetGLNormal(gl, nx, ny, nz);
593650 }
594651
595652 // if ((dot&4) == 0)
....@@ -825,7 +882,7 @@
825882 //// tris.postdraw(this);
826883 }
827884
828
- static Camera localcamera = new Camera();
885
+ static Camera localAOcamera = new Camera();
829886 static cVector from = new cVector();
830887 static cVector to = new cVector();
831888
....@@ -834,7 +891,7 @@
834891 CameraPane cp = this;
835892
836893 Camera keep = cp.RenderCamera();
837
- cp.renderCamera = localcamera;
894
+ cp.renderCamera = localAOcamera;
838895
839896 if (br.trimmed)
840897 {
....@@ -852,7 +909,7 @@
852909 br.positions[i3 + 2] + br.normals[i3 + 2]);
853910 LA.xformPos(from, transform, from);
854911 LA.xformPos(to, transform, to); // RIGID ONLY
855
- localcamera.setAim(from, to);
912
+ localAOcamera.setAim(from, to);
856913
857914 CameraPane.occlusionbuffer.display();
858915
....@@ -886,7 +943,7 @@
886943 to.set(v.x+v.norm.x, v.y+v.norm.y, v.z+v.norm.z);
887944 LA.xformPos(from, transform, from);
888945 LA.xformPos(to, transform, to); // RIGID ONLY
889
- localcamera.setAim(from, to);
946
+ localAOcamera.setAim(from, to);
890947
891948 CameraPane.occlusionbuffer.display();
892949
....@@ -1195,10 +1252,10 @@
11951252 {
11961253 if (n[count3] != 0 || n[count3 + 1] != 0 || n[count3 + 2] != 0)
11971254 {
1198
- gl.glNormal3f(n[count3], n[count3 + 1], n[count3 + 2]);
1255
+ SetGLNormal(gl, n[count3], n[count3 + 1], n[count3 + 2]);
11991256 } else
12001257 {
1201
- gl.glNormal3f(0, 0, 1);
1258
+ SetGLNormal(gl, 0, 0, 1);
12021259 }
12031260
12041261 if (c != null)
....@@ -1222,10 +1279,10 @@
12221279 {
12231280 if (n[count3] != 0 || n[count3 + 1] != 0 || n[count3 + 2] != 0)
12241281 {
1225
- gl.glNormal3f(n[count3], n[count3 + 1], n[count3 + 2]);
1282
+ SetGLNormal(gl, n[count3], n[count3 + 1], n[count3 + 2]);
12261283 } else
12271284 {
1228
- gl.glNormal3f(0, 0, 1);
1285
+ SetGLNormal(gl, 0, 0, 1);
12291286 }
12301287 if (c != null)
12311288 {
....@@ -1250,10 +1307,10 @@
12501307 {
12511308 if (n[count3] != 0 || n[count3 + 1] != 0 || n[count3 + 2] != 0)
12521309 {
1253
- gl.glNormal3f(n[count3], n[count3 + 1], n[count3 + 2]);
1310
+ SetGLNormal(gl, n[count3], n[count3 + 1], n[count3 + 2]);
12541311 } else
12551312 {
1256
- gl.glNormal3f(0, 0, 1);
1313
+ SetGLNormal(gl, 0, 0, 1);
12571314 }
12581315 if (c != null)
12591316 {
....@@ -1435,7 +1492,7 @@
14351492 {
14361493 if (!selectmode)
14371494 {
1438
- gl.glNormal3f((float) pv.norm.x, (float) pv.norm.y, (float) pv.norm.z);
1495
+ SetGLNormal(gl, (float) pv.norm.x, (float) pv.norm.y, (float) pv.norm.z);
14391496 gl.glColor4f(pv.AO, pv.AO, pv.AO, 1);
14401497
14411498 if (flipV)
....@@ -1447,6 +1504,8 @@
14471504 gl.glVertex3f((float) pv.x, (float) pv.y, (float) pv.z);
14481505 }
14491506
1507
+ float[] colorV = new float[4];
1508
+
14501509 void SetColor(Object3D obj, Vertex p0)
14511510 {
14521511 CameraPane display = this;
....@@ -1471,7 +1530,7 @@
14711530 }
14721531 }
14731532 float b = 0;
1474
- if (obj.support != null && obj.link2master)
1533
+ if (obj.support != null && obj.Link2Support())
14751534 {
14761535 b = 1;
14771536 }
....@@ -1514,8 +1573,6 @@
15141573 {
15151574 return;
15161575 }
1517
-
1518
- float[] colorV = new float[3];
15191576
15201577 if (false) // marked)
15211578 {
....@@ -1764,7 +1821,7 @@
17641821
17651822 display.modelParams7[0] = 0;
17661823 display.modelParams7[1] = 1000;
1767
- display.modelParams7[2] = 0;
1824
+ display.modelParams7[2] = material.parallax;
17681825 display.modelParams7[3] = 0;
17691826
17701827 //display.modelParams6[0] = 100; // criss de bug de bump
....@@ -1997,9 +2054,9 @@
19972054 switch(viewcode)
19982055 {
19992056 case 0: return "main";
2000
- case 1: return "one";
2001
- case 2: return "two";
2002
- case 3: return "three";
2057
+ case 1: return "Red";
2058
+ case 2: return "Green";
2059
+ case 3: return "Blue";
20032060 case 4: return "light";
20042061 }
20052062
....@@ -2008,7 +2065,7 @@
20082065
20092066 static int camerachangeframe;
20102067
2011
- public boolean SetCamera(Camera cam)
2068
+ public boolean SetCamera(Camera cam, boolean set)
20122069 {
20132070 // may 2014 if (cam == cameras[0] || cam == cameras[1])
20142071 // return false;
....@@ -2026,7 +2083,8 @@
20262083
20272084 camerachangeframe = Globals.framecount;
20282085
2029
- cam.hAspect = -1; // Read only
2086
+ if (cam != null)
2087
+ cam.hAspect = -1; // Read only
20302088
20312089 cameras[0] = cam;
20322090 targetLookAts[0] = new cVector(cam.lookAt);
....@@ -2036,11 +2094,14 @@
20362094 {
20372095 cameras[i] = new Camera(cam.viewCode);
20382096 }
2039
-
2040
- cameras[i].setAim(cam.location, cam.lookAt);
2041
- cameras[i].shaper_fovy = cam.shaper_fovy;
2042
- cameras[i].UP.set(cam.UP);
2043
- targetLookAts[i] = new cVector(cameras[i].lookAt);
2097
+
2098
+ if (set)
2099
+ {
2100
+ cameras[i].setAim(cam.location, cam.lookAt);
2101
+ cameras[i].shaper_fovy = cam.shaper_fovy;
2102
+ cameras[i].UP.set(cam.UP);
2103
+ targetLookAts[i] = new cVector(cameras[i].lookAt);
2104
+ }
20442105 }
20452106 cameracount = 0;
20462107 targetLookAt = targetLookAts[cameracount];
....@@ -2049,7 +2110,7 @@
20492110 // Start with free camera
20502111 SwitchCameras(true);
20512112
2052
- pingthread.jump = true; // optional?
2113
+// pingthread.jump = true; // optional?
20532114
20542115 if (TRACKONCE)
20552116 {
....@@ -2236,18 +2297,6 @@
22362297 public void ToggleTrack()
22372298 {
22382299 TRACK ^= true;
2239
- if (TRACK)
2240
- {
2241
- if (object.selection != null &&
2242
- object.selection.size() > 0 &&
2243
- object.selection.elementAt(0) != null &&
2244
- !(object.selection.elementAt(0) instanceof Camera) &&
2245
- !(object.selection.elementAt(0) instanceof ScriptNode))
2246
- {
2247
- trackedobject = object.selection.elementAt(0);
2248
- repaint();
2249
- }
2250
- }
22512300
22522301 repaint();
22532302 }
....@@ -2339,7 +2388,8 @@
23392388 {
23402389 //System.out.println("PROTECTION = " + cam.hAspect);
23412390 //assert (cam.hAspect == 0);
2342
- cam.hAspect = 0;
2391
+ if (cam != null)
2392
+ cam.hAspect = 0;
23432393 lightCamera = cam;
23442394 }
23452395
....@@ -2405,6 +2455,33 @@
24052455 return currentGL;
24062456 }
24072457
2458
+ static private BufferedImage CreateBim(TextureData texturedata)
2459
+ {
2460
+ Grafreed.Assert(texturedata != null);
2461
+
2462
+ int width = texturedata.getWidth();
2463
+ int height = texturedata.getHeight();
2464
+
2465
+ Buffer buffer = texturedata.getBuffer();
2466
+ ByteBuffer bytebuf = (ByteBuffer)buffer;
2467
+
2468
+ byte[] bytes = bytebuf.array();
2469
+
2470
+ return CreateBim(bytes, width, height);
2471
+ }
2472
+
2473
+ private void SetGLNormal(javax.media.opengl.GL gl, float nx, float ny, float nz)
2474
+ {
2475
+ gl.glNormal3f(nx, ny, nz);
2476
+
2477
+ if (ny > 0.9 || ny < -0.9)
2478
+ // Ground or ceiling
2479
+ gl.glVertexAttrib3f(4, 1, 0, 0);
2480
+ else
2481
+ // Walls
2482
+ gl.glVertexAttrib3f(4, 0, 1, 0);
2483
+ }
2484
+
24082485 /**/
24092486 class CacheTexture
24102487 {
....@@ -2413,18 +2490,20 @@
24132490
24142491 int resolution;
24152492
2416
- CacheTexture(com.sun.opengl.util.texture.Texture tex, int res)
2493
+ CacheTexture(com.sun.opengl.util.texture.TextureData texdata, int res)
24172494 {
2418
- texture = tex;
2495
+ texture = com.sun.opengl.util.texture.TextureIO.newTexture(texdata);
2496
+ texturedata = texdata;
24192497 resolution = res;
24202498 }
24212499 }
24222500 /**/
24232501
24242502 // TEXTURE static Texture texture;
2425
- static public java.util.Hashtable<String, CacheTexture> textures = new java.util.Hashtable<String, CacheTexture>();
2426
- static public java.util.Hashtable<BufferedImage, CacheTexture> bimtextures = new java.util.Hashtable<BufferedImage, CacheTexture>();
2427
- static public java.util.HashSet<String> usedtextures = new java.util.HashSet<String>();
2503
+ static public Hashtable<cTexture, CacheTexture> texturepigment = new Hashtable<cTexture, CacheTexture>();
2504
+ static public Hashtable<cTexture, CacheTexture> texturebump = new Hashtable<cTexture, CacheTexture>();
2505
+ static public Hashtable<byte[], CacheTexture> bimtextures = new Hashtable<byte[], CacheTexture>();
2506
+ static public java.util.HashSet<cTexture> usedtextures = new java.util.HashSet<cTexture>();
24282507
24292508 int pigmentdepth = 0;
24302509 public com.sun.opengl.util.texture.Texture[] pigmentstack = new com.sun.opengl.util.texture.Texture[65536];
....@@ -2432,10 +2511,10 @@
24322511 public com.sun.opengl.util.texture.Texture[] bumpstack = new com.sun.opengl.util.texture.Texture[65536];
24332512 //public static String DEFAULT_TEXTURE = "DEFAULT_TEXTURE";
24342513 public static cTexture DEFAULT_TEXTURES = new cTexture("DEFAULT_TEXTURE" + ":" + "DEFAULT_TEXTURE_BUMP");
2435
- public static String NOISE_TEXTURE = "WHITE_NOISE";
2514
+ public static cTexture NOISE_TEXTURE = new cTexture("WHITE_NOISE:");
24362515 // public static cTexture IMMORTAL_TEXTURE = new cTexture("IMMORTAL");
24372516
2438
- com.sun.opengl.util.texture.Texture GetResourceTexture(String name, boolean bump)
2517
+ com.sun.opengl.util.texture.TextureData GetResourceTexture(String name, boolean bump)
24392518 {
24402519 TextureData texturedata = null;
24412520
....@@ -2445,7 +2524,7 @@
24452524 com.sun.opengl.util.texture.TextureIO.newTextureData(
24462525 getClass().getClassLoader().getResourceAsStream(name),
24472526 true,
2448
- com.sun.opengl.util.texture.TextureIO.PNG);
2527
+ GetFormat(name)); // com.sun.opengl.util.texture.TextureIO.PNG);
24492528 } catch (java.io.IOException e)
24502529 {
24512530 throw new javax.media.opengl.GLException(e);
....@@ -2454,16 +2533,16 @@
24542533 if (bump)
24552534 texturedata = ConvertBump(texturedata, false);
24562535
2457
- com.sun.opengl.util.texture.Texture texture =
2458
- com.sun.opengl.util.texture.TextureIO.newTexture(texturedata);
2536
+// com.sun.opengl.util.texture.Texture texture =
2537
+// com.sun.opengl.util.texture.TextureIO.newTexture(texturedata);
24592538
2460
- texture.setTexParameteri(javax.media.opengl.GL.GL_TEXTURE_WRAP_S, javax.media.opengl.GL.GL_REPEAT);
2461
- texture.setTexParameteri(javax.media.opengl.GL.GL_TEXTURE_WRAP_T, javax.media.opengl.GL.GL_REPEAT);
2539
+ //texture.setTexParameteri(javax.media.opengl.GL.GL_TEXTURE_WRAP_S, javax.media.opengl.GL.GL_REPEAT);
2540
+ //texture.setTexParameteri(javax.media.opengl.GL.GL_TEXTURE_WRAP_T, javax.media.opengl.GL.GL_REPEAT);
24622541
2463
- return texture;
2542
+ return texturedata;
24642543 }
24652544
2466
- com.sun.opengl.util.texture.Texture GetBimTexture(BufferedImage name, boolean bump)
2545
+ com.sun.opengl.util.texture.TextureData GetBimTexture(BufferedImage bim, boolean bump)
24672546 {
24682547 TextureData texturedata = null;
24692548
....@@ -2471,7 +2550,7 @@
24712550 {
24722551 texturedata =
24732552 com.sun.opengl.util.texture.TextureIO.newTextureData(
2474
- name,
2553
+ bim,
24752554 true);
24762555 } catch (Exception e)
24772556 {
....@@ -2480,14 +2559,8 @@
24802559
24812560 if (bump)
24822561 texturedata = ConvertBump(texturedata, false);
2483
-
2484
- com.sun.opengl.util.texture.Texture texture =
2485
- com.sun.opengl.util.texture.TextureIO.newTexture(texturedata);
2486
-
2487
- texture.setTexParameteri(javax.media.opengl.GL.GL_TEXTURE_WRAP_S, javax.media.opengl.GL.GL_REPEAT);
2488
- texture.setTexParameteri(javax.media.opengl.GL.GL_TEXTURE_WRAP_T, javax.media.opengl.GL.GL_REPEAT);
2489
-
2490
- return texture;
2562
+
2563
+ return texturedata;
24912564 }
24922565
24932566 boolean HUESMOOTH = true; // wrap around bug... true;
....@@ -3517,6 +3590,8 @@
35173590 };
35183591 /**/
35193592
3593
+ static Object3D lastObject;
3594
+
35203595 //com.sun.opengl.util.texture.Texture
35213596 TextureData
35223597 GetFileTexture(String name, boolean bump, int resolution)
....@@ -3553,6 +3628,8 @@
35533628 // return null;
35543629 //if (i == 2)
35553630 // return null;
3631
+ // TIFF issue sept 2019
3632
+ System.err.println("lastObject = " + lastObject);
35563633 e.printStackTrace();
35573634 name = name.split("\\.tif")[0] + ".jpg";
35583635 }
....@@ -6885,30 +6962,30 @@
68856962 short residu = 0;
68866963
68876964 // wraparound workarounds
6888
- short fuck = (short) (buffer[i] & 0xFF);
6965
+ short ww = (short) (buffer[i] & 0xFF);
68896966 /*
6890
- residu += (fuck%2);
6891
- if(fuck/2 < 256-residu/2)
6967
+ residu += (ww%2);
6968
+ if(ww/2 < 256-residu/2)
68926969 {
6893
- fuck = (short)((fuck/2) + residu/2);
6970
+ ww = (short)((ww/2) + residu/2);
68946971 if(residu == 2)
68956972 residu = 0;
68966973 }
68976974 else
68986975 {
68996976 residu = 0;
6900
- fuck /= 2;
6977
+ ww /= 2;
69016978 }
69026979 */
6903
- if (i < imglength / 3 || rnd.nextFloat() < 0.5 || fuck >= 254)
6980
+ if (i < imglength / 3 || rnd.nextFloat() < 0.5 || ww >= 254)
69046981 {
6905
- fuck /= 2;
6982
+ ww /= 2;
69066983 } else
69076984 {
6908
- fuck = (short) ((fuck / 2) + fuck % 2);
6985
+ ww = (short) ((ww / 2) + ww % 2);
69096986 }
69106987
6911
- buffer[i] = (byte) fuck;
6988
+ buffer[i] = (byte) ww;
69126989 }
69136990 //System.out.print(bytes[i] + " ");
69146991 //if(buffer[i] >= 0 && buffer[i]<=eps-1) buffer[i] = eps;
....@@ -7975,8 +8052,8 @@
79758052 pigment = null;
79768053 }
79778054
7978
- ReleaseTexture(bump, true);
7979
- ReleaseTexture(pigment, false);
8055
+ ReleaseTexture(tex, true);
8056
+ ReleaseTexture(tex, false);
79808057 }
79818058
79828059 public void ReleasePigmentTexture(cTexture tex) // INTERFACE
....@@ -8005,7 +8082,7 @@
80058082 pigment = null;
80068083 }
80078084
8008
- ReleaseTexture(pigment, false);
8085
+ ReleaseTexture(tex, false);
80098086 }
80108087
80118088 public void ReleaseBumpTexture(cTexture tex) // INTERFACE
....@@ -8034,10 +8111,10 @@
80348111 bump = null;
80358112 }
80368113
8037
- ReleaseTexture(bump, true);
8114
+ ReleaseTexture(tex, true);
80388115 }
80398116
8040
- void ReleaseTexture(String tex, boolean bump)
8117
+ void ReleaseTexture(cTexture tex, boolean bump)
80418118 {
80428119 if (// DrawMode() != 0 || /*tex == null ||*/
80438120 ambientOcclusion ) // || !textureon)
....@@ -8048,7 +8125,7 @@
80488125 CacheTexture/*com.sun.opengl.util.texture.Texture*/ texture = null;
80498126
80508127 if (tex != null)
8051
- texture = textures.get(tex);
8128
+ texture = bump ? texturebump.get(tex) : texturepigment.get(tex);
80528129
80538130 // //assert( texture != null );
80548131 // if (texture == null)
....@@ -8198,13 +8275,13 @@
81988275
81998276 if (tex == null)
82008277 {
8201
- BindTexture(null, null,false,resolution);
8278
+ BindTexture(null,false,resolution);
82028279 return;
82038280 }
82048281
82058282 String pigment = Object3D.GetPigment(tex);
82068283
8207
- usedtextures.add(pigment);
8284
+ usedtextures.add(tex);
82088285
82098286 //if (!tex.equals(":") && !tex.equals(DEFAULT_TEXTURES))
82108287 {
....@@ -8218,7 +8295,7 @@
82188295 }
82198296
82208297 GetGL().glActiveTexture(GetGL().GL_TEXTURE0);
8221
- BindTexture(tex.pigmenttexture, pigment, false, resolution);
8298
+ BindTexture(tex, false, resolution);
82228299 }
82238300
82248301 /*boolean*/ public void BindBumpTexture(cTexture tex, int resolution) throws Exception // INTERFACE
....@@ -8231,13 +8308,13 @@
82318308
82328309 if (tex == null)
82338310 {
8234
- BindTexture(null, null,true,resolution);
8311
+ BindTexture(null,true,resolution);
82358312 return;
82368313 }
82378314
82388315 String bump = Object3D.GetBump(tex);
82398316
8240
- usedtextures.add(bump);
8317
+ usedtextures.add(tex);
82418318
82428319 //if (!tex.equals(":") && !tex.equals(DEFAULT_TEXTURES))
82438320 {
....@@ -8251,7 +8328,7 @@
82518328 }
82528329
82538330 GetGL().glActiveTexture(GetGL().GL_TEXTURE2);
8254
- BindTexture(tex.bumptexture, bump, true, resolution);
8331
+ BindTexture(tex, true, resolution);
82558332 GetGL().glActiveTexture(GetGL().GL_TEXTURE0);
82568333 }
82578334
....@@ -8275,13 +8352,19 @@
82758352 return fileExists;
82768353 }
82778354
8278
- CacheTexture GetCacheTexture(java.awt.image.BufferedImage bim, String tex, boolean bump, int resolution) throws Exception
8355
+ CacheTexture GetCacheTexture(cTexture tex, boolean bump, int resolution) throws Exception
82798356 {
82808357 CacheTexture texturecache = null;
82818358
82828359 if (tex != null)
82838360 {
8284
- String texname = tex;
8361
+ String texname = bump ? Object3D.GetBump(tex) : Object3D.GetPigment(tex);
8362
+ byte[] texdata = bump ? tex.bumpdata : tex.pigmentdata;
8363
+
8364
+ if (texname.equals("") && texdata == null)
8365
+ {
8366
+ return null;
8367
+ }
82858368
82868369 String fallbackTextureName = defaultDirectory + "/Textures/" + texname;
82878370
....@@ -8291,29 +8374,46 @@
82918374 // else
82928375 // if (!texname.startsWith("/"))
82938376 // texname = "/Users/nbriere/Textures/" + texname;
8294
- if (!FileExists(tex))
8377
+ if (!FileExists(texname) && !texname.startsWith("@"))
82958378 {
82968379 texname = fallbackTextureName;
82978380 }
82988381
82998382 if (CACHETEXTURE)
83008383 {
8301
- if (bim == null)
8302
- texturecache = textures.get(texname); // TEXTURE CACHE
8384
+ if (texdata == null)
8385
+ texturecache = bump ? texturebump.get(tex) : texturepigment.get(tex);
83038386 else
8304
- texturecache = bimtextures.get(bim); // TEXTURE CACHE
8387
+ texturecache = bimtextures.get(texdata);
83058388 }
83068389
8307
- if (texturecache == null || texturecache.resolution < resolution)
8390
+ if (texturecache == null || texturecache.resolution != -1 && texturecache.resolution < resolution)
83088391 {
83098392 TextureData texturedata = null;
83108393
8311
- if (bim == null)
8394
+ if (texdata != null && textureon)
83128395 {
8396
+ BufferedImage bim; // = new BufferedImage(bump?tex.bw:tex.pw, bump?tex.bh:tex.ph, BufferedImage.TYPE_INT_RGB);
83138397
8398
+ try
8399
+ {
8400
+ bim = DecompressJPEG(texdata, bump?tex.bw:tex.pw, bump?tex.bh:tex.ph);
8401
+ }
8402
+ catch (Exception e)
8403
+ {
8404
+ bim = CreateBim(texdata, bump?tex.bw:tex.pw, bump?tex.bh:tex.ph);
8405
+ }
8406
+
8407
+ texturecache = new CacheTexture(GetBimTexture(bim, bump), -1);
8408
+ bimtextures.put(texdata, texturecache);
8409
+
8410
+ //BufferedImage bim3 = new BufferedImage(bump?tex.bw:tex.pw, bump?tex.bh:tex.ph, BufferedImage.TYPE_INT_RGB);
8411
+
8412
+ //Object bim2 = CreateBim(texturecache.texturedata);
8413
+ //bim2 = bim;
83148414 }
83158415 else
8316
- if (tex.equals("DEFAULT_TEXTURE")) // ||*/ tex.equals(""))
8416
+ if (texname.endsWith("DEFAULT_TEXTURE")) // ||*/ tex.equals(""))
83178417 {
83188418 assert(!bump);
83198419 // if (bump)
....@@ -8324,19 +8424,23 @@
83248424 // }
83258425 // else
83268426 // {
8327
- texturecache = textures.get(tex);
8427
+ // texturecache = textures.get(texname); // suspicious
83288428 if (texturecache == null)
83298429 {
83308430 texturecache = new CacheTexture(GetResourceTexture("default.png", bump),resolution);
83318431 }
8432
+ else
8433
+ new Exception().printStackTrace();
83328434 // }
83338435 } else
8334
- if (tex.equals("DEFAULT_TEXTURE_BUMP")) // ||*/ tex.equals(""))
8436
+ if (texname.endsWith("DEFAULT_TEXTURE_BUMP")) // ||*/ tex.equals(""))
83358437 {
83368438 assert(bump);
8337
- texturecache = textures.get(tex);
8439
+ // texturecache = textures.get(texname); // suspicious
83388440 if (texturecache == null)
83398441 texturecache = new CacheTexture(GetResourceTexture("default.png", bump),resolution);
8442
+ else
8443
+ new Exception().printStackTrace();
83408444 } else
83418445 {
83428446 //if (tex.equals("IMMORTAL"))
....@@ -8344,11 +8448,22 @@
83448448 // texture = GetResourceTexture("default.png");
83458449 //} else
83468450 //{
8347
- if (tex.equals("WHITE_NOISE"))
8451
+ if (texname.endsWith("WHITE_NOISE"))
83488452 {
8349
- texturecache = textures.get(tex);
8453
+ // texturecache = textures.get(texname); // suspicious
83508454 if (texturecache == null)
8351
- texturecache = new CacheTexture(GetResourceTexture("whitenoise.png", bump),resolution);
8455
+ texturecache = new CacheTexture(GetResourceTexture("whitenoise.jpg", bump),resolution);
8456
+ else
8457
+ new Exception().printStackTrace();
8458
+ } else
8459
+ {
8460
+ if (texname.startsWith("@") && textureon)
8461
+ {
8462
+ // texturecache = textures.get(texname); // suspicious
8463
+ if (texturecache == null)
8464
+ texturecache = new CacheTexture(GetResourceTexture(texname.substring(1), bump),resolution);
8465
+ else
8466
+ new Exception().printStackTrace();
83528467 } else
83538468 {
83548469 if (textureon)
....@@ -8407,14 +8522,15 @@
84078522 if (texturedata == null)
84088523 throw new Exception();
84098524
8410
- texturecache = new CacheTexture(com.sun.opengl.util.texture.TextureIO.newTexture(texturedata),resolution);
8525
+ texturecache = new CacheTexture(texturedata,resolution);
84118526 //texture = GetTexture(tex, bump);
84128527 }
8528
+ }
84138529 }
84148530 //}
84158531 }
84168532
8417
- if (/*CACHETEXTURE &&*/ texturecache != null && textureon)
8533
+ if (texdata == null && /*CACHETEXTURE &&*/ texturecache != null && textureon)
84188534 {
84198535 //return false;
84208536
....@@ -8436,52 +8552,17 @@
84368552 File cachefile = new File(texname.substring(0, texname.length()-4)+ext+".jpg");
84378553 if (!cachefile.exists())
84388554 {
8439
- // cache to disk
8440
- Buffer buffer = texturedata.getBuffer(); // getMipmapData();
8441
- //buffers[0].
8442
-
8443
- ByteBuffer bytebuf = (ByteBuffer)buffer; // ).asIntBuffer();
8444
- int[] pixels = new int[bytebuf.capacity()/3];
8445
-
8446
- // squared size heuristic...
8447
- if ((int)Math.sqrt(pixels.length) == Math.sqrt(pixels.length))
8555
+ //if (texturedata.getWidth() == texturedata.getHeight())
84488556 {
8449
- for (int i=pixels.length; --i>=0;)
8450
- {
8451
- int i3 = i*3;
8452
- pixels[i] = 0xFF;
8453
- pixels[i] <<= 8;
8454
- pixels[i] |= bytebuf.get(i3+2) & 0xFF;
8455
- pixels[i] <<= 8;
8456
- pixels[i] |= bytebuf.get(i3+1) & 0xFF;
8457
- pixels[i] <<= 8;
8458
- pixels[i] |= bytebuf.get(i3) & 0xFF;
8459
- }
8460
-
8461
- /*
8462
- int r=0,g=0,b=0,a=0;
8463
- for (int i=0; i<width; i++)
8464
- for (int j=0; j<height; j++)
8465
- {
8466
- int index = j*width+i;
8467
- int p = pixels[index];
8468
- a = ((p>>24) & 0xFF);
8469
- r = ((p>>16) & 0xFF);
8470
- g = ((p>>8) & 0xFF);
8471
- b = (p & 0xFF);
8472
- pixels[index] = (a<<24) | (b<<16) | (g<<8) | r;
8473
- }
8474
- /**/
8475
- int width = (int)Math.sqrt(pixels.length); // squared
8476
- int height = width;
8477
- BufferedImage rendImage = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); // ImageIO.read(infile);
8478
- rendImage.setRGB(0,0,width,height,pixels,width*(height-1),-width);
8557
+ BufferedImage rendImage = CreateBim(texturedata);
8558
+
84798559 ImageWriter writer = null;
84808560 Iterator iter = ImageIO.getImageWritersByFormatName("jpg");
84818561 if (iter.hasNext()) {
84828562 writer = (ImageWriter)iter.next();
84838563 }
8484
- float compressionQuality = 0.9f;
8564
+
8565
+ float compressionQuality = 0.85f;
84858566 try
84868567 {
84878568 ImageOutputStream ios = ImageIO.createImageOutputStream(cachefile);
....@@ -8498,18 +8579,20 @@
84988579 }
84998580 }
85008581 }
8501
-
8582
+
8583
+ Hashtable<cTexture, CacheTexture> textures = bump ? texturebump : texturepigment;
8584
+
85028585 //System.out.println("Texture = " + tex);
8503
- if (textures.containsKey(texname))
8586
+ if (textures.containsKey(tex))
85048587 {
8505
- CacheTexture thetex = textures.get(texname);
8588
+ CacheTexture thetex = textures.get(tex);
85068589 thetex.texture.disable();
85078590 thetex.texture.dispose();
8508
- textures.remove(texname);
8591
+ textures.remove(tex);
85098592 }
85108593
85118594 //texture.texturedata = texturedata;
8512
- textures.put(texname, texturecache);
8595
+ textures.put(tex, texturecache);
85138596
85148597 // newtex = true;
85158598 }
....@@ -8528,9 +8611,45 @@
85288611 return texturecache;
85298612 }
85308613
8531
- com.sun.opengl.util.texture.Texture GetTexture(java.awt.image.BufferedImage stream, String tex, boolean bump, int resolution) throws Exception
8614
+ static void EmbedTextures(cTexture tex)
85328615 {
8533
- CacheTexture texture = GetCacheTexture(stream, tex, bump, resolution);
8616
+ if (tex.pigmentdata == null)
8617
+ {
8618
+ //String texname = Object3D.GetPigment(tex);
8619
+
8620
+ CacheTexture texturecache = texturepigment.get(tex);
8621
+
8622
+ if (texturecache != null)
8623
+ {
8624
+ tex.pw = texturecache.texturedata.getWidth();
8625
+ tex.ph = texturecache.texturedata.getHeight();
8626
+ tex.pigmentdata = //CompressJPEG(CreateBim
8627
+ ((ByteBuffer)texturecache.texturedata.getBuffer()).array()
8628
+ ;
8629
+ //, tex.pw, tex.ph), 0.5f);
8630
+ }
8631
+ }
8632
+
8633
+ if (tex.bumpdata == null)
8634
+ {
8635
+ //String texname = Object3D.GetBump(tex);
8636
+
8637
+ CacheTexture texturecache = texturebump.get(tex);
8638
+
8639
+ if (texturecache != null)
8640
+ {
8641
+ tex.bw = texturecache.texturedata.getWidth();
8642
+ tex.bh = texturecache.texturedata.getHeight();
8643
+ tex.bumpdata = //CompressJPEG(CreateBim(
8644
+ ((ByteBuffer)texturecache.texturedata.getBuffer()).array();
8645
+ //, tex.bw, tex.bh), 0.5f);
8646
+ }
8647
+ }
8648
+ }
8649
+
8650
+ com.sun.opengl.util.texture.Texture GetTexture(cTexture tex, boolean bump, int resolution) throws Exception
8651
+ {
8652
+ CacheTexture texture = GetCacheTexture(tex, bump, resolution);
85348653
85358654 if (bump)
85368655 {
....@@ -8546,14 +8665,14 @@
85468665 return texture!=null?texture.texture:null;
85478666 }
85488667
8549
- public com.sun.opengl.util.texture.TextureData GetTextureData(java.awt.image.BufferedImage stream, String tex, boolean bump, int resolution) throws Exception
8668
+ public com.sun.opengl.util.texture.TextureData GetTextureData(cTexture tex, boolean bump, int resolution) throws Exception
85508669 {
8551
- CacheTexture texture = GetCacheTexture(stream, tex, bump, resolution);
8670
+ CacheTexture texture = GetCacheTexture(tex, bump, resolution);
85528671
85538672 return texture!=null?texture.texturedata:null;
85548673 }
85558674
8556
- boolean BindTexture(java.awt.image.BufferedImage stream, String tex, boolean bump, int resolution) throws Exception
8675
+ boolean BindTexture(cTexture tex, boolean bump, int resolution) throws Exception
85578676 {
85588677 if (/*tex == null ||*/ ambientOcclusion ) // || !textureon)
85598678 {
....@@ -8562,7 +8681,7 @@
85628681
85638682 //boolean newtex = false;
85648683
8565
- com.sun.opengl.util.texture.Texture texture = GetTexture(stream, tex, bump, resolution);
8684
+ com.sun.opengl.util.texture.Texture texture = GetTexture(tex, bump, resolution);
85668685
85678686 if (texture == null)
85688687 return false;
....@@ -8595,6 +8714,72 @@
85958714 return true; // Warning: not used.
85968715 }
85978716
8717
+ public static byte[] CompressJPEG(BufferedImage image, float quality)
8718
+ {
8719
+ try
8720
+ {
8721
+ ByteArrayOutputStream baos = new ByteArrayOutputStream();
8722
+ Iterator<ImageWriter> writers = ImageIO.getImageWritersByFormatName("jpg");
8723
+ ImageWriter writer = writers.next();
8724
+
8725
+ ImageWriteParam param = writer.getDefaultWriteParam();
8726
+ param.setCompressionMode(ImageWriteParam.MODE_EXPLICIT);
8727
+ param.setCompressionQuality(quality);
8728
+
8729
+ ImageOutputStream ios = ImageIO.createImageOutputStream(baos);
8730
+ writer.setOutput(ios);
8731
+ writer.write(null, new IIOImage(image, null, null), param);
8732
+
8733
+ byte[] data = baos.toByteArray();
8734
+ writer.dispose();
8735
+ return data;
8736
+ }
8737
+ catch (Exception e)
8738
+ {
8739
+ e.printStackTrace();
8740
+ return null;
8741
+ }
8742
+ }
8743
+
8744
+ public static BufferedImage DecompressJPEG(byte[] image, int w, int h) throws IOException
8745
+ {
8746
+ ByteArrayInputStream baos = new ByteArrayInputStream(image);
8747
+ Iterator<ImageReader> writers = ImageIO.getImageReadersByFormatName("jpg");
8748
+ ImageReader reader = writers.next();
8749
+
8750
+ BufferedImage bim = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
8751
+
8752
+ ImageReadParam param = reader.getDefaultReadParam();
8753
+ param.setDestination(bim);
8754
+ //param.setDestinationType(ImageTypeSpecifier.createFromBufferedImageType(BufferedImage.TYPE_INT_RGB));
8755
+
8756
+ ImageInputStream ios = ImageIO.createImageInputStream(baos);
8757
+ reader.setInput(ios);
8758
+ BufferedImage bim2 = reader.read(0, param);
8759
+ reader.dispose();
8760
+
8761
+// WritableRaster raster = bim2.getRaster();
8762
+// DataBufferByte data = (DataBufferByte) raster.getDataBuffer();
8763
+// byte[] bytes = data.getData();
8764
+//
8765
+// int[] pixels = new int[bytes.length/3];
8766
+// for (int i=pixels.length; --i>=0;)
8767
+// {
8768
+// int i3 = i*3;
8769
+// pixels[i] = 0xFF;
8770
+// pixels[i] <<= 8;
8771
+// pixels[i] |= bytes[i3+2] & 0xFF;
8772
+// pixels[i] <<= 8;
8773
+// pixels[i] |= bytes[i3+1] & 0xFF;
8774
+// pixels[i] <<= 8;
8775
+// pixels[i] |= bytes[i3] & 0xFF;
8776
+// }
8777
+//
8778
+// bim.setRGB(0,0,w,h, pixels, w*(h-1),-w);
8779
+
8780
+ return bim;
8781
+ }
8782
+
85988783 ShadowBuffer shadowPBuf;
85998784 AntialiasBuffer antialiasPBuf;
86008785 int MAXSTACK;
....@@ -8611,10 +8796,12 @@
86118796
86128797 gl.glGetIntegerv(GL.GL_MAX_TEXTURE_STACK_DEPTH, temp, 0);
86138798 MAXSTACK = temp[0];
8614
- System.out.println("GL_MAX_TEXTURE_STACK_DEPTH = " + MAXSTACK);
8799
+ if (Globals.DEBUG)
8800
+ System.out.println("GL_MAX_TEXTURE_STACK_DEPTH = " + MAXSTACK);
86158801 gl.glGetIntegerv(GL.GL_MAX_MODELVIEW_STACK_DEPTH, temp, 0);
86168802 MAXSTACK = temp[0];
8617
- System.out.println("GL_MAX_MODELVIEW_STACK_DEPTH = " + MAXSTACK);
8803
+ if (Globals.DEBUG)
8804
+ System.out.println("GL_MAX_MODELVIEW_STACK_DEPTH = " + MAXSTACK);
86188805
86198806 // Use debug pipeline
86208807 //drawable.setGL(new DebugGL(gl)); //
....@@ -8622,7 +8809,8 @@
86228809 gl = drawable.getGL(); //
86238810
86248811 GL gl3 = getGL();
8625
- System.out.println("INIT GL IS: " + gl.getClass().getName());
8812
+ if (Globals.DEBUG)
8813
+ System.out.println("INIT GL IS: " + gl.getClass().getName());
86268814
86278815
86288816 //float pos[] = { 100, 100, 100, 0 };
....@@ -8787,7 +8975,7 @@
87878975
87888976 if (cubemap == null)
87898977 {
8790
- LoadEnvy(5);
8978
+ //LoadEnvy(1);
87918979 }
87928980
87938981 //cubemap.enable();
....@@ -9063,6 +9251,8 @@
90639251
90649252 void LoadEnvy(int which)
90659253 {
9254
+ assert(false);
9255
+
90669256 String name;
90679257 String ext;
90689258
....@@ -9074,37 +9264,58 @@
90749264 cubemap = null;
90759265 return;
90769266 case 1:
9077
- name = "cubemaps/box_";
9078
- ext = "png";
9267
+ name = "cubemaps/rgb/";
9268
+ ext = "jpg";
90799269 reverseUP = false;
90809270 break;
90819271 case 2:
9082
- name = "cubemaps/uffizi_";
9083
- ext = "png";
9084
- break; // reverseUP = true; break;
9272
+ name = "cubemaps/uffizi/";
9273
+ ext = "jpg";
9274
+ reverseUP = false;
9275
+ break;
90859276 case 3:
9086
- name = "cubemaps/CloudyHills_";
9087
- ext = "tga";
9277
+ name = "cubemaps/CloudyHills/";
9278
+ ext = "jpg";
90889279 reverseUP = false;
90899280 break;
90909281 case 4:
9091
- name = "cubemaps/cornell_";
9282
+ name = "cubemaps/cornell/";
90929283 ext = "png";
90939284 reverseUP = false;
90949285 break;
9286
+ case 5:
9287
+ name = "cubemaps/skycube/";
9288
+ ext = "jpg";
9289
+ reverseUP = false;
9290
+ break;
9291
+ case 6:
9292
+ name = "cubemaps/SaintLazarusChurch3/";
9293
+ ext = "jpg";
9294
+ reverseUP = false;
9295
+ break;
9296
+ case 7:
9297
+ name = "cubemaps/Sodermalmsallen/";
9298
+ ext = "jpg";
9299
+ reverseUP = false;
9300
+ break;
9301
+ case 8:
9302
+ name = "cubemaps/Sodermalmsallen2/";
9303
+ ext = "jpg";
9304
+ reverseUP = false;
9305
+ break;
9306
+ case 9:
9307
+ name = "cubemaps/UnionSquare/";
9308
+ ext = "jpg";
9309
+ reverseUP = false;
9310
+ break;
90959311 default:
9096
- name = "cubemaps/rgb_";
9097
- ext = "png"; /*mipmap = true;*/ reverseUP = false;
9312
+ name = "cubemaps/box/";
9313
+ ext = "png"; /*mipmap = true;*/
9314
+ reverseUP = false;
90989315 break;
90999316 }
9100
-
9101
- try
9102
- {
9103
- cubemap = LoadCubemap(getClass().getClassLoader(), name, ext, mipmap);
9104
- } catch (IOException e)
9105
- {
9106
- throw new RuntimeException(e);
9107
- }
9317
+
9318
+ LoadSkybox(name, ext, mipmap);
91089319 }
91099320
91109321 public void reshape(GLAutoDrawable drawable, int x, int y, int width, int height)
....@@ -9136,8 +9347,12 @@
91369347 static double[] model = new double[16];
91379348 double[] camera2light = new double[16];
91389349 double[] light2camera = new double[16];
9139
- int newenvy = -1;
9140
- boolean envyoff = true; // false;
9350
+
9351
+ //int newenvy = -1;
9352
+ //boolean envyoff = false;
9353
+
9354
+ String loadedskyboxname;
9355
+
91419356 cVector light0 = new cVector(0, 0, 0); // 1,3,2);
91429357 //float[] light0 = { 0,0,0 };
91439358 cVector dirlight = new cVector(0, 0, 1); // 1,3,2);
....@@ -9555,7 +9770,7 @@
95559770
95569771 if (renderCamera != lightCamera)
95579772 //for (int count = parentcam.GetTransformCount(); --count>=0;)
9558
- LA.matConcat(matrix, parentcam.GlobalTransform(), matrix);
9773
+ LA.matConcat(matrix, parentcam.GlobalTransformInv(), matrix);
95599774
95609775 // LA.matConcat(renderCamera.toScreen, renderCamera.toParent, matrix);
95619776
....@@ -9571,7 +9786,7 @@
95719786
95729787 if (renderCamera != lightCamera)
95739788 //for (int count = parentcam.GetTransformCount(); --count>=0;)
9574
- LA.matConcat(parentcam.GlobalTransformInv(), matrix, matrix);
9789
+ LA.matConcat(parentcam.GlobalTransform(), matrix, matrix);
95759790
95769791 // LA.matConcat(renderCamera.fromParent, renderCamera.fromScreen, matrix);
95779792
....@@ -9617,13 +9832,18 @@
96179832 rati = 1 / rati;
96189833 gl.glOrtho(-skyscale / rati, skyscale / rati, -skyscale, skyscale, 0.001, 1000);
96199834 }
9620
- assert (newenvy == -1);
9835
+
9836
+ //assert (newenvy == -1);
9837
+
96219838 gl.glDisable(GL.GL_FRAGMENT_PROGRAM_ARB);
96229839 gl.glDisable(GL.GL_VERTEX_PROGRAM_ARB);
9623
- DrawSkyBox(gl);
9840
+ DrawSkyBox(gl, (float)rati);
96249841 gl.glEnable(GL.GL_FRAGMENT_PROGRAM_ARB);
96259842 gl.glEnable(GL.GL_VERTEX_PROGRAM_ARB);
9626
- accPerspective(gl, renderCamera.shaper_fovy / ratio,
9843
+
9844
+ boolean vr = capsLocked && !lightMode;
9845
+
9846
+ accPerspective(gl, renderCamera.shaper_fovy / ratio * (vr ? 1.2 : 1),
96279847 ratio,
96289848 //near_plane, far_plane,
96299849 renderCamera.shaper_zNear * renderCamera.Distance(), renderCamera.shaper_zFar * renderCamera.Distance(),
....@@ -10486,9 +10706,18 @@
1048610706 static boolean init = false;
1048710707
1048810708 double[][] matrix = LA.newMatrix();
10709
+
10710
+ // This is to refresh the UI of the material panel.
10711
+ ObjEditor patchMaterial;
1048910712
1049010713 public void display(GLAutoDrawable drawable)
1049110714 {
10715
+ if (patchMaterial.patchMaterial)
10716
+ {
10717
+ patchMaterial.patchMaterial = false;
10718
+ patchMaterial.objectTabbedPane.setSelectedIndex(1);
10719
+ }
10720
+
1049210721 if (Grafreed.savesound && Grafreed.hassound)
1049310722 {
1049410723 Grafreed.wav.save();
....@@ -10532,7 +10761,9 @@
1053210761 }
1053310762 /**/
1053410763
10535
- if (selection)
10764
+ boolean control = ((modifiers & CTRL) != 0);
10765
+
10766
+ if (selection && (!Globals.isLIVE() || control))
1053610767 {
1053710768 selectbuffer.display();
1053810769 return;
....@@ -10584,6 +10815,112 @@
1058410815
1058510816 if (DrawMode() == DEFAULT)
1058610817 {
10818
+ if (manipCamera == lightCamera)
10819
+ {
10820
+// switch (e.getKeyCode())
10821
+// {
10822
+// case DOWN_ARROW:
10823
+// lightCamera.DECAL /= 2;
10824
+// repaint();
10825
+// break;
10826
+// case UP_ARROW:
10827
+// lightCamera.DECAL *= 2;
10828
+// repaint();
10829
+// break;
10830
+// case LEFT_ARROW:
10831
+// lightCamera.SCALE /= 2;
10832
+// repaint();
10833
+// break;
10834
+// case RIGHT_ARROW:
10835
+// lightCamera.SCALE *= 2;
10836
+// repaint();
10837
+// break;
10838
+// default:
10839
+// break;
10840
+ if (keys[DOWN_ARROW])
10841
+ {
10842
+ lightCamera.DECAL /= 2;
10843
+ }
10844
+
10845
+ if (keys[UP_ARROW])
10846
+ {
10847
+ lightCamera.DECAL *= 2;
10848
+ }
10849
+
10850
+ if (keys[LEFT_ARROW])
10851
+ {
10852
+ lightCamera.SCALE /= 2;
10853
+ }
10854
+
10855
+ if (keys[RIGHT_ARROW])
10856
+ {
10857
+ lightCamera.SCALE *= 2;
10858
+ }
10859
+ }
10860
+ else
10861
+ {
10862
+ //pingthread.mute = true;
10863
+
10864
+ boolean keyon = false;
10865
+
10866
+ if (keys[DOWN_ARROW])
10867
+ {
10868
+ speed = ++speedkey[DOWN_ARROW];
10869
+ if (speed > 20)
10870
+ speed = 20;
10871
+ GoDown(modifiers);
10872
+ keyon = true;
10873
+ }
10874
+ else
10875
+ speedkey[DOWN_ARROW] = 0;
10876
+
10877
+ if (keys[UP_ARROW])
10878
+ {
10879
+ speed = ++speedkey[UP_ARROW];
10880
+ if (speed > 20)
10881
+ speed = 20;
10882
+ GoUp(modifiers);
10883
+ keyon = true;
10884
+ }
10885
+ else
10886
+ speedkey[UP_ARROW] = 0;
10887
+
10888
+ if (keys[LEFT_ARROW])
10889
+ {
10890
+ speed = ++speedkey[LEFT_ARROW];
10891
+ if (speed > 20)
10892
+ speed = 20;
10893
+ GoLeft(modifiers);
10894
+ keyon = true;
10895
+ }
10896
+ else
10897
+ speedkey[LEFT_ARROW] = 0;
10898
+
10899
+ if (keys[RIGHT_ARROW])
10900
+ {
10901
+ speed = ++speedkey[RIGHT_ARROW];
10902
+ if (speed > 20)
10903
+ speed = 20;
10904
+ GoRight(modifiers);
10905
+ keyon = true;
10906
+ }
10907
+ else
10908
+ speedkey[RIGHT_ARROW] = 0;
10909
+
10910
+ if (Globals.WALK && capsLocked)
10911
+ {
10912
+ Walk();
10913
+ keyon = true;
10914
+ }
10915
+
10916
+ if (keyon)
10917
+ {
10918
+ repaint();
10919
+ }
10920
+
10921
+ //pingthread.mute = false;
10922
+ }
10923
+
1058710924 currentlydrawing = true;
1058810925 }
1058910926
....@@ -10657,7 +10994,7 @@
1065710994
1065810995 if (wait)
1065910996 {
10660
- Sleep(500);
10997
+ Sleep(200); // blocks everything
1066110998
1066210999 wait = false;
1066311000 }
....@@ -10772,7 +11109,7 @@
1077211109 // if (parentcam != renderCamera) // not a light
1077311110 if (cam != lightCamera)
1077411111 //for (int count = parentcam.GetTransformCount(); --count>=0;)
10775
- LA.matConcat(matrix, parentcam.GlobalTransform(), matrix);
11112
+ LA.matConcat(matrix, parentcam.GlobalTransformInv(), matrix);
1077611113
1077711114 for (int j = 0; j < 4; j++)
1077811115 {
....@@ -10787,7 +11124,7 @@
1078711124 // if (parentcam != renderCamera) // not a light
1078811125 if (cam != lightCamera)
1078911126 //for (int count = parentcam.GetTransformCount(); --count>=0;)
10790
- LA.matConcat(parentcam.GlobalTransformInv(), matrix, matrix);
11127
+ LA.matConcat(parentcam.GlobalTransform(), matrix, matrix);
1079111128
1079211129 //LA.matConcat(cam.fromScreen, parentcam.fromParent, matrix);
1079311130
....@@ -10873,13 +11210,43 @@
1087311210 gl.glOrtho(-skyscale / ratio, skyscale / ratio, -skyscale, skyscale, 0.001, 1000);
1087411211 }
1087511212
10876
- if (newenvy > -1)
11213
+// if (newenvy > -1)
11214
+// {
11215
+// LoadEnvy(newenvy);
11216
+// }
11217
+//
11218
+// newenvy = -1;
11219
+
11220
+ if (transformMode) // object.skyboxname != null && object.skyboxname.equals("cubemaps/default-skyboxes/rgb"))
1087711221 {
10878
- LoadEnvy(newenvy);
11222
+ if (cubemaprgb == null)
11223
+ {
11224
+ cubemaprgb = LoadSkybox("cubemaps/default-skyboxes/rgb2" + "/", "jpg", false);
11225
+ }
11226
+
11227
+ cubemap = cubemaprgb;
1087911228 }
10880
-
10881
- newenvy = -1;
10882
-
11229
+ else
11230
+ {
11231
+ if (object.skyboxname != null)
11232
+ {
11233
+ if (!object.skyboxname.equals(this.loadedskyboxname))
11234
+ {
11235
+ if (cubemap != null && cubemap != cubemaprgb)
11236
+ cubemap.dispose();
11237
+ cubemapcustom = LoadSkybox(object.skyboxname + "/", object.skyboxext, false);
11238
+ loadedskyboxname = object.skyboxname;
11239
+ }
11240
+ }
11241
+ else
11242
+ {
11243
+ cubemapcustom = null;
11244
+ loadedskyboxname = null;
11245
+ }
11246
+
11247
+ cubemap = cubemapcustom;
11248
+ }
11249
+
1088311250 ratio = ((double) getWidth()) / getHeight();
1088411251 //System.out.println("ratio = " + ratio);
1088511252
....@@ -10895,7 +11262,7 @@
1089511262
1089611263 if (!IsFrozen() && !ambientOcclusion)
1089711264 {
10898
- DrawSkyBox(gl);
11265
+ DrawSkyBox(gl, (float)ratio);
1089911266 }
1090011267
1090111268 //if (selection_view == -1)
....@@ -11049,7 +11416,7 @@
1104911416
1105011417 try
1105111418 {
11052
- BindTexture(null, NOISE_TEXTURE, false, 2);
11419
+ BindTexture(NOISE_TEXTURE, false, 2);
1105311420 }
1105411421 catch (Exception e)
1105511422 {
....@@ -11078,9 +11445,9 @@
1107811445
1107911446 gl.glMatrixMode(GL.GL_MODELVIEW);
1108011447
11081
-gl.glEnable(gl.GL_POLYGON_SMOOTH);
11082
-gl.glHint(gl.GL_POLYGON_SMOOTH_HINT, gl.GL_NICEST);
11083
-gl.glEnable(gl.GL_MULTISAMPLE);
11448
+//gl.glEnable(gl.GL_POLYGON_SMOOTH);
11449
+//gl.glHint(gl.GL_POLYGON_SMOOTH_HINT, gl.GL_NICEST);
11450
+//gl.glEnable(gl.GL_MULTISAMPLE);
1108411451 } else
1108511452 {
1108611453 //gl.glDisable(GL.GL_TEXTURE_2D);
....@@ -11141,7 +11508,10 @@
1114111508 //gl.glOrtho(-BOOST, BOOST, -BOOST, BOOST, 0.001, 1000);
1114211509 } else
1114311510 {
11144
- glu.gluPerspective(cam.shaper_fovy / ratio, ratio, cam.shaper_zNear * cam.Distance(), cam.shaper_zFar * cam.Distance());
11511
+ boolean vr = capsLocked && !lightMode;
11512
+
11513
+ glu.gluPerspective(cam.shaper_fovy / ratio * (vr ? 1.2 : 1),
11514
+ ratio, cam.shaper_zNear * cam.Distance(), cam.shaper_zFar * cam.Distance());
1114511515 }
1114611516 }
1114711517
....@@ -11181,7 +11551,7 @@
1118111551
1118211552 // if (cam != lightCamera)
1118311553 //for (int count = parentcam.GetTransformCount(); --count>=0;)
11184
- LA.xformDir(lightposition, parentcam.GlobalTransform(), lightposition); // may 2013
11554
+ LA.xformDir(lightposition, parentcam.GlobalTransformInv(), lightposition); // may 2013
1118511555 }
1118611556
1118711557 LA.xformDir(lightposition, cam.toScreen, lightposition);
....@@ -11340,7 +11710,7 @@
1134011710 }
1134111711 }
1134211712
11343
- if (false) // fast && !IsFreezed() && DrawMode() != SELECTION && !ambientOcclusion)
11713
+ if (false) //RENDERPROGRAM > 0 && DrawMode() == DEFAULT) // fast && !IsFreezed() && DrawMode() != SELECTION && !ambientOcclusion)
1134411714 {
1134511715 //gl.glDepthFunc(GL.GL_LEQUAL);
1134611716 //gl.glClear(gl.GL_COLOR_BUFFER_BIT | gl.GL_DEPTH_BUFFER_BIT);
....@@ -11348,24 +11718,21 @@
1134811718
1134911719 boolean texon = textureon;
1135011720
11351
- if (RENDERPROGRAM > 0)
11352
- {
11353
- gl.glDisable(GL.GL_FRAGMENT_PROGRAM_ARB);
11354
- textureon = false;
11355
- }
11721
+ gl.glDisable(GL.GL_FRAGMENT_PROGRAM_ARB);
11722
+ textureon = false;
11723
+
1135611724 //gl.glDisable(GL.GL_VERTEX_PROGRAM_ARB);
1135711725 //System.out.println("ALLO");
1135811726 gl.glColorMask(false, false, false, false);
1135911727 DrawObject(gl);
11360
- if (RENDERPROGRAM > 0)
11361
- {
11362
- gl.glEnable(GL.GL_FRAGMENT_PROGRAM_ARB);
11363
- textureon = texon;
11364
- }
11728
+
11729
+ gl.glEnable(GL.GL_FRAGMENT_PROGRAM_ARB);
11730
+ textureon = texon;
11731
+
1136511732 gl.glColorMask(true, true, true, true);
1136611733
1136711734 gl.glDepthFunc(GL.GL_EQUAL);
11368
- //gl.glDepthMask(false);
11735
+ gl.glDepthMask(false);
1136911736 }
1137011737
1137111738 if (false) // DrawMode() == SHADOW)
....@@ -11500,8 +11867,11 @@
1150011867 repaint();
1150111868 }
1150211869
11503
- if (Globals.isLIVE() && DrawMode() == DEFAULT) // may 2013
11870
+ if (Globals.isLIVE() && DrawMode() == DEFAULT || pingthread.live) // may 2013
11871
+ {
11872
+ renderCamera.computeTransform();
1150411873 repaint();
11874
+ }
1150511875
1150611876 displaydone = true;
1150711877 }
....@@ -11576,9 +11946,23 @@
1157611946 //GL gl = getGL();
1157711947 if ((TRACK || SHADOWTRACK) || zoomonce)
1157811948 {
11949
+ if (TRACK)
11950
+ {
11951
+ if (object.selection != null &&
11952
+ object.selection.size() > 0 &&
11953
+ object.selection.elementAt(0) != null &&
11954
+ !(object.selection.elementAt(0) instanceof Camera) &&
11955
+ !(object.selection.elementAt(0) instanceof ScriptNode))
11956
+ {
11957
+ trackedobject = object.selection.elementAt(0);
11958
+ //repaint();
11959
+ }
11960
+ else
11961
+ trackedobject = null;
11962
+ }
1157911963 if ((TRACK || SHADOWTRACK) && trackedobject != null && DrawMode() == SHADOW) // && !lightMode)
1158011964 object.GetWindow().ScreenFit(trackedobject, SHADOWTRACK && !TRACK);
11581
- pingthread.StepToTarget(true); // true);
11965
+ pingthread.StepToTarget(); // true);
1158211966 // zoomonce = false;
1158311967 }
1158411968
....@@ -11705,20 +12089,32 @@
1170512089 ReleaseTextures(DEFAULT_TEXTURES);
1170612090
1170712091 if (CLEANCACHE)
11708
- for (java.util.Enumeration<String> e = textures.keys() ; e.hasMoreElements();)
12092
+ for (java.util.Enumeration<cTexture> e = texturepigment.keys() ; e.hasMoreElements();)
1170912093 {
11710
- String tex = e.nextElement();
12094
+ cTexture tex = e.nextElement();
1171112095
1171212096 // System.out.println("Texture --------- " + tex);
1171312097
11714
- if (tex.equals("WHITE_NOISE"))
12098
+ if (tex.equals("WHITE_NOISE:"))
1171512099 continue;
1171612100
1171712101 if (!usedtextures.contains(tex))
1171812102 {
12103
+ CacheTexture gettex = texturepigment.get(tex);
1171912104 // System.out.println("DISPOSE +++++++++++++++ " + tex);
11720
- textures.get(tex).texture.dispose();
11721
- textures.remove(tex);
12105
+ if (gettex != null)
12106
+ {
12107
+ gettex.texture.dispose();
12108
+ texturepigment.remove(tex);
12109
+ }
12110
+
12111
+ gettex = texturebump.get(tex);
12112
+ // System.out.println("DISPOSE +++++++++++++++ " + tex);
12113
+ if (gettex != null)
12114
+ {
12115
+ gettex.texture.dispose();
12116
+ texturebump.remove(tex);
12117
+ }
1172212118 }
1172312119 }
1172412120 }
....@@ -12246,8 +12642,82 @@
1224612642
1224712643 //gl.glProgramEnvParameter4fvARB(GL.GL_FRAGMENT_PROGRAM_ARB, 127, lightParams, 0);
1224812644
12249
- String program =
12645
+ String programmin =
12646
+ // Min shader
1225012647 "!!ARBfp1.0\n" +
12648
+ "PARAM zero12t = { 0.0, 1.0, 2, 1.25 };" +
12649
+ "PARAM pow_2 = { 0.5, 0.25, 0.125, 0.0 };" +
12650
+ "PARAM pow2 = { 2, 4, 8, 0.0 };" +
12651
+ "PARAM one = { 1.0, 1.0, 1.0, 1.0 };" +
12652
+ "PARAM eps = { 0.001, 0.001, 0.001, 1.0 };" +
12653
+ "PARAM infinity = { 100000000, 100000000, 100000000, 1.0 };" +
12654
+ "PARAM light2cam0 = program.env[10];" +
12655
+ "PARAM light2cam1 = program.env[11];" +
12656
+ "PARAM light2cam2 = program.env[12];" +
12657
+ "TEMP temp;" +
12658
+ "TEMP light;" +
12659
+ "TEMP ndotl;" +
12660
+ "TEMP normal;" +
12661
+ "TEMP depth;" +
12662
+ "TEMP eye;" +
12663
+ "TEMP pos;" +
12664
+
12665
+ "MAD normal, fragment.color, zero12t.z, -zero12t.y;" +
12666
+ Normalize("normal") +
12667
+ "MOV light, state.light[0].position;" +
12668
+ "DP3 ndotl.x, light, normal;" +
12669
+ "MAX ndotl.x, ndotl.x, zero12t.x;" +
12670
+
12671
+ // shadow
12672
+ "MOV pos, fragment.texcoord[1];" +
12673
+ "MOV temp, pos;" +
12674
+ ShadowTextureFetch("depth", "temp", "1") +
12675
+ //"TEX depth, fragment.texcoord[1], texture[1], 2D;" +
12676
+ "SLT ndotl.z, fragment.texcoord[1].z, depth.z;" +
12677
+
12678
+ // No shadow when out of frustum
12679
+ //"SGE temp.y, depth.z, zero123.y;" +
12680
+ //"LRP temp.x, temp.y, zero123.y, temp.x;" +
12681
+
12682
+ "MUL ndotl.x, ndotl.x, ndotl.z;" + // Shadow
12683
+
12684
+ // Backlit
12685
+ "MOV pos.w, zero12t.y;" + // one
12686
+ "DP4 eye.x, pos, light2cam0;" +
12687
+ "DP4 eye.y, pos, light2cam1;" +
12688
+ "DP4 eye.z, pos, light2cam2;" +
12689
+ Normalize("eye") +
12690
+
12691
+ "DP3 ndotl.y, -eye, normal;" +
12692
+ //"MUL ndotl.y, ndotl.y, pow2.x;" +
12693
+ "POW ndotl.y, ndotl.y, pow2.x;" + // backlit
12694
+ "SUB ndotl.y, zero12t.y, ndotl.y;" + // 1 - y
12695
+ //"POW ndotl.y, ndotl.y, pow2.z;" + // backlit
12696
+ //"SUB ndotl.y, zero123.y, ndotl.y;" +
12697
+ //"MUL ndotl.y, ndotl.y, pow2.z;" +
12698
+ "ADD ndotl.y, ndotl.y, one.x;" +
12699
+ "MUL ndotl.y, ndotl.y, pow_2.x;" +
12700
+
12701
+ //"MAX ndotl.x, ndotl.x, ndotl.y;" + // Ambient
12702
+ //"MAX ndotl.x, ndotl.x, pow2.y;" + // Ambient
12703
+
12704
+ // Pigment
12705
+ "TEX temp, fragment.texcoord[0], texture[0], 2D;" +
12706
+ "LRP temp, zero12t.w, temp, one;" + // texture proportion
12707
+ "MUL temp, temp, zero12t.w;" + // Times x
12708
+
12709
+ //"MUL temp, temp, ndotl.y;" +
12710
+ "MAD ndotl.x, pow_2.xxxx, ndotl.yyyy, ndotl.x;" +
12711
+
12712
+ "MUL temp, temp, ndotl.x;" + // lambert
12713
+
12714
+ "MOV temp.w, zero12t.y;" + // reset alpha
12715
+ "MOV result.color, temp;" +
12716
+ "END";
12717
+
12718
+ String programmax =
12719
+ "!!ARBfp1.0\n" +
12720
+
1225112721 //"OPTION ARB_fragment_program_shadow;" +
1225212722 "PARAM light2cam0 = program.env[10];" +
1225312723 "PARAM light2cam1 = program.env[11];" +
....@@ -12273,7 +12743,7 @@
1227312743 "PARAM params4 = program.env[4];" + // anisoV, cameralight, selfshadow, shadow
1227412744 "PARAM params5 = program.env[5];" + // texture, opacity, fakedepth, shadowbias
1227512745 "PARAM params6 = program.env[6];" + // bump, noise, borderfade, fog punchthrough
12276
- "PARAM params7 = program.env[7];" + // noise power, opacity power
12746
+ "PARAM params7 = program.env[7];" + // noise power, opacity power, parallax
1227712747 "PARAM options0 = program.env[63];" + // fog density, intensity, elevation
1227812748 "PARAM options1 = program.env[62];" + // fog rgb color
1227912749 "PARAM options2 = program.env[61];" + // image intensity, subsurface, lightsheen
....@@ -12362,8 +12832,7 @@
1236212832 "TEMP shininess;" +
1236312833 "\n" +
1236412834 "MOV texSamp, one;" +
12365
- //"TEX texSamp, fragment.texcoord[0], texture[0], 2D;" +
12366
-
12835
+
1236712836 "MOV mapgrid.x, one2048th.x;" +
1236812837 "MOV temp, fragment.texcoord[1];" +
1236912838 /*
....@@ -12384,20 +12853,20 @@
1238412853 "MUL temp, floor, mapgrid.x;" +
1238512854 //"TEX depth0, temp, texture[1], 2D;" +
1238612855 (((mode & FP_SOFTSHADOW) == 0) ? "" :
12387
- TextureFetch("depth0", "temp", "1") +
12856
+ ShadowTextureFetch("depth0", "temp", "1") +
1238812857 "") +
1238912858 "ADD temp.x, temp.x, mapgrid.x;" +
1239012859 //"TEX depth1, temp, texture[1], 2D;" +
1239112860 (((mode & FP_SOFTSHADOW) == 0) ? "" :
12392
- TextureFetch("depth1", "temp", "1") +
12861
+ ShadowTextureFetch("depth1", "temp", "1") +
1239312862 "") +
1239412863 "ADD temp.y, temp.y, mapgrid.x;" +
1239512864 //"TEX depth2, temp, texture[1], 2D;" +
12396
- TextureFetch("depth2", "temp", "1") +
12865
+ ShadowTextureFetch("depth2", "temp", "1") +
1239712866 "SUB temp.x, temp.x, mapgrid.x;" +
1239812867 //"TEX depth3, temp, texture[1], 2D;" +
1239912868 (((mode & FP_SOFTSHADOW) == 0) ? "" :
12400
- TextureFetch("depth3", "temp", "1") +
12869
+ ShadowTextureFetch("depth3", "temp", "1") +
1240112870 "") +
1240212871 //"MUL texSamp0, texSamp0, state.material.front.diffuse;" +
1240312872 //"MOV params, material;" +
....@@ -12519,7 +12988,7 @@
1251912988 "POW texSamp.a, texSamp.a, params6.w;" + // fog punch through shortcut
1252012989 // mar 2013 ??? "KIL alpha.a;" +
1252112990 "MOV alpha, texSamp.aaaa;" + // y;" +
12522
- "KIL alpha.a;" +
12991
+ "KIL alpha.a;" + // not sure with parallax mapping
1252312992 /*
1252412993 "MUL temp.xy, temp, two;" +
1252512994 "TXB bump, temp, texture[0], 2D;" +
....@@ -12605,11 +13074,6 @@
1260513074 "SUB bump0, bump0, half;" +
1260613075 "ADD bump, bump, bump0;" +
1260713076
12608
- "MOV temp.x, texSamp.a;" +
12609
- "LRP texSamp, params5.x, texSamp, one;" + // texture proportion
12610
- //"LRP texSamp0, params5.x, texSamp0, one;" +
12611
- "MOV texSamp.a, temp.x;" +
12612
-
1261313077 // double-sided
1261413078 /**/
1261513079 (doublesided?"DP3 temp.z, normal, eye;" +
....@@ -12619,26 +13083,73 @@
1261913083 "ADD temp.x, temp.x, one.x;" +
1262013084 "MUL normal, normal, temp.xxxx;":""
1262113085 ) +
12622
- /**/
12623
-//// Normalize("normal") +
12624
-//// "MAX normal.z, eps.x, normal.z;" +
12625
-// Normalize("normal") +
12626
- "MOV normald, normal;" +
12627
- "MOV normals, normal;" +
13086
+ /**/
13087
+
13088
+ "MOV temp, fragment.texcoord[4];" +
1262813089
1262913090 // UV base
1263013091 //"DP3 UP.x,state.matrix.modelview.row[0],Y;" +
1263113092 //"DP3 UP.y,state.matrix.modelview.row[1],Y;" +
1263213093 //"DP3 UP.z,state.matrix.modelview.row[2],Y;" +
12633
- "DP3 UP.x,state.matrix.texture[7].row[0],Y;" +
12634
- "DP3 UP.y,state.matrix.texture[7].row[1],Y;" +
12635
- "DP3 UP.z,state.matrix.texture[7].row[2],Y;" +
13094
+ "DP3 UP.x,state.matrix.texture[7].row[0],temp;" +
13095
+ "DP3 UP.y,state.matrix.texture[7].row[1],temp;" +
13096
+ "DP3 UP.z,state.matrix.texture[7].row[2],temp;" +
13097
+ Normalize("UP") +
13098
+
1263613099 "XPD V, normal, UP;" +
1263713100 Normalize("V") +
1263813101 "XPD U, V, normal;" +
1263913102 Normalize("U") +
1264013103
13104
+ "MOV temp, fragment.texcoord[0];" +
13105
+
13106
+// "MAD normal, -temp.x, U, normal;" +
13107
+// "MAD normal, -temp.y, V, normal;" +
13108
+// Normalize("normal") +
13109
+
13110
+//// "MAX normal.z, eps.x, normal.z;" +
13111
+// Normalize("normal") +
13112
+ "MOV normald, normal;" +
13113
+ "MOV normals, normal;" +
13114
+
1264113115 // parallax mapping
13116
+
13117
+ "DP3 temp2.x, V, eye;" +
13118
+ "DP3 temp2.y, U, eye;" +
13119
+ "DP3 temp2.z, normal, eye;" +
13120
+ "RCP temp2.z, temp2.z;" +
13121
+
13122
+ "DP3 temp2.w, texSamp, texSamp;" + // Height
13123
+ "RSQ temp2.w, temp2.w;" +
13124
+ "RCP temp2.w, temp2.w;" +
13125
+
13126
+ "SUB temp2.w, temp2.w, half;" +
13127
+ // "SGE temp.x, temp2.w, eps.x;" +
13128
+ // "MUL temp2.w, temp2.w, temp.x;" +
13129
+
13130
+ // "MOV texSamp, U;" +
13131
+
13132
+ "MUL temp2.z, temp2.z, temp2.w;" +
13133
+ "MUL temp2.z, temp2.z, params7.z;" + // parallax
13134
+
13135
+ "MUL temp2, temp2, temp2.z;" +
13136
+
13137
+ "SUB temp, temp, temp2;" +
13138
+
13139
+ "TEX temp, temp, texture[0], 2D;" +
13140
+ "POW temp.a, temp.a, params6.w;" + // punch through
13141
+
13142
+ "ADD texSamp, temp, texSamp;" +
13143
+ "MUL texSamp.xyz, half, texSamp;" +
13144
+
13145
+ "MOV alpha, texSamp.aaaa;" +
13146
+
13147
+// parallax mapping
13148
+
13149
+ "MOV temp.x, texSamp.a;" +
13150
+ "LRP texSamp, params5.x, texSamp, one;" + // texture proportion
13151
+ //"LRP texSamp0, params5.x, texSamp0, one;" +
13152
+ "MOV texSamp.a, temp.x;" +
1264213153
1264313154 //"MOV temp, fragment.texcoord[0];" +
1264413155 //
....@@ -12768,10 +13279,10 @@
1276813279 "MAD shadow.x, buffer.x, frac.y, shadow.x;" +
1276913280 "") +
1277013281
12771
- // display shadow only (bump == 0)
13282
+ // display shadow only (fakedepth == 0)
1277213283 "SUB temp.x, half.x, shadow.x;" +
1277313284 "MOV temp.y, -params5.z;" + // params6.x;" +
12774
- "SLT temp.z, temp.y, -one2048th.x;" +
13285
+ "SLT temp.z, temp.y, -c256i.x;" +
1277513286 "SUB temp.y, one.x, temp.z;" +
1277613287 "MUL temp.x, temp.x, temp.y;" +
1277713288 "KIL temp.x;" +
....@@ -13102,8 +13613,19 @@
1310213613 //once = true;
1310313614 }
1310413615
13105
- System.out.print("Program #" + mode + "; instructions = " + program.split(";").length + "; length = " + program.length());
13106
- System.out.println(" - " + (mode >> 3) + " lights; " + ((mode & 2) == 2 ? "anisoUV " : "") + ((mode & 4) == 4 ? "SoftShadow " : ""));
13616
+ String program = programmax;
13617
+
13618
+ if (Globals.MINSHADER)
13619
+ {
13620
+ program = programmin;
13621
+ }
13622
+
13623
+ if (Globals.DEBUG)
13624
+ {
13625
+ System.out.print("Program #" + mode + "; instructions = " + program.split(";").length + "; length = " + program.length());
13626
+ System.out.println(" - " + (mode >> 3) + " lights; " + ((mode & 2) == 2 ? "anisoUV " : "") + ((mode & 4) == 4 ? "SoftShadow " : ""));
13627
+ }
13628
+
1310713629 loadProgram(gl, GL.GL_FRAGMENT_PROGRAM_ARB, program);
1310813630
1310913631 //gl.glNewList(displayListID, GL.GL_COMPILE);
....@@ -13150,7 +13672,8 @@
1315013672 "\n" +
1315113673 "END\n";
1315213674
13153
- System.out.println("Program shadow #" + 0 + "; length = " + program.length());
13675
+ if (Globals.DEBUG)
13676
+ System.out.println("Program shadow #" + 0 + "; length = " + program.length());
1315413677 loadProgram(gl, GL.GL_FRAGMENT_PROGRAM_ARB, program);
1315513678
1315613679 //gl.glNewList(displayListID, GL.GL_COMPILE);
....@@ -13195,25 +13718,26 @@
1319513718 return out;
1319613719 }
1319713720
13198
- String TextureFetch(String dest, String src, String unit)
13721
+ // Also does frustum culling
13722
+ String ShadowTextureFetch(String dest, String src, String unit)
1319913723 {
1320013724 return "TEX " + dest + ", " + src + ", texture[" + unit + "], 2D;" +
1320113725 "SGE " + src + ".w, " + src + ".x, eps.x;" +
1320213726 "SGE " + src + ".z, " + src + ".y, eps.x;" +
13727
+ "SLT " + dest + ".x, " + src + ".x, one.x;" +
13728
+ "SLT " + dest + ".y, " + src + ".y, one.x;" +
1320313729 "MUL " + src + ".w, " + src + ".z, " + src + ".w;" +
13204
- "SLT " + src + ".z, " + src + ".x, one.x;" +
13205
- "MUL " + src + ".w, " + src + ".z, " + src + ".w;" +
13206
- "SLT " + src + ".z, " + src + ".y, one.x;" +
13207
- "MUL " + src + ".w, " + src + ".z, " + src + ".w;" +
13730
+ "MUL " + src + ".w, " + dest + ".x, " + src + ".w;" +
13731
+ "MUL " + src + ".w, " + dest + ".y, " + src + ".w;" +
1320813732 //"SWZ buffer, temp, w,w,w,w;";
13209
- "MUL " + dest + ".z, " + dest + ".z, " + src + ".w;" +
13733
+ //"MUL " + dest + ".z, " + dest + ".z, " + src + ".w;" +
1321013734 "SUB " + src + ".z, " + "one.x, " + src + ".w;" +
1321113735 //"MUL " + src + ".z, " + src + ".z, infinity.x;" +
1321213736 //"ADD " + dest + ".z, " + dest + ".z, " + src + ".z;";
13213
- "MAD " + dest + ".z, " + src + ".z, infinity.x," + dest + ".z;";
13737
+ //"MAD " + dest + ".z, " + src + ".z, infinity.x," + dest + ".z;";
1321413738
13215
- //"LRP " + dest + ".z, " + src + ".w," + dest + ".z, infinity.x;";
13216
- //"LRP " + dest + ".z" + ", " + src + ".w, infinity.x," + dest + ".z;";
13739
+ //?? "LRP " + dest + ".z, " + src + ".w," + dest + ".z, infinity.x;";
13740
+ "LRP " + dest + ".z, " + src + ".z, infinity.x," + dest + ".z;";
1321713741 }
1321813742
1321913743 String Shadow(String depth, String shadow)
....@@ -13260,7 +13784,7 @@
1326013784 "SLT temp.x, temp.x, zero.x;" + // shadoweps
1326113785 "LRP " + shadow + ", temp.x, one, " + shadow + ";" +
1326213786
13263
- // No shadow when out of frustrum
13787
+ // No shadow when out of frustum
1326413788 "SGE temp.x, " + depth + ".z, one.z;" +
1326513789 "LRP " + shadow + ", temp.x, one, " + shadow + ";" +
1326613790 "";
....@@ -13407,7 +13931,7 @@
1340713931 /*static*/ float[] modelParams4 = new float[]{0, 0, 0, 0}; // anisoV, cameralight, selfshadow, shadow
1340813932 /*static*/ float[] modelParams5 = new float[]{0, 0, 0, 0}; // texture, opacity, fakedepth, shadowbias
1340913933 /*static*/ float[] modelParams6 = new float[]{0, 0, 0, 0}; // bump, noise, borderfade, fog punchthrough
13410
- /*static*/ float[] modelParams7 = new float[]{0, 0, 0, 0}; // noise power, opacity power
13934
+ /*static*/ float[] modelParams7 = new float[]{0, 0, 0, 0}; // noise power, opacity power, parallax
1341113935
1341213936 //Object3D.cVector2[] vector2buffer;
1341313937
....@@ -13574,7 +14098,7 @@
1357414098 "PARAM p[4] = { state.matrix.projection }; # modelview projection matrix\n" +
1357514099 "PARAM zero = { 0.0, 0.0, 0.0, 1.0 };" +
1357614100 "PARAM half = { 0.5, 0.5, 0.5, 1.0 };" +
13577
- "PARAM one = { 1.0, 1.0, 1.0, 0.0 };" +
14101
+ "PARAM one = { 1.0, 1.0, 1.0, 1.0 };" +
1357814102 "PARAM two = { 2.0, 2.0, 2.0, 1.0 };" +
1357914103 "PARAM third = { 0.33333333333, 0.33333333333, 0.33333333333, 1.0 };" +
1358014104 //"PARAM v256 = { 256.0, 256.0, 256.0, 1.0 };" +
....@@ -13635,7 +14159,7 @@
1363514159 "DP4 temp.x,state.matrix.texture[0].inverse.row[0],vertex.texcoord;" +
1363614160 "DP4 temp.y,state.matrix.texture[0].inverse.row[1],vertex.texcoord;" +
1363714161 "DP4 temp.z,state.matrix.texture[0].inverse.row[2],vertex.texcoord;" +
13638
- //"MOV result.texcoord, vertex.texcoord;" +
14162
+ //"MOV result.texcoord, vertex.fogcoord;" +
1363914163 "MOV result.texcoord, temp;" +
1364014164 // border fade
1364114165 "MOV result.texcoord[3], vertex.texcoord;" +
....@@ -13682,7 +14206,9 @@
1368214206
1368314207 //"ADD temp.z, temp.z, one;" +
1368414208
13685
- "MOV result.color, temp;"
14209
+ "MOV result.texcoord[4], vertex.attrib[4];" + // U dir
14210
+
14211
+ "MOV result.color, temp;" // Normal
1368614212 : "MOV result.color, vertex.color;") +
1368714213 ((mode & VP_PROJECTION) != 0 ? "MOV result.color, zero;"
1368814214 : "") +
....@@ -13817,6 +14343,7 @@
1381714343 public void mouseClicked(MouseEvent e)
1381814344 {
1381914345 System.out.println("mouseClicked: " + e);
14346
+ System.exit(0);
1382014347 }
1382114348
1382214349 public void mousePressed(MouseEvent e)
....@@ -13855,10 +14382,12 @@
1385514382 return;
1385614383 }
1385714384
13858
- boolean capsLocked = Toolkit.getDefaultToolkit().getLockingKeyState(KeyEvent.VK_CAPS_LOCK);
14385
+ //boolean capsLocked = Toolkit.getDefaultToolkit().getLockingKeyState(KeyEvent.VK_CAPS_LOCK);
14386
+
14387
+ boolean vr = capsLocked && !lightMode;
1385914388
1386014389 // TIMER
13861
- if (ZOOMBOXMODE && !wheeltimer.isRunning() && e.getModifiersEx() == 0 && !capsLocked) // VR
14390
+ if (ZOOMBOXMODE && !wheeltimer.isRunning() && e.getModifiersEx() == 0 && !vr) // VR
1386214391 {
1386314392 keepboxmode = BOXMODE;
1386414393 keepsupport = SUPPORT;
....@@ -13899,7 +14428,7 @@
1389914428 //}
1390014429
1390114430 SetMouseMode(e.getModifiers(), WHEEL | e.getModifiersEx());
13902
- drag(anchorX, anchorY + e.getUnitsToScroll()*8, 0, 0);
14431
+ drag(anchorX, anchorY + e.getUnitsToScroll()*8, e.getModifiers(), e.getModifiersEx());
1390314432 anchorX = ax;
1390414433 anchorY = ay;
1390514434 prevX = px;
....@@ -13994,8 +14523,9 @@
1399414523 // fev 2014???
1399514524 if ((TRACK || SHADOWTRACK) && trackedobject != null) // && DrawMode() == SHADOW) // && !lightMode)
1399614525 object.GetWindow().ScreenFit(trackedobject, SHADOWTRACK && !TRACK);
13997
- pingthread.StepToTarget(true); // true);
14526
+ pingthread.StepToTarget(); // true);
1399814527 }
14528
+
1399914529 // if (!LIVE)
1400014530 super.repaint();
1400114531 }
....@@ -14058,14 +14588,15 @@
1405814588 drag = false;
1405914589 //System.out.println("Mouse DOWN");
1406014590 editObj = false;
14061
- ClickInfo info = new ClickInfo();
14062
- info.bounds.setBounds(0, 0, (int) (getBounds().width * zoom), (int) (getBounds().height * zoom));
14063
- info.pane = this;
14064
- info.camera = renderCamera;
14065
- info.x = x;
14066
- info.y = y;
14067
- info.modifiers = modifiersex;
14068
- editObj = object.doEditClick(info, 0);
14591
+ //ClickInfo info = new ClickInfo();
14592
+ object.clickInfo.bounds.setBounds(0, 0, (int) (getBounds().width * zoom), (int) (getBounds().height * zoom));
14593
+ object.clickInfo.pane = this;
14594
+ object.clickInfo.camera = renderCamera;
14595
+ object.clickInfo.x = x;
14596
+ object.clickInfo.y = y;
14597
+ object.clickInfo.modifiers = modifiersex;
14598
+ editObj = object.doEditClick(//info,
14599
+ 0);
1406914600 if (!editObj)
1407014601 {
1407114602 hasMarquee = true;
....@@ -14089,8 +14620,8 @@
1408914620
1409014621 //if (drawing)
1409114622 //return;
14092
- if ((e.getModifiersEx() & CTRL) != 0
14093
- || (e.getModifiersEx() & COMMAND) != 0) // || IsFrozen())
14623
+ if ((e.getModifiersEx() & CTRL) != 0 ||
14624
+ (e.getModifiersEx() & COMMAND) != 0) // || IsFrozen())
1409414625 {
1409514626 //System.out.println("mouseDragged: " + e);
1409614627 clickEnd(e.getX(), e.getY(), e.getModifiersEx());
....@@ -14114,9 +14645,17 @@
1411414645 return targetLookAt;
1411514646 }
1411614647
14648
+ javax.vecmath.Point3d eye = new javax.vecmath.Point3d();
14649
+ javax.vecmath.Point3d eye2 = new javax.vecmath.Point3d();
14650
+ javax.vecmath.Vector3d dir = new javax.vecmath.Vector3d();
14651
+
14652
+
1411714653 class PingThread extends Thread
1411814654 {
1411914655 boolean jump;
14656
+ boolean live;
14657
+
14658
+ boolean mute = false;
1412014659
1412114660 // void JumpToTarget()
1412214661 // {
....@@ -14132,6 +14671,95 @@
1413214671 // only one thread!? synchronized
1413314672 void StepToTarget(boolean jump)
1413414673 {
14674
+ RigidBody.pos.x = 0;
14675
+ RigidBody.pos.y = 0;
14676
+ RigidBody.pos.z = 0;
14677
+ if (RigidBody.justclicked)
14678
+ {
14679
+// RigidBody.pos.x = (float)manipCamera.lookAt.x;
14680
+// RigidBody.pos.y = (float)manipCamera.lookAt.y;
14681
+// RigidBody.pos.z = (float)manipCamera.lookAt.z;
14682
+ // System.err.println("selected point = " + Trunk(selectedpoint.toParent[3][0]) + " " + Trunk(selectedpoint.toParent[3][1]) + " " + Trunk(selectedpoint.toParent[3][2]));
14683
+ CreateSelectedPoint();
14684
+
14685
+ RigidBody.pos.x = (float)selectedpoint.toParent[3][0];
14686
+ RigidBody.pos.y = (float)selectedpoint.toParent[3][1];
14687
+ RigidBody.pos.z = (float)selectedpoint.toParent[3][2];
14688
+
14689
+ RigidBody.wind.set(RigidBody.pos);
14690
+ RigidBody.wind.x -= (float)manipCamera.location.x;
14691
+ RigidBody.wind.y -= (float)manipCamera.location.y;
14692
+ RigidBody.wind.z -= (float)manipCamera.location.z;
14693
+ RigidBody.wind.normalize();
14694
+ }
14695
+
14696
+ if (mute)
14697
+ return;
14698
+
14699
+ if (capsLocked && manipCamera.viewCode == 0)
14700
+ {
14701
+ eye.x = manipCamera.location.x;
14702
+ eye.y = manipCamera.location.y + 0.25;
14703
+ eye.z = manipCamera.location.z;
14704
+
14705
+ dir.y = -1;
14706
+
14707
+ Ray ray = new Ray(eye, dir);
14708
+
14709
+ IntersectResult res = new IntersectResult();
14710
+ res.t = Double.POSITIVE_INFINITY;
14711
+
14712
+ tmp.set(targetLookAt);
14713
+ tmp.sub(manipCamera.location);
14714
+
14715
+ double dist = tmp.length();
14716
+
14717
+ tmp.normalize();
14718
+
14719
+ eye2.x = manipCamera.location.x + tmp.x * 0.25;
14720
+ eye2.y = manipCamera.location.y + 0.25;
14721
+ eye2.z = manipCamera.location.z + tmp.z * 0.25;
14722
+
14723
+ Ray ray2 = new Ray(eye2, dir);
14724
+
14725
+ IntersectResult res2 = new IntersectResult();
14726
+ res2.t = Double.POSITIVE_INFINITY;
14727
+
14728
+ if (object.intersect(ray, res) && object.intersect(ray2, res2) && Math.abs(res.t - res2.t) < 0.25)
14729
+ {
14730
+ //tmp.set(manipCamera.location);
14731
+
14732
+ manipCamera.location.x = ray.eyePoint.x + ray.viewDirection.x * res.t;
14733
+ manipCamera.location.y = ray.eyePoint.y + ray.viewDirection.y * res.t + 0.5;
14734
+ manipCamera.location.z = ray.eyePoint.z + ray.viewDirection.z * res.t;
14735
+
14736
+ //tmp.sub(manipCamera.location);
14737
+
14738
+ targetLookAt.x = ray2.eyePoint.x + ray2.viewDirection.x * res2.t;
14739
+ targetLookAt.y = ray2.eyePoint.y + ray2.viewDirection.y * res2.t + 0.5;
14740
+ targetLookAt.z = ray2.eyePoint.z + ray2.viewDirection.z * res2.t;
14741
+
14742
+ targetLookAt.sub(manipCamera.location);
14743
+ targetLookAt.normalize();
14744
+ targetLookAt.mul(dist);
14745
+ targetLookAt.add(manipCamera.location);
14746
+
14747
+ //if (tmp.dot(tmp) > 0.000001)
14748
+ // System.out.println("INTERSECTION " + manipCamera.location);
14749
+
14750
+ manipCamera.lookAt.set(targetLookAt);
14751
+
14752
+ tmp.x = res.n.x;
14753
+ tmp.y = res.n.y;
14754
+ tmp.z = res.n.z;
14755
+ tmp.x += res2.n.x;
14756
+ tmp.y += res2.n.y;
14757
+ tmp.z += res2.n.z;
14758
+ tmp.normalize();
14759
+ manipCamera.UP.set(tmp);
14760
+ }
14761
+ }
14762
+
1413514763 tmp.set(targetLookAt);
1413614764 tmp.sub(manipCamera.lookAt); // june 2014
1413714765
....@@ -14169,7 +14797,7 @@
1416914797
1417014798 if (tmp.dot(tmp) > 1) // may 2014. far away: jump to target
1417114799 {
14172
- jump = true; // step = 1;
14800
+ // sep 2019 jump = true; // step = 1;
1417314801 }
1417414802
1417514803 if (OEILONCE && OEIL)
....@@ -14204,7 +14832,10 @@
1420414832 if (tmp.dot(tmp) < 0.00001)
1420514833 {
1420614834 zoomonce = false;
14835
+ live = false;
1420714836 }
14837
+ else
14838
+ live = true;
1420814839
1420914840 tmp.mul(step > step2 ? step : step2);
1421014841 }
....@@ -14231,7 +14862,7 @@
1423114862 {
1423214863 if (LOOKAT)
1423314864 manipCamera.lookAt.add(tmp);
14234
- if (OEIL)
14865
+ if (OEIL && !capsLocked)
1423514866 manipCamera.location.add(tmp);
1423614867
1423714868 {
....@@ -14246,7 +14877,10 @@
1424614877 lightCamera.computeTransform();
1424714878 }
1424814879 }
14249
- manipCamera.computeTransform();
14880
+ if (tmp.x != 0 || tmp.y != 0 || tmp.z != 0)
14881
+ {
14882
+ manipCamera.computeTransform();
14883
+ }
1425014884 }
1425114885 // ?????? mouseDown = true;
1425214886 //System.out.println("---------------- ---------- Paint " + tmp.length2());
....@@ -14339,49 +14973,107 @@
1433914973 }
1434014974 }
1434114975 }
14976
+
1434214977 PingThread pingthread = new PingThread();
14343
- int delta = 5;
14344
- int speed = 5;
14978
+ int delta = 1;
14979
+ int speed = 1;
14980
+ int walk = 8;
1434514981 boolean autorepeat = false;
1434614982
14983
+ void Walk()
14984
+ {
14985
+ manipCamera.BackForth(0, walk, 1000);
14986
+
14987
+ targetLookAt.set(manipCamera.lookAt);
14988
+ }
14989
+
14990
+ void ViewAngle(float dy)
14991
+ {
14992
+ double factor = Math.exp(-dy/300.0); // (1 + dy/100);
14993
+
14994
+ if (manipCamera.shaper_fovy * factor > 1 &&
14995
+ manipCamera.shaper_fovy * factor < 150)
14996
+ {
14997
+ manipCamera.shaper_fovy *= factor;
14998
+ //System.out.println("fovy = " + shaper_fovy);
14999
+ }
15000
+ }
15001
+
1434715002 void GoDown(int mod)
1434815003 {
1434915004 MODIFIERS |= COMMAND;
15005
+ boolean isVR = (mouseMode&VR)!=0;
1435015006 /**/
1435115007 if((mod&SHIFT) == SHIFT)
14352
- manipCamera.RotatePosition(0, -speed);
14353
- else
14354
- manipCamera.BackForth(0, -speed*delta, 0); // getWidth());
14355
- /**/
14356
- if ((mod & SHIFT) == SHIFT)
1435715008 {
14358
- mouseMode = mouseMode; // VR??
14359
- } else
14360
- {
14361
- mouseMode |= BACKFORTH;
15009
+// if (isVR)
15010
+// manipCamera.RotateInterest(0, speed);
15011
+// else
15012
+ if (isVR)
15013
+ ViewAngle(-speed*delta);
15014
+ else
15015
+ manipCamera.Translate(0, -speed*delta, getWidth());
1436215016 }
15017
+ else
15018
+ {
15019
+ if (isVR)
15020
+ manipCamera.BackForth(0, -speed*delta, isVR?1000:0); // getWidth());
15021
+ else
15022
+ manipCamera.RotatePosition(0, -speed);
15023
+ }
15024
+
15025
+ /**/
15026
+// if ((mod & SHIFT) == SHIFT)
15027
+// {
15028
+// mouseMode = mouseMode; // VR??
15029
+// } else
15030
+// {
15031
+// mouseMode |= BACKFORTH;
15032
+// }
1436315033
15034
+ targetLookAt.set(manipCamera.lookAt);
15035
+
1436415036 //prevX = X = anchorX;
1436515037 prevY = Y = anchorY - (int) (renderCamera.Distance());
1436615038 }
1436715039
1436815040 void GoUp(int mod)
1436915041 {
15042
+ RigidBody.justclicked = true;
15043
+
1437015044 MODIFIERS |= COMMAND;
1437115045 /**/
15046
+ boolean isVR = (mouseMode&VR)!=0;
15047
+
1437215048 if((mod&SHIFT) == SHIFT)
14373
- manipCamera.RotatePosition(0, speed);
14374
- else
14375
- manipCamera.BackForth(0, speed*delta, 0); // getWidth());
14376
- /**/
14377
- if ((mod & SHIFT) == SHIFT)
1437815049 {
14379
- mouseMode = mouseMode;
14380
- } else
14381
- {
14382
- mouseMode |= BACKFORTH;
15050
+// if (isVR)
15051
+// manipCamera.RotateInterest(0, -speed);
15052
+// else
15053
+ if (isVR)
15054
+ ViewAngle(speed*delta);
15055
+ else
15056
+ manipCamera.Translate(0, speed*delta, getWidth());
1438315057 }
15058
+ else
15059
+ {
15060
+ if (isVR)
15061
+ manipCamera.BackForth(0, speed*delta, isVR?1000:0); // getWidth());
15062
+ else
15063
+ manipCamera.RotatePosition(0, speed);
15064
+ }
15065
+
15066
+ /**/
15067
+// if ((mod & SHIFT) == SHIFT)
15068
+// {
15069
+// mouseMode = mouseMode;
15070
+// } else
15071
+// {
15072
+// mouseMode |= BACKFORTH;
15073
+// }
1438415074
15075
+ targetLookAt.set(manipCamera.lookAt);
15076
+
1438515077 //prevX = X = anchorX;
1438615078 prevY = Y = anchorY + (int) (renderCamera.Distance());
1438715079 }
....@@ -14391,18 +15083,29 @@
1439115083 MODIFIERS |= COMMAND;
1439215084 /**/
1439315085 if((mod&SHIFT) == SHIFT)
14394
- manipCamera.Translate(speed*delta, 0, getWidth());
15086
+ manipCamera.Translate(speed, 0, getWidth());
1439515087 else
14396
- manipCamera.RotatePosition(speed, 0);
15088
+ {
15089
+ if ((mouseMode&VR)!=0)
15090
+ manipCamera.RotateInterest(-speed*manipCamera.shaper_fovy/90, 0);
15091
+ else
15092
+ manipCamera.RotatePosition(speed*manipCamera.shaper_fovy/90, 0);
15093
+ }
15094
+
1439715095 /**/
14398
- if ((mod & SHIFT) == SHIFT)
14399
- {
14400
- mouseMode = mouseMode;
14401
- } else
14402
- {
14403
- mouseMode |= ROTATE;
14404
- } // TRANSLATE;
15096
+// if ((mod & SHIFT) == SHIFT)
15097
+// {
15098
+// mouseMode = mouseMode;
15099
+// } else
15100
+// {
15101
+// mouseMode |= ROTATE;
15102
+// } // TRANSLATE;
1440515103
15104
+ //System.err.println("lookAt = " + manipCamera.lookAt);
15105
+ //System.err.println("location = " + manipCamera.location);
15106
+
15107
+ targetLookAt.set(manipCamera.lookAt);
15108
+
1440615109 prevX = X = anchorX - 10; // (int)(10*renderCamera.Distance());
1440715110 prevY = Y = anchorY;
1440815111 }
....@@ -14412,18 +15115,26 @@
1441215115 MODIFIERS |= COMMAND;
1441315116 /**/
1441415117 if((mod&SHIFT) == SHIFT)
14415
- manipCamera.Translate(-speed*delta, 0, getWidth());
15118
+ manipCamera.Translate(-speed, 0, getWidth());
1441615119 else
14417
- manipCamera.RotatePosition(-speed, 0);
15120
+ {
15121
+ if ((mouseMode&VR)!=0)
15122
+ manipCamera.RotateInterest(speed*manipCamera.shaper_fovy/90, 0);
15123
+ else
15124
+ manipCamera.RotatePosition(-speed*manipCamera.shaper_fovy/90, 0);
15125
+ }
15126
+
1441815127 /**/
14419
- if ((mod & SHIFT) == SHIFT)
14420
- {
14421
- mouseMode = mouseMode;
14422
- } else
14423
- {
14424
- mouseMode |= ROTATE;
14425
- } // TRANSLATE;
15128
+// if ((mod & SHIFT) == SHIFT)
15129
+// {
15130
+// mouseMode = mouseMode;
15131
+// } else
15132
+// {
15133
+// mouseMode |= ROTATE;
15134
+// } // TRANSLATE;
1442615135
15136
+ targetLookAt.set(manipCamera.lookAt);
15137
+
1442715138 prevX = X = anchorX + 10; // (int)(10*renderCamera.Distance());
1442815139 prevY = Y = anchorY;
1442915140 }
....@@ -14465,15 +15176,16 @@
1446515176 if (editObj)
1446615177 {
1446715178 drag = true;
14468
- ClickInfo info = new ClickInfo();
14469
- info.bounds.setBounds(0, 0,
15179
+ //ClickInfo info = new ClickInfo();
15180
+ object.clickInfo.bounds.setBounds(0, 0,
1447015181 (int) (getBounds().width * zoom), (int) (getBounds().height * zoom));
14471
- info.pane = this;
14472
- info.camera = renderCamera;
14473
- info.x = x;
14474
- info.y = y;
14475
- object.GetWindow().copy
14476
- .doEditDrag(info, (modifiers & MouseEvent.BUTTON3_MASK) != 0);
15182
+ object.clickInfo.pane = this;
15183
+ object.clickInfo.camera = renderCamera;
15184
+ object.clickInfo.x = x;
15185
+ object.clickInfo.y = y;
15186
+ object //.GetWindow().copy
15187
+ .doEditDrag(//info,
15188
+ (modifiers & MouseEvent.BUTTON3_MASK) != 0);
1447715189 } else
1447815190 {
1447915191 if (x < startX)
....@@ -14556,6 +15268,11 @@
1455615268 if ((mouseMode & ZOOM) != 0)
1455715269 {
1455815270 //if ((mouseMode & BACKFORTH) != 0)
15271
+ if ((modifiersex & SHIFT) == SHIFT)
15272
+ {
15273
+ ViewAngle(dy);
15274
+ }
15275
+ else
1455915276 if ((mouseMode & VR) != 0)
1456015277 manipCamera.BackForth(dx, dy, getWidth());
1456115278 else
....@@ -14622,24 +15339,30 @@
1462215339 }
1462315340 }
1462415341
15342
+// ClickInfo clickInfo = new ClickInfo();
15343
+
1462515344 public void mouseMoved(MouseEvent e)
1462615345 {
15346
+//object.editWindow.frame.
15347
+ setCursor(Cursor.getDefaultCursor());
15348
+
1462715349 //System.out.println("mouseMoved: " + e);
1462815350 if (isRenderer)
1462915351 return;
1463015352
14631
- ClickInfo ci = new ClickInfo();
14632
- ci.x = e.getX();
14633
- ci.y = e.getY();
14634
- ci.modifiers = e.getModifiersEx();
14635
- ci.bounds.setBounds(0, 0, (int) (getBounds().width * zoom), (int) (getBounds().height * zoom));
14636
- ci.pane = this;
14637
- ci.camera = renderCamera;
15353
+ // Mouse cursor feedback
15354
+ object.clickInfo.x = e.getX();
15355
+ object.clickInfo.y = e.getY();
15356
+ object.clickInfo.modifiers = e.getModifiersEx();
15357
+ object.clickInfo.bounds.setBounds(0, 0, (int) (getBounds().width * zoom), (int) (getBounds().height * zoom));
15358
+ object.clickInfo.pane = this;
15359
+ object.clickInfo.camera = renderCamera;
1463815360 if (!isRenderer)
1463915361 {
1464015362 //ObjEditor editWindow = object.editWindow;
1464115363 //Object3D copy = editWindow.copy;
14642
- if (object.doEditClick(ci, 0))
15364
+ if (object.doEditClick(//clickInfo,
15365
+ 0))
1464315366 {
1464415367 setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
1464515368 } else
....@@ -14651,6 +15374,12 @@
1465115374
1465215375 public void mouseReleased(MouseEvent e)
1465315376 {
15377
+ if (isRenderer && !movingcamera)
15378
+ {
15379
+ RigidBody.justclicked = true;
15380
+ System.out.println("justclicked: " + e);
15381
+ }
15382
+
1465415383 Globals.MOUSEDRAGGED = false;
1465515384
1465615385 movingcamera = false;
....@@ -14807,8 +15536,10 @@
1480715536 mouseMode |= ZOOM;
1480815537 }
1480915538
14810
- boolean capsLocked = Toolkit.getDefaultToolkit().getLockingKeyState(KeyEvent.VK_CAPS_LOCK);
14811
- if (capsLocked) // || (modifiers & META) == META)
15539
+ //boolean capsLocked = Toolkit.getDefaultToolkit().getLockingKeyState(KeyEvent.VK_CAPS_LOCK);
15540
+ boolean vr = capsLocked && !lightMode;
15541
+
15542
+ if (vr) // || (modifiers & META) == META)
1481215543 {
1481315544 mouseMode |= VR; // BACKFORTH;
1481415545 }
....@@ -14820,7 +15551,8 @@
1482015551 {
1482115552 mouseMode |= SELECT;
1482215553 }
14823
- if ((modifiersex & SHIFT) == SHIFT || forcetranslate || (modifiers & MouseEvent.BUTTON3_MASK) != 0)
15554
+ if (//(modifiersex & SHIFT) == SHIFT ||
15555
+ forcetranslate || (modifiers & MouseEvent.BUTTON3_MASK) != 0)
1482415556 {
1482515557 mouseMode &= ~VR;
1482615558 mouseMode |= TRANSLATE;
....@@ -14864,8 +15596,18 @@
1486415596 float SATPOW = 1; // 2; // 0.5f;
1486515597 float BRIPOW = 1; // 0.5f; // 0.5f;
1486615598
15599
+static BufferedImage cursorImg = new BufferedImage(16, 16, BufferedImage.TYPE_INT_ARGB);
15600
+
15601
+// Create a new blank cursor.
15602
+static Cursor blankCursor = Toolkit.getDefaultToolkit().createCustomCursor(
15603
+ cursorImg, new Point(0, 0), "blank cursor");
15604
+
1486715605 public void keyPressed(int key)
1486815606 {
15607
+// Set the blank cursor to the JFrame.
15608
+//object.editWindow.frame.
15609
+ setCursor(blankCursor);
15610
+
1486915611 if (key >= '0' && key <= '5')
1487015612 clampbit = (key-'0');
1487115613
....@@ -14911,7 +15653,8 @@
1491115653 // break;
1491215654 case 'T':
1491315655 CACHETEXTURE ^= true;
14914
- textures.clear();
15656
+ texturepigment.clear();
15657
+ texturebump.clear();
1491515658 // repaint();
1491615659 break;
1491715660 case 'Y':
....@@ -14921,8 +15664,8 @@
1492115664 case 'K':
1492215665 KOMPACTTEXTURE ^= true;
1492315666 //textures.clear();
14924
- break;
14925
- case 'P': // Texture Projection macros
15667
+ // break;
15668
+ //case 'P': // Texture Projection macros
1492615669 // SAVETEXTURE ^= true;
1492715670 macromode = true;
1492815671 Udebug = Vdebug = NORMALdebug = false; programInitialized = false;
....@@ -15023,8 +15766,8 @@
1502315766 RevertCamera();
1502415767 repaint();
1502515768 break;
15026
- case 'l':
15027
- //case 'L':
15769
+ //case 'l':
15770
+ case 'L':
1502815771 if (lightMode)
1502915772 {
1503015773 lightMode = false;
....@@ -15043,7 +15786,7 @@
1504315786 targetLookAt.set(manipCamera.lookAt);
1504415787 repaint();
1504515788 break;
15046
- case 'p':
15789
+ case 'P': // p':
1504715790 // c'est quoi ca au juste? spherical ^= true;
1504815791 Skinshader ^= true; programInitialized = false;
1504915792 repaint();
....@@ -15054,7 +15797,8 @@
1505415797 break;
1505515798 case 'm':
1505615799 {
15057
- PrintMemory();
15800
+ //PrintMemory();
15801
+ ToggleImageFlip();
1505815802 break;
1505915803 }
1506015804 case 'M':
....@@ -15081,27 +15825,31 @@
1508115825 repaint();
1508215826 break;
1508315827 case 'O':
15084
- Globals.drawMode = OCCLUSION; // WARNING
15085
- repaint();
15086
- break;
15828
+ // Too dangerous. Use menu. Globals.drawMode = OCCLUSION; // WARNING
15829
+ //repaint();
15830
+ //break;
1508715831 case 'o':
1508815832 OCCLUSION_CULLING ^= true;
1508915833 System.out.println("OCCLUSION CULLING = " + OCCLUSION_CULLING);
1509015834 break;
15091
- case '0': envyoff ^= true; repaint(); break;
15835
+ //case '0': envyoff ^= true; repaint(); break;
1509215836 case '1':
1509315837 case '2':
1509415838 case '3':
1509515839 case '4':
1509615840 case '5':
15097
- newenvy = Character.getNumericValue(key);
15098
- repaint();
15099
- break;
1510015841 case '6':
1510115842 case '7':
1510215843 case '8':
1510315844 case '9':
15104
- BGcolor = (key - '6')/3.f;
15845
+ if (true) // envyoff)
15846
+ {
15847
+ BGcolor = (key - '1')/8.f;
15848
+ }
15849
+ else
15850
+ {
15851
+ //newenvy = Character.getNumericValue(key);
15852
+ }
1510515853 repaint();
1510615854 break;
1510715855 case '!':
....@@ -15171,7 +15919,21 @@
1517115919 // kompactbit = 6;
1517215920 // break;
1517315921 case ' ':
15922
+ capsLocked ^= true;
15923
+ repaint();
15924
+ break;
15925
+ case 'l':
1517415926 lightMode ^= true;
15927
+ if (lightMode)
15928
+ {
15929
+ keepshadow = Globals.RENDERSHADOW;
15930
+ Globals.RENDERSHADOW = false;
15931
+ }
15932
+ else
15933
+ {
15934
+ Globals.RENDERSHADOW = keepshadow;
15935
+ }
15936
+
1517515937 Globals.lighttouched = true;
1517615938 manipCamera = renderCamera = lightMode ? lightCamera : eyeCamera;
1517715939 targetLookAt.set(manipCamera.lookAt);
....@@ -15179,6 +15941,10 @@
1517915941 break;
1518015942 //case '`' :
1518115943 case ESC:
15944
+ if (FULLSCREEN)
15945
+ object.editWindow.ToggleFullScreen();
15946
+ break;
15947
+ case 'p':
1518215948 RENDERPROGRAM += 1;
1518315949 RENDERPROGRAM %= 3;
1518415950
....@@ -15217,6 +15983,10 @@
1521715983 case ENTER:
1521815984 // object.editWindow.ScreenFit(); // Edit();
1521915985 ToggleLive();
15986
+ if (capsLocked)
15987
+ {
15988
+ Globals.WALK ^= true;
15989
+ }
1522015990 break;
1522115991 case DELETE:
1522215992 ClearSelection();
....@@ -15253,17 +16023,23 @@
1525316023 object.GetWindow().refreshContents(true);
1525416024 break;
1525516025 case '{':
15256
- manipCamera.shaper_fovy /= 1.1;
16026
+ double factor = 1.1;
16027
+ if (manipCamera.shaper_fovy / factor > 0.1)
16028
+ manipCamera.shaper_fovy /= factor;
1525716029 System.out.println("FOV = " + manipCamera.shaper_fovy);
1525816030 repaint();
1525916031 break;
1526016032 case '}':
15261
- manipCamera.shaper_fovy *= 1.1;
16033
+ factor = 1.1;
16034
+ if (manipCamera.shaper_fovy * factor < 150)
16035
+ manipCamera.shaper_fovy *= factor;
1526216036 System.out.println("FOV = " + manipCamera.shaper_fovy);
1526316037 repaint();
1526416038 break;
1526516039 case '[':
15266
- manipCamera.shaper_fovy /= 1.01;
16040
+ factor = 1.01;
16041
+ if (manipCamera.shaper_fovy / factor > 0.1)
16042
+ manipCamera.shaper_fovy /= factor;
1526716043 if (false) //manipCamera.hAspect == 0)
1526816044 {
1526916045 double x = Math.tan(manipCamera.shaper_fovy * Math.PI / 180 / 2);
....@@ -15279,7 +16055,9 @@
1527916055 break;
1528016056 case ']':
1528116057 //manipCamera.shaper_fovy += (180 - manipCamera.shaper_fovy)*0.1;
15282
- manipCamera.shaper_fovy *= 1.01;
16058
+ factor = 1.01;
16059
+ if (manipCamera.shaper_fovy * factor < 150)
16060
+ manipCamera.shaper_fovy *= factor;
1528316061 if (false) //manipCamera.hAspect == 0)
1528416062 {
1528516063 double x = Math.tan(manipCamera.shaper_fovy * Math.PI / 180 / 2);
....@@ -15317,98 +16095,113 @@
1531716095 }
1531816096 }
1531916097
16098
+ boolean keys[] = new boolean[256];
16099
+ int speedkey[] = new int[256];
16100
+ int modifiers = 0;
16101
+
1532016102 public void processKeyEvent(KeyEvent e)
1532116103 {
1532216104 switch (e.getID())
1532316105 {
1532416106 case KeyEvent.KEY_PRESSED:
15325
- if (!autorepeat)
15326
- {
15327
- //System.out.println("processKeyEvent: " + KeyEvent.getKeyText(e.getKeyCode()));
15328
- keyPressed(e.getKeyChar(), e.getModifiersEx());
15329
- }
15330
- if (manipCamera == lightCamera)
15331
- {
15332
- switch (e.getKeyCode())
15333
- {
15334
- case DOWN_ARROW:
15335
- lightCamera.DECAL /= 2;
15336
- repaint();
15337
- break;
15338
- case UP_ARROW:
15339
- lightCamera.DECAL *= 2;
15340
- repaint();
15341
- break;
15342
- case LEFT_ARROW:
15343
- lightCamera.SCALE /= 2;
15344
- repaint();
15345
- break;
15346
- case RIGHT_ARROW:
15347
- lightCamera.SCALE *= 2;
15348
- repaint();
15349
- break;
15350
- default:
15351
- break;
15352
- }
15353
-
15354
- System.out.println("DECAL = " + lightCamera.DECAL + "; SCALE = " + lightCamera.SCALE);
15355
- } else
15356
- {
15357
- if (true) // !autorepeat)
15358
- {
15359
- boolean reset = true;
15360
-
15361
- switch (e.getKeyCode())
15362
- {
15363
- case DOWN_ARROW:
15364
- GoDown(e.getModifiersEx());
15365
- repaint();
15366
- break;
15367
- case UP_ARROW:
15368
- GoUp(e.getModifiersEx());
15369
- repaint();
15370
- break;
15371
- case LEFT_ARROW:
15372
- GoLeft(e.getModifiersEx());
15373
- repaint();
15374
- break;
15375
- case RIGHT_ARROW:
15376
- GoRight(e.getModifiersEx());
15377
- repaint();
15378
- break;
15379
- default:
15380
- reset = false;
15381
- break;
15382
- }
15383
-
15384
- if (reset)
15385
- {
15386
- autorepeat = true;
15387
-
15388
- targetLookAt.set(manipCamera.lookAt);
15389
- }
15390
- }
15391
- }
16107
+ keys[e.getKeyCode()] = true;
16108
+ modifiers = e.getModifiersEx();
16109
+ keyPressed(e.getKeyChar(), modifiers);
16110
+ //Globals.theRenderer.keyPressed(e.getKeyChar());
16111
+ repaint();
1539216112 break;
15393
- case KeyEvent.KEY_TYPED:
15394
- break;
16113
+// if (!autorepeat)
16114
+// {
16115
+// //System.out.println("processKeyEvent: " + KeyEvent.getKeyText(e.getKeyCode()));
16116
+// keyPressed(e.getKeyChar(), e.getModifiersEx());
16117
+// }
16118
+// if (manipCamera == lightCamera)
16119
+// {
16120
+// switch (e.getKeyCode())
16121
+// {
16122
+// case DOWN_ARROW:
16123
+// lightCamera.DECAL /= 2;
16124
+// repaint();
16125
+// break;
16126
+// case UP_ARROW:
16127
+// lightCamera.DECAL *= 2;
16128
+// repaint();
16129
+// break;
16130
+// case LEFT_ARROW:
16131
+// lightCamera.SCALE /= 2;
16132
+// repaint();
16133
+// break;
16134
+// case RIGHT_ARROW:
16135
+// lightCamera.SCALE *= 2;
16136
+// repaint();
16137
+// break;
16138
+// default:
16139
+// break;
16140
+// }
16141
+//
16142
+// System.out.println("DECAL = " + lightCamera.DECAL + "; SCALE = " + lightCamera.SCALE);
16143
+// } else
16144
+// {
16145
+// if (true) // !autorepeat)
16146
+// {
16147
+// boolean reset = true;
16148
+//
16149
+// switch (e.getKeyCode())
16150
+// {
16151
+// case DOWN_ARROW:
16152
+// GoDown(e.getModifiersEx());
16153
+// repaint();
16154
+// break;
16155
+// case UP_ARROW:
16156
+// GoUp(e.getModifiersEx());
16157
+// repaint();
16158
+// break;
16159
+// case LEFT_ARROW:
16160
+// GoLeft(e.getModifiersEx());
16161
+// repaint();
16162
+// break;
16163
+// case RIGHT_ARROW:
16164
+// GoRight(e.getModifiersEx());
16165
+// repaint();
16166
+// break;
16167
+// default:
16168
+// reset = false;
16169
+// break;
16170
+// }
16171
+//
16172
+// if (reset)
16173
+// {
16174
+// autorepeat = true;
16175
+//
16176
+// targetLookAt.set(manipCamera.lookAt);
16177
+// }
16178
+// }
16179
+// }
16180
+// break;
16181
+// case KeyEvent.KEY_TYPED:
16182
+// break;
1539516183 case KeyEvent.KEY_RELEASED:
15396
- {
15397
- switch (e.getKeyCode())
15398
- {
15399
- case DOWN_ARROW:
15400
- case UP_ARROW:
15401
- case LEFT_ARROW:
15402
- case RIGHT_ARROW:
15403
- MODIFIERS &= ~COMMAND;
15404
- autorepeat = false;
15405
- break;
15406
- default:
15407
- break;
15408
- }
16184
+ keys[e.getKeyCode()] = false;
16185
+ modifiers = e.getModifiersEx();
1540916186 keyReleased(e.getKeyChar(), e.getModifiersEx());
16187
+ repaint();
1541016188 break;
15411
- }
16189
+// {
16190
+// switch (e.getKeyCode())
16191
+// {
16192
+// case DOWN_ARROW:
16193
+// case UP_ARROW:
16194
+// case LEFT_ARROW:
16195
+// case RIGHT_ARROW:
16196
+// MODIFIERS &= ~COMMAND;
16197
+// autorepeat = false;
16198
+// break;
16199
+// default:
16200
+// break;
16201
+// }
16202
+// keyReleased(e.getKeyChar(), e.getModifiersEx());
16203
+// break;
16204
+// }
1541216205 default:
1541316206 break;
1541416207 }
....@@ -15664,8 +16457,6 @@
1566416457
1566516458 int width = getBounds().width;
1566616459 int height = getBounds().height;
15667
- ClickInfo info = new ClickInfo();
15668
- info.bounds.setBounds(0, 0, (int) (width * zoom), (int) (height * zoom));
1566916460 //Image img = CreateImage(width, height);
1567016461 //System.out.println("width = " + width + "; height = " + height + "\n");
1567116462
....@@ -15742,31 +16533,37 @@
1574216533 }
1574316534 if (object != null && !hasMarquee)
1574416535 {
16536
+ if (object.clickInfo == null)
16537
+ object.clickInfo = new ClickInfo();
16538
+ ClickInfo info = object.clickInfo;
16539
+ //ClickInfo info = new ClickInfo();
16540
+ info.bounds.setBounds(0, 0, (int) (width * zoom), (int) (height * zoom));
16541
+
1574516542 if (isRenderer)
1574616543 {
15747
- info.flags++;
16544
+ object.clickInfo.flags++;
1574816545 double frameAspect = (double) width / (double) height;
1574916546 if (frameAspect > renderCamera.aspect)
1575016547 {
1575116548 int desired = (int) ((double) height * renderCamera.aspect);
15752
- info.bounds.width -= width - desired;
15753
- info.bounds.x += (width - desired) / 2;
16549
+ object.clickInfo.bounds.width -= width - desired;
16550
+ object.clickInfo.bounds.x += (width - desired) / 2;
1575416551 } else
1575516552 {
1575616553 int desired = (int) ((double) width / renderCamera.aspect);
15757
- info.bounds.height -= height - desired;
15758
- info.bounds.y += (height - desired) / 2;
16554
+ object.clickInfo.bounds.height -= height - desired;
16555
+ object.clickInfo.bounds.y += (height - desired) / 2;
1575916556 }
1576016557 }
1576116558
15762
- info.g = gr;
15763
- info.camera = renderCamera;
16559
+ object.clickInfo.g = gr;
16560
+ object.clickInfo.camera = renderCamera;
1576416561 /*
1576516562 // Memory intensive (brep.verticescopy)
1576616563 if (!(object instanceof Composite))
1576716564 object.draw(info, 0, false); // SLOW :
1576816565 */
15769
- if (!isRenderer)
16566
+ if (!isRenderer) // && drag)
1577016567 {
1577116568 Grafreed.Assert(object != null);
1577216569 Grafreed.Assert(object.selection != null);
....@@ -15774,9 +16571,9 @@
1577416571 {
1577516572 int hitSomething = object.selection.get(0).hitSomething;
1577616573
15777
- info.DX = 0;
15778
- info.DY = 0;
15779
- info.W = 1;
16574
+ object.clickInfo.DX = 0;
16575
+ object.clickInfo.DY = 0;
16576
+ object.clickInfo.W = 1;
1578016577 if (hitSomething == Object3D.hitCenter)
1578116578 {
1578216579 info.DX = X;
....@@ -15788,13 +16585,14 @@
1578816585 info.DY -= info.bounds.height/2;
1578916586 }
1579016587
15791
- object.drawEditHandles(info, 0);
16588
+ object.drawEditHandles(//info,
16589
+ 0);
1579216590
1579316591 if (drag && (X != 0 || Y != 0))
1579416592 {
1579516593 switch (hitSomething)
1579616594 {
15797
- case Object3D.hitCenter: gr.setColor(Color.pink);
16595
+ case Object3D.hitCenter: gr.setColor(Color.white);
1579816596 gr.drawLine(X, Y, info.bounds.width/2, info.bounds.height/2);
1579916597 break;
1580016598 case Object3D.hitRotate: gr.setColor(Color.yellow);
....@@ -15820,7 +16618,7 @@
1582016618 if (hasMarquee)
1582116619 {
1582216620 gr.setXORMode(Color.white);
15823
- gr.setColor(Color.red);
16621
+ gr.setColor(Color.white);
1582416622 if (!firstime)
1582516623 {
1582616624 gr.drawRect(prevmarqX, prevmarqY, prevmarqW, prevmarqH);
....@@ -15979,7 +16777,8 @@
1597916777
1598016778 public boolean mouseDrag(Event evt, int x, int y)
1598116779 {
15982
- //System.out.println("mouseDrag: " + evt);
16780
+ System.out.println("mouseDrag: " + evt);
16781
+ System.exit(0);
1598316782 /*
1598416783 drag = true;
1598516784 //System.out.println("Mouse DRAG");
....@@ -16098,6 +16897,7 @@
1609816897 public boolean mouseUp(Event evt, int x, int y)
1609916898 {
1610016899 System.out.println("mouseUp: " + evt);
16900
+ System.exit(0);
1610116901 /*
1610216902 locked = false;
1610316903 if (isRenderer)
....@@ -16287,6 +17087,8 @@
1628717087 private /*static*/ boolean firstime;
1628817088 private /*static*/ cVector newView = new cVector();
1628917089 private static final String[] suffixes = {"posx", "negx", "posy", "negy", "posz", "negz"};
17090
+ private static final String[] suffixes2 = {"east", "west", "top", "bottom", "north", "south"};
17091
+ private static final String[] suffixes3 = {"ft", "bk", "up", "dn", "rt", "lf"};
1629017092 private static final int[] targets = {GL.GL_TEXTURE_CUBE_MAP_POSITIVE_X,
1629117093 GL.GL_TEXTURE_CUBE_MAP_NEGATIVE_X,
1629217094 GL.GL_TEXTURE_CUBE_MAP_POSITIVE_Y,
....@@ -16299,36 +17101,74 @@
1629917101 {
1630017102 com.sun.opengl.util.texture.Texture cubemap = TextureIO.newTexture(GL.GL_TEXTURE_CUBE_MAP);
1630117103
17104
+ int usedsuf = 0;
17105
+
1630217106 for (int i = 0; i < suffixes.length; i++)
1630317107 {
16304
- String resourceName = basename + suffixes[i] + "." + suffix;
16305
- TextureData data = TextureIO.newTextureData(scope.getResourceAsStream(resourceName),
16306
- mipmapped,
16307
- FileUtil.getFileSuffix(resourceName));
16308
- if (data == null)
17108
+ String[] suffixe = suffixes;
17109
+ String[] fallback = suffixes2;
17110
+ String[] fallfallback = suffixes3;
17111
+
17112
+ for (int c=usedsuf; --c>=0;)
1630917113 {
16310
- throw new IOException("Unable to load texture " + resourceName);
17114
+// String[] temp = suffixe;
17115
+// suffixe = fallback;
17116
+// fallback = fallfallback;
17117
+// fallfallback = temp;
1631117118 }
17119
+
17120
+ String resourceName = basename + suffixe[i] + "." + suffix;
17121
+ TextureData data;
17122
+
17123
+ try
17124
+ {
17125
+ data = TextureIO.newTextureData(scope.getResourceAsStream(resourceName),
17126
+ mipmapped,
17127
+ FileUtil.getFileSuffix(resourceName));
17128
+ }
17129
+ catch (Exception e)
17130
+ {
17131
+ try
17132
+ {
17133
+ resourceName = basename + fallback[i] + "." + suffix;
17134
+ data = TextureIO.newTextureData(scope.getResourceAsStream(resourceName),
17135
+ mipmapped,
17136
+ FileUtil.getFileSuffix(resourceName));
17137
+ }
17138
+ catch (Exception e2)
17139
+ {
17140
+ resourceName = basename + fallfallback[i] + "." + suffix;
17141
+ data = TextureIO.newTextureData(scope.getResourceAsStream(resourceName),
17142
+ mipmapped,
17143
+ FileUtil.getFileSuffix(resourceName));
17144
+ }
17145
+ }
17146
+
1631217147 //System.out.println("Target = " + targets[i]);
1631317148 cubemap.updateImage(data, targets[i]);
1631417149 }
1631517150
1631617151 return cubemap;
1631717152 }
17153
+
1631817154 int bigsphere = -1;
1631917155
1632017156 float BGcolor = 0.5f;
1632117157
16322
- private void DrawSkyBox(GL gl)
17158
+ float ambientLight[] = {1f, 1f, 1f, 1.0f};
17159
+
17160
+ private void DrawSkyBox(GL gl, float ratio)
1632317161 {
16324
- if (envyoff || cubemap == null)
17162
+ if (//envyoff ||
17163
+ WIREFRAME ||
17164
+ cubemap == null)
1632517165 {
1632617166 gl.glClearColor(BGcolor, BGcolor, BGcolor, 1);
1632717167 gl.glClear(gl.GL_COLOR_BUFFER_BIT);
1632817168 return;
1632917169 }
1633017170
16331
- if (WIREFRAME)
17171
+ //if (WIREFRAME)
1633217172 gl.glPolygonMode(gl.GL_FRONT_AND_BACK, gl.GL_FILL);
1633317173
1633417174 gl.glDisable(gl.GL_CULL_FACE);
....@@ -16336,7 +17176,17 @@
1633617176 // Compensates for ExaminerViewer's modification of modelview matrix
1633717177 gl.glMatrixMode(GL.GL_MODELVIEW);
1633817178 gl.glLoadIdentity();
17179
+ gl.glScalef(1,ratio,1);
1633917180
17181
+// colorV[0] = 2;
17182
+// colorV[1] = 2;
17183
+// colorV[2] = 2;
17184
+// colorV[3] = 1;
17185
+// gl.glDisable(gl.GL_COLOR_MATERIAL);
17186
+// gl.glMaterialfv(gl.GL_FRONT_AND_BACK, gl.GL_AMBIENT, colorV, 0);
17187
+//
17188
+// gl.glLightModelfv(gl.GL_LIGHT_MODEL_AMBIENT, ambientLight, 0);
17189
+
1634017190 //gl.glActiveTexture(GL.GL_TEXTURE1);
1634117191 //gl.glDisable(GL.GL_TEXTURE_CUBE_MAP);
1634217192
....@@ -16368,6 +17218,7 @@
1636817218 {
1636917219 gl.glScalef(1.0f, -1.0f, 1.0f);
1637017220 }
17221
+ gl.glScalef(-1.0f, 1.0f, 1.0f);
1637117222 gl.glMultMatrixd(viewrot_1, 0);
1637217223 gl.glTranslatef(0, 0, 0.5f); // (float)lightCamera.Distance()); // 0.5f);
1637317224 //viewer.updateInverseRotation(gl);
....@@ -16408,7 +17259,8 @@
1640817259 gl.glDisable(GL.GL_TEXTURE_GEN_R);
1640917260
1641017261 cubemap.disable();
16411
- ////cubemap.unbind();
17262
+ //cubemap.dispose();
17263
+
1641217264 if (CULLFACE)
1641317265 {
1641417266 gl.glEnable(gl.GL_CULL_FACE);
....@@ -16416,6 +17268,8 @@
1641617268
1641717269 if (WIREFRAME)
1641817270 gl.glPolygonMode(gl.GL_FRONT_AND_BACK, gl.GL_LINE);
17271
+ else
17272
+ gl.glPolygonMode(gl.GL_FRONT_AND_BACK, gl.GL_FILL);
1641917273 }
1642017274
1642117275 private void DrawChecker(GL gl)
....@@ -16464,7 +17318,7 @@
1646417318 gl.glScalef(1.0f, -1.0f, 1.0f);
1646517319 }
1646617320
16467
- gl.glNormal3f(0.0f, 0.0f, 1.0f);
17321
+ SetGLNormal(gl, 0.0f, 0.0f, 1.0f);
1646817322
1646917323 float step = 2; // 0.1666f; //0.25f;
1647017324 float stepv = 2; // step * 1652 / 998;
....@@ -16626,7 +17480,7 @@
1662617480 //new Exception().printStackTrace();
1662717481 System.out.println("select buffer init");
1662817482 // Use debug pipeline
16629
- drawable.setGL(new DebugGL(drawable.getGL()));
17483
+ //drawable.setGL(new DebugGL(drawable.getGL()));
1663017484
1663117485 GL gl = drawable.getGL();
1663217486
....@@ -16753,7 +17607,7 @@
1675317607
1675417608 float depth = depths[y * TEX_SIZE + x];
1675517609
16756
- if (pointselection && mouseMode == SELECT && depth != 0 && depth != 1)
17610
+ if (pointselection && (mouseMode & SELECT) == SELECT && depth != 0 && depth != 1)
1675717611 {
1675817612 pointselection = false;
1675917613
....@@ -16944,6 +17798,7 @@
1694417798
1694517799 public void init(GLAutoDrawable drawable)
1694617800 {
17801
+ if (Globals.DEBUG)
1694717802 System.out.println("shadow buffer init");
1694817803
1694917804 GL gl = drawable.getGL();
....@@ -17172,10 +18027,14 @@
1717218027 gl.glFlush();
1717318028
1717418029 /**/
17175
- gl.glReadPixels(0, 0, OCCLUSION_SIZE, OCCLUSION_SIZE, GL.GL_DEPTH_COMPONENT, GL.GL_FLOAT, occlusionsizebuffer);
18030
+ gl.glReadPixels(0, 0, OCCLUSION_SIZE, OCCLUSION_SIZE, GL.GL_DEPTH_COMPONENT, GL.GL_FLOAT, occlusiondepthbuffer);
1717618031
17177
- float[] pixels = occlusionsizebuffer.array();
18032
+ float[] depths = occlusiondepthbuffer.array();
1717818033
18034
+ gl.glReadPixels(0, 0, OCCLUSION_SIZE, OCCLUSION_SIZE, GL.GL_BGRA, GL.GL_UNSIGNED_INT_8_8_8_8_REV, occlusioncolorbuffer);
18035
+
18036
+ int[] pixels = selectsizebuffer.array();
18037
+
1717918038 double r = 0, g = 0, b = 0;
1718018039
1718118040 double count = 0;
....@@ -17186,7 +18045,7 @@
1718618045
1718718046 double FACTOR = 1;
1718818047
17189
- for (int i = 0; i < pixels.length; i++)
18048
+ for (int i = 0; i < depths.length; i++)
1719018049 {
1719118050 int x = i / OCCLUSION_SIZE - OCCLUSION_SIZE / 2;
1719218051 int y = i % OCCLUSION_SIZE - OCCLUSION_SIZE / 2;
....@@ -17269,7 +18128,7 @@
1726918128
1727018129 double scale = ray.z; // 1; // cos
1727118130
17272
- float depth = pixels[newindex];
18131
+ float depth = depths[newindex];
1727318132
1727418133 /*
1727518134 int newindex2 = (x + 1) * OCCLUSION_SIZE + y;
....@@ -17412,6 +18271,11 @@
1741218271 static boolean DEBUG_SELECTION = false;
1741318272 boolean OCCLUSION_CULLING = false; //true;
1741418273 public boolean lightMode = false;
18274
+
18275
+ private boolean keepshadow;
18276
+
18277
+ static public boolean capsLocked = false; // VR
18278
+
1741518279 static public int indexcount = 0;
1741618280 /*static*/ cColor vertexOcclusion = new cColor();
1741718281 //private int selection_view = -1;
....@@ -17466,11 +18330,14 @@
1746618330 static IntBuffer AAbuffer; // = IntBuffer.allocate(MAX_SIZE*MAX_SIZE);
1746718331 static IntBuffer bigAAbuffer;
1746818332 static java.nio.FloatBuffer histogram = BufferUtil.newFloatBuffer(HISTOGRAM_SIZE * 3);
17469
- static IntBuffer texturesizebuffer = IntBuffer.allocate(TEX_SIZE * TEX_SIZE);
18333
+ //static IntBuffer texturesizebuffer = IntBuffer.allocate(TEX_SIZE * TEX_SIZE);
1747018334 static IntBuffer selectsizebuffer = IntBuffer.allocate(SELECT_SIZE * SELECT_SIZE);
1747118335 static java.nio.FloatBuffer pointselectsizebuffer = java.nio.FloatBuffer.allocate(SELECT_SIZE * SELECT_SIZE);
1747218336 //static IntBuffer occlusionsizebuffer = IntBuffer.allocate(OCCLUSION_SIZE * OCCLUSION_SIZE);
17473
- static java.nio.FloatBuffer occlusionsizebuffer = java.nio.FloatBuffer.allocate(OCCLUSION_SIZE * OCCLUSION_SIZE);
18337
+ static java.nio.FloatBuffer occlusiondepthbuffer = java.nio.FloatBuffer.allocate(OCCLUSION_SIZE * OCCLUSION_SIZE);
18338
+
18339
+ static IntBuffer occlusioncolorbuffer = IntBuffer.allocate(OCCLUSION_SIZE * OCCLUSION_SIZE);
18340
+
1747418341 static BufferedImage bufimage = new BufferedImage(TEX_SIZE, TEX_SIZE, BufferedImage.TYPE_INT_RGB);
1747518342 static BufferedImage textest = new cBufferedImage(1, 1, BufferedImage.TYPE_INT_ARGB);
1747618343 static java.util.Vector<BufferedImage> billboards = new java.util.Vector<BufferedImage>();