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  
  Would there be any Thread.sleep problems?  (Read 450 times)
0 Members and 1 Guest are viewing this topic.
Offline tyeeeee1

Senior Member


Medals: 3
Projects: 1



« Posted 2013-02-17 17:49:50 »

I've been lurking around various websites and reading up on many different threads over the past few days and I noticed that a few people were saying not to use Thread.sleep for various reasons that I can't currently remember.

I was wondering if it's alright to be using Thread.sleep() in this circumstance:

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
class MessageDisplay
{
   public MessageDisplay()
   {
   }
   
   //NOTE: You may need to add a way to decide where to print the message or else this wont work!
  public void typeWriterDisplay(String x, int y) //Requires a string to display and an int to decide how long to wait between displaying letters.
  {
      for (int i = 0; i < x.length(); i++)
      {
         System.out.print( x.charAt(i) );
         try
         {
            Thread.sleep(y);
         }
         catch (Exception e)
         {
            e.printStackTrace();
         }
      }
   }
}


I'm using it to display strings character-by-character with a small delay between characters.
Offline ctomni231

JGO Knight


Medals: 28
Projects: 1


Not a glitch. Just have a lil' pixelexia...


« Reply #1 - Posted 2013-02-17 21:11:10 »

The only reason people have been saying not to use Thread.sleep(), because it is unreliable when it comes to tracking fixed time steps. Each OS has a different way of interpreting Thread.sleep() which will end up in a game running a lot slower on one PC than the other.

However, just because it is unreliable doesn't mean that you shouldn't use it. I think the only real weakness is that you make your game slightly less professional. Actually, even with variable time step, it still will fall weakness to lag spikes and your game will end up sputtering instead. (Though these things are barely noticeable with LWJGL because the frame rate is so much better anyway.)

Offline tyeeeee1

Senior Member


Medals: 3
Projects: 1



« Reply #2 - Posted 2013-02-17 21:51:05 »

Ah, that makes sense, thanks!
Do you know of any other ways to get this sort of character-by-character effect using the regular java libraries and without thread.sleep(), I'd rather avoid the laggy look that you were describing.
Games published by our own members! Check 'em out!
Legends of Yore - The Casual Retro Roguelike
Offline jonjava

JGO Knight


Medals: 34



« Reply #3 - Posted 2013-02-17 22:01:28 »

Many ways, something like this f.ex:

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  
String renderString = null;
String text = "hello";

long lastTime = System.currentTimeMillis();
long delay = 100; // 100 ms

run() {
  while (true) {
    tick();
    render();
    // probably limit the FPS somehow here
 }
}

tick() {
  long now = System.currentTimeMillis();
  // update string
 if ( now - lastTime > delay ) {
    renderString += text.charAt( renderString.length() + 1 );
    lastTime = now;
  }
}

render() {
  Graphics g = getGraphics();
  g.drawString( 0, 0, renderString );
}

Pages: [1]
  ignore  |  Print  
 
 

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!
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!