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

Author Topic: Help with camera movement from keyboard  (Read 1193 times)

0 Members and 1 Guest are viewing this topic.

Pandaman407

  • Newbie
  • *
  • Posts: 3
    • View Profile
Help with camera movement from keyboard
« on: October 22, 2015, 11:13:03 pm »
My camera movment works, however, if I hold the the 'S' key (down) it will move the camera down as i want to, but then if I hold 'W' after holding 'S' it will always go up. I tried many ways to fix this, all were not working and just confusing. Can you guys help me improve this code?

        extern float deltaTime;

        int hor = 0;
        int ver = 0;

       
        if (sf::Keyboard::isKeyPressed(sf::Keyboard::W))
        {
                ver = 1;
        }
         else if (sf::Keyboard::isKeyPressed(sf::Keyboard::S))
        {      
                ver = -1;
        }

        if (sf::Keyboard::isKeyPressed(sf::Keyboard::A))
        {
                hor = -1;
        }
         else if (sf::Keyboard::isKeyPressed(sf::Keyboard::D))
        {
                hor = 1;
        }
       


        if (hor != 0 || ver != 0)
                view.move(speed * hor * deltaTime, speed * -ver * deltaTime);
                //y value is inverted, camera works with +y being down and -y being up

hor is a number to store the direction in the horizontal axis.
ver is a number to store the direction in the vertical axis.

eXpl0it3r

  • SFML Team
  • Hero Member
  • *****
  • Posts: 10848
    • View Profile
    • development blog
    • Email
Re: Help with camera movement from keyboard
« Reply #1 on: October 22, 2015, 11:20:18 pm »
Hard to tell what really goes on since it's just a random code snippet, but what you most likely want to add is a third condition to vertical and one to horizontal movement and that is, if both keys are pressed at the same time, the movement should stop.
Official FAQ: https://www.sfml-dev.org/faq.php
Official Discord Server: https://discord.gg/nr4X7Fh
——————————————————————
Dev Blog: https://duerrenberger.dev/blog/

Pandaman407

  • Newbie
  • *
  • Posts: 3
    • View Profile
Re: Help with camera movement from keyboard
« Reply #2 on: October 22, 2015, 11:27:56 pm »
Oh yeah, I didn't think about that. That would be the fastest and easiest way to solve my problem for now. Thanks

edit: new code: thought of  a way to do it without a 3rd condition

        int hor = 0;
        int ver = 0;

       
        if (sf::Keyboard::isKeyPressed(sf::Keyboard::W))
        {
                ver = 1;
        }
         if (sf::Keyboard::isKeyPressed(sf::Keyboard::S))
        {      
               
                ver--;
        }

        if (sf::Keyboard::isKeyPressed(sf::Keyboard::D))
        {
                hor = 1;
        }
        if (sf::Keyboard::isKeyPressed(sf::Keyboard::A))
        {
                hor--;
        }
« Last Edit: October 22, 2015, 11:30:25 pm by Pandaman407 »

Hapax

  • Hero Member
  • *****
  • Posts: 3360
  • My number of posts is shown in hexadecimal.
    • View Profile
    • Links
Re: Help with camera movement from keyboard
« Reply #3 on: October 23, 2015, 12:03:33 am »
Since you're setting them both to zero beforehand, it could be more readable to also use increment as well:

    int hor = 0;
    int ver = 0;

    if (sf::Keyboard::isKeyPressed(sf::Keyboard::W))
        ++ver;
    if (sf::Keyboard::isKeyPressed(sf::Keyboard::S))
        --ver;

    if (sf::Keyboard::isKeyPressed(sf::Keyboard::D))
        ++hor;
    if (sf::Keyboard::isKeyPressed(sf::Keyboard::A))
        --hor;

Also note that W and D (up and right) are both positive here. Depending on what you're trying to achieve, you may wish to invert one of them (horizontal or vertical).

(I actually used this method for my SFML game jam entry)
« Last Edit: October 23, 2015, 12:14:25 am by Hapax »
Selba Ward -SFML drawables
Cheese Map -Drawable Layered Tile Map
Kairos -Timing Library
Grambol
 *Hapaxia Links*

 

anything