Skip to content

Instantly share code, notes, and snippets.

@ruprict
Created February 3, 2012 01:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ruprict/1726875 to your computer and use it in GitHub Desktop.
Save ruprict/1726875 to your computer and use it in GitHub Desktop.
ROFLBALT Background
class Background
PALETTE = [ 16, 232, 233 ]
PERIOD = 16.0
SPEED = 0.5
BLOCKINESS = 10.0
def initialize world
@world = world
end
def pixel x, y, char = " "
Pixel.new char, 0, color(x, y)
end
def color x, y
y = (y / BLOCKINESS).round * BLOCKINESS
sin = Math.sin((x + @world.distance.to_f * SPEED) / PERIOD + y / PERIOD)
PALETTE[(0.9 * sin + 0.9).round]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment