├── .gitignore ├── embedded_tunes ├── Virgill-Forsaken.h ├── galactic_emeralds.h ├── joey_splif-pantsomime.h ├── lb-peanuts.h ├── m0d_-_incognito_crust.h ├── syphus-freeside_run.h ├── syphus-sweeties.h └── testing123.h ├── fonts.c ├── hvl_replay.c ├── hvl_replay.h ├── macOS ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Ico128pt.png │ │ ├── Ico128pt@2x.png │ │ ├── Ico16pt.png │ │ ├── Ico16pt@2x.png │ │ ├── Ico256pt.png │ │ ├── Ico256pt@2x.png │ │ ├── Ico32pt.png │ │ ├── Ico32pt@2x.png │ │ ├── Ico512pt.png │ │ └── Ico512pt@2x.png │ └── Contents.json ├── Planet-Hively-Info.plist ├── Planet-Hively.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Planet_Hively.entitlements ├── SDLMain.h └── SDLMain.m ├── main.c ├── main.h ├── makefile ├── porting_guide.txt ├── render.c ├── render.h ├── scrollbox.c ├── shapes.c ├── shapes.h ├── text.c ├── text.h └── types.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/.gitignore -------------------------------------------------------------------------------- /embedded_tunes/Virgill-Forsaken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/embedded_tunes/Virgill-Forsaken.h -------------------------------------------------------------------------------- /embedded_tunes/galactic_emeralds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/embedded_tunes/galactic_emeralds.h -------------------------------------------------------------------------------- /embedded_tunes/joey_splif-pantsomime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/embedded_tunes/joey_splif-pantsomime.h -------------------------------------------------------------------------------- /embedded_tunes/lb-peanuts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/embedded_tunes/lb-peanuts.h -------------------------------------------------------------------------------- /embedded_tunes/m0d_-_incognito_crust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/embedded_tunes/m0d_-_incognito_crust.h -------------------------------------------------------------------------------- /embedded_tunes/syphus-freeside_run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/embedded_tunes/syphus-freeside_run.h -------------------------------------------------------------------------------- /embedded_tunes/syphus-sweeties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/embedded_tunes/syphus-sweeties.h -------------------------------------------------------------------------------- /embedded_tunes/testing123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/embedded_tunes/testing123.h -------------------------------------------------------------------------------- /fonts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/fonts.c -------------------------------------------------------------------------------- /hvl_replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/hvl_replay.c -------------------------------------------------------------------------------- /hvl_replay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/hvl_replay.h -------------------------------------------------------------------------------- /macOS/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /macOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macOS/Assets.xcassets/AppIcon.appiconset/Ico128pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Assets.xcassets/AppIcon.appiconset/Ico128pt.png -------------------------------------------------------------------------------- /macOS/Assets.xcassets/AppIcon.appiconset/Ico128pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Assets.xcassets/AppIcon.appiconset/Ico128pt@2x.png -------------------------------------------------------------------------------- /macOS/Assets.xcassets/AppIcon.appiconset/Ico16pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Assets.xcassets/AppIcon.appiconset/Ico16pt.png -------------------------------------------------------------------------------- /macOS/Assets.xcassets/AppIcon.appiconset/Ico16pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Assets.xcassets/AppIcon.appiconset/Ico16pt@2x.png -------------------------------------------------------------------------------- /macOS/Assets.xcassets/AppIcon.appiconset/Ico256pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Assets.xcassets/AppIcon.appiconset/Ico256pt.png -------------------------------------------------------------------------------- /macOS/Assets.xcassets/AppIcon.appiconset/Ico256pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Assets.xcassets/AppIcon.appiconset/Ico256pt@2x.png -------------------------------------------------------------------------------- /macOS/Assets.xcassets/AppIcon.appiconset/Ico32pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Assets.xcassets/AppIcon.appiconset/Ico32pt.png -------------------------------------------------------------------------------- /macOS/Assets.xcassets/AppIcon.appiconset/Ico32pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Assets.xcassets/AppIcon.appiconset/Ico32pt@2x.png -------------------------------------------------------------------------------- /macOS/Assets.xcassets/AppIcon.appiconset/Ico512pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Assets.xcassets/AppIcon.appiconset/Ico512pt.png -------------------------------------------------------------------------------- /macOS/Assets.xcassets/AppIcon.appiconset/Ico512pt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Assets.xcassets/AppIcon.appiconset/Ico512pt@2x.png -------------------------------------------------------------------------------- /macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /macOS/Planet-Hively-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Planet-Hively-Info.plist -------------------------------------------------------------------------------- /macOS/Planet-Hively.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Planet-Hively.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macOS/Planet-Hively.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Planet-Hively.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macOS/Planet-Hively.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Planet-Hively.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macOS/Planet_Hively.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/Planet_Hively.entitlements -------------------------------------------------------------------------------- /macOS/SDLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/SDLMain.h -------------------------------------------------------------------------------- /macOS/SDLMain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/macOS/SDLMain.m -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/main.c -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/main.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/makefile -------------------------------------------------------------------------------- /porting_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/porting_guide.txt -------------------------------------------------------------------------------- /render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/render.c -------------------------------------------------------------------------------- /render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/render.h -------------------------------------------------------------------------------- /scrollbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/scrollbox.c -------------------------------------------------------------------------------- /shapes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/shapes.c -------------------------------------------------------------------------------- /shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/shapes.h -------------------------------------------------------------------------------- /text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/text.c -------------------------------------------------------------------------------- /text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/text.h -------------------------------------------------------------------------------- /types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pete-gordon/planet-hively/HEAD/types.h --------------------------------------------------------------------------------