Skip to content
This repository has been archived by the owner on Nov 29, 2017. It is now read-only.

Commit

Permalink
Merge pull request #40 from GoSuji/texture-fix
Browse files Browse the repository at this point in the history
Texture fix
  • Loading branch information
vapour101 authored Oct 29, 2017
2 parents 0dd138f + c184b5b commit 74310b2
Show file tree
Hide file tree
Showing 15 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/java/logic/gametree/ComplexTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public boolean isRoot() {

@Override
public GameTreeIterator getRoot() {
return current;
return new ComplexTreeIterator(root);
}

@Override
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/ui/controller/BoardController.java
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ Drawer buildGameDrawer() {

gameDrawer.setStoneDrawer(buildStoneDrawer());

Image wood = new Image("/images/wood.jpg", false);
Image wood = new Image("/images/kaya.jpg", false);
Image lines = new Image("/images/grid.png", false);

BoardDrawer boardDrawer = new TexturedBoardDrawer(boardCanvas, wood, lines);
Expand All @@ -110,8 +110,8 @@ Drawer buildGameDrawer() {
}

StoneDrawer buildStoneDrawer() {
Image blackStone = new Image("/images/black.png", false);
Image whiteStone = new Image("/images/white.png", false);
Image blackStone = new Image("/images/black1.png", false);
Image whiteStone = new Image("/images/img_hanajirushi.png", false);
return new TexturedStoneDrawer(boardCanvas, blackStone, whiteStone);
}

Expand Down
Binary file added src/main/resources/Sound/sound6.mp3
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/images/black1.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/images/black1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/images/black1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/images/black2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/images/black3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/images/img_hanajirushi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/images/img_yukijirushi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/images/kaya.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/images/kaya_background.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/images/white1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/images/white2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 74310b2

Please sign in to comment.