Sha256: e9814182aa4e3fde81e7e95016a50ec8697ecef061e7674ac7dfb192ad756722

Contents?: true

Size: 1.66 KB

Versions: 11

Compression:

Stored size: 1.66 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 both 'tv_screen.frag' and 'static.frag'"

    @screen = Ashton::Shader.new fragment: :tv_screen, uniforms: {
        column_width: 1.0,
    }

    @static = Ashton::Shader.new fragment: :static

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

    update # Ensure the values are initially set.
  end

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

    @static.t = Math::sin(Gosu::milliseconds / 500.0) * 1000
    @static.intensity = Math::sin(Gosu::milliseconds / 2345.0) + 1.5
  end

  def draw
    post_process @static, @screen do
      @background.draw 0, 0, 0, width.fdiv(@background.width), height.fdiv(@background.height)

      @font.draw_rel "Hello world!", 350, 50, 0, 0.5, 0.5, 1, 1, Gosu::Color::GREEN
      @font.draw_rel "Goodbye world!", 400, 350, 0, 0.5, 0.5, 2, 2, Gosu::Color::BLUE

      @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 "FPS: #{Gosu::fps}", 0, 0, 0
  end

  def button_down(id)
    if id == Gosu::KbEscape
      close
    end
  end
end

TestWindow.new.show

Version data entries

11 entries across 11 versions & 2 rubygems

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