Class: PGN::Game
- Inherits:
-
Object
- Object
- PGN::Game
- Defined in:
- lib/pgn/game.rb
Overview
Constant Summary collapse
- LEFT =
/(a|\x1B\[D)\z/- RIGHT =
/(d|\x1B\[C)\z/- EXIT =
/(q|\x03)\z/
Instance Attribute Summary collapse
-
#comment ⇒ Object
Returns the value of attribute comment.
-
#moves ⇒ Array<String>
A list of the moves in standard algebraic notation.
-
#pgn ⇒ Object
Returns the value of attribute pgn.
-
#result ⇒ String
The outcome of the game.
-
#tags ⇒ Hash<String, String>
Metadata about the game.
Instance Method Summary collapse
-
#each_position {|position| ... } ⇒ Enumerator, self
The replay loop is shared with #positions so eager and lazy paths produce identical position objects in identical order.
-
#fen_list ⇒ Array<String>
List of the fen representations of the positions.
- #initial_fen ⇒ Object
-
#initialize(moves, tags = nil, result = nil, pgn = nil, comment = nil) ⇒ Game
constructor
A new instance of Game.
-
#play ⇒ Object
Interactively step through the game.
-
#positions ⇒ Array<PGN::Position>
List of the Positions in the game.
- #starting_position ⇒ Object
-
#to_pgn ⇒ String
A canonical PGN string for this game, ending with a trailing newline.
Constructor Details
#initialize(moves, tags = nil, result = nil, pgn = nil, comment = nil) ⇒ Game
Returns a new instance of Game.
73 74 75 76 77 78 79 |
# File 'lib/pgn/game.rb', line 73 def initialize(moves, = nil, result = nil, pgn = nil, comment = nil) self.moves = moves self. = self.result = result self.pgn = pgn self.comment = comment end |
Instance Attribute Details
#comment ⇒ Object
Returns the value of attribute comment.
62 63 64 |
# File 'lib/pgn/game.rb', line 62 def comment @comment end |
#moves ⇒ Array<String>
Returns a list of the moves in standard algebraic notation.
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
# File 'lib/pgn/game.rb', line 61 class Game attr_accessor :tags, :result, :pgn, :comment attr_reader :moves LEFT = /(a|\x1B\[D)\z/ RIGHT = /(d|\x1B\[C)\z/ EXIT = /(q|\x03)\z/ # @param moves [Array<String>] a list of moves in SAN # @param tags [Hash<String, String>] metadata about the game # @param result [String] the outcome of the game # def initialize(moves, = nil, result = nil, pgn = nil, comment = nil) self.moves = moves self. = self.result = result self.pgn = pgn self.comment = comment end # @param moves [Array<String>] a list of moves in SAN # # Standardize castling moves to use O's instead of 0's # def moves=(moves) @moves = moves.map { |m| standardize_castling(m) } end # @return [String] a canonical PGN string for this game, ending with a # trailing newline. # def to_pgn PGN::Serializer.new(self).to_s end def initial_fen && ['FEN'] end def starting_position @starting_position ||= if initial_fen PGN::FEN.new(initial_fen).to_position else PGN::Position.start end end # @return [Array<PGN::Position>] list of the {PGN::Position}s in the game # def positions @positions ||= each_position.to_a end # @return [Enumerator, self] with a block: yields each {PGN::Position} # in order (starting position, then one per move) and returns self. # Without a block: returns an Enumerator that yields the same. # # The replay loop is shared with {#positions} so eager and lazy paths # produce identical position objects in identical order. def each_position return enum_for(:each_position) unless block_given? position = starting_position yield position moves.each do |move| position = position.move(move.notation) yield position end self end # @return [Array<String>] list of the fen representations of the positions # def fen_list positions.map { |p| p.to_fen.inspect } end # Interactively step through the game # # Use +d+ to move forward, +a+ to move backward, and +^C+ to exit. # def play index = 0 hist = Array.new(3, '') loop do puts "\e[H\e[2J" puts positions[index].inspect hist[0..2] = (hist[1..2] << $stdin.getch) case hist.join when LEFT index -= 1 if index.positive? when RIGHT index += 1 if index < moves.length when EXIT break end end end private # A MoveText is reused as-is (no new object) when its notation needs no # '0'->'O' fix and its comment has no braces left to clean; a braced # comment still needs MoveText.new's second clean_text pass to match the # legacy whittle byte-output. def standardize_castling(entry) return MoveText.new(entry.include?('0') ? entry.gsub('0', 'O') : entry) if entry.is_a?(String) notation = entry.notation.include?('0') ? entry.notation.gsub('0', 'O') : entry.notation return entry if notation.equal?(entry.notation) && (entry.comment.nil? || !entry.comment.include?('{')) MoveText.new(notation, entry.annotation, entry.comment, entry.variations) end end |
#pgn ⇒ Object
Returns the value of attribute pgn.
62 63 64 |
# File 'lib/pgn/game.rb', line 62 def pgn @pgn end |
#result ⇒ String
Returns the outcome of the game.
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
# File 'lib/pgn/game.rb', line 61 class Game attr_accessor :tags, :result, :pgn, :comment attr_reader :moves LEFT = /(a|\x1B\[D)\z/ RIGHT = /(d|\x1B\[C)\z/ EXIT = /(q|\x03)\z/ # @param moves [Array<String>] a list of moves in SAN # @param tags [Hash<String, String>] metadata about the game # @param result [String] the outcome of the game # def initialize(moves, = nil, result = nil, pgn = nil, comment = nil) self.moves = moves self. = self.result = result self.pgn = pgn self.comment = comment end # @param moves [Array<String>] a list of moves in SAN # # Standardize castling moves to use O's instead of 0's # def moves=(moves) @moves = moves.map { |m| standardize_castling(m) } end # @return [String] a canonical PGN string for this game, ending with a # trailing newline. # def to_pgn PGN::Serializer.new(self).to_s end def initial_fen && ['FEN'] end def starting_position @starting_position ||= if initial_fen PGN::FEN.new(initial_fen).to_position else PGN::Position.start end end # @return [Array<PGN::Position>] list of the {PGN::Position}s in the game # def positions @positions ||= each_position.to_a end # @return [Enumerator, self] with a block: yields each {PGN::Position} # in order (starting position, then one per move) and returns self. # Without a block: returns an Enumerator that yields the same. # # The replay loop is shared with {#positions} so eager and lazy paths # produce identical position objects in identical order. def each_position return enum_for(:each_position) unless block_given? position = starting_position yield position moves.each do |move| position = position.move(move.notation) yield position end self end # @return [Array<String>] list of the fen representations of the positions # def fen_list positions.map { |p| p.to_fen.inspect } end # Interactively step through the game # # Use +d+ to move forward, +a+ to move backward, and +^C+ to exit. # def play index = 0 hist = Array.new(3, '') loop do puts "\e[H\e[2J" puts positions[index].inspect hist[0..2] = (hist[1..2] << $stdin.getch) case hist.join when LEFT index -= 1 if index.positive? when RIGHT index += 1 if index < moves.length when EXIT break end end end private # A MoveText is reused as-is (no new object) when its notation needs no # '0'->'O' fix and its comment has no braces left to clean; a braced # comment still needs MoveText.new's second clean_text pass to match the # legacy whittle byte-output. def standardize_castling(entry) return MoveText.new(entry.include?('0') ? entry.gsub('0', 'O') : entry) if entry.is_a?(String) notation = entry.notation.include?('0') ? entry.notation.gsub('0', 'O') : entry.notation return entry if notation.equal?(entry.notation) && (entry.comment.nil? || !entry.comment.include?('{')) MoveText.new(notation, entry.annotation, entry.comment, entry.variations) end end |
#tags ⇒ Hash<String, String>
Returns metadata about the game.
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 |
# File 'lib/pgn/game.rb', line 61 class Game attr_accessor :tags, :result, :pgn, :comment attr_reader :moves LEFT = /(a|\x1B\[D)\z/ RIGHT = /(d|\x1B\[C)\z/ EXIT = /(q|\x03)\z/ # @param moves [Array<String>] a list of moves in SAN # @param tags [Hash<String, String>] metadata about the game # @param result [String] the outcome of the game # def initialize(moves, = nil, result = nil, pgn = nil, comment = nil) self.moves = moves self. = self.result = result self.pgn = pgn self.comment = comment end # @param moves [Array<String>] a list of moves in SAN # # Standardize castling moves to use O's instead of 0's # def moves=(moves) @moves = moves.map { |m| standardize_castling(m) } end # @return [String] a canonical PGN string for this game, ending with a # trailing newline. # def to_pgn PGN::Serializer.new(self).to_s end def initial_fen && ['FEN'] end def starting_position @starting_position ||= if initial_fen PGN::FEN.new(initial_fen).to_position else PGN::Position.start end end # @return [Array<PGN::Position>] list of the {PGN::Position}s in the game # def positions @positions ||= each_position.to_a end # @return [Enumerator, self] with a block: yields each {PGN::Position} # in order (starting position, then one per move) and returns self. # Without a block: returns an Enumerator that yields the same. # # The replay loop is shared with {#positions} so eager and lazy paths # produce identical position objects in identical order. def each_position return enum_for(:each_position) unless block_given? position = starting_position yield position moves.each do |move| position = position.move(move.notation) yield position end self end # @return [Array<String>] list of the fen representations of the positions # def fen_list positions.map { |p| p.to_fen.inspect } end # Interactively step through the game # # Use +d+ to move forward, +a+ to move backward, and +^C+ to exit. # def play index = 0 hist = Array.new(3, '') loop do puts "\e[H\e[2J" puts positions[index].inspect hist[0..2] = (hist[1..2] << $stdin.getch) case hist.join when LEFT index -= 1 if index.positive? when RIGHT index += 1 if index < moves.length when EXIT break end end end private # A MoveText is reused as-is (no new object) when its notation needs no # '0'->'O' fix and its comment has no braces left to clean; a braced # comment still needs MoveText.new's second clean_text pass to match the # legacy whittle byte-output. def standardize_castling(entry) return MoveText.new(entry.include?('0') ? entry.gsub('0', 'O') : entry) if entry.is_a?(String) notation = entry.notation.include?('0') ? entry.notation.gsub('0', 'O') : entry.notation return entry if notation.equal?(entry.notation) && (entry.comment.nil? || !entry.comment.include?('{')) MoveText.new(notation, entry.annotation, entry.comment, entry.variations) end end |
Instance Method Details
#each_position {|position| ... } ⇒ Enumerator, self
The replay loop is shared with #positions so eager and lazy paths produce identical position objects in identical order.
120 121 122 123 124 125 126 127 128 129 130 |
# File 'lib/pgn/game.rb', line 120 def each_position return enum_for(:each_position) unless block_given? position = starting_position yield position moves.each do |move| position = position.move(move.notation) yield position end self end |
#fen_list ⇒ Array<String>
Returns list of the fen representations of the positions.
134 135 136 |
# File 'lib/pgn/game.rb', line 134 def fen_list positions.map { |p| p.to_fen.inspect } end |
#initial_fen ⇒ Object
96 97 98 |
# File 'lib/pgn/game.rb', line 96 def initial_fen && ['FEN'] end |
#play ⇒ Object
Interactively step through the game
Use d to move forward, a to move backward, and ^C to exit.
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 |
# File 'lib/pgn/game.rb', line 142 def play index = 0 hist = Array.new(3, '') loop do puts "\e[H\e[2J" puts positions[index].inspect hist[0..2] = (hist[1..2] << $stdin.getch) case hist.join when LEFT index -= 1 if index.positive? when RIGHT index += 1 if index < moves.length when EXIT break end end end |
#positions ⇒ Array<PGN::Position>
Returns list of the Positions in the game.
110 111 112 |
# File 'lib/pgn/game.rb', line 110 def positions @positions ||= each_position.to_a end |
#starting_position ⇒ Object
100 101 102 103 104 105 106 |
# File 'lib/pgn/game.rb', line 100 def starting_position @starting_position ||= if initial_fen PGN::FEN.new(initial_fen).to_position else PGN::Position.start end end |
#to_pgn ⇒ String
Returns a canonical PGN string for this game, ending with a trailing newline.
92 93 94 |
# File 'lib/pgn/game.rb', line 92 def to_pgn PGN::Serializer.new(self).to_s end |