Java-Gaming.org Java4K winners: [ by our judges | by the community ]         
Featured games (67)
games approved by the League of Dukes
Games in Showcase (∞)
games submitted by our members



News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  Print  
  All but ONE image won't paint when project is jared  (Read 651 times)
0 Members and 2 Guests are viewing this topic.
Offline Quadro

JGO n00b
*

Posts: 2



« on: 2011-11-24 17: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 Strike Force
***

Posts: 775
Medals: 5


Java games rock!


« Reply #1 on: 2011-11-24 19: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

Full Member
**

Posts: 145
Medals: 5



« Reply #2 on: 2011-11-24 19: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! Go get 'em!
Offline Quadro

JGO n00b
*

Posts: 2



« Reply #3 on: 2011-11-25 01: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

Sr. Member
**

Posts: 310
Medals: 4



« Reply #4 on: 2011-11-25 03:05:22 »

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

www.bullsquared.com   Play java (applet) games! www.chessclockpro.com Free Online Chess Clock
Offline ra4king

JGO Kernel
*****

Posts: 3147
Medals: 196


I'm the King!


« Reply #5 on: 2011-11-25 04:52:55 »

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

Pages: [1]
  Print  
 
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.16 | SMF © 2011, Simple Machines Valid XHTML 1.0! Valid CSS!
Page created in 0.063 seconds with 19 queries.