├── .github └── workflows │ ├── ci.yml │ └── ci.yml.tabs ├── Doc ├── Buffers.html ├── Files.html ├── Generator │ ├── Input │ │ ├── Buffers.txt │ │ ├── Files.txt │ │ ├── ImageProcessing.txt │ │ ├── Images.txt │ │ ├── License.txt │ │ ├── Manual.txt │ │ ├── Security.txt │ │ ├── Starting.txt │ │ ├── Strings.txt │ │ ├── StyleGuide.txt │ │ └── Troubleshooting.txt │ ├── Resources │ │ └── Default.css │ ├── build.sh │ ├── gen.sh │ └── main.cpp ├── ImageProcessing.html ├── Images.html ├── Images │ ├── Border.png │ ├── SmallDot.png │ ├── Title.png │ └── Warning.png ├── License.html ├── Manual.html ├── Security.html ├── Starting.html ├── Strings.html ├── StyleGuide.html └── Troubleshooting.html ├── README.md ├── Sandbox.jpg └── Source ├── DFPSR ├── DFPSR.DsrHead ├── History.txt ├── License.txt ├── api │ ├── algorithmAPI.h │ ├── bufferAPI.cpp │ ├── bufferAPI.h │ ├── configAPI.cpp │ ├── configAPI.h │ ├── drawAPI.cpp │ ├── drawAPI.h │ ├── fileAPI.cpp │ ├── fileAPI.h │ ├── filterAPI.cpp │ ├── filterAPI.h │ ├── fontAPI.cpp │ ├── fontAPI.h │ ├── guiAPI.cpp │ ├── guiAPI.h │ ├── imageAPI.cpp │ ├── imageAPI.h │ ├── mediaMachineAPI.cpp │ ├── mediaMachineAPI.h │ ├── modelAPI.cpp │ ├── modelAPI.h │ ├── randomAPI.cpp │ ├── randomAPI.h │ ├── rendererAPI.cpp │ ├── rendererAPI.h │ ├── soundAPI.cpp │ ├── soundAPI.h │ ├── stringAPI.cpp │ ├── stringAPI.h │ ├── textureAPI.cpp │ ├── textureAPI.h │ ├── timeAPI.cpp │ └── timeAPI.h ├── base │ ├── DsrTraits.h │ ├── Handle.h │ ├── SafePointer.cpp │ ├── SafePointer.h │ ├── endian.h │ ├── format.cpp │ ├── format.h │ ├── heap.cpp │ ├── heap.h │ ├── memory.h │ ├── noSimd.h │ ├── simd.h │ ├── simd3D.h │ ├── threading.cpp │ ├── threading.h │ ├── virtualStack.cpp │ └── virtualStack.h ├── collection │ ├── Array.h │ ├── Field.h │ ├── List.h │ ├── collections.cpp │ ├── collections.h │ └── includeCollection.h ├── implementation │ ├── README.md │ ├── font │ │ ├── Font.cpp │ │ ├── Font.h │ │ └── defaultFont.h │ ├── gui │ │ ├── BackendWindow.cpp │ │ ├── BackendWindow.h │ │ ├── DsrWindow.cpp │ │ ├── DsrWindow.h │ │ ├── FlexRegion.cpp │ │ ├── FlexRegion.h │ │ ├── InputEvent.cpp │ │ ├── InputEvent.h │ │ ├── VisualComponent.cpp │ │ ├── VisualComponent.h │ │ ├── VisualTheme.cpp │ │ ├── VisualTheme.h │ │ ├── componentStates.h │ │ └── components │ │ │ ├── Button.cpp │ │ │ ├── Button.h │ │ │ ├── Label.cpp │ │ │ ├── Label.h │ │ │ ├── ListBox.cpp │ │ │ ├── ListBox.h │ │ │ ├── Menu.cpp │ │ │ ├── Menu.h │ │ │ ├── Panel.cpp │ │ │ ├── Panel.h │ │ │ ├── Picture.cpp │ │ │ ├── Picture.h │ │ │ ├── TextBox.cpp │ │ │ ├── TextBox.h │ │ │ ├── Toolbar.cpp │ │ │ ├── Toolbar.h │ │ │ └── helpers │ │ │ ├── ScrollBarImpl.cpp │ │ │ └── ScrollBarImpl.h │ ├── image │ │ ├── Color.h │ │ ├── Image.h │ │ ├── ImageLoader.h │ │ ├── PackOrder.h │ │ ├── Texture.h │ │ └── stbImage │ │ │ ├── stbImageWrapper.cpp │ │ │ ├── stbImageWrapper.h │ │ │ ├── stb_image.h │ │ │ └── stb_image_write.h │ ├── machine │ │ ├── VirtualMachine.cpp │ │ ├── VirtualMachine.h │ │ ├── mediaFilters.cpp │ │ └── mediaFilters.h │ ├── math │ │ └── scalar.h │ ├── persistent │ │ ├── ClassFactory.cpp │ │ ├── ClassFactory.h │ │ ├── atomic │ │ │ ├── PersistentBoolean.cpp │ │ │ ├── PersistentBoolean.h │ │ │ ├── PersistentColor.cpp │ │ │ ├── PersistentColor.h │ │ │ ├── PersistentImage.cpp │ │ │ ├── PersistentImage.h │ │ │ ├── PersistentInteger.cpp │ │ │ ├── PersistentInteger.h │ │ │ ├── PersistentString.cpp │ │ │ ├── PersistentString.h │ │ │ ├── PersistentStringList.cpp │ │ │ └── PersistentStringList.h │ │ └── includePersistent.h │ └── render │ │ ├── Camera.h │ │ ├── ITriangle2D.cpp │ │ ├── ITriangle2D.h │ │ ├── ProjectedPoint.h │ │ ├── ResourcePool.cpp │ │ ├── ResourcePool.h │ │ ├── constants.h │ │ ├── model │ │ ├── Model.cpp │ │ ├── Model.h │ │ ├── format │ │ │ ├── dmf1.cpp │ │ │ └── dmf1.h │ │ └── includeModel.h │ │ ├── renderCore.cpp │ │ ├── renderCore.h │ │ └── shader │ │ ├── RgbaMultiply.h │ │ ├── Shader.h │ │ ├── fillerTemplates.h │ │ ├── includeShader.h │ │ ├── shaderMethods.h │ │ └── shaderTypes.h ├── includeEssentials.h ├── includeFramework.h ├── math │ ├── FMatrix2x2.h │ ├── FMatrix3x3.h │ ├── FPlane3D.h │ ├── FVector.h │ ├── FixedPoint.cpp │ ├── FixedPoint.h │ ├── IRect.h │ ├── IVector.h │ ├── LVector.h │ ├── Transform3D.h │ ├── UVector.h │ ├── includeMath.h │ └── vectorMethods.h └── settings.h ├── README.md ├── SDK ├── SoundEngine │ ├── Envelope.cpp │ ├── Envelope.h │ ├── SoundPlayer.cpp │ ├── SoundPlayer.h │ ├── soundEngine.cpp │ └── soundEngine.h ├── SpriteEngine │ ├── DirtyRectangles.h │ ├── Octree.h │ ├── README.md │ ├── importer.cpp │ ├── importer.h │ ├── lightAPI.cpp │ ├── lightAPI.h │ ├── orthoAPI.cpp │ ├── orthoAPI.h │ ├── spriteAPI.cpp │ └── spriteAPI.h ├── camera │ ├── Camera.DsrProj │ ├── Description.txt │ ├── Preview.jpg │ ├── build.sh │ ├── build_linux.sh │ ├── build_macos.sh │ ├── build_windows.bat │ ├── main.cpp │ └── media │ │ └── Grid.png ├── cube │ ├── Cube.DsrProj │ ├── Description.txt │ ├── Preview.gif │ ├── build.sh │ ├── build_linux.sh │ ├── build_macos.sh │ ├── build_windows.bat │ ├── main.cpp │ └── media │ │ ├── Brick.png │ │ ├── Light.png │ │ ├── Metal.png │ │ ├── MetalReflection.png │ │ ├── Model_Barrel.dmf │ │ ├── Model_Crate.dmf │ │ ├── Model_Test.dmf │ │ ├── Planks.png │ │ ├── RGB.png │ │ ├── Wood.png │ │ └── interface.lof ├── fileFinder │ ├── Description.txt │ ├── FileFinder.DsrProj │ ├── Preview.gif │ ├── build.sh │ ├── build_linux.sh │ ├── build_macos.sh │ ├── build_windows.bat │ ├── main.cpp │ └── পরীক্ষা │ │ ├── Svenska.txt │ │ ├── Թեստ │ │ ├── Թեստ.txt │ │ └── Ֆայլեր │ │ │ └── Փաստաթուղթ.txt │ │ └── 测试 │ │ ├── 公文.txt │ │ └── 诗歌.txt ├── guiExample │ ├── Description.txt │ ├── GuiExample.DsrProj │ ├── Preview.jpg │ ├── build.sh │ ├── build_linux.sh │ ├── build_macos.sh │ ├── build_windows.bat │ ├── main.cpp │ └── media │ │ ├── Alien.png │ │ ├── Drawing.mmc │ │ ├── Style.png │ │ ├── Style.xcf │ │ ├── Theme.ini │ │ └── interface.lof ├── integrationTest │ ├── Description.txt │ ├── IntegrationTest.DsrProj │ ├── Preview.jpg │ ├── Test.cpp │ ├── Test.h │ ├── build_linux.sh │ ├── build_macos.sh │ ├── build_windows.bat │ ├── main.cpp │ └── tests │ │ ├── inputTest.cpp │ │ └── inputTest.h ├── music │ ├── Description.txt │ ├── Music.DsrProj │ ├── Preview.jpg │ ├── Water.wav │ ├── build.sh │ ├── build_linux.sh │ ├── build_macos.sh │ ├── build_windows.bat │ └── main.cpp ├── sandbox │ ├── Description.txt │ ├── Preview.jpg │ ├── Sandbox.DsrProj │ ├── build.sh │ ├── build_linux.sh │ ├── build_macos.sh │ ├── build_windows.bat │ ├── main.cpp │ ├── media │ │ ├── Ortho.ini │ │ ├── gen.sh │ │ ├── images │ │ │ ├── .ini │ │ │ ├── .png │ │ │ ├── Character_Mage.ini │ │ │ ├── Character_Mage.png │ │ │ ├── Floor.ini │ │ │ ├── Floor.png │ │ │ ├── Pillar.ini │ │ │ ├── Pillar.png │ │ │ ├── WoodenBarrel.ini │ │ │ ├── WoodenBarrel.png │ │ │ ├── WoodenFence.ini │ │ │ ├── WoodenFence.png │ │ │ ├── WoodenFloor.ini │ │ │ └── WoodenFloor.png │ │ ├── interface.lof │ │ └── models │ │ │ ├── Barrel.ply │ │ │ ├── Barrel_LowDetail.ply │ │ │ ├── Barrel_Shadow.ply │ │ │ ├── Character_Mage.dsm │ │ │ ├── Character_Mage.ply │ │ │ ├── Character_Mage_Shadow.ply │ │ │ ├── DirtyLog.png │ │ │ ├── Floor.dsm │ │ │ ├── FloorColor.png │ │ │ ├── FloorHeight.gif │ │ │ ├── FloorTileDiffuse.xcf │ │ │ ├── FloorTileHeight.xcf │ │ │ ├── Pillar.dsm │ │ │ ├── Pillar.xcf │ │ │ ├── PillarColor.png │ │ │ ├── PillarHeight.png │ │ │ ├── Planks.xcf │ │ │ ├── PlanksColor.png │ │ │ ├── PlanksHeight.png │ │ │ ├── PlanksRough.png │ │ │ ├── WoodenBarrel.dsm │ │ │ ├── WoodenFence.dsm │ │ │ └── WoodenFloor.dsm │ ├── sandbox.cpp │ └── tool.cpp └── terrain │ ├── Description.txt │ ├── Preview.jpg │ ├── Terrain.DsrProj │ ├── build.sh │ ├── build_linux.sh │ ├── build_macos.sh │ ├── build_windows.bat │ ├── main.cpp │ └── media │ ├── Cloud.png │ ├── HeightMap.png │ ├── HeightMap.xcf │ └── RampIsland.png ├── check.sh ├── soundManagers ├── AlsaSound.cpp ├── CoreAudioSound.cpp ├── NoSound.cpp └── WinMMSound.cpp ├── templates ├── Readme.txt ├── basic3D │ ├── Basic3D.DsrProj │ ├── Description.txt │ ├── Preview.gif │ ├── build_linux.sh │ ├── build_macos.sh │ ├── build_windows.bat │ └── main.cpp ├── basicCLI │ ├── BasicCLI.DsrProj │ ├── Description.txt │ ├── Preview.gif │ ├── build_linux.sh │ ├── build_macos.sh │ ├── build_windows.bat │ └── main.cpp └── basicGUI │ ├── BasicGUI.DsrProj │ ├── Description.txt │ ├── Preview.gif │ ├── build_linux.sh │ ├── build_macos.sh │ ├── build_windows.bat │ └── main.cpp ├── test ├── TestCaller.DsrProj ├── test.sh ├── testCaller.cpp ├── testTools.h ├── test_linux.sh ├── test_macos.sh ├── test_windows.bat └── tests │ ├── ArrayTest.cpp │ ├── BufferTest.cpp │ ├── DataLoopTest.cpp │ ├── DrawTest.cpp │ ├── FieldTest.cpp │ ├── FileTest.cpp │ ├── FixedPointTest.cpp │ ├── FlexTest.cpp │ ├── FormatTest.cpp │ ├── HandleTest.cpp │ ├── ImageProcessingTest.cpp │ ├── ImageTest.cpp │ ├── ListTest.cpp │ ├── PersistentTest.cpp │ ├── PixelTest.cpp │ ├── PlaneTest.cpp │ ├── RandomTest.cpp │ ├── SafePointerTest.cpp │ ├── SimdTest.cpp │ ├── SoundTest.cpp │ ├── StringTest.cpp │ ├── TextEncodingTest.cpp │ ├── TextureTest.cpp │ ├── ThreadTest.cpp │ ├── VectorTest.cpp │ ├── VirtualStackTest.cpp │ └── resources │ ├── BomUtf16Be.txt │ ├── BomUtf16Le.txt │ ├── BomUtf8.txt │ ├── Latin1.txt │ ├── Temporary.txt │ └── sounds │ ├── SineF32.wav │ ├── SineF64.wav │ ├── SineI16.wav │ ├── SineI24.wav │ ├── SineI32.wav │ └── SineU8.wav ├── tools ├── buildScripts │ ├── build.sh │ ├── buildAndRun.sh │ ├── buildLibrary.sh │ └── clean.sh ├── builder │ ├── buildProject.bat │ ├── buildProject.sh │ └── code │ │ ├── Machine.cpp │ │ ├── Machine.h │ │ ├── analyzer.cpp │ │ ├── analyzer.h │ │ ├── builderTypes.h │ │ ├── expression.cpp │ │ ├── expression.h │ │ ├── generator.cpp │ │ ├── generator.h │ │ └── main.cpp ├── processing │ └── cloneProject │ │ ├── Clone.DsrProj │ │ ├── build_linux.sh │ │ ├── build_macos.sh │ │ ├── build_windows.bat │ │ └── main.cpp └── wizard │ ├── Wizard.DsrProj │ ├── build_linux.sh │ ├── build_macos.sh │ ├── build_windows.bat │ ├── main.cpp │ └── media │ ├── Boom.wav │ ├── Drawing.mmc │ ├── Interface.lof │ ├── Style.png │ ├── Style.xcf │ └── Theme.ini └── windowManagers ├── CocoaWindow.mm ├── NoWindow.cpp ├── README.md ├── Win32Window.cpp └── X11Window.cpp /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml.tabs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/.github/workflows/ci.yml.tabs -------------------------------------------------------------------------------- /Doc/Buffers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Buffers.html -------------------------------------------------------------------------------- /Doc/Files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Files.html -------------------------------------------------------------------------------- /Doc/Generator/Input/Buffers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Generator/Input/Buffers.txt -------------------------------------------------------------------------------- /Doc/Generator/Input/Files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Generator/Input/Files.txt -------------------------------------------------------------------------------- /Doc/Generator/Input/ImageProcessing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Generator/Input/ImageProcessing.txt -------------------------------------------------------------------------------- /Doc/Generator/Input/Images.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Generator/Input/Images.txt -------------------------------------------------------------------------------- /Doc/Generator/Input/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Generator/Input/License.txt -------------------------------------------------------------------------------- /Doc/Generator/Input/Manual.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Generator/Input/Manual.txt -------------------------------------------------------------------------------- /Doc/Generator/Input/Security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Generator/Input/Security.txt -------------------------------------------------------------------------------- /Doc/Generator/Input/Starting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Generator/Input/Starting.txt -------------------------------------------------------------------------------- /Doc/Generator/Input/Strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Generator/Input/Strings.txt -------------------------------------------------------------------------------- /Doc/Generator/Input/StyleGuide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Generator/Input/StyleGuide.txt -------------------------------------------------------------------------------- /Doc/Generator/Input/Troubleshooting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Generator/Input/Troubleshooting.txt -------------------------------------------------------------------------------- /Doc/Generator/Resources/Default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Generator/Resources/Default.css -------------------------------------------------------------------------------- /Doc/Generator/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Generator/build.sh -------------------------------------------------------------------------------- /Doc/Generator/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Generator/gen.sh -------------------------------------------------------------------------------- /Doc/Generator/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Generator/main.cpp -------------------------------------------------------------------------------- /Doc/ImageProcessing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/ImageProcessing.html -------------------------------------------------------------------------------- /Doc/Images.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Images.html -------------------------------------------------------------------------------- /Doc/Images/Border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Images/Border.png -------------------------------------------------------------------------------- /Doc/Images/SmallDot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Images/SmallDot.png -------------------------------------------------------------------------------- /Doc/Images/Title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Images/Title.png -------------------------------------------------------------------------------- /Doc/Images/Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Images/Warning.png -------------------------------------------------------------------------------- /Doc/License.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/License.html -------------------------------------------------------------------------------- /Doc/Manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Manual.html -------------------------------------------------------------------------------- /Doc/Security.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Security.html -------------------------------------------------------------------------------- /Doc/Starting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Starting.html -------------------------------------------------------------------------------- /Doc/Strings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Strings.html -------------------------------------------------------------------------------- /Doc/StyleGuide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/StyleGuide.html -------------------------------------------------------------------------------- /Doc/Troubleshooting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Doc/Troubleshooting.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/README.md -------------------------------------------------------------------------------- /Sandbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Sandbox.jpg -------------------------------------------------------------------------------- /Source/DFPSR/DFPSR.DsrHead: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/DFPSR.DsrHead -------------------------------------------------------------------------------- /Source/DFPSR/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/History.txt -------------------------------------------------------------------------------- /Source/DFPSR/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/License.txt -------------------------------------------------------------------------------- /Source/DFPSR/api/algorithmAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/algorithmAPI.h -------------------------------------------------------------------------------- /Source/DFPSR/api/bufferAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/bufferAPI.cpp -------------------------------------------------------------------------------- /Source/DFPSR/api/bufferAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/bufferAPI.h -------------------------------------------------------------------------------- /Source/DFPSR/api/configAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/configAPI.cpp -------------------------------------------------------------------------------- /Source/DFPSR/api/configAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/configAPI.h -------------------------------------------------------------------------------- /Source/DFPSR/api/drawAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/drawAPI.cpp -------------------------------------------------------------------------------- /Source/DFPSR/api/drawAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/drawAPI.h -------------------------------------------------------------------------------- /Source/DFPSR/api/fileAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/fileAPI.cpp -------------------------------------------------------------------------------- /Source/DFPSR/api/fileAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/fileAPI.h -------------------------------------------------------------------------------- /Source/DFPSR/api/filterAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/filterAPI.cpp -------------------------------------------------------------------------------- /Source/DFPSR/api/filterAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/filterAPI.h -------------------------------------------------------------------------------- /Source/DFPSR/api/fontAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/fontAPI.cpp -------------------------------------------------------------------------------- /Source/DFPSR/api/fontAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/fontAPI.h -------------------------------------------------------------------------------- /Source/DFPSR/api/guiAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/guiAPI.cpp -------------------------------------------------------------------------------- /Source/DFPSR/api/guiAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/guiAPI.h -------------------------------------------------------------------------------- /Source/DFPSR/api/imageAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/imageAPI.cpp -------------------------------------------------------------------------------- /Source/DFPSR/api/imageAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/imageAPI.h -------------------------------------------------------------------------------- /Source/DFPSR/api/mediaMachineAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/mediaMachineAPI.cpp -------------------------------------------------------------------------------- /Source/DFPSR/api/mediaMachineAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/mediaMachineAPI.h -------------------------------------------------------------------------------- /Source/DFPSR/api/modelAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/modelAPI.cpp -------------------------------------------------------------------------------- /Source/DFPSR/api/modelAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/modelAPI.h -------------------------------------------------------------------------------- /Source/DFPSR/api/randomAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/randomAPI.cpp -------------------------------------------------------------------------------- /Source/DFPSR/api/randomAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/randomAPI.h -------------------------------------------------------------------------------- /Source/DFPSR/api/rendererAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/rendererAPI.cpp -------------------------------------------------------------------------------- /Source/DFPSR/api/rendererAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/rendererAPI.h -------------------------------------------------------------------------------- /Source/DFPSR/api/soundAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/soundAPI.cpp -------------------------------------------------------------------------------- /Source/DFPSR/api/soundAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/soundAPI.h -------------------------------------------------------------------------------- /Source/DFPSR/api/stringAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/stringAPI.cpp -------------------------------------------------------------------------------- /Source/DFPSR/api/stringAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/stringAPI.h -------------------------------------------------------------------------------- /Source/DFPSR/api/textureAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/textureAPI.cpp -------------------------------------------------------------------------------- /Source/DFPSR/api/textureAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/textureAPI.h -------------------------------------------------------------------------------- /Source/DFPSR/api/timeAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/timeAPI.cpp -------------------------------------------------------------------------------- /Source/DFPSR/api/timeAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/api/timeAPI.h -------------------------------------------------------------------------------- /Source/DFPSR/base/DsrTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/base/DsrTraits.h -------------------------------------------------------------------------------- /Source/DFPSR/base/Handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/base/Handle.h -------------------------------------------------------------------------------- /Source/DFPSR/base/SafePointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/base/SafePointer.cpp -------------------------------------------------------------------------------- /Source/DFPSR/base/SafePointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/base/SafePointer.h -------------------------------------------------------------------------------- /Source/DFPSR/base/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/base/endian.h -------------------------------------------------------------------------------- /Source/DFPSR/base/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/base/format.cpp -------------------------------------------------------------------------------- /Source/DFPSR/base/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/base/format.h -------------------------------------------------------------------------------- /Source/DFPSR/base/heap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/base/heap.cpp -------------------------------------------------------------------------------- /Source/DFPSR/base/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/base/heap.h -------------------------------------------------------------------------------- /Source/DFPSR/base/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/base/memory.h -------------------------------------------------------------------------------- /Source/DFPSR/base/noSimd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/base/noSimd.h -------------------------------------------------------------------------------- /Source/DFPSR/base/simd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/base/simd.h -------------------------------------------------------------------------------- /Source/DFPSR/base/simd3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/base/simd3D.h -------------------------------------------------------------------------------- /Source/DFPSR/base/threading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/base/threading.cpp -------------------------------------------------------------------------------- /Source/DFPSR/base/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/base/threading.h -------------------------------------------------------------------------------- /Source/DFPSR/base/virtualStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/base/virtualStack.cpp -------------------------------------------------------------------------------- /Source/DFPSR/base/virtualStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/base/virtualStack.h -------------------------------------------------------------------------------- /Source/DFPSR/collection/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/collection/Array.h -------------------------------------------------------------------------------- /Source/DFPSR/collection/Field.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/collection/Field.h -------------------------------------------------------------------------------- /Source/DFPSR/collection/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/collection/List.h -------------------------------------------------------------------------------- /Source/DFPSR/collection/collections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/collection/collections.cpp -------------------------------------------------------------------------------- /Source/DFPSR/collection/collections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/collection/collections.h -------------------------------------------------------------------------------- /Source/DFPSR/collection/includeCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/collection/includeCollection.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/README.md -------------------------------------------------------------------------------- /Source/DFPSR/implementation/font/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/font/Font.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/font/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/font/Font.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/font/defaultFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/font/defaultFont.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/BackendWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/BackendWindow.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/BackendWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/BackendWindow.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/DsrWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/DsrWindow.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/DsrWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/DsrWindow.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/FlexRegion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/FlexRegion.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/FlexRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/FlexRegion.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/InputEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/InputEvent.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/InputEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/InputEvent.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/VisualComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/VisualComponent.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/VisualComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/VisualComponent.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/VisualTheme.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/VisualTheme.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/VisualTheme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/VisualTheme.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/componentStates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/componentStates.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/Button.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/Button.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/Label.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/Label.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/ListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/ListBox.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/ListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/ListBox.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/Menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/Menu.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/Menu.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/Panel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/Panel.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/Panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/Panel.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/Picture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/Picture.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/Picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/Picture.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/TextBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/TextBox.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/TextBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/TextBox.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/Toolbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/Toolbar.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/Toolbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/Toolbar.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/helpers/ScrollBarImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/helpers/ScrollBarImpl.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/gui/components/helpers/ScrollBarImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/gui/components/helpers/ScrollBarImpl.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/image/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/image/Color.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/image/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/image/Image.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/image/ImageLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/image/ImageLoader.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/image/PackOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/image/PackOrder.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/image/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/image/Texture.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/image/stbImage/stbImageWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/image/stbImage/stbImageWrapper.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/image/stbImage/stbImageWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/image/stbImage/stbImageWrapper.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/image/stbImage/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/image/stbImage/stb_image.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/image/stbImage/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/image/stbImage/stb_image_write.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/machine/VirtualMachine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/machine/VirtualMachine.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/machine/VirtualMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/machine/VirtualMachine.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/machine/mediaFilters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/machine/mediaFilters.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/machine/mediaFilters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/machine/mediaFilters.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/math/scalar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/math/scalar.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/persistent/ClassFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/persistent/ClassFactory.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/persistent/ClassFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/persistent/ClassFactory.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/persistent/atomic/PersistentBoolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/persistent/atomic/PersistentBoolean.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/persistent/atomic/PersistentBoolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/persistent/atomic/PersistentBoolean.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/persistent/atomic/PersistentColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/persistent/atomic/PersistentColor.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/persistent/atomic/PersistentColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/persistent/atomic/PersistentColor.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/persistent/atomic/PersistentImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/persistent/atomic/PersistentImage.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/persistent/atomic/PersistentImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/persistent/atomic/PersistentImage.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/persistent/atomic/PersistentInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/persistent/atomic/PersistentInteger.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/persistent/atomic/PersistentInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/persistent/atomic/PersistentInteger.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/persistent/atomic/PersistentString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/persistent/atomic/PersistentString.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/persistent/atomic/PersistentString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/persistent/atomic/PersistentString.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/persistent/atomic/PersistentStringList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/persistent/atomic/PersistentStringList.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/persistent/atomic/PersistentStringList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/persistent/atomic/PersistentStringList.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/persistent/includePersistent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/persistent/includePersistent.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/Camera.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/ITriangle2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/ITriangle2D.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/ITriangle2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/ITriangle2D.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/ProjectedPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/ProjectedPoint.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/ResourcePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/ResourcePool.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/ResourcePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/ResourcePool.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/constants.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/model/Model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/model/Model.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/model/Model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/model/Model.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/model/format/dmf1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/model/format/dmf1.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/model/format/dmf1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/model/format/dmf1.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/model/includeModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/model/includeModel.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/renderCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/renderCore.cpp -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/renderCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/renderCore.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/shader/RgbaMultiply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/shader/RgbaMultiply.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/shader/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/shader/Shader.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/shader/fillerTemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/shader/fillerTemplates.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/shader/includeShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/shader/includeShader.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/shader/shaderMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/shader/shaderMethods.h -------------------------------------------------------------------------------- /Source/DFPSR/implementation/render/shader/shaderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/implementation/render/shader/shaderTypes.h -------------------------------------------------------------------------------- /Source/DFPSR/includeEssentials.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/includeEssentials.h -------------------------------------------------------------------------------- /Source/DFPSR/includeFramework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/includeFramework.h -------------------------------------------------------------------------------- /Source/DFPSR/math/FMatrix2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/math/FMatrix2x2.h -------------------------------------------------------------------------------- /Source/DFPSR/math/FMatrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/math/FMatrix3x3.h -------------------------------------------------------------------------------- /Source/DFPSR/math/FPlane3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/math/FPlane3D.h -------------------------------------------------------------------------------- /Source/DFPSR/math/FVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/math/FVector.h -------------------------------------------------------------------------------- /Source/DFPSR/math/FixedPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/math/FixedPoint.cpp -------------------------------------------------------------------------------- /Source/DFPSR/math/FixedPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/math/FixedPoint.h -------------------------------------------------------------------------------- /Source/DFPSR/math/IRect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/math/IRect.h -------------------------------------------------------------------------------- /Source/DFPSR/math/IVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/math/IVector.h -------------------------------------------------------------------------------- /Source/DFPSR/math/LVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/math/LVector.h -------------------------------------------------------------------------------- /Source/DFPSR/math/Transform3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/math/Transform3D.h -------------------------------------------------------------------------------- /Source/DFPSR/math/UVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/math/UVector.h -------------------------------------------------------------------------------- /Source/DFPSR/math/includeMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/math/includeMath.h -------------------------------------------------------------------------------- /Source/DFPSR/math/vectorMethods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/math/vectorMethods.h -------------------------------------------------------------------------------- /Source/DFPSR/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/DFPSR/settings.h -------------------------------------------------------------------------------- /Source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/README.md -------------------------------------------------------------------------------- /Source/SDK/SoundEngine/Envelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/SoundEngine/Envelope.cpp -------------------------------------------------------------------------------- /Source/SDK/SoundEngine/Envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/SoundEngine/Envelope.h -------------------------------------------------------------------------------- /Source/SDK/SoundEngine/SoundPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/SoundEngine/SoundPlayer.cpp -------------------------------------------------------------------------------- /Source/SDK/SoundEngine/SoundPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/SoundEngine/SoundPlayer.h -------------------------------------------------------------------------------- /Source/SDK/SoundEngine/soundEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/SoundEngine/soundEngine.cpp -------------------------------------------------------------------------------- /Source/SDK/SoundEngine/soundEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/SoundEngine/soundEngine.h -------------------------------------------------------------------------------- /Source/SDK/SpriteEngine/DirtyRectangles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/SpriteEngine/DirtyRectangles.h -------------------------------------------------------------------------------- /Source/SDK/SpriteEngine/Octree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/SpriteEngine/Octree.h -------------------------------------------------------------------------------- /Source/SDK/SpriteEngine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/SpriteEngine/README.md -------------------------------------------------------------------------------- /Source/SDK/SpriteEngine/importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/SpriteEngine/importer.cpp -------------------------------------------------------------------------------- /Source/SDK/SpriteEngine/importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/SpriteEngine/importer.h -------------------------------------------------------------------------------- /Source/SDK/SpriteEngine/lightAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/SpriteEngine/lightAPI.cpp -------------------------------------------------------------------------------- /Source/SDK/SpriteEngine/lightAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/SpriteEngine/lightAPI.h -------------------------------------------------------------------------------- /Source/SDK/SpriteEngine/orthoAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/SpriteEngine/orthoAPI.cpp -------------------------------------------------------------------------------- /Source/SDK/SpriteEngine/orthoAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/SpriteEngine/orthoAPI.h -------------------------------------------------------------------------------- /Source/SDK/SpriteEngine/spriteAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/SpriteEngine/spriteAPI.cpp -------------------------------------------------------------------------------- /Source/SDK/SpriteEngine/spriteAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/SpriteEngine/spriteAPI.h -------------------------------------------------------------------------------- /Source/SDK/camera/Camera.DsrProj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/camera/Camera.DsrProj -------------------------------------------------------------------------------- /Source/SDK/camera/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/camera/Description.txt -------------------------------------------------------------------------------- /Source/SDK/camera/Preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/camera/Preview.jpg -------------------------------------------------------------------------------- /Source/SDK/camera/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/camera/build.sh -------------------------------------------------------------------------------- /Source/SDK/camera/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/camera/build_linux.sh -------------------------------------------------------------------------------- /Source/SDK/camera/build_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/camera/build_macos.sh -------------------------------------------------------------------------------- /Source/SDK/camera/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/camera/build_windows.bat -------------------------------------------------------------------------------- /Source/SDK/camera/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/camera/main.cpp -------------------------------------------------------------------------------- /Source/SDK/camera/media/Grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/camera/media/Grid.png -------------------------------------------------------------------------------- /Source/SDK/cube/Cube.DsrProj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/Cube.DsrProj -------------------------------------------------------------------------------- /Source/SDK/cube/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/Description.txt -------------------------------------------------------------------------------- /Source/SDK/cube/Preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/Preview.gif -------------------------------------------------------------------------------- /Source/SDK/cube/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/build.sh -------------------------------------------------------------------------------- /Source/SDK/cube/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/build_linux.sh -------------------------------------------------------------------------------- /Source/SDK/cube/build_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/build_macos.sh -------------------------------------------------------------------------------- /Source/SDK/cube/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/build_windows.bat -------------------------------------------------------------------------------- /Source/SDK/cube/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/main.cpp -------------------------------------------------------------------------------- /Source/SDK/cube/media/Brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/media/Brick.png -------------------------------------------------------------------------------- /Source/SDK/cube/media/Light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/media/Light.png -------------------------------------------------------------------------------- /Source/SDK/cube/media/Metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/media/Metal.png -------------------------------------------------------------------------------- /Source/SDK/cube/media/MetalReflection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/media/MetalReflection.png -------------------------------------------------------------------------------- /Source/SDK/cube/media/Model_Barrel.dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/media/Model_Barrel.dmf -------------------------------------------------------------------------------- /Source/SDK/cube/media/Model_Crate.dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/media/Model_Crate.dmf -------------------------------------------------------------------------------- /Source/SDK/cube/media/Model_Test.dmf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/media/Model_Test.dmf -------------------------------------------------------------------------------- /Source/SDK/cube/media/Planks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/media/Planks.png -------------------------------------------------------------------------------- /Source/SDK/cube/media/RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/media/RGB.png -------------------------------------------------------------------------------- /Source/SDK/cube/media/Wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/media/Wood.png -------------------------------------------------------------------------------- /Source/SDK/cube/media/interface.lof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/cube/media/interface.lof -------------------------------------------------------------------------------- /Source/SDK/fileFinder/Description.txt: -------------------------------------------------------------------------------- 1 | SDK example of how to traverse the filesystem. -------------------------------------------------------------------------------- /Source/SDK/fileFinder/FileFinder.DsrProj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/fileFinder/FileFinder.DsrProj -------------------------------------------------------------------------------- /Source/SDK/fileFinder/Preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/fileFinder/Preview.gif -------------------------------------------------------------------------------- /Source/SDK/fileFinder/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/fileFinder/build.sh -------------------------------------------------------------------------------- /Source/SDK/fileFinder/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/fileFinder/build_linux.sh -------------------------------------------------------------------------------- /Source/SDK/fileFinder/build_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/fileFinder/build_macos.sh -------------------------------------------------------------------------------- /Source/SDK/fileFinder/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/fileFinder/build_windows.bat -------------------------------------------------------------------------------- /Source/SDK/fileFinder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/fileFinder/main.cpp -------------------------------------------------------------------------------- /Source/SDK/fileFinder/পরীক্ষা/Svenska.txt: -------------------------------------------------------------------------------- 1 | Detta är ett test. 2 | abcdefghijklmnopqrstuvwxyzåäö 3 | ABCDEFGHIJKLMNOPQRSTUVWXYZÅÄÖ -------------------------------------------------------------------------------- /Source/SDK/fileFinder/পরীক্ষা/Թեստ/Թեստ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/fileFinder/পরীক্ষা/Թեստ/Թեստ.txt -------------------------------------------------------------------------------- /Source/SDK/fileFinder/পরীক্ষা/Թեստ/Ֆայլեր/Փաստաթուղթ.txt: -------------------------------------------------------------------------------- 1 | Ողջույն -------------------------------------------------------------------------------- /Source/SDK/fileFinder/পরীক্ষা/测试/公文.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/fileFinder/পরীক্ষা/测试/公文.txt -------------------------------------------------------------------------------- /Source/SDK/fileFinder/পরীক্ষা/测试/诗歌.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/fileFinder/পরীক্ষা/测试/诗歌.txt -------------------------------------------------------------------------------- /Source/SDK/guiExample/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/guiExample/Description.txt -------------------------------------------------------------------------------- /Source/SDK/guiExample/GuiExample.DsrProj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/guiExample/GuiExample.DsrProj -------------------------------------------------------------------------------- /Source/SDK/guiExample/Preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/guiExample/Preview.jpg -------------------------------------------------------------------------------- /Source/SDK/guiExample/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/guiExample/build.sh -------------------------------------------------------------------------------- /Source/SDK/guiExample/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/guiExample/build_linux.sh -------------------------------------------------------------------------------- /Source/SDK/guiExample/build_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/guiExample/build_macos.sh -------------------------------------------------------------------------------- /Source/SDK/guiExample/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/guiExample/build_windows.bat -------------------------------------------------------------------------------- /Source/SDK/guiExample/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/guiExample/main.cpp -------------------------------------------------------------------------------- /Source/SDK/guiExample/media/Alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/guiExample/media/Alien.png -------------------------------------------------------------------------------- /Source/SDK/guiExample/media/Drawing.mmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/guiExample/media/Drawing.mmc -------------------------------------------------------------------------------- /Source/SDK/guiExample/media/Style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/guiExample/media/Style.png -------------------------------------------------------------------------------- /Source/SDK/guiExample/media/Style.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/guiExample/media/Style.xcf -------------------------------------------------------------------------------- /Source/SDK/guiExample/media/Theme.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/guiExample/media/Theme.ini -------------------------------------------------------------------------------- /Source/SDK/guiExample/media/interface.lof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/guiExample/media/interface.lof -------------------------------------------------------------------------------- /Source/SDK/integrationTest/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/integrationTest/Description.txt -------------------------------------------------------------------------------- /Source/SDK/integrationTest/IntegrationTest.DsrProj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/integrationTest/IntegrationTest.DsrProj -------------------------------------------------------------------------------- /Source/SDK/integrationTest/Preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/integrationTest/Preview.jpg -------------------------------------------------------------------------------- /Source/SDK/integrationTest/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/integrationTest/Test.cpp -------------------------------------------------------------------------------- /Source/SDK/integrationTest/Test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/integrationTest/Test.h -------------------------------------------------------------------------------- /Source/SDK/integrationTest/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/integrationTest/build_linux.sh -------------------------------------------------------------------------------- /Source/SDK/integrationTest/build_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/integrationTest/build_macos.sh -------------------------------------------------------------------------------- /Source/SDK/integrationTest/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/integrationTest/build_windows.bat -------------------------------------------------------------------------------- /Source/SDK/integrationTest/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/integrationTest/main.cpp -------------------------------------------------------------------------------- /Source/SDK/integrationTest/tests/inputTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/integrationTest/tests/inputTest.cpp -------------------------------------------------------------------------------- /Source/SDK/integrationTest/tests/inputTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/integrationTest/tests/inputTest.h -------------------------------------------------------------------------------- /Source/SDK/music/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/music/Description.txt -------------------------------------------------------------------------------- /Source/SDK/music/Music.DsrProj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/music/Music.DsrProj -------------------------------------------------------------------------------- /Source/SDK/music/Preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/music/Preview.jpg -------------------------------------------------------------------------------- /Source/SDK/music/Water.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/music/Water.wav -------------------------------------------------------------------------------- /Source/SDK/music/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/music/build.sh -------------------------------------------------------------------------------- /Source/SDK/music/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/music/build_linux.sh -------------------------------------------------------------------------------- /Source/SDK/music/build_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/music/build_macos.sh -------------------------------------------------------------------------------- /Source/SDK/music/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/music/build_windows.bat -------------------------------------------------------------------------------- /Source/SDK/music/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/music/main.cpp -------------------------------------------------------------------------------- /Source/SDK/sandbox/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/Description.txt -------------------------------------------------------------------------------- /Source/SDK/sandbox/Preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/Preview.jpg -------------------------------------------------------------------------------- /Source/SDK/sandbox/Sandbox.DsrProj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/Sandbox.DsrProj -------------------------------------------------------------------------------- /Source/SDK/sandbox/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/build.sh -------------------------------------------------------------------------------- /Source/SDK/sandbox/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/build_linux.sh -------------------------------------------------------------------------------- /Source/SDK/sandbox/build_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/build_macos.sh -------------------------------------------------------------------------------- /Source/SDK/sandbox/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/build_windows.bat -------------------------------------------------------------------------------- /Source/SDK/sandbox/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/main.cpp -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/Ortho.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/Ortho.ini -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/gen.sh -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/images/.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/images/.ini -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/images/.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/images/.png -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/images/Character_Mage.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/images/Character_Mage.ini -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/images/Character_Mage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/images/Character_Mage.png -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/images/Floor.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/images/Floor.ini -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/images/Floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/images/Floor.png -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/images/Pillar.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/images/Pillar.ini -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/images/Pillar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/images/Pillar.png -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/images/WoodenBarrel.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/images/WoodenBarrel.ini -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/images/WoodenBarrel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/images/WoodenBarrel.png -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/images/WoodenFence.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/images/WoodenFence.ini -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/images/WoodenFence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/images/WoodenFence.png -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/images/WoodenFloor.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/images/WoodenFloor.ini -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/images/WoodenFloor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/images/WoodenFloor.png -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/interface.lof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/interface.lof -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/Barrel.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/Barrel.ply -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/Barrel_LowDetail.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/Barrel_LowDetail.ply -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/Barrel_Shadow.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/Barrel_Shadow.ply -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/Character_Mage.dsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/Character_Mage.dsm -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/Character_Mage.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/Character_Mage.ply -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/Character_Mage_Shadow.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/Character_Mage_Shadow.ply -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/DirtyLog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/DirtyLog.png -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/Floor.dsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/Floor.dsm -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/FloorColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/FloorColor.png -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/FloorHeight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/FloorHeight.gif -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/FloorTileDiffuse.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/FloorTileDiffuse.xcf -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/FloorTileHeight.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/FloorTileHeight.xcf -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/Pillar.dsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/Pillar.dsm -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/Pillar.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/Pillar.xcf -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/PillarColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/PillarColor.png -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/PillarHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/PillarHeight.png -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/Planks.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/Planks.xcf -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/PlanksColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/PlanksColor.png -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/PlanksHeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/PlanksHeight.png -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/PlanksRough.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/PlanksRough.png -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/WoodenBarrel.dsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/WoodenBarrel.dsm -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/WoodenFence.dsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/WoodenFence.dsm -------------------------------------------------------------------------------- /Source/SDK/sandbox/media/models/WoodenFloor.dsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/media/models/WoodenFloor.dsm -------------------------------------------------------------------------------- /Source/SDK/sandbox/sandbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/sandbox.cpp -------------------------------------------------------------------------------- /Source/SDK/sandbox/tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/sandbox/tool.cpp -------------------------------------------------------------------------------- /Source/SDK/terrain/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/terrain/Description.txt -------------------------------------------------------------------------------- /Source/SDK/terrain/Preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/terrain/Preview.jpg -------------------------------------------------------------------------------- /Source/SDK/terrain/Terrain.DsrProj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/terrain/Terrain.DsrProj -------------------------------------------------------------------------------- /Source/SDK/terrain/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/terrain/build.sh -------------------------------------------------------------------------------- /Source/SDK/terrain/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/terrain/build_linux.sh -------------------------------------------------------------------------------- /Source/SDK/terrain/build_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/terrain/build_macos.sh -------------------------------------------------------------------------------- /Source/SDK/terrain/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/terrain/build_windows.bat -------------------------------------------------------------------------------- /Source/SDK/terrain/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/terrain/main.cpp -------------------------------------------------------------------------------- /Source/SDK/terrain/media/Cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/terrain/media/Cloud.png -------------------------------------------------------------------------------- /Source/SDK/terrain/media/HeightMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/terrain/media/HeightMap.png -------------------------------------------------------------------------------- /Source/SDK/terrain/media/HeightMap.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/terrain/media/HeightMap.xcf -------------------------------------------------------------------------------- /Source/SDK/terrain/media/RampIsland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/SDK/terrain/media/RampIsland.png -------------------------------------------------------------------------------- /Source/check.sh: -------------------------------------------------------------------------------- 1 | cppcheck --enable=warning,performance,portability --std=c++14 . 2 | -------------------------------------------------------------------------------- /Source/soundManagers/AlsaSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/soundManagers/AlsaSound.cpp -------------------------------------------------------------------------------- /Source/soundManagers/CoreAudioSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/soundManagers/CoreAudioSound.cpp -------------------------------------------------------------------------------- /Source/soundManagers/NoSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/soundManagers/NoSound.cpp -------------------------------------------------------------------------------- /Source/soundManagers/WinMMSound.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/soundManagers/WinMMSound.cpp -------------------------------------------------------------------------------- /Source/templates/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/Readme.txt -------------------------------------------------------------------------------- /Source/templates/basic3D/Basic3D.DsrProj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basic3D/Basic3D.DsrProj -------------------------------------------------------------------------------- /Source/templates/basic3D/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basic3D/Description.txt -------------------------------------------------------------------------------- /Source/templates/basic3D/Preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basic3D/Preview.gif -------------------------------------------------------------------------------- /Source/templates/basic3D/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basic3D/build_linux.sh -------------------------------------------------------------------------------- /Source/templates/basic3D/build_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basic3D/build_macos.sh -------------------------------------------------------------------------------- /Source/templates/basic3D/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basic3D/build_windows.bat -------------------------------------------------------------------------------- /Source/templates/basic3D/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basic3D/main.cpp -------------------------------------------------------------------------------- /Source/templates/basicCLI/BasicCLI.DsrProj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basicCLI/BasicCLI.DsrProj -------------------------------------------------------------------------------- /Source/templates/basicCLI/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basicCLI/Description.txt -------------------------------------------------------------------------------- /Source/templates/basicCLI/Preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basicCLI/Preview.gif -------------------------------------------------------------------------------- /Source/templates/basicCLI/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basicCLI/build_linux.sh -------------------------------------------------------------------------------- /Source/templates/basicCLI/build_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basicCLI/build_macos.sh -------------------------------------------------------------------------------- /Source/templates/basicCLI/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basicCLI/build_windows.bat -------------------------------------------------------------------------------- /Source/templates/basicCLI/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basicCLI/main.cpp -------------------------------------------------------------------------------- /Source/templates/basicGUI/BasicGUI.DsrProj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basicGUI/BasicGUI.DsrProj -------------------------------------------------------------------------------- /Source/templates/basicGUI/Description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basicGUI/Description.txt -------------------------------------------------------------------------------- /Source/templates/basicGUI/Preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basicGUI/Preview.gif -------------------------------------------------------------------------------- /Source/templates/basicGUI/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basicGUI/build_linux.sh -------------------------------------------------------------------------------- /Source/templates/basicGUI/build_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basicGUI/build_macos.sh -------------------------------------------------------------------------------- /Source/templates/basicGUI/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basicGUI/build_windows.bat -------------------------------------------------------------------------------- /Source/templates/basicGUI/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/templates/basicGUI/main.cpp -------------------------------------------------------------------------------- /Source/test/TestCaller.DsrProj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/TestCaller.DsrProj -------------------------------------------------------------------------------- /Source/test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/test.sh -------------------------------------------------------------------------------- /Source/test/testCaller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/testCaller.cpp -------------------------------------------------------------------------------- /Source/test/testTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/testTools.h -------------------------------------------------------------------------------- /Source/test/test_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/test_linux.sh -------------------------------------------------------------------------------- /Source/test/test_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/test_macos.sh -------------------------------------------------------------------------------- /Source/test/test_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/test_windows.bat -------------------------------------------------------------------------------- /Source/test/tests/ArrayTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/ArrayTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/BufferTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/BufferTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/DataLoopTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/DataLoopTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/DrawTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/DrawTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/FieldTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/FieldTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/FileTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/FileTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/FixedPointTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/FixedPointTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/FlexTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/FlexTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/FormatTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/FormatTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/HandleTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/HandleTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/ImageProcessingTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/ImageProcessingTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/ImageTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/ImageTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/ListTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/ListTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/PersistentTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/PersistentTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/PixelTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/PixelTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/PlaneTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/PlaneTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/RandomTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/RandomTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/SafePointerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/SafePointerTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/SimdTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/SimdTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/SoundTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/SoundTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/StringTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/StringTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/TextEncodingTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/TextEncodingTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/TextureTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/TextureTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/ThreadTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/ThreadTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/VectorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/VectorTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/VirtualStackTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/VirtualStackTest.cpp -------------------------------------------------------------------------------- /Source/test/tests/resources/BomUtf16Be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/resources/BomUtf16Be.txt -------------------------------------------------------------------------------- /Source/test/tests/resources/BomUtf16Le.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/resources/BomUtf16Le.txt -------------------------------------------------------------------------------- /Source/test/tests/resources/BomUtf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/resources/BomUtf8.txt -------------------------------------------------------------------------------- /Source/test/tests/resources/Latin1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/resources/Latin1.txt -------------------------------------------------------------------------------- /Source/test/tests/resources/Temporary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/resources/Temporary.txt -------------------------------------------------------------------------------- /Source/test/tests/resources/sounds/SineF32.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/resources/sounds/SineF32.wav -------------------------------------------------------------------------------- /Source/test/tests/resources/sounds/SineF64.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/resources/sounds/SineF64.wav -------------------------------------------------------------------------------- /Source/test/tests/resources/sounds/SineI16.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/resources/sounds/SineI16.wav -------------------------------------------------------------------------------- /Source/test/tests/resources/sounds/SineI24.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/resources/sounds/SineI24.wav -------------------------------------------------------------------------------- /Source/test/tests/resources/sounds/SineI32.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/resources/sounds/SineI32.wav -------------------------------------------------------------------------------- /Source/test/tests/resources/sounds/SineU8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/test/tests/resources/sounds/SineU8.wav -------------------------------------------------------------------------------- /Source/tools/buildScripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/buildScripts/build.sh -------------------------------------------------------------------------------- /Source/tools/buildScripts/buildAndRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/buildScripts/buildAndRun.sh -------------------------------------------------------------------------------- /Source/tools/buildScripts/buildLibrary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/buildScripts/buildLibrary.sh -------------------------------------------------------------------------------- /Source/tools/buildScripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/buildScripts/clean.sh -------------------------------------------------------------------------------- /Source/tools/builder/buildProject.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/builder/buildProject.bat -------------------------------------------------------------------------------- /Source/tools/builder/buildProject.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/builder/buildProject.sh -------------------------------------------------------------------------------- /Source/tools/builder/code/Machine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/builder/code/Machine.cpp -------------------------------------------------------------------------------- /Source/tools/builder/code/Machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/builder/code/Machine.h -------------------------------------------------------------------------------- /Source/tools/builder/code/analyzer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/builder/code/analyzer.cpp -------------------------------------------------------------------------------- /Source/tools/builder/code/analyzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/builder/code/analyzer.h -------------------------------------------------------------------------------- /Source/tools/builder/code/builderTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/builder/code/builderTypes.h -------------------------------------------------------------------------------- /Source/tools/builder/code/expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/builder/code/expression.cpp -------------------------------------------------------------------------------- /Source/tools/builder/code/expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/builder/code/expression.h -------------------------------------------------------------------------------- /Source/tools/builder/code/generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/builder/code/generator.cpp -------------------------------------------------------------------------------- /Source/tools/builder/code/generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/builder/code/generator.h -------------------------------------------------------------------------------- /Source/tools/builder/code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/builder/code/main.cpp -------------------------------------------------------------------------------- /Source/tools/processing/cloneProject/Clone.DsrProj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/processing/cloneProject/Clone.DsrProj -------------------------------------------------------------------------------- /Source/tools/processing/cloneProject/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/processing/cloneProject/build_linux.sh -------------------------------------------------------------------------------- /Source/tools/processing/cloneProject/build_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/processing/cloneProject/build_macos.sh -------------------------------------------------------------------------------- /Source/tools/processing/cloneProject/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/processing/cloneProject/build_windows.bat -------------------------------------------------------------------------------- /Source/tools/processing/cloneProject/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/processing/cloneProject/main.cpp -------------------------------------------------------------------------------- /Source/tools/wizard/Wizard.DsrProj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/wizard/Wizard.DsrProj -------------------------------------------------------------------------------- /Source/tools/wizard/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/wizard/build_linux.sh -------------------------------------------------------------------------------- /Source/tools/wizard/build_macos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/wizard/build_macos.sh -------------------------------------------------------------------------------- /Source/tools/wizard/build_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/wizard/build_windows.bat -------------------------------------------------------------------------------- /Source/tools/wizard/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/wizard/main.cpp -------------------------------------------------------------------------------- /Source/tools/wizard/media/Boom.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/wizard/media/Boom.wav -------------------------------------------------------------------------------- /Source/tools/wizard/media/Drawing.mmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/wizard/media/Drawing.mmc -------------------------------------------------------------------------------- /Source/tools/wizard/media/Interface.lof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/wizard/media/Interface.lof -------------------------------------------------------------------------------- /Source/tools/wizard/media/Style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/wizard/media/Style.png -------------------------------------------------------------------------------- /Source/tools/wizard/media/Style.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/wizard/media/Style.xcf -------------------------------------------------------------------------------- /Source/tools/wizard/media/Theme.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/tools/wizard/media/Theme.ini -------------------------------------------------------------------------------- /Source/windowManagers/CocoaWindow.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/windowManagers/CocoaWindow.mm -------------------------------------------------------------------------------- /Source/windowManagers/NoWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/windowManagers/NoWindow.cpp -------------------------------------------------------------------------------- /Source/windowManagers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/windowManagers/README.md -------------------------------------------------------------------------------- /Source/windowManagers/Win32Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/windowManagers/Win32Window.cpp -------------------------------------------------------------------------------- /Source/windowManagers/X11Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dawoodoz/DFPSR/HEAD/Source/windowManagers/X11Window.cpp --------------------------------------------------------------------------------