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 (406)
games submitted by our members
Games in WIP (292)
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  
  How do I load from a sprite atlas?  (Read 650 times)
0 Members and 1 Guest are viewing this topic.
Offline dah01

Junior Member


Medals: 7



« Posted 2011-12-19 03:38:25 »

This was answered in another thread. I accidentally double submitted.
http://www.java-gaming.org/topics/using-lwjgl-and-slick2d-how-do-i-load-and-display-sprites-from-a-sprite-atlas/25325/view/topicseen.html
Offline Thau

Junior Newbie





« Reply #1 - Posted 2011-12-19 14:50:44 »

I did it by using glTexCoord2f. This way I'm only drawing part of the sprite sheet, instead of the entire thing. This might not be the way to do it (I'm still learning) but it works. Example of my draw method below (again, I'm still learning OpenGL, and I suck at the simplest of maths. so if there's anything retarded in there, please point it out  Wink )

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
24  
25  
26  
27  
28  
29  
30  
31  
32  
33  
34  
35  
36  
37  
38  
39  
40  
41  
42  
43  
44  
public void draw(float posX, float posY) {
      GL11.glPushMatrix();
     
      GL11.glEnable(GL11.GL_TEXTURE_2D);
      GL11.glTexEnvf(GL11.GL_TEXTURE_ENV, GL11.GL_TEXTURE_ENV_MODE, GL11.GL_REPLACE);

      texture.bind();
     
      GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MIN_FILTER, GL11.GL_NEAREST);
      GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_MAG_FILTER, GL11.GL_NEAREST);
      GL11.glTexParameteri(GL11.GL_TEXTURE_2D, GL11.GL_TEXTURE_WRAP_T, GL12.GL_CLAMP_TO_EDGE);
     
      float spriteWidth = (float) ((getWidth() / (float) columns) / getWidth());
      float spriteHeight = (float) (getHeight() / rows) / getHeight();
     
       
      float textureX1;
      float textureX2;
     
      if (orientation == MIRRORED) {
         textureX1 = (float) -(columns * spriteWidth) + (spriteWidth * ((currentTextureIndex % columns)+1));
         textureX2 = textureX1 - spriteWidth;
      } else {
         textureX1 = (float) (spriteWidth) * (currentTextureIndex % columns);
         textureX2 = textureX1 + spriteWidth;
      }
     
      float textureY1 = (float) (spriteHeight) * (currentTextureIndex / rows) % rows;
      float textureY2 = textureY1 + spriteHeight;
     

      GL11.glBegin(GL11.GL_QUADS);
      GL11.glTexCoord2f(textureX1, textureY1);
      GL11.glVertex2f(posX, posY);
      GL11.glTexCoord2f(textureX2, textureY1);
      GL11.glVertex2f(posX + spriteSize, posY);
      GL11.glTexCoord2f(textureX2, textureY2);
      GL11.glVertex2f(posX + spriteSize, posY + spriteSize);
      GL11.glTexCoord2f(textureX1, textureY2);
      GL11.glVertex2f(posX, posY + spriteSize);
      GL11.glEnd();

      GL11.glPopMatrix();
   }


EDIT: might be worth mentioning that this only works with sprite sheets/atlases where all the sprites are the same size
EDIT2: perhaps I should finish reading your entire code next time, it seems you are doing something similar in your code? but you're drawing the entire sheet in one loop? you're not treating each tile as a separate entity then? now I've gone got myself all confused... perhaps I'm in over my head Tongue
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 (67 views)
2013-05-17 21:29:12

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

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

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

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

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

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

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

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

UnluckyDevil (179 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.076 seconds with 20 queries.