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

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - coolian

Pages: [1]
1
General discussions / How do i use SFML with microsoft live share?
« on: September 11, 2021, 04:52:59 pm »
When i am in a live share session and start the debugger it will start the live share console on all users devices however it wont share or create a RenderWindow for other users, and if other users start the debugging process it still will only create a window for me. I need it to create a window for all of the participants.

2
General / How do i get pySFML?
« on: June 27, 2020, 09:15:27 pm »
using pip install pySFML in terminal gives me this: ERROR: Could not find a version that satisfies the requirement pySFML (from versions: none)
ERROR: No matching distribution found for pySFML

so how do i get pysfml

3
General / opengl what to use instead of glbindbuffer
« on: February 22, 2019, 11:32:45 pm »
what to use instead of glBindBuffer and GL_ARRAY_BUFFER and glBufferData and likely some other functions as well

4
General / sfml collision with textures
« on: February 15, 2019, 10:44:29 pm »
so my problem is i have a tilemap which loades the textures from a tile set and i have a player which starts at the corner the player can be moved with wasd and shoot with the left mouse button now if i move the player i can move into walls and i dont want that but if i make the whole tilemap collidable it wont work because only some tiles are walls but since the tilemap is one sprite i cant do anything different so how can i implement collision my source code:https://pastebin.com/MzLFZBfK btw the tilemap and loading the textures and all that works fine i just need collision

5
General / Image wont load
« on: June 30, 2018, 07:25:47 pm »
hello guys :)
i have a problem with well obviously an  sfml project my image wont load but the path should be correct if sfml dosnt do anything with it and the file format is .png and the names are right in code now i want to know why it isnt loading here i ahve some code
/code #include<iostream>
#include<fstream>
#include<string>
#include"SFML\Graphics.hpp"

sf::Texture loadImage(std::string);
sf::Sprite createSprite(sf::Texture,float,float);

int main() {

   sf::RenderWindow renderWindow(sf::VideoMode(640, 480), "menu");

   float pos = 0.0f;
   float pos1 = 0.0f;

   sf::Texture dirt = loadImage("dirt.png");
   sf::Texture grass = loadImage("grass.png");
   sf::Texture player = loadImage("dirt.png");

   sf::Sprite s_player = createSprite(player, pos, pos1);

   sf::Event event;

   while (renderWindow.isOpen()) {
      while (renderWindow.pollEvent(event)) {
         if (event.type == sf::Event::EventType::Closed) {
            renderWindow.close();
         }
      }

      renderWindow.clear(sf::Color::White);
      renderWindow.draw(s_player);
      renderWindow.display();
   }

   return 0;
}

sf::Texture loadImage(std::string fileName) {
   sf::Texture texture;
   if (!texture.loadFromFile(fileName)) {
      std::cout << "failed to load image" + fileName << std::endl;
   }
   return texture;
}

sf::Font loadFont(std::string fileName, sf::Font font) {
   if (!font.loadFromFile(fileName)) {
      std::cout << "failed to load font" + fileName << std::endl;
   }
   return font;
}

sf::Sprite createSprite(sf::Texture texture, float pos, float pos2) {
   sf::Sprite sprite(texture);
   sprite.setPosition(pos, pos2);
   return sprite;
}

btw if anyone could tell me how to mark some text as code then please do it

Pages: [1]
anything