2014-09-30 22:07:25 +08:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
// Headers
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
#include <SFML/Graphics.hpp>
|
|
|
|
#include <SFML/Audio.hpp>
|
|
|
|
#include <cmath>
|
|
|
|
#include <ctime>
|
|
|
|
#include <cstdlib>
|
|
|
|
|
2018-04-13 02:39:55 +08:00
|
|
|
#ifdef SFML_SYSTEM_IOS
|
|
|
|
#include <SFML/Main.hpp>
|
|
|
|
#endif
|
|
|
|
|
2022-01-10 06:47:04 +08:00
|
|
|
std::filesystem::path resourcesDir()
|
2018-04-13 02:39:55 +08:00
|
|
|
{
|
|
|
|
#ifdef SFML_SYSTEM_IOS
|
|
|
|
return "";
|
|
|
|
#else
|
|
|
|
return "resources/";
|
|
|
|
#endif
|
|
|
|
}
|
2014-09-30 22:07:25 +08:00
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
/// Entry point of application
|
|
|
|
///
|
|
|
|
/// \return Application exit code
|
|
|
|
///
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
int main()
|
|
|
|
{
|
2021-12-03 22:45:32 +08:00
|
|
|
std::srand(static_cast<unsigned int>(std::time(nullptr)));
|
2014-09-30 22:07:25 +08:00
|
|
|
|
|
|
|
// Define some constants
|
2021-11-19 09:15:57 +08:00
|
|
|
const float gameWidth = 800;
|
|
|
|
const float gameHeight = 600;
|
2014-09-30 22:07:25 +08:00
|
|
|
sf::Vector2f paddleSize(25, 100);
|
|
|
|
float ballRadius = 10.f;
|
|
|
|
|
|
|
|
// Create the window of the application
|
2021-11-19 09:15:57 +08:00
|
|
|
sf::RenderWindow window(sf::VideoMode(static_cast<unsigned int>(gameWidth), static_cast<unsigned int>(gameHeight), 32), "SFML Tennis",
|
2014-11-17 16:44:46 +08:00
|
|
|
sf::Style::Titlebar | sf::Style::Close);
|
2014-09-30 22:07:25 +08:00
|
|
|
window.setVerticalSyncEnabled(true);
|
|
|
|
|
|
|
|
// Load the sounds used in the game
|
|
|
|
sf::SoundBuffer ballSoundBuffer;
|
2022-01-10 06:47:04 +08:00
|
|
|
if (!ballSoundBuffer.loadFromFile(resourcesDir() / "ball.wav"))
|
2014-09-30 22:07:25 +08:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
sf::Sound ballSound(ballSoundBuffer);
|
|
|
|
|
2020-12-13 04:40:52 +08:00
|
|
|
// Create the SFML logo texture:
|
|
|
|
sf::Texture sfmlLogoTexture;
|
2022-01-10 06:47:04 +08:00
|
|
|
if(!sfmlLogoTexture.loadFromFile(resourcesDir() / "sfml_logo.png"))
|
2020-12-13 04:40:52 +08:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
sf::Sprite sfmlLogo;
|
|
|
|
sfmlLogo.setTexture(sfmlLogoTexture);
|
2021-12-15 17:29:34 +08:00
|
|
|
sfmlLogo.setPosition({170.f, 50.f});
|
2020-12-13 04:40:52 +08:00
|
|
|
|
2014-09-30 22:07:25 +08:00
|
|
|
// Create the left paddle
|
|
|
|
sf::RectangleShape leftPaddle;
|
|
|
|
leftPaddle.setSize(paddleSize - sf::Vector2f(3, 3));
|
|
|
|
leftPaddle.setOutlineThickness(3);
|
|
|
|
leftPaddle.setOutlineColor(sf::Color::Black);
|
|
|
|
leftPaddle.setFillColor(sf::Color(100, 100, 200));
|
|
|
|
leftPaddle.setOrigin(paddleSize / 2.f);
|
|
|
|
|
|
|
|
// Create the right paddle
|
|
|
|
sf::RectangleShape rightPaddle;
|
|
|
|
rightPaddle.setSize(paddleSize - sf::Vector2f(3, 3));
|
|
|
|
rightPaddle.setOutlineThickness(3);
|
|
|
|
rightPaddle.setOutlineColor(sf::Color::Black);
|
|
|
|
rightPaddle.setFillColor(sf::Color(200, 100, 100));
|
|
|
|
rightPaddle.setOrigin(paddleSize / 2.f);
|
|
|
|
|
|
|
|
// Create the ball
|
|
|
|
sf::CircleShape ball;
|
|
|
|
ball.setRadius(ballRadius - 3);
|
2020-12-13 04:40:52 +08:00
|
|
|
ball.setOutlineThickness(2);
|
2014-09-30 22:07:25 +08:00
|
|
|
ball.setOutlineColor(sf::Color::Black);
|
|
|
|
ball.setFillColor(sf::Color::White);
|
2021-12-15 17:29:34 +08:00
|
|
|
ball.setOrigin({ballRadius / 2.f, ballRadius / 2.f});
|
2014-09-30 22:07:25 +08:00
|
|
|
|
|
|
|
// Load the text font
|
|
|
|
sf::Font font;
|
2022-01-10 06:47:04 +08:00
|
|
|
if (!font.loadFromFile(resourcesDir() / "tuffy.ttf"))
|
2014-09-30 22:07:25 +08:00
|
|
|
return EXIT_FAILURE;
|
|
|
|
|
|
|
|
// Initialize the pause message
|
|
|
|
sf::Text pauseMessage;
|
|
|
|
pauseMessage.setFont(font);
|
|
|
|
pauseMessage.setCharacterSize(40);
|
2021-12-15 17:29:34 +08:00
|
|
|
pauseMessage.setPosition({170.f, 200.f});
|
2015-12-29 21:14:43 +08:00
|
|
|
pauseMessage.setFillColor(sf::Color::White);
|
2020-12-13 04:40:52 +08:00
|
|
|
|
2019-01-18 23:04:03 +08:00
|
|
|
#ifdef SFML_SYSTEM_IOS
|
2020-12-13 04:40:52 +08:00
|
|
|
pauseMessage.setString("Welcome to SFML Tennis!\nTouch the screen to start the game.");
|
2019-01-18 23:04:03 +08:00
|
|
|
#else
|
2020-12-13 04:40:52 +08:00
|
|
|
pauseMessage.setString("Welcome to SFML Tennis!\n\nPress space to start the game.");
|
2019-01-18 23:04:03 +08:00
|
|
|
#endif
|
2014-09-30 22:07:25 +08:00
|
|
|
|
|
|
|
// Define the paddles properties
|
|
|
|
sf::Clock AITimer;
|
|
|
|
const sf::Time AITime = sf::seconds(0.1f);
|
|
|
|
const float paddleSpeed = 400.f;
|
|
|
|
float rightPaddleSpeed = 0.f;
|
|
|
|
const float ballSpeed = 400.f;
|
2022-01-23 09:11:08 +08:00
|
|
|
sf::Angle ballAngle = sf::degrees(0); // to be changed later
|
2014-09-30 22:07:25 +08:00
|
|
|
|
|
|
|
sf::Clock clock;
|
|
|
|
bool isPlaying = false;
|
|
|
|
while (window.isOpen())
|
|
|
|
{
|
|
|
|
// Handle events
|
|
|
|
sf::Event event;
|
|
|
|
while (window.pollEvent(event))
|
|
|
|
{
|
|
|
|
// Window closed or escape key pressed: exit
|
2015-04-01 10:08:23 +08:00
|
|
|
if ((event.type == sf::Event::Closed) ||
|
2014-09-30 22:07:25 +08:00
|
|
|
((event.type == sf::Event::KeyPressed) && (event.key.code == sf::Keyboard::Escape)))
|
|
|
|
{
|
|
|
|
window.close();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Space key pressed: play
|
2018-04-14 01:22:20 +08:00
|
|
|
if (((event.type == sf::Event::KeyPressed) && (event.key.code == sf::Keyboard::Space)) ||
|
|
|
|
(event.type == sf::Event::TouchBegan))
|
2014-09-30 22:07:25 +08:00
|
|
|
{
|
|
|
|
if (!isPlaying)
|
|
|
|
{
|
|
|
|
// (re)start the game
|
|
|
|
isPlaying = true;
|
|
|
|
clock.restart();
|
|
|
|
|
|
|
|
// Reset the position of the paddles and ball
|
2021-12-15 17:29:34 +08:00
|
|
|
leftPaddle.setPosition({10.f + paddleSize.x / 2.f, gameHeight / 2.f});
|
|
|
|
rightPaddle.setPosition({gameWidth - 10.f - paddleSize.x / 2.f, gameHeight / 2.f});
|
|
|
|
ball.setPosition({gameWidth / 2.f, gameHeight / 2.f});
|
2014-09-30 22:07:25 +08:00
|
|
|
|
|
|
|
// Reset the ball angle
|
|
|
|
do
|
|
|
|
{
|
|
|
|
// Make sure the ball initial angle is not too much vertical
|
2022-01-23 09:11:08 +08:00
|
|
|
ballAngle = sf::degrees(static_cast<float>(std::rand() % 360));
|
2014-09-30 22:07:25 +08:00
|
|
|
}
|
2022-01-23 09:11:08 +08:00
|
|
|
while (std::abs(std::cos(ballAngle.asRadians())) < 0.7f);
|
2014-09-30 22:07:25 +08:00
|
|
|
}
|
|
|
|
}
|
2021-11-19 09:15:57 +08:00
|
|
|
|
2019-01-18 23:04:03 +08:00
|
|
|
// Window size changed, adjust view appropriately
|
|
|
|
if (event.type == sf::Event::Resized)
|
|
|
|
{
|
|
|
|
sf::View view;
|
|
|
|
view.setSize(gameWidth, gameHeight);
|
2021-12-15 17:29:34 +08:00
|
|
|
view.setCenter({gameWidth / 2.f, gameHeight / 2.f});
|
2019-01-18 23:04:03 +08:00
|
|
|
window.setView(view);
|
|
|
|
}
|
2014-09-30 22:07:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isPlaying)
|
|
|
|
{
|
|
|
|
float deltaTime = clock.restart().asSeconds();
|
|
|
|
|
|
|
|
// Move the player's paddle
|
|
|
|
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Up) &&
|
|
|
|
(leftPaddle.getPosition().y - paddleSize.y / 2 > 5.f))
|
|
|
|
{
|
2021-12-15 17:29:34 +08:00
|
|
|
leftPaddle.move({0.f, -paddleSpeed * deltaTime});
|
2014-09-30 22:07:25 +08:00
|
|
|
}
|
|
|
|
if (sf::Keyboard::isKeyPressed(sf::Keyboard::Down) &&
|
|
|
|
(leftPaddle.getPosition().y + paddleSize.y / 2 < gameHeight - 5.f))
|
|
|
|
{
|
2021-12-15 17:29:34 +08:00
|
|
|
leftPaddle.move({0.f, paddleSpeed * deltaTime});
|
2014-09-30 22:07:25 +08:00
|
|
|
}
|
2021-11-19 09:15:57 +08:00
|
|
|
|
2018-04-14 01:22:20 +08:00
|
|
|
if (sf::Touch::isDown(0))
|
|
|
|
{
|
2019-01-18 23:04:03 +08:00
|
|
|
sf::Vector2i pos = sf::Touch::getPosition(0);
|
|
|
|
sf::Vector2f mappedPos = window.mapPixelToCoords(pos);
|
2021-12-15 17:29:34 +08:00
|
|
|
leftPaddle.setPosition({leftPaddle.getPosition().x, mappedPos.y});
|
2018-04-14 01:22:20 +08:00
|
|
|
}
|
2014-09-30 22:07:25 +08:00
|
|
|
|
|
|
|
// Move the computer's paddle
|
|
|
|
if (((rightPaddleSpeed < 0.f) && (rightPaddle.getPosition().y - paddleSize.y / 2 > 5.f)) ||
|
|
|
|
((rightPaddleSpeed > 0.f) && (rightPaddle.getPosition().y + paddleSize.y / 2 < gameHeight - 5.f)))
|
|
|
|
{
|
2021-12-15 17:29:34 +08:00
|
|
|
rightPaddle.move({0.f, rightPaddleSpeed * deltaTime});
|
2014-09-30 22:07:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update the computer's paddle direction according to the ball position
|
|
|
|
if (AITimer.getElapsedTime() > AITime)
|
|
|
|
{
|
|
|
|
AITimer.restart();
|
|
|
|
if (ball.getPosition().y + ballRadius > rightPaddle.getPosition().y + paddleSize.y / 2)
|
|
|
|
rightPaddleSpeed = paddleSpeed;
|
|
|
|
else if (ball.getPosition().y - ballRadius < rightPaddle.getPosition().y - paddleSize.y / 2)
|
|
|
|
rightPaddleSpeed = -paddleSpeed;
|
|
|
|
else
|
|
|
|
rightPaddleSpeed = 0.f;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Move the ball
|
|
|
|
float factor = ballSpeed * deltaTime;
|
2022-01-23 09:11:08 +08:00
|
|
|
ball.move({std::cos(ballAngle.asRadians()) * factor, std::sin(ballAngle.asRadians()) * factor});
|
2014-09-30 22:07:25 +08:00
|
|
|
|
2019-01-18 23:04:03 +08:00
|
|
|
#ifdef SFML_SYSTEM_IOS
|
2020-12-13 04:40:52 +08:00
|
|
|
const std::string inputString = "Touch the screen to restart.";
|
2019-01-18 23:04:03 +08:00
|
|
|
#else
|
2020-12-13 04:40:52 +08:00
|
|
|
const std::string inputString = "Press space to restart or\nescape to exit.";
|
2019-01-18 23:04:03 +08:00
|
|
|
#endif
|
2021-11-19 09:15:57 +08:00
|
|
|
|
2014-09-30 22:07:25 +08:00
|
|
|
// Check collisions between the ball and the screen
|
|
|
|
if (ball.getPosition().x - ballRadius < 0.f)
|
|
|
|
{
|
|
|
|
isPlaying = false;
|
2020-12-13 04:40:52 +08:00
|
|
|
pauseMessage.setString("You Lost!\n\n" + inputString);
|
2014-09-30 22:07:25 +08:00
|
|
|
}
|
|
|
|
if (ball.getPosition().x + ballRadius > gameWidth)
|
|
|
|
{
|
|
|
|
isPlaying = false;
|
2020-12-13 04:40:52 +08:00
|
|
|
pauseMessage.setString("You Won!\n\n" + inputString);
|
2014-09-30 22:07:25 +08:00
|
|
|
}
|
|
|
|
if (ball.getPosition().y - ballRadius < 0.f)
|
|
|
|
{
|
|
|
|
ballSound.play();
|
|
|
|
ballAngle = -ballAngle;
|
2021-12-15 17:29:34 +08:00
|
|
|
ball.setPosition({ball.getPosition().x, ballRadius + 0.1f});
|
2014-09-30 22:07:25 +08:00
|
|
|
}
|
|
|
|
if (ball.getPosition().y + ballRadius > gameHeight)
|
|
|
|
{
|
|
|
|
ballSound.play();
|
|
|
|
ballAngle = -ballAngle;
|
2021-12-15 17:29:34 +08:00
|
|
|
ball.setPosition({ball.getPosition().x, gameHeight - ballRadius - 0.1f});
|
2014-09-30 22:07:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check the collisions between the ball and the paddles
|
|
|
|
// Left Paddle
|
2015-04-01 10:08:23 +08:00
|
|
|
if (ball.getPosition().x - ballRadius < leftPaddle.getPosition().x + paddleSize.x / 2 &&
|
2014-09-30 22:07:25 +08:00
|
|
|
ball.getPosition().x - ballRadius > leftPaddle.getPosition().x &&
|
|
|
|
ball.getPosition().y + ballRadius >= leftPaddle.getPosition().y - paddleSize.y / 2 &&
|
|
|
|
ball.getPosition().y - ballRadius <= leftPaddle.getPosition().y + paddleSize.y / 2)
|
|
|
|
{
|
|
|
|
if (ball.getPosition().y > leftPaddle.getPosition().y)
|
2022-01-23 09:11:08 +08:00
|
|
|
ballAngle = sf::degrees(180) - ballAngle + sf::degrees(static_cast<float>(std::rand() % 20));
|
2014-09-30 22:07:25 +08:00
|
|
|
else
|
2022-01-23 09:11:08 +08:00
|
|
|
ballAngle = sf::degrees(180) - ballAngle - sf::degrees(static_cast<float>(std::rand() % 20));
|
2014-09-30 22:07:25 +08:00
|
|
|
|
|
|
|
ballSound.play();
|
2021-12-15 17:29:34 +08:00
|
|
|
ball.setPosition({leftPaddle.getPosition().x + ballRadius + paddleSize.x / 2 + 0.1f, ball.getPosition().y});
|
2014-09-30 22:07:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Right Paddle
|
|
|
|
if (ball.getPosition().x + ballRadius > rightPaddle.getPosition().x - paddleSize.x / 2 &&
|
|
|
|
ball.getPosition().x + ballRadius < rightPaddle.getPosition().x &&
|
|
|
|
ball.getPosition().y + ballRadius >= rightPaddle.getPosition().y - paddleSize.y / 2 &&
|
|
|
|
ball.getPosition().y - ballRadius <= rightPaddle.getPosition().y + paddleSize.y / 2)
|
|
|
|
{
|
|
|
|
if (ball.getPosition().y > rightPaddle.getPosition().y)
|
2022-01-23 09:11:08 +08:00
|
|
|
ballAngle = sf::degrees(180) - ballAngle + sf::degrees(static_cast<float>(std::rand() % 20));
|
2014-09-30 22:07:25 +08:00
|
|
|
else
|
2022-01-23 09:11:08 +08:00
|
|
|
ballAngle = sf::degrees(180) - ballAngle - sf::degrees(static_cast<float>(std::rand() % 20));
|
2014-09-30 22:07:25 +08:00
|
|
|
|
|
|
|
ballSound.play();
|
2021-12-15 17:29:34 +08:00
|
|
|
ball.setPosition({rightPaddle.getPosition().x - ballRadius - paddleSize.x / 2 - 0.1f, ball.getPosition().y});
|
2014-09-30 22:07:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear the window
|
2020-12-13 04:40:52 +08:00
|
|
|
window.clear(sf::Color(50, 50, 50));
|
2014-09-30 22:07:25 +08:00
|
|
|
|
|
|
|
if (isPlaying)
|
|
|
|
{
|
|
|
|
// Draw the paddles and the ball
|
|
|
|
window.draw(leftPaddle);
|
|
|
|
window.draw(rightPaddle);
|
|
|
|
window.draw(ball);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Draw the pause message
|
|
|
|
window.draw(pauseMessage);
|
2020-12-13 04:40:52 +08:00
|
|
|
window.draw(sfmlLogo);
|
2014-09-30 22:07:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Display things on screen
|
|
|
|
window.display();
|
|
|
|
}
|
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|