From 2950468b653432daea11f9d1520833db5c1770f5 Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Sun, 23 Jun 2019 14:56:56 -0400 Subject: [PATCH] Started Assignment 3 --- build.gradle.kts | 7 + .../cs5004/assignment3/Board.kt | 26 +++ .../cs5004/assignment3/Main.kt | 8 + .../cs5004/assignment3/pieces/IChessPiece.kt | 15 ++ .../cs5004/assignment3/pieces/Piece.kt | 164 ++++++++++++++++++ .../cs5004/assignment3/pieces/BishopTest.kt | 38 ++++ .../cs5004/assignment3/pieces/KingTest.kt | 24 +++ .../cs5004/assignment3/pieces/KnightTest.kt | 24 +++ .../cs5004/assignment3/pieces/PawnTest.kt | 24 +++ .../cs5004/assignment3/pieces/QueenTest.kt | 24 +++ .../cs5004/assignment3/pieces/RookTest.kt | 68 ++++++++ 11 files changed, 422 insertions(+) create mode 100644 src/main/kotlin/com/anthonycicchetti/cs5004/assignment3/Board.kt create mode 100644 src/main/kotlin/com/anthonycicchetti/cs5004/assignment3/Main.kt create mode 100644 src/main/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/IChessPiece.kt create mode 100644 src/main/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/Piece.kt create mode 100644 src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/BishopTest.kt create mode 100644 src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/KingTest.kt create mode 100644 src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/KnightTest.kt create mode 100644 src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/PawnTest.kt create mode 100644 src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/QueenTest.kt create mode 100644 src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/RookTest.kt diff --git a/build.gradle.kts b/build.gradle.kts index 4175eca..d48ee9b 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -14,12 +14,19 @@ repositories { dependencies { implementation(kotlin("stdlib-jdk8")) + + testCompile("org.junit.jupiter:junit-jupiter-api:5.4.2") + testRuntime("org.junit.jupiter:junit-jupiter-engine:5.4.2") } tasks.withType { kotlinOptions.jvmTarget = "1.8" } +tasks.named("test") { + useJUnitPlatform() +} + tasks.register("Assignment4") { classpath = sourceSets.main.get().runtimeClasspath main = "com.anthonycicchetti.cs5004.assignment4.Main" diff --git a/src/main/kotlin/com/anthonycicchetti/cs5004/assignment3/Board.kt b/src/main/kotlin/com/anthonycicchetti/cs5004/assignment3/Board.kt new file mode 100644 index 0000000..8afc635 --- /dev/null +++ b/src/main/kotlin/com/anthonycicchetti/cs5004/assignment3/Board.kt @@ -0,0 +1,26 @@ +package com.anthonycicchetti.cs5004.assignment3 + +import com.anthonycicchetti.cs5004.assignment3.pieces.IChessPiece + +class Board() { + enum class Column { + A, B, C, D, E, F, G + } + + enum class Row { + ONE, TWO, THREE, FOUR, FIVE, SIX, SEVEN, EIGHT + } + data class BoardSquare(val location: BoardLocation, var piece: IChessPiece?) + data class BoardLocation(val column: Column, val row: Row) + + val state: List + + init { + val initialState = mutableListOf() + for (column in Column.values()) { + for (row in Row.values()) + initialState.add(BoardSquare(BoardLocation(column, row), null)) + } + state = initialState + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/anthonycicchetti/cs5004/assignment3/Main.kt b/src/main/kotlin/com/anthonycicchetti/cs5004/assignment3/Main.kt new file mode 100644 index 0000000..e320570 --- /dev/null +++ b/src/main/kotlin/com/anthonycicchetti/cs5004/assignment3/Main.kt @@ -0,0 +1,8 @@ +package com.anthonycicchetti.cs5004.assignment3 + +object Main { + @JvmStatic + fun main(args: Array) { + println("Hello world") + } +} \ No newline at end of file diff --git a/src/main/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/IChessPiece.kt b/src/main/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/IChessPiece.kt new file mode 100644 index 0000000..7a59e11 --- /dev/null +++ b/src/main/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/IChessPiece.kt @@ -0,0 +1,15 @@ +package com.anthonycicchetti.cs5004.assignment3.pieces + +import com.anthonycicchetti.cs5004.assignment3.Board + +interface IChessPiece { + fun getPosition(): Board.BoardLocation + fun getColor(): Color + fun canMoveTo(square: Board.BoardLocation): Boolean + fun canKill(enemyPiece: IChessPiece): Boolean + fun moveTo(square: Board.BoardLocation): Boolean +} + +enum class Color { + WHITE, BLACK +} \ No newline at end of file diff --git a/src/main/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/Piece.kt b/src/main/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/Piece.kt new file mode 100644 index 0000000..5976551 --- /dev/null +++ b/src/main/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/Piece.kt @@ -0,0 +1,164 @@ +package com.anthonycicchetti.cs5004.assignment3.pieces + +import com.anthonycicchetti.cs5004.assignment3.Board + +sealed class Piece: IChessPiece + +data class Bishop(var location: Board.BoardLocation, private val color: Color): Piece() { + override fun moveTo(square: Board.BoardLocation): Boolean { + if (canMoveTo(location)) { + this.location = square + return true + } + return false + } + + override fun getPosition(): Board.BoardLocation { + return location + } + + override fun getColor(): Color { + return color + } + + override fun canMoveTo(square: Board.BoardLocation): Boolean { + TODO() + } + + override fun canKill(enemyPiece: IChessPiece): Boolean { + return canMoveTo(enemyPiece.getPosition()) + } +} + +data class Knight(var location: Board.BoardLocation, private val color: Color): Piece() { + override fun moveTo(square: Board.BoardLocation): Boolean { + if (canMoveTo(location)) { + this.location = square + return true + } + return false + } + + override fun getPosition(): Board.BoardLocation { + return location + } + + override fun getColor(): Color { + return color + } + + override fun canMoveTo(square: Board.BoardLocation): Boolean { + TODO("not implemented") //To change body of created functions use File | Settings | File Templates. + } + + override fun canKill(enemyPiece: IChessPiece): Boolean { + return canMoveTo(enemyPiece.getPosition()) + } +} + +data class Rook(var location: Board.BoardLocation, private val color: Color): Piece() { + override fun moveTo(square: Board.BoardLocation): Boolean { + if (canMoveTo(location)) { + this.location = square + return true + } + return false + } + + override fun getPosition(): Board.BoardLocation { + return location + } + + override fun getColor(): Color { + return color + } + + override fun canMoveTo(square: Board.BoardLocation): Boolean { + return with(square) { + this.column == this@Rook.location.column || + this.row == this@Rook.location.row + } + } + + override fun canKill(enemyPiece: IChessPiece): Boolean { + return canMoveTo(enemyPiece.getPosition()) + } +} + +data class Queen(var location: Board.BoardLocation, private val color: Color): Piece() { + override fun moveTo(square: Board.BoardLocation): Boolean { + if (canMoveTo(location)) { + this.location = square + return true + } + return false + } + + override fun getPosition(): Board.BoardLocation { + return location + } + + override fun getColor(): Color { + return color + } + + override fun canMoveTo(square: Board.BoardLocation): Boolean { + TODO("not implemented") //To change body of created functions use File | Settings | File Templates. + } + + override fun canKill(enemyPiece: IChessPiece): Boolean { + return canMoveTo(enemyPiece.getPosition()) + } +} + +data class King(var location: Board.BoardLocation, private val color: Color): Piece() { + override fun moveTo(square: Board.BoardLocation): Boolean { + if (canMoveTo(location)) { + this.location = square + return true + } + return false + } + + override fun getPosition(): Board.BoardLocation { + return location + } + + override fun getColor(): Color { + return color + } + + override fun canMoveTo(square: Board.BoardLocation): Boolean { + TODO("not implemented") //To change body of created functions use File | Settings | File Templates. + } + + override fun canKill(enemyPiece: IChessPiece): Boolean { + return canMoveTo(enemyPiece.getPosition()) + } +} + +data class Pawn(var location: Board.BoardLocation, private val color: Color): Piece() { + override fun moveTo(square: Board.BoardLocation): Boolean { + if (canMoveTo(location)) { + this.location = square + return true + } + return false + } + + override fun getPosition(): Board.BoardLocation { + return location + } + + override fun getColor(): Color { + return color + } + + override fun canMoveTo(square: Board.BoardLocation): Boolean { + TODO("not implemented") //To change body of created functions use File | Settings | File Templates. + } + + override fun canKill(enemyPiece: IChessPiece): Boolean { + return canMoveTo(enemyPiece.getPosition()) + } +} \ No newline at end of file diff --git a/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/BishopTest.kt b/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/BishopTest.kt new file mode 100644 index 0000000..ece4850 --- /dev/null +++ b/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/BishopTest.kt @@ -0,0 +1,38 @@ +package com.anthonycicchetti.cs5004.assignment3.pieces + +import com.anthonycicchetti.cs5004.assignment3.Board +import com.sun.source.tree.WhileLoopTree +import org.junit.jupiter.api.Test + +import org.junit.jupiter.api.Assertions.* + +internal class BishopTest { + + val A_ONE = Board.BoardLocation(Board.Column.A, Board.Row.ONE) + val D_FOUR = Board.BoardLocation(Board.Column.D, Board.Row.FOUR) + + @Test + fun getPosition() { + val expected = Bishop(A_ONE, Color.WHITE) + val actual = Bishop(Board.BoardLocation(Board.Column.A, Board.Row.ONE), Color.WHITE) + assertEquals(expected, actual) + } + + @Test + fun `Can Move One Space Up-Right`() { + val bishop = Bishop(A_ONE, Color.WHITE) + assertTrue(bishop.canMoveTo(Board.BoardLocation(Board.Column.B, Board.Row.TWO))) + } + + @Test + fun `Can Move Four Spaces Up-Right`() { + val bishop = Bishop(A_ONE, Color.WHITE) + assertTrue(bishop.canMoveTo(Board.BoardLocation(Board.Column.D, Board.Row.FOUR))) + } + + @Test + fun `Cannot Move One Space Right`() { + val bishop = Bishop(A_ONE, Color.WHITE) + assertFalse(bishop.canMoveTo(Board.BoardLocation(Board.Column.B, Board.Row.ONE))) + } +} \ No newline at end of file diff --git a/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/KingTest.kt b/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/KingTest.kt new file mode 100644 index 0000000..26c1ec6 --- /dev/null +++ b/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/KingTest.kt @@ -0,0 +1,24 @@ +package com.anthonycicchetti.cs5004.assignment3.pieces + +import org.junit.jupiter.api.Test + +import org.junit.jupiter.api.Assertions.* + +internal class KingTest { + + @Test + fun getPosition() { + } + + @Test + fun getColor() { + } + + @Test + fun canMoveTo() { + } + + @Test + fun canKill() { + } +} \ No newline at end of file diff --git a/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/KnightTest.kt b/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/KnightTest.kt new file mode 100644 index 0000000..e1eb0dd --- /dev/null +++ b/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/KnightTest.kt @@ -0,0 +1,24 @@ +package com.anthonycicchetti.cs5004.assignment3.pieces + +import org.junit.jupiter.api.Test + +import org.junit.jupiter.api.Assertions.* + +internal class KnightTest { + + @Test + fun getPosition() { + } + + @Test + fun getColor() { + } + + @Test + fun canMoveTo() { + } + + @Test + fun canKill() { + } +} \ No newline at end of file diff --git a/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/PawnTest.kt b/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/PawnTest.kt new file mode 100644 index 0000000..c543468 --- /dev/null +++ b/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/PawnTest.kt @@ -0,0 +1,24 @@ +package com.anthonycicchetti.cs5004.assignment3.pieces + +import org.junit.jupiter.api.Test + +import org.junit.jupiter.api.Assertions.* + +internal class PawnTest { + + @Test + fun getPosition() { + } + + @Test + fun getColor() { + } + + @Test + fun canMoveTo() { + } + + @Test + fun canKill() { + } +} \ No newline at end of file diff --git a/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/QueenTest.kt b/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/QueenTest.kt new file mode 100644 index 0000000..fd992fe --- /dev/null +++ b/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/QueenTest.kt @@ -0,0 +1,24 @@ +package com.anthonycicchetti.cs5004.assignment3.pieces + +import org.junit.jupiter.api.Test + +import org.junit.jupiter.api.Assertions.* + +internal class QueenTest { + + @Test + fun getPosition() { + } + + @Test + fun getColor() { + } + + @Test + fun canMoveTo() { + } + + @Test + fun canKill() { + } +} \ No newline at end of file diff --git a/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/RookTest.kt b/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/RookTest.kt new file mode 100644 index 0000000..e012912 --- /dev/null +++ b/src/test/kotlin/com/anthonycicchetti/cs5004/assignment3/pieces/RookTest.kt @@ -0,0 +1,68 @@ +package com.anthonycicchetti.cs5004.assignment3.pieces + +import com.anthonycicchetti.cs5004.assignment3.Board +import org.junit.jupiter.api.Test + +import org.junit.jupiter.api.Assertions.* + +internal class RookTest { + + val A_ONE = Board.BoardLocation(Board.Column.A, Board.Row.ONE) + val D_FOUR = Board.BoardLocation(Board.Column.D, Board.Row.FOUR) + + @Test + fun `Can Move One Space to the Right`() { + val rook = Rook(A_ONE, Color.WHITE) + + assertTrue(rook.canMoveTo(Board.BoardLocation(Board.Column.B, Board.Row.ONE))) + } + + @Test + fun `Can Move Four Spaces to the Right`() { + val rook = Rook(A_ONE, Color.WHITE) + + assertTrue(rook.canMoveTo(Board.BoardLocation(Board.Column.E, Board.Row.ONE))) + } + + @Test + fun `Can Move One Space to the Left`() { + val rook = Rook(D_FOUR, Color.WHITE) + + assertTrue(rook.canMoveTo(Board.BoardLocation(Board.Column.C, Board.Row.FOUR))) + } + + @Test + fun `Can Move Three Spaces to the Left`() { + val rook = Rook(D_FOUR, Color.WHITE) + + assertTrue(rook.canMoveTo(Board.BoardLocation(Board.Column.A, Board.Row.FOUR))) + } + + @Test + fun `Can Move One Space Up`() { + val rook = Rook(A_ONE, Color.WHITE) + + assertTrue(rook.canMoveTo(Board.BoardLocation(Board.Column.A, Board.Row.TWO))) + } + + @Test + fun `Can Move Five Spaces Up`() { + val rook = Rook(A_ONE, Color.WHITE) + + assertTrue(rook.canMoveTo(Board.BoardLocation(Board.Column.A, Board.Row.FIVE))) + } + + @Test + fun `Can Move One Space Down`() { + val rook = Rook(D_FOUR, Color.WHITE) + + assertTrue(rook.canMoveTo(Board.BoardLocation(Board.Column.D, Board.Row.THREE))) + } + + @Test + fun `Can Move Two Spaces Down`() { + val rook = Rook(D_FOUR, Color.WHITE) + + assertTrue(rook.canMoveTo(Board.BoardLocation(Board.Column.D, Board.Row.TWO))) + } +} \ No newline at end of file