Skip to content

Instantly share code, notes, and snippets.

@underdoeg
Created October 25, 2012 19:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save underdoeg/3954784 to your computer and use it in GitHub Desktop.
Save underdoeg/3954784 to your computer and use it in GitHub Desktop.
basic openframework window to run on the raspberry pi (.h file)
/*==============================================================================
Copyright (c) 2011, 2012 Christopher Baker <http://christopherbaker.net>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
modified by Philip Whitfield (http://www.undef.ch)
==============================================================================*/
#pragma once
#include "ofAppBaseWindow.h"
#include "ofBaseApp.h"
class ofxRaspberryPiWindow: public ofAppBaseWindow {
public:
ofxRaspberryPiWindow(){};
virtual ~ofxRaspberryPiWindow(){};
void setupOpenGL(int w, int h, int screenMode);
void initializeWindow() {}
void runAppViaInfiniteLoop(ofBaseApp * appPtr);
void hideCursor() {}
void showCursor() {}
void setWindowPosition(int x, int y) {}
void setWindowShape(int w, int h) {}
int getFrameNum();
float getFrameRate() {return 0; }
double getLastFrameTime(){ return 0.0; }
ofPoint getWindowPosition() {return ofPoint(); }
ofPoint getWindowSize(){return ofPoint(); }
ofPoint getScreenSize(){return ofPoint(); }
void setOrientation(ofOrientation orientation){ }
ofOrientation getOrientation(){ return OF_ORIENTATION_DEFAULT; }
bool doesHWOrientation(){return false;}
//this is used by ofGetWidth and now determines the window width based on orientation
int getWidth();
int getHeight();
void setFrameRate(float targetRate){}
void setWindowTitle(string title){}
int getWindowMode() {return 0;}
void setFullscreen(bool fullscreen){}
void toggleFullscreen(){}
void enableSetupScreen(){}
void disableSetupScreen(){}
};
@bakercp
Copy link

bakercp commented Oct 25, 2012

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment