Sha256: 1591be1b80a4ead0b7aa40ac02a3e743c5fcebab7e2853ddcc922ce0763e9d3e

Contents?: true

Size: 1.71 KB

Versions: 158

Compression:

Stored size: 1.71 KB

Contents

# Copyright (c) 2007-2021 Andy Maleh
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

class Tetris
  module Model
    class Block
      COLOR_CLEAR = :white
    
      attr_accessor :color
      
      # Initializes with color. Default color (gray) signifies an empty block
      def initialize(color = COLOR_CLEAR)
        @color = color
      end
      
      # Clears block color. `quietly` option indicates if it should not notify observers by setting value quietly via variable not attribute writer.
      def clear
        self.color = COLOR_CLEAR unless self.color == COLOR_CLEAR
      end
      
      def clear?
        self.color == COLOR_CLEAR
      end
      
      def occupied?
        !clear?
      end
    end
  end
end

Version data entries

158 entries across 158 versions & 3 rubygems

Version Path
glimmer-dsl-libui-0.2.22 examples/tetris/model/block.rb
glimmer-dsl-libui-0.2.21 examples/tetris/model/block.rb
glimmer-dsl-libui-0.2.20 examples/tetris/model/block.rb
glimmer-dsl-libui-0.2.19 examples/tetris/model/block.rb
glimmer-dsl-libui-0.2.18 examples/tetris/model/block.rb
glimmer-dsl-libui-0.2.17 examples/tetris/model/block.rb
glimmer-dsl-swt-4.21.2.0 samples/elaborate/tetris/model/block.rb
glimmer-dsl-swt-4.21.1.1 samples/elaborate/tetris/model/block.rb
glimmer-dsl-swt-4.21.1.0 samples/elaborate/tetris/model/block.rb
glimmer-dsl-swt-4.21.0.1 samples/elaborate/tetris/model/block.rb
glimmer-dsl-swt-4.21.0.0 samples/elaborate/tetris/model/block.rb
glimmer-dsl-swt-4.20.15.5 samples/elaborate/tetris/model/block.rb
glimmer-dsl-swt-4.20.15.4 samples/elaborate/tetris/model/block.rb
glimmer-dsl-opal-0.28.3 lib/glimmer-dsl-opal/samples/elaborate/tetris/model/block.rb
glimmer-dsl-opal-0.28.2 lib/glimmer-dsl-opal/samples/elaborate/tetris/model/block.rb
glimmer-dsl-opal-0.28.1 lib/glimmer-dsl-opal/samples/elaborate/tetris/model/block.rb
glimmer-dsl-opal-0.28.0 lib/glimmer-dsl-opal/samples/elaborate/tetris/model/block.rb
glimmer-dsl-swt-4.20.15.3 samples/elaborate/tetris/model/block.rb
glimmer-dsl-opal-0.27.0 lib/glimmer-dsl-opal/samples/elaborate/tetris/model/block.rb
glimmer-dsl-opal-0.26.3 lib/glimmer-dsl-opal/samples/elaborate/tetris/model/block.rb