summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--osctest/Makefile13
-rw-r--r--osctest/addons.make2
-rw-r--r--osctest/config.make142
-rw-r--r--osctest/src/main.cpp13
-rw-r--r--osctest/src/ofApp.cpp133
-rw-r--r--osctest/src/ofApp.h64
7 files changed, 368 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index bcbcc7e..6bf679c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,6 +8,7 @@
*.so
*.d
*.app
+*.compiler_flags
# Packages #
############
diff --git a/osctest/Makefile b/osctest/Makefile
new file mode 100644
index 0000000..177e172
--- /dev/null
+++ b/osctest/Makefile
@@ -0,0 +1,13 @@
+# Attempt to load a config.make file.
+# If none is found, project defaults in config.project.make will be used.
+ifneq ($(wildcard config.make),)
+ include config.make
+endif
+
+# make sure the the OF_ROOT location is defined
+ifndef OF_ROOT
+ OF_ROOT=$(realpath ../../..)
+endif
+
+# call the project makefile!
+include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk
diff --git a/osctest/addons.make b/osctest/addons.make
new file mode 100644
index 0000000..eb5bcbd
--- /dev/null
+++ b/osctest/addons.make
@@ -0,0 +1,2 @@
+ofxGui
+ofxOsc
diff --git a/osctest/config.make b/osctest/config.make
new file mode 100644
index 0000000..469c495
--- /dev/null
+++ b/osctest/config.make
@@ -0,0 +1,142 @@
+################################################################################
+# CONFIGURE PROJECT MAKEFILE (optional)
+# This file is where we make project specific configurations.
+################################################################################
+
+################################################################################
+# OF ROOT
+# The location of your root openFrameworks installation
+# (default) OF_ROOT = ../../..
+################################################################################
+ OF_ROOT = ../../openFrameworks
+
+################################################################################
+# PROJECT ROOT
+# The location of the project - a starting place for searching for files
+# (default) PROJECT_ROOT = . (this directory)
+#
+################################################################################
+# PROJECT_ROOT = .
+
+################################################################################
+# PROJECT SPECIFIC CHECKS
+# This is a project defined section to create internal makefile flags to
+# conditionally enable or disable the addition of various features within
+# this makefile. For instance, if you want to make changes based on whether
+# GTK is installed, one might test that here and create a variable to check.
+################################################################################
+# None
+
+################################################################################
+# PROJECT EXTERNAL SOURCE PATHS
+# These are fully qualified paths that are not within the PROJECT_ROOT folder.
+# Like source folders in the PROJECT_ROOT, these paths are subject to
+# exlclusion via the PROJECT_EXLCUSIONS list.
+#
+# (default) PROJECT_EXTERNAL_SOURCE_PATHS = (blank)
+#
+# Note: Leave a leading space when adding list items with the += operator
+################################################################################
+# PROJECT_EXTERNAL_SOURCE_PATHS =
+
+################################################################################
+# PROJECT EXCLUSIONS
+# These makefiles assume that all folders in your current project directory
+# and any listed in the PROJECT_EXTERNAL_SOURCH_PATHS are are valid locations
+# to look for source code. The any folders or files that match any of the
+# items in the PROJECT_EXCLUSIONS list below will be ignored.
+#
+# Each item in the PROJECT_EXCLUSIONS list will be treated as a complete
+# string unless teh user adds a wildcard (%) operator to match subdirectories.
+# GNU make only allows one wildcard for matching. The second wildcard (%) is
+# treated literally.
+#
+# (default) PROJECT_EXCLUSIONS = (blank)
+#
+# Will automatically exclude the following:
+#
+# $(PROJECT_ROOT)/bin%
+# $(PROJECT_ROOT)/obj%
+# $(PROJECT_ROOT)/%.xcodeproj
+#
+# Note: Leave a leading space when adding list items with the += operator
+################################################################################
+# PROJECT_EXCLUSIONS =
+
+################################################################################
+# PROJECT LINKER FLAGS
+# These flags will be sent to the linker when compiling the executable.
+#
+# (default) PROJECT_LDFLAGS = -Wl,-rpath=./libs
+#
+# Note: Leave a leading space when adding list items with the += operator
+################################################################################
+
+# Currently, shared libraries that are needed are copied to the
+# $(PROJECT_ROOT)/bin/libs directory. The following LDFLAGS tell the linker to
+# add a runtime path to search for those shared libraries, since they aren't
+# incorporated directly into the final executable application binary.
+# TODO: should this be a default setting?
+# PROJECT_LDFLAGS=-Wl,-rpath=./libs
+
+################################################################################
+# PROJECT DEFINES
+# Create a space-delimited list of DEFINES. The list will be converted into
+# CFLAGS with the "-D" flag later in the makefile.
+#
+# (default) PROJECT_DEFINES = (blank)
+#
+# Note: Leave a leading space when adding list items with the += operator
+################################################################################
+# PROJECT_DEFINES =
+
+################################################################################
+# PROJECT CFLAGS
+# This is a list of fully qualified CFLAGS required when compiling for this
+# project. These CFLAGS will be used IN ADDITION TO the PLATFORM_CFLAGS
+# defined in your platform specific core configuration files. These flags are
+# presented to the compiler BEFORE the PROJECT_OPTIMIZATION_CFLAGS below.
+#
+# (default) PROJECT_CFLAGS = (blank)
+#
+# Note: Before adding PROJECT_CFLAGS, note that the PLATFORM_CFLAGS defined in
+# your platform specific configuration file will be applied by default and
+# further flags here may not be needed.
+#
+# Note: Leave a leading space when adding list items with the += operator
+################################################################################
+# PROJECT_CFLAGS =
+
+################################################################################
+# PROJECT OPTIMIZATION CFLAGS
+# These are lists of CFLAGS that are target-specific. While any flags could
+# be conditionally added, they are usually limited to optimization flags.
+# These flags are added BEFORE the PROJECT_CFLAGS.
+#
+# PROJECT_OPTIMIZATION_CFLAGS_RELEASE flags are only applied to RELEASE targets.
+#
+# (default) PROJECT_OPTIMIZATION_CFLAGS_RELEASE = (blank)
+#
+# PROJECT_OPTIMIZATION_CFLAGS_DEBUG flags are only applied to DEBUG targets.
+#
+# (default) PROJECT_OPTIMIZATION_CFLAGS_DEBUG = (blank)
+#
+# Note: Before adding PROJECT_OPTIMIZATION_CFLAGS, please note that the
+# PLATFORM_OPTIMIZATION_CFLAGS defined in your platform specific configuration
+# file will be applied by default and further optimization flags here may not
+# be needed.
+#
+# Note: Leave a leading space when adding list items with the += operator
+################################################################################
+# PROJECT_OPTIMIZATION_CFLAGS_RELEASE =
+# PROJECT_OPTIMIZATION_CFLAGS_DEBUG =
+
+################################################################################
+# PROJECT COMPILERS
+# Custom compilers can be set for CC and CXX
+# (default) PROJECT_CXX = (blank)
+# (default) PROJECT_CC = (blank)
+# Note: Leave a leading space when adding list items with the += operator
+################################################################################
+# PROJECT_CXX =
+# PROJECT_CC =
diff --git a/osctest/src/main.cpp b/osctest/src/main.cpp
new file mode 100644
index 0000000..372cbf9
--- /dev/null
+++ b/osctest/src/main.cpp
@@ -0,0 +1,13 @@
+#include "ofMain.h"
+#include "ofApp.h"
+
+//========================================================================
+int main( ){
+ ofSetupOpenGL(400,300, OF_WINDOW); // <-------- setup the GL context
+
+ // this kicks off the running of my app
+ // can be OF_WINDOW or OF_FULLSCREEN
+ // pass in width and height too:
+ ofRunApp( new ofApp());
+
+}
diff --git a/osctest/src/ofApp.cpp b/osctest/src/ofApp.cpp
new file mode 100644
index 0000000..918480e
--- /dev/null
+++ b/osctest/src/ofApp.cpp
@@ -0,0 +1,133 @@
+#include "ofApp.h"
+
+
+
+//--------------------------------------------------------------
+void ofApp::setup(){
+ ofSetVerticalSync(true);
+
+
+ gui.setup(""); // most of the time you don't need a name but don't forget to call setup
+
+ gui.add(enable.set("enable", true));
+ gui.add(duration.set("duration", 1.0f,0.0f,10.0f));
+ gui.add(spawnProbability.set("spawn", 0.1f));
+
+
+ bHide = false;
+
+}
+
+//--------------------------------------------------------------
+void ofApp::exit(){
+
+}
+
+
+//--------------------------------------------------------------
+void ofApp::update(){
+ if (ofRandom(1.0f)<(spawnProbability/ofGetFrameRate())){
+ tracers.push_back(tracer());
+ ofLog() << "new tracer: "<<tracers[tracers.size()-1].colour;
+ }
+ // open an outgoing connection to HOST:PORT
+ sender.setup(HOST, PORT);
+}
+
+//--------------------------------------------------------------
+void ofApp::draw(){
+ ofBackground(ofColor::black);
+
+ ofxOscBundle bundle;
+
+ auto t=tracers.begin();
+ while (t!=tracers.end()){
+ if (ofGetElapsedTimef()-t->born>duration){
+ tracers.erase(t);
+ }
+ else {
+ if (enable){
+ ofxOscMessage m;
+ m.setAddress("/xyrgb");
+ m.addFloatArg(t->pos.x);
+ m.addFloatArg(t->pos.y);
+ m.addIntArg(t->colour.r);
+ m.addIntArg(t->colour.g);
+ m.addIntArg(t->colour.b);
+ bundle.addMessage(m);
+ t->draw();
+ }
+ t++;
+ }
+ }
+
+ sender.sendBundle(bundle);
+
+
+ if( !bHide ){
+ gui.draw();
+ }
+}
+
+//--------------------------------------------------------------
+void ofApp::keyPressed(int key){
+ if( key == 'h' ){
+ bHide = !bHide;
+ }
+ if(key == 's') {
+ gui.saveToFile("settings.xml");
+ }
+ if(key == 'l') {
+ gui.loadFromFile("settings.xml");
+ }
+
+}
+
+//--------------------------------------------------------------
+void ofApp::keyReleased(int key){
+
+}
+
+//--------------------------------------------------------------
+void ofApp::mouseMoved(int x, int y ){
+
+}
+
+//--------------------------------------------------------------
+void ofApp::mouseDragged(int x, int y, int button){
+}
+
+//--------------------------------------------------------------
+void ofApp::mousePressed(int x, int y, int button){
+
+}
+
+//--------------------------------------------------------------
+void ofApp::mouseReleased(int x, int y, int button){
+
+}
+
+//--------------------------------------------------------------
+void ofApp::mouseEntered(int x, int y){
+
+}
+
+//--------------------------------------------------------------
+void ofApp::mouseExited(int x, int y){
+
+}
+
+//--------------------------------------------------------------
+void ofApp::windowResized(int w, int h){
+
+}
+
+//--------------------------------------------------------------
+void ofApp::gotMessage(ofMessage msg){
+
+}
+
+//--------------------------------------------------------------
+void ofApp::dragEvent(ofDragInfo dragInfo){
+
+}
diff --git a/osctest/src/ofApp.h b/osctest/src/ofApp.h
new file mode 100644
index 0000000..096630d
--- /dev/null
+++ b/osctest/src/ofApp.h
@@ -0,0 +1,64 @@
+#pragma once
+
+#include "ofMain.h"
+#include "ofxGui.h"
+#include "ofxOsc.h"
+
+#define HOST "localhost"
+#define PORT 9001
+#define SPOT_RADIUS 2
+
+class tracer{
+ public:
+ tracer(){
+ pos=ofPoint(ofRandom(1.0f),ofRandom(1.0f));
+ born=ofGetElapsedTimef();
+ colour=ofColor(
+ ofRandom(128)+127,
+ ofRandom(128)+127,
+ ofRandom(128)+127);
+ }
+ void draw(){
+ ofSetColor(colour);
+ ofDrawCircle(ofGetWidth()*pos.x,ofGetHeight()*pos.y,SPOT_RADIUS);
+ }
+ ofPoint pos;
+ float born;
+ ofColor colour;
+};
+
+class ofApp : public ofBaseApp{
+
+ public:
+ void setup();
+ void update();
+ void draw();
+
+ void exit();
+
+ void keyPressed(int key);
+ void keyReleased(int key);
+ void mouseMoved(int x, int y );
+ void mouseDragged(int x, int y, int button);
+ void mousePressed(int x, int y, int button);
+ void mouseReleased(int x, int y, int button);
+ void mouseEntered(int x, int y);
+ void mouseExited(int x, int y);
+ void windowResized(int w, int h);
+ void dragEvent(ofDragInfo dragInfo);
+ void gotMessage(ofMessage msg);
+
+ bool bHide;
+
+ ofParameter<bool> enable;
+ ofParameter<float> duration;
+ ofParameter<float> spawnProbability;
+
+ ofxPanel gui;
+
+ vector<tracer> tracers;
+
+ ofxOscSender sender;
+
+};
+