0

マーマレードプロジェクトでbox2dワールドを設定しようとすると、アクセス違反が発生します。

#include "s3e.h"
#include "Iw2D.h"
#include "game.h"
#include "Box2D\Box2D.h"

CGame::CGame()
: m_Position(0,0)
, m_Size(Iw2DGetSurfaceHeight() / 10, Iw2DGetSurfaceHeight() / 10)
{
b2Vec2 gravity(0.0f, -10.0f);
bool doSleep = true;
b2World world(gravity, doSleep); <------this line is the one
b2BodyDef groundBodyDef;
groundBodyDef.position.Set(0.0f, -10.0f);
b2Body* groundBody = world.CreateBody(&groundBodyDef);
b2PolygonShape groundBox;
groundBox.SetAsBox(50.0f, 10.0f);
groundBody->CreateFixture(&groundBox, 0.0f);

}

デバッグすると、b2Settings.cppで「malloc(1024)」がアクセス違反を引き起こすことが示されます

     #include <Box2D/Common/b2Settings.h>
     #include <cstdlib>

     b2Version b2_version = {2, 2, 0};

     // Memory allocators. Modify these to use your own allocator.
     void* b2Alloc(int32 size)
    {
   return malloc(size); <----this is the one
     }

    void b2Free(void* mem)
   {
   free(mem);
   }
4

1 に答える 1

0

iforce2dがコメントで言ったこととまったく同じように、ポインタを作成してb2World呼び出す必要がありますnewconstructor呼び出さずに直接呼び出すことはできませんnew。明らかに正しいステートメントは-

b2World* world = new b2World(gravity, doSleep); 
于 2013-01-22T23:35:14.577 に答える