AntonicelliVittorio / jmonkeyengine

Automatically exported from code.google.com/p/jmonkeyengine
0 stars 0 forks source link

TestQ3 won't run from JmeTests #636

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Create a new JME3 Tests project using Ctrl+Shift+N in the IDE.
2. Run the project.
3. Select TestQ3.

What is the expected output?
Interior based on Quake level 3.

What do you see instead?
com.jme3.asset.AssetLoadException: Failed to open zip file: quake3level.zip
    at com.jme3.asset.plugins.ZipLocator.setRootPath(ZipLocator.java:73)
    at com.jme3.asset.ImplHandler.tryLocate(ImplHandler.java:175)
    at com.jme3.asset.DesktopAssetManager.loadAsset(DesktopAssetManager.java:272)
    at com.jme3.asset.DesktopAssetManager.loadAsset(DesktopAssetManager.java:342)
    at jme3test.bullet.TestQ3.simpleInitApp(TestQ3.java:98)
    at com.jme3.app.SimpleApplication.initialize(SimpleApplication.java:226)
    at com.jme3.system.lwjgl.LwjglAbstractDisplay.initInThread(LwjglAbstractDisplay.java:130)
    at com.jme3.system.lwjgl.LwjglAbstractDisplay.run(LwjglAbstractDisplay.java:207)
    at java.lang.Thread.run(Thread.java:744)
Caused by: java.io.FileNotFoundException: quake3level.zip (The system cannot 
find the file specified)
    at java.util.zip.ZipFile.open(Native Method)
    at java.util.zip.ZipFile.<init>(ZipFile.java:215)
    at java.util.zip.ZipFile.<init>(ZipFile.java:145)
    at com.jme3.asset.plugins.ZipLocator.setRootPath(ZipLocator.java:71)
    ... 8 more

The ZIP file is located in top directory of the jMonkeyEngine repository, but 
it is not copied to the JmeTests sample project.

Original issue reported on code.google.com by sg...@sonic.net on 15 Mar 2014 at 10:50