1
General discussions / Will SFML support windowing for Vulkan?
« on: March 01, 2016, 04:09:10 pm »
Is it in the works, or no plans for it?
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.
True, I forgot the second one. With a bit of thinking, I'm sure you'll find it out yourself
x is the value in [-180, 180[ that you want to map to [0, 360[.
By the way, you could have a look at Thor's Vectors module, it really simplifies operations on vectors and angles.
What is "fixing"? That's correct, as I said.
If you need a [0, 360[ range, use std::fmod(x + 360.f).
This is expected, you should read the documentation of standard library functions
Also, correct C++ is std::atan2, not atan2.
Are you trying to troll us?
http://en.sfml-dev.org/forums/index.php?topic=19021.msg137190#msg137190
Stop opening new forum posts. Do your research about TCP and UDP and come back when you have concrete SFML-related questions.
Are you trying to troll us?
http://en.sfml-dev.org/forums/index.php?topic=19021.msg137190#msg137190
Stop opening new forum posts. Do your research about TCP and UDP and come back when you have concrete SFML-related questions.
Definitely the assets. I think the big Blizzard games are like 10GB each or so (at least SC2 was last I checked).
http://www.sfml-dev.org/tutorials/2.3/network-packet.php#packets
http://www.sfml-dev.org/documentation/2.3.2/classsf_1_1UdpSocket.php#a48969a62c80d40fd74293a740798e435
Really, if you know how to do it with TCP, or with UDP and raw data, this is really trivial to adapt... So just write the code and give it a try, instead of writing forum posts
Anyway, you probbaly won't get any help until you show us some code and get stuck on a something specific. We won't write the code for you.
So you haven't even tried anything with sf::UdpSocket yet? I'd say start something first, the documentation, tutorials and examples should be more than enough to get you started. And if you get stuck on a specific point, come back and we'll be glad to solve your problem.
Do you even understand what UDP is and how it works?
UDP is an unreliable protocol. You don't get any guarantees regarding to packet ordering or even receiving.