Tabla de Contenidos

OpenFrameworks

Installation and use

Installation

Use in Eclipse

Import the generated project as “Existing code as makefile project”. You only need to add OpenFrameworks and Addons projects as references in your new project (do not forget to select “Linux GCC”).

Notes

$(OF_PROJECT_OBJ_OUPUT_PATH)%.o: $(PROJECT_ROOT)/%.cpp
	@echo "Compiling" $<
	@mkdir -p $(@D)
	$(CXX) -c $(OPTIMIZATION_CFLAGS) $(CFLAGS) $(CXXFLAGS) -std=c++0x -MMD -MP -MF $(OF_PROJECT_OBJ_OUPUT_PATH)$*.d -MT $(OF_PROJECT_OBJ_OUPUT_PATH)$*.o -o $@ -c $<
$(TARGET): $(OF_PROJECT_OBJS) $(OF_PROJECT_ADDONS_OBJS) $(OF_PROJECT_LIBS) $(TARGET_LIBS)
	@echo 'Linking $(TARGET) for $(ABI_LIB_SUBPATH)'
	@mkdir -p $(@D)
	$(CXX) -o $@ $(OF_PROJECT_OBJS) $(OF_PROJECT_ADDONS_OBJS) $(TARGET_LIBS) $(OF_PROJECT_LIBS) $(LDFLAGS) $(OF_CORE_LIBS)  -lboost_system -lboost_timer -lboost_thread 

Useful data

Obtain information

Useful constants

Graphics

Addons

ofxNetwork

UDP

Crear un listener de UDP:

#include "ofxNetwork.h"
 
ofxUDPManager udpConnection;
 
udpConnection.Create();
udpConnection.Bind(5001);
udpConnection.SetNonBlocking(true);
 
char udpMessage[10000];
udpConnection.Receive(udpMessage,10000);
std::string message=udpMessage;

ofxJSON

#include "ofxJSON.h"
...
ofxJSONElement result;
std::string url = "http://127.0.0.1:5000/sketch/1";
bool parsingSuccessful = result.open(url);
 
if (parsingSuccessful)
{
	//ofLogNotice("ofApp::setup") << "Ok!" << endl << result.getRawString() << endl;
	Json::Int64 value = result["paths"][0]["start_t"].asInt64();
	ofLogNotice("ofApp::setup") << value << endl;
	Json::ArrayIndex npoints = result["paths"][0]["points"].size();
	ofLogNotice("ofApp::setup") << npoints << endl;
 
	for (unsinged int i=0; i<result["paths"][0]["points"].size(); i++)
		ofxJSONElement point = result["paths"][0]["points"][i];
 
	ofxJSONElement result2;
	ofLogNotice("ofApp::setup") << result2.parse("{\"hola\": \"adios\"}");
	ofLogNotice("ofApp::setup") << result2["hola"].asString();
}
else
{
	ofLogNotice("ofApp::setup")  << "Failed to parse JSON" << endl;
}

Addons Repository

Snippets