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 (306)
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  
  Screen Sometimes Blank at Game Start  (Read 248 times)
0 Members and 1 Guest are viewing this topic.
Offline Troncoso

Junior Member


Medals: 2



« Posted 2012-11-21 01:22:43 »

Hello! I've been working on a simple game engine. All was going pretty well, and I got the foundation finished. By that, I mean, the game sets up with user defined display settings, initializes stuff, and starts the game loop. Everything works great, except I have an issue in both Windowed mode and full screen:

In Windowed mode, sometimes the screen will appear blank, until I resize or minimize the window.

In full screen, I only get a blank screen if I use the default Display resolution. Most of the other resolutions appear just fine.

Here is some code relevant to displaying the screen:

This is performed when the use presses the play button on the display settings dialog
1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
public void actionPerformed(ActionEvent e) {
            DisplayMode dm = modes[resolutionBox.getSelectedIndex()];
            boolean fs = fullscreenBox.getSelectedItem().equals ("Fullscreen");
            boolean vs = vSyncCheckBox.isSelected();
         
            game.initScreen (dm, fs, vs);
            runGame (game);
           
            f.dispose();
         }
      });

private final void runGame(EGame g)
   {
      Thread t = new Thread (g);
      t.start();
   }


This is the run method in the EGame class
1  
2  
3  
4  
5  
6  
public final void run() {
      start();
      isRunning = true;
      gameLoop();
      endGame();
   }


The user of the engine will call the method setGameCanvas() in the start() method. Other things can go in the start() method, but for my test games, it just that method:
1  
2  
3  
4  
5  
6  
7  
protected final void setGameCanvas(EGameCanvas c)
   {
      screen.remove (canvas);
      canvas = c;
      canvas.addKeyListener (keyboard);
      screen.add (canvas);
   }


And finally, here is the gameLoop:
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  
45  
46  
47  
48  
49  
private final void gameLoop()
   {
      // Final setup before starting game
     canvas.setBuffer (2);
      screen.addKeyListener (keyboard);
      canvas.addKeyListener (keyboard);
     
      int TARGET_FPS = screen.getTargetFps();
      final long OPTIMAL_TIME = 1000000000 / TARGET_FPS;
     
      long lastLoopTime = System.nanoTime();
     
      long now = 0;
      long lastFpsTime = 0;
      long updateLength = 0;
      double delta = 0;
     
      int fps = 0;
     
      while (isRunning)
      {
         now = System.nanoTime();
         updateLength = now - lastLoopTime;
         lastLoopTime = now;
         delta = updateLength / ((double) OPTIMAL_TIME);

         lastFpsTime += updateLength;
         fps++;

         if (lastFpsTime >= 1000000000)
         {
            screen.setFps (fps);
            lastFpsTime = 0;
            fps = 0;
         }
         
         keyboard.poll();
         keyboardEvents();
         
         update (delta);
         
         render();

         try {
            Thread.sleep( (lastLoopTime-System.nanoTime() + OPTIMAL_TIME)/1000000 );
         }
         catch (Exception ex) {}
      }
   }


Now, keep in mind, neither of my issues existed, until I added the run method and ran it in a separate thread. I can about guarantee it's a threading issue.

But, I'm no expert, so any advice would be appreciated.
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!
NegativeZero (8 views)
2013-06-19 03:31:52

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

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

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

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

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

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

Roquen (73 views)
2013-06-12 04:12:32

alaslipknot (58 views)
2013-06-10 19:30:18

HeroesGraveDev (75 views)
2013-06-09 04:36:03
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!