Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: New to SFML, creating my own game and guidelines needed!  (Read 13081 times)

0 Members and 1 Guest are viewing this topic.

samm3

  • Newbie
  • *
  • Posts: 8
    • View Profile
New to SFML, creating my own game and guidelines needed!
« on: December 04, 2015, 10:29:41 pm »
Hey,

as the title says I'm new to SFML and fairly new to C++ aswell. I'm making Memory card game as my final project in the C++ course I'm studying  but are currently stuck on the "game" part. What I need is some guidelines to continue :)

The game should be like this:
Create a game where you draw out 16 cards. When the game starts, 2 cards should be randomized and displayed. The cards are shown for one second, one after another. The player should click on which cards he saw, in order, and if he's correct the next round is started with 3 cards and so on. The total amount of cards that the player has found should be displayed.

Here's my project so far:
#include "SFML/Graphics.hpp"
#include <iostream>
#include "Meny.h";

int main() {
        const int bredd = 640;
        const int höjd = 480;
        sf::RenderWindow fönster(sf::VideoMode(bredd, höjd), "Kortspel!");

        Meny meny(bredd, höjd);

        bool gameStart = false;

        while (fönster.isOpen()) {
                sf::Event event;
                fönster.clear();

                while (fönster.pollEvent(event)) {
                        if (gameStart) {
                                std::cout << "It works!";
                        }

                        else {
                                switch (event.type) {
                                case sf::Event::KeyPressed:
                                        switch (event.key.code) {
                                        case sf::Keyboard::Return:
                                                gameStart = true;
                                                break;

                                        case sf::Keyboard::Escape:
                                                fönster.close();
                                                break;
                                        }
                                        break;

                                case sf::Event::Closed:
                                        fönster.close();
                                        break;
                                }
                        }
                }
               
                meny.Rita(fönster);
                fönster.display();
        }
}

#pragma once
#include "SFML/Graphics.hpp"

class Meny {

private:
        sf::Font typsnitt;
        sf::Text meny1, meny2;

public:
        Meny(float bredd, float höjd);
        ~Meny();

        void Rita(sf::RenderWindow &fönster);
};

#include "Meny.h"


Meny::Meny(float bredd, float höjd) {
        if (!typsnitt.loadFromFile("resurser/ARCADECLASSIC.TTF")) {
                // ta hand om error
        }

        meny1.setFont(typsnitt);
        meny1.setCharacterSize(80);
        meny1.setColor(sf::Color::Green);
        meny1.setString("Memory");
        meny1.setPosition(bredd / 2 - meny1.getGlobalBounds().width / 2, 100);

        meny2.setFont(typsnitt);
        meny2.setCharacterSize(30);
        meny2.setColor(sf::Color::Green);
        meny2.setString("Press ENTER to play");
        meny2.setPosition(bredd / 2 - meny2.getGlobalBounds().width / 2, 275);

}

Meny::~Meny() {}

void Meny::Rita(sf::RenderWindow &fönster) {
                fönster.draw(meny1);
                fönster.draw(meny2);
}

My questions/wonderings are:
I will create a class for the cards that can be used for both the backside of the cards and showing the front. How do I create that in a simple way for my project? Do I need to keep track of the x and y coordinates of every card? I plan to use vectors and random_shuffle in some sort of way to randomize the cards. I came across this https://github.com/SFML/SFML/wiki/Tutorial:-Image-Manager image manager but it feels like it's a bit too complicated for my project.

Also, how do I keep track of which card I've clicked on?

Well, as you can see the questions just build up, there's no end. How would you create my game? I appreciate all help!




« Last Edit: December 04, 2015, 10:31:57 pm by samm3 »

GraphicsWhale

  • Full Member
  • ***
  • Posts: 131
    • View Profile
Re: New to SFML, creating my own game and guidelines needed!
« Reply #1 on: December 05, 2015, 02:00:51 am »
I will create a class for the cards that can be used for both the backside of the cards and showing the front. How do I create that in a simple way for my project?

You could just use a bool or an enum to keep track if it's up or down facing.

Do I need to keep track of the x and y coordinates of every card?

