[WIP] BasicSSAO – Added optional smoothing

@oxplay2 said:
@t0neg0d:
huh... changing to "*0.005" or "200.0" and later to "*0.01" or "100.0" give no result... no ssao appearance...


Will update the int/float issue. I try not to do this, but it is an issue that doesn't throw errors under windows, so I miss it sometimes.

@oxplay2 said:
you should really make repository ;) if there would be, then i could tell you which update made issue.


If I was any sort of decent developer >.<

@oxplay2 said:
on lower fps there is weird artifact(only with smooth set on)


Yeah.. the method of blurring generates noise that is static to the screen. Lower FPS will really make this stand out unfortunately. But, it is the fastest method I could come up with that produced decent looking results.

As for the toggleSSAO, I added that for debugging. What isn't working with it?

@oxplay2 said:
@t0neg0d:
last JME nightly update need postQueue method updated.

I'm not using nightly... can you explain the issue?

@t0neg0d

I’m not using nightly… can you explain the issue?

http://code.google.com/p/jmonkeyengine/source/diff?spec=svn9780&r=9777&format=side&path=/trunk/engine/src/core/com/jme3/post/Filter.java&old_path=/trunk/engine/src/core/com/jme3/post/Filter.java&old=9255

line 294
protected void postQueue(RenderManager renderManager, ViewPort viewPort) ->
protected void postQueue(RenderQueue queue)

Reason:
Filter postQueue method now takes a
RenderQueue as parameter like
SceneProcessor instead of the
RenderManager and ViewPort.
Filters that were using those attributes
now properly keep a reference on them in
the filterInit method.

HAH!!! I know exactly why this changed ( @nehon )! I was grumbling about how to work around this issue (to myself) when trying to implement an idea just a little while ago. Um… I’m not completely sure what the changes will be to this filter, but I bet this broke a LOT of older contributions :slight_smile: Glad this is changing though!! I’ll post the update once I’ve had a chance to look at how this effected other Filters I’ve written in general.



Thanks for the notification. I’m thinking I best start using nightly, so I can fix these issues as they come up.

1 Like

don’t afraid to use nightly.



using that version, you are just “top trendy” :smiley:



and BTW: wait for fixes :roll:

@oxplay2 said:
don't afraid to use nightly.

using that version, you are just "top trendy" :D

and BTW: wait for fixes :roll:


Ok... grab the updated filter class. It's the only thing that has changed. In case you are using any other filters that have this issue, here is what to do:

In your variable declaration, add:

[java]RenderManager renderManager;
ViewPort viewPort;[/java]

In the initFilter grab the pointers to these...

[java]this.renderManager = renderManager;
this.viewPort = vp;[/java]

Seeing as none of the Filters that exist already would be utilizing RenderQueue... the only possible thing that could go wrong with doing the above would be the references to vp instead of viewPort.

Hope this helps!

yeah, it works. thanks!



and wish you good using of nightly :slight_smile:

1 Like
@oxplay2 said:
yeah, it works. thanks!

and wish you good using of nightly :)


Pretty excited about this change... I wanted to try out post filter shadow blending to see if it would help improve a shadows look (this would still use blending from the lights perspective, but hopefully help with the final effect). Anyways... off to try this and then back to finishing up that Sky Dome.
@t0neg0d said:
Pretty excited about this change... I wanted to try out post filter shadow blending to see if it would help improve a shadows look (this would still use blending from the lights perspective, but hopefully help with the final effect). Anyways... off to try this and then back to finishing up that Sky Dome.

Actually i made this change exactly for this :p
I'm gonna commit a post shadow filter soon, so you can experiment with additional convolution.
I knew it would break some contributions, but, there is not that much filters that use this method....except SSAO :p
2 Likes
@nehon said:
Actually i made this change exactly for this :p
I'm gonna commit a post shadow filter soon, so you can experiment with additional convolution.
I knew it would break some contributions, but, there is not that much filters that use this method....except SSAO :p



Will you commit this SSAO filter to the JME0Filters? Or i should add it to shaderBlow?

I don’t know yet, i have to review it, test it and so on.

I don’t think it will be committed as is, i’ll probably use this contribution to the current one faster and make random sampling and convolution optional.

@nehon said:
I don't know yet, i have to review it, test it and so on.
I don't think it will be committed as is, i'll probably use this contribution to the current one faster and make random sampling and convolution optional.


Ok, i get you.. I'll wait for your decision for a while.

a tip:

if it work on my video card, then it must be tested… :roll:



Seriously noone should be “hurt”, when you mix it with JME SSAO.

@oxplay2 , can you give me your zipped version of the SSAO filter. I have some starnge artifacts…

Also, should there be glsl1.5 version of the filter?

mifth:



i have everything the same like in first post of this topic.



if you mean strange artifacts, maybe you mean smooth problem on lower fps? like this one:

http://www.youtube.com/watch?v=y892CeduCJ0


in that case you need to set smooth to false



also try to change Scale.

Here is the code:

http://code.google.com/p/jme-glsl-shaders/source/detail?r=484d87428186c9d5bc9065274bace1dbf0087bae



Screen:

http://www.mediafire.com/view/?1b3j2uai1exkpyl

mifth

it looks like mixed with GUI(but not statsView)…



i don’t use nifty(have my own lib for gui), so who knows, maybe GUI is a reason.



The similar issue is with transparent objects, ssao should read transparency parameter somehow.



anyway here is download for all ssao files i have(but they should not be different):

http://code.google.com/p/oxplay/downloads/list



t0neg0d:

have idea what is the reason?

Yes, i have the same with your code. Possibly there should be glsl1.5 files as for JME SSAO.

It seems there is no postQueue() method in nightlies…



http://code.google.com/p/jme-glsl-shaders/source/detail?r=77b6e73b62e1b71caedb6f168179332fae976159



trying to fix like that for nightlies…

@mifth:

It seems there is no postQueue() method in nightlies…


there is, but with modified arguments list.

read our earlier posts.

we already fixed it.

ahhh… i seee. Thanks, i fixed in my code it too!



Whooooo!!! COOOL FILTER!!!