Sha256: b31e5f9711ab5c840fce5dc0d2e5bb303ac809e779d3dc342fe944c1c255755e

Contents?: true

Size: 1.49 KB

Versions: 52

Compression:

Stored size: 1.49 KB

Contents

#!/usr/bin/env ruby

require "curses"

def onsig(signal)
  Curses.close_screen
  exit signal
end

def place_string(y, x, string)
  Curses.setpos(y, x)
  Curses.addstr(string)
end

def cycle_index(index)
  (index + 1) % 5
end

%w[HUP INT QUIT TERM].each do |sig|
  unless trap(sig, "IGNORE") == "IGNORE"  # previous handler
    trap(sig) {|s| onsig(s) }
  end
end

Curses.init_screen
Curses.nl
Curses.noecho
Curses.curs_set 0
srand

xpos, ypos = {}, {}
x_range = 2..(Curses.cols - 3)
y_range = 2..(Curses.lines - 3)
(0..4).each do |i|
  xpos[i], ypos[i] = rand(x_range), rand(y_range)
end

i = 0
loop do
  x, y = rand(x_range), rand(y_range)

  place_string(y, x, ".")

  place_string(ypos[i], xpos[i], "o")

  i = cycle_index(i)
  place_string(ypos[i], xpos[i], "O")

  i = cycle_index(i)
  place_string(ypos[i] - 1, xpos[i],      "-")
  place_string(ypos[i],     xpos[i] - 1, "|.|")
  place_string(ypos[i] + 1, xpos[i],      "-")

  i = cycle_index(i)
  place_string(ypos[i] - 2, xpos[i],       "-")
  place_string(ypos[i] - 1, xpos[i] - 1,  "/ \\")
  place_string(ypos[i],     xpos[i] - 2, "| O |")
  place_string(ypos[i] + 1, xpos[i] - 1, "\\ /")
  place_string(ypos[i] + 2, xpos[i],       "-")

  i = cycle_index(i)
  place_string(ypos[i] - 2, xpos[i],       " ")
  place_string(ypos[i] - 1, xpos[i] - 1,  "   ")
  place_string(ypos[i],     xpos[i] - 2, "     ")
  place_string(ypos[i] + 1, xpos[i] - 1,  "   ")
  place_string(ypos[i] + 2, xpos[i],       " ")

  xpos[i], ypos[i] = x, y

  Curses.refresh
  sleep(0.5)
end

Version data entries

52 entries across 52 versions & 1 rubygems

Version Path
curses-1.1.3-x64-mingw32 sample/rain.rb
curses-1.1.3-x86-mingw32 sample/rain.rb
curses-1.1.3 sample/rain.rb
curses-1.1.2-x64-mingw32 sample/rain.rb
curses-1.1.2-x86-mingw32 sample/rain.rb
curses-1.1.2 sample/rain.rb
curses-1.1.1-x64-mingw32 sample/rain.rb
curses-1.1.1-x86-mingw32 sample/rain.rb
curses-1.1.1 sample/rain.rb
curses-1.1.0-x64-mingw32 sample/rain.rb
curses-1.1.0-x86-mingw32 sample/rain.rb
curses-1.1.0 sample/rain.rb