Age | Commit message (Expand) | Author | Files | Lines |
2014-11-06 | add TankOnTank.debug(...) | Jérémy Zurcher | 1 | -1/+0 |
2014-11-05 | Pawn: add centerOn(flaot, float) | Jérémy Zurcher | 1 | -0/+5 |
2014-11-05 | Pawn: add enterBoard(Tile, Orientation) | Jérémy Zurcher | 1 | -0/+10 |
2014-11-05 | Player: add unitEntry(Pawn) and revertUnitEntry(Pawn) | Jérémy Zurcher | 1 | -0/+12 |
2014-11-05 | Pawn: add getPreviousTile() | Jérémy Zurcher | 1 | -0/+5 |
2014-11-05 | Pawn: enter/rotate/move/attack -> move() and attack() | Jérémy Zurcher | 2 | -6/+4 |
2014-11-05 | Board: simply getSetPawnOntoAnimation(...) thanks to Pawn.Move | Jérémy Zurcher | 1 | -4/+4 |
2014-11-05 | Board: call pawn.move.setRotation(...) in rotatePawn(...) | Jérémy Zurcher | 1 | -0/+1 |
2014-11-05 | PossiblePaths: implements applyToPawn that feed Pawn.Move and is called from ... | Jérémy Zurcher | 2 | -0/+13 |
2014-11-05 | add Pawn.Move | Jérémy Zurcher | 1 | -0/+41 |
2014-11-05 | Pawn.Attack: .reset() and .toString() | Jérémy Zurcher | 1 | -2/+19 |
2014-11-05 | PosisblePaths: fix cost computation | Jérémy Zurcher | 1 | -6/+6 |
2014-11-05 | PossiblePaths: fix findAllPaths(...) roadMarch overriding when trying adjacents | Jérémy Zurcher | 1 | -4/+4 |
2014-11-05 | Board: findBestEntry(...) returns Orientation, not Tile | Jérémy Zurcher | 1 | -5/+5 |
2014-11-05 | Pawn,Unit: add enter(int cost) | Jérémy Zurcher | 1 | -0/+1 |
2014-11-05 | PossiblePaths: first call init(Pawn, Tile from) then build(Tile to) | Jérémy Zurcher | 1 | -9/+6 |
2014-11-05 | PossiblePaths: support int init(Pawn pawn, Tile from, Tile to) | Jérémy Zurcher | 1 | -6/+12 |
2014-11-05 | Board: add Tile getAdjTileAt(Tile, Orientation) and Tile findBestEntry(Pawn, ... | Jérémy Zurcher | 1 | -0/+63 |
2014-11-05 | Tile,Hex: int costFrom(Pawn, Orientation, boolean) -> int costFrom(Pawn, Orie... | Jérémy Zurcher | 3 | -12/+10 |
2014-11-04 | Image: add public blocked | Jérémy Zurcher | 1 | -2/+5 |
2014-11-04 | engine/Player: reinforcement is public -> no need of reinforcementCount() | Jérémy Zurcher | 1 | -5/+0 |
2014-11-04 | hud...: replace contains(float, float) with hit(float, float) | Jérémy Zurcher | 1 | -1/+1 |
2014-11-03 | engine/Player: replace reinforcementIterator() with List<Pawn> getReinforceme... | Jérémy Zurcher | 1 | -10/+6 |
2014-11-03 | Pawn: do not use image.getXxxx() | Jérémy Zurcher | 1 | -6/+6 |
2014-11-02 | Image: add visible | Jérémy Zurcher | 1 | -0/+13 |
2014-11-02 | engine/Player: add reinforcementCount() | Jérémy Zurcher | 1 | -0/+5 |
2014-11-01 | engine/Player: add getFaction() | Jérémy Zurcher | 1 | -0/+5 |
2014-11-01 | Player: add int unitsLeft() | Jérémy Zurcher | 1 | -0/+5 |
2014-11-01 | remove unnecessary comments | Jérémy Zurcher | 2 | -2/+0 |
2014-11-01 | Pawn: add attack.calculus String and feed it | Jérémy Zurcher | 2 | -1/+2 |
2014-11-01 | Board: factorize pawn animation code | Jérémy Zurcher | 1 | -13/+15 |
2014-10-31 | Board: on animation first call removePawn(), at the end setPawnOnto() to ensu... | Jérémy Zurcher | 1 | -1/+9 |
2014-10-31 | Borad,Pawn: getRotateAnimation(float, ...) do not need Vector3 Pool anymore | Jérémy Zurcher | 2 | -17/+3 |
2014-10-31 | Board: add of frame of OFFMAP tiles around the board | Jérémy Zurcher | 1 | -18/+32 |
2014-10-31 | update TODO file and TODO/FIXME comments | Jérémy Zurcher | 1 | -1/+1 |
2014-10-31 | Board: movePawn: use possiblePaths.to in RunnableAnimation | Jérémy Zurcher | 1 | -3/+2 |
2014-10-31 | PossiblePaths: Pawn, Tile, Orientation are public | Jérémy Zurcher | 1 | -18/+18 |
2014-10-31 | Board: collectAttackAssists do not include attack leader | Jérémy Zurcher | 1 | -1/+1 |
2014-10-31 | PossiblePaths: fix path.get(i) | Jérémy Zurcher | 1 | -2/+9 |
2014-10-31 | Tile: implements Iterable<Pawn> | Jérémy Zurcher | 1 | -1/+1 |
2014-10-31 | cleanup XxxCollection interfaces -> PawnSet and TileSet | Jérémy Zurcher | 3 | -50/+0 |
2014-10-31 | use new PossiblePaths class | Jérémy Zurcher | 3 | -234/+10 |
2014-10-31 | add engine/PossiblePaths | Jérémy Zurcher | 1 | -0/+297 |
2014-10-31 | Board,SearcBoard: setAdjacentTiles(...) is public, directly access Tile.col a... | Jérémy Zurcher | 2 | -9/+9 |
2014-10-30 | SearchBoard,Board: sides and distance goes from SearchBoard to Board | Jérémy Zurcher | 2 | -36/+47 |
2014-10-30 | Board: clean up int collectAttackAssists(Pawn, Pawn, Iterator<Pawn>, PawnColl... | Jérémy Zurcher | 1 | -7/+2 |
2014-10-30 | Board: clean up int collectMoveAssists(Pawn, PawnCollection) | Jérémy Zurcher | 1 | -1/+1 |
2014-10-30 | Board,SearchBoard: optimize collectPossibleTargets(Pawn, Iterator<Pawn>, Pawn... | Jérémy Zurcher | 2 | -8/+8 |
2014-10-30 | Tile: remove boolean hasTargetsFor(Pawn) | Jérémy Zurcher | 1 | -12/+0 |
2014-10-30 | Board,SearchBoard: optimize collectPossibleTargets(Pawn, Board.PawnCollection) | Jérémy Zurcher | 2 | -8/+14 |