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 (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  
  2D Tile problems, any ideas?  (Read 1428 times)
0 Members and 1 Guest are viewing this topic.
Offline JayTe

Senior Newbie




Java games rock!


« Posted 2005-10-18 00:59:38 »

Hi!
I have a 2D engine (ortho mode and frustrum, does not matter) which tiles the screen with 32x32tiles, stored  in 256x256 tileMap.
When the tiles are drawn, (this is a fast side scroller) the gap betwen the tiles can be seen,  (fugly). The background is bright, tiles dark.

Also, the view is centred on the character, and when the character moves fast in one or other direction, (same sprite) I get this wierd
vertical scanline effect, depending on the speed of the charecter, the "scanlines" can be describes as fast moving highlighting lines. Or flicker.
Any ideas why this happens?

Every sprite is a quad. 
THis is the  GL init:
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
//Go into orthographic projection mode
           GL11.glMatrixMode(GL11.GL_PROJECTION);
            GL11.glLoadIdentity();
            GLU.gluOrtho2D(0.0f, (float)GAMEWIDTH, 0.0f, (float)GAMEHEIGHT);
            GL11.glMatrixMode(GL11.GL_MODELVIEW);
            GL11.glLoadIdentity();
            GL11.glViewport(0, 0, GAMEWIDTH,GAMEHEIGHT);
           
            //enable textures since we're going to use these for our sprites
           GL11.glEnable(GL11.GL_TEXTURE_2D);
           
            //disable the OpenGL depth test since we're rendering 2D graphics
           GL11.glDisable(GL11.GL_DEPTH_TEST);
           
            //Enable blending for OpenGL
           GL11.glEnable(GL11.GL_BLEND);
            GL11.glBlendFunc(GL11.GL_SRC_ALPHA, GL11.GL_ONE_MINUS_SRC_ALPHA);
            GL11.glTexEnvi(GL11.GL_TEXTURE_ENV, GL11.GL_TEXTURE_ENV_MODE, GL11.GL_MODULATE);
           


Offline JayTe

Senior Newbie




Java games rock!


« Reply #1 - Posted 2005-10-18 02:05:47 »

AH!
 First problem solved! Gah, spent 3 hours on the web looking for it, posted here, 10 minutes later, found solution.

Solution: load the textures as this:
GL11.glTexParameteri(target, GL11.GL_TEXTURE_MIN_FILTER,GL11.GL_NEAR);
GL11.glTexParameteri(target, GL11.GL_TEXTURE_MAG_FILTER, GL11.GL_NEAR);

However  the second problem is still there!
This "flikering" when the player sprite is moving sideways, and the game is scrolling fast.
 
Offline oNyx

JGO Coder


Medals: 1


pixels! :x


« Reply #2 - Posted 2005-10-18 02:18:57 »

GL11.GL_NEAR? Dont you mean GL11.GL_NEAREST and wrap? (Well, you can just use ints for the world-offset and the problem is solved.)

That flickering is most likely tearing. It also happens when moving vertically, but its less noticable then. Enabling vsync helps.

Fast scrolling... eh? Well, use some capping (see Display's sync() methods).

弾幕 ☆ @mahonnaiseblog
Games published by our own members! Check 'em out!
Try the Free Demo of Titan Attacks
Offline JayTe

Senior Newbie




Java games rock!


« Reply #3 - Posted 2005-10-18 15:10:20 »

Yes, GL_NEAREST.

Enable vsync? Hmm, is that possible in windowed mode? And how do I do it? (Sorry for the stupid questions, but im learning.)
Offline oNyx

JGO Coder


Medals: 1


pixels! :x


« Reply #4 - Posted 2005-10-19 00:47:14 »

Yes, it works in windowed mode.

Display.setVSyncEnabled(true);

Note that this is like asking for vsync. The driver can simply not allow it (if vsync is set to always off in the driver's panel).

弾幕 ☆ @mahonnaiseblog
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!
 
Get high quality music tracks 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 (76 views)
2013-05-17 21:29:12

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

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

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

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

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

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

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

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

UnluckyDevil (186 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.164 seconds with 20 queries.