Pong (marketed as PONG) is one of the earliest arcade video games. Pong is seen today as the "Hello World" to 2d game development.

learn more… | top users | synonyms

0
votes
2answers
72 views

Can I get booleans to work between classes

Ok so I want to make pong, I have the basic code but I want to add an option to change the colour of the paddles Main.Java: import java.awt.*; import java.awt.event.KeyAdapter; import ...
0
votes
1answer
73 views

While loop not working as intended in Pong game

I am attempting to create a Pong game in C# with Visual C# Express 2010. For the most part, I have the main idea of the game finished, however I have an issue with the ball moving. I have create a for ...
0
votes
1answer
37 views

Kivy: How to make Kivy Pong Game to stop after maximum points reached?

I found Pong Game made in Kivy and trying to develop it further just for my own learning purpose. But it is difficult to find any information about Kivy which could help me. For example, at this ...
-2
votes
0answers
42 views

Networking with Pong in Java

Alright, so I'm trying to play pong over a server my Professor set up for us. She told us we don't have to know how the networking portion of the program works however the examples she gave us are ...
1
vote
1answer
64 views

Python Class Object Error

I am trying to make a "crazy pong" game for a class. the requirements are to duplicate the ball after bouncing. This edition also requires that there be 3 types of balls one regular one that shrinks ...
1
vote
1answer
53 views

Managing Input in SDL?

I am creating a pong clone in C++ using SDL. The Paddles are ready and move according to the user input. What keeps worrying me is that the input is weird, I expected smooth movement of both the ...
-1
votes
0answers
49 views

How to add a ball every time a ball hits the paddle in pong.py?

I was thinking I just need to add something in check_bounce in the paddle to just duplicate a ball, but I have no idea. Below is my attempt. The pong game worked prior to me adding the if ...
1
vote
1answer
62 views

Android - Creating a Timer loop for a pong game

