Go to file
2016-12-22 16:59:29 -06:00
Artwork Added original artwork files 2015-11-01 03:19:57 -06:00
Common/Database/Model Reorganizes Xcode project structure 2016-12-20 18:24:43 -06:00
Cores Adds ability to import games & controller skins from other apps 2016-12-22 16:59:29 -06:00
Delta Adds ability to import games & controller skins from other apps 2016-12-22 16:59:29 -06:00
Delta.xcodeproj Adds ability to import games & controller skins from other apps 2016-12-22 16:59:29 -06:00
Delta.xcworkspace Moves mogenerator run script into separate target 2016-11-24 16:48:06 -06:00
External Fixes Xcode 8.1 warnings 2016-11-09 15:01:09 -08:00
Pods Displays game artwork 2016-11-18 17:31:25 -08:00
Resources Adds Cheat Codes + Sustain Buttons pause item icons 2016-12-11 14:35:34 -08:00
.gitignore Updated .gitignore 2015-11-01 04:21:45 -06:00
.gitmodules Adds support for Gameboy Advance games 2016-06-10 10:53:29 -05:00
Podfile Displays game artwork 2016-11-18 17:31:25 -08:00
Podfile.lock Displays game artwork 2016-11-18 17:31:25 -08:00
README.md Adds placeholder README 2016-12-21 12:46:31 -06:00

Delta

Hello! This README is serving as a placeholder for now, but will be updated before Delta is open-sourced. Until then, this should serve as a basic guide to Delta and its multiple repos.

One of the driving factors behind Delta from the beginning was to develop a generic emulation framework that anyone could use to develop their own iOS emulator. Because of this, the “core” emulation logic used by Delta has been separated from this main repository into several other repos.

Heres a brief overview of how the Delta app is broken down internally:

Delta
The Delta app repo (aka this one) contains all the code specific to the app itself, such as storyboards, app-specific view controllers, database logic, etc.

DeltaCore
DeltaCore serves as the “middle-man” between the high-level app code and the specific emulation cores. By working with this framework, you have access to all the core Delta features, such as emulation, controller skins, save states, cheat codes, etc. Other potential emulator apps will use this framework extensively.

SNESDeltaCore
SNESDeltaCore essentially wraps up the SNES emulator core (Snes9x) into something that can be understood by DeltaCore. For the most part, you dont need to interact directly with this framework.

GBADeltaCore
Just like with SNESDeltaCore, GBADeltaCore wraps the GBA emulator core (VBA-M) into a framework understood by DeltaCore. Again, you shouldnt need to use this framework directly that often.

Roxas
Roxas is my own framework used across my projects, developed to simplify a variety of common tasks used in iOS development.

Compilation Instructions

  • Clone this repository by running the following command in Terminal:
$ git clone git@github.com:rileytestut/Delta.git
  • Update Git submodules
$ cd Delta
$ git submodule update --init --recursive
  • Open Delta.xcworkspace, and run!