0

我的 .cpp 文件的第 15 行出现段错误。我不确定为什么。各种代码片段:explosionhandler.h:

    class explosionhandler {
        public:
    struct explosion {
    ...
    };
    vector<struct explosion> explosions;
    struct explosion_type {
    ...
    };
    vector<struct explosion_type> type;
    int num_types;

    explosionhandler();
    ~explosionhandler();
    void registerexplosion(int& ttype,ALLEGRO_BITMAP*& b,int seq, float a, float m,float e);

    void createexplosion(int ttype,float x,float y);
    void drawexplosions(ALLEGRO_BITMAP* screen);

    void gettype(explosion_type& a,ALLEGRO_BITMAP*& b,int& nseq, float& aa, float& ee, float& mm);


        };#endif 

爆炸处理程序.cpp:

    explosionhandler::explosionhandler()
    {
        num_types=0;
    }
    void explosionhandler::registerexplosion(int& ttype,ALLEGRO_BITMAP*& b,int seq, float a, float m,float e)
    {
        explosion_type n;
        ....
        ttype = num_types;     /*********** right here *******************/
        num_types++;
        type.push_back(n);
    }

爆炸处理程序作为指向对象火箭的指针传递:

火箭.h:

...
class explosionhandler;
class rocket {
public:
        ...
        void setrocket(ALLEGRO_BITMAP*& a,ALLEGRO_BITMAP*& b, explosionhandler*& h);
        ...
        int exptype;
        ...
}; #endif

火箭.cpp:

rocket::rocket()
{
        ...
        exptype=-1;
}
void rocket::setrocket(ALLEGRO_BITMAP*& a,ALLEGRO_BITMAP*& b, explosionhandler*& h)
{
    handler = h;
    area.sethitboundaries(a);
    fprintf(stdout,"setrocket, # of rockets in vector: %i\n",(int)rockets.size());
h->registerexplosion(exptype,b,3,(float)al_get_bitmap_width(b),(float)0,(float)-18); //called function
}

最后是 main.cpp(缩写):

#include "rocket.h"
#include "explosionhandler.h"
#include <allegro5/allegro.h>
#include <allegro5/allegro_image.h>
#include <stdio.h>
#include <cstdlib>
#define PI 3.14159265
...
rocket rock(bullet_speed+2,width,height);
explosionhandler *handler;
...
int setup()
{
        ...
        rock.setrocket(rk,exp,handler);
        rock.setlimit(5);
        al_set_target_bitmap(al_get_backbuffer(display));
        ...
}
...

好的,是的,现在很清楚问题是处理程序没有初始化。哎呀。

当然,explosionhandler 是 main.cpp 中的指针,rocket 是 main.cpp 中声明的对象,两者都是全局变量。

祝福我的小菜鸟心,我不知道我在做什么。

4

1 回答 1

3

我的心理感觉告诉我,您使用rocket::setrocketNULL 指针作为参数进行调用h(或者更具体地说,是对 NULL 指针的引用),然后您调用h->registerexplosion()的是 NULL 指针。

不要那样做。而是传入一个有效的指针,或者分配一个新对象(确保稍后正确删除它)。

于 2012-07-22T00:55:01.833 回答