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

Author Topic: Camera class?  (Read 3478 times)

0 Members and 1 Guest are viewing this topic.

Mars_999

  • Full Member
  • ***
  • Posts: 103
    • View Profile
    • Email
Camera class?
« on: April 30, 2012, 06:19:07 am »
Anyone here made a camera lib that works with OpenGL to use with SFML or Thor? that is allows 1st,3rd, free roam, ect... style of cameras to be used?

And has other functionality such as follow object, turn over time ect....

Thanks!

Lo-X

  • Hero Member
  • *****
  • Posts: 618
    • View Profile
    • My personal website, with CV, portfolio and projects
Re: Camera class?
« Reply #1 on: April 30, 2012, 02:07:02 pm »
That's your job to do such a thing, using a sf::View. Attach a camera to a entity is highly dependent on your ame engine.
I've a class Camera that can turn or translate over time but I've to re write it wih the new SFML conventions, and this class is very easy to implement by yoursef (You only need to store the angle or position target, one or two boleeans, the speed and update the camera at each loop)

Mars_999

  • Full Member
  • ***
  • Posts: 103
    • View Profile
    • Email
Re: Camera class?
« Reply #2 on: May 01, 2012, 01:31:32 am »
How is sf::View supposed to work with 3D? It's says it is only for 2D.... or are you meaning make a class like it...

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10801
    • View Profile
    • development blog
    • Email
Re: Camera class?
« Reply #3 on: May 01, 2012, 02:52:45 am »
How is sf::View supposed to work with 3D?
And how should we know you're looking for a 3D camera? I mean "that is allows 1st,3rd, free roam, ect..." seems to me like randomly connected words. :-[
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

Lo-X

  • Hero Member
  • *****
  • Posts: 618
    • View Profile
    • My personal website, with CV, portfolio and projects
Re: Camera class?
« Reply #4 on: May 01, 2012, 03:10:46 am »
Sorry but I haven't seen anything in your post wich leads me to think it was for 3D (in the context, now yes). I think the most people here works with 2D. If I'm not wrong, Ogre implements a Camera. You should check it out.

Mars_999

  • Full Member
  • ***
  • Posts: 103
    • View Profile
    • Email
Re: Camera class?
« Reply #5 on: May 01, 2012, 03:24:10 am »
Yes I see it's my bad for assuming everyone would assume I was working in 3D.... Anyway thanks for all the help. I will look around. Was hoping someone had a lib for this as their is one for everything else under the sun....