Android Open Source - YOGOSec My Screen






From Project

Back to project page YOGOSec.

License

The source code is released under:

GNU Lesser General Public License

If you think the Android project YOGOSec listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package YOGOSec.core.screens;
//ww w.  j a va  2  s  . com
import YOGOSec.core.Game;
import YOGOSec.core.gui.GUI;
import YOGOSec.core.render.Render;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.graphics.OrthographicCamera;

/**
 * @author Aritz Lopez
 * @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
 */
public abstract class MyScreen extends GUI {

    protected final Game game;
    protected final OrthographicCamera camera;
    protected int width, height;

    public MyScreen(Game game, OrthographicCamera camera) {
        this.game = game;
        this.camera = camera;
        this.width = Gdx.graphics.getWidth();
        this.height = Gdx.graphics.getHeight();
        this.resize(this.width, this.height);
    }

    public void render(Render render) {
        super.render(render);
    }

    public void resize(int width, int height) {
        this.camera.setToOrtho(false, width, height);
        this.width = width;
        this.height = height;
        this.onScreenResized(width, height);
    }

    public void pause() {

    }

    public void resume() {

    }

    public void dispose() {
        super.dispose();
    }
}




Java Source Code List

YOGOSec.android.GameActivity.java
YOGOSec.core.Game.java
YOGOSec.core.gui.Button.java
YOGOSec.core.gui.GUIComponent.java
YOGOSec.core.gui.GUI.java
YOGOSec.core.gui.IActionListener.java
YOGOSec.core.gui.InputListener.java
YOGOSec.core.gui.ProgressBar.java
YOGOSec.core.input.Input.java
YOGOSec.core.render.Render.java
YOGOSec.core.render.YUpPixmap.java
YOGOSec.core.screens.MainMenuScreen.java
YOGOSec.core.screens.MyScreen.java
YOGOSec.core.util.Point2f.java
YOGOSec.core.util.Point2i.java
YOGOSec.core.util.Point.java
YOGOSec.core.util.Rectangle.java
YOGOSec.core.util.Rectanglef.java
YOGOSec.core.util.Rectanglei.java
YOGOSec.java.GameDesktop.java