That really depends. Can the cards be located anywhere, or only in fixed locations? It's entirely reasonable to just keep your cards in some sort of container and have the graphics code deduce where they should be drawn and your input code to deduce which one you've clicked on. Or you could store the position in the cards. Whichever works best for you.

Also, how do I keep track of which card I've clicked on?

There's no one way to do this. You could use pointers, integer handles, etc. I'd really need to see how your cards are implemented to make any helpful suggestions.

Also, please use English in your code. There are a lot of programmers that speak English as a secondary language, but only use English in their code. Why? Because reasons. That and if everybody used their native languages, nobody would be able to read each others code.

Tigre Pablito

  • Full Member
  • ***
  • Posts: 225
    • View Profile
    • Email
Re: New to SFML, creating my own game and guidelines needed!
« Reply #2 on: December 05, 2015, 09:19:18 pm »
Hi Samm

I can do a basic sample app of what you explained, but in C#. I hope someone can translate it to C++ for you.

I didn´t understand this: there are 16 cards; You are shown by a second 2 of them; then 3; and so on;

But if you add:  2 + 3 + 4 + 5 (+ 6) the sum is not 16 anyway

Could you tell me how many different types of cards are there, and how many cards are there of each type?

By now i'll start doing the app with it showing 2 cards a time (as i remember this game was as it), and when you clear out the issue, then i (or maybe you) would change the code

Suppose we have a 4x4 matrix with the cards (from cards[0, 0] to cards[3, 3]), we could know which one is clicked using:

Vector2i position = Mouse.GetPosition();
int xPos = (position.X - playBox.Position.X) / (playBox.Size.X / 4);
int yPos = (position.Y - playBox.Position.Y) / (playBox.Size.Y / 4);

where 'playBox' is, i.e. a RectangleShape object (square) that contains the cards as a 4x4 grx matrix, and cards is a Card objects bidimensional array.
then you can access the selected card by:  cards[xPos, yPos] 

Please correct the issues that should be another way.

Pablo
Bs As - Argentina
 

Tigre Pablito

  • Full Member
  • ***
  • Posts: 225
    • View Profile
    • Email
Re: New to SFML, creating my own game and guidelines needed!
« Reply #3 on: December 07, 2015, 10:43:10 pm »
Hi

Here is what i did, i'm afraid it's not exactly what you asked for, plus i haven't understood well what it was.  :-\

https://www.dropbox.com/s/ynkt0hkpu8s9opm/MemoCards.rar?dl=0

there is a "square" with 16 cards, 8 pairs of twin. They are shown by 4 secs then hidden. Then you have to click one and then the twin. And then the same again. You have 3 lives. I couldn't win by now.  :P

if your system is 32 bit, then you should change the DLLs in the folder where the .exe is and int the project References node.  ;)

i hope some nice member, Lady or Guy, can translate this (that is in C#) to C++ for you.  ;D

also if you could explain me what is exactly what you want, i would try to modify the code to that.  :)

Pablo
Bs As - Argentina

samm3

  • Newbie
  • *
  • Posts: 8
    • View Profile
Re: New to SFML, creating my own game and guidelines needed!
« Reply #4 on: December 12, 2015, 02:11:55 am »
Hey man, sorry for not answering! ;/ I totally forgot about the thread as I went straight to action, creating the game on my own after the first reply :) Here's the result so far, https://www.dropbox.com/s/kmrf5b90b9wwjjf/Nostalgitripp.rar?dl=0

I'm almost done with the game, there's still some left.

This is what's left:
  • Show all cards clicked on while playing. Right now they're disappearing one after another.
  • Add a text that displays which round it is.
  • Add an end, so if you manage to beat all levels, you have to possibility to start over.
  • Fix a start delay of each round so the first card isn't shown instantly.
  • Make a "flawless" gameplay with no bugs and logic errors.

You'll get the "what's left" list and how the game is supposed to be when you run my game. Right now there's a pretty big bug that gets you stuck while playing the game if you click the cards too fast (I think?) or if you're just unlucky clicking in the wrong "cycle"? I don't really know what's causing it as I've tried to play through the rounds slowly but even that doesn't help if you click the cards irregurarly. I'm pretty sure it's a logic error as I'm still pretty new to coding and even if it works partually it's not the most optimal way to do it in :D

