├── .gitignore ├── LICENSE ├── README.md ├── cinderblock.png ├── cinderblock.xml ├── development ├── .gitignore ├── Pockets │ ├── include │ │ └── Resources.h │ ├── resources │ │ ├── CinderApp.icns │ │ ├── CinderApp_ios.png │ │ └── cinder_app_icon.ico │ ├── src │ │ └── PocketsApp.cpp │ ├── vs2013 │ │ ├── Pockets.sdf │ │ ├── Pockets.sln │ │ ├── Pockets.v12.suo │ │ ├── Pockets.vcxproj │ │ ├── Pockets.vcxproj.filters │ │ └── Resources.rc │ ├── xcode │ │ ├── Info.plist │ │ ├── Pockets.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Pockets_Prefix.pch │ │ └── Tests │ │ │ ├── Pockets_Tests.cpp │ │ │ └── Tests.1 │ └── xcode_ios │ │ ├── Default-568h@2x.png │ │ ├── Info.plist │ │ ├── Pockets.xcodeproj │ │ └── project.pbxproj │ │ └── Pockets_Prefix.pch ├── PupTent │ ├── assets │ │ ├── animations.json │ │ ├── renderer.fs │ │ ├── renderer.vs │ │ ├── spritesheet.json │ │ ├── spritesheet.png │ │ └── test.lua │ ├── include │ │ └── Resources.h │ ├── resources │ │ ├── CinderApp.icns │ │ └── CinderApp_ios.png │ ├── screenshots │ │ ├── Undulate-007.png │ │ ├── Undulate-043.png │ │ └── undulately.gif │ ├── src │ │ └── PupTentApp.cpp │ └── xcode │ │ ├── Catch Tests │ │ ├── Catch_Tests.1 │ │ └── PupTent_Tests.cpp │ │ ├── Info.plist │ │ ├── PupTent.xcodeproj │ │ └── project.pbxproj │ │ └── PupTent_Prefix.pch ├── README.md └── tests │ ├── CobWebTests.cpp │ ├── Makefile │ ├── PocketsTests.cpp │ └── PupTentTests.cpp ├── docs ├── .gitignore └── Doxyfile ├── samples ├── ChoreographSample.cpp ├── ChoreographSample.h ├── LineRendering │ ├── include │ │ └── Resources.h │ ├── resources │ │ ├── CinderApp.icns │ │ └── cinder_app_icon.ico │ ├── src │ │ └── LineRenderingSampleApp.cpp │ ├── vc2013 │ │ ├── LineRenderingSample.sln │ │ ├── LineRenderingSample.vcxproj │ │ ├── LineRenderingSample.vcxproj.filters │ │ └── Resources.rc │ └── xcode │ │ ├── Info.plist │ │ ├── LineRendering.xcodeproj │ │ └── project.pbxproj │ │ └── LineRendering_Prefix.pch ├── PathStrokeRibbonTube │ ├── include │ │ └── Resources.h │ ├── resources │ │ ├── CinderApp.icns │ │ └── CinderApp_ios.png │ ├── src │ │ └── PathStrokeRibbonTubeApp.cpp │ ├── xcode │ │ ├── Info.plist │ │ ├── PathStrokeRibbonTube.xcodeproj │ │ │ └── project.pbxproj │ │ └── PathStrokeRibbonTube_Prefix.pch │ └── xcode_ios │ │ ├── Default-568h@2x.png │ │ ├── Info.plist │ │ ├── PathStrokeRibbonTube.xcodeproj │ │ └── project.pbxproj │ │ └── PathStrokeRibbonTube_Prefix.pch ├── PhysicsScrolling.cpp ├── PhysicsScrolling.h ├── RendererTest │ ├── include │ │ └── Resources.h │ ├── resources │ │ ├── CinderApp.icns │ │ └── CinderApp_ios.png │ ├── src │ │ └── RendererTestApp.cpp │ ├── xcode │ │ ├── Info.plist │ │ ├── RendererTest.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ └── RendererTest_Prefix.pch │ └── xcode_ios │ │ ├── Default-568h@2x.png │ │ ├── Info.plist │ │ ├── RendererTest.xcodeproj │ │ └── project.pbxproj │ │ └── RendererTest_Prefix.pch ├── Scene2d │ ├── include │ │ └── Resources.h │ ├── resources │ │ ├── CinderApp.icns │ │ └── CinderApp_ios.png │ ├── src │ │ └── Scene2dApp.cpp │ ├── xcode │ │ ├── Info.plist │ │ ├── Scene2d.xcodeproj │ │ │ └── project.pbxproj │ │ └── Scene2d_Prefix.pch │ └── xcode_ios │ │ ├── Default-568h@2x.png │ │ ├── Info.plist │ │ ├── Scene2d.xcodeproj │ │ └── project.pbxproj │ │ └── Scene2d_Prefix.pch ├── SpriteAnimation.cpp ├── SpriteAnimation.h ├── SpriteAnimation │ ├── .gitignore │ ├── assets │ │ ├── animations.json │ │ ├── spritesheet-basic-pack.json │ │ ├── spritesheet-basic-pack.png │ │ ├── spritesheet-scanline-pack.json │ │ └── spritesheet-scanline-pack.png │ ├── include │ │ └── Resources.h │ ├── resources │ │ ├── CinderApp.icns │ │ ├── CinderApp_ios.png │ │ └── cinder_app_icon.ico │ ├── src │ │ └── SpriteAnimationApp.cpp │ ├── vc11 │ │ ├── Resources.rc │ │ ├── SpriteAnimation.sln │ │ ├── SpriteAnimation.vcxproj │ │ └── SpriteAnimation.vcxproj.filters │ ├── xcode │ │ ├── Info.plist │ │ ├── SpriteAnimation.xcodeproj │ │ │ └── project.pbxproj │ │ └── SpriteAnimation_Prefix.pch │ └── xcode_ios │ │ ├── Default-568h@2x.png │ │ ├── Info.plist │ │ ├── SpriteAnimation.xcodeproj │ │ └── project.pbxproj │ │ └── SpriteAnimation_Prefix.pch ├── SpriteSheetGenerator │ ├── .gitignore │ ├── include │ │ └── Resources.h │ ├── resources │ │ └── CinderApp.icns │ ├── src │ │ └── SpriteSheetGeneratorApp.cpp │ └── xcode │ │ ├── Info.plist │ │ ├── SpriteSheetGenerator.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── SpriteSheetGenerator_Prefix.pch ├── TexturePackingSample.cpp ├── TexturePackingSample.h ├── TreentGui.cpp ├── TreentGui.h ├── TreentSample.cpp ├── TreentSample.h ├── _old │ ├── SpriteTest │ │ ├── include │ │ │ └── Resources.h │ │ ├── resources │ │ │ ├── CinderApp.icns │ │ │ └── CinderApp_ios.png │ │ ├── src │ │ │ └── SpriteTestApp.cpp │ │ ├── xcode │ │ │ ├── Info.plist │ │ │ ├── SpriteTest.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ └── SpriteTest_Prefix.pch │ │ └── xcode_ios │ │ │ ├── Default-568h@2x.png │ │ │ ├── Info.plist │ │ │ ├── SpriteTest.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── SpriteTest_Prefix.pch │ └── shared_assets │ │ ├── sprite_sheet.json │ │ └── sprite_sheet.png └── assets │ ├── animations.json │ ├── spritesheet-scanline-pack.json │ ├── spritesheet-scanline-pack.png │ └── unpacked sprites │ ├── broken tree.jpg │ ├── chicken of the woods small.jpg │ ├── chicken of the woods.jpg │ ├── coral fungus.jpg │ ├── crowcloud.jpg │ ├── ice.jpg │ ├── icelake.jpg │ ├── snapped tree small.jpg │ ├── snapped tree.jpg │ ├── snowdock.jpg │ ├── snowleaf.jpg │ ├── snowpine.jpg │ └── white.png ├── screengrabs └── .gitignore ├── scripts └── copy_outside_files.sh ├── src ├── archive │ ├── blob │ │ ├── ExpandedLine2d.cpp │ │ ├── ExpandedLine2d.h │ │ ├── ExpandedPath2d.cpp │ │ ├── ExpandedPath2d.h │ │ ├── ExpandedPath3d.cpp │ │ ├── ExpandedPath3d.h │ │ ├── Locus.cpp │ │ ├── Locus.h │ │ ├── Renderer2d.cpp │ │ ├── Renderer2d.h │ │ ├── SimpleRenderer.cpp │ │ ├── SimpleRenderer.h │ │ ├── Sprite.cpp │ │ ├── Sprite.h │ │ ├── SpriteAnimation.cpp │ │ ├── SpriteAnimation.h │ │ ├── SpriteSheet.cpp │ │ ├── SpriteSheet.h │ │ ├── SweptPath3d.cpp │ │ ├── SweptPath3d.h │ │ ├── Types.cpp │ │ └── Types.h │ ├── cobweb │ │ ├── OptionSelector.cpp │ │ ├── OptionSelector.h │ │ ├── ScrollPane.cpp │ │ ├── ScrollPane.h │ │ ├── SpriteButton.cpp │ │ ├── SpriteButton.h │ │ ├── SpriteNode.cpp │ │ ├── SpriteNode.h │ │ ├── SpriteToggle.cpp │ │ ├── SpriteToggle.h │ │ ├── TextPane.cpp │ │ └── TextPane.h │ ├── pockets │ │ ├── AnimationUtils.cpp │ │ ├── AnimationUtils.h │ │ ├── CollectionUtilities.hpp │ │ ├── ColorUtils.cpp │ │ ├── ColorUtils.h │ │ ├── ConnectionManager.cpp │ │ ├── ConnectionManager.h │ │ ├── CurveUtils.cpp │ │ ├── CurveUtils.h │ │ ├── FileUtils.cpp │ │ ├── FileUtils.h │ │ ├── ImagePacker.cpp │ │ ├── ImagePacker.h │ │ ├── Locus.cpp │ │ ├── Locus.h │ │ ├── MessageType.hpp │ │ ├── Messenger.hpp │ │ ├── Packing.cpp │ │ ├── Packing.h │ │ ├── Pockets.h │ │ ├── Profiling.cpp │ │ ├── Profiling.h │ │ ├── Receiver.hpp │ │ ├── RenderMesh.cpp │ │ ├── RenderMesh.h │ │ ├── Scene.cpp │ │ ├── Scene.h │ │ ├── TextureAtlas.cpp │ │ ├── TextureAtlas.h │ │ ├── cobweb │ │ │ ├── ButtonBase.cpp │ │ │ ├── ButtonBase.h │ │ │ ├── CobWeb.h │ │ │ ├── Node.cpp │ │ │ ├── Node.h │ │ │ ├── README.md │ │ │ ├── RootNode.cpp │ │ │ ├── RootNode.h │ │ │ ├── ShapeNode.cpp │ │ │ ├── ShapeNode.h │ │ │ ├── SimpleButton.cpp │ │ │ ├── SimpleButton.h │ │ │ ├── TextureNode.cpp │ │ │ ├── TextureNode.h │ │ │ ├── TypeNode.cpp │ │ │ └── TypeNode.h │ │ ├── physics │ │ │ ├── Constraints.cpp │ │ │ ├── Constraints.h │ │ │ ├── Effectors.cpp │ │ │ ├── Effectors.h │ │ │ ├── SimplePhysics.h │ │ │ ├── Types.h │ │ │ ├── World.cpp │ │ │ └── World.h │ │ └── puptent │ │ │ ├── DelaySystem.cpp │ │ │ ├── DelaySystem.h │ │ │ ├── ExpiresSystem.cpp │ │ │ ├── ExpiresSystem.h │ │ │ ├── KeyboardInput.cpp │ │ │ ├── KeyboardInput.h │ │ │ ├── LocationComponent.cpp │ │ │ ├── LocationComponent.h │ │ │ ├── LuaExports.cpp │ │ │ ├── LuaExports.h │ │ │ ├── PupTent.h │ │ │ ├── README.md │ │ │ ├── RenderMeshComponent.cpp │ │ │ ├── RenderMeshComponent.h │ │ │ ├── RenderSystem.cpp │ │ │ ├── RenderSystem.h │ │ │ ├── ScriptSystem.cpp │ │ │ ├── ScriptSystem.h │ │ │ ├── SpriteSystem.cpp │ │ │ ├── SpriteSystem.h │ │ │ ├── VerletMotionSystem.cpp │ │ │ └── VerletMotionSystem.h │ ├── rendering │ │ ├── BatchRenderer.cpp │ │ ├── BatchRenderer.h │ │ ├── Locus.cpp │ │ ├── Locus.h │ │ ├── RenderMesh.cpp │ │ └── RenderMesh.h │ ├── thirdparty │ │ ├── catch.hpp │ │ └── entityx │ │ │ ├── .gitignore │ │ │ ├── 3rdparty │ │ │ └── simplesignal.h │ │ │ ├── COPYING │ │ │ ├── Entity.cc │ │ │ ├── Entity.h │ │ │ ├── Event.cc │ │ │ ├── Event.h │ │ │ ├── System.cc │ │ │ ├── System.h │ │ │ ├── config.h │ │ │ ├── deps │ │ │ ├── Dependencies.cc │ │ │ └── Dependencies.h │ │ │ ├── entityx.h │ │ │ ├── help │ │ │ ├── NonCopyable.h │ │ │ ├── Timer.cc │ │ │ └── Timer.h │ │ │ └── tags │ │ │ ├── TagsComponent.cc │ │ │ └── TagsComponent.h │ └── treent │ │ ├── BehaviorSystem.cpp │ │ ├── BehaviorSystem.h │ │ ├── Components.h │ │ ├── GuiSystem.cpp │ │ ├── GuiSystem.h │ │ ├── ImageRenderSystem.cpp │ │ ├── ImageRenderSystem.h │ │ ├── LayeredShapeRenderSystem.cpp │ │ ├── LayeredShapeRenderSystem.h │ │ ├── LocationComponent.cpp │ │ ├── LocationComponent.h │ │ ├── Node3D.cpp │ │ ├── Node3D.h │ │ ├── README.md │ │ ├── Shape3D.cpp │ │ ├── Shape3D.h │ │ ├── Shape3DRenderSystem.cpp │ │ ├── Shape3DRenderSystem.h │ │ ├── ShapeComponent.cpp │ │ ├── ShapeComponent.h │ │ ├── SizeComponent.cpp │ │ ├── SizeComponent.h │ │ ├── TextRenderSystem.cpp │ │ ├── TextRenderSystem.h │ │ ├── Transform3D.cpp │ │ ├── Transform3D.h │ │ ├── Treent.cpp │ │ ├── Treent.h │ │ ├── TreentNode.cpp │ │ └── TreentNode.h └── pockets │ ├── Cache.h │ ├── CollectionUtilities.hpp │ ├── CollectionViews.h │ ├── CollectionViews.inl │ ├── Pockets.h │ ├── SimpleMarkov.h │ ├── StringUtilities.h │ └── gl │ ├── LineRenderer.cpp │ └── LineRenderer.h └── tests ├── Pocket_Tests.xcodeproj └── project.pbxproj └── tests ├── Iteration_test.cpp ├── Markov_test.cpp ├── Streams_test.cpp ├── Strings_test.cpp ├── catch.hpp └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/README.md -------------------------------------------------------------------------------- /cinderblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/cinderblock.png -------------------------------------------------------------------------------- /cinderblock.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/cinderblock.xml -------------------------------------------------------------------------------- /development/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/.gitignore -------------------------------------------------------------------------------- /development/Pockets/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/include/Resources.h -------------------------------------------------------------------------------- /development/Pockets/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/resources/CinderApp.icns -------------------------------------------------------------------------------- /development/Pockets/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /development/Pockets/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /development/Pockets/src/PocketsApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/src/PocketsApp.cpp -------------------------------------------------------------------------------- /development/Pockets/vs2013/Pockets.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/vs2013/Pockets.sdf -------------------------------------------------------------------------------- /development/Pockets/vs2013/Pockets.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/vs2013/Pockets.sln -------------------------------------------------------------------------------- /development/Pockets/vs2013/Pockets.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/vs2013/Pockets.v12.suo -------------------------------------------------------------------------------- /development/Pockets/vs2013/Pockets.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/vs2013/Pockets.vcxproj -------------------------------------------------------------------------------- /development/Pockets/vs2013/Pockets.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/vs2013/Pockets.vcxproj.filters -------------------------------------------------------------------------------- /development/Pockets/vs2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/vs2013/Resources.rc -------------------------------------------------------------------------------- /development/Pockets/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/xcode/Info.plist -------------------------------------------------------------------------------- /development/Pockets/xcode/Pockets.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/xcode/Pockets.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /development/Pockets/xcode/Pockets_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/xcode/Pockets_Prefix.pch -------------------------------------------------------------------------------- /development/Pockets/xcode/Tests/Pockets_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/xcode/Tests/Pockets_Tests.cpp -------------------------------------------------------------------------------- /development/Pockets/xcode/Tests/Tests.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/xcode/Tests/Tests.1 -------------------------------------------------------------------------------- /development/Pockets/xcode_ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/xcode_ios/Default-568h@2x.png -------------------------------------------------------------------------------- /development/Pockets/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/xcode_ios/Info.plist -------------------------------------------------------------------------------- /development/Pockets/xcode_ios/Pockets.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/xcode_ios/Pockets.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /development/Pockets/xcode_ios/Pockets_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/Pockets/xcode_ios/Pockets_Prefix.pch -------------------------------------------------------------------------------- /development/PupTent/assets/animations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/assets/animations.json -------------------------------------------------------------------------------- /development/PupTent/assets/renderer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/assets/renderer.fs -------------------------------------------------------------------------------- /development/PupTent/assets/renderer.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/assets/renderer.vs -------------------------------------------------------------------------------- /development/PupTent/assets/spritesheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/assets/spritesheet.json -------------------------------------------------------------------------------- /development/PupTent/assets/spritesheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/assets/spritesheet.png -------------------------------------------------------------------------------- /development/PupTent/assets/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/assets/test.lua -------------------------------------------------------------------------------- /development/PupTent/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/include/Resources.h -------------------------------------------------------------------------------- /development/PupTent/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/resources/CinderApp.icns -------------------------------------------------------------------------------- /development/PupTent/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /development/PupTent/screenshots/Undulate-007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/screenshots/Undulate-007.png -------------------------------------------------------------------------------- /development/PupTent/screenshots/Undulate-043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/screenshots/Undulate-043.png -------------------------------------------------------------------------------- /development/PupTent/screenshots/undulately.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/screenshots/undulately.gif -------------------------------------------------------------------------------- /development/PupTent/src/PupTentApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/src/PupTentApp.cpp -------------------------------------------------------------------------------- /development/PupTent/xcode/Catch Tests/Catch_Tests.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/xcode/Catch Tests/Catch_Tests.1 -------------------------------------------------------------------------------- /development/PupTent/xcode/Catch Tests/PupTent_Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/xcode/Catch Tests/PupTent_Tests.cpp -------------------------------------------------------------------------------- /development/PupTent/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/xcode/Info.plist -------------------------------------------------------------------------------- /development/PupTent/xcode/PupTent.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/xcode/PupTent.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /development/PupTent/xcode/PupTent_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/PupTent/xcode/PupTent_Prefix.pch -------------------------------------------------------------------------------- /development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/README.md -------------------------------------------------------------------------------- /development/tests/CobWebTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/tests/CobWebTests.cpp -------------------------------------------------------------------------------- /development/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/tests/Makefile -------------------------------------------------------------------------------- /development/tests/PocketsTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/tests/PocketsTests.cpp -------------------------------------------------------------------------------- /development/tests/PupTentTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/development/tests/PupTentTests.cpp -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !Doxyfile 4 | -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /samples/ChoreographSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/ChoreographSample.cpp -------------------------------------------------------------------------------- /samples/ChoreographSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/ChoreographSample.h -------------------------------------------------------------------------------- /samples/LineRendering/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/LineRendering/include/Resources.h -------------------------------------------------------------------------------- /samples/LineRendering/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/LineRendering/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/LineRendering/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/LineRendering/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /samples/LineRendering/src/LineRenderingSampleApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/LineRendering/src/LineRenderingSampleApp.cpp -------------------------------------------------------------------------------- /samples/LineRendering/vc2013/LineRenderingSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/LineRendering/vc2013/LineRenderingSample.sln -------------------------------------------------------------------------------- /samples/LineRendering/vc2013/LineRenderingSample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/LineRendering/vc2013/LineRenderingSample.vcxproj -------------------------------------------------------------------------------- /samples/LineRendering/vc2013/LineRenderingSample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/LineRendering/vc2013/LineRenderingSample.vcxproj.filters -------------------------------------------------------------------------------- /samples/LineRendering/vc2013/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/LineRendering/vc2013/Resources.rc -------------------------------------------------------------------------------- /samples/LineRendering/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/LineRendering/xcode/Info.plist -------------------------------------------------------------------------------- /samples/LineRendering/xcode/LineRendering.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/LineRendering/xcode/LineRendering.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/LineRendering/xcode/LineRendering_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/LineRendering/xcode/LineRendering_Prefix.pch -------------------------------------------------------------------------------- /samples/PathStrokeRibbonTube/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/PathStrokeRibbonTube/include/Resources.h -------------------------------------------------------------------------------- /samples/PathStrokeRibbonTube/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/PathStrokeRibbonTube/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/PathStrokeRibbonTube/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/PathStrokeRibbonTube/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/PathStrokeRibbonTube/src/PathStrokeRibbonTubeApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/PathStrokeRibbonTube/src/PathStrokeRibbonTubeApp.cpp -------------------------------------------------------------------------------- /samples/PathStrokeRibbonTube/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/PathStrokeRibbonTube/xcode/Info.plist -------------------------------------------------------------------------------- /samples/PathStrokeRibbonTube/xcode/PathStrokeRibbonTube.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/PathStrokeRibbonTube/xcode/PathStrokeRibbonTube.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/PathStrokeRibbonTube/xcode/PathStrokeRibbonTube_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/PathStrokeRibbonTube/xcode/PathStrokeRibbonTube_Prefix.pch -------------------------------------------------------------------------------- /samples/PathStrokeRibbonTube/xcode_ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/PathStrokeRibbonTube/xcode_ios/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/PathStrokeRibbonTube/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/PathStrokeRibbonTube/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/PathStrokeRibbonTube/xcode_ios/PathStrokeRibbonTube.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/PathStrokeRibbonTube/xcode_ios/PathStrokeRibbonTube.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/PathStrokeRibbonTube/xcode_ios/PathStrokeRibbonTube_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/PathStrokeRibbonTube/xcode_ios/PathStrokeRibbonTube_Prefix.pch -------------------------------------------------------------------------------- /samples/PhysicsScrolling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/PhysicsScrolling.cpp -------------------------------------------------------------------------------- /samples/PhysicsScrolling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/PhysicsScrolling.h -------------------------------------------------------------------------------- /samples/RendererTest/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/RendererTest/include/Resources.h -------------------------------------------------------------------------------- /samples/RendererTest/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/RendererTest/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/RendererTest/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/RendererTest/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/RendererTest/src/RendererTestApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/RendererTest/src/RendererTestApp.cpp -------------------------------------------------------------------------------- /samples/RendererTest/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/RendererTest/xcode/Info.plist -------------------------------------------------------------------------------- /samples/RendererTest/xcode/RendererTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/RendererTest/xcode/RendererTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/RendererTest/xcode/RendererTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/RendererTest/xcode/RendererTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/RendererTest/xcode/RendererTest_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/RendererTest/xcode/RendererTest_Prefix.pch -------------------------------------------------------------------------------- /samples/RendererTest/xcode_ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/RendererTest/xcode_ios/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/RendererTest/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/RendererTest/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/RendererTest/xcode_ios/RendererTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/RendererTest/xcode_ios/RendererTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/RendererTest/xcode_ios/RendererTest_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/RendererTest/xcode_ios/RendererTest_Prefix.pch -------------------------------------------------------------------------------- /samples/Scene2d/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/Scene2d/include/Resources.h -------------------------------------------------------------------------------- /samples/Scene2d/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/Scene2d/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/Scene2d/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/Scene2d/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/Scene2d/src/Scene2dApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/Scene2d/src/Scene2dApp.cpp -------------------------------------------------------------------------------- /samples/Scene2d/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/Scene2d/xcode/Info.plist -------------------------------------------------------------------------------- /samples/Scene2d/xcode/Scene2d.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/Scene2d/xcode/Scene2d.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/Scene2d/xcode/Scene2d_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/Scene2d/xcode/Scene2d_Prefix.pch -------------------------------------------------------------------------------- /samples/Scene2d/xcode_ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/Scene2d/xcode_ios/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/Scene2d/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/Scene2d/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/Scene2d/xcode_ios/Scene2d.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/Scene2d/xcode_ios/Scene2d.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/Scene2d/xcode_ios/Scene2d_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/Scene2d/xcode_ios/Scene2d_Prefix.pch -------------------------------------------------------------------------------- /samples/SpriteAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation.cpp -------------------------------------------------------------------------------- /samples/SpriteAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation.h -------------------------------------------------------------------------------- /samples/SpriteAnimation/.gitignore: -------------------------------------------------------------------------------- 1 | Design/ 2 | -------------------------------------------------------------------------------- /samples/SpriteAnimation/assets/animations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/assets/animations.json -------------------------------------------------------------------------------- /samples/SpriteAnimation/assets/spritesheet-basic-pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/assets/spritesheet-basic-pack.json -------------------------------------------------------------------------------- /samples/SpriteAnimation/assets/spritesheet-basic-pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/assets/spritesheet-basic-pack.png -------------------------------------------------------------------------------- /samples/SpriteAnimation/assets/spritesheet-scanline-pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/assets/spritesheet-scanline-pack.json -------------------------------------------------------------------------------- /samples/SpriteAnimation/assets/spritesheet-scanline-pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/assets/spritesheet-scanline-pack.png -------------------------------------------------------------------------------- /samples/SpriteAnimation/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/include/Resources.h -------------------------------------------------------------------------------- /samples/SpriteAnimation/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/SpriteAnimation/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/SpriteAnimation/resources/cinder_app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/resources/cinder_app_icon.ico -------------------------------------------------------------------------------- /samples/SpriteAnimation/src/SpriteAnimationApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/src/SpriteAnimationApp.cpp -------------------------------------------------------------------------------- /samples/SpriteAnimation/vc11/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/vc11/Resources.rc -------------------------------------------------------------------------------- /samples/SpriteAnimation/vc11/SpriteAnimation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/vc11/SpriteAnimation.sln -------------------------------------------------------------------------------- /samples/SpriteAnimation/vc11/SpriteAnimation.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/vc11/SpriteAnimation.vcxproj -------------------------------------------------------------------------------- /samples/SpriteAnimation/vc11/SpriteAnimation.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/vc11/SpriteAnimation.vcxproj.filters -------------------------------------------------------------------------------- /samples/SpriteAnimation/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/xcode/Info.plist -------------------------------------------------------------------------------- /samples/SpriteAnimation/xcode/SpriteAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/xcode/SpriteAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/SpriteAnimation/xcode/SpriteAnimation_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/xcode/SpriteAnimation_Prefix.pch -------------------------------------------------------------------------------- /samples/SpriteAnimation/xcode_ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/xcode_ios/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/SpriteAnimation/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/SpriteAnimation/xcode_ios/SpriteAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/xcode_ios/SpriteAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/SpriteAnimation/xcode_ios/SpriteAnimation_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteAnimation/xcode_ios/SpriteAnimation_Prefix.pch -------------------------------------------------------------------------------- /samples/SpriteSheetGenerator/.gitignore: -------------------------------------------------------------------------------- 1 | assets/ 2 | -------------------------------------------------------------------------------- /samples/SpriteSheetGenerator/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteSheetGenerator/include/Resources.h -------------------------------------------------------------------------------- /samples/SpriteSheetGenerator/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteSheetGenerator/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/SpriteSheetGenerator/src/SpriteSheetGeneratorApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteSheetGenerator/src/SpriteSheetGeneratorApp.cpp -------------------------------------------------------------------------------- /samples/SpriteSheetGenerator/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteSheetGenerator/xcode/Info.plist -------------------------------------------------------------------------------- /samples/SpriteSheetGenerator/xcode/SpriteSheetGenerator.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteSheetGenerator/xcode/SpriteSheetGenerator.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/SpriteSheetGenerator/xcode/SpriteSheetGenerator.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteSheetGenerator/xcode/SpriteSheetGenerator.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /samples/SpriteSheetGenerator/xcode/SpriteSheetGenerator_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/SpriteSheetGenerator/xcode/SpriteSheetGenerator_Prefix.pch -------------------------------------------------------------------------------- /samples/TexturePackingSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/TexturePackingSample.cpp -------------------------------------------------------------------------------- /samples/TexturePackingSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/TexturePackingSample.h -------------------------------------------------------------------------------- /samples/TreentGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/TreentGui.cpp -------------------------------------------------------------------------------- /samples/TreentGui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/TreentGui.h -------------------------------------------------------------------------------- /samples/TreentSample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/TreentSample.cpp -------------------------------------------------------------------------------- /samples/TreentSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/TreentSample.h -------------------------------------------------------------------------------- /samples/_old/SpriteTest/include/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/_old/SpriteTest/include/Resources.h -------------------------------------------------------------------------------- /samples/_old/SpriteTest/resources/CinderApp.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/_old/SpriteTest/resources/CinderApp.icns -------------------------------------------------------------------------------- /samples/_old/SpriteTest/resources/CinderApp_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/_old/SpriteTest/resources/CinderApp_ios.png -------------------------------------------------------------------------------- /samples/_old/SpriteTest/src/SpriteTestApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/_old/SpriteTest/src/SpriteTestApp.cpp -------------------------------------------------------------------------------- /samples/_old/SpriteTest/xcode/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/_old/SpriteTest/xcode/Info.plist -------------------------------------------------------------------------------- /samples/_old/SpriteTest/xcode/SpriteTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/_old/SpriteTest/xcode/SpriteTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/_old/SpriteTest/xcode/SpriteTest_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/_old/SpriteTest/xcode/SpriteTest_Prefix.pch -------------------------------------------------------------------------------- /samples/_old/SpriteTest/xcode_ios/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/_old/SpriteTest/xcode_ios/Default-568h@2x.png -------------------------------------------------------------------------------- /samples/_old/SpriteTest/xcode_ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/_old/SpriteTest/xcode_ios/Info.plist -------------------------------------------------------------------------------- /samples/_old/SpriteTest/xcode_ios/SpriteTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/_old/SpriteTest/xcode_ios/SpriteTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /samples/_old/SpriteTest/xcode_ios/SpriteTest_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/_old/SpriteTest/xcode_ios/SpriteTest_Prefix.pch -------------------------------------------------------------------------------- /samples/_old/shared_assets/sprite_sheet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/_old/shared_assets/sprite_sheet.json -------------------------------------------------------------------------------- /samples/_old/shared_assets/sprite_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/_old/shared_assets/sprite_sheet.png -------------------------------------------------------------------------------- /samples/assets/animations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/assets/animations.json -------------------------------------------------------------------------------- /samples/assets/spritesheet-scanline-pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/assets/spritesheet-scanline-pack.json -------------------------------------------------------------------------------- /samples/assets/spritesheet-scanline-pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/assets/spritesheet-scanline-pack.png -------------------------------------------------------------------------------- /samples/assets/unpacked sprites/broken tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/assets/unpacked sprites/broken tree.jpg -------------------------------------------------------------------------------- /samples/assets/unpacked sprites/chicken of the woods small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/assets/unpacked sprites/chicken of the woods small.jpg -------------------------------------------------------------------------------- /samples/assets/unpacked sprites/chicken of the woods.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/assets/unpacked sprites/chicken of the woods.jpg -------------------------------------------------------------------------------- /samples/assets/unpacked sprites/coral fungus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/assets/unpacked sprites/coral fungus.jpg -------------------------------------------------------------------------------- /samples/assets/unpacked sprites/crowcloud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/assets/unpacked sprites/crowcloud.jpg -------------------------------------------------------------------------------- /samples/assets/unpacked sprites/ice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/assets/unpacked sprites/ice.jpg -------------------------------------------------------------------------------- /samples/assets/unpacked sprites/icelake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/assets/unpacked sprites/icelake.jpg -------------------------------------------------------------------------------- /samples/assets/unpacked sprites/snapped tree small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/assets/unpacked sprites/snapped tree small.jpg -------------------------------------------------------------------------------- /samples/assets/unpacked sprites/snapped tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/assets/unpacked sprites/snapped tree.jpg -------------------------------------------------------------------------------- /samples/assets/unpacked sprites/snowdock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/assets/unpacked sprites/snowdock.jpg -------------------------------------------------------------------------------- /samples/assets/unpacked sprites/snowleaf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/assets/unpacked sprites/snowleaf.jpg -------------------------------------------------------------------------------- /samples/assets/unpacked sprites/snowpine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/assets/unpacked sprites/snowpine.jpg -------------------------------------------------------------------------------- /samples/assets/unpacked sprites/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/samples/assets/unpacked sprites/white.png -------------------------------------------------------------------------------- /screengrabs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /scripts/copy_outside_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/scripts/copy_outside_files.sh -------------------------------------------------------------------------------- /src/archive/blob/ExpandedLine2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/ExpandedLine2d.cpp -------------------------------------------------------------------------------- /src/archive/blob/ExpandedLine2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/ExpandedLine2d.h -------------------------------------------------------------------------------- /src/archive/blob/ExpandedPath2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/ExpandedPath2d.cpp -------------------------------------------------------------------------------- /src/archive/blob/ExpandedPath2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/ExpandedPath2d.h -------------------------------------------------------------------------------- /src/archive/blob/ExpandedPath3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/ExpandedPath3d.cpp -------------------------------------------------------------------------------- /src/archive/blob/ExpandedPath3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/ExpandedPath3d.h -------------------------------------------------------------------------------- /src/archive/blob/Locus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/Locus.cpp -------------------------------------------------------------------------------- /src/archive/blob/Locus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/Locus.h -------------------------------------------------------------------------------- /src/archive/blob/Renderer2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/Renderer2d.cpp -------------------------------------------------------------------------------- /src/archive/blob/Renderer2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/Renderer2d.h -------------------------------------------------------------------------------- /src/archive/blob/SimpleRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/SimpleRenderer.cpp -------------------------------------------------------------------------------- /src/archive/blob/SimpleRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/SimpleRenderer.h -------------------------------------------------------------------------------- /src/archive/blob/Sprite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/Sprite.cpp -------------------------------------------------------------------------------- /src/archive/blob/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/Sprite.h -------------------------------------------------------------------------------- /src/archive/blob/SpriteAnimation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/SpriteAnimation.cpp -------------------------------------------------------------------------------- /src/archive/blob/SpriteAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/SpriteAnimation.h -------------------------------------------------------------------------------- /src/archive/blob/SpriteSheet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/SpriteSheet.cpp -------------------------------------------------------------------------------- /src/archive/blob/SpriteSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/SpriteSheet.h -------------------------------------------------------------------------------- /src/archive/blob/SweptPath3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/SweptPath3d.cpp -------------------------------------------------------------------------------- /src/archive/blob/SweptPath3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/SweptPath3d.h -------------------------------------------------------------------------------- /src/archive/blob/Types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/Types.cpp -------------------------------------------------------------------------------- /src/archive/blob/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/blob/Types.h -------------------------------------------------------------------------------- /src/archive/cobweb/OptionSelector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/cobweb/OptionSelector.cpp -------------------------------------------------------------------------------- /src/archive/cobweb/OptionSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/cobweb/OptionSelector.h -------------------------------------------------------------------------------- /src/archive/cobweb/ScrollPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/cobweb/ScrollPane.cpp -------------------------------------------------------------------------------- /src/archive/cobweb/ScrollPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/cobweb/ScrollPane.h -------------------------------------------------------------------------------- /src/archive/cobweb/SpriteButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/cobweb/SpriteButton.cpp -------------------------------------------------------------------------------- /src/archive/cobweb/SpriteButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/cobweb/SpriteButton.h -------------------------------------------------------------------------------- /src/archive/cobweb/SpriteNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/cobweb/SpriteNode.cpp -------------------------------------------------------------------------------- /src/archive/cobweb/SpriteNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/cobweb/SpriteNode.h -------------------------------------------------------------------------------- /src/archive/cobweb/SpriteToggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/cobweb/SpriteToggle.cpp -------------------------------------------------------------------------------- /src/archive/cobweb/SpriteToggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/cobweb/SpriteToggle.h -------------------------------------------------------------------------------- /src/archive/cobweb/TextPane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/cobweb/TextPane.cpp -------------------------------------------------------------------------------- /src/archive/cobweb/TextPane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/cobweb/TextPane.h -------------------------------------------------------------------------------- /src/archive/pockets/AnimationUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/AnimationUtils.cpp -------------------------------------------------------------------------------- /src/archive/pockets/AnimationUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/AnimationUtils.h -------------------------------------------------------------------------------- /src/archive/pockets/CollectionUtilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/CollectionUtilities.hpp -------------------------------------------------------------------------------- /src/archive/pockets/ColorUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/ColorUtils.cpp -------------------------------------------------------------------------------- /src/archive/pockets/ColorUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/ColorUtils.h -------------------------------------------------------------------------------- /src/archive/pockets/ConnectionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/ConnectionManager.cpp -------------------------------------------------------------------------------- /src/archive/pockets/ConnectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/ConnectionManager.h -------------------------------------------------------------------------------- /src/archive/pockets/CurveUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/CurveUtils.cpp -------------------------------------------------------------------------------- /src/archive/pockets/CurveUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/CurveUtils.h -------------------------------------------------------------------------------- /src/archive/pockets/FileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/FileUtils.cpp -------------------------------------------------------------------------------- /src/archive/pockets/FileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/FileUtils.h -------------------------------------------------------------------------------- /src/archive/pockets/ImagePacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/ImagePacker.cpp -------------------------------------------------------------------------------- /src/archive/pockets/ImagePacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/ImagePacker.h -------------------------------------------------------------------------------- /src/archive/pockets/Locus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/Locus.cpp -------------------------------------------------------------------------------- /src/archive/pockets/Locus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/Locus.h -------------------------------------------------------------------------------- /src/archive/pockets/MessageType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/MessageType.hpp -------------------------------------------------------------------------------- /src/archive/pockets/Messenger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/Messenger.hpp -------------------------------------------------------------------------------- /src/archive/pockets/Packing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/Packing.cpp -------------------------------------------------------------------------------- /src/archive/pockets/Packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/Packing.h -------------------------------------------------------------------------------- /src/archive/pockets/Pockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/Pockets.h -------------------------------------------------------------------------------- /src/archive/pockets/Profiling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/Profiling.cpp -------------------------------------------------------------------------------- /src/archive/pockets/Profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/Profiling.h -------------------------------------------------------------------------------- /src/archive/pockets/Receiver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/Receiver.hpp -------------------------------------------------------------------------------- /src/archive/pockets/RenderMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/RenderMesh.cpp -------------------------------------------------------------------------------- /src/archive/pockets/RenderMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/RenderMesh.h -------------------------------------------------------------------------------- /src/archive/pockets/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/Scene.cpp -------------------------------------------------------------------------------- /src/archive/pockets/Scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/Scene.h -------------------------------------------------------------------------------- /src/archive/pockets/TextureAtlas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/TextureAtlas.cpp -------------------------------------------------------------------------------- /src/archive/pockets/TextureAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/TextureAtlas.h -------------------------------------------------------------------------------- /src/archive/pockets/cobweb/ButtonBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/cobweb/ButtonBase.cpp -------------------------------------------------------------------------------- /src/archive/pockets/cobweb/ButtonBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/cobweb/ButtonBase.h -------------------------------------------------------------------------------- /src/archive/pockets/cobweb/CobWeb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/cobweb/CobWeb.h -------------------------------------------------------------------------------- /src/archive/pockets/cobweb/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/cobweb/Node.cpp -------------------------------------------------------------------------------- /src/archive/pockets/cobweb/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/cobweb/Node.h -------------------------------------------------------------------------------- /src/archive/pockets/cobweb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/cobweb/README.md -------------------------------------------------------------------------------- /src/archive/pockets/cobweb/RootNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/cobweb/RootNode.cpp -------------------------------------------------------------------------------- /src/archive/pockets/cobweb/RootNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/cobweb/RootNode.h -------------------------------------------------------------------------------- /src/archive/pockets/cobweb/ShapeNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/cobweb/ShapeNode.cpp -------------------------------------------------------------------------------- /src/archive/pockets/cobweb/ShapeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/cobweb/ShapeNode.h -------------------------------------------------------------------------------- /src/archive/pockets/cobweb/SimpleButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/cobweb/SimpleButton.cpp -------------------------------------------------------------------------------- /src/archive/pockets/cobweb/SimpleButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/cobweb/SimpleButton.h -------------------------------------------------------------------------------- /src/archive/pockets/cobweb/TextureNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/cobweb/TextureNode.cpp -------------------------------------------------------------------------------- /src/archive/pockets/cobweb/TextureNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/cobweb/TextureNode.h -------------------------------------------------------------------------------- /src/archive/pockets/cobweb/TypeNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/cobweb/TypeNode.cpp -------------------------------------------------------------------------------- /src/archive/pockets/cobweb/TypeNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/cobweb/TypeNode.h -------------------------------------------------------------------------------- /src/archive/pockets/physics/Constraints.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/physics/Constraints.cpp -------------------------------------------------------------------------------- /src/archive/pockets/physics/Constraints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/physics/Constraints.h -------------------------------------------------------------------------------- /src/archive/pockets/physics/Effectors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/physics/Effectors.cpp -------------------------------------------------------------------------------- /src/archive/pockets/physics/Effectors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/physics/Effectors.h -------------------------------------------------------------------------------- /src/archive/pockets/physics/SimplePhysics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/physics/SimplePhysics.h -------------------------------------------------------------------------------- /src/archive/pockets/physics/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/physics/Types.h -------------------------------------------------------------------------------- /src/archive/pockets/physics/World.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/physics/World.cpp -------------------------------------------------------------------------------- /src/archive/pockets/physics/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/physics/World.h -------------------------------------------------------------------------------- /src/archive/pockets/puptent/DelaySystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/DelaySystem.cpp -------------------------------------------------------------------------------- /src/archive/pockets/puptent/DelaySystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/DelaySystem.h -------------------------------------------------------------------------------- /src/archive/pockets/puptent/ExpiresSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/ExpiresSystem.cpp -------------------------------------------------------------------------------- /src/archive/pockets/puptent/ExpiresSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/ExpiresSystem.h -------------------------------------------------------------------------------- /src/archive/pockets/puptent/KeyboardInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/KeyboardInput.cpp -------------------------------------------------------------------------------- /src/archive/pockets/puptent/KeyboardInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/KeyboardInput.h -------------------------------------------------------------------------------- /src/archive/pockets/puptent/LocationComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/LocationComponent.cpp -------------------------------------------------------------------------------- /src/archive/pockets/puptent/LocationComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/LocationComponent.h -------------------------------------------------------------------------------- /src/archive/pockets/puptent/LuaExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/LuaExports.cpp -------------------------------------------------------------------------------- /src/archive/pockets/puptent/LuaExports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/LuaExports.h -------------------------------------------------------------------------------- /src/archive/pockets/puptent/PupTent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/PupTent.h -------------------------------------------------------------------------------- /src/archive/pockets/puptent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/README.md -------------------------------------------------------------------------------- /src/archive/pockets/puptent/RenderMeshComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/RenderMeshComponent.cpp -------------------------------------------------------------------------------- /src/archive/pockets/puptent/RenderMeshComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/RenderMeshComponent.h -------------------------------------------------------------------------------- /src/archive/pockets/puptent/RenderSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/RenderSystem.cpp -------------------------------------------------------------------------------- /src/archive/pockets/puptent/RenderSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/RenderSystem.h -------------------------------------------------------------------------------- /src/archive/pockets/puptent/ScriptSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/ScriptSystem.cpp -------------------------------------------------------------------------------- /src/archive/pockets/puptent/ScriptSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/ScriptSystem.h -------------------------------------------------------------------------------- /src/archive/pockets/puptent/SpriteSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/SpriteSystem.cpp -------------------------------------------------------------------------------- /src/archive/pockets/puptent/SpriteSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/SpriteSystem.h -------------------------------------------------------------------------------- /src/archive/pockets/puptent/VerletMotionSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/VerletMotionSystem.cpp -------------------------------------------------------------------------------- /src/archive/pockets/puptent/VerletMotionSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/pockets/puptent/VerletMotionSystem.h -------------------------------------------------------------------------------- /src/archive/rendering/BatchRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/rendering/BatchRenderer.cpp -------------------------------------------------------------------------------- /src/archive/rendering/BatchRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/rendering/BatchRenderer.h -------------------------------------------------------------------------------- /src/archive/rendering/Locus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/rendering/Locus.cpp -------------------------------------------------------------------------------- /src/archive/rendering/Locus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/rendering/Locus.h -------------------------------------------------------------------------------- /src/archive/rendering/RenderMesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/rendering/RenderMesh.cpp -------------------------------------------------------------------------------- /src/archive/rendering/RenderMesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/rendering/RenderMesh.h -------------------------------------------------------------------------------- /src/archive/thirdparty/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/catch.hpp -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/.gitignore: -------------------------------------------------------------------------------- 1 | *\.in 2 | -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/3rdparty/simplesignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/entityx/3rdparty/simplesignal.h -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/entityx/COPYING -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/Entity.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/entityx/Entity.cc -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/entityx/Entity.h -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/Event.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/entityx/Event.cc -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/entityx/Event.h -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/System.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/entityx/System.cc -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/entityx/System.h -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/entityx/config.h -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/deps/Dependencies.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/entityx/deps/Dependencies.cc -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/deps/Dependencies.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/entityx/deps/Dependencies.h -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/entityx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/entityx/entityx.h -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/help/NonCopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/entityx/help/NonCopyable.h -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/help/Timer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/entityx/help/Timer.cc -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/help/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/entityx/help/Timer.h -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/tags/TagsComponent.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/entityx/tags/TagsComponent.cc -------------------------------------------------------------------------------- /src/archive/thirdparty/entityx/tags/TagsComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/thirdparty/entityx/tags/TagsComponent.h -------------------------------------------------------------------------------- /src/archive/treent/BehaviorSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/BehaviorSystem.cpp -------------------------------------------------------------------------------- /src/archive/treent/BehaviorSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/BehaviorSystem.h -------------------------------------------------------------------------------- /src/archive/treent/Components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/Components.h -------------------------------------------------------------------------------- /src/archive/treent/GuiSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/GuiSystem.cpp -------------------------------------------------------------------------------- /src/archive/treent/GuiSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/GuiSystem.h -------------------------------------------------------------------------------- /src/archive/treent/ImageRenderSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/ImageRenderSystem.cpp -------------------------------------------------------------------------------- /src/archive/treent/ImageRenderSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/ImageRenderSystem.h -------------------------------------------------------------------------------- /src/archive/treent/LayeredShapeRenderSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/LayeredShapeRenderSystem.cpp -------------------------------------------------------------------------------- /src/archive/treent/LayeredShapeRenderSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/LayeredShapeRenderSystem.h -------------------------------------------------------------------------------- /src/archive/treent/LocationComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/LocationComponent.cpp -------------------------------------------------------------------------------- /src/archive/treent/LocationComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/LocationComponent.h -------------------------------------------------------------------------------- /src/archive/treent/Node3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/Node3D.cpp -------------------------------------------------------------------------------- /src/archive/treent/Node3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/Node3D.h -------------------------------------------------------------------------------- /src/archive/treent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/README.md -------------------------------------------------------------------------------- /src/archive/treent/Shape3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/Shape3D.cpp -------------------------------------------------------------------------------- /src/archive/treent/Shape3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/Shape3D.h -------------------------------------------------------------------------------- /src/archive/treent/Shape3DRenderSystem.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/archive/treent/Shape3DRenderSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/Shape3DRenderSystem.h -------------------------------------------------------------------------------- /src/archive/treent/ShapeComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/ShapeComponent.cpp -------------------------------------------------------------------------------- /src/archive/treent/ShapeComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/ShapeComponent.h -------------------------------------------------------------------------------- /src/archive/treent/SizeComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/SizeComponent.cpp -------------------------------------------------------------------------------- /src/archive/treent/SizeComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/SizeComponent.h -------------------------------------------------------------------------------- /src/archive/treent/TextRenderSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/TextRenderSystem.cpp -------------------------------------------------------------------------------- /src/archive/treent/TextRenderSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/TextRenderSystem.h -------------------------------------------------------------------------------- /src/archive/treent/Transform3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/Transform3D.cpp -------------------------------------------------------------------------------- /src/archive/treent/Transform3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/Transform3D.h -------------------------------------------------------------------------------- /src/archive/treent/Treent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/Treent.cpp -------------------------------------------------------------------------------- /src/archive/treent/Treent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/Treent.h -------------------------------------------------------------------------------- /src/archive/treent/TreentNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/TreentNode.cpp -------------------------------------------------------------------------------- /src/archive/treent/TreentNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/archive/treent/TreentNode.h -------------------------------------------------------------------------------- /src/pockets/Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/pockets/Cache.h -------------------------------------------------------------------------------- /src/pockets/CollectionUtilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/pockets/CollectionUtilities.hpp -------------------------------------------------------------------------------- /src/pockets/CollectionViews.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/pockets/CollectionViews.h -------------------------------------------------------------------------------- /src/pockets/CollectionViews.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/pockets/CollectionViews.inl -------------------------------------------------------------------------------- /src/pockets/Pockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/pockets/Pockets.h -------------------------------------------------------------------------------- /src/pockets/SimpleMarkov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/pockets/SimpleMarkov.h -------------------------------------------------------------------------------- /src/pockets/StringUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/pockets/StringUtilities.h -------------------------------------------------------------------------------- /src/pockets/gl/LineRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/pockets/gl/LineRenderer.cpp -------------------------------------------------------------------------------- /src/pockets/gl/LineRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/src/pockets/gl/LineRenderer.h -------------------------------------------------------------------------------- /tests/Pocket_Tests.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/tests/Pocket_Tests.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tests/tests/Iteration_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/tests/tests/Iteration_test.cpp -------------------------------------------------------------------------------- /tests/tests/Markov_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/tests/tests/Markov_test.cpp -------------------------------------------------------------------------------- /tests/tests/Streams_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/tests/tests/Streams_test.cpp -------------------------------------------------------------------------------- /tests/tests/Strings_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/tests/tests/Strings_test.cpp -------------------------------------------------------------------------------- /tests/tests/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/tests/tests/catch.hpp -------------------------------------------------------------------------------- /tests/tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansumbrella/Pockets/HEAD/tests/tests/main.cpp --------------------------------------------------------------------------------