从文件中加载SFML鼠标位置和碰撞

时间:2012-12-31 16:14:38

标签: c++ position mouse collision sfml

好的,我有两个问题。首先,我制作了一个方形,锁定到与我的瓷砖大小相同的网格。这将用于更换瓷砖。除了我开始滚动时,它工作正常。我知道它为什么。这是因为鼠标位置是相对于窗口而不是地图。我想知道是否有一种方法可以编码方块跟随我的鼠标,即使我滚动。

当前代码:

if (Event.type == sf::Event::MouseMoved)
        {

            rect.setFillColor(sf::Color(255, 0, 255));
            rect.setSize(sf::Vector2f(BLOCKSIZE, BLOCKSIZE));
            int x_offset = (Window.getView().getCenter().x - Window.getSize().x /2);
            int y_offset = (Window.getView().getCenter().y - Window.getSize().y /2);

            rect.setPosition(((sf::Mouse::getPosition(Window).x/32 *32) + (x_offset/32 *32)), ((sf::Mouse::getPosition(Window).y/32 * 32) + (y_offset/32 * 32)));
             std::cout << "Mouse position: x:" << ((sf::Mouse::getPosition(Window).x/32 *32) + (x_offset/32 *32)) << " y:" << ((sf::Mouse::getPosition(Window).y/32 * 32) + (y_offset/32 * 32)) << ")\n\n";
        }

下一个问题是加载碰撞。

代码:

for(int i = 0; i < CollisionVector.size(); i++)
    {
        //Loop through the height of the MapVector
        for(int j = 0; j < CollisionVector[i].size(); j++)
        {
            sf::RectangleShape rect;
            //If the stored number is 1
            if(CollisionVector[i][j] == 1)
            {
                rect.setFillColor(sf::Color(255, 0, 255));
                rect.setSize(sf::Vector2f(BLOCKSIZE, BLOCKSIZE));
                //Set the position of the rectangle
                rect.setPosition(j * BLOCKSIZE, i * BLOCKSIZE);
            }
            //Draw the rectangle
            Window.draw(rect);
        }
    }

如果我添加它,我会得到一个空白的屏幕。我希望矩形是透明的,但我把它改成粉红色以防万一就是问题(它不是&#39;)

屏幕滚动代码:

void Camera::Update(float x, float y)
{
    cameraX = x - (ScreenWidth / 2);
    cameraY = y - (ScreenHeight / 2);

    if (cameraX < 0)
        cameraX = 0.0;
    if (cameraY < 0)
        cameraY = 0.0;

    CameraPosition.reset(sf::FloatRect(cameraX, cameraY, ScreenWidth, ScreenHeight));
    CameraPosition.setViewport(sf::FloatRect(0,0,1,1));
}

1 个答案:

答案 0 :(得分:0)

对于第一个:由于您通过更改sf::View进行滚动,因此请计算视图偏移并将其添加到坐标中:

[...]
float x_offset = Window.getView().getCenter().x - Window.getSize().x * .5f;
float y_offset = Window.getView().getCenter().y - Window.getSize().y * .5f;

rect.setPosition(sf::Mouse::getPosition(Window).x/32 * 32 + x_offset, 
            sf::Mouse::getPosition(Window).y/32 * 32 + y_offset;

对于第二个......呃,我现在什么都没有。我已经检查了SFML,并且sf::RectangleShape被默认初始化为大小为(0,0),所以这不是问题。也许问题在于周围的代码?