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 (407)
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  
  [Need Help]Java3D mipmap problem!  (Read 1075 times)
0 Members and 1 Guest are viewing this topic.
Offline jiahan

Junior Newbie




Java games rock!


« Posted 2005-03-23 15:03:44 »

When I use mipmap mode in Texture component, I will get following error message..
----------------------------------------
java.lang.NullPointerException
   at javax.media.j3d.TextureRetained.checkSizes(TextureRetained.java:406)
   at javax.media.j3d.TextureRetained.setLive(TextureRetained.java:943)
   at javax.media.j3d.TextureUnitStateRetained.setLive(TextureUnitStateRetained.java:471)
   at javax.media.j3d.AppearanceRetained.setLive(AppearanceRetained.java:927)
   at javax.media.j3d.Shape3DRetained.doSetLive(Shape3DRetained.java:1066)
   at javax.media.j3d.Shape3DRetained.setLive(Shape3DRetained.java:891)
   at javax.media.j3d.GroupRetained.childDoSetLive(GroupRetained.java:2125)
   at javax.media.j3d.GroupRetained.doSetLive(GroupRetained.java:2180)
   at javax.media.j3d.TransformGroupRetained.setLive(TransformGroupRetained.java:549)
   at javax.media.j3d.GroupRetained.childDoSetLive(GroupRetained.java:2125)
   at javax.media.j3d.GroupRetained.doSetLive(GroupRetained.java:2180)
   at javax.media.j3d.BranchGroupRetained.setLive(BranchGroupRetained.java:160)
   at javax.media.j3d.GroupRetained.childDoSetLive(GroupRetained.java:2125)
   at javax.media.j3d.GroupRetained.doSetLive(GroupRetained.java:2180)
   at javax.media.j3d.TransformGroupRetained.setLive(TransformGroupRetained.java:549)
   at javax.media.j3d.GroupRetained.childDoSetLive(GroupRetained.java:2125)
   at javax.media.j3d.GroupRetained.doSetLive(GroupRetained.java:2180)
   at javax.media.j3d.BranchGroupRetained.setLive(BranchGroupRetained.java:160)
   at javax.media.j3d.GroupRetained.childCheckSetLive(GroupRetained.java:2132)
   at javax.media.j3d.GroupRetained.checkSetLive(GroupRetained.java:1527)
   at javax.media.j3d.GroupRetained.checkSetLive(GroupRetained.java:1448)
   at javax.media.j3d.GroupRetained.doAddChild(GroupRetained.java:483)
   at javax.media.j3d.GroupRetained.addChild(GroupRetained.java:456)
   at javax.media.j3d.Group.addChild(Group.java:266)
------------------------------------------------------

The code(I use setInterleavedVertexBuffer(J3DBuffer) to set geometry's vertex data):-----------------------------------------
Appearance a = new Appearance();
       Material m = new Material(new Color3f(0.6f,0.6f,0.6f), new Color3f(0,0,0),
               new Color3f(1,1,1), new Color3f(0.8f,0.8f,0.8f),32);
       TextureLoader loader = new TextureLoader(image,"RGBA",
               TextureLoader.BY_REFERENCE|TextureLoader.GENERATE_MIPMAP, null);
       ImageComponent2D tImage = loader.getImage();
       int textureSize =
               RenderingCapabilityManager.getTextureSize(new Dimension(tImage.getWidth(),
               tImage.getHeight()));
       Dimension size = new Dimension(textureSize, textureSize);
       Shape3D shape = new Shape3D(this.createPlane(v), a);
       Texture2D texture =
               new Texture2D(RenderingCapabilityManager.getMipMapMode(),
               Texture.RGBA,size.width, size.height);
       int imageLevel =0;
       boolean mipMode =
               RenderingCapabilityManager.getMipMapMode()
               ==Texture.MULTI_LEVEL_MIPMAP;
       TextureAttributes ta = new TextureAttributes();
       TextureUnitState[] tus = new TextureUnitState[1];
       tus[0] =  new TextureUnitState(texture, ta, null);
       PolygonAttributes pa =
               new PolygonAttributes(PolygonAttributes.POLYGON_FILL,
               PolygonAttributes.CULL_NONE, 0, true);
       TransparencyAttributes tta = new TransparencyAttributes(TransparencyAttributes.NICEST, 1f);
       ta.setTextureMode(TextureAttributes.REPLACE);
       
       pa.setUserData(false);//don't modify PolygonAttributes
       a.setPolygonAttributes(pa);
       a.setTransparencyAttributes(tta);
       do{
           tImage = loader.getScaledImage(size.width, size.height);
           texture.setImage(imageLevel++, tImage);
           System.out.println(tImage);
           size.width >>=1;
           size.height >>=1;
       }while(size.width>1 && size.height >1 &&
               mipMode);
       texture.setMaximumLevel(imageLevel-1);
       //System.out.println(texture.getImage(imageLevel-1));
       a.setTextureUnitState(tus);
       a.setMaterial(m);
-------------------------------------------
But if I did't use mipmap mode, use baselevel mode, every thing is working fine..
I do't know why...Is everyone can help me~

My JDK is 1.5,Java3D API is 1.3.1(OpenGl) and video card is Geforce6800 Ultra
Thanks...
Offline misterX

Junior Member




java forever!


« Reply #1 - Posted 2005-03-30 18:26:06 »

is your texture size a power of 2?
(if not, that may be the source of the error)
Offline jiahan

Junior Newbie




Java games rock!


« Reply #2 - Posted 2005-03-31 03:33:53 »

Yes, my texture is power of 2, and if I use beas level model, it's all working fine....
Does everyone know why? Huh
Games published by our own members! Check 'em out!
Try the Free Demo of Droid Assault
Offline shawnkendall

Senior Member




Apathy Error: Don't bother striking any key.


« Reply #3 - Posted 2006-04-25 18:51:40 »

DId you ever resolve this error?

I am getting it all of a sudden too.

Thanks for any help!

Shawn Kendall
Full Sail Real World Education
Immediate Mode Interactive, LLC
<A HREF="http://cosmic-game-engine.blogspot.com/">Cosmic Game Engine Dev Journal</a>
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 (88 views)
2013-05-17 21:29:12

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

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

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

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

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

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

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

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

UnluckyDevil (191 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.072 seconds with 21 queries.