我的SDL程序有问题。我的目标是使点沿直线移动。我已将所有坐标保存在数据文件中。所以我只想从文件中读取它们并在正确的位置显示点。
点类(称为linefollower)如下所示。

class Linefollower
{
private:
    int x, y;
    char orientation;

public:
    //Initializes the variables
    Linefollower();

    void set(int m_x, int m_y, char m_orietnation);

    void show();

    char get_orientation();
};

Linefollower::Linefollower()
{
    x = 0;
    y = 0;
    orientation = 'E';
}

void Linefollower::set(int m_x, int m_y, char m_orientation)
{
    x = m_x;
    y = m_y;
    orientation = m_orientation;
}

void Linefollower::show()
{
    //Show the linefollower
    apply_surface(x, y, linefollower, screen );
}

char Linefollower::get_orientation()
{
    return orientation;
}


apply_surface函数。

void apply_surface( int x, int y, SDL_Surface * source, SDL_Surface* destination)
{
//Temporary rectangle to hold the offsets
SDL_Rect offset;

//Get the offsets
offset.x = x;
offset.y = y;

//Blit the surface
SDL_BlitSurface( source, NULL, destination, &offset);
}


应该显示动画的循环如下所示。

//While the user hasn't quit
    while( quit == false )
    {

        //Apply the surface to the screen
        apply_surface( 0, 0, image, screen );

        fin.read((char*) &my_linefollower, sizeof my_linefollower);
        if(my_linefollower.get_orientation() == 'Q')
            break;


        my_linefollower.show();

        //Upadate the screen
        if( SDL_Flip( screen ) == -1 )
        {
            return 1;
        }

        SDL_Delay(200);

    }


现在我期望在屏幕上出现一个移动的点,但是我得到的唯一东西是背景(图像)持续了几秒钟,直到if(my_linefollower.get_orientation() == 'Q') break;变为真。我做错了什么?

PS:我想值得注意的是,我是SDL的初学者,我从tutorial中获取了大部分代码。确切地了解它对我来说是浪费时间,因为我不太可能很快会再次使用它。

最佳答案

首先,您应将offset中的apply_surface更改为如下所示:

SDL_Rect offset = { x, y, 0, 0 };


SDL_Rect没有默认将成员设置为0的构造函数,因此您会得到widthheight的未初始化内存。

另外,如果有效的linefollower,则应检查SDL_Surface包含的内容。删除文件读取代码并手动控制Linefollower,将使您轻松找到错误的出处。

使用调试器验证您的xy坐标。

除此之外,您的代码应该可以工作,尽管您的窗口将没有响应,因为您没有通过SDL_PollEvent泵送事件。

10-07 12:10