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 (307)
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  
  Texturing without Swing  (Read 1453 times)
0 Members and 1 Guest are viewing this topic.
Offline gregorypierce

Senior Member




I come upon thee like the blue screen of death....


« Posted 2003-02-11 03:34:21 »

I noticed in a code example that I ran across that people were using Swing to load textures. If you really want to ditch the windowing tookit as a dependency you can't utilize javax.swing.* in your operations.

Below is a method for loading images which utilizes something that's guaranteed to be in JDK1.4 runtime and doesn't have any (obvious) dependencies on the swing architecture (and is cleaner code to boot).

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
            // load the image from disk
           //
           BufferedImage bufferedImage = ImageIO.read( new File( fileName ));

            // flip image to make GL happy
           //
           AffineTransform tx = AffineTransform.getScaleInstance(1, -1);
            tx.translate(0, -bufferedImage.getHeight(null));
            AffineTransformOp op = new AffineTransformOp(tx, AffineTransformOp.TYPE_NEAREST_NEIGHBOR);
            bufferedImage = op.filter(bufferedImage, null);

...


That will handle the loading and flipping of your textures. I leave the rest of the excercise of putting the textures into memory as an excercise for the reader.

http://www.gregorypierce.com

She builds, she builds oh man
When she links, she links I go crazy
Cause she looks like good code but she's really a hack
I think I'll run upstairs and grab a snack!
Offline gregorypierce

Senior Member




I come upon thee like the blue screen of death....


« Reply #1 - Posted 2003-02-11 03:37:18 »

Note. If you really want to have your own custom formats and such, you can just implement the SPI for images with ImageIO (trivial amount of work) and booyah, new image formats without having to pollute your engine code with it. ImageIO is good stuff.

That said, its complete a$$ that you can't go from an ImageIO load to a ByteBuffer (for all you Sun folks that might be reading this). ImageIO should have been endowed with those abilities dang-it, all of the new APIs should be able to produce and consume ByteBuffers!

http://www.gregorypierce.com

She builds, she builds oh man
When she links, she links I go crazy
Cause she looks like good code but she's really a hack
I think I'll run upstairs and grab a snack!
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!
 
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars and Titan!

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!
mrbenebob (21 views)
2013-06-19 14:55:23

BrassApparatus (31 views)
2013-06-19 08:52:37

NegativeZero (35 views)
2013-06-19 03:31:52

NegativeZero (36 views)
2013-06-19 03:24:09

Jesse_Attard (41 views)
2013-06-18 22:03:02

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

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

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

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

Roquen (93 views)
2013-06-12 04:12:32
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!