Skip to content
Snippets Groups Projects
Commit 6d103b11 authored by Matyáš Latner's avatar Matyáš Latner
Browse files

#368 Added logging to loader wait catch block and formmating fix

parent 90e0ddc6
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,7 @@ import cz.nic.tablexia.loader.TablexiaTextureManager;
import cz.nic.tablexia.loader.application.ApplicationFontManager;
import cz.nic.tablexia.screen.loader.LoadingBar;
import cz.nic.tablexia.shared.model.Game;
import cz.nic.tablexia.util.Log;
import cz.nic.tablexia.util.ui.TablexiaLabel;
import cz.nic.tablexia.util.ui.dialog.components.FixedSpaceContentDialogComponent;
import cz.nic.tablexia.util.ui.dialog.components.TablexiaDialogComponentAdapter;
......@@ -41,8 +42,6 @@ import cz.nic.tablexia.util.ui.dialog.components.TextContentDialogComponent;
*/
public class RunesGame extends AbstractTablexiaGame<RunesGameState> {
private static final String SCORE_TEXT = "Score: ";
private static final int SCORE_RIGHT_PAD = 90;
......@@ -151,7 +150,7 @@ public class RunesGame extends AbstractTablexiaGame<RunesGameState> {
placeRunes();
}
@Override
@Override
protected RunesGameState prepareGameData(Map<String, String> gameState) {
final Object loaderLock = new Object();
......@@ -179,10 +178,11 @@ public class RunesGame extends AbstractTablexiaGame<RunesGameState> {
try {
loaderLock.wait();
} catch (InterruptedException e) {
Log.err(getClass(), "Loader lock waiting problem!", e);
}
}
return new RunesGameState();
}
return new RunesGameState();
}
@Override
protected void gameRender(float delta) {
......
......@@ -164,5 +164,5 @@ public enum RuneDefinition implements AssetDescription {
return newDefinitionsList;
}
}
}
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