[LIB-9] Set of entities for PGN parsing and formatting
authorgotty <gotty@hedgecode.org>
Fri, 24 Jan 2020 23:55:16 +0000 (02:55 +0300)
committergotty <gotty@hedgecode.org>
Fri, 24 Jan 2020 23:55:16 +0000 (02:55 +0300)
commit5d271f23371d6a435a0435f000370f4d9b8c621a
tree0249193224e811107eb9fb76de0dbf701b0bd0f7
parent569af88b0115065e1a4551a20501bbd200fcba17
[LIB-9] Set of entities for PGN parsing and formatting
33 files changed:
chesshog-format/src/main/java/org/hedgecode/chess/pgn/PGNBuilder.java
chesshog-format/src/main/java/org/hedgecode/chess/pgn/PGNConstants.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/PGNParser.java
chesshog-format/src/main/java/org/hedgecode/chess/pgn/PGNUtils.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/entity/DetailGame.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/entity/DetailMove.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/entity/Game.java [moved from chesshog-format/src/main/java/org/hedgecode/chess/img/ImageBuilder.java with 60% similarity]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/entity/Move.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/entity/Moves.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/entity/Tag.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/entity/Variation.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/format/AbstractMovesFormat.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/format/AbstractPGNFormat.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/format/ExportMovesFormat.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/format/ExportPGNFormat.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/format/MovesFormat.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/format/PGNFormat.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/format/ReduceMovesFormat.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/format/ReducePGNFormat.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/format/wrap/AbstractWrapper.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/format/wrap/ExportWrapper.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/format/wrap/LineWrapper.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/format/wrap/MovesWrapper.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/token/CommentToken.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/token/EmptyToken.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/token/MoveToken.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/token/MovesToken.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/token/TagToken.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/token/Token.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/token/Tokenizer.java [new file with mode: 0644]
chesshog-format/src/main/java/org/hedgecode/chess/pgn/token/VariationToken.java [new file with mode: 0644]
chesshog-format/src/main/resources/org/hedgecode/chess/LocalStrings.properties
chesshog-format/src/main/resources/org/hedgecode/chess/LocalStrings_ru.properties