├── .gitignore ├── DemoBox2D.html ├── NoBarrierOSC.iml ├── README.md ├── css ├── application.css └── style.css ├── images ├── apple-touch-icon.png ├── circle-0.png ├── circle-1.png ├── circle-2.png ├── circle-3.png ├── circle-4.png ├── circle-5.png ├── circle-6.png ├── circle-7.png ├── circle.png ├── fork.png ├── smallCircle.png └── touch.png ├── index.html └── js ├── demo ├── ClientApp.js ├── DemoConstants.js ├── DemoNamespace.js └── ServerApp.js ├── demoBox2d ├── ClientApp.js ├── DemoConstants.js ├── DemoNamespace.js ├── ServerApp.js ├── script.js └── server.js ├── lib ├── RequestAnimationFrame.js ├── SortedLookupTable.js ├── Stats.js ├── caat.js ├── dd_belatedpng.js ├── jquery-1.5.1.js ├── jspack.js ├── osc.js └── socketio │ ├── WebSocketMain.swf │ ├── WebSocketMainInsecure.swf │ └── socket.io.js └── nobarrierosc ├── Client.js ├── ClientNetChannel.js ├── Constants.js ├── EntityController.js ├── GameEntity.js ├── NetChannelMessage.js ├── Point.js ├── RealtimeMutliplayerGame.js ├── ServerNetChannel.js └── WorldEntityDescription.js /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | 3 | .DS_Store -------------------------------------------------------------------------------- /DemoBox2D.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/DemoBox2D.html -------------------------------------------------------------------------------- /NoBarrierOSC.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/NoBarrierOSC.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/README.md -------------------------------------------------------------------------------- /css/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/css/application.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/css/style.css -------------------------------------------------------------------------------- /images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/images/apple-touch-icon.png -------------------------------------------------------------------------------- /images/circle-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/images/circle-0.png -------------------------------------------------------------------------------- /images/circle-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/images/circle-1.png -------------------------------------------------------------------------------- /images/circle-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/images/circle-2.png -------------------------------------------------------------------------------- /images/circle-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/images/circle-3.png -------------------------------------------------------------------------------- /images/circle-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/images/circle-4.png -------------------------------------------------------------------------------- /images/circle-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/images/circle-5.png -------------------------------------------------------------------------------- /images/circle-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/images/circle-6.png -------------------------------------------------------------------------------- /images/circle-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/images/circle-7.png -------------------------------------------------------------------------------- /images/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/images/circle.png -------------------------------------------------------------------------------- /images/fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/images/fork.png -------------------------------------------------------------------------------- /images/smallCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/images/smallCircle.png -------------------------------------------------------------------------------- /images/touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/images/touch.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/index.html -------------------------------------------------------------------------------- /js/demo/ClientApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/demo/ClientApp.js -------------------------------------------------------------------------------- /js/demo/DemoConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/demo/DemoConstants.js -------------------------------------------------------------------------------- /js/demo/DemoNamespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/demo/DemoNamespace.js -------------------------------------------------------------------------------- /js/demo/ServerApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/demo/ServerApp.js -------------------------------------------------------------------------------- /js/demoBox2d/ClientApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/demoBox2d/ClientApp.js -------------------------------------------------------------------------------- /js/demoBox2d/DemoConstants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/demoBox2d/DemoConstants.js -------------------------------------------------------------------------------- /js/demoBox2d/DemoNamespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/demoBox2d/DemoNamespace.js -------------------------------------------------------------------------------- /js/demoBox2d/ServerApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/demoBox2d/ServerApp.js -------------------------------------------------------------------------------- /js/demoBox2d/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/demoBox2d/script.js -------------------------------------------------------------------------------- /js/demoBox2d/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/demoBox2d/server.js -------------------------------------------------------------------------------- /js/lib/RequestAnimationFrame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/lib/RequestAnimationFrame.js -------------------------------------------------------------------------------- /js/lib/SortedLookupTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/lib/SortedLookupTable.js -------------------------------------------------------------------------------- /js/lib/Stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/lib/Stats.js -------------------------------------------------------------------------------- /js/lib/caat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/lib/caat.js -------------------------------------------------------------------------------- /js/lib/dd_belatedpng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/lib/dd_belatedpng.js -------------------------------------------------------------------------------- /js/lib/jquery-1.5.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/lib/jquery-1.5.1.js -------------------------------------------------------------------------------- /js/lib/jspack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/lib/jspack.js -------------------------------------------------------------------------------- /js/lib/osc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/lib/osc.js -------------------------------------------------------------------------------- /js/lib/socketio/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/lib/socketio/WebSocketMain.swf -------------------------------------------------------------------------------- /js/lib/socketio/WebSocketMainInsecure.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/lib/socketio/WebSocketMainInsecure.swf -------------------------------------------------------------------------------- /js/lib/socketio/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/lib/socketio/socket.io.js -------------------------------------------------------------------------------- /js/nobarrierosc/Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/nobarrierosc/Client.js -------------------------------------------------------------------------------- /js/nobarrierosc/ClientNetChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/nobarrierosc/ClientNetChannel.js -------------------------------------------------------------------------------- /js/nobarrierosc/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/nobarrierosc/Constants.js -------------------------------------------------------------------------------- /js/nobarrierosc/EntityController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/nobarrierosc/EntityController.js -------------------------------------------------------------------------------- /js/nobarrierosc/GameEntity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/nobarrierosc/GameEntity.js -------------------------------------------------------------------------------- /js/nobarrierosc/NetChannelMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/nobarrierosc/NetChannelMessage.js -------------------------------------------------------------------------------- /js/nobarrierosc/Point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/nobarrierosc/Point.js -------------------------------------------------------------------------------- /js/nobarrierosc/RealtimeMutliplayerGame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/nobarrierosc/RealtimeMutliplayerGame.js -------------------------------------------------------------------------------- /js/nobarrierosc/ServerNetChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/nobarrierosc/ServerNetChannel.js -------------------------------------------------------------------------------- /js/nobarrierosc/WorldEntityDescription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onedayitwillmake/NoBarrierOSC/HEAD/js/nobarrierosc/WorldEntityDescription.js --------------------------------------------------------------------------------