I wanna to add some water effects in my android 2D game to give the impression that objects are under water and the water becomes higher and higher. Is there a way to do this programmatically. May be someone can give me please some code suggestions or can say where can I find something to get started. I like to do things programmatically. One time I saw a fire effect artificial done with code. Is the same possible in the water case ?

link|improve this question

69% accept rate
1  
Possibly useful thread on sister site: gamedev.stackexchange.com/questions/8727/…. Personally I'd expect to use GL shaders for this. – Reuben Scratton Dec 29 '11 at 14:34
Think the most relevant thing you need to tell us is what technology you are going to use: one of the GL specifications for android? or perhaps android own 2D graphics technology? – Elemental Dec 29 '11 at 14:36
Are you looking for the “reflection in water” effect, or more of a “looking through water distortion/diffraction,” or simply “some blue watery stuff tints the things behind it?” All of these can be done fairly fast in real time… – BRPocock Dec 29 '11 at 14:53
And be specific: what kind of water effect do you refer to? Rising water level including mirror effect on top? or water drops on the "screen"... – WarrenFaith Dec 29 '11 at 14:54
I'm sorry..Possible I would like to use my algorithm no GL library..the effect should be simple for 2D game. I want distortion/diffraction and tints changes. The point of view is lateral..so I could see the fishes which swim in the water and other stuff. – Claudio Ferraro Dec 29 '11 at 15:37
feedback

1 Answer

up vote 1 down vote accepted

You're going to have write a gl shader for the water effect.

steps:

  • render scene to render target (texture)
  • apply shader to render target

There are many different ways to write water type shaders in 2d. Search around for the technique that best suites your needs.

Caveat: Shader only work on devices with programable pipelines (devices that support OpenGL ES 2.0+

link|improve this answer
Ok..and without the use of OpenGl ? Is this possible ? – Claudio Ferraro Dec 30 '11 at 18:38
yes it's possible to do any of these 2d effects in software, however it most likely won't be as fast as using shaders. Basically you'll have to find an algorithm to deform the image and directly manipulate the pixels. Check out this to get an idea (Android Pixel Buffer) developer.android.com/reference/android/graphics/Bitmap.html – Byron Feb 5 at 20:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.