Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (416)
games submitted by our members
Games in WIP (306)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Alpha testing & no blending for trees. How to?  (Read 910 times)
0 Members and 1 Guest are viewing this topic.
zahl2001
Guest
« Posted 2004-01-29 13:50:13 »

I followed the recent post about this topic, but it didn't
have enough detail for me to figure out how to actually get it off the ground.  If someone has a small program they could e-mail me that spells out where all of the various gl* functions go and how you prepare the images for use with transparency it would be great. My e-mail address is kmyers@bardstowncable.net.  

Thanks much
Offline Orangy Tang

JGO Kernel


Medals: 48
Projects: 11


Monkey for a head


« Reply #1 - Posted 2004-01-29 14:19:50 »

After the last tree thread i updated the wiki, perhaps that'll help?
http://wiki.java.net/bin/view/Games/AlphaTestingWithOpenGL

Although it sounds like you're having problems actually loading a suitable texture. Hunt back though the forum and you'll find the texure loader classes which can do that for you, then you can just load a .png with a built-in alpha channel and use that.

Other than that, where are you having problems?

[ TriangularPixels.com - Play Growth Spurt, Rescue Squad and Snowman Village ] [ Rebirth - game resource library ]
zahl2001
Guest
« Reply #2 - Posted 2004-01-29 14:38:44 »

Orangy,

From the Red Book I can't really get a solid idea of which gl* calls go in the init() method, and which ones go in the display() method.  For that matter, I ALSO can't get a solid idea of what ORDER the calls should be placed inside of those 2 methods...

I can see that there are method calls that pertain to
2D textures in general, and then others that pertain to
the use of transparent 2D textures.  If someone is willing to list the order of all methods concerned, the order they should appear in, and where they appear that would be wonderful.

Feel free to assume I have a valid texture loaded.

Thanks again.
Games published by our own members! Check 'em out!
Play the free demo of Revenge of the Titans!
Offline Orangy Tang

JGO Kernel


Medals: 48
Projects: 11


Monkey for a head


« Reply #3 - Posted 2004-01-29 16:42:43 »

Theres very little difference between the init and display methods, the only thing to remember is that init only gets called once at startup (so may be a good place to load textures and other resources). Most GL state (blending, alpha testing etc.) is best left to be specified in the display since it generally causes less problems debugging.

Remember that GL is a state machine, so a lot of the time the particular order of operations is pretty flexible. Mainly as long as the state is setup before you draw your objects then you'll be ok. Assuming you've already got textures set up and displaying on screen, you simply have to add:
glEnable(GL_ALPHA_TEST);
and set your compare function with:
glAlphaFunc(GL_GREATER, 0.5f); // Or whatever values you actually need.

If that doesn't give the correct effect, then odds are you're not generating the alpha correctly (either because the texture isn;t loaded right, or you're getting lighting and materials interfering). Start from a simple textured triangle and work up.

[ TriangularPixels.com - Play Growth Spurt, Rescue Squad and Snowman Village ] [ Rebirth - game resource library ]
zahl2001
Guest
« Reply #4 - Posted 2004-01-31 01:37:53 »

I just got this working, and I'm quite happy about it Smiley

Thanks Orangy
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Try the Free Demo of Revenge of the Titans

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
Jesse_Attard (10 views)
2013-06-18 22:03:02

HeroesGraveDev (55 views)
2013-06-15 23:35:23

Vermeer (55 views)
2013-06-14 20:08:06

davedes (55 views)
2013-06-14 16:03:55

alaslipknot (50 views)
2013-06-13 07:56:31

Roquen (67 views)
2013-06-12 04:12:32

alaslipknot (56 views)
2013-06-10 19:30:18

HeroesGraveDev (72 views)
2013-06-09 04:36:03

alaslipknot (60 views)
2013-06-09 03:40:19

CodeHead (60 views)
2013-06-09 02:55:41
Smoothing Algorithm Question
by UprightPath
2013-05-28 02:58:26

Smoothing Algorithm Question
by UprightPath
2013-05-28 02:57:33

Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!