0

虽然我可以在制作 sf::RectangleShape 对象时访问成员 .setPosition,但我似乎无法在不同的范围内访问 .setPosition 成员。帮助?我是 Xcode 的新手,但对 C++ 很熟悉,不知道为什么会导致错误。

class ShapeVisual : public sf::Drawable, public sf::Transformable {
public:
    int fillShape[16];
    int shapeWidth;
    int shapeHeight;

    sf::RectangleShape shapeBlock;
    float shapeBlockWidth;

    ShapeVisual() {
        shapeWidth = 4; shapeHeight = 4;

        Tetrominos::SetShape("T", &fillShape);

        shapeBlockWidth = 10.0;

        shapeBlock = sf::RectangleShape();
        shapeBlock.setPosition(0,0);
        shapeBlock.setOutlineColor(sf::Color::Green);
        shapeBlock.setSize(sf::Vector2f(shapeBlockWidth,shapeBlockWidth));
        shapeBlock.setFillColor(sf::Color(255,100,100));

    }


    virtual void draw(sf::RenderTarget& target, sf::RenderStates states) const {
        states.transform *= getTransform();

        for (int Bx = 0; Bx < this->shapeWidth; Bx++) {
        for (int By = 0; By < this->shapeHeight; By++) {
            shapeBlock.setPosition(Bx*shapeBlockWidth, By*shapeBlockWidth);
            //ERROR HERE: No matching member call for shapeBlock.setPosition.

            if (fillShape[Bx + By*shapeWidth] != 0) {
                target.draw(shapeBlock,states);
            }
        } }

    }
};

错误的确切文本是

/Volumes/Minerva/Users/dustinfreeman/Documents/Shapeshifter/Code/Shapeshifter/shapeshifter/shapeshifter/shapes.cpp:147:20: error: no matching member function for call to 'setPosition'
        shapeBlock.setPosition(Bx*shapeBlockWidth, By*shapeBlockWidth);
       ~~~~~~~~~~~^~~~~~~~~~~


/usr/local/include/SFML/Graphics/Transformable.hpp:70:10: note: candidate function not viable: no known conversion from 'const sf::RectangleShape' to 'sf::Transformable' for object argument
void setPosition(float x, float y);
     ^


/usr/local/include/SFML/Graphics/Transformable.hpp:84:10: note: candidate function not viable: requires single argument 'position', but 2 arguments were provided
void setPosition(const Vector2f& position);
     ^

这是 sf::RectangleShape 类的文档:http ://www.sfml-dev.org/documentation/2.0/classsf_1_1RectangleShape.php

编辑:我将 shapeBlock 更改为指针,现在它似乎可以编译并运行良好。但是我找不到原始代码的问题。

4

1 回答 1

1

你的draw功能是const. 这意味着您不能修改对象的属性。constC++ 只允许您在属性上调用其他成员函数。在这种情况下,setPosition不是const成员函数,因此无法编译。


显然,当您切换到指针时,您必须执行其他操作才能使其正常工作。

于 2013-10-02T06:39:42.940 回答