Skip to content
Snippets Groups Projects
Commit e304bad0 authored by Vitaliy Vashchenko's avatar Vitaliy Vashchenko
Browse files

#287 Code formatting.

parent 52f1ffb8
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ public class WallOfGames extends Group {
private float stageWidth, stageHeight;
private Stage stage;
private HashMap<String, TextureRegion> wallOfGamesTextures;
private Group buttonsGroup,backgroundLayer, underneathLayer;
private Group buttonsGroup, backgroundLayer, underneathLayer;
private WallOfGames(HashMap<String, TextureRegion> wallOfGamesTextures, Stage stage, float width, float height) {
this.stageWidth = width;
......@@ -38,14 +38,14 @@ public class WallOfGames extends Group {
this.stage = stage;
this.wallOfGamesTextures = wallOfGamesTextures;
}
public final static WallOfGames createWallOfGames(HashMap<String, TextureRegion> wallOfGamesTextures, Stage stage, float width, float height){
WallOfGames wallOfGames = new WallOfGames(wallOfGamesTextures, stage,width,height);
public final static WallOfGames createWallOfGames(HashMap<String, TextureRegion> wallOfGamesTextures, Stage stage, float width, float height) {
WallOfGames wallOfGames = new WallOfGames(wallOfGamesTextures, stage, width, height);
wallOfGames.prepareUnderneathLayer();
wallOfGames.prepareBackgroundLayer();
wallOfGames.prepareButtonsLayer();
wallOfGames.setPosition(width/2 - wallOfGames.getWidth()/2, height/2 - wallOfGames.getHeight()/2);
wallOfGames.setPosition(width / 2 - wallOfGames.getWidth() / 2, height / 2 - wallOfGames.getHeight() / 2);
return wallOfGames;
}
......@@ -59,8 +59,8 @@ public class WallOfGames extends Group {
backgroundLayer.addActor(background);
addActor(backgroundLayer);
}
private void prepareUnderneathLayer(){
private void prepareUnderneathLayer() {
// TODO: 30.8.16 size underneathLayer with screen size
underneathLayer = new Group();
underneathLayer.setSize(TablexiaSettings.getViewportWidth(stage), TablexiaSettings.getSceneOuterHeight(stage));
......@@ -74,7 +74,7 @@ public class WallOfGames extends Group {
buttonsGroup = new Group();
buttonsGroup.setDebug(TablexiaSettings.getInstance().isShowBoundingBoxes());
buttonsGroup.setSize(BUTTONS_GROUP_RELATIVE_WIDTH * stageWidth, BUTTONS_GROUP_RELATIVE_HEIGHT * RELATIVE_HEIGHT * stageHeight);
buttonsGroup.setPosition(BUTTONS_GROUP_RELATIVE_X*stageWidth, BUTTONS_GROUP_RELATIVE_Y*stageHeight);
buttonsGroup.setPosition(BUTTONS_GROUP_RELATIVE_X * stageWidth, BUTTONS_GROUP_RELATIVE_Y * stageHeight);
buttonsGroup.addListener(wallClickListener);
initializeButtons();
addActor(buttonsGroup);
......@@ -90,11 +90,11 @@ public class WallOfGames extends Group {
return backgroundLayer.getHeight();
}
private ClickListener wallClickListener = new ClickListener(){
private ClickListener wallClickListener = new ClickListener() {
@Override
public void clicked(InputEvent event, float x, float y) {
if (event.getListenerActor().getUserObject()!=null){
ApplicationBus.getInstance().publishAsync(new ShowGameMenuPageEvent((GameMenuScreen.GameMenuPageDefinition) event.getListenerActor().getUserObject(),false));
if (event.getListenerActor().getUserObject() != null) {
ApplicationBus.getInstance().publishAsync(new ShowGameMenuPageEvent((GameMenuScreen.GameMenuPageDefinition) event.getListenerActor().getUserObject(), false));
}
hide();
super.clicked(event, x, y);
......@@ -118,17 +118,17 @@ public class WallOfGames extends Group {
}
public void show() {
if (!stage.getActors().contains(this,false)) stage.addActor(this);
if (!stage.getActors().contains(this, false)) stage.addActor(this);
}
public void hide() {
underneathLayer.remove();
remove();
}
public enum GameIconDefinition {
ROBBERY(GameMenuAssets.WALL_OF_GAMES_ICON_ROBBERY, GameMenuAssets.WALL_OF_GAMES_ICON_ROBBERY_PRESSED, 0.1f, 0.65f,GameMenuScreen.GameMenuPageDefinition.ROBBERY_PAGE),
ROBBERY(GameMenuAssets.WALL_OF_GAMES_ICON_ROBBERY, GameMenuAssets.WALL_OF_GAMES_ICON_ROBBERY_PRESSED, 0.1f, 0.65f, GameMenuScreen.GameMenuPageDefinition.ROBBERY_PAGE),
PURSUIT(GameMenuAssets.WALL_OF_GAMES_ICON_PURSUIT, GameMenuAssets.WALL_OF_GAMES_ICON_PURSUIT_PRESSED, 0.12f, 0.33f, GameMenuScreen.GameMenuPageDefinition.PURSUIT_PAGE),
KIDNAPPING(GameMenuAssets.WALL_OF_GAMES_ICON_KIDNAPPING, GameMenuAssets.WALL_OF_GAMES_ICON_KIDNAPPING_PRESSED, 0.11f, 0f, GameMenuScreen.GameMenuPageDefinition.KIDNAPPING_PAGE),
NIGHTWATCH(GameMenuAssets.WALL_OF_GAMES_ICON_NIGHTWATCH, GameMenuAssets.WALL_OF_GAMES_ICON_NIGHTWATCH_PRESSED, 0.38f, 0.67f, GameMenuScreen.GameMenuPageDefinition.NIGH_WATCH_PAGE),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment