summaryrefslogtreecommitdiffstats
path: root/core/src/ch
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2018-09-13 12:19:49 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2018-09-13 12:19:49 +0200
commitcba1b76339b2aa2c476d5e4c40cb330025c8a6da (patch)
tree53af50f15963c42c442aeb10f8b68a5e78b0b9ec /core/src/ch
parentfb31fdbca6537a9d23baeb038bd395b7f332c21c (diff)
downloadgdx-boardgame-cba1b76339b2aa2c476d5e4c40cb330025c8a6da.zip
gdx-boardgame-cba1b76339b2aa2c476d5e4c40cb330025c8a6da.tar.gz
move some of Assets into engine/Assets
Diffstat (limited to 'core/src/ch')
-rw-r--r--core/src/ch/asynk/zproject/Assets.java28
-rw-r--r--core/src/ch/asynk/zproject/engine/Assets.java30
2 files changed, 33 insertions, 25 deletions
diff --git a/core/src/ch/asynk/zproject/Assets.java b/core/src/ch/asynk/zproject/Assets.java
index 7602d7c..095a052 100644
--- a/core/src/ch/asynk/zproject/Assets.java
+++ b/core/src/ch/asynk/zproject/Assets.java
@@ -1,23 +1,21 @@
package ch.asynk.zproject;
-import com.badlogic.gdx.assets.AssetManager;
import com.badlogic.gdx.assets.loaders.FileHandleResolver;
import com.badlogic.gdx.assets.loaders.resolvers.InternalFileHandleResolver;
-import com.badlogic.gdx.utils.Disposable;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.graphics.g2d.BitmapFont;
-import com.badlogic.gdx.graphics.g2d.NinePatch;
import com.badlogic.gdx.graphics.g2d.TextureAtlas;
import com.badlogic.gdx.graphics.g2d.freetype.FreeTypeFontGenerator;
import com.badlogic.gdx.graphics.g2d.freetype.FreeTypeFontGeneratorLoader;
import com.badlogic.gdx.graphics.g2d.freetype.FreetypeFontLoader;
import com.badlogic.gdx.graphics.g2d.freetype.FreetypeFontLoader.FreeTypeFontLoaderParameter;
-public class Assets extends AssetManager implements Disposable
+public class Assets extends ch.asynk.zproject.engine.Assets
{
+ public static final String LOADING = "data/loading.atlas";
+
public static final String CORNER = "data/corner.png";
public static final String MAP_00 = "data/map_00.png";
- public static final String LOADING = "data/loading.atlas";
public static final String FONT = "data/veteran-typewriter.ttf";
public static final String FONT_20 = "size20.ttf";
public static final String FONT_25 = "size25.ttf";
@@ -47,26 +45,6 @@ public class Assets extends AssetManager implements Disposable
super.dispose();
}
- public Texture getTexture(String assetName)
- {
- return get(assetName, Texture.class);
- }
-
- public NinePatch getNinePatch(String assetName, int left, int right, int top, int bottom)
- {
- return new NinePatch(get(assetName, Texture.class), left, right, top, bottom);
- }
-
- public TextureAtlas getAtlas(String assetName)
- {
- return get(assetName, TextureAtlas.class);
- }
-
- public BitmapFont getFont(String assetName)
- {
- return get(assetName, BitmapFont.class);
- }
-
public void loadLoading()
{
load(LOADING, TextureAtlas.class);
diff --git a/core/src/ch/asynk/zproject/engine/Assets.java b/core/src/ch/asynk/zproject/engine/Assets.java
new file mode 100644
index 0000000..c5e9468
--- /dev/null
+++ b/core/src/ch/asynk/zproject/engine/Assets.java
@@ -0,0 +1,30 @@
+package ch.asynk.zproject.engine;
+
+import com.badlogic.gdx.assets.AssetManager;
+import com.badlogic.gdx.graphics.Texture;
+import com.badlogic.gdx.graphics.g2d.BitmapFont;
+import com.badlogic.gdx.graphics.g2d.NinePatch;
+import com.badlogic.gdx.graphics.g2d.TextureAtlas;
+
+public class Assets extends AssetManager
+{
+ public Texture getTexture(String assetName)
+ {
+ return get(assetName, Texture.class);
+ }
+
+ public NinePatch getNinePatch(String assetName, int left, int right, int top, int bottom)
+ {
+ return new NinePatch(get(assetName, Texture.class), left, right, top, bottom);
+ }
+
+ public TextureAtlas getAtlas(String assetName)
+ {
+ return get(assetName, TextureAtlas.class);
+ }
+
+ public BitmapFont getFont(String assetName)
+ {
+ return get(assetName, BitmapFont.class);
+ }
+}