The following method (yours, but I was close to writing the same thing!) doesn't work at all on my ground. I think that something must have changed either in jpct or OpenGL in the years since you wrote it:
public void tileTexture(Object3D obj, float tileFactor) {
PolygonManager pm = obj.getPolygonManager();
int end=pm.getMaxPolygonID();
for (int i=0; i<end; i++) {
SimpleVector uv0=pm.getTextureUV(i,0);
SimpleVector uv1=pm.getTextureUV(i,1);
SimpleVector uv2=pm.getTextureUV(i,2);
uv0.scalarMul(tileFactor);
uv1.scalarMul(tileFactor);
uv2.scalarMul(tileFactor);
int id = pm.getPolygonTexture(i);
TextureInfo ti=new TextureInfo(id, uv0.x, uv0.y, uv1.x, uv1.y, uv2.x, uv2.y);
pm.setPolygonTexture(i, ti);
}
}
And a good while ago you mentioned that you were considering a shader-based solution for shadow-casting from texture transparency (otherwise, my trees' shadows would all be rectangular). Have you started it? Has anyone else?
That code should be fine. I'm using the exact same thing and it works just fine for me. All it does it resetting the texture coordinates, it has nothing to do with the way in which OpenGL works. You have to apply it before calling compile() on the object though.
About the tree shadows...i can't remember saying something like this and no, i haven't done anything in this regard. However, i'm not sure what the problem is. Do you have a screen shot?
Right now, my ground plane isn't receiving any shadows to begin with, but if I put a Primitives-created plane over it, the shadows work:
(https://dl.dropboxusercontent.com/u/93826015/ShadowProblem.jpg)
I would think that something between the setup of the white plane and the actual ground is different then. There's no obvious reason for why it shouldn't work on that plane. If you apply the tiling to the around make sure to do that before adding it to the shadow mapper and if that doesn't change anything, try not to tile it at all.
I'm not tiling and I'm not doing anything differently from the white plane. I'm really not. I think that there's a bug somewhere in the ShadowHelper, because I really have tried everything (and since that tiling code doesn't seem to work on my ground, I'm not using it and I'd bet that the two issues are somehow related).
If the tiling doesn't work as well, that's an indication that your object is already compiled at that stage.
I just tested that both tiling and shadows work when I don't mergeObjects() (the ground is made of more than one part). Merging probably does something wrong with the mesh!
It just merges arrays. I don't see why that should affect changing the UV mapping or (which is what the ShadowHelper does) adding another texture layer. All i can still think of is that you are doing all this after calling compile(). Any chance that you have a method which does the merging that also does the compilation.
I've tried calling compileAndStrip() both before and after setting up the ShadowHelper. Neither works. The only thing that works is not calling Object3D.mergeObjects().
More testing and, trust me, it is the merging that's causing the problem.
I still don't see how. I guess i need a test case then...
OK. Coming up in your mailbox.
My test case isn't producing the expected result. One thing that it does show is that mergeObjects adds the rotation matrices of both planes (I have to rotateMesh() and clearRotation() on one before merging them). Alas, shadows (on two Primitives-created planes) I'm getting.
So another hypothesis is that the merging of both planes produces too complex a mesh for the ShadowHelper. Is that possible? If so, is there a workaround?
mergeObjects doesn't touch rotation matrices. Whatever your test case does with rotations, it has nothing to do with the merge. If you do a rotateMesh() on both, the result will simply be the vertices and polygons of both rotated meshes merged into one. The rotation matrix of the resulting mesh will be the identity matrix.
Quote from: AGP on February 02, 2015, 05:34:33 PM
So another hypothesis is that the merging of both planes produces too complex a mesh for the ShadowHelper. Is that possible? If so, is there a workaround?
Actually no. All it does it adding the depth map as an addional texture layer to all receivers. That's independent from the mesh's size. The only size related issue that i can think of might come up if you don't compile the mesh. In that case, rendering it from the light source (which is what the ShadowHelper) might exceed the maximum number of visible polygons. If that's the case, you'll get a warning message printed into the log once.
My observation about rotateMesh() and clearRotation() still stands: without calling them on one of the planes, the merged was rotated so that its normals didn't face the camera and the plane was invisible.
Can you hypothesize something else about the shadows? All I know is that when the planes aren't merged, the shadows (and tiling) work. When they are, they break.
I've double checked it: The merge operation doesn't do anything with the rotations matrices. Not with those of the source object and not with those of the merged target. It just merges two arrays into one. The resulting mesh of course differs if you have or haven't called rotateMesh on either one of the sources or both. Anyway, i'm actually not sure what your issue is, so maybe we are talking about different things here.
Back to the shadows: No, i'm out of ideas ATM. You can try to the set the Logger to debug and Config.glVerbose=true and post the log output. Maybe it will reveal something...
That's a good idea, thanks. I've e-mailed you the log file because it's too big to attach here. There's a "Found empty stage at 0" message that I don't know what it means but which looks suspicious to me...
No, that's actually a good sign... ;) It means that the shadow map has been added at stage 0 of the multi-texturing stages, which is stage 1 of the object. Or in other words: The object has one texture stage only (which is to be expected) and two after adding it as a receiver. And that's exactly how it's supposed to be. Judging from the number of messages, the object added as a receiver has ~6000 polygons. Does this match your terrain mesh?
The log looks fine to me. Can you post/mail the rest as well, i.e. the first rendering cycle up to the first visible frame?
What do you mean? Did I not send you the whole log via email?
I'm not sure. It ends with "Loading Texture...from Image"...if it would be the complete log with Config.glVerbose=true, i would expect some more details about texture uploads and such.
I stopped merging the planes in order to get my shadows. It works this way, so whatever.
Now, the problem is that I'm moving the shadows with the following code:
double currentTime = time.getTimeOfDay();
if (time.getTimeOfDay() >= 0.00f && time.getTimeOfDay() < 0.05f){
projector.setPosition(sunInitialPosition);
sun.setPosition(sunInitialPosition);
}
SimpleVector position = sun.getPosition();
position.x = sunInitialPosition.x +(300f*(float)time.percentage);
sun.setPosition(position);
projector.setPosition(position);
The results are horrendous-looking shadows as shown in the following video:
https://drive.google.com/file/d/0Bxu4PEHAObLJVzBuNnM1bFNDTXM/view?usp=sharing (https://drive.google.com/file/d/0Bxu4PEHAObLJVzBuNnM1bFNDTXM/view?usp=sharing)
What do you mean? I can't spot anything wrong with the shadows... ???
The shadows look horrendous. The first thing that anyone says when they see this is how bad the shadows look, but if I don't move the sun, the shadows look distinctly better.
If you are moving the sun/projector, you'll get some aliasing effects on the shadows based on the size of the shadow map, the distance of the sun from the scene and the fov of the projector. You can try to decrease the fov and/or the distance to increase the accuracy. Apart from that, there's nothing you can do with this kind of shadows. I haven't seen anything in the video that i found surprising, but the quality was pretty low though. Maybe you can upload the video that shows the problem in more detail? Maybe i'm just not sseing it.
If it still doesn't work out, just don't move the sun...