To finish off, thanks for helping me, appreciate it a lot!

EDIT: Fixed a text which displays which round it is and an end so you can start over + a little bit of clean up in the project.
« Last Edit: December 12, 2015, 03:21:46 am by samm3 »

Mortal

  • Sr. Member
  • ****
  • Posts: 284
    • View Profile
Re: New to SFML, creating my own game and guidelines needed!
« Reply #5 on: December 12, 2015, 10:07:35 am »
it looks cool game, good job

there are few things need to clarify a bit regarding your source code

Randomness
no need to call std::srand every time when you called std::random_shuffle, unless you want to generate a new seed sequence every time which is not necessary here.
better you declared std::srand at first of your project right after the main().

or if you're interesting on c++11 you can use <random> which is better in seeding and generating randomness.
the easiest  implementation is to define free function for it like this
std::mt19937 rnd()
{
        static std::mt19937 r{ std::random_device{}() };
        return r;
}
and then you can use it else where like so,

std::vector<int> cardOrder(16);
int i = 0;
std::transform(cardOrder.begin(), cardOrder.end(), cardOrder.begin(), [&i](int j) { return j = i++;});
std::shuffle(cardOrder.begin(), cardOrder.end(), rnd());



samm3

  • Newbie
  • *
  • Posts: 8
    • View Profile
Re: New to SFML, creating my own game and guidelines needed!
« Reply #7 on: December 12, 2015, 04:29:56 pm »
it looks cool game, good job

there are few things need to clarify a bit regarding your source code

Randomness
no need to call std::srand every time when you called std::random_shuffle, unless you want to generate a new seed sequence every time which is not necessary here.
better you declared std::srand at first of your project right after the main().

or if you're interesting on c++11 you can use <random> which is better in seeding and generating randomness.
the easiest  implementation is to define free function for it like this
std::mt19937 rnd()
{
        static std::mt19937 r{ std::random_device{}() };
        return r;
}
and then you can use it else where like so,

std::vector<int> cardOrder(16);
int i = 0;
std::transform(cardOrder.begin(), cardOrder.end(), cardOrder.begin(), [&i](int j) { return j = i++;});
std::shuffle(cardOrder.begin(), cardOrder.end(), rnd());

I implemented the mt19937 code but need some things clarified. What's the benefits of using it, specially compared to this http://www.cplusplus.com/reference/algorithm/shuffle/? Here's the recent changes https://www.dropbox.com/s/7s7d7s2la0pp0ci/Nostalgitripp.mt19937.rar?dl=0. I'm using the function in both main.cpp and Cards.cpp (void Cards::shuffleDeck). Do you know of a better way to implement it in my code so there's no need to write the function twice?

@Jesper Juhl, awesome, thanks for sharing! =)

Does anyone of you know how to improve my game logic? It "works" but is pretty shitty right now ;/

Mortal

  • Sr. Member
  • ****
  • Posts: 284
    • View Profile
Re: New to SFML, creating my own game and guidelines needed!
« Reply #8 on: December 12, 2015, 05:41:02 pm »
I implemented the mt19937 code but need some things clarified. What's the benefits of using it, specially compared to this http://www.cplusplus.com/reference/algorithm/shuffle/?
Jesper Juhl provided awesome links regarding the benefits of using std::mt19937 over std::srand for seeding. here again link to Stefan T. Lavavej speech


for comparison to cplusplus example i think we both need expert like Stefan T. Lavavej to tell us the differences :-\

Here's the recent changes https://www.dropbox.com/s/7s7d7s2la0pp0ci/Nostalgitripp.mt19937.rar?dl=0. I'm using the function in both main.cpp and Cards.cpp (void Cards::shuffleDeck). Do you know of a better way to implement it in my code so there's no need to write the function twice?

yes
mostly this function is called utility function so, it is better to make a new .h .cpp files for it like this:

Utility.hpp
#include <random>

namespace utility
{
        std::mt19937 random();
}

and in Utility.cpp
#include "Utility.hpp"

std::mt19937 utility::random()
{
        std::mt19937 r{ std::random_device{}() };
        return r;
}

usage is simply like this
std::shuffle(cardOrder.begin(), cardOrder.end(), utility::random());

