void
Java_cc_openframeworks_OFAndroid_onSurfaceCreated( JNIEnv*  env, jclass  thiz ){
	if(appSetup){
		ofLogNotice("ofAppAndroidWindow") << "onSurfaceCreated";
		if(!surfaceDestroyed){
			ofUnloadAllFontTextures();
			ofPauseVideoGrabbers();
			ofPauseVideoPlayers();
			if(androidApp){
				androidApp->unloadTextures();
			}
		}

		ofGLReadyCallback();

		ofReloadGLResources();
		ofResumeVideoGrabbers();
		ofResumeVideoPlayers();

		if(androidApp){
			androidApp->reloadTextures();
		}
		ofSetStyle(ofGetStyle());
		surfaceDestroyed = false;
	}else{
		ofGLReadyCallback();
	}

}
Exemplo n.º 2
0
//--------------------------------------------------------------
/// \brief Callback de dessin
///
/// \return void
///
///
void Core::draw()
{
    if(!bBlackOut)
    {
        ofSetStyle(*compositeur->styleStandard);
        sceneManager->draw();
        Annabelle.draw();
        Florence.draw();
        masqueCadrage->draw();
    }
}
Exemplo n.º 3
0
void DrawGame::CircleSprite::drawFill()
{
  ofPushStyle();
  ofStyle S = ofGetStyle(); 
  S.bFill = true;	
  S.circleResolution = 36;
  S.color = White?ofColor::white:ofColor::black;
  ofSetStyle(S);
  ofCircle(0,0,1.0f);  
  ofPopStyle();
}
Exemplo n.º 4
0
void DrawGame::CircleSprite::drawEdge()
{
  ofPushStyle();
  ofStyle S = ofGetStyle(); 
  S.bFill = false;	
  S.circleResolution = 36;
  S.color = White?ofColor::black:ofColor::white;
  S.lineWidth = 1.0f;
  ofSetStyle(S);
  ofCircle(0,0,1.0f);
  ofPopStyle();
}
Exemplo n.º 5
0
void ofCairoRenderer::update(){
	cairo_surface_flush(surface);
	if(page==0 || !multiPage){
		page=1;
	}else{
		page++;
		if(bClearBg()){
			cairo_show_page(cr);
		}else{
			cairo_copy_page(cr);
		}
	}
	ofSetStyle(ofGetStyle());
}
void ofSetCurrentRenderer(ofPtr<ofBaseRenderer> renderer_){
	renderer = renderer_;
	renderer->setupGraphicDefaults();

	if(renderer->rendersPathPrimitives()){
		shape.setMode(ofPath::PATHS);
	}else{
		shape.setMode(ofPath::POLYLINES);
	}

	shape.setUseShapeColor(false);

	ofSetStyle(currentStyle);
}
Exemplo n.º 7
0
void ofSetCurrentRenderer(ofPtr<ofBaseRenderer> renderer_,bool setDefaults){
	renderer = renderer_;
	if(renderer->rendersPathPrimitives()){
		shape.setMode(ofPath::COMMANDS);
	}else{
		shape.setMode(ofPath::POLYLINES);
	}

	shape.setUseShapeColor(false);

	if(setDefaults){
		renderer->setupGraphicDefaults();
		ofSetStyle(currentStyle);
		ofBackground(currentStyle.bgColor);
	}
}
void
Java_cc_openframeworks_OFAndroid_onSurfaceCreated( JNIEnv*  env, jclass  thiz ){
	ofLog(OF_LOG_NOTICE,"onSurfaceCreated");
	if(!surfaceDestroyed){
		ofUnloadAllFontTextures();
		ofPauseVideoGrabbers();
	}
	reloadTextures();
	if(androidApp){
		androidApp->reloadTextures();
	}
	ofSetStyle(ofGetStyle());
	ofSetOrientation(ofGetOrientation());
	surfaceDestroyed = false;

}
Exemplo n.º 9
0
//--------------------------------------------------------------
/// \brief Callback de construction de l'application
///
/// \return void
///
///
void Core::setup()
{
    ofSetFrameRate(60);
#ifdef TARGET_OPENGLES
    ofHideCursor();
#endif // TARGET_OPENGLES
    /* Récupération et configuration des singleton */
    compositeur = Tools::instance();
    compositeur->initializeRandomizedPoints();
    ofSetStyle(*compositeur->styleStandard);
    ofBackground(ofColor::black);
    masqueCadrage = Masque::instance();
    sceneManager = ofxSceneManager::instance();
#ifdef DEBUG
    sceneManager->setDrawDebug(true);
#endif // DEBUG
    sceneManager->setCurtainDropTime(1.0);
    sceneManager->setCurtainStayTime(0.0); // 0 correspond à +inf.
    sceneManager->setCurtainRiseTime(1.0);
    sceneManager->setOverlapUpdate(true);
    /* Configuration OSC */
    ofxOscRouter::addOscChild(compositeur);
    ofxOscRouter::addOscChild(masqueCadrage);
    ofxOscRouter::addOscChild(&Florence);
    ofxOscRouter::addOscChild(&Annabelle);
    oscSend.setup("localhost", 9876);
    // ++++++++
    // Initialisation des scenes : pointeurs + sceneManager + OscChild
    //
    // vvvvvvvv
    //          sceneElements ========
    ptr_sceneElements = new sceneElements();
    sceneManager->addScene(ptr_sceneElements, Core::START);
    ofxOscRouter::addOscChild(ptr_sceneElements);
    //          scenePassageATraversCarresBlanc ========
    ptr_scenePassageATraversCarresBlanc = new scenePassageATraversCarresBlanc();
    sceneManager->addScene(ptr_scenePassageATraversCarresBlanc, Core::PASSAGE_A_TRAVERS_CARRES);
    ofxOscRouter::addOscChild(ptr_scenePassageATraversCarresBlanc);
#ifdef DEBUG
    sceneManager->listScenes();
#endif // DEBUG
}
Exemplo n.º 10
0
//----------------------------------------------------------
//Resets openGL parameters back to OF defaults
void ofSetupGraphicDefaults(){
	renderer->setupGraphicDefaults();
	ofSetStyle(ofStyle());
}
Exemplo n.º 11
0
//----------------------------------------------------------
//Resets openGL parameters back to OF defaults
void ofSetupGraphicDefaults(){
	ofGetCurrentRenderer()->setupGraphicDefaults();
	ofSetStyle(ofStyle());
}
vector<double> ofxGraphicsFeatureMaker::createInstanceFromPointArray(vector<ofVec2f> &points) {
    
    // get bounding box for point set
    float x_min = ofGetWidth();
    float x_max = 0;
    float y_min = ofGetHeight();
    float y_max = 0;
    
    for (int i = 0; i < points.size(); i++) {
        if (points[i].x > x_max)
            x_max = points[i].x;
        if (points[i].x < x_min)
            x_min = points[i].x;
        if (points[i].y > y_max)
            y_max = points[i].y;
        if (points[i].y < y_min)
            y_min = points[i].y;
    }
    
    // translate the points to the middle of the screen
    float transX = (ofGetWidth() - x_max - x_min) / 2;
    float transY = (ofGetHeight() - y_max - y_min) / 2;
    for (int i = 0; i < points.size(); i++)
        points[i].set(points[i].x + transX, points[i].y + transY);
    x_min += transX;
    x_max += transX;
    y_min += transY;
    y_max += transY;
    
    // add 10% extra to width and height
    x_min -= min((int) (0.1 * (x_max-x_min)), (int) x_min);
    x_max += min((int) (0.1 * (x_max-x_min)), ofGetWidth() - (int) x_max);
    y_min -= min((int) (0.1 * (y_max-y_min)), (int) y_min);
    y_max += min((int) (0.1 * (y_max-y_min)), ofGetHeight() - (int) y_max);
    
    // make the bounding box square
    if (x_max - x_min < y_max - y_min) {
        float diff = (y_max - y_min) - (x_max - x_min);
        float diff_left = min(diff / 2, x_min);
        float diff_right = min((float)(diff / 2 + (diff / 2 - diff_left)), (float)(ofGetWidth() - (int)x_max));
        x_min -= diff_left;
        x_max += diff_right;
    }
    else if (y_max - y_min < x_max - x_min) {
        float diff = (x_max - x_min) - (y_max - y_min);
        float diff_top = min(diff / 2, y_min);
        float diff_bottom = min((float)(diff / 2 + (diff / 2 - diff_top)), (float)(ofGetHeight() - (int)y_max));
        y_min -= diff_top;
        y_max += diff_bottom;
    }
    
    // draw the point set onto an FBO
    fbo.begin();
    ofPushStyle();
    ofClear(0,0,0);
    ofSetColor(0);
    
    ofStyle style;
    style.lineWidth = (x_max-x_min) / n;
    style.bFill = false;
    style.smoothing = true;
    ofSetStyle(style);
    
    // write trajectory to image
    ofBeginShape();
    for (int i = 0; i < points.size(); i++)
        ofCurveVertex(points[i].x, points[i].y);
    ofEndShape();
    ofPopStyle();
    fbo.end();
    fbo.readToPixels(fboPixels);
    
    // read image back from fbo and turn into feature vector
    double w = (x_max - x_min) / (n - n * hop + hop);
    double h = (y_max - y_min) / (n - n * hop + hop);
    unsigned char * p = fboPixels.getPixels();
    vector<double> instance;
    
    int r, g, b, left, right, top, bottom, index; float weight, totalweight;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            r = g = b = 0;
            left = x_min + i * w * (1-hop);
            right = left + w;
            top = y_min + j * h * (1-hop);
            bottom = top + h;
            totalweight = 0;
            for (int x = left; x < right; x++) {
                for (int y = top; y < bottom; y++) {
                    index = y * fboPixels.getWidth() * 3 + x * 3;
                    weight = 1 - ofDist(x, y, left + right/2, top + bottom/2) / ofDist(0, 0, x_max, y_max);
                    r += weight * p[index];
                    g += weight * p[index+1];
                    b += weight * p[index+2];
                    totalweight += weight;
                }
            }
            instance.push_back( (r+g+b) / (3 * totalweight) );
        }
    }
    return instance;
}