summaryrefslogtreecommitdiffstats
path: root/core
AgeCommit message (Expand)AuthorFilesLines
2014-10-30Board: clean up int collectAttackAssists(Pawn, Pawn, Iterator<Pawn>, PawnColl...Jérémy Zurcher1-7/+2
2014-10-30Board: clean up int collectMoveAssists(Pawn, PawnCollection)Jérémy Zurcher1-1/+1
2014-10-30Board,SearchBoard: optimize collectPossibleTargets(Pawn, Iterator<Pawn>, Pawn...Jérémy Zurcher2-8/+8
2014-10-30Tile: remove boolean hasTargetsFor(Pawn)Jérémy Zurcher1-12/+0
2014-10-30Board,SearchBoard: optimize collectPossibleTargets(Pawn, Board.PawnCollection)Jérémy Zurcher2-8/+14
2014-10-30Board,SearchBoard: optimize collectPossibleMoves(Pawn, Board.TileCollection)Jérémy Zurcher2-13/+9
2014-10-30SearchBoard: must be carefull with boolean inMap(int col, int row)Jérémy Zurcher1-0/+1
2014-10-30SearchBoard: add and use Tile getTile(Node node) and Node getNode(Tile tile)Jérémy Zurcher1-11/+19
2014-10-30Pawn: remove boolean canBeAttacked(Pawn) -> use boolean canAttack(Pawn)Jérémy Zurcher3-8/+1
2014-10-29Map: silence wrong debug outputJérémy Zurcher1-3/+2
2014-10-29SearchBoard: collectAttack(...) do not yell when the angle attack is not OK, ...Jérémy Zurcher1-3/+1
2014-10-29rename buildXxxYyy(...) -> collectXxxYyy(...)Jérémy Zurcher6-21/+21
2014-10-29Map: dispose of SpriteAnimations and soundsJérémy Zurcher1-0/+4
2014-10-29Map: add SoundAnimationsJérémy Zurcher1-3/+25
2014-10-29add SoundAnimationJérémy Zurcher1-0/+81
2014-10-29add sounds attack.mp3 and move.mp3Jérémy Zurcher1-0/+5
2014-10-29Map: code cleanupJérémy Zurcher2-57/+56
2014-10-29Board: remove old commentJérémy Zurcher1-1/+0
2014-10-29Unit: use common consturctorJérémy Zurcher1-2/+2
2014-10-29Map: code reorderJérémy Zurcher1-10/+10
2014-10-29Map: activatedPawns is a Board.PawnCollectionJérémy Zurcher3-4/+7
2014-10-29Map: fix typo, activated pawns must call attack(target)Jérémy Zurcher1-2/+4
2014-10-29Map,Unit: simplify show/hide functionsJérémy Zurcher10-173/+121
2014-10-29Map: remove useless HexSet and UnitSet classes, use TileSet and PawnSetJérémy Zurcher1-21/+5
2014-10-29Pawn,Board: give current AnimationSequence size when asking Pawn for itJérémy Zurcher2-9/+9
2014-10-29Pawn: add boolean canBeAttacked(Pawn other)Jérémy Zurcher3-0/+8
2014-10-29StateCommon: remove unused fromJérémy Zurcher1-2/+0
2014-10-29StateAnimation: do nothing with from and toJérémy Zurcher1-4/+0
2014-10-29OptionsScreen: do not load assets a second timeJérémy Zurcher1-2/+0
2014-10-29Map: possibleTargets and attackAssists are Board.PawnCollection, activablePaw...Jérémy Zurcher4-38/+38
2014-10-29Unit: add ATTACK_ASSIST overlayJérémy Zurcher1-0/+6
2014-10-29Map: fix collectPossibleTargets(...) callJérémy Zurcher1-2/+2
2014-10-28Board: fix buildMoveAssists -> collectMoveAssistsJérémy Zurcher2-6/+8
2014-10-28Map: fix buildPossibleMoves(Pawn) and buildPossibleTargets(Pawn, Iterator<Paw...Jérémy Zurcher2-3/+13
2014-10-28Move and Rotate States: adapt to new moveablePawns definitionJérémy Zurcher3-38/+39
2014-10-28moveAssists -> UnitSet moveablePawns, include selected Pawn if can moveJérémy Zurcher1-34/+33
2014-10-28Board: add PawnSet, remove TileListJérémy Zurcher3-18/+27
2014-10-28Unit: add overlays methods showMoveable(), showAttack(), showTarget()Jérémy Zurcher1-1/+18
2014-10-28Unit: add getHex()Jérémy Zurcher1-0/+5
2014-10-28TileSet,Hex: do not crash callint iterator().next() when emptyJérémy Zurcher2-0/+2
2014-10-28Tile: create stack at Tile constructionJérémy Zurcher1-4/+2
2014-10-28Tile: getIterator() -> iterator(), getTopPawn() goes privateJérémy Zurcher4-13/+19
2014-10-28Map: add 'Hex getHexAt(float x, float y)'Jérémy Zurcher2-4/+7
2014-10-28States: do not use Pawn but UnitJérémy Zurcher6-61/+61
2014-10-28Player: Pawn promote(Pawn pawn) -> Unit promote(Unit unit)Jérémy Zurcher1-5/+5
2014-10-28Hex: add Unit getUnit()Jérémy Zurcher1-0/+6
2014-10-28use 4 atlases, set Unit overlaysJérémy Zurcher6-36/+51
2014-10-28Board: add Board.HexList and Board.HexSetJérémy Zurcher2-16/+24
2014-10-28add TileSet extends LinkedHashSet<Tile> implements Board.TileCollectionJérémy Zurcher1-0/+57
2014-10-28Add interface Board.TileCollection extends Collection<Tile>Jérémy Zurcher4-29/+40