Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9252807
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T11:02:52+00:00 2026-06-18T11:02:52+00:00

I am making the game Pong in Ruby using the library Gosu. Right now,

  • 0

I am making the game Pong in Ruby using the library Gosu. Right now, I am trying to make the ball interacts with the board.

class Window < Gosu::Window
    # board size 30 X 298
    def initialize
        super 1440,720,false
        self.caption = "Pong"
        @Ball = Ball.new(self)
        @Ball.warp(720,360)
        @Board1 = Board.new(self,15,360)
        @Board2 = Board.new(self,1425,360) 
    end

    def update 
        @Ball.draw
        @Ball.move
        @Ball.bounceOffBoard(@Board1,@Board2)
       ........

At the last line, I tried to pass the field @Board1 down to another class so that the @Ball knows the cordinate of the board to see whether it should jump off. But it keep throwing me mistakes like

Pong.rb:105: formal argument cannot be a constant
    def bounceOffBoard(Board1,Board2)

What should I do?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-18T11:02:53+00:00Added an answer on June 18, 2026 at 11:02 am

    For a start, don’t name instance variables with capital letters:

    @Ball = Ball.new(self)
    @Board1 = Board.new(self,15,360)
    @Board2 = Board.new(self,1425,360) 
    

    should be:

    @ball = Ball.new(self)
    @board1 = Board.new(self,15,360)
    @board2 = Board.new(self,1425,360) 
    

    And:

    def bounceOffBoard(Board1,Board2)
    

    should be:

    def bounceOffBoard(board1, board2)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Hey guy's i'm making a Paddle/Pong game and right now i'm trying to find
I'm making this quick pong game and using hitTestObject to check for the collision.
I'm making a game in Ruby on Rails as a school project but now
I'm making a pong game. When the ball strikes either of the paddles it
I'm making a pong game for my software development class, and I should probably
I'm making a game in android using opengl-es, using multiple threads: class World{ protected
I am making a Game using Pygame and what I'm trying to do is
I'm making a game in C# (It's a pong game) and I've completed an
While making a little Pong game in C++ OpenGL, I decided it'd be fun
I am making a game of paddle ball, I have designed and scripted ball

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.