浏览代码

Proper resource folder and update to work with animations

Tankernn 8 年之前
父节点
当前提交
f180aed964
共有 72 个文件被更改,包括 148 次插入23 次删除
  1. 52 5
      pom.xml
  2. 28 18
      src/main/java/eu/tankernn/game/Game.java
  3. 0 0
      src/main/resources/Soptunna.obj
  4. 0 0
      src/main/resources/arial.fnt
  5. 0 0
      src/main/resources/arial.png
  6. 0 0
      src/main/resources/barrel.obj
  7. 0 0
      src/main/resources/barrel.png
  8. 0 0
      src/main/resources/barrelN.png
  9. 0 0
      src/main/resources/barrelS.png
  10. 0 0
      src/main/resources/blendMap.png
  11. 0 0
      src/main/resources/boulder.obj
  12. 0 0
      src/main/resources/boulder.png
  13. 0 0
      src/main/resources/boulderNormal.png
  14. 0 0
      src/main/resources/bunny.obj
  15. 50 0
      src/main/resources/character.dae
  16. 0 0
      src/main/resources/character.obj
  17. 0 0
      src/main/resources/cherry.obj
  18. 0 0
      src/main/resources/cherry.png
  19. 0 0
      src/main/resources/cherryS.png
  20. 0 0
      src/main/resources/crate.obj
  21. 0 0
      src/main/resources/crate.png
  22. 0 0
      src/main/resources/crateNormal.png
  23. 0 0
      src/main/resources/cube.obj
  24. 0 0
      src/main/resources/dirt.png
  25. 0 0
      src/main/resources/dragon.obj
  26. 0 0
      src/main/resources/drone.obj
  27. 0 0
      src/main/resources/exampleOBJ.obj
  28. 0 0
      src/main/resources/fern.obj
  29. 0 0
      src/main/resources/fern.png
  30. 0 0
      src/main/resources/flower.png
  31. 0 0
      src/main/resources/grass.obj
  32. 0 0
      src/main/resources/grass.png
  33. 0 0
      src/main/resources/grassFlowers.png
  34. 0 0
      src/main/resources/grassModel.obj
  35. 0 0
      src/main/resources/grassTexture.png
  36. 0 0
      src/main/resources/grassy.png
  37. 0 0
      src/main/resources/grassy2.png
  38. 0 0
      src/main/resources/heightmap.png
  39. 0 0
      src/main/resources/image.png
  40. 0 0
      src/main/resources/lantern.obj
  41. 0 0
      src/main/resources/lantern.png
  42. 0 0
      src/main/resources/lanternS.png
  43. 0 0
      src/main/resources/lowPolyTree.obj
  44. 0 0
      src/main/resources/lowPolyTree.png
  45. 0 0
      src/main/resources/models.json
  46. 0 0
      src/main/resources/mud.png
  47. 0 0
      src/main/resources/particles/cosmic.png
  48. 0 0
      src/main/resources/particles/fire.png
  49. 0 0
      src/main/resources/particles/particleAtlas.png
  50. 0 0
      src/main/resources/particles/particleStar.png
  51. 0 0
      src/main/resources/particles/smoke.png
  52. 0 0
      src/main/resources/path.png
  53. 0 0
      src/main/resources/pinkFlowers.png
  54. 0 0
      src/main/resources/skybox/alps_bk.png
  55. 0 0
      src/main/resources/skybox/alps_dn.png
  56. 0 0
      src/main/resources/skybox/alps_ft.png
  57. 0 0
      src/main/resources/skybox/alps_lf.png
  58. 0 0
      src/main/resources/skybox/alps_rt.png
  59. 0 0
      src/main/resources/skybox/alps_up.png
  60. 0 0
      src/main/resources/skybox/midnight_bk.png
  61. 0 0
      src/main/resources/skybox/midnight_dn.png
  62. 0 0
      src/main/resources/skybox/midnight_ft.png
  63. 0 0
      src/main/resources/skybox/midnight_lf.png
  64. 0 0
      src/main/resources/skybox/midnight_rt.png
  65. 0 0
      src/main/resources/skybox/midnight_up.png
  66. 0 0
      src/main/resources/sound/bounce.wav
  67. 0 0
      src/main/resources/tree.obj
  68. 0 0
      src/main/resources/tree.png
  69. 0 0
      src/main/resources/waterDUDV.png
  70. 0 0
      src/main/resources/waterNormalMap.png
  71. 0 0
      src/main/resources/white.png
  72. 18 0
      src/test/java/eu/tankernn/game/test/GameTest.java

+ 52 - 5
pom.xml

@@ -26,6 +26,12 @@
 			<artifactId>netty-all</artifactId>
 			<version>4.1.6.Final</version>
 		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>4.12</version>
+			<scope>test</scope>
+		</dependency>
 
 	</dependencies>
 
@@ -64,6 +70,52 @@
 					</descriptorRefs>
 				</configuration>
 			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<configuration>
+					<!-- Skips unit tests if the value of skip.unit.tests property is true -->
+					<skipTests>${skip.unit.tests}</skipTests>
+					<argLine>-Djava.library.path="${project.basedir}/target/natives" ${surefireArgLine}</argLine>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.jacoco</groupId>
+				<artifactId>jacoco-maven-plugin</artifactId>
+				<version>0.7.5.201505241946</version>
+				<executions>
+					<!-- Prepares the property pointing to the JaCoCo runtime agent which 
+						is passed as VM argument when Maven the Surefire plugin is executed. -->
+					<execution>
+						<id>pre-unit-test</id>
+						<goals>
+							<goal>prepare-agent</goal>
+						</goals>
+						<configuration>
+							<!-- Sets the path to the file which contains the execution data. -->
+							<destFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</destFile>
+							<!-- Sets the name of the property containing the settings for JaCoCo 
+								runtime agent. -->
+							<propertyName>surefireArgLine</propertyName>
+						</configuration>
+					</execution>
+					<!-- Ensures that the code coverage report for unit tests is created 
+						after unit tests have been run. -->
+					<execution>
+						<id>post-unit-test</id>
+						<phase>test</phase>
+						<goals>
+							<goal>report</goal>
+						</goals>
+						<configuration>
+							<!-- Sets the path to the file which contains the execution data. -->
+							<dataFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</dataFile>
+							<!-- Sets the output directory for the code coverage report. -->
+							<outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
 			<plugin>
 				<groupId>com.googlecode.mavennatives</groupId>
 				<artifactId>maven-nativedependencies-plugin</artifactId>
@@ -80,11 +132,6 @@
 			</plugin>
 		</plugins>
 		<resources>
-			<resource>
-				<directory>res</directory>
-				<excludes>
-				</excludes>
-			</resource>
 			<resource>
 				<directory>src/main/java</directory>
 				<includes>

+ 28 - 18
src/main/java/eu/tankernn/game/Game.java

@@ -11,64 +11,74 @@ import org.lwjgl.util.vector.Vector3f;
 
 import eu.tankernn.gameEngine.GameLauncher;
 import eu.tankernn.gameEngine.TankernnGame3D;
+import eu.tankernn.gameEngine.animation.animatedModel.AnimatedModel;
+import eu.tankernn.gameEngine.animation.animation.Animation;
+import eu.tankernn.gameEngine.animation.loaders.AnimationLoader;
 import eu.tankernn.gameEngine.entities.Entity3D;
 import eu.tankernn.gameEngine.entities.Light;
 import eu.tankernn.gameEngine.entities.Player;
 import eu.tankernn.gameEngine.entities.PlayerCamera;
 import eu.tankernn.gameEngine.loader.textures.TerrainTexturePack;
 import eu.tankernn.gameEngine.loader.textures.Texture;
-import eu.tankernn.gameEngine.renderEngine.skybox.Skybox;
 import eu.tankernn.gameEngine.renderEngine.water.WaterTile;
 import eu.tankernn.gameEngine.terrains.TerrainPack;
 import eu.tankernn.gameEngine.util.InternalFile;
 
 public class Game extends TankernnGame3D {
 	public Game() {
-		super(Settings.GAME_NAME,
-				new Skybox(Texture.newCubeMap(InternalFile.fromFilenames("skybox", TEXTURE_FILES, "png"), 200),
-						Texture.newCubeMap(InternalFile.fromFilenames("skybox", NIGHT_TEXTURE_FILES, "png"), 200), 400),
-				DUDV_MAP, NORMAL_MAP, new Light(new Vector3f(1000, 1000, 0), new Vector3f(1f, 1f, 1f)));
-
+		super(Settings.GAME_NAME, TEXTURE_FILES, NIGHT_TEXTURE_FILES, DUDV_MAP, NORMAL_MAP, new Light(new Vector3f(1000, 1000, 0), new Vector3f(1f, 1f, 1f)));
+		
 		try {
 			setupTerrain();
 		} catch (FileNotFoundException e) {
 			e.printStackTrace();
 		}
 		setupWater();
-
-		player = new Player(0, new Vector3f(0, 0, 0), new Vector3f(0, 0, 0), 1,
-				loader.getModel(0).getRawModel().getBoundingBox(), terrainPack);
+		
+		InternalFile charFile;
+		try {
+			charFile = new InternalFile("character.dae");
+		} catch (FileNotFoundException e) {
+			e.printStackTrace();
+			return;
+		}
+		
+		Animation anim = AnimationLoader.loadAnimation(charFile);
+		AnimatedModel playerModel = loader.loadDAE(charFile);
+		playerModel.doAnimation(anim);
+		player = new Player(playerModel, new Vector3f(0, 0, 0), new Vector3f(0, 0, 0), 1, loader.getBoundingBox(0), terrainPack);
+		
+		entities.add(player);
 		camera = new PlayerCamera(player, terrainPack);
-
-		entities.add(new Entity3D(2, new Vector3f(0, 0, 0), new Vector3f(0, 0, 0), 1,
-				loader.getModel(2).getRawModel().getBoundingBox()));
+		
+		entities.add(new Entity3D(loader.getModel(2), new Vector3f(0, 0, 0), new Vector3f(0, 0, 0), 1, loader.getBoundingBox(2)));
 		lights.add(new Light(new Vector3f(0, 1000, 0), new Vector3f(1f, 1f, 1f)));
 	}
-
+	
 	private void setupTerrain() throws FileNotFoundException {
 		Texture backgroundTexture = loader.loadTexture("grassy.png");
 		Texture rTexture = loader.loadTexture("dirt.png");
 		Texture gTexture = loader.loadTexture("pinkFlowers.png");
 		Texture bTexture = loader.loadTexture("path.png");
-
+		
 		TerrainTexturePack texturePack = new TerrainTexturePack(backgroundTexture, rTexture, gTexture, bTexture);
 		Texture blendMap = loader.loadTexture("blendMap.png");
-
+		
 		terrainPack = new TerrainPack(loader, texturePack, blendMap, 1235);
 	}
-
+	
 	private void setupWater() {
 		WaterTile water = new WaterTile(50, 50, 0, 60);
 		waterMaster.addWaterTile(water);
 	}
-
+	
 	public void update() {
 		super.update();
 		if (picker.getCurrentTerrainPoint() != null) {
 			entities.get(1).setPosition(picker.getCurrentTerrainPoint());
 		}
 	}
-
+	
 	public static void main(String[] args) {
 		GameLauncher.init(Settings.GAME_NAME);
 		GameLauncher.launch(new Game());

+ 0 - 0
res/Soptunna.obj → src/main/resources/Soptunna.obj


+ 0 - 0
res/arial.fnt → src/main/resources/arial.fnt


+ 0 - 0
res/arial.png → src/main/resources/arial.png


+ 0 - 0
res/barrel.obj → src/main/resources/barrel.obj


+ 0 - 0
res/barrel.png → src/main/resources/barrel.png


+ 0 - 0
res/barrelN.png → src/main/resources/barrelN.png


+ 0 - 0
res/barrelS.png → src/main/resources/barrelS.png


+ 0 - 0
res/blendMap.png → src/main/resources/blendMap.png


+ 0 - 0
res/boulder.obj → src/main/resources/boulder.obj


+ 0 - 0
res/boulder.png → src/main/resources/boulder.png


+ 0 - 0
res/boulderNormal.png → src/main/resources/boulderNormal.png


+ 0 - 0
res/bunny.obj → src/main/resources/bunny.obj


文件差异内容过多而无法显示
+ 50 - 0
src/main/resources/character.dae


+ 0 - 0
res/character.obj → src/main/resources/character.obj


+ 0 - 0
res/cherry.obj → src/main/resources/cherry.obj


+ 0 - 0
res/cherry.png → src/main/resources/cherry.png


+ 0 - 0
res/cherryS.png → src/main/resources/cherryS.png


+ 0 - 0
res/crate.obj → src/main/resources/crate.obj


+ 0 - 0
res/crate.png → src/main/resources/crate.png


+ 0 - 0
res/crateNormal.png → src/main/resources/crateNormal.png


+ 0 - 0
res/cube.obj → src/main/resources/cube.obj


+ 0 - 0
res/dirt.png → src/main/resources/dirt.png


+ 0 - 0
res/dragon.obj → src/main/resources/dragon.obj


+ 0 - 0
res/drone.obj → src/main/resources/drone.obj


+ 0 - 0
res/exampleOBJ.obj → src/main/resources/exampleOBJ.obj


+ 0 - 0
res/fern.obj → src/main/resources/fern.obj


+ 0 - 0
res/fern.png → src/main/resources/fern.png


+ 0 - 0
res/flower.png → src/main/resources/flower.png


+ 0 - 0
res/grass.obj → src/main/resources/grass.obj


+ 0 - 0
res/grass.png → src/main/resources/grass.png


+ 0 - 0
res/grassFlowers.png → src/main/resources/grassFlowers.png


+ 0 - 0
res/grassModel.obj → src/main/resources/grassModel.obj


+ 0 - 0
res/grassTexture.png → src/main/resources/grassTexture.png


+ 0 - 0
res/grassy.png → src/main/resources/grassy.png


+ 0 - 0
res/grassy2.png → src/main/resources/grassy2.png


+ 0 - 0
res/heightmap.png → src/main/resources/heightmap.png


+ 0 - 0
res/image.png → src/main/resources/image.png


+ 0 - 0
res/lantern.obj → src/main/resources/lantern.obj


+ 0 - 0
res/lantern.png → src/main/resources/lantern.png


+ 0 - 0
res/lanternS.png → src/main/resources/lanternS.png


+ 0 - 0
res/lowPolyTree.obj → src/main/resources/lowPolyTree.obj


+ 0 - 0
res/lowPolyTree.png → src/main/resources/lowPolyTree.png


+ 0 - 0
res/models.json → src/main/resources/models.json


+ 0 - 0
res/mud.png → src/main/resources/mud.png


+ 0 - 0
res/particles/cosmic.png → src/main/resources/particles/cosmic.png


+ 0 - 0
res/particles/fire.png → src/main/resources/particles/fire.png


+ 0 - 0
res/particles/particleAtlas.png → src/main/resources/particles/particleAtlas.png


+ 0 - 0
res/particles/particleStar.png → src/main/resources/particles/particleStar.png


+ 0 - 0
res/particles/smoke.png → src/main/resources/particles/smoke.png


+ 0 - 0
res/path.png → src/main/resources/path.png


+ 0 - 0
res/pinkFlowers.png → src/main/resources/pinkFlowers.png


+ 0 - 0
res/skybox/alps_bk.png → src/main/resources/skybox/alps_bk.png


+ 0 - 0
res/skybox/alps_dn.png → src/main/resources/skybox/alps_dn.png


+ 0 - 0
res/skybox/alps_ft.png → src/main/resources/skybox/alps_ft.png


+ 0 - 0
res/skybox/alps_lf.png → src/main/resources/skybox/alps_lf.png


+ 0 - 0
res/skybox/alps_rt.png → src/main/resources/skybox/alps_rt.png


+ 0 - 0
res/skybox/alps_up.png → src/main/resources/skybox/alps_up.png


+ 0 - 0
res/skybox/midnight_bk.png → src/main/resources/skybox/midnight_bk.png


+ 0 - 0
res/skybox/midnight_dn.png → src/main/resources/skybox/midnight_dn.png


+ 0 - 0
res/skybox/midnight_ft.png → src/main/resources/skybox/midnight_ft.png


+ 0 - 0
res/skybox/midnight_lf.png → src/main/resources/skybox/midnight_lf.png


+ 0 - 0
res/skybox/midnight_rt.png → src/main/resources/skybox/midnight_rt.png


+ 0 - 0
res/skybox/midnight_up.png → src/main/resources/skybox/midnight_up.png


+ 0 - 0
res/sound/bounce.wav → src/main/resources/sound/bounce.wav


+ 0 - 0
res/tree.obj → src/main/resources/tree.obj


+ 0 - 0
res/tree.png → src/main/resources/tree.png


+ 0 - 0
res/waterDUDV.png → src/main/resources/waterDUDV.png


+ 0 - 0
res/waterNormalMap.png → src/main/resources/waterNormalMap.png


+ 0 - 0
res/white.png → src/main/resources/white.png


+ 18 - 0
src/test/java/eu/tankernn/game/test/GameTest.java

@@ -0,0 +1,18 @@
+package eu.tankernn.game.test;
+
+import org.junit.Test;
+
+import eu.tankernn.game.Game;
+import eu.tankernn.gameEngine.renderEngine.DisplayManager;
+
+public class GameTest {
+	@Test
+	public void gameShouldInit() {
+		DisplayManager.createDisplay("Test", 200, 200);
+		Game tester = new Game();
+		
+		tester.update();
+		tester.render();
+		tester.cleanUp();
+	}
+}

部分文件因为文件数量过多而无法显示