Age | Commit message (Expand) | Author | Files | Lines |
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 |
2014-10-30 | Board,SearchBoard: optimize collectPossibleMoves(Pawn, Board.TileCollection) | Jérémy Zurcher | 2 | -13/+9 |
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-30 | Pawn: remove boolean canBeAttacked(Pawn) -> use boolean canAttack(Pawn) | Jérémy Zurcher | 2 | -2/+1 |
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 | 2 | -5/+5 |
2014-10-29 | add SoundAnimation | Jérémy Zurcher | 1 | -0/+81 |
2014-10-29 | Board: remove old comment | Jérémy Zurcher | 1 | -1/+0 |
2014-10-29 | Map: activatedPawns is a Board.PawnCollection | Jérémy Zurcher | 1 | -1/+2 |
2014-10-29 | Map,Unit: simplify show/hide functions | Jérémy Zurcher | 3 | -31/+3 |
2014-10-29 | Pawn,Board: give current AnimationSequence size when asking Pawn for it | Jérémy Zurcher | 2 | -9/+9 |
2014-10-29 | Pawn: add boolean canBeAttacked(Pawn other) | Jérémy Zurcher | 2 | -0/+2 |
2014-10-29 | Map: possibleTargets and attackAssists are Board.PawnCollection, activablePaw... | Jérémy Zurcher | 1 | -5/+5 |
2014-10-28 | Board: fix buildMoveAssists -> collectMoveAssists | Jérémy Zurcher | 1 | -5/+7 |
2014-10-28 | Board: add PawnSet, remove TileList | Jérémy Zurcher | 3 | -18/+27 |
2014-10-28 | TileSet,Hex: do not crash callint iterator().next() when empty | Jérémy Zurcher | 1 | -0/+1 |
2014-10-28 | Tile: create stack at Tile construction | Jérémy Zurcher | 1 | -4/+2 |
2014-10-28 | Tile: getIterator() -> iterator(), getTopPawn() goes private | Jérémy Zurcher | 3 | -11/+18 |
2014-10-28 | use 4 atlases, set Unit overlays | Jérémy Zurcher | 2 | -6/+6 |