/******************************************************************************* * Copyright 2013 pyros2097 * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. ******************************************************************************/ import sink.core.Asset; import sink.core.Sink; import com.badlogic.gdx.Application.ApplicationType; import com.badlogic.gdx.Gdx; import com.badlogic.gdx.scenes.scene2d.InputEvent; import com.badlogic.gdx.scenes.scene2d.actions.Actions; import com.badlogic.gdx.scenes.scene2d.ui.Table; import com.badlogic.gdx.scenes.scene2d.ui.TextButton; import com.badlogic.gdx.scenes.scene2d.utils.ClickListener; public class Menu { public Menu(){ Asset.musicPlay("title"); Sink.setBackground("title"); Table grid = new Table(); grid.setSize(Sink.targetWidth, Sink.targetHeight); grid.setFillParent(true); grid.setPosition(0, 0); grid.top().left(); grid.center(); grid.setPosition(-999, 0); grid.addAction(Actions.moveTo(0, 0, 0.5f)); grid.center(); TextButton btn1 = new TextButton("Start", Asset.skin); TextButton btn2 = new TextButton("Options", Asset.skin); TextButton btn3 = new TextButton("Credits", Asset.skin); TextButton btn5 = new TextButton("Login", Asset.skin); TextButton btn4 = new TextButton("Exit", Asset.skin); grid.add(btn1).size(200, 75).padTop(15).row(); grid.add(btn2).size(200, 75).padTop(15).row(); grid.add(btn3).size(200, 75).padTop(15).row(); grid.add(btn5).size(200, 75).padTop(15).row(); if(Gdx.app.getType() != ApplicationType.Android || Gdx.app.getType() != ApplicationType.iOS) grid.add(btn4).size(200, 75).padTop(15).row(); btn1.addListener(new ClickListener(){ @Override public void clicked(InputEvent event, float x, float y) { super.clicked(event, x, y); Sink.setScene("Levels"); } }); btn2.addListener(new ClickListener(){ @Override public void clicked(InputEvent event, float x, float y) { super.clicked(event, x, y); Sink.setScene("Options"); } }); btn3.addListener(new ClickListener(){ @Override public void clicked(InputEvent event, float x, float y) { super.clicked(event, x, y); Sink.setScene("Credits"); } }); btn4.addListener(new ClickListener(){ @Override public void clicked(InputEvent event, float x, float y) { super.clicked(event, x, y); Sink.exit(); } }); btn5.addListener(new ClickListener(){ @Override public void clicked(InputEvent event, float x, float y) { super.clicked(event, x, y); Sink.setScene("Login"); } }); Sink.addActor(grid); } }