Age | Commit message (Expand) | Author | Files | Lines |
2014-10-10 | Board: add revertLastPawnMove(), call pawn .move(int) .rotate(Orientation) .r... | Jérémy Zurcher | 1 | -1/+19 |
2014-10-09 | SearchBoard,Board: implement pathCost(Pawn, List<Node>) | Jérémy Zurcher | 1 | -0/+5 |
2014-10-09 | Board: cleanup API, force tests update | Jérémy Zurcher | 1 | -38/+32 |
2014-10-08 | Board: close API | Jérémy Zurcher | 1 | -19/+22 |
2014-10-08 | Board: add buildMoveAssists(), possibleMovesFrom()->buildPossibleMovesFrom(),... | Jérémy Zurcher | 1 | -2/+17 |
2014-10-08 | Board: add neighbours[] and void buildNeighboursFor(GridPoint2 coords) | Jérémy Zurcher | 1 | -10/+14 |
2014-10-07 | Board: API consistency, rename parameters | Jérémy Zurcher | 1 | -15/+15 |
2014-10-07 | Board: add Tile getTileSafe(GridPoint2) | Jérémy Zurcher | 1 | -0/+5 |
2014-10-07 | Board: add GridPoint2 setNeighbour(GridPoint2, Orientation, GridPoint2); | Jérémy Zurcher | 1 | -0/+13 |
2014-10-07 | Board: add getTileSafe() and getAdjacentTiles() | Jérémy Zurcher | 1 | -0/+19 |
2014-10-07 | Board: possiblePaths(p, from, to, points) remove 'from' and 'to' from point S... | Jérémy Zurcher | 1 | -1/+2 |
2014-10-07 | Board: add commented debug in getCoordinatePath() | Jérémy Zurcher | 1 | -0/+7 |
2014-10-06 | Board: add rotatePawn(Pawn, Orientation, RunnableAnnimation) | Jérémy Zurcher | 1 | -0/+11 |
2014-10-06 | Pawn,Board: add a RunnableAnimation to notify the end of the animation | Jérémy Zurcher | 1 | -1/+2 |
2014-10-06 | Board: fix nodesToPoints(...) | Jérémy Zurcher | 1 | -14/+4 |
2014-10-06 | Board: clean up getCoordinatePath(...) | Jérémy Zurcher | 1 | -29/+24 |
2014-10-06 | use ArrayList instead of Vector | Jérémy Zurcher | 1 | -16/+16 |
2014-10-05 | Board,Map: dispose clears all paths, and sets | Jérémy Zurcher | 1 | -6/+11 |
2014-10-05 | Board.nodesToSet is good enough | Jérémy Zurcher | 1 | -4/+1 |
2014-10-04 | Board: use pawn.setPosition(..) instead of pawn.pushMove(..) | Jérémy Zurcher | 1 | -1/+1 |
2014-10-04 | Board: improve disposes() | Jérémy Zurcher | 1 | -6/+16 |
2014-10-04 | Board: remove dead code | Jérémy Zurcher | 1 | -51/+0 |
2014-10-03 | Board: fix path, rotate on place then move | Jérémy Zurcher | 1 | -13/+24 |
2014-10-03 | Board: use getHexAt(pawn.getCenter()) to avoid wrong hex if image is big | Jérémy Zurcher | 1 | -7/+11 |
2014-10-03 | Board: use pawn.getPosAt(center, pos) | Jérémy Zurcher | 1 | -8/+2 |
2014-10-03 | Board: comment out unused methods | Jérémy Zurcher | 1 | -44/+44 |
2014-10-03 | remove debug output | Jérémy Zurcher | 1 | -1/+0 |
2014-10-03 | Board: getFinalPath(...) returns an array of Vector3, add movePawn(...) | Jérémy Zurcher | 1 | -14/+52 |
2014-10-03 | getPawnPosAt(...) has a third intout argument | Jérémy Zurcher | 1 | -4/+8 |
2014-10-03 | Board: API goes GridPoint2 | Jérémy Zurcher | 1 | -66/+46 |
2014-10-03 | Board: use Orientation.fromMove(...) | Jérémy Zurcher | 1 | -19/+2 |
2014-10-03 | Board.Orientation -> Orientation | Jérémy Zurcher | 1 | -82/+1 |
2014-10-03 | Board,SearchBoard: add getFinalPath(getFinalPath(Vector<GridPoint3> path) | Jérémy Zurcher | 1 | -0/+50 |
2014-10-02 | Board: clean up API | Jérémy Zurcher | 1 | -11/+35 |
2014-10-01 | Board/SearchBoard: possiblePathsFilterAdd -> possiblePathsFilterToggle | Jérémy Zurcher | 1 | -2/+2 |
2014-10-01 | Board -> Tile -> StackedImages: isEnabled(int i) overlays | Jérémy Zurcher | 1 | -0/+5 |
2014-10-01 | Board/SearchBoard: add possiblePathsFilterAdd(int, int, Set<GridPoint2>) | Jérémy Zurcher | 1 | -3/+17 |
2014-10-01 | Board: add possiblePaths(Pawn, int, int, int, int, Set<GridPoint2>) | Jérémy Zurcher | 1 | -2/+22 |
2014-10-01 | Board: searchBoard is protected | Jérémy Zurcher | 1 | -1/+1 |
2014-10-01 | Board.distance() -> SearchBoard.distance() | Jérémy Zurcher | 1 | -21/+0 |
2014-09-30 | Board/SearchBoard: clean up | Jérémy Zurcher | 1 | -57/+56 |
2014-09-29 | Board/Tile: add protected default constructor needed for test unit | Jérémy Zurcher | 1 | -0/+4 |
2014-09-29 | add lineOfSight testing code | Jérémy Zurcher | 1 | -0/+24 |
2014-09-29 | Board is not an Image anymore, but has an Image | Jérémy Zurcher | 1 | -7/+21 |
2014-09-27 | go from orthogonal coordinates to skew coordinates | Jérémy Zurcher | 1 | -23/+25 |
2014-09-27 | getPawnPosAt(...) uses Tile.getCenter() | Jérémy Zurcher | 1 | -13/+3 |
2014-09-27 | Tiles have a center, GameFactory implements Board.TileBuilder to create Hex(c... | Jérémy Zurcher | 1 | -6/+13 |
2014-09-27 | overlays clear -> disable | Jérémy Zurcher | 1 | -4/+4 |
2014-09-26 | Orientation: add int allBut(), oppositeSide() -> opposite() | Jérémy Zurcher | 1 | -2/+8 |
2014-09-25 | Board: add openToAttackFrom() | Jérémy Zurcher | 1 | -0/+15 |