├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── jarRepositories.xml └── misc.xml ├── 2d ├── 2d.xcodeproj │ └── project.pbxproj ├── CMakeLists.txt ├── bitblt.c ├── bitmap.c ├── box.c ├── canvas.c ├── circle.c ├── clip.h ├── disc.c ├── effect2d.h ├── effects.c ├── effects.h ├── font.c ├── gpixel.c ├── gr.c ├── gr.h ├── grdef.h ├── ibitblt.c ├── ibitblt.h ├── lbitblt.c ├── line.c ├── linear.c ├── macstubs.c ├── ogles │ ├── CMakeLists.txt │ ├── bitbltogles.c │ ├── bitbltogles.h │ ├── fontogles.c │ ├── fontogles.h │ ├── rectogles.c │ ├── rectogles.h │ ├── scaleogles.c │ └── scaleogles.h ├── paging.h ├── palette.c ├── palette.h ├── pcx.c ├── pcx.h ├── pixel.c ├── poly.c ├── rect.c ├── rle.c ├── rle.h ├── scale.c └── scanline.c ├── 3d ├── 3d.h ├── 3d.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── CMakeLists.txt ├── clipper.c ├── clipper.h ├── draw.c ├── globvars.c ├── globvars.h ├── instance.c ├── interp.c ├── matrix.c ├── ogles │ ├── CMakeLists.txt │ ├── drawogles.c │ ├── drawogles.h │ ├── rodogles.c │ ├── rodogles.h │ ├── setupogles.c │ └── setupogles.h ├── points.c ├── rod.c ├── setup.c ├── upvecs.c └── upvecs2.c ├── COPYING ├── Descent2-Mobile.xcworkspace └── contents.xcworkspacedata ├── Descent2 ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── 120-1.png │ │ ├── 120.png │ │ ├── 152.png │ │ ├── 167.png │ │ ├── 180.png │ │ ├── 29.png │ │ ├── 40.png │ │ ├── 58-1.png │ │ ├── 58.png │ │ ├── 76.png │ │ ├── 80-1.png │ │ ├── 80.png │ │ ├── 87.png │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ ├── Main-iPad.storyboard │ └── Main.storyboard ├── ControlsView.h ├── ControlsView.m ├── Data │ └── merlin_silver.sf2 ├── Descent2.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── Descent II (OpenGL ES).xcscheme │ │ └── Descent II (Software).xcscheme ├── Info.plist ├── Motion.h ├── Motion.m ├── Music.h ├── Music.m ├── RenderView.h ├── RenderView.m ├── ViewController.h ├── ViewController.m ├── ViewControllerC.h ├── ViewControllerC.m ├── build.gradle ├── main.m └── src │ └── main │ ├── .DS_Store │ ├── AndroidManifest.xml │ ├── assets │ └── .gitkeep │ ├── cpp │ ├── CMakeLists.txt │ ├── controls.c │ ├── keyboard.c │ ├── main.c │ ├── motion.c │ ├── mouse.c │ ├── music.c │ └── render.c │ ├── java │ └── tuchsen │ │ └── descent2 │ │ ├── DescentActivity.java │ │ └── DescentView.java │ └── res │ ├── mipmap-anydpi-v26 │ └── ic_launcher.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.webp │ └── ic_launcher_foreground.webp │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.webp │ └── ic_launcher_foreground.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.webp │ └── ic_launcher_foreground.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.webp │ └── ic_launcher_foreground.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_background.webp │ └── ic_launcher_foreground.webp │ ├── values-v27 │ └── styles.xml │ └── values │ ├── strings.xml │ └── styles.xml ├── GPL-3 ├── README.md ├── cfile ├── CMakeLists.txt ├── cfile.c ├── cfile.h ├── cfile.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── nocfile.h ├── fix ├── CMakeLists.txt ├── fix.c ├── fix.h ├── fix.xcodeproj │ └── project.pbxproj └── tables.c ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── iff ├── CMakeLists.txt ├── iff.c ├── iff.h ├── iff.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── vesa.h ├── io ├── CMakeLists.txt ├── dpmi.c ├── dpmi.h ├── error.h ├── io.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── ipx.c ├── ipx.h ├── joy.c ├── joy.h ├── key.c ├── key.h ├── mono.c ├── mono.h ├── mouse.c ├── mouse.h ├── swiftcfg.h ├── timer.c └── timer.h ├── libmve ├── CMakeLists.txt ├── decoder16.c ├── decoder8.c ├── decoders.h ├── libmve.h ├── libmve.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── mveaudio.c ├── mveaudio.h ├── mvelib.c ├── mvelib.h └── mveplay.c ├── main ├── 3dfx.c ├── 3dfx_des.h ├── CMakeLists.txt ├── ai.c ├── ai.h ├── ai2.c ├── aipath.c ├── aistruct.h ├── android │ ├── CMakeLists.txt │ ├── digi.c │ └── hmp.c ├── automap.c ├── automap.h ├── bm.c ├── bm.h ├── bmread.c ├── bmread.h ├── cdmix32.c ├── cntrlcen.c ├── cntrlcen.h ├── collide.c ├── collide.h ├── compbit.h ├── config.c ├── config.h ├── controls.c ├── controls.h ├── credits.c ├── credits.h ├── crypt.c ├── desc_id.h ├── desw.h ├── digi.h ├── dumpmine.c ├── effects.c ├── effects.h ├── endlevel.c ├── endlevel.h ├── escort.c ├── files.h ├── fireball.c ├── fireball.h ├── fuelcen.c ├── fuelcen.h ├── fvi.c ├── fvi.h ├── game.c ├── game.h ├── gamecntl.c ├── gamefont.c ├── gamefont.h ├── gamemine.c ├── gamemine.h ├── gamepal.c ├── gamepal.h ├── gamerend.c ├── gamesave.c ├── gamesave.h ├── gameseg.c ├── gameseg.h ├── gameseq.c ├── gameseq.h ├── gamestat.h ├── gauges.c ├── gauges.h ├── hmp.c ├── hmp.h ├── hostage.c ├── hostage.h ├── hud.c ├── iglasses.c ├── iglasses.h ├── inferno.c ├── inferno.h ├── ios │ ├── digi.c │ └── hmp.c ├── joydefs.c ├── joydefs.h ├── kconfig.c ├── kconfig.h ├── kmatrix.c ├── kmatrix.h ├── laser.c ├── laser.h ├── lighting.c ├── lighting.h ├── main.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── menu.c ├── menu.h ├── mglobal.c ├── mission.c ├── mission.h ├── modem.c ├── modem.h ├── morph.c ├── morph.h ├── movie.c ├── movie.h ├── multi.c ├── multi.h ├── multibot.c ├── multibot.h ├── netmisc.c ├── netmisc.h ├── network.c ├── network.h ├── newdemo.c ├── newdemo.h ├── newmenu.c ├── newmenu.h ├── object.c ├── object.h ├── paging.c ├── paging.h ├── physics.c ├── physics.h ├── piggy.c ├── piggy.h ├── player.h ├── playsave.c ├── playsave.h ├── polyobj.c ├── polyobj.h ├── powerup.c ├── powerup.h ├── render.c ├── render.h ├── robot.c ├── robot.h ├── scores.c ├── scores.h ├── screens.h ├── segment.h ├── segpoint.h ├── settings.h ├── slew.c ├── slew.h ├── songs.c ├── songs.h ├── sounds.h ├── state.c ├── state.h ├── switch.c ├── switch.h ├── terrain.c ├── terrain.h ├── texmerge.c ├── texmerge.h ├── text.c ├── text.h ├── textures.h ├── titles.c ├── titles.h ├── vclip.c ├── vclip.h ├── vers_id.h ├── vfx.c ├── vfx.h ├── victor.c ├── victor.h ├── wall.c ├── wall.h ├── weapon.c └── weapon.h ├── mem ├── CMakeLists.txt ├── mem.c ├── mem.h └── mem.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ └── contents.xcworkspacedata ├── misc ├── CMakeLists.txt ├── args.c ├── args.h ├── byteswap.c ├── byteswap.h ├── debug.h ├── error.c ├── fileutil.h ├── hash.c ├── hash.h ├── misc.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── parsarg.c ├── parsarg.h ├── stdlib.c ├── strutil.c ├── strutil.h └── types.h ├── pa_null ├── CMakeLists.txt ├── pa_enabl.h ├── pa_null.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── poly_acc.c ├── poly_acc.h └── pstypes.h ├── settings.gradle ├── texmap ├── CMakeLists.txt ├── ntmap.c ├── ntmapout.h ├── ogles │ ├── CMakeLists.txt │ ├── oglestex.c │ └── oglestex.h ├── scanline.c ├── scanline.h ├── texmap.h ├── texmap.xcodeproj │ └── project.pbxproj ├── texmapl.h └── tmapflat.c ├── ui ├── CMakeLists.txt ├── barbox.c ├── button.c ├── checkbox.c ├── file.c ├── func.c ├── func.h ├── gadget.c ├── icon.c ├── inputbox.c ├── keypad.c ├── keypress.c ├── keytrap.c ├── listbox.c ├── menu.c ├── menubar.c ├── message.c ├── mouse.c ├── number.c ├── popup.c ├── radio.c ├── scroll.c ├── ui.c ├── ui.h ├── ui.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── uidraw.c ├── userbox.c └── window.c └── vecmat ├── CMakeLists.txt ├── vecmat.h ├── vecmat.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── vecmatc.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /2d/2d.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/2d.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /2d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/CMakeLists.txt -------------------------------------------------------------------------------- /2d/bitblt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/bitblt.c -------------------------------------------------------------------------------- /2d/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/bitmap.c -------------------------------------------------------------------------------- /2d/box.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/box.c -------------------------------------------------------------------------------- /2d/canvas.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/canvas.c -------------------------------------------------------------------------------- /2d/circle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/circle.c -------------------------------------------------------------------------------- /2d/clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/clip.h -------------------------------------------------------------------------------- /2d/disc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/disc.c -------------------------------------------------------------------------------- /2d/effect2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/effect2d.h -------------------------------------------------------------------------------- /2d/effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/effects.c -------------------------------------------------------------------------------- /2d/effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/effects.h -------------------------------------------------------------------------------- /2d/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/font.c -------------------------------------------------------------------------------- /2d/gpixel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/gpixel.c -------------------------------------------------------------------------------- /2d/gr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/gr.c -------------------------------------------------------------------------------- /2d/gr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/gr.h -------------------------------------------------------------------------------- /2d/grdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/grdef.h -------------------------------------------------------------------------------- /2d/ibitblt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/ibitblt.c -------------------------------------------------------------------------------- /2d/ibitblt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/ibitblt.h -------------------------------------------------------------------------------- /2d/lbitblt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/lbitblt.c -------------------------------------------------------------------------------- /2d/line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/line.c -------------------------------------------------------------------------------- /2d/linear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/linear.c -------------------------------------------------------------------------------- /2d/macstubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/macstubs.c -------------------------------------------------------------------------------- /2d/ogles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/ogles/CMakeLists.txt -------------------------------------------------------------------------------- /2d/ogles/bitbltogles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/ogles/bitbltogles.c -------------------------------------------------------------------------------- /2d/ogles/bitbltogles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/ogles/bitbltogles.h -------------------------------------------------------------------------------- /2d/ogles/fontogles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/ogles/fontogles.c -------------------------------------------------------------------------------- /2d/ogles/fontogles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/ogles/fontogles.h -------------------------------------------------------------------------------- /2d/ogles/rectogles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/ogles/rectogles.c -------------------------------------------------------------------------------- /2d/ogles/rectogles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/ogles/rectogles.h -------------------------------------------------------------------------------- /2d/ogles/scaleogles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/ogles/scaleogles.c -------------------------------------------------------------------------------- /2d/ogles/scaleogles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/ogles/scaleogles.h -------------------------------------------------------------------------------- /2d/paging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/paging.h -------------------------------------------------------------------------------- /2d/palette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/palette.c -------------------------------------------------------------------------------- /2d/palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/palette.h -------------------------------------------------------------------------------- /2d/pcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/pcx.c -------------------------------------------------------------------------------- /2d/pcx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/pcx.h -------------------------------------------------------------------------------- /2d/pixel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/pixel.c -------------------------------------------------------------------------------- /2d/poly.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/poly.c -------------------------------------------------------------------------------- /2d/rect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/rect.c -------------------------------------------------------------------------------- /2d/rle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/rle.c -------------------------------------------------------------------------------- /2d/rle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/rle.h -------------------------------------------------------------------------------- /2d/scale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/scale.c -------------------------------------------------------------------------------- /2d/scanline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/2d/scanline.c -------------------------------------------------------------------------------- /3d/3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/3d.h -------------------------------------------------------------------------------- /3d/3d.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/3d.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /3d/3d.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/3d.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /3d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/CMakeLists.txt -------------------------------------------------------------------------------- /3d/clipper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/clipper.c -------------------------------------------------------------------------------- /3d/clipper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/clipper.h -------------------------------------------------------------------------------- /3d/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/draw.c -------------------------------------------------------------------------------- /3d/globvars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/globvars.c -------------------------------------------------------------------------------- /3d/globvars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/globvars.h -------------------------------------------------------------------------------- /3d/instance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/instance.c -------------------------------------------------------------------------------- /3d/interp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/interp.c -------------------------------------------------------------------------------- /3d/matrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/matrix.c -------------------------------------------------------------------------------- /3d/ogles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/ogles/CMakeLists.txt -------------------------------------------------------------------------------- /3d/ogles/drawogles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/ogles/drawogles.c -------------------------------------------------------------------------------- /3d/ogles/drawogles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/ogles/drawogles.h -------------------------------------------------------------------------------- /3d/ogles/rodogles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/ogles/rodogles.c -------------------------------------------------------------------------------- /3d/ogles/rodogles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/ogles/rodogles.h -------------------------------------------------------------------------------- /3d/ogles/setupogles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/ogles/setupogles.c -------------------------------------------------------------------------------- /3d/ogles/setupogles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/ogles/setupogles.h -------------------------------------------------------------------------------- /3d/points.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/points.c -------------------------------------------------------------------------------- /3d/rod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/rod.c -------------------------------------------------------------------------------- /3d/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/setup.c -------------------------------------------------------------------------------- /3d/upvecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/upvecs.c -------------------------------------------------------------------------------- /3d/upvecs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/3d/upvecs2.c -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/COPYING -------------------------------------------------------------------------------- /Descent2-Mobile.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2-Mobile.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Descent2/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/AppDelegate.h -------------------------------------------------------------------------------- /Descent2/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/AppDelegate.m -------------------------------------------------------------------------------- /Descent2/Assets.xcassets/AppIcon.appiconset/120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Assets.xcassets/AppIcon.appiconset/120-1.png -------------------------------------------------------------------------------- /Descent2/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /Descent2/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /Descent2/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /Descent2/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /Descent2/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /Descent2/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /Descent2/Assets.xcassets/AppIcon.appiconset/58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Assets.xcassets/AppIcon.appiconset/58-1.png -------------------------------------------------------------------------------- /Descent2/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /Descent2/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /Descent2/Assets.xcassets/AppIcon.appiconset/80-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Assets.xcassets/AppIcon.appiconset/80-1.png -------------------------------------------------------------------------------- /Descent2/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /Descent2/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /Descent2/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Descent2/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Descent2/Base.lproj/Main-iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Base.lproj/Main-iPad.storyboard -------------------------------------------------------------------------------- /Descent2/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Descent2/ControlsView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/ControlsView.h -------------------------------------------------------------------------------- /Descent2/ControlsView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/ControlsView.m -------------------------------------------------------------------------------- /Descent2/Data/merlin_silver.sf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Data/merlin_silver.sf2 -------------------------------------------------------------------------------- /Descent2/Descent2.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Descent2.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Descent2/Descent2.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Descent2.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Descent2/Descent2.xcodeproj/xcshareddata/xcschemes/Descent II (OpenGL ES).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Descent2.xcodeproj/xcshareddata/xcschemes/Descent II (OpenGL ES).xcscheme -------------------------------------------------------------------------------- /Descent2/Descent2.xcodeproj/xcshareddata/xcschemes/Descent II (Software).xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Descent2.xcodeproj/xcshareddata/xcschemes/Descent II (Software).xcscheme -------------------------------------------------------------------------------- /Descent2/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Info.plist -------------------------------------------------------------------------------- /Descent2/Motion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Motion.h -------------------------------------------------------------------------------- /Descent2/Motion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Motion.m -------------------------------------------------------------------------------- /Descent2/Music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Music.h -------------------------------------------------------------------------------- /Descent2/Music.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/Music.m -------------------------------------------------------------------------------- /Descent2/RenderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/RenderView.h -------------------------------------------------------------------------------- /Descent2/RenderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/RenderView.m -------------------------------------------------------------------------------- /Descent2/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/ViewController.h -------------------------------------------------------------------------------- /Descent2/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/ViewController.m -------------------------------------------------------------------------------- /Descent2/ViewControllerC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/ViewControllerC.h -------------------------------------------------------------------------------- /Descent2/ViewControllerC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/ViewControllerC.m -------------------------------------------------------------------------------- /Descent2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/build.gradle -------------------------------------------------------------------------------- /Descent2/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/main.m -------------------------------------------------------------------------------- /Descent2/src/main/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/.DS_Store -------------------------------------------------------------------------------- /Descent2/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Descent2/src/main/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Descent2/src/main/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /Descent2/src/main/cpp/controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/cpp/controls.c -------------------------------------------------------------------------------- /Descent2/src/main/cpp/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/cpp/keyboard.c -------------------------------------------------------------------------------- /Descent2/src/main/cpp/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/cpp/main.c -------------------------------------------------------------------------------- /Descent2/src/main/cpp/motion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/cpp/motion.c -------------------------------------------------------------------------------- /Descent2/src/main/cpp/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/cpp/mouse.c -------------------------------------------------------------------------------- /Descent2/src/main/cpp/music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/cpp/music.c -------------------------------------------------------------------------------- /Descent2/src/main/cpp/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/cpp/render.c -------------------------------------------------------------------------------- /Descent2/src/main/java/tuchsen/descent2/DescentActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/java/tuchsen/descent2/DescentActivity.java -------------------------------------------------------------------------------- /Descent2/src/main/java/tuchsen/descent2/DescentView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/java/tuchsen/descent2/DescentView.java -------------------------------------------------------------------------------- /Descent2/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /Descent2/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Descent2/src/main/res/mipmap-hdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/mipmap-hdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /Descent2/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /Descent2/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Descent2/src/main/res/mipmap-mdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/mipmap-mdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /Descent2/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /Descent2/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Descent2/src/main/res/mipmap-xhdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/mipmap-xhdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /Descent2/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /Descent2/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Descent2/src/main/res/mipmap-xxhdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/mipmap-xxhdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /Descent2/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /Descent2/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Descent2/src/main/res/mipmap-xxxhdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/mipmap-xxxhdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /Descent2/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /Descent2/src/main/res/values-v27/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/values-v27/styles.xml -------------------------------------------------------------------------------- /Descent2/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Descent2/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/Descent2/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /GPL-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/GPL-3 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/README.md -------------------------------------------------------------------------------- /cfile/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/cfile/CMakeLists.txt -------------------------------------------------------------------------------- /cfile/cfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/cfile/cfile.c -------------------------------------------------------------------------------- /cfile/cfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/cfile/cfile.h -------------------------------------------------------------------------------- /cfile/cfile.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/cfile/cfile.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /cfile/cfile.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/cfile/cfile.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /cfile/nocfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/cfile/nocfile.h -------------------------------------------------------------------------------- /fix/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/fix/CMakeLists.txt -------------------------------------------------------------------------------- /fix/fix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/fix/fix.c -------------------------------------------------------------------------------- /fix/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/fix/fix.h -------------------------------------------------------------------------------- /fix/fix.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/fix/fix.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /fix/tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/fix/tables.c -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx2048m 2 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/gradlew.bat -------------------------------------------------------------------------------- /iff/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_library(iff STATIC iff.c) 2 | -------------------------------------------------------------------------------- /iff/iff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/iff/iff.c -------------------------------------------------------------------------------- /iff/iff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/iff/iff.h -------------------------------------------------------------------------------- /iff/iff.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/iff/iff.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /iff/iff.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/iff/iff.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /iff/vesa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/iff/vesa.h -------------------------------------------------------------------------------- /io/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/CMakeLists.txt -------------------------------------------------------------------------------- /io/dpmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/dpmi.c -------------------------------------------------------------------------------- /io/dpmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/dpmi.h -------------------------------------------------------------------------------- /io/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/error.h -------------------------------------------------------------------------------- /io/io.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/io.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /io/io.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/io.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /io/ipx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/ipx.c -------------------------------------------------------------------------------- /io/ipx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/ipx.h -------------------------------------------------------------------------------- /io/joy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/joy.c -------------------------------------------------------------------------------- /io/joy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/joy.h -------------------------------------------------------------------------------- /io/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/key.c -------------------------------------------------------------------------------- /io/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/key.h -------------------------------------------------------------------------------- /io/mono.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/mono.c -------------------------------------------------------------------------------- /io/mono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/mono.h -------------------------------------------------------------------------------- /io/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/mouse.c -------------------------------------------------------------------------------- /io/mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/mouse.h -------------------------------------------------------------------------------- /io/swiftcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/swiftcfg.h -------------------------------------------------------------------------------- /io/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/timer.c -------------------------------------------------------------------------------- /io/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/io/timer.h -------------------------------------------------------------------------------- /libmve/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/libmve/CMakeLists.txt -------------------------------------------------------------------------------- /libmve/decoder16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/libmve/decoder16.c -------------------------------------------------------------------------------- /libmve/decoder8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/libmve/decoder8.c -------------------------------------------------------------------------------- /libmve/decoders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/libmve/decoders.h -------------------------------------------------------------------------------- /libmve/libmve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/libmve/libmve.h -------------------------------------------------------------------------------- /libmve/libmve.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/libmve/libmve.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /libmve/libmve.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/libmve/libmve.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /libmve/mveaudio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/libmve/mveaudio.c -------------------------------------------------------------------------------- /libmve/mveaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/libmve/mveaudio.h -------------------------------------------------------------------------------- /libmve/mvelib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/libmve/mvelib.c -------------------------------------------------------------------------------- /libmve/mvelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/libmve/mvelib.h -------------------------------------------------------------------------------- /libmve/mveplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/libmve/mveplay.c -------------------------------------------------------------------------------- /main/3dfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/3dfx.c -------------------------------------------------------------------------------- /main/3dfx_des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/3dfx_des.h -------------------------------------------------------------------------------- /main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/CMakeLists.txt -------------------------------------------------------------------------------- /main/ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/ai.c -------------------------------------------------------------------------------- /main/ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/ai.h -------------------------------------------------------------------------------- /main/ai2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/ai2.c -------------------------------------------------------------------------------- /main/aipath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/aipath.c -------------------------------------------------------------------------------- /main/aistruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/aistruct.h -------------------------------------------------------------------------------- /main/android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/android/CMakeLists.txt -------------------------------------------------------------------------------- /main/android/digi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/android/digi.c -------------------------------------------------------------------------------- /main/android/hmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/android/hmp.c -------------------------------------------------------------------------------- /main/automap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/automap.c -------------------------------------------------------------------------------- /main/automap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/automap.h -------------------------------------------------------------------------------- /main/bm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/bm.c -------------------------------------------------------------------------------- /main/bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/bm.h -------------------------------------------------------------------------------- /main/bmread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/bmread.c -------------------------------------------------------------------------------- /main/bmread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/bmread.h -------------------------------------------------------------------------------- /main/cdmix32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/cdmix32.c -------------------------------------------------------------------------------- /main/cntrlcen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/cntrlcen.c -------------------------------------------------------------------------------- /main/cntrlcen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/cntrlcen.h -------------------------------------------------------------------------------- /main/collide.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/collide.c -------------------------------------------------------------------------------- /main/collide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/collide.h -------------------------------------------------------------------------------- /main/compbit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/compbit.h -------------------------------------------------------------------------------- /main/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/config.c -------------------------------------------------------------------------------- /main/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/config.h -------------------------------------------------------------------------------- /main/controls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/controls.c -------------------------------------------------------------------------------- /main/controls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/controls.h -------------------------------------------------------------------------------- /main/credits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/credits.c -------------------------------------------------------------------------------- /main/credits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/credits.h -------------------------------------------------------------------------------- /main/crypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/crypt.c -------------------------------------------------------------------------------- /main/desc_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/desc_id.h -------------------------------------------------------------------------------- /main/desw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/desw.h -------------------------------------------------------------------------------- /main/digi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/digi.h -------------------------------------------------------------------------------- /main/dumpmine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/dumpmine.c -------------------------------------------------------------------------------- /main/effects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/effects.c -------------------------------------------------------------------------------- /main/effects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/effects.h -------------------------------------------------------------------------------- /main/endlevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/endlevel.c -------------------------------------------------------------------------------- /main/endlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/endlevel.h -------------------------------------------------------------------------------- /main/escort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/escort.c -------------------------------------------------------------------------------- /main/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/files.h -------------------------------------------------------------------------------- /main/fireball.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/fireball.c -------------------------------------------------------------------------------- /main/fireball.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/fireball.h -------------------------------------------------------------------------------- /main/fuelcen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/fuelcen.c -------------------------------------------------------------------------------- /main/fuelcen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/fuelcen.h -------------------------------------------------------------------------------- /main/fvi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/fvi.c -------------------------------------------------------------------------------- /main/fvi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/fvi.h -------------------------------------------------------------------------------- /main/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/game.c -------------------------------------------------------------------------------- /main/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/game.h -------------------------------------------------------------------------------- /main/gamecntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/gamecntl.c -------------------------------------------------------------------------------- /main/gamefont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/gamefont.c -------------------------------------------------------------------------------- /main/gamefont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/gamefont.h -------------------------------------------------------------------------------- /main/gamemine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/gamemine.c -------------------------------------------------------------------------------- /main/gamemine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/gamemine.h -------------------------------------------------------------------------------- /main/gamepal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/gamepal.c -------------------------------------------------------------------------------- /main/gamepal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/gamepal.h -------------------------------------------------------------------------------- /main/gamerend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/gamerend.c -------------------------------------------------------------------------------- /main/gamesave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/gamesave.c -------------------------------------------------------------------------------- /main/gamesave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/gamesave.h -------------------------------------------------------------------------------- /main/gameseg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/gameseg.c -------------------------------------------------------------------------------- /main/gameseg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/gameseg.h -------------------------------------------------------------------------------- /main/gameseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/gameseq.c -------------------------------------------------------------------------------- /main/gameseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/gameseq.h -------------------------------------------------------------------------------- /main/gamestat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/gamestat.h -------------------------------------------------------------------------------- /main/gauges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/gauges.c -------------------------------------------------------------------------------- /main/gauges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/gauges.h -------------------------------------------------------------------------------- /main/hmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/hmp.c -------------------------------------------------------------------------------- /main/hmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/hmp.h -------------------------------------------------------------------------------- /main/hostage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/hostage.c -------------------------------------------------------------------------------- /main/hostage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/hostage.h -------------------------------------------------------------------------------- /main/hud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/hud.c -------------------------------------------------------------------------------- /main/iglasses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/iglasses.c -------------------------------------------------------------------------------- /main/iglasses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/iglasses.h -------------------------------------------------------------------------------- /main/inferno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/inferno.c -------------------------------------------------------------------------------- /main/inferno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/inferno.h -------------------------------------------------------------------------------- /main/ios/digi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/ios/digi.c -------------------------------------------------------------------------------- /main/ios/hmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/ios/hmp.c -------------------------------------------------------------------------------- /main/joydefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/joydefs.c -------------------------------------------------------------------------------- /main/joydefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/joydefs.h -------------------------------------------------------------------------------- /main/kconfig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/kconfig.c -------------------------------------------------------------------------------- /main/kconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/kconfig.h -------------------------------------------------------------------------------- /main/kmatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/kmatrix.c -------------------------------------------------------------------------------- /main/kmatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/kmatrix.h -------------------------------------------------------------------------------- /main/laser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/laser.c -------------------------------------------------------------------------------- /main/laser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/laser.h -------------------------------------------------------------------------------- /main/lighting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/lighting.c -------------------------------------------------------------------------------- /main/lighting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/lighting.h -------------------------------------------------------------------------------- /main/main.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/main.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /main/main.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/main.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /main/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/menu.c -------------------------------------------------------------------------------- /main/menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/menu.h -------------------------------------------------------------------------------- /main/mglobal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/mglobal.c -------------------------------------------------------------------------------- /main/mission.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/mission.c -------------------------------------------------------------------------------- /main/mission.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/mission.h -------------------------------------------------------------------------------- /main/modem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/modem.c -------------------------------------------------------------------------------- /main/modem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/modem.h -------------------------------------------------------------------------------- /main/morph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/morph.c -------------------------------------------------------------------------------- /main/morph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/morph.h -------------------------------------------------------------------------------- /main/movie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/movie.c -------------------------------------------------------------------------------- /main/movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/movie.h -------------------------------------------------------------------------------- /main/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/multi.c -------------------------------------------------------------------------------- /main/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/multi.h -------------------------------------------------------------------------------- /main/multibot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/multibot.c -------------------------------------------------------------------------------- /main/multibot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/multibot.h -------------------------------------------------------------------------------- /main/netmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/netmisc.c -------------------------------------------------------------------------------- /main/netmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/netmisc.h -------------------------------------------------------------------------------- /main/network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/network.c -------------------------------------------------------------------------------- /main/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/network.h -------------------------------------------------------------------------------- /main/newdemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/newdemo.c -------------------------------------------------------------------------------- /main/newdemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/newdemo.h -------------------------------------------------------------------------------- /main/newmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/newmenu.c -------------------------------------------------------------------------------- /main/newmenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/newmenu.h -------------------------------------------------------------------------------- /main/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/object.c -------------------------------------------------------------------------------- /main/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/object.h -------------------------------------------------------------------------------- /main/paging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/paging.c -------------------------------------------------------------------------------- /main/paging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/paging.h -------------------------------------------------------------------------------- /main/physics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/physics.c -------------------------------------------------------------------------------- /main/physics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/physics.h -------------------------------------------------------------------------------- /main/piggy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/piggy.c -------------------------------------------------------------------------------- /main/piggy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/piggy.h -------------------------------------------------------------------------------- /main/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/player.h -------------------------------------------------------------------------------- /main/playsave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/playsave.c -------------------------------------------------------------------------------- /main/playsave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/playsave.h -------------------------------------------------------------------------------- /main/polyobj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/polyobj.c -------------------------------------------------------------------------------- /main/polyobj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/polyobj.h -------------------------------------------------------------------------------- /main/powerup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/powerup.c -------------------------------------------------------------------------------- /main/powerup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/powerup.h -------------------------------------------------------------------------------- /main/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/render.c -------------------------------------------------------------------------------- /main/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/render.h -------------------------------------------------------------------------------- /main/robot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/robot.c -------------------------------------------------------------------------------- /main/robot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/robot.h -------------------------------------------------------------------------------- /main/scores.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/scores.c -------------------------------------------------------------------------------- /main/scores.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/scores.h -------------------------------------------------------------------------------- /main/screens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/screens.h -------------------------------------------------------------------------------- /main/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/segment.h -------------------------------------------------------------------------------- /main/segpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/segpoint.h -------------------------------------------------------------------------------- /main/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/settings.h -------------------------------------------------------------------------------- /main/slew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/slew.c -------------------------------------------------------------------------------- /main/slew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/slew.h -------------------------------------------------------------------------------- /main/songs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/songs.c -------------------------------------------------------------------------------- /main/songs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/songs.h -------------------------------------------------------------------------------- /main/sounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/sounds.h -------------------------------------------------------------------------------- /main/state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/state.c -------------------------------------------------------------------------------- /main/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/state.h -------------------------------------------------------------------------------- /main/switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/switch.c -------------------------------------------------------------------------------- /main/switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/switch.h -------------------------------------------------------------------------------- /main/terrain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/terrain.c -------------------------------------------------------------------------------- /main/terrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/terrain.h -------------------------------------------------------------------------------- /main/texmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/texmerge.c -------------------------------------------------------------------------------- /main/texmerge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/texmerge.h -------------------------------------------------------------------------------- /main/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/text.c -------------------------------------------------------------------------------- /main/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/text.h -------------------------------------------------------------------------------- /main/textures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/textures.h -------------------------------------------------------------------------------- /main/titles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/titles.c -------------------------------------------------------------------------------- /main/titles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/titles.h -------------------------------------------------------------------------------- /main/vclip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/vclip.c -------------------------------------------------------------------------------- /main/vclip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/vclip.h -------------------------------------------------------------------------------- /main/vers_id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/vers_id.h -------------------------------------------------------------------------------- /main/vfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/vfx.c -------------------------------------------------------------------------------- /main/vfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/vfx.h -------------------------------------------------------------------------------- /main/victor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/victor.c -------------------------------------------------------------------------------- /main/victor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/victor.h -------------------------------------------------------------------------------- /main/wall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/wall.c -------------------------------------------------------------------------------- /main/wall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/wall.h -------------------------------------------------------------------------------- /main/weapon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/weapon.c -------------------------------------------------------------------------------- /main/weapon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/main/weapon.h -------------------------------------------------------------------------------- /mem/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_library(mem STATIC mem.c) 2 | -------------------------------------------------------------------------------- /mem/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/mem/mem.c -------------------------------------------------------------------------------- /mem/mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/mem/mem.h -------------------------------------------------------------------------------- /mem/mem.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/mem/mem.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /mem/mem.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/mem/mem.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /misc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/CMakeLists.txt -------------------------------------------------------------------------------- /misc/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/args.c -------------------------------------------------------------------------------- /misc/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/args.h -------------------------------------------------------------------------------- /misc/byteswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/byteswap.c -------------------------------------------------------------------------------- /misc/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/byteswap.h -------------------------------------------------------------------------------- /misc/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/debug.h -------------------------------------------------------------------------------- /misc/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/error.c -------------------------------------------------------------------------------- /misc/fileutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/fileutil.h -------------------------------------------------------------------------------- /misc/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/hash.c -------------------------------------------------------------------------------- /misc/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/hash.h -------------------------------------------------------------------------------- /misc/misc.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/misc.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /misc/misc.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/misc.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /misc/parsarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/parsarg.c -------------------------------------------------------------------------------- /misc/parsarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/parsarg.h -------------------------------------------------------------------------------- /misc/stdlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/stdlib.c -------------------------------------------------------------------------------- /misc/strutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/strutil.c -------------------------------------------------------------------------------- /misc/strutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/strutil.h -------------------------------------------------------------------------------- /misc/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/misc/types.h -------------------------------------------------------------------------------- /pa_null/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_library(pa_null STATIC poly_acc.c) 2 | -------------------------------------------------------------------------------- /pa_null/pa_enabl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/pa_null/pa_enabl.h -------------------------------------------------------------------------------- /pa_null/pa_null.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/pa_null/pa_null.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /pa_null/pa_null.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/pa_null/pa_null.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /pa_null/poly_acc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/pa_null/poly_acc.c -------------------------------------------------------------------------------- /pa_null/poly_acc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/pa_null/poly_acc.h -------------------------------------------------------------------------------- /pa_null/pstypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/pa_null/pstypes.h -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ":Descent2" 2 | -------------------------------------------------------------------------------- /texmap/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/texmap/CMakeLists.txt -------------------------------------------------------------------------------- /texmap/ntmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/texmap/ntmap.c -------------------------------------------------------------------------------- /texmap/ntmapout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/texmap/ntmapout.h -------------------------------------------------------------------------------- /texmap/ogles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/texmap/ogles/CMakeLists.txt -------------------------------------------------------------------------------- /texmap/ogles/oglestex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/texmap/ogles/oglestex.c -------------------------------------------------------------------------------- /texmap/ogles/oglestex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/texmap/ogles/oglestex.h -------------------------------------------------------------------------------- /texmap/scanline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/texmap/scanline.c -------------------------------------------------------------------------------- /texmap/scanline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/texmap/scanline.h -------------------------------------------------------------------------------- /texmap/texmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/texmap/texmap.h -------------------------------------------------------------------------------- /texmap/texmap.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/texmap/texmap.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /texmap/texmapl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/texmap/texmapl.h -------------------------------------------------------------------------------- /texmap/tmapflat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/texmap/tmapflat.c -------------------------------------------------------------------------------- /ui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/CMakeLists.txt -------------------------------------------------------------------------------- /ui/barbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/barbox.c -------------------------------------------------------------------------------- /ui/button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/button.c -------------------------------------------------------------------------------- /ui/checkbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/checkbox.c -------------------------------------------------------------------------------- /ui/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/file.c -------------------------------------------------------------------------------- /ui/func.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/func.c -------------------------------------------------------------------------------- /ui/func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/func.h -------------------------------------------------------------------------------- /ui/gadget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/gadget.c -------------------------------------------------------------------------------- /ui/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/icon.c -------------------------------------------------------------------------------- /ui/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/inputbox.c -------------------------------------------------------------------------------- /ui/keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/keypad.c -------------------------------------------------------------------------------- /ui/keypress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/keypress.c -------------------------------------------------------------------------------- /ui/keytrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/keytrap.c -------------------------------------------------------------------------------- /ui/listbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/listbox.c -------------------------------------------------------------------------------- /ui/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/menu.c -------------------------------------------------------------------------------- /ui/menubar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/menubar.c -------------------------------------------------------------------------------- /ui/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/message.c -------------------------------------------------------------------------------- /ui/mouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/mouse.c -------------------------------------------------------------------------------- /ui/number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/number.c -------------------------------------------------------------------------------- /ui/popup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/popup.c -------------------------------------------------------------------------------- /ui/radio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/radio.c -------------------------------------------------------------------------------- /ui/scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/scroll.c -------------------------------------------------------------------------------- /ui/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/ui.c -------------------------------------------------------------------------------- /ui/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/ui.h -------------------------------------------------------------------------------- /ui/ui.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/ui.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ui/ui.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/ui.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ui/uidraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/uidraw.c -------------------------------------------------------------------------------- /ui/userbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/userbox.c -------------------------------------------------------------------------------- /ui/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/ui/window.c -------------------------------------------------------------------------------- /vecmat/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/vecmat/CMakeLists.txt -------------------------------------------------------------------------------- /vecmat/vecmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/vecmat/vecmat.h -------------------------------------------------------------------------------- /vecmat/vecmat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/vecmat/vecmat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /vecmat/vecmat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/vecmat/vecmat.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /vecmat/vecmatc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devint1/Descent2-Mobile/HEAD/vecmat/vecmatc.c --------------------------------------------------------------------------------