I have a Pong game that I wrote in Java and I'm trying to port it to Android. (It's my first Android game ;). In Java I used a Timer object which basically updated the Game values (ball/paddles ...
0
votes
1answer
56 views

Java ball in pong bouncing very strangely [closed]

When the ball gets to a certain point right above the left paddle, it spazzes and bounces almost inside the paddle and keeps going down. It must have something to do with the functions below but I ...
-1
votes
1answer
79 views

Having trouble with java keyPressed and keyReleased in pong

So I'm trying to move the paddles by incrementing them when the certain key is pressed. I'm doing it this way because because when I didn't use keyrelease, you could not move both of them at the same ...
2
votes
1answer
89 views

Java pong can't move both paddles at once

Trying to make pong in java but can't move both paddles at once. You can move one or the other but not both at the same time. Do I need to create 2 threads with 2 different pannels? Here is where I ...
0
votes
1answer
179 views

pong program in python, cannot move paddle with mouse

Hey all im working on a homework assignment in which i have to create a single player pong game through pygame and livewire. I have the code mostly finished but I do have one issue. The screen does ...
1
vote
0answers
98 views

pong ball not bouncing off walls

When it hits the wall it just rolls along the wall, but I am reversing the y coordinate. Also, you can't move the paddles at the same time. Any tips for that? Should I create 2 threads? Here is the ...
-1
votes
1answer
52 views

Canvas Animation. Solo Pong

This is my first Web development class and I'm having trouble with functions and knowing which to call. My teacher gave us the following code: <!DOCTYPE HTML> <html lang="en"> ...
1
vote
2answers
99 views

JS - jQuery / How to detect if a Key is Pressed / POLL function

I am making a Ping Pong game in Javascript, and there is a ball bouncing all around the screen and you cannot let it touch the lower border of the wrapper box. (The bouncing ball is not the problem, I ...
0
votes
2answers
227 views

Pong Paddle collision velocity and rebound angle

Well I've searched a lot for this but all I can find is people saying like do pi * direction, direction being the angle that the ball is coming in at I assume. But my problem is, I have no idea how I ...
0
votes
1answer
40 views

Clicking out of a Canvas

I am making a Pong program, and I have a start button that begins to draw everything, and quite literally to get the ball rolling (you're welcome for the pun). Anyways, when I hit the start button, a ...
1
vote
2answers
38 views

Updating position of an object with constant speed, regardless of direction

I think this question is a little but stupid but I can't find the answer. I'm doing the classic game pong. And I want that the ball goes at the same speed for any angle. But with my current algorithm ...
1
vote
0answers
124 views

Pong game with graphics class and inheritance issue

I've got this lab for a class that creates a pong-like game and I've put the .java files for this lab accordingly on pastebin at the following links: Ball.java: http://pastebin.com/VMg75i8U ...
4
votes
2answers
271 views

C++ OpenGL Pong ball moving too fast

Im trying to create a simple pong game in C++ using opengl. I have the borders displaying on the screen, the paddles, the ball, and all of them move, so that's great! The problem is that the ball ...
0
votes
1answer
252 views

Python Pygame Pong Game Issues

So basically what I've tried to code here is a game of Pong using the Python programming language and the Pygame module. My problems are as follows: The game sometimes gets stuck in a loop in ...
0
votes
1answer
342 views

Using a JLabel to continuously update a score in Java, JFrame-based game

I'm building a little "pong" game in Java. I'm trying to add a scorekeeper up top that shows the updated score (+1) everytime the player saves the ball with the paddle. I'm trying to use a JLabel ...
1
vote
1answer
116 views

Javascript/HTML5 pong game only working in Chrome [closed]

I currently finished a Pong game as a college assignment, but it's only working in Google Chrome. I've searched for a few hours on Google, but can't seem to find the problem. It's not working in the ...
0
votes
0answers
84 views

More about the Math - Difficult Pong AI

I made a little pong game with different difficulty-levels. The hard AI precalculates the position of the ball. I used the answer from Ghost from another question: Math - Difficult Pong AI But sadly ...
0
votes
1answer
99 views

How to decide the Ping interval for websocket connection

I understand the Ping is to help prevent proxies from closing idle connections. Is there any guidelines w.r.t. how often to ping? Once every second? 10 seconds? Minute? Does it even matter? A ...
0
votes
0answers
121 views

How can I benchmark fps of my programs?

I have created Pong in Java, Python, C#, and Visual Basic. I want to benchmark the fps of each program, but I don't know how. I tried using fraps. It said that my Java Pong was running at 350 fps, ...
0
votes
2answers
238 views

How do I add collision detection to the ball and paddles of my Pong clone in Pygame?

I am making Pong in Pygame. I have tried looking all over the Internet on how to add collision detection to the ball and paddles. I can't seem to do it. Could someone tell me How to make the ball ...
0
votes
1answer
86 views

Codea / Lua pong game CPU opponent inaccuracy

I have recently designed and programmed a pong game in lua (codea); where you can play in multiplayer and in singleplayer where you play against the CPU. My problem is, I can have the CPU to play ...
2
votes
2answers
180 views

How do I set collision detection for Pong in Pygame

I am building a Pong clone in Pygame. I can't figure out how to add collision detection to the ball and paddles so the ball will bounce off the paddles. How can I do this? How can I have the ball ...
1
vote
1answer
144 views

Why doesn't the ball bounce in my Pong game in Pygame?

I am trying to make a Pong clone in Pygame. I am fairly new to Python and am having some trouble. The program should make the two paddles moveable, and the ball bouncing of the edges of the screen, ...
0
votes
1answer
176 views

Simple Pong game; Can't get paddle to move across the screen

I'm trying to create simple Pong game. The first thing I'm working on is getting a paddle to move left or right when the user clicks the "Left" or "Right" button provided in the frame. When the user ...
2
votes
3answers
119 views

Making the ball move with the same speed regardless of resolution (PONG)

I've created a simple Pong game and I move the ball by adding a variable ballSpeed to its position in my update game logic like: void Update() { ballPosition += ballSpeed; } The problem is that ...
-3
votes
1answer
64 views

I have a main method and three classes and I need to compile - eclipse

I am using Eclipse and I am making the game pong from a tutorial. I have copied the code of the 4 classes (one main class) into notepads so I can use them how I need too... I have HTML code to use ...
3
votes
2answers
236 views

Java pong game Graphics or geom 2D

My first project is to make the game Pong in Java. Because I need to calculate the delta for my x position and y position, I think the best way is to use double variables(excuse me if i'm wrong). But ...
0
votes
1answer
118 views

Timing problems in Allegro while implementing Pong

I'm trying to implement a very basic version of Pong using Allegro 4 and C++. I'm running into a problem however when I use the timing mechanism in conjunction with a rest() call. My game is set up ...
-1
votes
1answer
149 views

keeping a variable inside a range in python

i am trying to write a code for the game pong but i am facing a problem when trying to control the range of the paddles positions , the question is that : is there a way in python to keep a variable ...
0
votes
2answers
191 views

AS3 Flash Pong game: AI paddle does not move as expected

So I have the following code expressing the "AI" movement. pdl_R is the AI paddle, AIH is AI Height, AIHS is AI Height Speed. I want the code to move the paddle by AIH in the direction of AIHS. ...
1
vote
3answers
214 views

Javascript Pong Game Moving Bats [closed]

I'm currently on a Pong game tutorial, with Javascript. I'm at the point where I need to make the 2 bats move, by pressing certain keys. The bats should move when I press K, M, A or Z. But they are ...
2
votes
1answer
574 views

Pong Controls With KeyListener

I have ran into a bit of trouble getting my pong game to work, this project started simply with making a ball have physics but then i decided to do some more work I have that ball bounce back and ...
1
vote
1answer
86 views

Having trouble putting a ball image onto my ball object in Java

hey my question is how do i put a picture onto the ball object in the game Pong in java? below is my current code for an object called Ball which extends an abstract class Shape. package Software; ...
0
votes
0answers
274 views

Fast moving sprite without blur - Python - Kivy

I asked a similar question to this before, but the question and answer aren't relevant to this question. So I'm making a Pong game and thanks to you guys I am able to have the AI paddle move without ...
0
votes
1answer
588 views

Need better way of making the ball angle in pong game

I'm making a pong clone to practice my coding, and I've become stuck on making the ball be able to change angle when hit by the paddle. My current implementation has a deltaX and deltaY for the ball, ...
2
votes
3answers
178 views

Increasing sprite position incrementally very fast without lag - Python

I'm making a PONG game for a school project using Kivy in Python. So far thanks to this forum I've made myself some AI for the NPC paddle. This is the code: if self.ball.y < ...
0
votes
2answers
623 views

Creating AI for Pong game + basic understanding of speed algorithm

I'm making a pong game for my software development class, and I should probably state that this is homework, hence my limited understanding. and I'm having some problems creating the AI for my NPC ...
1
vote
2answers
995 views

Moving an object left and right

I have a problem with Python and pygame: I have no idea how to make a simple paddle move left and right. Basically I am working on a pong type game for my first project. After reading a few articles ...
0
votes
1answer
147 views

Issues with OpenGL and LWJGL: Syntax Error on Token “glMatrixMode”

I want to make a 'Pong' game using lwjgl. For now, I made 2 classes: GameLoop and Inizializza. I have those 4 lines of code marked below that are giving me compile errors. I copied that part from ...
0
votes
1answer
362 views

Pong movement not smooth

I want to make a pong game in processing. But the movement of the ball was not very smooth. I tried changing the frame rate and decrease the speed of the ball, but then the movement speed seems to be ...
-2
votes
1answer
303 views

Java irc bot ping pong

if (serverResponse.contains("PING ")) { writer.write("PONG " + serverResponse.substring(5) + "\r\n"); writer.write("PRIVMSG " + c.getHomechannel() + " :I got ...
1
vote
1answer
174 views

GLUT keyboard very unresponsive

I am testing out the simple pong game found here: https://github.com/shangaslammi/frp-pong The problem is that the keyboard controls work very badly - the keys are very unresponsive and often have a ...
0
votes
1answer
911 views

How to connect to IRC server/ parse IRC MSGs / PING-PONG handling in C language (code provided)

am writing IRC client in C lang. and encountered some problems while connecting to serwer. I get the following when i run the program: OUTPUT Set Fully Qualified host Domain Name(human readable): ...

1 2