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

Author Topic: SFML Book Question  (Read 1641 times)

0 Members and 1 Guest are viewing this topic.

nicedude80

  • Newbie
  • *
  • Posts: 22
    • View Profile
SFML Book Question
« on: January 13, 2014, 11:42:11 pm »
I saw in the description of the SFML Game Development Book (I think that is the title) that it is for sfml 2.0, is there any major coding differences between sfml 2.0 and sfml 2.1? So wuld I be able to use SFML 2.1 with this book without confusion?

Also, one more question. Is SFML 2.0 Stable? As in would it be safe to distribute? Or is 2.1 safer?

One more thing, is that book good? Would it be good for a beginner programmer/sfml beginner?

Thanks!

Nexus

  • SFML Team
  • Hero Member
  • *****
  • Posts: 6287
  • Thor Developer
    • View Profile
    • Bromeon
Re: SFML Book Question
« Reply #1 on: January 13, 2014, 11:44:19 pm »
SFML 2.1 should work, but there is an important change in the development version: SFML no longer links its dependencies, so you have to do it yourself when linking statically.

SFML 2.1 has fewer bugs than SFML 2.0.
Zloxx II: action platformer
Thor Library: particle systems, animations, dot products, ...
SFML Game Development:

nicedude80

  • Newbie
  • *
  • Posts: 22
    • View Profile
Re: SFML Book Question
« Reply #2 on: January 13, 2014, 11:59:50 pm »
Im not linking statically, so I think I will just use the online tutorial to setup sfml, and use the book to learn. Thanks!

nicedude80

  • Newbie
  • *
  • Posts: 22
    • View Profile
Re: SFML Book Question
« Reply #3 on: January 14, 2014, 12:23:27 am »
So, how much knowledge of c++ do I need to learn sfml through SFML Game Development? Does it explain the complicated stuff? Like pointers and standerd template library stuff? Like STD/STL and stuff? Or do I need to learn that first?

Nexus

  • SFML Team
  • Hero Member
  • *****
  • Posts: 6287
  • Thor Developer
    • View Profile
    • Bromeon
Re: SFML Book Question
« Reply #4 on: January 14, 2014, 12:25:51 am »
You definitely need to learn that first, the book requires rather good C++ knowledge. But the ones you mentioned are crucial C++ topics, so you have to learn them anyway ;)

It wouldn't make sense if the book explained basic C++ topics. There are enough really good books for C++, and those usually have far more pages than ours. So we could only give a very superficial introduction, and you would end up not understanding anything.
« Last Edit: January 14, 2014, 12:29:17 am by Nexus »
Zloxx II: action platformer
Thor Library: particle systems, animations, dot products, ...
SFML Game Development:

nicedude80

  • Newbie
  • *
  • Posts: 22
    • View Profile
Re: SFML Book Question
« Reply #5 on: January 14, 2014, 12:37:49 am »
Ok, thanks!