/** * File name: Hero.java * Version: 1.0 * Date: 20/03/2015 20:05:03 * Author: Sawan * Copyright: Copyright 200X Sawan * * This file is part of Math Attack. * * Math Attack is free software: you can redistribute it * and/or modify it under the terms of the GNU General * Public License as published by the Free Software * Foundation, either version 3 of the License, * or (at your option) any later version. * * Math Attack is distributed in the hope that it will * be useful, but WITHOUT ANY WARRANTY; without even * the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU General Public * License for more details. * * You should have received a copy of the GNU General * Public License along with Math Attack. If not, see * http://www.gnu.org/licenses/. */ package com.sawan.mathattack.asset; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.files.FileHandle; import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.graphics.g2d.Animation; import com.badlogic.gdx.graphics.g2d.TextureAtlas; import com.badlogic.gdx.scenes.scene2d.ui.Skin; import com.sawan.mathattack.animation.AnimationCreator; // TODO: Auto-generated Javadoc /** * The Class Hero. * * @author Sawan */ public class HeroAssests { /** The Constant FILE_IMAGE_ATLAS. */ private final static String FILE_IMAGE_ATLAS = "data/ma/game/characters/Hero.atlas"; /** The Constant FILE_UI_SKIN. */ private final static String FILE_UI_SKIN = "skin/uiskin.json"; /** The atlas. */ public static TextureAtlas atlas; /** The skin. */ public static Skin skin; // Assets /** The hero_standing. */ public static Animation hero_standing; /** The hero_jumping. */ public static Animation hero_jumping; /** The hero_dizzy. */ public static Animation hero_dizzy; /** The hero_faint. */ public static Animation hero_faint; /** * Loads texture file. * * @param file the file * @return the texture */ public static Texture loadTexture(String file) { return new Texture(Gdx.files.internal(file)); } /** * Gets the atlas. Creates a texture atlas if is not created. * * @return the atlas */ public static TextureAtlas getAtlas() { if (atlas == null) { atlas = new TextureAtlas(Gdx.files.internal(FILE_IMAGE_ATLAS)); } return atlas; } /** * Gets the skin. * * @return the skin */ public static Skin getSkin() { if (skin == null) { FileHandle skinFile = Gdx.files.internal(FILE_UI_SKIN); skin = new Skin(skinFile); } return skin; } /** * Load all. Loads all the resources. */ public static void loadAll() { relaseResources(); loadImages(); loadAnimations(); loadSoundsAndMusics(); } /** * Relase resources. */ private static void relaseResources() { skin = null; atlas = null; } /** * Load images. */ public static void loadImages() { } /** * Load animations. */ public static void loadAnimations() { hero_standing = AnimationCreator.getAnimationFromMultiTextures(getAtlas(), "stand", 2, 0.2f, false, false); hero_jumping = AnimationCreator.getAnimationFromMultiTextures(getAtlas(), "jump", 2, 0.2f, false, false); hero_dizzy = AnimationCreator.getAnimationFromMultiTextures(getAtlas(), "dizzy", 2, 0.2f, false, false); hero_faint = AnimationCreator.getAnimationFromMultiTextures(getAtlas(), "faint", 5, 0.2f, false, false); } /** * Load sounds and musics. */ public static void loadSoundsAndMusics() { } }