samm3

  • Newbie
  • *
  • Posts: 8
    • View Profile
Re: New to SFML, creating my own game and guidelines needed!
« Reply #9 on: December 12, 2015, 06:39:43 pm »
Quote
yes
mostly this function is called utility function so, it is better to make a new .h .cpp files for it like this:

Utility.hpp
#include <random>

namespace utility
{
        std::mt19937 random();
}

and in Utility.cpp
#include "Utility.hpp"

std::mt19937 utility::random()
{
        std::mt19937 r{ std::random_device{}() };
        return r;
}

usage is simply like this
std::shuffle(cardOrder.begin(), cardOrder.end(), utility::random());

Ah, I tried to do it that way actually but I only used a header file, which might explain the errors I got :D Figured out, instead of creating a utility function for the std::mt19937 I created one for shuffling vectors instead. Less code so it doesn't look so messy :)

Tigre Pablito

  • Full Member
  • ***
  • Posts: 225
    • View Profile
    • Email
Re: New to SFML, creating my own game and guidelines needed!
« Reply #10 on: December 12, 2015, 08:57:46 pm »
hello Ladies and Guys

I tried to run Samm's app i downloaded, and after having it asked me for MSVCP140D.dll and MSVCP140.dll and i have downloaded and put them with the exe file, the dialogbox i attached was shown.

Another thing i would appreciate if someone could tell me is how to start C++ IDE. I already downloaded C++ .Net and could not start the environment. There is no shortcut anywhere. I would like to try to run the app from the IDE and perhaps i find what's failing.

Thanks
Pablo


samm3

  • Newbie
  • *
  • Posts: 8
    • View Profile
Re: New to SFML, creating my own game and guidelines needed!
« Reply #11 on: December 12, 2015, 10:03:07 pm »
hello Ladies and Guys

I tried to run Samm's app i downloaded, and after having it asked me for MSVCP140D.dll and MSVCP140.dll and i have downloaded and put them with the exe file, the dialogbox i attached was shown.

Another thing i would appreciate if someone could tell me is how to start C++ IDE. I already downloaded C++ .Net and could not start the environment. There is no shortcut anywhere. I would like to try to run the app from the IDE and perhaps i find what's failing.

Thanks
Pablo

I also had the same problem when trying to run it on the computers in school, which had Visual Studio 2010 C++. Try downloading Visual Studio 2015, might solve the problem :)

Also, I've made some changes. In this link https://www.dropbox.com/s/hmqhj89dih6p5wu/Nostalgitripp.help.rar?dl=0 you'll find my progress so far. I've implemented a new "randomizer" + a new logic when clicking on the cards and displaying the clicked cards, so there's some new problems now. If you want to look at the logic I used before they're in the previous links :)

Hapax

  • Hero Member
  • *****
  • Posts: 3364
  • My number of posts is shown in hexadecimal.
    • View Profile
    • Links
Selba Ward -SFML drawables
Cheese Map -Drawable Layered Tile Map
Kairos -Timing Library
Grambol
 *Hapaxia Links*

Mortal

  • Sr. Member
  • ****
  • Posts: 284
    • View Profile
Re: New to SFML, creating my own game and guidelines needed!
« Reply #13 on: December 12, 2015, 10:44:10 pm »
since you defined  shuffleVector() as free function in utility header file then no need for old std::mt19937 random(). you can declare random in shuffleVector() like this:

void utilities::shuffleVector(std::vector<int> &shuffle) {
        int i = 0;
        std::transform(shuffle.begin(), shuffle.end(), shuffle.begin(), [&i](int j) { return j = i++; });
        std::mt19937 random{ std::random_device{}() };
        std::shuffle(shuffle.begin(), shuffle.end(), random); // <-- note no ()
}

dabbertorres

  • Hero Member
  • *****
  • Posts: 506
    • View Profile
    • website/blog
Re: New to SFML, creating my own game and guidelines needed!
« Reply #14 on: December 12, 2015, 11:10:33 pm »
That would create/destroy an std::mt19937 every time that function is called though. Which isn't a very good idea, it's not small by any means. And recreating it generally loses the whole point of randomness.

An explanation: http://www.elbeno.com/blog/?p=1325

 

anything