Skip to content

Instantly share code, notes, and snippets.

@gabebw
Created July 17, 2011 17:01
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 gabebw/1087793 to your computer and use it in GitHub Desktop.
Save gabebw/1087793 to your computer and use it in GitHub Desktop.
We have 2 paddles!
require 'rubygems'
require 'ray'
WIDTH = 800
HEIGHT = 800
PADDLE_X_OFFSET = 40
PADDLE_WIDTH = 40
def paddle(paddle_x_coord, paddle_y_coord)
arguments_array = [paddle_x_coord, paddle_y_coord, PADDLE_WIDTH, HEIGHT / 3]
Ray::Polygon.rectangle(arguments_array, Ray::Color.white)
end
Ray.game 'Pong', :size => [WIDTH, HEIGHT] do
register { add_hook(:quit, method(:exit!)) }
scene :start do
@left_paddle = paddle(PADDLE_X_OFFSET, 100)
@right_paddle = paddle(WIDTH - (PADDLE_X_OFFSET + PADDLE_WIDTH), 100)
# Exit when q is pressed
on :key_press, key(:q){ exit! }
render do |win|
win.draw @left_paddle
win.draw @right_paddle
end
end
scenes << :start
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment