Sha256: 38d2bae3e42855e5a1bc77580802d198b8a4e1b624a9c46c71d215408447c871

Contents?: true

Size: 1.09 KB

Versions: 5

Compression:

Stored size: 1.09 KB

Contents

# A thing is destroyed if a number of lives has been passed.
#
module Lives extend Trait
  
  # TODO def revive!
  #
  
  # Prints an amount of information on these capabilities.
  #
  manual <<-MANUAL
    Defines:
      lives <some trait>
    
    Example:
      lives 10
    
    Call kill! to remove a live. Override killed! to exhibit behaviour.
  MANUAL
  
  def self.included target_class
    target_class.extend IncludeMethods
    target_class.send :include, InstanceMethods
  end
  
  module IncludeMethods
    
    # Define the amount of lives in the class.
    #
    def lives amount
      InitializerHooks.register self do
        self.lives = amount
      end
      attr_reader :lives # override the default
    end
    
  end
  
  module InstanceMethods
    
    attr_writer :lives
    
    def lives
      3
    end
    
    # Does three things:
    # * Deduct 1 live.
    # * Check to see if the amount is 0.
    # * Calls #destroy! if yes.
    #
    def killed!
      
    end
    def kill!
      self.lives -= 1
      killed! if self.lives > 0
      destroy! if self.lives == 0
    end
    
  end
  
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
gosu_extensions-0.2.5 lib/traits/lives.rb
gosu_extensions-0.2.4 lib/traits/lives.rb
gosu_extensions-0.2.3 lib/traits/lives.rb
gosu_extensions-0.2.2 lib/traits/lives.rb
gosu_extensions-0.2.1 lib/traits/lives.rb