From a5dbbe25112e6b3fe62461aa058e6ddec8423c92 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Wed, 30 Jan 2013 13:11:20 -0800 Subject: [PATCH] capitalize filenames for consistency --- Source/AudioData.h | 2 +- ...ion_view.cpp => MarkerAcquisitionView.cpp} | 4 +- ...isition_view.h => MarkerAcquisitionView.h} | 8 +- Source/SerialInterface.h | 4 +- Source/agent.cpp | 6 +- Source/agent.h | 8 +- Source/audio.cpp | 6 +- Source/audio.h | 8 +- Source/cloud.cpp | 6 +- Source/cloud.h | 8 +- Source/cube.cpp | 4 +- Source/cube.h | 8 +- Source/field.cpp | 4 +- Source/field.h | 8 +- Source/finger.cpp | 2 +- Source/finger.h | 8 +- Source/hand.cpp | 4 +- Source/hand.h | 10 +- Source/head.cpp | 6 +- Source/head.h | 8 +- Source/lattice.cpp | 4 +- Source/lattice.h | 8 +- Source/main.cpp | 28 +- Source/markers.cpp | 4 +- Source/markers.h | 6 +- Source/network.cpp | 4 +- Source/network.h | 8 +- Source/particle.cpp | 4 +- Source/particle.h | 8 +- Source/texture.cpp | 4 +- Source/texture.h | 6 +- Source/util.h | 6 +- Source/world.h | 4 +- interface.xcodeproj/project.pbxproj | 276 +++++++++--------- 34 files changed, 246 insertions(+), 246 deletions(-) rename Source/{marker_acquisition_view.cpp => MarkerAcquisitionView.cpp} (97%) rename Source/{marker_acquisition_view.h => MarkerAcquisitionView.h} (85%) diff --git a/Source/AudioData.h b/Source/AudioData.h index a0fc1dcb11..127ef91503 100644 --- a/Source/AudioData.h +++ b/Source/AudioData.h @@ -11,7 +11,7 @@ #include #include "AudioSource.h" -#include "head.h" +#include "Head.h" #include "UDPSocket.h" class AudioData { diff --git a/Source/marker_acquisition_view.cpp b/Source/MarkerAcquisitionView.cpp similarity index 97% rename from Source/marker_acquisition_view.cpp rename to Source/MarkerAcquisitionView.cpp index 46d1da8ce6..eb32944645 100644 --- a/Source/marker_acquisition_view.cpp +++ b/Source/MarkerAcquisitionView.cpp @@ -1,12 +1,12 @@ // -// marker_acquisition_view.cpp +// MarkerAcquisitionView.cpp // interface // // Created by Kenneth Keiter on 12/12/12. // Copyright (c) 2012 High Fidelity, Inc. All rights reserved. // -#include "marker_acquisition_view.h" +#include "MarkerAcquisitionView.h" #include #include diff --git a/Source/marker_acquisition_view.h b/Source/MarkerAcquisitionView.h similarity index 85% rename from Source/marker_acquisition_view.h rename to Source/MarkerAcquisitionView.h index 3206a71d7d..83e8fd4bec 100644 --- a/Source/marker_acquisition_view.h +++ b/Source/MarkerAcquisitionView.h @@ -1,13 +1,13 @@ // -// marker_acquisition_view.h +// MarkerAcquisitionView.h // interface // // Created by Kenneth Keiter on 12/12/12. // Copyright (c) 2012 High Fidelity, Inc. All rights reserved. // -#ifndef __interface__marker_acquisition_view__ -#define __interface__marker_acquisition_view__ +#ifndef __interface__MarkerAcquisitionView__ +#define __interface__MarkerAcquisitionView__ #include #include @@ -15,7 +15,7 @@ #include #include #include -#include "markers.h" +#include "Markers.h" #define ACQ_VIEW_RETICLE_RADIUS 10 diff --git a/Source/SerialInterface.h b/Source/SerialInterface.h index 331143e2f2..cc75b15d38 100644 --- a/Source/SerialInterface.h +++ b/Source/SerialInterface.h @@ -3,8 +3,8 @@ // -#ifndef interface_SerialInterface_h -#define interface_SerialInterface_h +#ifndef __interface__SerialInterface__ +#define __interface__SerialInterface__ int init_port (int baud); int read_sensors(int first_measurement, float * avg_adc_channels, int * adc_channels, int * samples_averaged, int * LED_state); diff --git a/Source/agent.cpp b/Source/agent.cpp index f333acec6b..0580ad68d1 100644 --- a/Source/agent.cpp +++ b/Source/agent.cpp @@ -1,5 +1,5 @@ // -// agent.cpp +// Agent.cpp // interface // // Created by Philip Rosedale on 11/20/12. @@ -7,8 +7,8 @@ // #include -#include "agent.h" -#include "head.h" +#include "Agent.h" +#include "Head.h" // Structure to hold references to other agents that are nearby diff --git a/Source/agent.h b/Source/agent.h index 1d38407e4c..712a42ec41 100644 --- a/Source/agent.h +++ b/Source/agent.h @@ -1,13 +1,13 @@ // -// agent.h +// Agent.h // interface // // Created by Philip Rosedale on 11/20/12. // Copyright (c) 2012 High Fidelity, Inc. All rights reserved. // -#ifndef interface_agent_h -#define interface_agent_h +#ifndef __interface__Agent__ +#define __interface__Agent__ #include "glm.hpp" #include @@ -15,7 +15,7 @@ #include #include #include -#include "network.h" +#include "Network.h" void update_agents(char * data, int length); int add_agent(std::string * IP); diff --git a/Source/audio.cpp b/Source/audio.cpp index 36f5a19ee0..e62f276b9e 100644 --- a/Source/audio.cpp +++ b/Source/audio.cpp @@ -1,5 +1,5 @@ // -// audio.cpp +// Audio.cpp // interface // // Created by Stephen Birarda on 1/22/13. @@ -9,8 +9,8 @@ #include #include #include -#include "audio.h" -#include "util.h" +#include "Audio.h" +#include "Util.h" #include "AudioSource.h" #include "UDPSocket.h" diff --git a/Source/audio.h b/Source/audio.h index 3922b72e6a..9889a0d783 100644 --- a/Source/audio.h +++ b/Source/audio.h @@ -1,17 +1,17 @@ // -// audio.h +// Audio.h // interface // // Created by Stephen Birarda on 1/22/13. // Copyright (c) 2013 High Fidelity, Inc. All rights reserved. // -#ifndef __interface__audio__ -#define __interface__audio__ +#ifndef __interface__Audio__ +#define __interface__Audio__ #include #include "portaudio.h" -#include "head.h" +#include "Head.h" #include "AudioData.h" class Audio { diff --git a/Source/cloud.cpp b/Source/cloud.cpp index f0c2f3141b..a195221750 100644 --- a/Source/cloud.cpp +++ b/Source/cloud.cpp @@ -1,5 +1,5 @@ // -// cloud.cpp +// Cloud.cpp // interface // // Created by Philip Rosedale on 11/17/12. @@ -7,8 +7,8 @@ // #include -#include "cloud.h" -#include "util.h" +#include "Cloud.h" +#include "Util.h" #define COLOR_MIN 0.2f // minimum R/G/B value at 0,0,0 - also needs setting in field.cpp diff --git a/Source/cloud.h b/Source/cloud.h index 124b044127..c16bb30a65 100644 --- a/Source/cloud.h +++ b/Source/cloud.h @@ -1,15 +1,15 @@ // -// cloud.h +// Cloud.h // interface // // Created by Philip Rosedale on 11/17/12. // Copyright (c) 2012 High Fidelity, Inc. All rights reserved. // -#ifndef interface_cloud_h -#define interface_cloud_h +#ifndef __interface__Cloud__ +#define __interface__Cloud__ -#include "field.h" +#include "Field.h" class Cloud { public: diff --git a/Source/cube.cpp b/Source/cube.cpp index 223f80d6dc..6dee84a0a1 100644 --- a/Source/cube.cpp +++ b/Source/cube.cpp @@ -1,12 +1,12 @@ // -// cube.cpp +// Cube.cpp // interface // // Created by Philip on 12/31/12. // Copyright (c) 2012 High Fidelity, Inc. All rights reserved. // -#include "cube.h" +#include "Cube.h" #define MAX_CUBES 250000 #define SMALLEST_CUBE 0.2 diff --git a/Source/cube.h b/Source/cube.h index 4078441f12..7952c1bbc9 100644 --- a/Source/cube.h +++ b/Source/cube.h @@ -1,16 +1,16 @@ // -// cube.h +// Cube.h // interface // // Created by Philip on 12/31/12. // Copyright (c) 2012 High Fidelity, Inc. All rights reserved. // -#ifndef interface_cube_h -#define interface_cube_h +#ifndef __interface__Cube__ +#define __interface__Cube__ #include "glm.hpp" -#include "util.h" +#include "Util.h" #include "world.h" #include #include diff --git a/Source/field.cpp b/Source/field.cpp index 5543dcdf7e..74f357bdc6 100644 --- a/Source/field.cpp +++ b/Source/field.cpp @@ -1,12 +1,12 @@ // -// field.cpp +// Field.cpp // interface // // Created by Philip Rosedale on 8/23/12. // Copyright (c) 2012 High Fidelity, Inc. All rights reserved. // -#include "field.h" +#include "Field.h" #include "glm.hpp" #define FIELD_SCALE 0.00050 #define COLOR_DRIFT_RATE 0.001f // per-frame drift of particle color towards field element color diff --git a/Source/field.h b/Source/field.h index ec65226c04..9c13646fdb 100644 --- a/Source/field.h +++ b/Source/field.h @@ -1,13 +1,13 @@ // -// field.h +// Field.h // interface // // Created by Philip Rosedale on 8/23/12. // Copyright (c) 2012 High Fidelity, Inc. All rights reserved. // -#ifndef interface_field_h -#define interface_field_h +#ifndef __interface__Field__ +#define __interface__Field__ #ifdef __APPLE__ #include @@ -16,7 +16,7 @@ #endif #include #include "world.h" -#include "util.h" +#include "Util.h" #include "glm.hpp" // Field is a lattice of vectors uniformly distributed FIELD_ELEMENTS^(1/3) on side diff --git a/Source/finger.cpp b/Source/finger.cpp index 76c28d975c..bdb2aa749c 100644 --- a/Source/finger.cpp +++ b/Source/finger.cpp @@ -1,5 +1,5 @@ // -// finger.cpp +// Finger.cpp // interface // // Created by Philip on 1/21/13. diff --git a/Source/finger.h b/Source/finger.h index 268b24dbbc..e172401fa5 100644 --- a/Source/finger.h +++ b/Source/finger.h @@ -1,16 +1,16 @@ // -// finger.h +// Finger.h // interface // // Created by Philip on 1/21/13. // Copyright (c) 2013 High Fidelity, Inc. All rights reserved. // -#ifndef __interface__finger__ -#define __interface__finger__ +#ifndef __interface__Finger__ +#define __interface__Finger__ #include "glm.hpp" -#include "util.h" +#include "Util.h" #include "world.h" #include diff --git a/Source/hand.cpp b/Source/hand.cpp index 0f4ba89ff8..92ec070217 100644 --- a/Source/hand.cpp +++ b/Source/hand.cpp @@ -1,12 +1,12 @@ // -// hand.cpp +// Hand.cpp // interface // // Created by Philip Rosedale on 10/13/12. // Copyright (c) 2012 High Fidelity, Inc. All rights reserved. // -#include "hand.h" +#include "Hand.h" const float DEFAULT_X = 0.0; const float DEFAULT_Y = 0.0; diff --git a/Source/hand.h b/Source/hand.h index 65e73119f7..a7d0af46b4 100644 --- a/Source/hand.h +++ b/Source/hand.h @@ -1,18 +1,18 @@ // -// hand.h +// Hand.h // interface // // Created by Philip Rosedale on 10/13/12. // Copyright (c) 2012 High Fidelity, Inc. All rights reserved. // -#ifndef interface_hand_h -#define interface_hand_h +#ifndef __interface__Hand__ +#define __interface__Hand__ #include "glm.hpp" #include -#include "util.h" -#include "field.h" +#include "Util.h" +#include "Field.h" #include "world.h" #include diff --git a/Source/head.cpp b/Source/head.cpp index 3d5f7f1c74..93327a426b 100644 --- a/Source/head.cpp +++ b/Source/head.cpp @@ -1,5 +1,5 @@ // -// head.cpp +// Head.cpp // interface // // Created by Philip Rosedale on 9/11/12. @@ -7,8 +7,8 @@ // #include -#include "head.h" -#include "util.h" +#include "Head.h" +#include "Util.h" #include "vector_angle.hpp" float skinColor[] = {1.0, 0.84, 0.66}; diff --git a/Source/head.h b/Source/head.h index 0b171abdd9..882517436e 100644 --- a/Source/head.h +++ b/Source/head.h @@ -1,16 +1,16 @@ // -// head.h +// Head.h // interface // // Created by Philip Rosedale on 9/11/12. // Copyright (c) 2012 High Fidelity, Inc. All rights reserved. // -#ifndef interface_head_h -#define interface_head_h +#ifndef __interface__head__ +#define __interface__head__ #include -#include "field.h" +#include "Field.h" #include "world.h" #include #include "SerialInterface.h" diff --git a/Source/lattice.cpp b/Source/lattice.cpp index c3821c29bd..f35287e2b7 100644 --- a/Source/lattice.cpp +++ b/Source/lattice.cpp @@ -1,12 +1,12 @@ // -// lattice.cpp +// Lattice.cpp // interface // // Created by Philip on 1/19/13. // Copyright (c) 2013 High Fidelity, Inc. All rights reserved. // -#include "lattice.h" +#include "Lattice.h" Lattice::Lattice(int w, int h) { width = w; diff --git a/Source/lattice.h b/Source/lattice.h index f5f677023c..4b3ca02319 100644 --- a/Source/lattice.h +++ b/Source/lattice.h @@ -1,16 +1,16 @@ // -// lattice.h +// Lattice.h // interface // // Created by Philip on 1/19/13. // Copyright (c) 2013 High Fidelity, Inc. All rights reserved. // -#ifndef __interface__lattice__ -#define __interface__lattice__ +#ifndef __interface__Lattice__ +#define __interface__Lattice__ #include "glm.hpp" -#include "util.h" +#include "Util.h" #include "world.h" #include #include diff --git a/Source/main.cpp b/Source/main.cpp index 66a13c4833..3bbf7fe25e 100644 --- a/Source/main.cpp +++ b/Source/main.cpp @@ -43,21 +43,21 @@ #include #include "SerialInterface.h" -#include "field.h" +#include "Field.h" #include "world.h" -#include "util.h" -#include "network.h" -#include "audio.h" -#include "head.h" -#include "hand.h" -#include "particle.h" -#include "texture.h" -#include "cloud.h" -#include "agent.h" -#include "markers.h" -#include "marker_acquisition_view.h" -#include "cube.h" -#include "lattice.h" +#include "Util.h" +#include "Network.h" +#include "Audio.h" +#include "Head.h" +#include "Hand.h" +#include "Particle.h" +#include "Texture.h" +#include "Cloud.h" +#include "Agent.h" +#include "Markers.h" +#include "MarkerAcquisitionView.h" +#include "Cube.h" +#include "Lattice.h" #include "finger.h" using namespace std; diff --git a/Source/markers.cpp b/Source/markers.cpp index 22a1d55ea5..295baefa45 100644 --- a/Source/markers.cpp +++ b/Source/markers.cpp @@ -1,12 +1,12 @@ // -// markers.cpp +// Markers.cpp // interface // // Created by Kenneth Keiter on 12/11/12. // Copyright (c) 2012 High Fidelity, Inc. All rights reserved. // -#include "markers.h" +#include "Markers.h" #include #include #include diff --git a/Source/markers.h b/Source/markers.h index f00ea311a6..4bd0c54c2d 100644 --- a/Source/markers.h +++ b/Source/markers.h @@ -1,13 +1,13 @@ // -// markers.h +// Markers.h // interface // // Created by Kenneth Keiter on 12/11/12. // Copyright (c) 2012 High Fidelity, Inc. All rights reserved. // -#ifndef __interface__markers__ -#define __interface__markers__ +#ifndef __interface__Markers__ +#define __interface__Markers__ #include #include diff --git a/Source/network.cpp b/Source/network.cpp index 131bb98f72..b8e3944a31 100644 --- a/Source/network.cpp +++ b/Source/network.cpp @@ -1,5 +1,5 @@ // -// network.cpp +// Network.cpp // interface // // Created by Philip Rosedale on 8/27/12. @@ -8,7 +8,7 @@ #include #include -#include "network.h" +#include "Network.h" // Implementation of optional delay behavior using a ring buffer diff --git a/Source/network.h b/Source/network.h index ffc6840753..3b52666263 100644 --- a/Source/network.h +++ b/Source/network.h @@ -1,20 +1,20 @@ // -// network.h +// Network.h // interface // // Created by Philip Rosedale on 8/27/12. // Copyright (c) 2012 High Fidelity, Inc. All rights reserved. // -#ifndef interface_network_h -#define interface_network_h +#ifndef __interface__Network__ +#define __interface__Network__ #include #include #include #include #include -#include "util.h" +#include "Util.h" // Port to use for communicating UDP with other nearby agents const int MAX_PACKET_SIZE = 1500; diff --git a/Source/particle.cpp b/Source/particle.cpp index 0edeb5e73e..0c2c184a58 100644 --- a/Source/particle.cpp +++ b/Source/particle.cpp @@ -1,12 +1,12 @@ // -// particle.cpp +// Particle.cpp // interface // // Created by Seiji Emery on 9/4/12. // Copyright (c) 2012 High Fidelity, Inc. All rights reserved. // -#include "particle.h" +#include "Particle.h" #define NUM_ELEMENTS 4 diff --git a/Source/particle.h b/Source/particle.h index 228242af97..17c831258d 100644 --- a/Source/particle.h +++ b/Source/particle.h @@ -1,16 +1,16 @@ // -// particle.h +// Particle.h // interface // // Created by Seiji Emery on 9/4/12. // Copyright (c) 2012 High Fidelity, Inc. All rights reserved. // -#ifndef interface_particle_h -#define interface_particle_h +#ifndef __interface__Particle__ +#define __interface__Particle__ #include "glm.hpp" -#include "util.h" +#include "Util.h" #include "world.h" #include diff --git a/Source/texture.cpp b/Source/texture.cpp index 583d1d9ac7..7d8349b617 100644 --- a/Source/texture.cpp +++ b/Source/texture.cpp @@ -1,12 +1,12 @@ // -// texture.cpp +// Texture.cpp // interface // // Added by Yoz on 11/5/12. // // Code lifted from http://en.wikibooks.org/wiki/OpenGL_Programming/Intermediate/Textures -#include "texture.h" +#include "Texture.h" #ifdef __APPLE__ #include diff --git a/Source/texture.h b/Source/texture.h index b356db5b6f..d9cfabf497 100644 --- a/Source/texture.h +++ b/Source/texture.h @@ -1,13 +1,13 @@ // -// texture.h +// Texture.h // interface // // Created by Yoz Work on 11/5/12. // // -#ifndef __interface__texture__ -#define __interface__texture__ +#ifndef __interface__Texture__ +#define __interface__Texture__ #include #ifdef __APPLE__ diff --git a/Source/util.h b/Source/util.h index 0aa7fe5e88..0074ff9994 100644 --- a/Source/util.h +++ b/Source/util.h @@ -1,13 +1,13 @@ // -// util.h +// Util.h // interface // // Created by Philip Rosedale on 8/24/12. // Copyright (c) 2012 High Fidelity, Inc. All rights reserved. // -#ifndef interface_util_h -#define interface_util_h +#ifndef __interface__Util__ +#define __interface__Util__ #include "glm.hpp" diff --git a/Source/world.h b/Source/world.h index fc69b00fd9..a832c29b67 100644 --- a/Source/world.h +++ b/Source/world.h @@ -8,8 +8,8 @@ // Simulation happens in positive cube with edge of size WORLD_SIZE -#ifndef interface_world_h -#define interface_world_h +#ifndef __interface__world__ +#define __interface__world__ const float WORLD_SIZE = 10.0; #define PI 3.14159265 diff --git a/interface.xcodeproj/project.pbxproj b/interface.xcodeproj/project.pbxproj index 9cb1d04c15..66f28d1020 100644 --- a/interface.xcodeproj/project.pbxproj +++ b/interface.xcodeproj/project.pbxproj @@ -7,25 +7,6 @@ objects = { /* Begin PBXBuildFile section */ - 5325C25016AF4DBE0051A40B /* agent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C22916AF4DBE0051A40B /* agent.cpp */; }; - 5325C25216AF4DBE0051A40B /* cloud.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C22D16AF4DBE0051A40B /* cloud.cpp */; }; - 5325C25316AF4DBE0051A40B /* cube.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C22F16AF4DBE0051A40B /* cube.cpp */; }; - 5325C25416AF4DBE0051A40B /* field.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C23116AF4DBE0051A40B /* field.cpp */; }; - 5325C25516AF4DBE0051A40B /* finger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C23316AF4DBE0051A40B /* finger.cpp */; }; - 5325C25616AF4DBE0051A40B /* hand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C23516AF4DBE0051A40B /* hand.cpp */; }; - 5325C25716AF4DBE0051A40B /* head.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C23A16AF4DBE0051A40B /* head.cpp */; }; - 5325C25816AF4DBE0051A40B /* lattice.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C23C16AF4DBE0051A40B /* lattice.cpp */; }; - 5325C25A16AF4DBE0051A40B /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C24016AF4DBE0051A40B /* main.cpp */; }; - 5325C25B16AF4DBE0051A40B /* marker_acquisition_view.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C24116AF4DBE0051A40B /* marker_acquisition_view.cpp */; }; - 5325C25C16AF4DBE0051A40B /* markers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C24316AF4DBE0051A40B /* markers.cpp */; }; - 5325C25D16AF4DBE0051A40B /* network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C24516AF4DBE0051A40B /* network.cpp */; }; - 5325C25E16AF4DBE0051A40B /* particle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C24716AF4DBE0051A40B /* particle.cpp */; }; - 5325C25F16AF4DBE0051A40B /* SerialInterface.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C24916AF4DBE0051A40B /* SerialInterface.cpp */; }; - 5325C26016AF4DBE0051A40B /* texture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C24B16AF4DBE0051A40B /* texture.cpp */; }; - 5325C26116AF4DBE0051A40B /* util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C24D16AF4DBE0051A40B /* util.cpp */; }; - 5325C26416AF4E2C0051A40B /* audio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5325C26216AF4E2C0051A40B /* audio.cpp */; }; - 5328864616B87E040041A07C /* AudioSource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5328864416B87E040041A07C /* AudioSource.cpp */; }; - 5328864916B881710041A07C /* AudioData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5328864716B881710041A07C /* AudioData.cpp */; }; 532C7AF216AF298D00B1A969 /* CVBlob.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 532C792A16AF298900B1A969 /* CVBlob.framework */; }; 532C7CCC16AF301E00B1A969 /* grayson-particle.png in CopyFiles */ = {isa = PBXBuildFile; fileRef = 532C7AC316AF298D00B1A969 /* grayson-particle.png */; }; 532C7CCD16AF301E00B1A969 /* int-texture256-v2.png in CopyFiles */ = {isa = PBXBuildFile; fileRef = 532C7AC416AF298D00B1A969 /* int-texture256-v2.png */; }; @@ -56,7 +37,26 @@ 533BF9D516B31A4700AC31BB /* jeska.raw in CopyFiles */ = {isa = PBXBuildFile; fileRef = 533BF9D316B31A3B00AC31BB /* jeska.raw */; }; 535B821116B9BED400D18440 /* lodepng.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 535B820F16B9BED400D18440 /* lodepng.cpp */; }; 538BA8A316B1B71E000BF99C /* love.raw in CopyFiles */ = {isa = PBXBuildFile; fileRef = 538BA8A216B1B719000BF99C /* love.raw */; }; - 539853CE16B765EE00B2D585 /* UDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 539853CC16B765EE00B2D585 /* UDPSocket.cpp */; }; + 53CF371716B9C039001FCB05 /* Agent.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36EC16B9C039001FCB05 /* Agent.cpp */; }; + 53CF371816B9C039001FCB05 /* Audio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36EE16B9C039001FCB05 /* Audio.cpp */; }; + 53CF371916B9C039001FCB05 /* AudioData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36F016B9C039001FCB05 /* AudioData.cpp */; }; + 53CF371A16B9C039001FCB05 /* AudioSource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36F216B9C039001FCB05 /* AudioSource.cpp */; }; + 53CF371B16B9C039001FCB05 /* Cloud.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36F416B9C039001FCB05 /* Cloud.cpp */; }; + 53CF371C16B9C039001FCB05 /* Cube.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36F616B9C039001FCB05 /* Cube.cpp */; }; + 53CF371D16B9C039001FCB05 /* Field.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36F816B9C039001FCB05 /* Field.cpp */; }; + 53CF371E16B9C039001FCB05 /* Finger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36FA16B9C039001FCB05 /* Finger.cpp */; }; + 53CF371F16B9C039001FCB05 /* Hand.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF36FC16B9C039001FCB05 /* Hand.cpp */; }; + 53CF372016B9C039001FCB05 /* Head.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370116B9C039001FCB05 /* Head.cpp */; }; + 53CF372116B9C039001FCB05 /* Lattice.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370316B9C039001FCB05 /* Lattice.cpp */; }; + 53CF372216B9C039001FCB05 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370516B9C039001FCB05 /* main.cpp */; }; + 53CF372316B9C039001FCB05 /* MarkerAcquisitionView.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370616B9C039001FCB05 /* MarkerAcquisitionView.cpp */; }; + 53CF372416B9C039001FCB05 /* Markers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370816B9C039001FCB05 /* Markers.cpp */; }; + 53CF372516B9C039001FCB05 /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370A16B9C039001FCB05 /* Network.cpp */; }; + 53CF372616B9C039001FCB05 /* Particle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370C16B9C039001FCB05 /* Particle.cpp */; }; + 53CF372716B9C039001FCB05 /* SerialInterface.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF370E16B9C039001FCB05 /* SerialInterface.cpp */; }; + 53CF372816B9C039001FCB05 /* Texture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF371016B9C039001FCB05 /* Texture.cpp */; }; + 53CF372916B9C039001FCB05 /* UDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF371216B9C039001FCB05 /* UDPSocket.cpp */; }; + 53CF372A16B9C039001FCB05 /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53CF371416B9C039001FCB05 /* Util.cpp */; }; B6BDADE115F44A9D002A07DF /* CoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B6BDADDE15F444DB002A07DF /* CoreServices.framework */; }; B6BDADE215F44AA5002A07DF /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B6BDADD815F444C1002A07DF /* CoreAudio.framework */; }; B6BDADE315F44AB0002A07DF /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B6BDADDA15F444C9002A07DF /* AudioToolbox.framework */; }; @@ -88,45 +88,6 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 5325C22916AF4DBE0051A40B /* agent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = agent.cpp; sourceTree = ""; }; - 5325C22A16AF4DBE0051A40B /* agent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = agent.h; sourceTree = ""; }; - 5325C22D16AF4DBE0051A40B /* cloud.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cloud.cpp; sourceTree = ""; }; - 5325C22E16AF4DBE0051A40B /* cloud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cloud.h; sourceTree = ""; }; - 5325C22F16AF4DBE0051A40B /* cube.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = cube.cpp; sourceTree = ""; }; - 5325C23016AF4DBE0051A40B /* cube.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cube.h; sourceTree = ""; }; - 5325C23116AF4DBE0051A40B /* field.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = field.cpp; sourceTree = ""; }; - 5325C23216AF4DBE0051A40B /* field.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = field.h; sourceTree = ""; }; - 5325C23316AF4DBE0051A40B /* finger.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = finger.cpp; sourceTree = ""; }; - 5325C23416AF4DBE0051A40B /* finger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = finger.h; sourceTree = ""; }; - 5325C23516AF4DBE0051A40B /* hand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = hand.cpp; sourceTree = ""; }; - 5325C23616AF4DBE0051A40B /* hand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hand.h; sourceTree = ""; }; - 5325C23916AF4DBE0051A40B /* head_hand.pde */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = head_hand.pde; sourceTree = ""; }; - 5325C23A16AF4DBE0051A40B /* head.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = head.cpp; sourceTree = ""; }; - 5325C23B16AF4DBE0051A40B /* head.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = head.h; sourceTree = ""; }; - 5325C23C16AF4DBE0051A40B /* lattice.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lattice.cpp; sourceTree = ""; }; - 5325C23D16AF4DBE0051A40B /* lattice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lattice.h; sourceTree = ""; }; - 5325C24016AF4DBE0051A40B /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; - 5325C24116AF4DBE0051A40B /* marker_acquisition_view.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = marker_acquisition_view.cpp; sourceTree = ""; }; - 5325C24216AF4DBE0051A40B /* marker_acquisition_view.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = marker_acquisition_view.h; sourceTree = ""; }; - 5325C24316AF4DBE0051A40B /* markers.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = markers.cpp; sourceTree = ""; }; - 5325C24416AF4DBE0051A40B /* markers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = markers.h; sourceTree = ""; }; - 5325C24516AF4DBE0051A40B /* network.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = network.cpp; sourceTree = ""; }; - 5325C24616AF4DBE0051A40B /* network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = network.h; sourceTree = ""; }; - 5325C24716AF4DBE0051A40B /* particle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = particle.cpp; sourceTree = ""; }; - 5325C24816AF4DBE0051A40B /* particle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = particle.h; sourceTree = ""; }; - 5325C24916AF4DBE0051A40B /* SerialInterface.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SerialInterface.cpp; sourceTree = ""; }; - 5325C24A16AF4DBE0051A40B /* SerialInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SerialInterface.h; sourceTree = ""; }; - 5325C24B16AF4DBE0051A40B /* texture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = texture.cpp; sourceTree = ""; }; - 5325C24C16AF4DBE0051A40B /* texture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = texture.h; sourceTree = ""; }; - 5325C24D16AF4DBE0051A40B /* util.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = util.cpp; sourceTree = ""; }; - 5325C24E16AF4DBE0051A40B /* util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = util.h; sourceTree = ""; }; - 5325C24F16AF4DBE0051A40B /* world.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = world.h; sourceTree = ""; }; - 5325C26216AF4E2C0051A40B /* audio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = audio.cpp; sourceTree = ""; }; - 5325C26316AF4E2C0051A40B /* audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = audio.h; sourceTree = ""; }; - 5328864416B87E040041A07C /* AudioSource.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AudioSource.cpp; sourceTree = ""; }; - 5328864516B87E040041A07C /* AudioSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioSource.h; sourceTree = ""; }; - 5328864716B881710041A07C /* AudioData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AudioData.cpp; sourceTree = ""; }; - 5328864816B881710041A07C /* AudioData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioData.h; sourceTree = ""; }; 532C792A16AF298900B1A969 /* CVBlob.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CVBlob.framework; path = Frameworks/CVBlob.framework; sourceTree = ""; }; 532C7AC316AF298D00B1A969 /* grayson-particle.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "grayson-particle.png"; sourceTree = ""; }; 532C7AC416AF298D00B1A969 /* int-texture256-v2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "int-texture256-v2.png"; sourceTree = ""; }; @@ -516,8 +477,47 @@ 535B820F16B9BED400D18440 /* lodepng.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = lodepng.cpp; sourceTree = ""; }; 535B821016B9BED400D18440 /* lodepng.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lodepng.h; sourceTree = ""; }; 538BA8A216B1B719000BF99C /* love.raw */ = {isa = PBXFileReference; lastKnownFileType = file; path = love.raw; sourceTree = ""; }; - 539853CC16B765EE00B2D585 /* UDPSocket.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UDPSocket.cpp; sourceTree = ""; }; - 539853CD16B765EE00B2D585 /* UDPSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UDPSocket.h; sourceTree = ""; }; + 53CF36EC16B9C039001FCB05 /* Agent.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Agent.cpp; sourceTree = ""; }; + 53CF36ED16B9C039001FCB05 /* Agent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Agent.h; sourceTree = ""; }; + 53CF36EE16B9C039001FCB05 /* Audio.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Audio.cpp; sourceTree = ""; }; + 53CF36EF16B9C039001FCB05 /* Audio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Audio.h; sourceTree = ""; }; + 53CF36F016B9C039001FCB05 /* AudioData.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AudioData.cpp; sourceTree = ""; }; + 53CF36F116B9C039001FCB05 /* AudioData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioData.h; sourceTree = ""; }; + 53CF36F216B9C039001FCB05 /* AudioSource.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AudioSource.cpp; sourceTree = ""; }; + 53CF36F316B9C039001FCB05 /* AudioSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioSource.h; sourceTree = ""; }; + 53CF36F416B9C039001FCB05 /* Cloud.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Cloud.cpp; sourceTree = ""; }; + 53CF36F516B9C039001FCB05 /* Cloud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Cloud.h; sourceTree = ""; }; + 53CF36F616B9C039001FCB05 /* Cube.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Cube.cpp; sourceTree = ""; }; + 53CF36F716B9C039001FCB05 /* Cube.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Cube.h; sourceTree = ""; }; + 53CF36F816B9C039001FCB05 /* Field.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Field.cpp; sourceTree = ""; }; + 53CF36F916B9C039001FCB05 /* Field.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Field.h; sourceTree = ""; }; + 53CF36FA16B9C039001FCB05 /* Finger.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Finger.cpp; sourceTree = ""; }; + 53CF36FB16B9C039001FCB05 /* Finger.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Finger.h; sourceTree = ""; }; + 53CF36FC16B9C039001FCB05 /* Hand.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Hand.cpp; sourceTree = ""; }; + 53CF36FD16B9C039001FCB05 /* Hand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Hand.h; sourceTree = ""; }; + 53CF370016B9C039001FCB05 /* head_hand.pde */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = head_hand.pde; sourceTree = ""; }; + 53CF370116B9C039001FCB05 /* Head.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Head.cpp; sourceTree = ""; }; + 53CF370216B9C039001FCB05 /* Head.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = Head.h; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; + 53CF370316B9C039001FCB05 /* Lattice.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Lattice.cpp; sourceTree = ""; }; + 53CF370416B9C039001FCB05 /* Lattice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Lattice.h; sourceTree = ""; }; + 53CF370516B9C039001FCB05 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = ""; }; + 53CF370616B9C039001FCB05 /* MarkerAcquisitionView.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MarkerAcquisitionView.cpp; sourceTree = ""; }; + 53CF370716B9C039001FCB05 /* MarkerAcquisitionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MarkerAcquisitionView.h; sourceTree = ""; }; + 53CF370816B9C039001FCB05 /* Markers.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Markers.cpp; sourceTree = ""; }; + 53CF370916B9C039001FCB05 /* Markers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Markers.h; sourceTree = ""; }; + 53CF370A16B9C039001FCB05 /* Network.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Network.cpp; sourceTree = ""; }; + 53CF370B16B9C039001FCB05 /* Network.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = Network.h; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; + 53CF370C16B9C039001FCB05 /* Particle.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Particle.cpp; sourceTree = ""; }; + 53CF370D16B9C039001FCB05 /* Particle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = Particle.h; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; + 53CF370E16B9C039001FCB05 /* SerialInterface.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SerialInterface.cpp; sourceTree = ""; }; + 53CF370F16B9C039001FCB05 /* SerialInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = SerialInterface.h; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; + 53CF371016B9C039001FCB05 /* Texture.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Texture.cpp; sourceTree = ""; }; + 53CF371116B9C039001FCB05 /* Texture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Texture.h; sourceTree = ""; }; + 53CF371216B9C039001FCB05 /* UDPSocket.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UDPSocket.cpp; sourceTree = ""; }; + 53CF371316B9C039001FCB05 /* UDPSocket.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UDPSocket.h; sourceTree = ""; }; + 53CF371416B9C039001FCB05 /* Util.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Util.cpp; sourceTree = ""; }; + 53CF371516B9C039001FCB05 /* Util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = Util.h; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; + 53CF371616B9C039001FCB05 /* world.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = world.h; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; }; 8DD76F6C0486A84900D96B5E /* interface */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = interface; sourceTree = BUILT_PRODUCTS_DIR; }; B6BDADD815F444C1002A07DF /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; }; B6BDADDA15F444C9002A07DF /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; }; @@ -600,67 +600,51 @@ 5325C22816AF4DBE0051A40B /* Source */ = { isa = PBXGroup; children = ( - 5325C22916AF4DBE0051A40B /* agent.cpp */, - 5325C22A16AF4DBE0051A40B /* agent.h */, - 5325C26216AF4E2C0051A40B /* audio.cpp */, - 5325C26316AF4E2C0051A40B /* audio.h */, - 5325C22D16AF4DBE0051A40B /* cloud.cpp */, - 5325C22E16AF4DBE0051A40B /* cloud.h */, - 5325C22F16AF4DBE0051A40B /* cube.cpp */, - 5325C23016AF4DBE0051A40B /* cube.h */, - 5325C23116AF4DBE0051A40B /* field.cpp */, - 5325C23216AF4DBE0051A40B /* field.h */, - 5325C23316AF4DBE0051A40B /* finger.cpp */, - 5325C23416AF4DBE0051A40B /* finger.h */, - 5325C23516AF4DBE0051A40B /* hand.cpp */, - 5325C23616AF4DBE0051A40B /* hand.h */, - 5325C23716AF4DBE0051A40B /* hardware */, - 5325C23A16AF4DBE0051A40B /* head.cpp */, - 5325C23B16AF4DBE0051A40B /* head.h */, - 5325C23C16AF4DBE0051A40B /* lattice.cpp */, - 5325C23D16AF4DBE0051A40B /* lattice.h */, - 5325C24016AF4DBE0051A40B /* main.cpp */, - 5325C24116AF4DBE0051A40B /* marker_acquisition_view.cpp */, - 5325C24216AF4DBE0051A40B /* marker_acquisition_view.h */, - 5325C24316AF4DBE0051A40B /* markers.cpp */, - 5325C24416AF4DBE0051A40B /* markers.h */, - 5325C24516AF4DBE0051A40B /* network.cpp */, - 5325C24616AF4DBE0051A40B /* network.h */, - 5325C24716AF4DBE0051A40B /* particle.cpp */, - 5325C24816AF4DBE0051A40B /* particle.h */, - 5325C24916AF4DBE0051A40B /* SerialInterface.cpp */, - 5325C24A16AF4DBE0051A40B /* SerialInterface.h */, - 5325C24B16AF4DBE0051A40B /* texture.cpp */, - 5325C24C16AF4DBE0051A40B /* texture.h */, - 5325C24D16AF4DBE0051A40B /* util.cpp */, - 5325C24E16AF4DBE0051A40B /* util.h */, - 5325C24F16AF4DBE0051A40B /* world.h */, - 539853CC16B765EE00B2D585 /* UDPSocket.cpp */, - 539853CD16B765EE00B2D585 /* UDPSocket.h */, - 5328864416B87E040041A07C /* AudioSource.cpp */, - 5328864516B87E040041A07C /* AudioSource.h */, - 5328864716B881710041A07C /* AudioData.cpp */, - 5328864816B881710041A07C /* AudioData.h */, + 53CF36EC16B9C039001FCB05 /* Agent.cpp */, + 53CF36ED16B9C039001FCB05 /* Agent.h */, + 53CF36EE16B9C039001FCB05 /* Audio.cpp */, + 53CF36EF16B9C039001FCB05 /* Audio.h */, + 53CF36F016B9C039001FCB05 /* AudioData.cpp */, + 53CF36F116B9C039001FCB05 /* AudioData.h */, + 53CF36F216B9C039001FCB05 /* AudioSource.cpp */, + 53CF36F316B9C039001FCB05 /* AudioSource.h */, + 53CF36F416B9C039001FCB05 /* Cloud.cpp */, + 53CF36F516B9C039001FCB05 /* Cloud.h */, + 53CF36F616B9C039001FCB05 /* Cube.cpp */, + 53CF36F716B9C039001FCB05 /* Cube.h */, + 53CF36F816B9C039001FCB05 /* Field.cpp */, + 53CF36F916B9C039001FCB05 /* Field.h */, + 53CF36FA16B9C039001FCB05 /* Finger.cpp */, + 53CF36FB16B9C039001FCB05 /* Finger.h */, + 53CF36FC16B9C039001FCB05 /* Hand.cpp */, + 53CF36FD16B9C039001FCB05 /* Hand.h */, + 53CF36FE16B9C039001FCB05 /* hardware */, + 53CF370116B9C039001FCB05 /* Head.cpp */, + 53CF370216B9C039001FCB05 /* Head.h */, + 53CF370316B9C039001FCB05 /* Lattice.cpp */, + 53CF370416B9C039001FCB05 /* Lattice.h */, + 53CF370516B9C039001FCB05 /* main.cpp */, + 53CF370616B9C039001FCB05 /* MarkerAcquisitionView.cpp */, + 53CF370716B9C039001FCB05 /* MarkerAcquisitionView.h */, + 53CF370816B9C039001FCB05 /* Markers.cpp */, + 53CF370916B9C039001FCB05 /* Markers.h */, + 53CF370A16B9C039001FCB05 /* Network.cpp */, + 53CF370B16B9C039001FCB05 /* Network.h */, + 53CF370C16B9C039001FCB05 /* Particle.cpp */, + 53CF370D16B9C039001FCB05 /* Particle.h */, + 53CF370E16B9C039001FCB05 /* SerialInterface.cpp */, + 53CF370F16B9C039001FCB05 /* SerialInterface.h */, + 53CF371016B9C039001FCB05 /* Texture.cpp */, + 53CF371116B9C039001FCB05 /* Texture.h */, + 53CF371216B9C039001FCB05 /* UDPSocket.cpp */, + 53CF371316B9C039001FCB05 /* UDPSocket.h */, + 53CF371416B9C039001FCB05 /* Util.cpp */, + 53CF371516B9C039001FCB05 /* Util.h */, + 53CF371616B9C039001FCB05 /* world.h */, ); path = Source; sourceTree = ""; }; - 5325C23716AF4DBE0051A40B /* hardware */ = { - isa = PBXGroup; - children = ( - 5325C23816AF4DBE0051A40B /* head_hand */, - ); - path = hardware; - sourceTree = ""; - }; - 5325C23816AF4DBE0051A40B /* head_hand */ = { - isa = PBXGroup; - children = ( - 5325C23916AF4DBE0051A40B /* head_hand.pde */, - ); - path = head_hand; - sourceTree = ""; - }; 532C7AC116AF298D00B1A969 /* Resources */ = { isa = PBXGroup; children = ( @@ -1319,6 +1303,22 @@ path = audio; sourceTree = ""; }; + 53CF36FE16B9C039001FCB05 /* hardware */ = { + isa = PBXGroup; + children = ( + 53CF36FF16B9C039001FCB05 /* head_hand */, + ); + path = hardware; + sourceTree = ""; + }; + 53CF36FF16B9C039001FCB05 /* head_hand */ = { + isa = PBXGroup; + children = ( + 53CF370016B9C039001FCB05 /* head_hand.pde */, + ); + path = head_hand; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ @@ -1373,27 +1373,27 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5325C25016AF4DBE0051A40B /* agent.cpp in Sources */, - 5325C25216AF4DBE0051A40B /* cloud.cpp in Sources */, - 5325C25316AF4DBE0051A40B /* cube.cpp in Sources */, - 5325C25416AF4DBE0051A40B /* field.cpp in Sources */, - 5325C25516AF4DBE0051A40B /* finger.cpp in Sources */, - 5325C25616AF4DBE0051A40B /* hand.cpp in Sources */, - 5325C25716AF4DBE0051A40B /* head.cpp in Sources */, - 5325C25816AF4DBE0051A40B /* lattice.cpp in Sources */, - 5325C25A16AF4DBE0051A40B /* main.cpp in Sources */, - 5325C25B16AF4DBE0051A40B /* marker_acquisition_view.cpp in Sources */, - 5325C25C16AF4DBE0051A40B /* markers.cpp in Sources */, - 5325C25D16AF4DBE0051A40B /* network.cpp in Sources */, - 5325C25E16AF4DBE0051A40B /* particle.cpp in Sources */, - 5325C25F16AF4DBE0051A40B /* SerialInterface.cpp in Sources */, - 5325C26016AF4DBE0051A40B /* texture.cpp in Sources */, - 5325C26116AF4DBE0051A40B /* util.cpp in Sources */, - 5325C26416AF4E2C0051A40B /* audio.cpp in Sources */, - 539853CE16B765EE00B2D585 /* UDPSocket.cpp in Sources */, - 5328864616B87E040041A07C /* AudioSource.cpp in Sources */, - 5328864916B881710041A07C /* AudioData.cpp in Sources */, 535B821116B9BED400D18440 /* lodepng.cpp in Sources */, + 53CF371716B9C039001FCB05 /* Agent.cpp in Sources */, + 53CF371816B9C039001FCB05 /* Audio.cpp in Sources */, + 53CF371916B9C039001FCB05 /* AudioData.cpp in Sources */, + 53CF371A16B9C039001FCB05 /* AudioSource.cpp in Sources */, + 53CF371B16B9C039001FCB05 /* Cloud.cpp in Sources */, + 53CF371C16B9C039001FCB05 /* Cube.cpp in Sources */, + 53CF371D16B9C039001FCB05 /* Field.cpp in Sources */, + 53CF371E16B9C039001FCB05 /* Finger.cpp in Sources */, + 53CF371F16B9C039001FCB05 /* Hand.cpp in Sources */, + 53CF372016B9C039001FCB05 /* Head.cpp in Sources */, + 53CF372116B9C039001FCB05 /* Lattice.cpp in Sources */, + 53CF372216B9C039001FCB05 /* main.cpp in Sources */, + 53CF372316B9C039001FCB05 /* MarkerAcquisitionView.cpp in Sources */, + 53CF372416B9C039001FCB05 /* Markers.cpp in Sources */, + 53CF372516B9C039001FCB05 /* Network.cpp in Sources */, + 53CF372616B9C039001FCB05 /* Particle.cpp in Sources */, + 53CF372716B9C039001FCB05 /* SerialInterface.cpp in Sources */, + 53CF372816B9C039001FCB05 /* Texture.cpp in Sources */, + 53CF372916B9C039001FCB05 /* UDPSocket.cpp in Sources */, + 53CF372A16B9C039001FCB05 /* Util.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; };