Bienvenue, Invité. Merci de vous connecter ou de vous inscrire. Avez-vous oublié d'activer ?

Messages récents

Pages: « Précédente 1 ... 5 6 [7] 8 9 10 Suivante »
61
Graphique / Re: Error: Could not load texture
« Dernier message par G. le Juin 21, 2023, 09:53:11 pm »
En général quand t'as plein de caractères étranges dans la console quand tu charges une image, c'est que tu compiles en mode Release en ayant lié la version Debug de SFML, ou à l'inverse compiles en mode Debug avec la version Release de SFML.
A vérifier :p
62
Graphique / Error: Could not load texture
« Dernier message par Lkk le Juin 21, 2023, 01:46:05 pm »
Problème quand j'essaye de charger une texture, voici le passage du code en question :

void Player::initPlayer(float posX, float posY)
{
    if (!m_spriteTexture.loadFromFile("images/player.png")) // problème ici
    {
        std::cout << "Error: Could not load texture" << std::endl;
        return;
    }

    m_player.setTexture(m_spriteTexture);
    m_player.setPosition(sf::Vector2f(posX, posY));
}

J'ai déjà changer le répertoire de projet de travail.

J'utilise Visual Studio 2022 et j'ai également une erreur de débogage

Exception non gérée à 0x504638C4 (vcruntime140.dll) dans SMFL.exe : 0xC0000005 : Violation d'accès lors de la lecture de l'emplacement 0x0B092000.

Et aussi dans la sortie j'ai des caractères étrange :

Failed to load image "õ‗²²²²    Ìf┴± îh2█yîQ█y░ÅáÌG
ıf┌± ê0█yöc█yP^J
P^J
Éıhth_J
h_J
╠f˱ î4Ptî¼Èý8\|    ╦fȱ Ç                                                ┬fݱ îh2█yîQ█y░ŭ˨fµ± îîyG
îyG
    h│G
ê│G
        ­f ± î³/█y,c█yÏ,Ó{D░öp]J
´f­± î,sÎz©z░_J
        µfë± WGL_EXT_pixel_format_packed_float              aé± î╚7█yDV█y░½8]J

