Android Cocos2dX JNI Bridge

时间:2013-12-10 05:50:05

标签: android c++ cocos2d-x

我是使用Cocos2d-X的新手,我只是在我的应用程序中尝试使用JNI。所以这是我的java代码

public class JNITest {
    public static native void printSomething();

    public static void printSomethingFromJava(){    
        printSomething();
    }

}

我使用javah生成头文件,并在MyScene.cpp文件中实现C函数

void notify(){
     CCNotificationCenter::sharedNotificationCenter()->postNotification("hello",NULL);
}

extern "C" {
    void Java_com_nbs_test_JNITest_printSomething(JNIEnv *, jclass){
        CCLog("THE jni call is successfull");
        notify();
    }
}

打印出CCLog消息,所以我的android - > c ++ bridge正在运行。在构造函数中 MyScene.cpp我设置了一个Listener

MyScene::MyScene() {

    if (!CCLayer::init()) {
        return;
    }
     CCNotificationCenter::sharedNotificationCenter()->addObserver(
                      this,
                      callfuncO_selector( MyScene::printSomethingInCpp),
                      "hello",
                      NULL);

在MyScene :: printSomethingInCpp中我只打印

void MyScene::printSomethingInCpp(){
    CCLog("Its goton hererew---------------------------->");
}

从不打印PingoScreen :: printSomethingInCpp中的日志消息。我不知道问题是我的JNI调用还是观察者模式?

Comeplete code

#ifndef PINGOSCREEN_H_
#define PINGOSCREEN_H_
#include "RequestHandler.h"
#include "cocos2d.h"
#include "cocos-ext.h"
#include "box2d.h"
#include "json.h"
#include "GLES-Render.h"

#define MY_SCREEN_RES "hello"
class PingoScreen: public cocos2d::CCLayer{
public:
    bool init();
        PingoScreen();
        ~PingoScreen();
        static cocos2d::CCScene* scene();
        CREATE_FUNC(PingoScreen);
        void printSomethingInCpp(CCObject *pObject);
        static void notify();
        static PingoScreen* getInstance();

        void setListener();
private:
        cocos2d::CCSprite *ball;
        RequestHandler* r;

};

#include "PingoScreen.h"
#include "SampleRequest.h"
#include "platform/android/jni/JniHelper.h"


#define PTM_RATIO 32;
using namespace cocos2d;
static PingoScreen* _mInstance = NULL;

CCScene* PingoScreen::scene() {
    CCScene* pScene = CCScene::create();
    PingoScreen* pingoScreen =PingoScreen::create();
    pScene->addChild(pingoScreen);
    return pScene;
}



PingoScreen* PingoScreen::getInstance(){
    if(!_mInstance){
        _mInstance=PingoScreen::create();
    }
    return _mInstance;
}




void PingoScreen::setListener(){
}


bool PingoScreen::init(){
    if (!CCLayer::init()) {
            return false;
    }

        // CCNotificationCenter::sharedNotificationCenter()->postNotification("hello",NULL);
     CCNotificationCenter::sharedNotificationCenter()->addObserver(
                 this,
                 callfuncO_selector(PingoScreen::printSomethingInCpp),
                 "hello",
                 NULL);

        CCSize pSize = CCDirector::sharedDirector()->getWinSize();
        CCSprite* backgroundSprite = CCSprite::create("room5.png");
        backgroundSprite->setAnchorPoint(CCPointZero);
        this->addChild(backgroundSprite, -1);
        return true;
}
PingoScreen::PingoScreen() {


}

PingoScreen::~PingoScreen() {

}


void PingoScreen::printSomethingInCpp(CCObject *pObject){
    CCLog("Its goton hererew 1212112----------@@@@@@@@@@@@@@@212121212@@@@@@@@@@@@@@@------------------>");
}

void PingoScreen::notify(){
    CCNotificationCenter::sharedNotificationCenter()->postNotification("hello",NULL);
}

extern "C" {
    void Java_com_nbs_test_JNITest_printSomething(JNIEnv *, jclass){
        PingoScreen::notify();
    }
}

1 个答案:

答案 0 :(得分:0)

callfuncO_selector接受接受CCObject*作为参数的方法的函数指针。

您的方法MyScene::printSomethingInCpp()应该是这样的:

MyScene::printSomethingInCpp(CCObject* pSender)
{
   // your code
}