3

ゲームデータを管理するためのシングルトンクラスを書こうとしています.それは GameManager と呼ばれています.本「cocos2dを学ぶ」が作成したのと同じです.

ここに私の.hファイルがあります:

#ifndef GameManager_h
#define GameManager_h

#include "cocos2d.h"

class GameManager
{
private:
    //Constructor
    GameManager();

    //Instance of the singleton
    static GameManager* m_mySingleton;

public:    
    //Get instance of singleton
    static GameManager* sharedGameManager();    

    //A function that returns zero "0" 
    int ReturnZero(){return 0;}
    // another test function
    void runScene() { CCLOG("test");};

};

ここに私の.cppファイルがあります:

#include "SimpleAudioEngine.h"
#include "GameManager.h" 
using namespace cocos2d;
using namespace CocosDenshion;

//All static variables need to be defined in the .cpp file
//I've added this following line to fix the problem
GameManager* GameManager::m_mySingleton = NULL;

GameManager::GameManager()
{    

}

GameManager* GameManager::sharedGameManager()
{
    //If the singleton has no instance yet, create one
    if(NULL == m_mySingleton)
    {
        //Create an instance to the singleton
        m_mySingleton = new GameManager();
    }

    //Return the singleton object
    return m_mySingleton;
}

HelloWorld.cpp での呼び出しは次のとおりです。

void HelloWorld::ccTouchesEnded(CCSet* touches, CCEvent* event) {
    CCLOG("return zero:%d",GameManager::sharedGameManager()->ReturnZero());  // Line 231
    GameManager::sharedGameManager()->runScene();  // Line 232
}

ここに奇妙な問題があります.xcodeでうまく機能し、iPhoneでビルドできます. しかし、ndkでビルドしようとすると:

./obj/local/armeabi/objs-debug/game_logic/HelloWorldScene.o: In function `HelloWorld::ccTouchesEnded(cocos2d::CCSet*, cocos2d::CCEvent*)':
/Users/abc/Documents/def/def/android/jni/../../Classes/HelloWorldScene.cpp:232: undefined reference to `GameManager::sharedGameManager()'
collect2: ld returned 1 exit status
make: *** [obj/local/armeabi/libgame_logic.so] Error 1

「GameManager::sharedGameManager()」への参照が未定義の場合、最初の呼び出しが機能しているのはなぜですか?

どんな助けでも構いません、ありがとう!

4

1 に答える 1

3

Android.mk ファイルに GameManager 実装 (「ここに私の .cpp ファイルがあります」と参照) を含む cpp ファイルを含めましたか?

于 2012-02-24T16:50:28.253 に答える