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 (407)
games submitted by our members
Games in WIP (293)
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  
  BufferedImage.getSubImage() ?  (Read 2271 times)
0 Members and 1 Guest are viewing this topic.
Offline appel

JGO Ninja


Medals: 35
Projects: 5


I always win!


« Posted 2005-12-25 02:46:57 »

I'm using getSubImage() to get a BufferedImage area of an image and it draws it very slowly, here's what I'm doing:
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
// initialize.
     BufferedImage sprites = null;
      try {
         sprites = ImageIO.read(getClass().getResource("sprites.gif"));
      } catch (IOException e1) {
         e1.printStackTrace();
      }

      BufferedImage badGuy = sprites.getSubimage(82,0,19,25);
      BufferedImage goodGuy = sprites.getSubimage(56,0,26,13);
      BufferedImage bullet = sprites.getSubimage(41,25,16,5);
      BufferedImage explosion = sprites.getSubimage(0,0,32,31);

...

// start game loop
...
// update world
...
// draw world
g.drawImage(...); // for each of those 4 images.


pretty straight forward, but the framerate drops down to 1 fps, how can I speed things up, or accomplish what I'm trying to do in a different way?

Check out the 4K competition @ www.java4k.com
Check out GAMADU (my own site) @ http://gamadu.com/
Offline trembovetski

Senior Member




If only I knew what I'm talking about!


« Reply #1 - Posted 2005-12-25 22:08:25 »

The getSubImage() call disables the ability to hardware accelerate the image.

You have a choice: either create a bunch of images (one per character) or
just leave the single image with all sprites and use one of the drawImage calls
which allows you to specify a source (and destination if needed) rectangle.

So basically instead of a subimage you'll have a Rectangle (representing
the sprite coordinates in the one large sprite image) associated
with a character.

Hope this helps..

Thanks,
  Dmitri
Java2D Team
Offline K.I.L.E.R

Senior Member




Java games rock!


« Reply #2 - Posted 2005-12-28 19:53:07 »

Alternatively you could create another image and copy the pixels from the subbed image into the new image and return the new image.
You get the sub image and still have acceleration.

Vorax:
Is there a name for a "redneck" programmer?

Jeff:
Unemployed. Wink
Games published by our own members! Check 'em out!
Legends of Yore - The Casual Retro Roguelike
Offline appel

JGO Ninja


Medals: 35
Projects: 5


I always win!


« Reply #3 - Posted 2005-12-28 22:36:49 »

Yes, both good ideas, have opened up many possibilites for me. Thanks for the help Smiley

Check out the 4K competition @ www.java4k.com
Check out GAMADU (my own site) @ http://gamadu.com/
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!
 
Browse for soundtracks for your game!

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!
cubemaster21 (89 views)
2013-05-17 21:29:12

alaslipknot (98 views)
2013-05-16 21:24:48

gouessej (128 views)
2013-05-16 00:53:38

gouessej (123 views)
2013-05-16 00:17:58

theagentd (134 views)
2013-05-15 15:01:13

theagentd (121 views)
2013-05-15 15:00:54

StreetDoggy (163 views)
2013-05-14 15:56:26

kutucuk (185 views)
2013-05-12 17:10:36

kutucuk (187 views)
2013-05-12 15:36:09

UnluckyDevil (194 views)
2013-05-12 05:09:57
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

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
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!
Page created in 0.081 seconds with 20 queries.