├── .gitignore ├── Clips ├── Grayscale.jpg └── Movie on 1-12-20 at 7.35 PM.mov ├── Config.h ├── Experiments ├── Copy Cat │ └── CopyCat.h ├── Crank Drawing │ └── CrankDrawing.h ├── Dithering │ ├── Dithering.h │ └── PlaydateHD.h ├── Grayscale │ ├── Grayscale.h │ ├── GrayscaleSprite.h │ └── Sprite.h ├── Icosohedron │ └── Icosohedron.h ├── Labyrinth │ └── Labyrinth.h ├── Music Box │ └── MusicBox.h ├── Phonograph │ └── Phonograph.h ├── Sample App │ └── SampleApplication.h ├── Snake │ └── Snake.h ├── Symbol Finder │ └── SymbolFinder.h └── Tests │ └── TestsApplication.h ├── Grayscale.pdx.zip ├── Grayscale.pdx ├── pdex.bin └── pdxinfo ├── GrayscaleSprite.pdx.zip ├── GrayscaleSprite.pdx ├── pdex.bin └── pdxinfo ├── ImageProcessor └── ImageProcessor │ ├── ImageProcessor.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── ImageProcessor │ └── main.m ├── Makefile ├── Mini 3D ├── 3dmath.c ├── 3dmath.h ├── mini3d.c ├── mini3d.h ├── render.c ├── render.h ├── scene.c ├── scene.h ├── shape.c └── shape.h ├── Playdate ├── Playdate.cpp └── Playdate.h ├── PlaydateNative.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── PlaydateNative Device.xcscheme │ └── PlaydateNative Simulator.xcscheme ├── Source ├── face.png ├── face.psd ├── face1.png ├── mouth0.png ├── mouth1.png ├── mouth2.png ├── mouth3.png ├── mouth4.png ├── musicbox.wav └── pdxinfo ├── SuperMarioBros.png └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/.gitignore -------------------------------------------------------------------------------- /Clips/Grayscale.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Clips/Grayscale.jpg -------------------------------------------------------------------------------- /Clips/Movie on 1-12-20 at 7.35 PM.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Clips/Movie on 1-12-20 at 7.35 PM.mov -------------------------------------------------------------------------------- /Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Config.h -------------------------------------------------------------------------------- /Experiments/Copy Cat/CopyCat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Experiments/Copy Cat/CopyCat.h -------------------------------------------------------------------------------- /Experiments/Crank Drawing/CrankDrawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Experiments/Crank Drawing/CrankDrawing.h -------------------------------------------------------------------------------- /Experiments/Dithering/Dithering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Experiments/Dithering/Dithering.h -------------------------------------------------------------------------------- /Experiments/Dithering/PlaydateHD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Experiments/Dithering/PlaydateHD.h -------------------------------------------------------------------------------- /Experiments/Grayscale/Grayscale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Experiments/Grayscale/Grayscale.h -------------------------------------------------------------------------------- /Experiments/Grayscale/GrayscaleSprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Experiments/Grayscale/GrayscaleSprite.h -------------------------------------------------------------------------------- /Experiments/Grayscale/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Experiments/Grayscale/Sprite.h -------------------------------------------------------------------------------- /Experiments/Icosohedron/Icosohedron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Experiments/Icosohedron/Icosohedron.h -------------------------------------------------------------------------------- /Experiments/Labyrinth/Labyrinth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Experiments/Labyrinth/Labyrinth.h -------------------------------------------------------------------------------- /Experiments/Music Box/MusicBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Experiments/Music Box/MusicBox.h -------------------------------------------------------------------------------- /Experiments/Phonograph/Phonograph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Experiments/Phonograph/Phonograph.h -------------------------------------------------------------------------------- /Experiments/Sample App/SampleApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Experiments/Sample App/SampleApplication.h -------------------------------------------------------------------------------- /Experiments/Snake/Snake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Experiments/Snake/Snake.h -------------------------------------------------------------------------------- /Experiments/Symbol Finder/SymbolFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Experiments/Symbol Finder/SymbolFinder.h -------------------------------------------------------------------------------- /Experiments/Tests/TestsApplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Experiments/Tests/TestsApplication.h -------------------------------------------------------------------------------- /Grayscale.pdx.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Grayscale.pdx.zip -------------------------------------------------------------------------------- /Grayscale.pdx/pdex.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Grayscale.pdx/pdex.bin -------------------------------------------------------------------------------- /Grayscale.pdx/pdxinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Grayscale.pdx/pdxinfo -------------------------------------------------------------------------------- /GrayscaleSprite.pdx.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/GrayscaleSprite.pdx.zip -------------------------------------------------------------------------------- /GrayscaleSprite.pdx/pdex.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/GrayscaleSprite.pdx/pdex.bin -------------------------------------------------------------------------------- /GrayscaleSprite.pdx/pdxinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/GrayscaleSprite.pdx/pdxinfo -------------------------------------------------------------------------------- /ImageProcessor/ImageProcessor/ImageProcessor.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/ImageProcessor/ImageProcessor/ImageProcessor.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ImageProcessor/ImageProcessor/ImageProcessor.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/ImageProcessor/ImageProcessor/ImageProcessor.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ImageProcessor/ImageProcessor/ImageProcessor.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/ImageProcessor/ImageProcessor/ImageProcessor.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ImageProcessor/ImageProcessor/ImageProcessor/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/ImageProcessor/ImageProcessor/ImageProcessor/main.m -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Makefile -------------------------------------------------------------------------------- /Mini 3D/3dmath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Mini 3D/3dmath.c -------------------------------------------------------------------------------- /Mini 3D/3dmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Mini 3D/3dmath.h -------------------------------------------------------------------------------- /Mini 3D/mini3d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Mini 3D/mini3d.c -------------------------------------------------------------------------------- /Mini 3D/mini3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Mini 3D/mini3d.h -------------------------------------------------------------------------------- /Mini 3D/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Mini 3D/render.c -------------------------------------------------------------------------------- /Mini 3D/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Mini 3D/render.h -------------------------------------------------------------------------------- /Mini 3D/scene.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Mini 3D/scene.c -------------------------------------------------------------------------------- /Mini 3D/scene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Mini 3D/scene.h -------------------------------------------------------------------------------- /Mini 3D/shape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Mini 3D/shape.c -------------------------------------------------------------------------------- /Mini 3D/shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Mini 3D/shape.h -------------------------------------------------------------------------------- /Playdate/Playdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Playdate/Playdate.cpp -------------------------------------------------------------------------------- /Playdate/Playdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Playdate/Playdate.h -------------------------------------------------------------------------------- /PlaydateNative.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/PlaydateNative.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PlaydateNative.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/PlaydateNative.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PlaydateNative.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/PlaydateNative.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /PlaydateNative.xcodeproj/xcshareddata/xcschemes/PlaydateNative Device.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/PlaydateNative.xcodeproj/xcshareddata/xcschemes/PlaydateNative Device.xcscheme -------------------------------------------------------------------------------- /PlaydateNative.xcodeproj/xcshareddata/xcschemes/PlaydateNative Simulator.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/PlaydateNative.xcodeproj/xcshareddata/xcschemes/PlaydateNative Simulator.xcscheme -------------------------------------------------------------------------------- /Source/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Source/face.png -------------------------------------------------------------------------------- /Source/face.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Source/face.psd -------------------------------------------------------------------------------- /Source/face1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Source/face1.png -------------------------------------------------------------------------------- /Source/mouth0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Source/mouth0.png -------------------------------------------------------------------------------- /Source/mouth1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Source/mouth1.png -------------------------------------------------------------------------------- /Source/mouth2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Source/mouth2.png -------------------------------------------------------------------------------- /Source/mouth3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Source/mouth3.png -------------------------------------------------------------------------------- /Source/mouth4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Source/mouth4.png -------------------------------------------------------------------------------- /Source/musicbox.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Source/musicbox.wav -------------------------------------------------------------------------------- /Source/pdxinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/Source/pdxinfo -------------------------------------------------------------------------------- /SuperMarioBros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/SuperMarioBros.png -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxweisel/PlaydateNative/HEAD/main.cpp --------------------------------------------------------------------------------