2009-01-29 00:18:34 +08:00
|
|
|
module pong;
|
|
|
|
|
|
|
|
import dsfml.system.all;
|
|
|
|
import dsfml.audio.all;
|
|
|
|
import dsfml.window.all;
|
|
|
|
import dsfml.graphics.all;
|
|
|
|
|
|
|
|
version (Tango)
|
|
|
|
{
|
2010-01-14 06:31:17 +08:00
|
|
|
import tango.io.Stdout;
|
|
|
|
import tango.math.Math;
|
2009-01-29 00:18:34 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-01-14 06:31:17 +08:00
|
|
|
import std.math;
|
2010-03-04 10:21:18 +08:00
|
|
|
import std.perf;
|
|
|
|
import std.random;
|
2009-01-29 00:18:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
// Defines PI
|
|
|
|
const float PI = 3.14159f;
|
|
|
|
|
2010-01-14 06:31:17 +08:00
|
|
|
// Create the window of the application
|
|
|
|
RenderWindow app = new RenderWindow(VideoMode(800, 600, 32), "SFML Pong");
|
2009-01-29 00:18:34 +08:00
|
|
|
|
2010-03-04 10:21:18 +08:00
|
|
|
app.useVerticalSync(false);
|
2010-01-14 06:31:17 +08:00
|
|
|
|
|
|
|
Input i = app.getInput();
|
|
|
|
|
|
|
|
// Load the sounds used in the game
|
|
|
|
Sound BallSound = new Sound(new SoundBuffer("Data/ball.wav"));
|
2009-01-29 00:18:34 +08:00
|
|
|
|
2010-01-14 06:31:17 +08:00
|
|
|
// Load the images used in the game
|
|
|
|
Image PaddleImage = new Image("Data/paddle.tga");
|
|
|
|
Image BallImage = new Image("Data/ball.tga");
|
2009-01-29 00:18:34 +08:00
|
|
|
|
|
|
|
|
|
|
|
// Initialize the end text
|
2010-01-14 06:31:17 +08:00
|
|
|
Text End = new Text(""c);
|
2009-01-29 00:18:34 +08:00
|
|
|
Font font = new Font("Data/cheeseburger.ttf");
|
2010-01-14 06:31:17 +08:00
|
|
|
End.setFont(font);
|
|
|
|
End.setCharacterSize(60);
|
|
|
|
End.move(150.f, 200.f);
|
|
|
|
End.setColor(Color(50, 50, 250));
|
|
|
|
|
2010-03-04 10:21:18 +08:00
|
|
|
Text fps = new Text(""c, font, 30);
|
|
|
|
fps.move(50.f, 50.f);
|
|
|
|
fps.setColor(Color.BLACK);
|
|
|
|
|
2010-01-14 06:31:17 +08:00
|
|
|
// Create the sprites of the background, the paddles and the ball
|
|
|
|
Sprite LeftPaddle = new Sprite(PaddleImage);
|
|
|
|
Sprite RightPaddle = new Sprite(PaddleImage);
|
|
|
|
Sprite Ball = new Sprite(BallImage);
|
|
|
|
|
|
|
|
LeftPaddle.move(10, (app.getView().getHeight() - LeftPaddle.getSize().y) / 2);
|
|
|
|
RightPaddle.move(app.getView().getWidth() - RightPaddle.getSize().x - 10, (app.getView().getHeight() - RightPaddle.getSize().y) / 2);
|
|
|
|
Ball.move((app.getView().getWidth() - Ball.getSize().x) / 2, (app.getView().getHeight() - Ball.getSize().y) / 2);
|
|
|
|
|
|
|
|
// Define the paddles properties
|
2010-03-04 10:21:18 +08:00
|
|
|
auto AITimer = new PerformanceCounter();
|
|
|
|
const long AITime = 100; // 100 ms
|
2010-01-14 06:31:17 +08:00
|
|
|
float LeftPaddleSpeed = 400.f;
|
|
|
|
float RightPaddleSpeed = 400.f;
|
|
|
|
|
|
|
|
// Define the ball properties
|
|
|
|
float BallSpeed = 400.f;
|
|
|
|
float BallAngle = 0.f;
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// Make sure the ball initial angle is not too much vertical
|
2010-03-04 10:21:18 +08:00
|
|
|
BallAngle = uniform(0.f, 2 * PI);
|
2010-01-14 06:31:17 +08:00
|
|
|
} while (abs(cos(BallAngle)) < 0.7f);
|
2009-01-29 00:18:34 +08:00
|
|
|
|
|
|
|
bool IsPlaying = true;
|
|
|
|
|
|
|
|
Event evt;
|
2010-03-04 10:21:18 +08:00
|
|
|
uint iFps = 0;
|
|
|
|
auto fpsClock = new PerformanceCounter();
|
2010-01-14 06:31:17 +08:00
|
|
|
while (app.isOpened())
|
|
|
|
{
|
|
|
|
app.clear(Color(255, 255, 255, 255));
|
|
|
|
// Handle events
|
|
|
|
|
|
|
|
while (app.getEvent(evt))
|
|
|
|
{
|
|
|
|
// Window closed or escape key pressed : exit
|
|
|
|
if ((evt.Type == EventType.Closed) ||
|
|
|
|
((evt.Type == EventType.KeyPressed) && (evt.Key.Code == KeyCode.Escape)))
|
|
|
|
{
|
|
|
|
app.close();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IsPlaying)
|
2009-01-29 00:18:34 +08:00
|
|
|
{
|
|
|
|
// Move the player's paddle
|
2010-01-14 06:31:17 +08:00
|
|
|
if (i.isKeyDown(KeyCode.Up) && (LeftPaddle.getPosition().y > 5.f))
|
2009-01-29 00:18:34 +08:00
|
|
|
LeftPaddle.move(0.f, -LeftPaddleSpeed * app.getFrameTime());
|
2010-01-14 06:31:17 +08:00
|
|
|
if (i.isKeyDown(KeyCode.Down) && (LeftPaddle.getPosition().y < app.getView().getHeight() - LeftPaddle.getSize().y - 5.f))
|
2009-01-29 00:18:34 +08:00
|
|
|
LeftPaddle.move(0.f, LeftPaddleSpeed * app.getFrameTime());
|
2010-01-14 06:31:17 +08:00
|
|
|
|
2009-01-29 00:18:34 +08:00
|
|
|
// Move the computer's paddle
|
2010-01-14 06:31:17 +08:00
|
|
|
if (((RightPaddleSpeed < 0.f) && (RightPaddle.getPosition().y > 5.f)) ||
|
|
|
|
((RightPaddleSpeed > 0.f) && (RightPaddle.getPosition().y < app.getView().getHeight() - RightPaddle.getSize().y - 5.f)))
|
|
|
|
{
|
|
|
|
RightPaddle.move(0.f, RightPaddleSpeed * app.getFrameTime());
|
|
|
|
}
|
2009-01-29 00:18:34 +08:00
|
|
|
|
2010-01-14 06:31:17 +08:00
|
|
|
// Update the computer's paddle direction according to the ball position
|
2010-03-04 10:21:18 +08:00
|
|
|
AITimer.stop();
|
|
|
|
if (AITimer.milliseconds > AITime)
|
2010-01-14 06:31:17 +08:00
|
|
|
{
|
2010-03-04 10:21:18 +08:00
|
|
|
AITimer.start();
|
2010-01-14 06:31:17 +08:00
|
|
|
if ((RightPaddleSpeed < 0) && (Ball.getPosition().y + Ball.getSize().y > RightPaddle.getPosition().y + RightPaddle.getSize().y))
|
|
|
|
RightPaddleSpeed = -RightPaddleSpeed;
|
|
|
|
if ((RightPaddleSpeed > 0) && (Ball.getPosition().y < RightPaddle.getPosition().y))
|
|
|
|
RightPaddleSpeed = -RightPaddleSpeed;
|
|
|
|
}
|
2009-01-29 00:18:34 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Move the ball
|
|
|
|
float Factor = BallSpeed * app.getFrameTime();
|
2010-01-14 06:31:17 +08:00
|
|
|
Ball.move(cos(BallAngle) * Factor, sin(BallAngle) * Factor);
|
2009-01-29 00:18:34 +08:00
|
|
|
|
|
|
|
// Check collisions between the ball and the screen
|
|
|
|
if (Ball.getPosition().x < 0.f)
|
|
|
|
{
|
|
|
|
IsPlaying = false;
|
2010-01-14 06:31:17 +08:00
|
|
|
End.setString("You lost !\n(press escape to exit)"c);
|
2009-01-29 00:18:34 +08:00
|
|
|
}
|
|
|
|
|
2010-01-14 06:31:17 +08:00
|
|
|
if (Ball.getPosition().x + Ball.getSize().x > app.getView().getWidth())
|
2009-01-29 00:18:34 +08:00
|
|
|
{
|
|
|
|
IsPlaying = false;
|
2010-01-14 06:31:17 +08:00
|
|
|
End.setString("You won !\n(press escape to exit)"c);
|
2009-01-29 00:18:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Ball.getPosition().y < 0.f)
|
|
|
|
{
|
|
|
|
BallSound.play();
|
|
|
|
BallAngle = -BallAngle;
|
|
|
|
Ball.setY(0.1f);
|
|
|
|
}
|
|
|
|
|
2010-01-14 06:31:17 +08:00
|
|
|
if (Ball.getPosition().y + Ball.getSize().y > app.getView().getHeight())
|
2009-01-29 00:18:34 +08:00
|
|
|
{
|
|
|
|
BallSound.play();
|
|
|
|
BallAngle = -BallAngle;
|
2010-01-14 06:31:17 +08:00
|
|
|
Ball.setY(app.getView().getHeight() - Ball.getSize().y - 0.1f);
|
2009-01-29 00:18:34 +08:00
|
|
|
}
|
|
|
|
// Check the collisions between the ball and the paddles
|
|
|
|
// Left Paddle
|
|
|
|
if (Ball.getPosition().x < LeftPaddle.getPosition().x + LeftPaddle.getSize().x &&
|
|
|
|
Ball.getPosition().x > LeftPaddle.getPosition().x + (LeftPaddle.getSize().x / 2.0f) &&
|
|
|
|
Ball.getPosition().y + Ball.getSize().y >= LeftPaddle.getPosition().y &&
|
|
|
|
Ball.getPosition().y <= LeftPaddle.getPosition().y + LeftPaddle.getSize().y)
|
|
|
|
{
|
|
|
|
BallSound.play();
|
|
|
|
BallAngle = PI - BallAngle;
|
|
|
|
Ball.setX(LeftPaddle.getPosition().x + LeftPaddle.getSize().x + 0.1f);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Right Paddle
|
|
|
|
if (Ball.getPosition().x + Ball.getSize().x > RightPaddle.getPosition().x &&
|
|
|
|
Ball.getPosition().x + Ball.getSize().x < RightPaddle.getPosition().x + (RightPaddle.getSize().x / 2.0f) &&
|
|
|
|
Ball.getPosition().y + Ball.getSize().y >= RightPaddle.getPosition().y &&
|
|
|
|
Ball.getPosition().y <= RightPaddle.getPosition().y + RightPaddle.getSize().y)
|
|
|
|
{
|
|
|
|
BallSound.play();
|
|
|
|
BallAngle = PI - BallAngle;
|
|
|
|
Ball.setX(RightPaddle.getPosition().x - Ball.getSize().x - 0.1f);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-14 06:31:17 +08:00
|
|
|
// Draw the background, paddles and ball sprites
|
2009-01-29 00:18:34 +08:00
|
|
|
|
2010-01-14 06:31:17 +08:00
|
|
|
app.draw(LeftPaddle);
|
|
|
|
app.draw(RightPaddle);
|
|
|
|
app.draw(Ball);
|
2009-01-29 00:18:34 +08:00
|
|
|
|
2010-03-04 10:21:18 +08:00
|
|
|
fpsClock.stop();
|
|
|
|
if(fpsClock.seconds >= 1)
|
|
|
|
{
|
|
|
|
fps.setString(std.string.format("%d fps", iFps));
|
|
|
|
iFps = 0;
|
|
|
|
fpsClock.start();
|
|
|
|
}
|
|
|
|
++iFps;
|
|
|
|
app.draw(fps);
|
2010-01-14 06:31:17 +08:00
|
|
|
// If the game is over, display the end message
|
|
|
|
if (!IsPlaying)
|
|
|
|
app.draw(End);
|
2009-01-29 00:18:34 +08:00
|
|
|
|
2010-01-14 06:31:17 +08:00
|
|
|
// Display things on screen
|
|
|
|
app.display();
|
|
|
|
}
|
2009-01-29 00:18:34 +08:00
|
|
|
}
|