Óaø± î╚7█yDV█y(®`J
à
Éa£± ê X X

(il y en a beaucoup plus que ça)
Le problème persiste même quand je lance l'exécutable ou je met bien l'image de mon sprite dans le bon dossier.

Partie de player.cpp

#include "Player.h"
// Fonction d&#39;initialisation

void Player::initVariables()
{
    m_life = 3;
    m_speed = 0.5;
}

void Player::initPlayer(float posX, float posY)
{
    if (!m_spriteTexture.loadFromFile("images/player.png"))
    {
        std::cout << "Error: Could not load texture" << std::endl;
        return;
    }

    m_player.setTexture(m_spriteTexture); .
    m_player.setPosition(sf::Vector2f(posX, posY));
}
// Constructeur

Player::Player(float width, float height)
{
        initVariables();
        initPlayer(width / 2, height / 2);
}


partie de game.cpp
#include "Game.h"

// Fonction d&#39;initialisation
void Game::initVariables()
{
        m_player = nullptr;
        m_window = nullptr;
        m_gameStarted = true;
        m_gameOver = false;
        m_dt = 1.f / 60.f;
}

void Game::initWindow()
{
        m_videoMode.width = 800;
        m_videoMode.height = 600;
        m_window = new sf::RenderWindow(m_videoMode, "Survival & Zombie", sf::Style::Close | sf::Style::Titlebar);
}

void Game::initSprite()
{
        m_player = new Player(m_videoMode.width, m_videoMode.height);
}

// Constructeur & Destructeur

Game::Game()
{
        this->initVariables();
        this->initWindow();
        this->initSprite();
}


J'ai passé beaucoup de temps sur le problème et ça me bloque beaucoup pour mon apprentissage SFML,
Si vous avez besoin de plus d'informations je reste disponible.
63
Projets SFML / Re: [PC & Mobile] GravytX The Gravytoid
« Dernier message par IsDaouda le Juin 07, 2023, 12:45:30 pm »
Salut,
J'espère que vous allez bien!

GravytX The Gravytoid est disponible sur Gamemonetize.com!

Vous pouvez voyager dans l'espace avec GravytX sur votre PC, Smartphone ou Console de jeux (Xbox One, ...)!



Amusez-vous bien et passez une excellente journée!
64
Discussions générales / Re: vala - binding
« Dernier message par natou2000 le Juin 03, 2023, 11:06:08 pm »
J'ai termine le binding vala, il est entierement fonctionnelle, j'ai fais la partie
Graphics, system et Windows.
Il ne manque que la partie audio , elle n'a pas l'air tres longue a porter.

https://gitlab.com/hydrasho/sfml-vala-binding

J'ai fais en sorte que la version SFML soit aussi proche que possible avec la version C++

```vala
using sf;

void main()
{
    var window = new RenderWindow(VideoMode(200, 200), "SFML works!");
    var circle = new CircleShape();
    circle.setFillColor(Color.Green);
    circle.setRadius(100);

    while (window.isOpen())
    {
        Event event;
        while (window.pollEvent(out event))
        {
            if (event.type == EventType.Closed)
                window.close();
        }

        window.clear();
        circle.draw(window);
        window.display();
    }
}
```
65
Projets SFML / Re: [PC & Mobile] GravytX The Gravytoid
« Dernier message par IsDaouda le Mai 22, 2023, 10:39:33 pm »
Salut,
J'espère que vous allez bien!

Voici quelques savoureux screenshots de GravytX The Gravytoid à déguster copieusement et qui vous feront passer une excellente journée!









Lien du jeu:
Version Web (HTML 5)
Version Android
Version PC (Windows, Linux, macOS)

Bon début de semaine!
66
Général / Re: VS Code on linux
« Dernier message par JaydenSanderson le Mai 17, 2023, 02:22:11 pm »
Hello,

Sure, I'd be happy to help you set up SFML on VS Code in Linux. Here's a step-by-step guide:

Open your terminal in VS Code.
Install the necessary SFML libraries by running the command: sudo apt-get install libsfml-dev.
Create a new C++ project or open an existing one in VS Code.
Configure the build tasks for your project by creating a tasks.json file in the .vscode directory. You can refer to the SFML documentation or online resources for specific configuration details.
Set up the necessary include paths and linker options in your project's c_cpp_properties.json file. Again, you can find specific instructions in the SFML documentation.
Write your SFML code in a C++ source file (e.g., main.cpp).
Build and run your SFML project using the VS Code task runner or by executing the appropriate commands in the terminal.
Feel free to ask if you have any further questions or need more assistance along the way. Good luck with your SFML development!

Best regards,
67
Général / Re: Problème de compilation sous Xcode
« Dernier message par JaydenSanderson le Mai 17, 2023, 02:21:08 pm »
Hello,

I see that you're experiencing a "Command CodeSign failed with a nonzero exit code" error while compiling your C++ and SFML projects in Xcode. You've already tried some solutions from Stack Overflow, such as deleting the DerivedData folder and reconnecting your session in the Keychain Access, but the issue persists.

If anyone has any ideas or suggestions to help resolve this problem, please share.

Thanks.
68
Général / Re: dylib et framework
« Dernier message par JaydenSanderson le Mai 17, 2023, 02:20:34 pm »
Based on the paragraph you mentioned, it explains that SFML is available in two formats on macOS: dylib libraries and framework bundles. Dylib is similar to dynamic libraries (.so) on Linux, while frameworks can include external resources.

The important difference to note is that if you compile SFML yourself, you can create both release and debug dylibs. However, frameworks are only available in release version. This shouldn't be a problem because it's recommended to use the release version of SFML when distributing your application to end users.

So, in Xcode, you should choose the release version for compiling your programs using SFML.

I hope this clarifies it for you. If you have any further questions, feel free to ask!

Best regards.





69
Général / Re: SFML not found package
« Dernier message par JaydenSanderson le Mai 17, 2023, 02:19:36 pm »
Hello everyone,

I see that you're having an issue with compiling a project using SFML on a Raspberry Pi 3. You followed the tutorial mentioned in your post, cloned the repository, and followed the instructions, but CMake is unable to find the package. However, it seems to find the SFML libraries correctly with -lsfml-graphics, etc.

In this case, I would suggest checking the following:

Ensure that you have all the necessary dependencies installed for SFML on your Raspberry Pi.
Double-check that the cloned SFML repository is in the correct location and accessible by CMake.
Verify that you set the CMAKE_MODULE_PATH and SFML_DIR variables correctly, as mentioned in the tutorial.
If you've already confirmed these steps, it might be helpful to provide more details or any error messages you're encountering, so that the community can assist you further.

Best of luck with your project!
70
Général / Re: Problème configuration SFML sur Visual Studio Code
« Dernier message par JaydenSanderson le Mai 17, 2023, 02:18:47 pm »
It's great to hear that you're trying out SFML for the first time. Based on the code and commands you provided, it seems like you've followed the correct steps for compiling and running the SFML application.

However, if nothing happens when you execute the "./sfml-app" command, there might be a few potential issues to consider:

Double-check that you have correctly set the "<installation-de-sfml>" placeholder in the compilation and library paths to the actual path where SFML is installed on your system.

Make sure you have all the necessary SFML dependencies installed on your machine. SFML requires certain libraries to function properly, so ensure that they are correctly installed.

Verify that you have the appropriate versions of the SFML libraries for your system architecture (in your case, 64-bit). Mismatched library versions can cause issues.

Check for any error messages or warnings during the compilation process. Even if the application compiles successfully, there may be runtime errors that prevent it from running correctly.

I hope these suggestions help you troubleshoot the issue. If the problem persists, please provide any error messages or additional details for further assistance. Good luck with your SFML project!
Pages: « Précédente 1 ... 5 6 [7] 8 9 10 Suivante »
anything