本文整理汇总了C++中ofPtr类的典型用法代码示例。如果您正苦于以下问题:C++ ofPtr类的具体用法?C++ ofPtr怎么用?C++ ofPtr使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ofPtr类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: ofRunApp
// the same hack but in this case the shared_ptr will delete, old versions created the testApp as new...
//--------------------------------------
void ofRunApp(ofBaseApp * OFSA){
OFSAptr = ofPtr<ofBaseApp>(OFSA);
if(OFSAptr){
OFSAptr->mouseX = 0;
OFSAptr->mouseY = 0;
}
#ifndef TARGET_ANDROID
atexit(ofExitCallback);
#endif
#if defined(TARGET_LINUX) || defined(TARGET_OSX)
// see http://www.gnu.org/software/libc/manual/html_node/Termination-Signals.html#Termination-Signals
signal(SIGTERM, &sighandler);
signal(SIGQUIT, &sighandler);
signal(SIGINT, &sighandler);
signal(SIGKILL, &sighandler); // not much to be done here
signal(SIGHUP, &sighandler); // not much to be done here
// http://www.gnu.org/software/libc/manual/html_node/Program-Error-Signals.html#Program-Error-Signals
signal(SIGABRT, &sighandler); // abort signal
#endif
#ifdef WIN32_HIGH_RES_TIMING
timeBeginPeriod(1); // ! experimental, sets high res time
// you need to call timeEndPeriod.
// if you quit the app other than "esc"
// (ie, close the console, kill the process, etc)
// at exit wont get called, and the time will
// remain high res, that could mess things
// up on your system.
// info here:http://www.geisswerks.com/ryan/FAQS/timing.html
#endif
window->initializeWindow();
ofSeedRandom();
ofResetElapsedTimeCounter();
ofSetWorkingDirectoryToDefault();
ofAddListener(ofEvents().setup,OFSAptr.get(),&ofBaseApp::setup,OF_EVENT_ORDER_APP);
ofAddListener(ofEvents().update,OFSAptr.get(),&ofBaseApp::update,OF_EVENT_ORDER_APP);
ofAddListener(ofEvents().draw,OFSAptr.get(),&ofBaseApp::draw,OF_EVENT_ORDER_APP);
ofAddListener(ofEvents().exit,OFSAptr.get(),&ofBaseApp::exit,OF_EVENT_ORDER_APP);
ofAddListener(ofEvents().keyPressed,OFSAptr.get(),&ofBaseApp::keyPressed,OF_EVENT_ORDER_APP);
ofAddListener(ofEvents().keyReleased,OFSAptr.get(),&ofBaseApp::keyReleased,OF_EVENT_ORDER_APP);
ofAddListener(ofEvents().mouseMoved,OFSAptr.get(),&ofBaseApp::mouseMoved,OF_EVENT_ORDER_APP);
ofAddListener(ofEvents().mouseDragged,OFSAptr.get(),&ofBaseApp::mouseDragged,OF_EVENT_ORDER_APP);
ofAddListener(ofEvents().mousePressed,OFSAptr.get(),&ofBaseApp::mousePressed,OF_EVENT_ORDER_APP);
ofAddListener(ofEvents().mouseReleased,OFSAptr.get(),&ofBaseApp::mouseReleased,OF_EVENT_ORDER_APP);
ofAddListener(ofEvents().windowEntered,OFSAptr.get(),&ofBaseApp::windowEntry,OF_EVENT_ORDER_APP);
ofAddListener(ofEvents().windowResized,OFSAptr.get(),&ofBaseApp::windowResized,OF_EVENT_ORDER_APP);
ofAddListener(ofEvents().messageEvent,OFSAptr.get(),&ofBaseApp::messageReceived,OF_EVENT_ORDER_APP);
ofAddListener(ofEvents().fileDragEvent,OFSAptr.get(),&ofBaseApp::dragged,OF_EVENT_ORDER_APP);
window->runAppViaInfiniteLoop(OFSAptr.get());
}
示例2: ofGetWindowPositionX
//--------------------------------------
int ofGetWindowPositionX(){
return (int)window->getWindowPosition().x;
}
示例3: ofGetWGLContext
HGLRC ofGetWGLContext(){
return window->getWGLContext();
}
示例4: ofGetEGLContext
EGLContext ofGetEGLContext(){
return window->getEGLContext();
}
示例5: ofGetNSGLContext
void * ofGetNSGLContext(){
return window->getNSGLContext();
}
示例6:
Display* ofGetX11Display(){
return window->getX11Display();
}
示例7: ofGetGLXContext
GLXContext ofGetGLXContext(){
return window->getGLXContext();
}
示例8: ofGetWindowWidth
//--------------------------------------------------
int ofGetWindowWidth(){
return (int)window->getWindowSize().x;
}
示例9: ofGetWindowHeight
//--------------------------------------------------
int ofGetWindowHeight(){
return (int)window->getWindowSize().y;
}
示例10: ofGetWidth
//--------------------------------------------------
int ofGetWidth(){
return (int)window->getWidth();
}
示例11: ofGetHeight
//--------------------------------------------------
int ofGetHeight(){
return (int)window->getHeight();
}
示例12: ofGetScreenHeight
//--------------------------------------
int ofGetScreenHeight(){
return (int)window->getScreenSize().y;
}
示例13: ofGetScreenWidth
//--------------------------------------
int ofGetScreenWidth(){
return (int)window->getScreenSize().x;
}
示例14: ofGetWindowPositionY
//--------------------------------------
int ofGetWindowPositionY(){
return (int)window->getWindowPosition().y;
}
示例15: ofGetWindowMode
//--------------------------------------
int ofGetWindowMode(){
return window->getWindowMode();
}