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 (408)
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  
  All but ONE image won't paint when project is jared  (Read 921 times)
0 Members and 1 Guest are viewing this topic.
Offline Quadro

Senior Newbie





« Posted 2011-11-24 23:35:37 »

Everytime I put my Game I'm making into a jar every single Image loads except for the map, I know it's in the correct case and everything it just won't load, someone take a look at my code and tell me what I'm doing wrong in this?

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Toolkit;


public class map {

   Image map;
   String mp;
   public static int x = 0;
   public static int y = 0;
   
   public map(String mp) {
      this.mp = mp;
      map = Toolkit.getDefaultToolkit().getImage(this.getClass().getResource(mp));
   }
   
   public void paint(Graphics g) {
      g.drawImage(map, x, y, null);
   }
}


then I make a new Object with it
1  
public static map map = new map("images/Map2.png");


then later...
1  
map.paint(g);


What do I have to do to make it paint?? I've looked all around the web and the question never gets answered
Offline moogie

JGO Knight


Medals: 7
Projects: 5


Java games rock!


« Reply #1 - Posted 2011-11-25 01:39:20 »

are you absolutely positive that your file name is "exactly" the same as what your are attempting to load? i.e JAR entries are case sensitive
Offline gbeebe

Senior Member


Medals: 5
Projects: 1



« Reply #2 - Posted 2011-11-25 01:46:37 »

doesn't getImage() go on to do what it's supposed to without locking the flow of the program?  Are you sure the image is fully loaded before using it?
Games published by our own members! Check 'em out!
Play the free demo of Revenge of the Titans!
Offline Quadro

Senior Newbie





« Reply #3 - Posted 2011-11-25 07:38:36 »

Well I fixed the problem, I split the image into 4 pieces but now I can only load 3 of the 4 pieces of map, once I load 3 of them the 4th won't paint at all

new map class:
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  
import java.awt.Graphics;
import java.awt.Image;
import java.awt.Toolkit;


public class map extends Thread {

   Image map1;
   Image map2;
   Image map3;
   Image map4;
   String mp;
   Boolean cleaned = false;
   public static int x = 0;
   public static int y = 0;
   
   public map() {
      this.mp = mp;
      map1 = Toolkit.getDefaultToolkit().getImage(this.getClass().getResource("map/MapPiece1.jpeg"));
      map2 = Toolkit.getDefaultToolkit().getImage(this.getClass().getResource("map/MapPiece2.jpeg"));
      map3 = Toolkit.getDefaultToolkit().getImage(this.getClass().getResource("map/MapPiece3.jpeg"));
      map4 = Toolkit.getDefaultToolkit().getImage(this.getClass().getResource("map/MapPiece4.jpeg"));
   }
   
   public void paint(final Graphics g) {
      Runnable t = new Runnable() {
         public void run() {
      if(thing.p.realX < 4200 && thing.p.realY < 4200) {
      g.drawImage(map1, x, y, null);
      } else {
      }
      if(thing.p.realX > 3550 && thing.p.realY < 4150) {
      g.drawImage(map2, x+4001, y-1, null);
      } else {
      }
      if(thing.p.realY > 3800 && thing.p.realX < 4200) {
      g.drawImage(map3, x, y+4001, null);
      }  else {
      }
      if(thing.p.realX > 3800 && thing.p.realY > 3800 ) {
      g.drawImage(map4, x+4001, y+4001, null);
      } else {
      }
         }
      };
      t.run();
   }
}
Offline steveyO
« Reply #4 - Posted 2011-11-25 09:05:22 »

If its a loading issue then a MediaTracker will fix.  Try googling "Java MediaTracker" for code examples.

https://play.google.com/store/apps/details?id=com.bullsquared.alggame Annoying Little Gits (Android)
www.bullsquared.com   Play java (applet) games! www.chessclockpro.com Free Online Chess Clock
Offline ra4king

JGO Kernel


Medals: 264
Projects: 2


I'm the King!


« Reply #5 - Posted 2011-11-25 10:52:55 »

Try using a blocking solution like ImageIO.read(getClass().getResourceAsStream("file/path.jpg"));

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

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

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

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

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

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

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

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

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

UnluckyDevil (224 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.159 seconds with 20 queries.