Sha256: c7db8690fa0a480a97c2677b6aa1d4a2b94de11999672d0de61f30a1ddf15f90

Contents?: true

Size: 1.36 KB

Versions: 11

Compression:

Stored size: 1.36 KB

Contents

# Use of GLSL shader in Gosu to post-process the entire screen.

begin
  require 'rubygems'
rescue LoadError
end

$LOAD_PATH.unshift File.expand_path('../lib/', File.dirname(__FILE__))
require "ashton"

def media_path(file); File.expand_path "media/#{file}", File.dirname(__FILE__) end

class TestWindow < Gosu::Window
  def initialize
    super 640, 480, false
    self.caption = "Post-processing with 'pixelate' - 1..9 affect pixel size"

    @pixelate = Ashton::Shader.new fragment: :pixelate, uniforms: {
        pixel_size: @pixel_size = 4,
    }

    @font = Gosu::Font.new self, Gosu::default_font_name, 40
    @star = Gosu::Image.new(self, media_path("LargeStar.png"), true)
  end

  def update
    $gosu_blocks.clear if defined? $gosu_blocks # Workaround for Gosu bug (0.7.45)
  end

  def button_down(id)
    if (Gosu::Kb1..Gosu::Kb9).include? id
      @pixel_size = (id - Gosu::Kb1 + 1) ** 2
      @pixelate.pixel_size = @pixel_size
    elsif id == Gosu::KbEscape
      close
    end
  end

  def draw
    post_process @pixelate do
      @font.draw_rel "Hello world!", 350, 50, 0, 0.5, 0.5
      @font.draw_rel "Goodbye world!", 400, 350, 0, 0.5, 0.5
      @star.draw 0, 0, 0
      @star.draw 200, 100, 0
    end

    # Drawing after the effect isn't processed, which is useful for GUI elements.
    @font.draw "Pixel ratio: 1:#{@pixel_size}", 0, 0, 0
  end
end

TestWindow.new.show

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
danabr75-ashton-0.1.5 examples/pixelate_example.rb
ashton-0.1.6 examples/pixelate_example.rb
ashton-0.1.5 examples/pixelate_example.rb
ashton-0.1.4 examples/pixelate_example.rb
ashton-0.1.3 examples/pixelate_example.rb
ashton-0.1.2 examples/pixelate_example.rb
ashton-0.1.1 examples/pixelate_example.rb
ashton-0.1.0 examples/pixelate_example.rb
ashton-0.0.4alpha examples/pixelate_example.rb
ashton-0.0.3alpha examples/pixelate_example.rb
ashton-0.0.2alpha examples/pixelate_example.rb