Play! - PlayStation 2 Emulator
Go to file
2016-11-19 21:29:15 -05:00
build_android Update Android version code. 2016-10-23 21:25:59 -04:00
build_ios Bundle patch definition file in iOS app. 2016-07-18 22:08:47 -04:00
build_macosx Added toggle to enable/disable audio output on OSX. 2016-04-11 18:24:01 -04:00
build_unix linux: dialog fixed sizes, removed vfs green header 2016-09-06 00:23:44 +01:00
build_win32 Improve texture view stuff. 2016-11-19 21:29:15 -05:00
icons Added some icons. 2015-04-08 03:06:14 -04:00
installer_macosx Added installer files for OSX. 2015-03-28 23:10:31 -04:00
installer_win32 Updated win32 installer script for VS2015. 2015-10-05 23:50:03 -04:00
Source Add CLUT indexed texture view. 2016-11-19 21:29:15 -05:00
tools Add 'LUI K0, 0x0' instruction at address 0. 2016-11-19 17:34:39 -05:00
.gitattributes Updated git settings for Android build. 2015-03-09 23:00:30 -04:00
.gitignore Update gitignore. 2016-11-19 17:34:39 -05:00
changelog.html Added a changelog and updated installer scripts. 2011-05-30 02:52:59 +00:00
CONTRIBUTING.md Add contribution guide. 2016-11-09 09:25:44 -05:00
ee_functions.xml Added a function pattern matcher to allow finding common library functions easily across all games. 2012-03-25 20:18:09 +00:00
License.txt Added proper license. 2014-02-23 09:43:18 +00:00
patches.xml Added patch to disable movie playback in Mega Man X Collection. 2016-04-16 22:08:39 -04:00
Readme.html Updated readme file. 2011-05-30 00:39:31 +00:00
README.md Update README. 2016-09-17 23:37:19 -04:00
Settings.md Updated settings description file. 2016-04-10 22:20:53 -04:00

Play!

Play! is an attempt to create a PlayStation 2 emulator for Windows, macOS, UNIX, Android & iOS platforms.

Ongoing compatibility list can be found here: Compatibility List Wiki.

For more information, please visit purei.org.

Project Dependencies

External Libraries

Repositories

Building

General Setup

You can get almost everything needed to build the emulator by using the Play! Build project. You can also checkout every repository individually if you wish to do so, but make sure your working copies share the same parent folder.

In the end, your setup should look like this:

C:\Projects

  • CodeGen
  • Dependencies
  • Framework
  • Nuanceur
  • Play

Building for Android

Building for Android has been tested on Windows and UNIX environments.

  • Make a copy of ExternalDependencies.mk.template found in build_android/jni and rename to ExternalDependencies.mk
  • Open the newly copied ExternalDependencies.mk and change paths inside to point to the proper dependency/repository paths (ie.: /path/to/boost -> C:\Libraries\Boost)
  • The build script relies on some environment variables that must be set before building:
    • ANDROID_NDK -> Must refer to the Android NDK's path (ie.: C:\Android\android-ndk-r10e)
    • ANDROID_SDK_ROOT -> Must refer to the Android SDK's path (ie.: C:\Android\android-sdk)
    • ANT_HOME -> Must refer to a valid Apache Ant installation.
  • Make sure you've built all necessary depencendies: boost, Framework and CodeGen.
  • Run the build_debug script available in the build_android directory to generate a debug build and build_release for a release build.

Building for macOS and iOS

Building for macOS and iOS has been tested with Xcode 6 and Xcode 7.

To build for those platforms, you need to first build boost using the script provided in the Dependencies repository. This will create the boost Xcode framework files that are needed by the projects from this repository. Once this is done, you will be able to open Play.xcodeproj for either OSX and iOS and build the project normally.