Age | Commit message (Expand) | Author | Files | Lines |
2014-11-14 | Naming attack -> engagement - move -> movement | Jérémy Zurcher | 1 | -8/+8 |
2014-11-05 | Tile,Hex: int costFrom(Pawn, Orientation, boolean) -> int costFrom(Pawn, Orie... | Jérémy Zurcher | 1 | -4/+3 |
2014-11-01 | remove unnecessary comments | Jérémy Zurcher | 1 | -1/+0 |
2014-10-31 | use new PossiblePaths class | Jérémy Zurcher | 1 | -131/+0 |
2014-10-31 | Board,SearcBoard: setAdjacentTiles(...) is public, directly access Tile.col a... | Jérémy Zurcher | 1 | -1/+1 |
2014-10-30 | SearchBoard,Board: sides and distance goes from SearchBoard to Board | Jérémy Zurcher | 1 | -36/+8 |
2014-10-30 | Board,SearchBoard: optimize collectPossibleTargets(Pawn, Iterator<Pawn>, Pawn... | Jérémy Zurcher | 1 | -4/+7 |
2014-10-30 | Board,SearchBoard: optimize collectPossibleTargets(Pawn, Board.PawnCollection) | Jérémy Zurcher | 1 | -5/+13 |
2014-10-30 | Board,SearchBoard: optimize collectPossibleMoves(Pawn, Board.TileCollection) | Jérémy Zurcher | 1 | -10/+8 |
2014-10-30 | SearchBoard: must be carefull with boolean inMap(int col, int row) | Jérémy Zurcher | 1 | -0/+1 |
2014-10-30 | SearchBoard: add and use Tile getTile(Node node) and Node getNode(Tile tile) | Jérémy Zurcher | 1 | -11/+19 |
2014-10-29 | SearchBoard: collectAttack(...) do not yell when the angle attack is not OK, ... | Jérémy Zurcher | 1 | -3/+1 |
2014-10-29 | rename buildXxxYyy(...) -> collectXxxYyy(...) | Jérémy Zurcher | 1 | -1/+1 |
2014-10-28 | SearchBoard: moves is a Set | Jérémy Zurcher | 1 | -7/+9 |
2014-10-14 | SearchBoard,Board: implement assisst attack without line of sight | Jérémy Zurcher | 1 | -13/+13 |
2014-10-14 | unify error msgs | Jérémy Zurcher | 1 | -1/+1 |
2014-10-13 | SearchBoard: fix validatePathAngle(...) count move forth to allow back one | Jérémy Zurcher | 1 | -2/+7 |
2014-10-13 | Pawn: add isFlankAttack() | Jérémy Zurcher | 1 | -1/+1 |
2014-10-13 | SearchBoard: clean up buildAttack(...)' -> canAttack(...) uses Pawn.Attack in... | Jérémy Zurcher | 1 | -11/+33 |
2014-10-13 | SearchBoard: add validatePathAngle(...) check angle of attack of successful LOS | Jérémy Zurcher | 1 | -5/+23 |
2014-10-13 | SearchBoard: add canAttack(Pawn, int, int, int, int) | Jérémy Zurcher | 1 | -0/+10 |
2014-10-09 | SearchBoard,Board: implement pathCost(Pawn, List<Node>) | Jérémy Zurcher | 1 | -0/+25 |
2014-10-09 | SearchBoard: clean up | Jérémy Zurcher | 1 | -5/+9 |
2014-10-08 | SearchBoard: possibleMovesFrom fix road march | Jérémy Zurcher | 1 | -4/+5 |
2014-10-07 | SearchBoard: oops fix 1 hex move | Jérémy Zurcher | 1 | -1/+1 |
2014-10-06 | SearchBoard.Node: add tString() | Jérémy Zurcher | 1 | -0/+6 |
2014-10-06 | use ArrayList instead of Vector | Jérémy Zurcher | 1 | -19/+18 |
2014-10-04 | SearchBoard: on filtering if one path matches and has the exact size, chose it | Jérémy Zurcher | 1 | -2/+8 |
2014-10-04 | SearchBoard: if distance between from and to is 1, chose this single move | Jérémy Zurcher | 1 | -2/+9 |
2014-10-04 | SearchBoard: fix possibleMoves | Jérémy Zurcher | 1 | -2/+6 |
2014-10-03 | Board.Orientation -> Orientation | Jérémy Zurcher | 1 | -14/+14 |
2014-10-03 | Board,SearchBoard: add getFinalPath(getFinalPath(Vector<GridPoint3> path) | Jérémy Zurcher | 1 | -0/+4 |
2014-10-02 | SearchBoard: fix possiblePaths road march | Jérémy Zurcher | 1 | -5/+4 |
2014-10-01 | Board/SearchBoard: possiblePathsFilterAdd -> possiblePathsFilterToggle | Jérémy Zurcher | 1 | -4/+9 |
2014-10-01 | Board/SearchBoard: add possiblePathsFilterAdd(int, int, Set<GridPoint2>) | Jérémy Zurcher | 1 | -1/+29 |
2014-10-01 | findAllPaths: support roadMarch, do not touch nodes state, returns List<Vecto... | Jérémy Zurcher | 1 | -28/+25 |
2014-10-01 | SearchBoard: add possiblePaths(...) TODO roadMarch support | Jérémy Zurcher | 1 | -0/+53 |
2014-10-01 | SearchBoard: adjacents is now local to function | Jérémy Zurcher | 1 | -26/+28 |
2014-10-01 | SearchBoard: add distance(Node, Node) | Jérémy Zurcher | 1 | -0/+5 |
2014-10-01 | SearchBoard: add boolean inMap() | Jérémy Zurcher | 1 | -0/+12 |
2014-10-01 | Board.distance() -> SearchBoard.distance() | Jérémy Zurcher | 1 | -0/+19 |
2014-09-30 | Board/SearchBoard: clean up | Jérémy Zurcher | 1 | -52/+60 |
2014-09-30 | SearchBoard: qick implementation of hasClearLineOfSight(...) | Jérémy Zurcher | 1 | -4/+29 |
2014-09-30 | SearchBoard: remove useless check param for lineOfSight() | Jérémy Zurcher | 1 | -9/+4 |
2014-09-30 | SearchBoard: add diagonalLineOfSight(...) | Jérémy Zurcher | 1 | -1/+33 |
2014-09-30 | SearchBoard: cleanup | Jérémy Zurcher | 1 | -14/+11 |
2014-09-29 | SearchBoard: add List<Node> lineOfSight() | Jérémy Zurcher | 1 | -1/+105 |
2014-09-29 | SearchBoard: coding style | Jérémy Zurcher | 1 | -2/+2 |
2014-09-27 | go from orthogonal coordinates to skew coordinates | Jérémy Zurcher | 1 | -51/+35 |
2014-09-26 | SearchBoard: fix openToAttackFrom() use a queue add fix attackAngle | Jérémy Zurcher | 1 | -30/+52 |