summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-07-05 07:11:57 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-07-05 07:11:57 +0000
commit8ce6358f4e589662c5ae2a92f54172ec1bf884b8 (patch)
treee35fe44fcae264f9250e5f6df6a8ce59d205b340
parent5a8a70c2ac1d241e22c565d73ca20fff0c4070c7 (diff)
downloadpcsxr-8ce6358f4e589662c5ae2a92f54172ec1bf884b8.tar.gz
Consolidate the plug-ins in OS X into the main PCSXR project.
Add debugging info for SysLibError on OS X. git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@85835 e17a0e51-4ae3-4d35-97c3-1a29b211df97
-rw-r--r--macosx/Configs/Pcsxr-Debug.xcconfig1
-rw-r--r--macosx/Configs/Pcsxr-Release.xcconfig2
-rw-r--r--macosx/Configs/Pcsxr.xcconfig3
-rw-r--r--macosx/Pcsxr.xcodeproj/project.pbxproj2816
-rw-r--r--macosx/Pcsxr.xcworkspace/contents.xcworkspacedata21
-rwxr-xr-xmacosx/PcsxrPlugin.m2
-rwxr-xr-xmacosx/main.m8
-rw-r--r--macosx/plugins/Bladesio1/Bladesio1.xcodeproj/project.pbxproj407
-rw-r--r--macosx/plugins/DFCdrom/DFCdrom.xcodeproj/project.pbxproj402
-rw-r--r--macosx/plugins/DFInput/DFInput.xcodeproj/project.pbxproj663
-rwxr-xr-xmacosx/plugins/DFNet/DFNet.xcodeproj/project.pbxproj388
-rw-r--r--macosx/plugins/DFNet/English.lproj/SockDialog.xib35
-rw-r--r--macosx/plugins/DFSound/PeopsSPU.xcodeproj/project.pbxproj952
-rwxr-xr-xmacosx/plugins/DFSound/Resorces/SDL/English.lproj/InfoPlist.stringsbin518 -> 262 bytes
-rw-r--r--macosx/plugins/DFXVideo/PeopsSoftGPU.xcodeproj/project.pbxproj441
-rw-r--r--macosx/plugins/PeopsXgl/PeopsXGL.xcodeproj/project.pbxproj444
16 files changed, 2521 insertions, 4064 deletions
diff --git a/macosx/Configs/Pcsxr-Debug.xcconfig b/macosx/Configs/Pcsxr-Debug.xcconfig
index c337762d..06e68c47 100644
--- a/macosx/Configs/Pcsxr-Debug.xcconfig
+++ b/macosx/Configs/Pcsxr-Debug.xcconfig
@@ -8,3 +8,4 @@ GCC_UNROLL_LOOPS = NO
ONLY_ACTIVE_ARCH = YES
COPY_PHASE_STRIP = NO
STRIP_INSTALLED_PRODUCT = NO
+OPTIMIZATION_CFLAGS = -finline-functions -finline-limit=1600 -fno-exceptions -funroll-loops -falign-loops=16 -ffast-math
diff --git a/macosx/Configs/Pcsxr-Release.xcconfig b/macosx/Configs/Pcsxr-Release.xcconfig
index 53de390b..4a218e82 100644
--- a/macosx/Configs/Pcsxr-Release.xcconfig
+++ b/macosx/Configs/Pcsxr-Release.xcconfig
@@ -7,3 +7,5 @@ GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_OPTIMIZATION_LEVEL = s
GCC_UNROLL_LOOPS = YES
COPY_PHASE_STRIP = YES
+
+OPTIMIZATION_CFLAGS = -finline-functions -finline-limit=1600 -fomit-frame-pointer -fno-exceptions -funroll-loops -falign-loops=16 -ffast-math
diff --git a/macosx/Configs/Pcsxr.xcconfig b/macosx/Configs/Pcsxr.xcconfig
index c9bbfd2e..76cb1b28 100644
--- a/macosx/Configs/Pcsxr.xcconfig
+++ b/macosx/Configs/Pcsxr.xcconfig
@@ -17,4 +17,5 @@ VALID_ARCHS = i386 x86_64
CLANG_ENABLE_OBJC_ARC[arch=x86_64] = YES
GCC_DYNAMIC_NO_PIC = NO
COMBINE_HIDPI_IMAGES = YES
-
+INFOPLIST_FILE = plugins/$(TARGET_NAME)/Info.plist
+PRODUCT_NAME = $(TARGET_NAME)
diff --git a/macosx/Pcsxr.xcodeproj/project.pbxproj b/macosx/Pcsxr.xcodeproj/project.pbxproj
index ce98c97f..963a81db 100644
--- a/macosx/Pcsxr.xcodeproj/project.pbxproj
+++ b/macosx/Pcsxr.xcodeproj/project.pbxproj
@@ -28,19 +28,182 @@
2BB3D6C205427FE200831ACB /* EmuThread.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BBB1792051E113B00B84448 /* EmuThread.m */; };
2BB3D6C305427FE200831ACB /* Plugin.c in Sources */ = {isa = PBXBuildFile; fileRef = 2BBB17DA051E4D0F00B84448 /* Plugin.c */; };
2BB3D6C405427FE200831ACB /* PcsxrPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BA44361052DB2EA00E21DDD /* PcsxrPlugin.m */; };
- 2BB3D6C605427FE200831ACB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BC4786204C7FD3600CAB520 /* Cocoa.framework */; };
- 2BB3D6C805427FE200831ACB /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B6E8AB404C8327C0017A3B1 /* IOKit.framework */; };
+ 551A75C917868C4E0052D185 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A749E17868B110052D185 /* Cocoa.framework */; };
+ 551A75CF17868C860052D185 /* Bladesio1PluginConfig.xib in Resources */ = {isa = PBXBuildFile; fileRef = 551A74B417868BEA0052D185 /* Bladesio1PluginConfig.xib */; };
+ 551A75D017868C860052D185 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 551A74B617868BEA0052D185 /* Credits.rtf */; };
+ 551A75D117868C860052D185 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 551A74B817868BEA0052D185 /* InfoPlist.strings */; };
+ 551A75D217868C860052D185 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 551A74BA17868BEA0052D185 /* Localizable.strings */; };
+ 551A75D317868D0C0052D185 /* cfg.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74BF17868BEA0052D185 /* cfg.c */; };
+ 551A75D417868D1A0052D185 /* PluginConfigController.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A74C117868BEA0052D185 /* PluginConfigController.m */; };
+ 551A75D517868D390052D185 /* connection.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A75BC17868C400052D185 /* connection.c */; };
+ 551A75D617868D390052D185 /* fifo.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A75BE17868C400052D185 /* fifo.c */; };
+ 551A75D717868D390052D185 /* sio1.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A75C217868C400052D185 /* sio1.c */; };
+ 551A7675178690500052D185 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A749E17868B110052D185 /* Cocoa.framework */; };
+ 551A767B178690AD0052D185 /* cdr-macosx.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A751317868BEB0052D185 /* cdr-macosx.c */; };
+ 551A767C178690AD0052D185 /* cfg.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A751417868BEB0052D185 /* cfg.c */; };
+ 551A767D178690AD0052D185 /* PluginConfigController.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A751617868BEB0052D185 /* PluginConfigController.m */; };
+ 551A767E178690B80052D185 /* cdr.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A75F417868E640052D185 /* cdr.c */; };
+ 551A767F178690B80052D185 /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A75FB17868E640052D185 /* util.c */; };
+ 551A7680178690EE0052D185 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 551A750917868BEB0052D185 /* Credits.rtf */; };
+ 551A7681178690EE0052D185 /* DFCdromPluginConfig.xib in Resources */ = {isa = PBXBuildFile; fileRef = 551A750B17868BEB0052D185 /* DFCdromPluginConfig.xib */; };
+ 551A7682178690EE0052D185 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 551A750D17868BEB0052D185 /* InfoPlist.strings */; };
+ 551A7683178690EE0052D185 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 551A750F17868BEB0052D185 /* Localizable.strings */; };
+ 551A7685178691170052D185 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A7684178691170052D185 /* IOKit.framework */; };
+ 551A76891786919F0052D185 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A749E17868B110052D185 /* Cocoa.framework */; };
+ 551A76921786922A0052D185 /* sdljoy.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A766D1786901F0052D185 /* sdljoy.c */; };
+ 551A7693178692330052D185 /* analog.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A76661786901F0052D185 /* analog.c */; };
+ 551A7694178692330052D185 /* pad.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A766B1786901F0052D185 /* pad.c */; };
+ 551A76951786923E0052D185 /* cfg.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A752717868BEB0052D185 /* cfg.c */; };
+ 551A76961786923E0052D185 /* ControllerList.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A752A17868BEB0052D185 /* ControllerList.m */; };
+ 551A76971786923E0052D185 /* MappingCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A752C17868BEB0052D185 /* MappingCell.m */; };
+ 551A76981786923E0052D185 /* PadController.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A752E17868BEB0052D185 /* PadController.m */; };
+ 551A76991786923E0052D185 /* PadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A753017868BEB0052D185 /* PadView.m */; };
+ 551A769A1786923E0052D185 /* xkb.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A753117868BEB0052D185 /* xkb.c */; };
+ 551A769B178692470052D185 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 551A751D17868BEB0052D185 /* Credits.rtf */; };
+ 551A769C178692470052D185 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 551A751F17868BEB0052D185 /* InfoPlist.strings */; };
+ 551A769D178692470052D185 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 551A752117868BEB0052D185 /* Localizable.strings */; };
+ 551A769E178692470052D185 /* NetPcsxrHIDInputPluginMain.xib in Resources */ = {isa = PBXBuildFile; fileRef = 551A752317868BEB0052D185 /* NetPcsxrHIDInputPluginMain.xib */; };
+ 551A76B7178693FF0052D185 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A749E17868B110052D185 /* Cocoa.framework */; };
+ 551A76BD1786953B0052D185 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 551A756817868BEC0052D185 /* Credits.rtf */; };
+ 551A76BE1786953B0052D185 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 551A756A17868BEC0052D185 /* InfoPlist.strings */; };
+ 551A76BF1786953B0052D185 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 551A756C17868BEC0052D185 /* Localizable.strings */; };
+ 551A76C01786953B0052D185 /* NetSfPeopsSoftGPUConfig.xib in Resources */ = {isa = PBXBuildFile; fileRef = 551A756E17868BEC0052D185 /* NetSfPeopsSoftGPUConfig.xib */; };
+ 551A76C11786953F0052D185 /* gpuPeteOGL2.slf in Resources */ = {isa = PBXBuildFile; fileRef = 551A757017868BEC0052D185 /* gpuPeteOGL2.slf */; };
+ 551A76C21786953F0052D185 /* gpuPeteOGL2.slv in Resources */ = {isa = PBXBuildFile; fileRef = 551A757117868BEC0052D185 /* gpuPeteOGL2.slv */; };
+ 551A76C31786953F0052D185 /* NetSfPeopsSoftGPUInterface.xib in Resources */ = {isa = PBXBuildFile; fileRef = 551A757F17868BED0052D185 /* NetSfPeopsSoftGPUInterface.xib */; };
+ 551A76C41786954B0052D185 /* drawgl.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A757417868BEC0052D185 /* drawgl.m */; };
+ 551A76C51786954B0052D185 /* PluginConfigController.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A757717868BEC0052D185 /* PluginConfigController.m */; };
+ 551A76C61786954B0052D185 /* PluginGLView.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A757917868BEC0052D185 /* PluginGLView.m */; };
+ 551A76C71786954B0052D185 /* PluginWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A757B17868BEC0052D185 /* PluginWindow.m */; };
+ 551A76C81786954B0052D185 /* PluginWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A757D17868BEC0052D185 /* PluginWindowController.m */; };
+ 551A76CA178695840052D185 /* fps.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A763017868F270052D185 /* fps.c */; };
+ 551A76CB178695840052D185 /* gpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A763217868F270052D185 /* gpu.c */; };
+ 551A76CC178695840052D185 /* key.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A763B17868F280052D185 /* key.c */; };
+ 551A76CD178695840052D185 /* menu.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A763F17868F280052D185 /* menu.c */; };
+ 551A76CE178695840052D185 /* prim.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A764117868F280052D185 /* prim.c */; };
+ 551A76CF178695840052D185 /* soft.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A764317868F280052D185 /* soft.c */; };
+ 551A76D0178695840052D185 /* zn.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A764617868F280052D185 /* zn.c */; };
+ 551A76D3178695D10052D185 /* GLUT.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A76D1178695BD0052D185 /* GLUT.framework */; };
+ 551A76D4178695D20052D185 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A76D2178695C70052D185 /* OpenGL.framework */; };
+ 551A76D61786960C0052D185 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A749E17868B110052D185 /* Cocoa.framework */; };
+ 551A76D7178696110052D185 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A7684178691170052D185 /* IOKit.framework */; };
+ 551A76D9178696810052D185 /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A76D8178696810052D185 /* libz.dylib */; };
+ 551A76DD178696BD0052D185 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A749E17868B110052D185 /* Cocoa.framework */; };
+ 551A76E81786971B0052D185 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A749E17868B110052D185 /* Cocoa.framework */; };
+ 551A76F2178697A50052D185 /* NamedSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A755017868BEC0052D185 /* NamedSlider.m */; };
+ 551A76F3178697A50052D185 /* SPUPluginController.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A755417868BEC0052D185 /* SPUPluginController.m */; };
+ 551A76F6178697D70052D185 /* libSPUSharedCode.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A76E71786971B0052D185 /* libSPUSharedCode.dylib */; };
+ 551A76F7178697E70052D185 /* PluginController.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A755217868BEC0052D185 /* PluginController.m */; };
+ 551A76F8178698130052D185 /* sdl.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A762117868EF00052D185 /* sdl.c */; };
+ 551A76F9178698130052D185 /* spu.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A762217868EF00052D185 /* spu.c */; };
+ 551A76FA178698130052D185 /* xa.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A762817868EF00052D185 /* xa.c */; };
+ 551A76FB178698160052D185 /* reverb.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A761F17868EF00052D185 /* reverb.c */; };
+ 551A76FC1786981A0052D185 /* registers.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A761C17868EF00052D185 /* registers.c */; };
+ 551A76FD178698230052D185 /* freeze.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A761417868EF00052D185 /* freeze.c */; };
+ 551A76FF178698390052D185 /* dma.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A760F17868EF00052D185 /* dma.c */; };
+ 551A77001786983C0052D185 /* adsr.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A760A17868EF00052D185 /* adsr.c */; };
+ 551A7701178698600052D185 /* externals.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A761217868EF00052D185 /* externals.c */; };
+ 551A7702178698980052D185 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 551A755D17868BEC0052D185 /* InfoPlist.strings */; };
+ 551A7703178698980052D185 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 551A756017868BEC0052D185 /* Credits.rtf */; };
+ 551A7704178698980052D185 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 551A756217868BEC0052D185 /* Localizable.strings */; };
+ 551A7705178698980052D185 /* NetSfPeopsSpuPluginMain.xib in Resources */ = {isa = PBXBuildFile; fileRef = 551A756417868BEC0052D185 /* NetSfPeopsSpuPluginMain.xib */; };
+ 551A770A178698C60052D185 /* PluginController.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A755217868BEC0052D185 /* PluginController.m */; };
+ 551A770C178698C60052D185 /* spu.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A762217868EF00052D185 /* spu.c */; };
+ 551A770D178698C60052D185 /* xa.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A762817868EF00052D185 /* xa.c */; };
+ 551A770E178698C60052D185 /* reverb.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A761F17868EF00052D185 /* reverb.c */; };
+ 551A770F178698C60052D185 /* registers.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A761C17868EF00052D185 /* registers.c */; };
+ 551A7710178698C60052D185 /* freeze.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A761417868EF00052D185 /* freeze.c */; };
+ 551A7711178698C60052D185 /* dma.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A760F17868EF00052D185 /* dma.c */; };
+ 551A7712178698C60052D185 /* adsr.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A760A17868EF00052D185 /* adsr.c */; };
+ 551A7713178698C60052D185 /* externals.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A761217868EF00052D185 /* externals.c */; };
+ 551A7715178698C60052D185 /* libSPUSharedCode.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A76E71786971B0052D185 /* libSPUSharedCode.dylib */; };
+ 551A7716178698C60052D185 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A749E17868B110052D185 /* Cocoa.framework */; };
+ 551A7719178698C60052D185 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 551A756017868BEC0052D185 /* Credits.rtf */; };
+ 551A771A178698C60052D185 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 551A756217868BEC0052D185 /* Localizable.strings */; };
+ 551A771B178698C60052D185 /* NetSfPeopsSpuPluginMain.xib in Resources */ = {isa = PBXBuildFile; fileRef = 551A756417868BEC0052D185 /* NetSfPeopsSpuPluginMain.xib */; };
+ 551A7721178698E60052D185 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 551A755A17868BEC0052D185 /* InfoPlist.strings */; };
+ 551A77221786990E0052D185 /* openal.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A761817868EF00052D185 /* openal.c */; };
+ 551A7724178699250052D185 /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A7723178699250052D185 /* OpenAL.framework */; };
+ 551A774A17869C280052D185 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A749E17868B110052D185 /* Cocoa.framework */; };
+ 551A775017869C3C0052D185 /* GLUT.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A76D1178695BD0052D185 /* GLUT.framework */; };
+ 551A775117869C3C0052D185 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A76D2178695C70052D185 /* OpenGL.framework */; };
+ 551A775217869C8B0052D185 /* draw.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A764B17868F570052D185 /* draw.c */; };
+ 551A775317869C8D0052D185 /* fps.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A764E17868F570052D185 /* fps.c */; };
+ 551A775417869C900052D185 /* gpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A765117868F570052D185 /* gpu.c */; };
+ 551A775517869C950052D185 /* gte_accuracy.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A765617868F570052D185 /* gte_accuracy.c */; };
+ 551A775617869C970052D185 /* key.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A765817868F570052D185 /* key.c */; };
+ 551A775717869C9A0052D185 /* menu.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A765B17868F570052D185 /* menu.c */; };
+ 551A775817869C9C0052D185 /* prim.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A765D17868F570052D185 /* prim.c */; };
+ 551A775917869C9F0052D185 /* soft.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A765F17868F570052D185 /* soft.c */; };
+ 551A775A17869CA10052D185 /* texture.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A766217868F570052D185 /* texture.c */; };
+ 551A775B17869CA50052D185 /* drawgl.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A759017868BED0052D185 /* drawgl.m */; };
+ 551A775C17869CA80052D185 /* NetSfPeopsOpenGLPluginConfigController.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A759317868BED0052D185 /* NetSfPeopsOpenGLPluginConfigController.m */; };
+ 551A775D17869CAB0052D185 /* PluginGLView.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A759517868BED0052D185 /* PluginGLView.m */; };
+ 551A775E17869CAE0052D185 /* PluginWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A759717868BED0052D185 /* PluginWindow.m */; };
+ 551A775F17869CB10052D185 /* PluginWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A759917868BED0052D185 /* PluginWindowController.m */; };
+ 551A776017869CBE0052D185 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 551A758517868BED0052D185 /* Credits.rtf */; };
+ 551A776117869CBE0052D185 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 551A758717868BED0052D185 /* InfoPlist.strings */; };
+ 551A776217869CBE0052D185 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 551A758917868BED0052D185 /* Localizable.strings */; };
+ 551A776317869CBE0052D185 /* NetSfPeopsOpenGLConfig.xib in Resources */ = {isa = PBXBuildFile; fileRef = 551A758B17868BED0052D185 /* NetSfPeopsOpenGLConfig.xib */; };
+ 551A776417869CC20052D185 /* NetSfPeopsOpenGLGPUInterface.xib in Resources */ = {isa = PBXBuildFile; fileRef = 551A759A17868BED0052D185 /* NetSfPeopsOpenGLGPUInterface.xib */; };
+ 551A776817869E430052D185 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A749E17868B110052D185 /* Cocoa.framework */; };
+ 551A776E17869E640052D185 /* cfg.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A754317868BEC0052D185 /* cfg.c */; };
+ 551A776F17869E640052D185 /* PluginConfigController.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A754517868BEC0052D185 /* PluginConfigController.m */; };
+ 551A777017869E640052D185 /* SockDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A754717868BEC0052D185 /* SockDialog.m */; };
+ 551A777A17869E830052D185 /* dfnet.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A777317869E830052D185 /* dfnet.c */; };
+ 551A777E17869E830052D185 /* unix.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A777817869E830052D185 /* unix.c */; };
+ 551A777F17869EAE0052D185 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 551A753617868BEB0052D185 /* Credits.rtf */; };
+ 551A778017869EAE0052D185 /* DFNet.xib in Resources */ = {isa = PBXBuildFile; fileRef = 551A753817868BEB0052D185 /* DFNet.xib */; };
+ 551A778117869EAE0052D185 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 551A753A17868BEB0052D185 /* InfoPlist.strings */; };
+ 551A778217869EAE0052D185 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 551A753C17868BEB0052D185 /* Localizable.strings */; };
+ 551A778317869EAE0052D185 /* SockDialog.xib in Resources */ = {isa = PBXBuildFile; fileRef = 551A753E17868BEB0052D185 /* SockDialog.xib */; };
+ 551A779417869F610052D185 /* Bladesio1.psxplugin in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 551A75CE17868C4E0052D185 /* Bladesio1.psxplugin */; };
+ 551A779517869F610052D185 /* DFCdrom.psxplugin in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 551A767A178690500052D185 /* DFCdrom.psxplugin */; };
+ 551A779617869F610052D185 /* DFInput.psxplugin in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 551A768E1786919F0052D185 /* DFInput.psxplugin */; };
+ 551A779717869F610052D185 /* PeopsSoftGPU.psxplugin in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 551A76BC178693FF0052D185 /* PeopsSoftGPU.psxplugin */; };
+ 551A779817869F610052D185 /* PeopsSpuSDL.psxplugin in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 551A76E2178696BD0052D185 /* PeopsSpuSDL.psxplugin */; };
+ 551A779917869F610052D185 /* PeopsSpuAL.psxplugin in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 551A771F178698C60052D185 /* PeopsSpuAL.psxplugin */; };
+ 551A779A17869F610052D185 /* PeopsXGL.psxplugin in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 551A774F17869C280052D185 /* PeopsXGL.psxplugin */; };
+ 551A779B17869F610052D185 /* DFNet.psxplugin in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 551A776D17869E430052D185 /* DFNet.psxplugin */; };
+ 551A779E17869FC70052D185 /* libSPUSharedCode.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 551A76E71786971B0052D185 /* libSPUSharedCode.dylib */; };
+ 551A77A017869FED0052D185 /* libSPUSharedCode.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 551A76E71786971B0052D185 /* libSPUSharedCode.dylib */; };
+ 551A77AC1786A10D0052D185 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A768F178691E60052D185 /* ForceFeedback.framework */; };
+ 551A77C41786A2CA0052D185 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A774217869BD40052D185 /* AudioUnit.framework */; };
+ 551A77C51786A2CA0052D185 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A774317869BD50052D185 /* CoreAudio.framework */; };
+ 551A77C71786A2CA0052D185 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A768F178691E60052D185 /* ForceFeedback.framework */; };
+ 551A77C81786A2CA0052D185 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A7684178691170052D185 /* IOKit.framework */; };
+ 551A77C91786A2F20052D185 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A749E17868B110052D185 /* Cocoa.framework */; };
+ 551A77CA1786A32F0052D185 /* SDL.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74F617868BEA0052D185 /* SDL.c */; };
+ 551A77CB1786A32F0052D185 /* SDL_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74F717868BEA0052D185 /* SDL_error.c */; };
+ 551A77CC1786A32F0052D185 /* SDL_syscond.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74FB17868BEA0052D185 /* SDL_syscond.c */; };
+ 551A77CD1786A32F0052D185 /* SDL_sysmutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74FC17868BEA0052D185 /* SDL_sysmutex.c */; };
+ 551A77CE1786A32F0052D185 /* SDL_syssem.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74FE17868BEA0052D185 /* SDL_syssem.c */; };
+ 551A77CF1786A32F0052D185 /* SDL_systhread.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74FF17868BEA0052D185 /* SDL_systhread.c */; };
+ 551A77D01786A32F0052D185 /* SDL_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A750217868BEA0052D185 /* SDL_thread.c */; };
+ 551A77D11786A33C0052D185 /* SDL_sysjoystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74F117868BEA0052D185 /* SDL_sysjoystick.c */; };
+ 551A77D21786A33C0052D185 /* SDL_joystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74F317868BEA0052D185 /* SDL_joystick.c */; };
+ 551A77D31786A3430052D185 /* SDL_syshaptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74EB17868BEA0052D185 /* SDL_syshaptic.c */; };
+ 551A77D41786A3430052D185 /* SDL_haptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74EC17868BEA0052D185 /* SDL_haptic.c */; };
+ 551A77D51786A34B0052D185 /* SDL_rwopsbundlesupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 551A74E717868BEA0052D185 /* SDL_rwopsbundlesupport.m */; };
+ 551A77D61786A34B0052D185 /* SDL_rwops.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74E817868BEA0052D185 /* SDL_rwops.c */; };
+ 551A77D71786A35A0052D185 /* SDL_coreaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74D917868BEA0052D185 /* SDL_coreaudio.c */; };
+ 551A77D81786A3620052D185 /* SDL_audio.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74DB17868BEA0052D185 /* SDL_audio.c */; };
+ 551A77D91786A3620052D185 /* SDL_audiocvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74DD17868BEA0052D185 /* SDL_audiocvt.c */; };
+ 551A77DA1786A3620052D185 /* SDL_audiotypecvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74DF17868BEA0052D185 /* SDL_audiotypecvt.c */; };
+ 551A77DB1786A3620052D185 /* SDL_mixer.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74E017868BEA0052D185 /* SDL_mixer.c */; };
+ 551A77DC1786A3620052D185 /* SDL_wave.c in Sources */ = {isa = PBXBuildFile; fileRef = 551A74E217868BEA0052D185 /* SDL_wave.c */; };
+ 551A77E31786A4AF0052D185 /* libTinySDL.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A77C01786A2890052D185 /* libTinySDL.dylib */; };
+ 551A77E41786A4B30052D185 /* libTinySDL.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 551A77C01786A2890052D185 /* libTinySDL.dylib */; };
+ 551A77E51786A4BF0052D185 /* libTinySDL.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A77C01786A2890052D185 /* libTinySDL.dylib */; };
+ 551A77E61786A4C20052D185 /* libTinySDL.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 551A77C01786A2890052D185 /* libTinySDL.dylib */; };
+ 551A77E71786A4DD0052D185 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A76AC178693C60052D185 /* Carbon.framework */; };
5529EA11169CBE3400BAA2A5 /* RecentItemsMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 5550D2721683C923006C56B5 /* RecentItemsMenu.m */; };
- 55858D24178632C50068B8FC /* Bladesio1.psxplugin in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 55858D201786329D0068B8FC /* Bladesio1.psxplugin */; };
- 5586CD9714AFADD9008EF4EE /* PeopsSpuSDL.psxplugin in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 71AD2DD110C356FD00365243 /* PeopsSpuSDL.psxplugin */; };
- 5586CD9814AFADD9008EF4EE /* PeopsSpuAL.psxplugin in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 28B467F11463D0020083F129 /* PeopsSpuAL.psxplugin */; };
559366CA12B694DF004ACC1E /* iR3000A-64.c in Sources */ = {isa = PBXBuildFile; fileRef = 559366C112B694DF004ACC1E /* iR3000A-64.c */; };
559366CB12B694DF004ACC1E /* ix86-64.c in Sources */ = {isa = PBXBuildFile; fileRef = 559366C212B694DF004ACC1E /* ix86-64.c */; };
559366CD12B694DF004ACC1E /* ix86_cpudetect.c in Sources */ = {isa = PBXBuildFile; fileRef = 559366C512B694DF004ACC1E /* ix86_cpudetect.c */; };
559366CE12B694DF004ACC1E /* ix86_fpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 559366C612B694DF004ACC1E /* ix86_fpu.c */; };
559366CF12B694DF004ACC1E /* ix86_mmx.c in Sources */ = {isa = PBXBuildFile; fileRef = 559366C712B694DF004ACC1E /* ix86_mmx.c */; };
559366D012B694DF004ACC1E /* ix86_sse.c in Sources */ = {isa = PBXBuildFile; fileRef = 559366C812B694DF004ACC1E /* ix86_sse.c */; };
- 559DACBB146C68C500C5DF71 /* DFNet.psxplugin in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 559DACAE146C647E00C5DF71 /* DFNet.psxplugin */; };
559DACEE146C72FF00C5DF71 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 559DACEC146C72FF00C5DF71 /* Localizable.strings */; };
55A90220147D7C380037E18F /* PcsxrMemCardController.m in Sources */ = {isa = PBXBuildFile; fileRef = 55A9021F147D7C380037E18F /* PcsxrMemCardController.m */; };
55A90223147D7C7A0037E18F /* MemCardManager.xib in Resources */ = {isa = PBXBuildFile; fileRef = 55A90221147D7C7A0037E18F /* MemCardManager.xib */; };
@@ -53,12 +216,8 @@
712FD1E81093096F00575A92 /* debug.c in Sources */ = {isa = PBXBuildFile; fileRef = 712FD1E51093096F00575A92 /* debug.c */; };
712FD1E91093096F00575A92 /* socket.c in Sources */ = {isa = PBXBuildFile; fileRef = 712FD1E61093096F00575A92 /* socket.c */; };
713B530E110B75650002F164 /* ppf.c in Sources */ = {isa = PBXBuildFile; fileRef = 713B530C110B75650002F164 /* ppf.c */; };
- 713CB2E411FC49DA0033B6A8 /* DFCdrom.psxplugin in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 71F93F6C11FB8E9D007A5A7C /* DFCdrom.psxplugin */; };
7192F42A129C412E0042D946 /* gpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 7192F428129C412E0042D946 /* gpu.c */; };
719594B211AEFE8C004AD686 /* psxcommon.c in Sources */ = {isa = PBXBuildFile; fileRef = 719594B011AEFE8C004AD686 /* psxcommon.c */; };
- 71AD2DF510C3575C00365243 /* gpuPeopsSoftGL.psxplugin in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 71AD2DDC10C3570900365243 /* gpuPeopsSoftGL.psxplugin */; };
- 71D888D6130F04F100F150FF /* gpuPeopsXGL.psxplugin in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 71D888D4130F04DC00F150FF /* gpuPeopsXGL.psxplugin */; };
- 71F2C0881200B6B000322AD9 /* DFInput.psxplugin in Copy PlugIns */ = {isa = PBXBuildFile; fileRef = 71F2C0861200B69B00322AD9 /* DFInput.psxplugin */; };
71F4C5890FDED12800529849 /* cdriso.c in Sources */ = {isa = PBXBuildFile; fileRef = 71F4C5600FDED12800529849 /* cdriso.c */; };
71F4C58B0FDED12800529849 /* cdrom.c in Sources */ = {isa = PBXBuildFile; fileRef = 71F4C5620FDED12800529849 /* cdrom.c */; };
71F4C58D0FDED12800529849 /* cheat.c in Sources */ = {isa = PBXBuildFile; fileRef = 71F4C5640FDED12800529849 /* cheat.c */; };
@@ -107,142 +266,141 @@
/* End PBXBuildRule section */
/* Begin PBXContainerItemProxy section */
- 28B467F01463D0020083F129 /* PBXContainerItemProxy */ = {
+ 551A76F4178697CF0052D185 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 71AD2DC710C356FD00365243 /* PeopsSPU.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 5599695E13AFCD2900B0216B;
- remoteInfo = PeopsAL;
- };
- 55858D1F1786329D0068B8FC /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 55858D1B1786329D0068B8FC /* Bladesio1.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 8D576316048677EA00EA77CD;
- remoteInfo = Bladesio1;
- };
- 55858D22178632B70068B8FC /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 55858D1B1786329D0068B8FC /* Bladesio1.xcodeproj */;
+ containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 8D57630D048677EA00EA77CD;
- remoteInfo = Bladesio1;
- };
- 5586005E17850CFC00CB3D85 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 71AD2DC710C356FD00365243 /* PeopsSPU.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 554588431783DF39008A7407;
+ remoteGlobalIDString = 551A76E61786971B0052D185;
remoteInfo = SPUSharedCode;
};
- 559DAC45146BA61400C5DF71 /* PBXContainerItemProxy */ = {
+ 551A7708178698C60052D185 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 71AD2DC710C356FD00365243 /* PeopsSPU.xcodeproj */;
+ containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 5599693613AFCD2900B0216B;
- remoteInfo = PeopsAL;
- };
- 559DACAD146C647E00C5DF71 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 559DACA3146C647E00C5DF71 /* DFNet.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 8D576316048677EA00EA77CD;
- remoteInfo = DFNet;
+ remoteGlobalIDString = 551A76E61786971B0052D185;
+ remoteInfo = SPUSharedCode;
};
- 559DACB9146C68B700C5DF71 /* PBXContainerItemProxy */ = {
+ 551A778417869F4B0052D185 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 559DACA3146C647E00C5DF71 /* DFNet.xcodeproj */;
+ containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 8D57630D048677EA00EA77CD;
- remoteInfo = DFNet;
+ remoteGlobalIDString = 551A75C617868C4E0052D185;
+ remoteInfo = Bladesio1;
};
- 713CB2DD11FC49720033B6A8 /* PBXContainerItemProxy */ = {
+ 551A778617869F4B0052D185 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 71F93F6311FB8E9D007A5A7C /* DFCdrom.xcodeproj */;
+ containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 8D57630D048677EA00EA77CD;
+ remoteGlobalIDString = 551A7672178690500052D185;
remoteInfo = DFCdrom;
};
- 71AD2DD010C356FD00365243 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 71AD2DC710C356FD00365243 /* PeopsSPU.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 8D576316048677EA00EA77CD;
- remoteInfo = PeopsSPU;
- };
- 71AD2DDB10C3570900365243 /* PBXContainerItemProxy */ = {
+ 551A778817869F4B0052D185 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 71AD2DD210C3570900365243 /* PeopsSoftGPU.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 2BAF50930632BB1A00DB9A16;
- remoteInfo = gpuPeopsSoftGL;
+ containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 551A76861786919F0052D185;
+ remoteInfo = DFInput;
};
- 71AD2DE810C3572200365243 /* PBXContainerItemProxy */ = {
+ 551A778A17869F4B0052D185 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 71AD2DC710C356FD00365243 /* PeopsSPU.xcodeproj */;
+ containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 8D57630D048677EA00EA77CD;
- remoteInfo = PeopsSPU;
+ remoteGlobalIDString = 551A76B4178693FF0052D185;
+ remoteInfo = DFXVideo;
};
- 71AD2DEA10C3572500365243 /* PBXContainerItemProxy */ = {
+ 551A778C17869F4B0052D185 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 71AD2DD210C3570900365243 /* PeopsSoftGPU.xcodeproj */;
+ containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 2BAF50920632BB1A00DB9A16;
- remoteInfo = gpuPeopsSoftGL;
+ remoteGlobalIDString = 551A76DA178696BD0052D185;
+ remoteInfo = PeopsSpuSDL;
};
- 71D888D3130F04DC00F150FF /* PBXContainerItemProxy */ = {
+ 551A778E17869F4B0052D185 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 71D888CE130F04DC00F150FF /* PeopsXGL.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 2BAF50930632BB1A00DB9A16;
- remoteInfo = gpuPeopsXGL;
+ containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 551A7706178698C60052D185;
+ remoteInfo = PeopsSpuAL;
};
- 71D88A00130F090400F150FF /* PBXContainerItemProxy */ = {
+ 551A779017869F4B0052D185 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 71D888CE130F04DC00F150FF /* PeopsXGL.xcodeproj */;
+ containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 2BAF50920632BB1A00DB9A16;
- remoteInfo = gpuPeopsXGL;
+ remoteGlobalIDString = 551A774717869C280052D185;
+ remoteInfo = PeopsXgl;
};
- 71F2C0851200B69B00322AD9 /* PBXContainerItemProxy */ = {
+ 551A779217869F4B0052D185 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 71F2C07E1200B69B00322AD9 /* DFInput.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 8D576316048677EA00EA77CD;
- remoteInfo = DFInput;
+ containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 551A776517869E430052D185;
+ remoteInfo = DFNet;
};
- 71F2C0BB1200B75100322AD9 /* PBXContainerItemProxy */ = {
+ 551A77DD1786A3730052D185 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 71F2C07E1200B69B00322AD9 /* DFInput.xcodeproj */;
+ containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
proxyType = 1;
- remoteGlobalIDString = 8D57630D048677EA00EA77CD;
- remoteInfo = DFInput;
+ remoteGlobalIDString = 551A77BF1786A2890052D185;
+ remoteInfo = TinySDL;
};
- 71F93F6B11FB8E9D007A5A7C /* PBXContainerItemProxy */ = {
+ 551A77E01786A3880052D185 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
- containerPortal = 71F93F6311FB8E9D007A5A7C /* DFCdrom.xcodeproj */;
- proxyType = 2;
- remoteGlobalIDString = 8D576316048677EA00EA77CD;
- remoteInfo = DFCdrom;
+ containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
+ proxyType = 1;
+ remoteGlobalIDString = 551A77BF1786A2890052D185;
+ remoteInfo = TinySDL;
};
/* End PBXContainerItemProxy section */
/* Begin PBXCopyFilesBuildPhase section */
+ 551A779C17869FB10052D185 /* Copy Frameworks */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = "";
+ dstSubfolderSpec = 10;
+ files = (
+ 551A779E17869FC70052D185 /* libSPUSharedCode.dylib in Copy Frameworks */,
+ 551A77E61786A4C20052D185 /* libTinySDL.dylib in Copy Frameworks */,
+ );
+ name = "Copy Frameworks";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A779F17869FD60052D185 /* Copy Frameworks */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = "";
+ dstSubfolderSpec = 10;
+ files = (
+ 551A77A017869FED0052D185 /* libSPUSharedCode.dylib in Copy Frameworks */,
+ );
+ name = "Copy Frameworks";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A77BA1786A1DC0052D185 /* Copy Frameworks */ = {
+ isa = PBXCopyFilesBuildPhase;
+ buildActionMask = 2147483647;
+ dstPath = "";
+ dstSubfolderSpec = 10;
+ files = (
+ 551A77E41786A4B30052D185 /* libTinySDL.dylib in Copy Frameworks */,
+ );
+ name = "Copy Frameworks";
+ runOnlyForDeploymentPostprocessing = 0;
+ };
71AD2DF010C3573400365243 /* Copy PlugIns */ = {
isa = PBXCopyFilesBuildPhase;
buildActionMask = 2147483647;
dstPath = "";
dstSubfolderSpec = 13;
files = (
- 55858D24178632C50068B8FC /* Bladesio1.psxplugin in Copy PlugIns */,
- 5586CD9714AFADD9008EF4EE /* PeopsSpuSDL.psxplugin in Copy PlugIns */,
- 5586CD9814AFADD9008EF4EE /* PeopsSpuAL.psxplugin in Copy PlugIns */,
- 559DACBB146C68C500C5DF71 /* DFNet.psxplugin in Copy PlugIns */,
- 71D888D6130F04F100F150FF /* gpuPeopsXGL.psxplugin in Copy PlugIns */,
- 71F2C0881200B6B000322AD9 /* DFInput.psxplugin in Copy PlugIns */,
- 713CB2E411FC49DA0033B6A8 /* DFCdrom.psxplugin in Copy PlugIns */,
- 71AD2DF510C3575C00365243 /* gpuPeopsSoftGL.psxplugin in Copy PlugIns */,
+ 551A779417869F610052D185 /* Bladesio1.psxplugin in Copy PlugIns */,
+ 551A779517869F610052D185 /* DFCdrom.psxplugin in Copy PlugIns */,
+ 551A779617869F610052D185 /* DFInput.psxplugin in Copy PlugIns */,
+ 551A779717869F610052D185 /* PeopsSoftGPU.psxplugin in Copy PlugIns */,
+ 551A779817869F610052D185 /* PeopsSpuSDL.psxplugin in Copy PlugIns */,
+ 551A779917869F610052D185 /* PeopsSpuAL.psxplugin in Copy PlugIns */,
+ 551A779A17869F610052D185 /* PeopsXGL.psxplugin in Copy PlugIns */,
+ 551A779B17869F610052D185 /* DFNet.psxplugin in Copy PlugIns */,
);
name = "Copy PlugIns";
runOnlyForDeploymentPostprocessing = 0;
@@ -263,11 +421,9 @@
2B143D03078A2CBD00AF745A /* pcsxrmemcard.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = pcsxrmemcard.icns; sourceTree = "<group>"; };
2B143D04078A2CBD00AF745A /* psxbios.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = psxbios.icns; sourceTree = "<group>"; };
2B143D05078A2CBD00AF745A /* psxplugin.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = psxplugin.icns; sourceTree = "<group>"; };
- 2B2189D204D96C7A00179945 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; };
2B4DE98D05FF9307003EFEF0 /* PluginController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PluginController.h; sourceTree = "<group>"; };
2B4DE98E05FF9307003EFEF0 /* PluginController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PluginController.m; sourceTree = "<group>"; };
2B690C760635C65C00CDA575 /* ExceptionHandling.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExceptionHandling.framework; path = /System/Library/Frameworks/ExceptionHandling.framework; sourceTree = "<absolute>"; };
- 2B6E8AB404C8327C0017A3B1 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = "<absolute>"; };
2B75FD3C051C56D200D12034 /* PcsxrController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = PcsxrController.h; sourceTree = "<group>"; };
2B75FD3D051C56D200D12034 /* PcsxrController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = PcsxrController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
2B75FD4A051C8A7400D12034 /* ConfigurationController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = ConfigurationController.h; sourceTree = "<group>"; };
@@ -285,10 +441,274 @@
2BBB1791051E113B00B84448 /* EmuThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmuThread.h; sourceTree = "<group>"; };
2BBB1792051E113B00B84448 /* EmuThread.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = EmuThread.m; sourceTree = "<group>"; };
2BBB17DA051E4D0F00B84448 /* Plugin.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Plugin.c; sourceTree = SOURCE_ROOT; };
- 2BC4786204C7FD3600CAB520 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
+ 551A749E17868B110052D185 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
+ 551A74A117868B110052D185 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
+ 551A74A217868B110052D185 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
+ 551A74A317868B110052D185 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
+ 551A74B517868BEA0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/Bladesio1PluginConfig.xib; sourceTree = "<group>"; };
+ 551A74B717868BEA0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
+ 551A74B917868BEA0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
+ 551A74BB17868BEA0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
+ 551A74BC17868BEA0052D185 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
+ 551A74BE17868BEA0052D185 /* ARCBridge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
+ 551A74BF17868BEA0052D185 /* cfg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = cfg.c; sourceTree = "<group>"; };
+ 551A74C017868BEA0052D185 /* PluginConfigController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PluginConfigController.h; sourceTree = "<group>"; };
+ 551A74C117868BEA0052D185 /* PluginConfigController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PluginConfigController.m; sourceTree = "<group>"; };
+ 551A74C217868BEA0052D185 /* version.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = version.plist; sourceTree = "<group>"; };
+ 551A74C617868BEA0052D185 /* begin_code.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = begin_code.h; sourceTree = "<group>"; };
+ 551A74C717868BEA0052D185 /* close_code.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = close_code.h; sourceTree = "<group>"; };
+ 551A74C817868BEA0052D185 /* SDL.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL.h; sourceTree = "<group>"; };
+ 551A74C917868BEA0052D185 /* SDL_audio.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_audio.h; sourceTree = "<group>"; };
+ 551A74CA17868BEA0052D185 /* SDL_config.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_config.h; sourceTree = "<group>"; };
+ 551A74CB17868BEA0052D185 /* SDL_endian.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_endian.h; sourceTree = "<group>"; };
+ 551A74CC17868BEA0052D185 /* SDL_error.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_error.h; sourceTree = "<group>"; };
+ 551A74CD17868BEA0052D185 /* SDL_haptic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_haptic.h; sourceTree = "<group>"; };
+ 551A74CE17868BEA0052D185 /* SDL_joystick.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_joystick.h; sourceTree = "<group>"; };
+ 551A74CF17868BEA0052D185 /* SDL_main.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_main.h; sourceTree = "<group>"; };
+ 551A74D017868BEA0052D185 /* SDL_mutex.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_mutex.h; sourceTree = "<group>"; };
+ 551A74D117868BEA0052D185 /* SDL_platform.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_platform.h; sourceTree = "<group>"; };
+ 551A74D217868BEA0052D185 /* SDL_rwops.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_rwops.h; sourceTree = "<group>"; };
+ 551A74D317868BEA0052D185 /* SDL_stdinc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_stdinc.h; sourceTree = "<group>"; };
+ 551A74D417868BEA0052D185 /* SDL_thread.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_thread.h; sourceTree = "<group>"; };
+ 551A74D517868BEA0052D185 /* SDL_version.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_version.h; sourceTree = "<group>"; };
+ 551A74D917868BEA0052D185 /* SDL_coreaudio.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL_coreaudio.c; sourceTree = "<group>"; };
+ 551A74DA17868BEA0052D185 /* SDL_coreaudio.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_coreaudio.h; sourceTree = "<group>"; };
+ 551A74DB17868BEA0052D185 /* SDL_audio.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL_audio.c; sourceTree = "<group>"; };
+ 551A74DC17868BEA0052D185 /* SDL_audio_c.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_audio_c.h; sourceTree = "<group>"; };
+ 551A74DD17868BEA0052D185 /* SDL_audiocvt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL_audiocvt.c; sourceTree = "<group>"; };
+ 551A74DE17868BEA0052D185 /* SDL_audiomem.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_audiomem.h; sourceTree = "<group>"; };
+ 551A74DF17868BEA0052D185 /* SDL_audiotypecvt.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL_audiotypecvt.c; sourceTree = "<group>"; };
+ 551A74E017868BEA0052D185 /* SDL_mixer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL_mixer.c; sourceTree = "<group>"; };
+ 551A74E117868BEA0052D185 /* SDL_sysaudio.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_sysaudio.h; sourceTree = "<group>"; };
+ 551A74E217868BEA0052D185 /* SDL_wave.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL_wave.c; sourceTree = "<group>"; };
+ 551A74E317868BEA0052D185 /* SDL_wave.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_wave.h; sourceTree = "<group>"; };
+ 551A74E617868BEA0052D185 /* SDL_rwopsbundlesupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_rwopsbundlesupport.h; sourceTree = "<group>"; };
+ 551A74E717868BEA0052D185 /* SDL_rwopsbundlesupport.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SDL_rwopsbundlesupport.m; sourceTree = "<group>"; };
+ 551A74E817868BEA0052D185 /* SDL_rwops.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL_rwops.c; sourceTree = "<group>"; };
+ 551A74EB17868BEA0052D185 /* SDL_syshaptic.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL_syshaptic.c; sourceTree = "<group>"; };
+ 551A74EC17868BEA0052D185 /* SDL_haptic.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL_haptic.c; sourceTree = "<group>"; };
+ 551A74ED17868BEA0052D185 /* SDL_haptic_c.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_haptic_c.h; sourceTree = "<group>"; };
+ 551A74EE17868BEA0052D185 /* SDL_syshaptic.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_syshaptic.h; sourceTree = "<group>"; };
+ 551A74F117868BEA0052D185 /* SDL_sysjoystick.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL_sysjoystick.c; sourceTree = "<group>"; };
+ 551A74F217868BEA0052D185 /* SDL_sysjoystick_c.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_sysjoystick_c.h; sourceTree = "<group>"; };
+ 551A74F317868BEA0052D185 /* SDL_joystick.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL_joystick.c; sourceTree = "<group>"; };
+ 551A74F417868BEA0052D185 /* SDL_joystick_c.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_joystick_c.h; sourceTree = "<group>"; };
+ 551A74F517868BEA0052D185 /* SDL_sysjoystick.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_sysjoystick.h; sourceTree = "<group>"; };
+ 551A74F617868BEA0052D185 /* SDL.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL.c; sourceTree = "<group>"; };
+ 551A74F717868BEA0052D185 /* SDL_error.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL_error.c; sourceTree = "<group>"; };
+ 551A74F817868BEA0052D185 /* SDL_error_c.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_error_c.h; sourceTree = "<group>"; };
+ 551A74FB17868BEA0052D185 /* SDL_syscond.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL_syscond.c; sourceTree = "<group>"; };
+ 551A74FC17868BEA0052D185 /* SDL_sysmutex.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL_sysmutex.c; sourceTree = "<group>"; };
+ 551A74FD17868BEA0052D185 /* SDL_sysmutex_c.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_sysmutex_c.h; sourceTree = "<group>"; };
+ 551A74FE17868BEA0052D185 /* SDL_syssem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL_syssem.c; sourceTree = "<group>"; };
+ 551A74FF17868BEA0052D185 /* SDL_systhread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL_systhread.c; sourceTree = "<group>"; };
+ 551A750017868BEA0052D185 /* SDL_systhread_c.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_systhread_c.h; sourceTree = "<group>"; };
+ 551A750117868BEA0052D185 /* SDL_systhread.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_systhread.h; sourceTree = "<group>"; };
+ 551A750217868BEA0052D185 /* SDL_thread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = SDL_thread.c; sourceTree = "<group>"; };
+ 551A750317868BEA0052D185 /* SDL_thread_c.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SDL_thread_c.h; sourceTree = "<group>"; };
+ 551A750517868BEA0052D185 /* ARCBridge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ARCBridge.h; path = ../ARCBridge.h; sourceTree = "<group>"; };
+ 551A750A17868BEB0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
+ 551A750C17868BEB0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/DFCdromPluginConfig.xib; sourceTree = "<group>"; };
+ 551A750E17868BEB0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
+ 551A751017868BEB0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
+ 551A751117868BEB0052D185 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
+ 551A751317868BEB0052D185 /* cdr-macosx.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = "cdr-macosx.c"; sourceTree = "<group>"; };
+ 551A751417868BEB0052D185 /* cfg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = cfg.c; sourceTree = "<group>"; };
+ 551A751517868BEB0052D185 /* PluginConfigController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PluginConfigController.h; sourceTree = "<group>"; };
+ 551A751617868BEB0052D185 /* PluginConfigController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PluginConfigController.m; sourceTree = "<group>"; };
+ 551A751717868BEB0052D185 /* version.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = version.plist; sourceTree = "<group>"; };
+ 551A751917868BEB0052D185 /* ARCBridge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ARCBridge.h; path = ../ARCBridge.h; sourceTree = "<group>"; };
+ 551A751E17868BEB0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
+ 551A752017868BEB0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
+ 551A752217868BEB0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
+ 551A752417868BEB0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/NetPcsxrHIDInputPluginMain.xib; sourceTree = "<group>"; };
+ 551A752517868BEB0052D185 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
+ 551A752717868BEB0052D185 /* cfg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = cfg.c; sourceTree = "<group>"; };
+ 551A752817868BEB0052D185 /* cfg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cfg.h; sourceTree = "<group>"; };
+ 551A752917868BEB0052D185 /* ControllerList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ControllerList.h; sourceTree = "<group>"; };
+ 551A752A17868BEB0052D185 /* ControllerList.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ControllerList.m; sourceTree = "<group>"; };
+ 551A752B17868BEB0052D185 /* MappingCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MappingCell.h; sourceTree = "<group>"; };
+ 551A752C17868BEB0052D185 /* MappingCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MappingCell.m; sourceTree = "<group>"; };
+ 551A752D17868BEB0052D185 /* PadController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PadController.h; sourceTree = "<group>"; };
+ 551A752E17868BEB0052D185 /* PadController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PadController.m; sourceTree = "<group>"; };
+ 551A752F17868BEB0052D185 /* PadView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PadView.h; sourceTree = "<group>"; };
+ 551A753017868BEB0052D185 /* PadView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PadView.m; sourceTree = "<group>"; };
+ 551A753117868BEB0052D185 /* xkb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = xkb.c; sourceTree = "<group>"; };
+ 551A753717868BEB0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
+ 551A753917868BEB0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/DFNet.xib; sourceTree = "<group>"; };
+ 551A753B17868BEB0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
+ 551A753D17868BEB0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
+ 551A753F17868BEC0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/SockDialog.xib; sourceTree = "<group>"; };
+ 551A754017868BEC0052D185 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
+ 551A754217868BEC0052D185 /* ARCBridge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
+ 551A754317868BEC0052D185 /* cfg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = cfg.c; sourceTree = "<group>"; };
+ 551A754417868BEC0052D185 /* PluginConfigController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PluginConfigController.h; sourceTree = "<group>"; };
+ 551A754517868BEC0052D185 /* PluginConfigController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PluginConfigController.m; sourceTree = "<group>"; };
+ 551A754617868BEC0052D185 /* SockDialog.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SockDialog.h; sourceTree = "<group>"; };
+ 551A754717868BEC0052D185 /* SockDialog.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SockDialog.m; sourceTree = "<group>"; };
+ 551A754817868BEC0052D185 /* version.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = version.plist; sourceTree = "<group>"; };
+ 551A754A17868BEC0052D185 /* Info-AL.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "Info-AL.plist"; path = "../../Info-AL.plist"; sourceTree = "<group>"; };
+ 551A754B17868BEC0052D185 /* Info-SDL.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "Info-SDL.plist"; path = "../../Info-SDL.plist"; sourceTree = "<group>"; };
+ 551A754D17868BEC0052D185 /* ARCBridge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
+ 551A754E17868BEC0052D185 /* maccfg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = maccfg.h; sourceTree = "<group>"; };
+ 551A754F17868BEC0052D185 /* NamedSlider.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NamedSlider.h; sourceTree = "<group>"; };
+ 551A755017868BEC0052D185 /* NamedSlider.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NamedSlider.m; sourceTree = "<group>"; };
+ 551A755117868BEC0052D185 /* PluginController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PluginController.h; sourceTree = "<group>"; };
+ 551A755217868BEC0052D185 /* PluginController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PluginController.m; sourceTree = "<group>"; };
+ 551A755317868BEC0052D185 /* SPUPluginController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SPUPluginController.h; sourceTree = "<group>"; };
+ 551A755417868BEC0052D185 /* SPUPluginController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SPUPluginController.m; sourceTree = "<group>"; };
+ 551A755B17868BEC0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
+ 551A755E17868BEC0052D185 /* English */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
+ 551A756117868BEC0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
+ 551A756317868BEC0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
+ 551A756517868BEC0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/NetSfPeopsSpuPluginMain.xib; sourceTree = "<group>"; };
+ 551A756717868BEC0052D185 /* ARCBridge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ARCBridge.h; path = ../ARCBridge.h; sourceTree = "<group>"; };
+ 551A756917868BEC0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
+ 551A756B17868BEC0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
+ 551A756D17868BEC0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
+ 551A756F17868BEC0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/NetSfPeopsSoftGPUConfig.xib; sourceTree = "<group>"; };
+ 551A757017868BEC0052D185 /* gpuPeteOGL2.slf */ = {isa = PBXFileReference; lastKnownFileType = text; path = gpuPeteOGL2.slf; sourceTree = "<group>"; };
+ 551A757117868BEC0052D185 /* gpuPeteOGL2.slv */ = {isa = PBXFileReference; lastKnownFileType = text; path = gpuPeteOGL2.slv; sourceTree = "<group>"; };
+ 551A757217868BEC0052D185 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
+ 551A757417868BEC0052D185 /* drawgl.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = drawgl.m; sourceTree = "<group>"; };
+ 551A757517868BEC0052D185 /* ExtendedKeys.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExtendedKeys.h; sourceTree = "<group>"; };
+ 551A757617868BEC0052D185 /* PluginConfigController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PluginConfigController.h; sourceTree = "<group>"; };
+ 551A757717868BEC0052D185 /* PluginConfigController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PluginConfigController.m; sourceTree = "<group>"; };
+ 551A757817868BEC0052D185 /* PluginGLView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PluginGLView.h; sourceTree = "<group>"; };
+ 551A757917868BEC0052D185 /* PluginGLView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PluginGLView.m; sourceTree = "<group>"; };
+ 551A757A17868BEC0052D185 /* PluginWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PluginWindow.h; sourceTree = "<group>"; };
+ 551A757B17868BEC0052D185 /* PluginWindow.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PluginWindow.m; sourceTree = "<group>"; };
+ 551A757C17868BEC0052D185 /* PluginWindowController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PluginWindowController.h; sourceTree = "<group>"; };
+ 551A757D17868BEC0052D185 /* PluginWindowController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PluginWindowController.m; sourceTree = "<group>"; };
+ 551A757E17868BEC0052D185 /* SGPUPreferences.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SGPUPreferences.h; sourceTree = "<group>"; };
+ 551A757F17868BED0052D185 /* NetSfPeopsSoftGPUInterface.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NetSfPeopsSoftGPUInterface.xib; sourceTree = "<group>"; };
+ 551A758417868BED0052D185 /* ARCBridge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ARCBridge.h; path = ../ARCBridge.h; sourceTree = "<group>"; };
+ 551A758617868BED0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
+ 551A758817868BED0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
+ 551A758A17868BED0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
+ 551A758C17868BED0052D185 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/NetSfPeopsOpenGLConfig.xib; sourceTree = "<group>"; };
+ 551A758D17868BED0052D185 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
+ 551A758F17868BED0052D185 /* drawgl.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = drawgl.h; sourceTree = "<group>"; };
+ 551A759017868BED0052D185 /* drawgl.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = drawgl.m; sourceTree = "<group>"; };
+ 551A759117868BED0052D185 /* ExtendedKeys.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExtendedKeys.h; sourceTree = "<group>"; };
+ 551A759217868BED0052D185 /* NetSfPeopsOpenGLPluginConfigController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NetSfPeopsOpenGLPluginConfigController.h; sourceTree = "<group>"; };
+ 551A759317868BED0052D185 /* NetSfPeopsOpenGLPluginConfigController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NetSfPeopsOpenGLPluginConfigController.m; sourceTree = "<group>"; };
+ 551A759417868BED0052D185 /* PluginGLView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PluginGLView.h; sourceTree = "<group>"; };
+ 551A759517868BED0052D185 /* PluginGLView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PluginGLView.m; sourceTree = "<group>"; };
+ 551A759617868BED0052D185 /* PluginWindow.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PluginWindow.h; sourceTree = "<group>"; };
+ 551A759717868BED0052D185 /* PluginWindow.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PluginWindow.m; sourceTree = "<group>"; };
+ 551A759817868BED0052D185 /* PluginWindowController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PluginWindowController.h; sourceTree = "<group>"; };
+ 551A759917868BED0052D185 /* PluginWindowController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PluginWindowController.m; sourceTree = "<group>"; };
+ 551A759A17868BED0052D185 /* NetSfPeopsOpenGLGPUInterface.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NetSfPeopsOpenGLGPUInterface.xib; sourceTree = "<group>"; };
+ 551A75BC17868C400052D185 /* connection.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = connection.c; sourceTree = "<group>"; };
+ 551A75BD17868C400052D185 /* connection.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = connection.h; sourceTree = "<group>"; };
+ 551A75BE17868C400052D185 /* fifo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = fifo.c; sourceTree = "<group>"; };
+ 551A75BF17868C400052D185 /* fifo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = fifo.h; sourceTree = "<group>"; };
+ 551A75C217868C400052D185 /* sio1.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = sio1.c; sourceTree = "<group>"; };
+ 551A75C317868C400052D185 /* sio1.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = sio1.h; sourceTree = "<group>"; };
+ 551A75C517868C400052D185 /* typedefs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = typedefs.h; sourceTree = "<group>"; };
+ 551A75CE17868C4E0052D185 /* Bladesio1.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Bladesio1.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
+ 551A75F417868E640052D185 /* cdr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = cdr.c; sourceTree = "<group>"; };
+ 551A75F517868E640052D185 /* cdr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cdr.h; sourceTree = "<group>"; };
+ 551A75FB17868E640052D185 /* util.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = util.c; sourceTree = "<group>"; };
+ 551A760A17868EF00052D185 /* adsr.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = adsr.c; sourceTree = "<group>"; };
+ 551A760B17868EF00052D185 /* adsr.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = adsr.h; sourceTree = "<group>"; };
+ 551A760F17868EF00052D185 /* dma.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = dma.c; sourceTree = "<group>"; };
+ 551A761017868EF00052D185 /* dma.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dma.h; sourceTree = "<group>"; };
+ 551A761117868EF00052D185 /* dsoundoss.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = dsoundoss.h; sourceTree = "<group>"; };
+ 551A761217868EF00052D185 /* externals.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = externals.c; sourceTree = "<group>"; };
+ 551A761317868EF00052D185 /* externals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = externals.h; sourceTree = "<group>"; };
+ 551A761417868EF00052D185 /* freeze.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = freeze.c; sourceTree = "<group>"; };
+ 551A761517868EF00052D185 /* gauss_i.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = gauss_i.h; sourceTree = "<group>"; };
+ 551A761817868EF00052D185 /* openal.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = openal.c; sourceTree = "<group>"; };
+ 551A761A17868EF00052D185 /* psemuxa.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = psemuxa.h; sourceTree = "<group>"; };
+ 551A761C17868EF00052D185 /* registers.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = registers.c; sourceTree = "<group>"; };
+ 551A761D17868EF00052D185 /* registers.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = registers.h; sourceTree = "<group>"; };
+ 551A761E17868EF00052D185 /* regs.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = regs.h; sourceTree = "<group>"; };
+ 551A761F17868EF00052D185 /* reverb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = reverb.c; sourceTree = "<group>"; };
+ 551A762017868EF00052D185 /* reverb.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = reverb.h; sourceTree = "<group>"; };
+ 551A762117868EF00052D185 /* sdl.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = sdl.c; sourceTree = "<group>"; };
+ 551A762217868EF00052D185 /* spu.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = spu.c; sourceTree = "<group>"; };
+ 551A762317868EF00052D185 /* spu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = spu.h; sourceTree = "<group>"; };
+ 551A762717868EF00052D185 /* stdafx.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = stdafx.h; sourceTree = "<group>"; };
+ 551A762817868EF00052D185 /* xa.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = xa.c; sourceTree = "<group>"; };
+ 551A762917868EF00052D185 /* xa.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = xa.h; sourceTree = "<group>"; };
+ 551A762B17868F270052D185 /* cfg.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = cfg.c; sourceTree = "<group>"; };
+ 551A762C17868F270052D185 /* cfg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = cfg.h; sourceTree = "<group>"; };
+ 551A762D17868F270052D185 /* draw.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = draw.c; sourceTree = "<group>"; };
+ 551A762E17868F270052D185 /* draw.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = draw.h; sourceTree = "<group>"; };
+ 551A762F17868F270052D185 /* externals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = externals.h; sourceTree = "<group>"; };
+ 551A763017868F270052D185 /* fps.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = fps.c; sourceTree = "<group>"; };
+ 551A763117868F270052D185 /* fps.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = fps.h; sourceTree = "<group>"; };
+ 551A763217868F270052D185 /* gpu.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = gpu.c; sourceTree = "<group>"; };
+ 551A763317868F270052D185 /* gpu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = gpu.h; sourceTree = "<group>"; };
+ 551A763717868F270052D185 /* hq2x.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = hq2x.h; sourceTree = "<group>"; };
+ 551A763817868F270052D185 /* hq3x.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = hq3x.h; sourceTree = "<group>"; };
+ 551A763A17868F280052D185 /* interp.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = interp.h; sourceTree = "<group>"; };
+ 551A763B17868F280052D185 /* key.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = key.c; sourceTree = "<group>"; };
+ 551A763C17868F280052D185 /* key.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = key.h; sourceTree = "<group>"; };
+ 551A763F17868F280052D185 /* menu.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = menu.c; sourceTree = "<group>"; };
+ 551A764017868F280052D185 /* menu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = menu.h; sourceTree = "<group>"; };
+ 551A764117868F280052D185 /* prim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = prim.c; sourceTree = "<group>"; };
+ 551A764217868F280052D185 /* prim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = prim.h; sourceTree = "<group>"; };
+ 551A764317868F280052D185 /* soft.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = soft.c; sourceTree = "<group>"; };
+ 551A764417868F280052D185 /* soft.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = soft.h; sourceTree = "<group>"; };
+ 551A764517868F280052D185 /* swap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = swap.h; sourceTree = "<group>"; };
+ 551A764617868F280052D185 /* zn.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = zn.c; sourceTree = "<group>"; };
+ 551A764B17868F570052D185 /* draw.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = draw.c; sourceTree = "<group>"; };
+ 551A764C17868F570052D185 /* draw.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = draw.h; sourceTree = "<group>"; };
+ 551A764D17868F570052D185 /* externals.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = externals.h; sourceTree = "<group>"; };
+ 551A764E17868F570052D185 /* fps.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = fps.c; sourceTree = "<group>"; };
+ 551A764F17868F570052D185 /* fps.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = fps.h; sourceTree = "<group>"; };
+ 551A765017868F570052D185 /* gl_ext.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = gl_ext.h; sourceTree = "<group>"; };
+ 551A765117868F570052D185 /* gpu.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = gpu.c; sourceTree = "<group>"; };
+ 551A765217868F570052D185 /* gpu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = gpu.h; sourceTree = "<group>"; };
+ 551A765617868F570052D185 /* gte_accuracy.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = gte_accuracy.c; sourceTree = "<group>"; };
+ 551A765717868F570052D185 /* gte_accuracy.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = gte_accuracy.h; sourceTree = "<group>"; };
+ 551A765817868F570052D185 /* key.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = key.c; sourceTree = "<group>"; };
+ 551A765917868F570052D185 /* key.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = key.h; sourceTree = "<group>"; };
+ 551A765B17868F570052D185 /* menu.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = menu.c; sourceTree = "<group>"; };
+ 551A765C17868F570052D185 /* menu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = menu.h; sourceTree = "<group>"; };
+ 551A765D17868F570052D185 /* prim.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = prim.c; sourceTree = "<group>"; };
+ 551A765E17868F570052D185 /* prim.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = prim.h; sourceTree = "<group>"; };
+ 551A765F17868F570052D185 /* soft.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = soft.c; sourceTree = "<group>"; };
+ 551A766017868F570052D185 /* soft.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = soft.h; sourceTree = "<group>"; };
+ 551A766117868F570052D185 /* stdafx.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = stdafx.h; sourceTree = "<group>"; };
+ 551A766217868F570052D185 /* texture.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = texture.c; sourceTree = "<group>"; };
+ 551A766317868F570052D185 /* texture.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = texture.h; sourceTree = "<group>"; };
+ 551A76661786901F0052D185 /* analog.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = analog.c; sourceTree = "<group>"; };
+ 551A766B1786901F0052D185 /* pad.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = pad.c; sourceTree = "<group>"; };
+ 551A766C1786901F0052D185 /* pad.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = pad.h; sourceTree = "<group>"; };
+ 551A766D1786901F0052D185 /* sdljoy.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = sdljoy.c; sourceTree = "<group>"; };
+ 551A766E1786901F0052D185 /* util.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = util.c; sourceTree = "<group>"; };
+ 551A766F1786901F0052D185 /* util.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = util.h; sourceTree = "<group>"; };
+ 551A76701786901F0052D185 /* xkb.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = xkb.c; sourceTree = "<group>"; };
+ 551A767A178690500052D185 /* DFCdrom.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DFCdrom.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
+ 551A7684178691170052D185 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = System/Library/Frameworks/IOKit.framework; sourceTree = SDKROOT; };
+ 551A768E1786919F0052D185 /* DFInput.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DFInput.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
+ 551A768F178691E60052D185 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ForceFeedback.framework; path = System/Library/Frameworks/ForceFeedback.framework; sourceTree = SDKROOT; };
+ 551A76AC178693C60052D185 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = System/Library/Frameworks/Carbon.framework; sourceTree = SDKROOT; };
+ 551A76AE178693D60052D185 /* ApplicationServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ApplicationServices.framework; path = System/Library/Frameworks/ApplicationServices.framework; sourceTree = SDKROOT; };
+ 551A76AF178693D60052D185 /* CoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreServices.framework; path = System/Library/Frameworks/CoreServices.framework; sourceTree = SDKROOT; };
+ 551A76B2178693EA0052D185 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
+ 551A76BC178693FF0052D185 /* PeopsSoftGPU.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PeopsSoftGPU.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
+ 551A76D1178695BD0052D185 /* GLUT.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLUT.framework; path = System/Library/Frameworks/GLUT.framework; sourceTree = SDKROOT; };
+ 551A76D2178695C70052D185 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
+ 551A76D8178696810052D185 /* libz.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libz.dylib; path = usr/lib/libz.dylib; sourceTree = SDKROOT; };
+ 551A76E2178696BD0052D185 /* PeopsSpuSDL.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PeopsSpuSDL.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
+ 551A76E71786971B0052D185 /* libSPUSharedCode.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libSPUSharedCode.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
+ 551A771F178698C60052D185 /* PeopsSpuAL.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PeopsSpuAL.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
+ 551A7723178699250052D185 /* OpenAL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenAL.framework; path = System/Library/Frameworks/OpenAL.framework; sourceTree = SDKROOT; };
+ 551A774217869BD40052D185 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioUnit.framework; path = System/Library/Frameworks/AudioUnit.framework; sourceTree = SDKROOT; };
+ 551A774317869BD50052D185 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
+ 551A774F17869C280052D185 /* PeopsXGL.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PeopsXGL.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
+ 551A776D17869E430052D185 /* DFNet.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DFNet.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
+ 551A777317869E830052D185 /* dfnet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dfnet.c; sourceTree = "<group>"; };
+ 551A777417869E830052D185 /* dfnet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dfnet.h; sourceTree = "<group>"; };
+ 551A777817869E830052D185 /* unix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = unix.c; sourceTree = "<group>"; };
+ 551A77C01786A2890052D185 /* libTinySDL.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libTinySDL.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
5550D2711683C923006C56B5 /* RecentItemsMenu.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecentItemsMenu.h; sourceTree = "<group>"; };
5550D2721683C923006C56B5 /* RecentItemsMenu.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecentItemsMenu.m; sourceTree = "<group>"; };
- 55858D1B1786329D0068B8FC /* Bladesio1.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Bladesio1.xcodeproj; path = plugins/Bladesio1/Bladesio1.xcodeproj; sourceTree = "<group>"; };
55858D2817864D140068B8FC /* Pcsxr.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Pcsxr.xcconfig; sourceTree = "<group>"; };
55858D2A17864DC80068B8FC /* Pcsxr-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Debug.xcconfig"; sourceTree = "<group>"; };
55858D2B17864DC90068B8FC /* Pcsxr-Instrument.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Instrument.xcconfig"; sourceTree = "<group>"; };
@@ -302,15 +722,12 @@
559366C612B694DF004ACC1E /* ix86_fpu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ix86_fpu.c; sourceTree = "<group>"; };
559366C712B694DF004ACC1E /* ix86_mmx.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ix86_mmx.c; sourceTree = "<group>"; };
559366C812B694DF004ACC1E /* ix86_sse.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ix86_sse.c; sourceTree = "<group>"; };
- 559DACA3146C647E00C5DF71 /* DFNet.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = DFNet.xcodeproj; path = plugins/DFNet/DFNet.xcodeproj; sourceTree = "<group>"; };
559DACED146C72FF00C5DF71 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = Localizable.strings; sourceTree = "<group>"; };
55A9021E147D7C380037E18F /* PcsxrMemCardController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PcsxrMemCardController.h; sourceTree = "<group>"; };
55A9021F147D7C380037E18F /* PcsxrMemCardController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PcsxrMemCardController.m; sourceTree = "<group>"; };
55A90222147D7C7A0037E18F /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = MemCardManager.xib; sourceTree = "<group>"; };
55A90227147D89380037E18F /* PcsxrMemoryObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PcsxrMemoryObject.h; sourceTree = "<group>"; };
55A90228147D89380037E18F /* PcsxrMemoryObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PcsxrMemoryObject.m; sourceTree = "<group>"; };
- 55AD382A160C200000E9EA20 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
- 55AD382B160C200000E9EA20 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
55BB3493169CD42500850200 /* ARCBridge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
55BBA690149454DE003B2CEC /* PcsxrFileHandle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PcsxrFileHandle.h; sourceTree = "<group>"; };
55BBA691149455E1003B2CEC /* PcsxrMemCardHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PcsxrMemCardHandler.h; sourceTree = "<group>"; };
@@ -333,10 +750,6 @@
7192F429129C412E0042D946 /* gpu.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; path = gpu.h; sourceTree = "<group>"; };
719594AF11AEFE8C004AD686 /* gte_divider.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; path = gte_divider.h; sourceTree = "<group>"; };
719594B011AEFE8C004AD686 /* psxcommon.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; path = psxcommon.c; sourceTree = "<group>"; };
- 71AD2DC710C356FD00365243 /* PeopsSPU.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = PeopsSPU.xcodeproj; path = plugins/DFSound/PeopsSPU.xcodeproj; sourceTree = SOURCE_ROOT; };
- 71AD2DD210C3570900365243 /* PeopsSoftGPU.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = PeopsSoftGPU.xcodeproj; path = plugins/DFXVideo/PeopsSoftGPU.xcodeproj; sourceTree = SOURCE_ROOT; };
- 71D888CE130F04DC00F150FF /* PeopsXGL.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = PeopsXGL.xcodeproj; path = plugins/PeopsXgl/PeopsXGL.xcodeproj; sourceTree = "<group>"; };
- 71F2C07E1200B69B00322AD9 /* DFInput.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = DFInput.xcodeproj; path = plugins/DFInput/DFInput.xcodeproj; sourceTree = "<group>"; };
71F4C5600FDED12800529849 /* cdriso.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; lineEnding = 2; path = cdriso.c; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.c; };
71F4C5610FDED12800529849 /* cdriso.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cdriso.h; sourceTree = "<group>"; };
71F4C5620FDED12800529849 /* cdrom.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; lineEnding = 2; path = cdrom.c; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.c; };
@@ -383,7 +796,6 @@
71F4C5B60FDED16D00529849 /* ix86.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ix86.c; sourceTree = "<group>"; };
71F4C5B70FDED16D00529849 /* ix86.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ix86.h; sourceTree = "<group>"; };
71F703A611B3A673007DD5C5 /* sjisfont.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; path = sjisfont.h; sourceTree = "<group>"; };
- 71F93F6311FB8E9D007A5A7C /* DFCdrom.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = DFCdrom.xcodeproj; path = plugins/DFCdrom/DFCdrom.xcodeproj; sourceTree = "<group>"; };
D422E66D16DC48D000526DCF /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/CheatWindow.xib; sourceTree = "<group>"; };
D422E67816DC495800526DCF /* CheatController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CheatController.h; sourceTree = "<group>"; };
D422E67916DC495800526DCF /* CheatController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CheatController.m; sourceTree = "<group>"; };
@@ -394,46 +806,132 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
- 2BB3D6C605427FE200831ACB /* Cocoa.framework in Frameworks */,
- 2BB3D6C805427FE200831ACB /* IOKit.framework in Frameworks */,
+ 551A76D9178696810052D185 /* libz.dylib in Frameworks */,
+ 551A76D61786960C0052D185 /* Cocoa.framework in Frameworks */,
+ 551A76D7178696110052D185 /* IOKit.framework in Frameworks */,
+ 551A77AC1786A10D0052D185 /* ForceFeedback.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A75C817868C4E0052D185 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A75C917868C4E0052D185 /* Cocoa.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A7674178690500052D185 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A7685178691170052D185 /* IOKit.framework in Frameworks */,
+ 551A7675178690500052D185 /* Cocoa.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A76881786919F0052D185 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A77E31786A4AF0052D185 /* libTinySDL.dylib in Frameworks */,
+ 551A76891786919F0052D185 /* Cocoa.framework in Frameworks */,
+ 551A77E71786A4DD0052D185 /* Carbon.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A76B6178693FF0052D185 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A76D3178695D10052D185 /* GLUT.framework in Frameworks */,
+ 551A76D4178695D20052D185 /* OpenGL.framework in Frameworks */,
+ 551A76B7178693FF0052D185 /* Cocoa.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A76DC178696BD0052D185 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A77E51786A4BF0052D185 /* libTinySDL.dylib in Frameworks */,
+ 551A76F6178697D70052D185 /* libSPUSharedCode.dylib in Frameworks */,
+ 551A76DD178696BD0052D185 /* Cocoa.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A76E41786971B0052D185 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A76E81786971B0052D185 /* Cocoa.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A7714178698C60052D185 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A7724178699250052D185 /* OpenAL.framework in Frameworks */,
+ 551A7715178698C60052D185 /* libSPUSharedCode.dylib in Frameworks */,
+ 551A7716178698C60052D185 /* Cocoa.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A774917869C280052D185 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A774A17869C280052D185 /* Cocoa.framework in Frameworks */,
+ 551A775017869C3C0052D185 /* GLUT.framework in Frameworks */,
+ 551A775117869C3C0052D185 /* OpenGL.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A776717869E430052D185 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A776817869E430052D185 /* Cocoa.framework in Frameworks */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A77BD1786A2890052D185 /* Frameworks */ = {
+ isa = PBXFrameworksBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A77C41786A2CA0052D185 /* AudioUnit.framework in Frameworks */,
+ 551A77C51786A2CA0052D185 /* CoreAudio.framework in Frameworks */,
+ 551A77C71786A2CA0052D185 /* ForceFeedback.framework in Frameworks */,
+ 551A77C81786A2CA0052D185 /* IOKit.framework in Frameworks */,
+ 551A77C91786A2F20052D185 /* Cocoa.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
- 0249A662FF388D9811CA2CEA /* External Frameworks and Libraries */ = {
- isa = PBXGroup;
- children = (
- 55AD382A160C200000E9EA20 /* AppKit.framework */,
- 55AD382B160C200000E9EA20 /* Foundation.framework */,
- 2B976C00074C14B4007C050A /* Kernel.framework */,
- 2BC4786204C7FD3600CAB520 /* Cocoa.framework */,
- 2B6E8AB404C8327C0017A3B1 /* IOKit.framework */,
- 2B2189D204D96C7A00179945 /* CoreFoundation.framework */,
- 2B690C760635C65C00CDA575 /* ExceptionHandling.framework */,
- );
- name = "External Frameworks and Libraries";
- sourceTree = "<group>";
- };
08FB7794FE84155DC02AAC07 /* Pcsxr */ = {
isa = PBXGroup;
children = (
- 08FB7795FE84155DC02AAC07 /* Source */,
- 0249A662FF388D9811CA2CEA /* External Frameworks and Libraries */,
+ 55858D2F178652F90068B8FC /* Configs */,
+ 08FB7795FE84155DC02AAC07 /* PCSXR */,
+ 551A749D17868B110052D185 /* Frameworks */,
+ 551A74AF17868BE90052D185 /* plugins */,
1AB674ADFE9D54B511CA2CBB /* Products */,
2BB3D6CF05427FE200831ACB /* Info.plist */,
);
name = Pcsxr;
sourceTree = "<group>";
};
- 08FB7795FE84155DC02AAC07 /* Source */ = {
+ 08FB7795FE84155DC02AAC07 /* PCSXR */ = {
isa = PBXGroup;
children = (
2BCE23B204C6B52C007C2DA3 /* libpcsxcore */,
2BC4787804C7FDBD00CAB520 /* MacOSX */,
+ 2BA178AD0514CE260026D74D /* Resources */,
);
- name = Source;
+ name = PCSXR;
sourceTree = "<group>";
};
1AB674ADFE9D54B511CA2CBB /* Products */ = {
@@ -441,6 +939,16 @@
children = (
2BBD6C1D04C893F500A83E33 /* PlugIns */,
2BB3D6D105427FE200831ACB /* PCSXR.app */,
+ 551A75CE17868C4E0052D185 /* Bladesio1.psxplugin */,
+ 551A767A178690500052D185 /* DFCdrom.psxplugin */,
+ 551A768E1786919F0052D185 /* DFInput.psxplugin */,
+ 551A76BC178693FF0052D185 /* PeopsSoftGPU.psxplugin */,
+ 551A76E2178696BD0052D185 /* PeopsSpuSDL.psxplugin */,
+ 551A76E71786971B0052D185 /* libSPUSharedCode.dylib */,
+ 551A771F178698C60052D185 /* PeopsSpuAL.psxplugin */,
+ 551A774F17869C280052D185 /* PeopsXGL.psxplugin */,
+ 551A776D17869E430052D185 /* DFNet.psxplugin */,
+ 551A77C01786A2890052D185 /* libTinySDL.dylib */,
);
name = Products;
sourceTree = "<group>";
@@ -454,12 +962,14 @@
2B143D04078A2CBD00AF745A /* psxbios.icns */,
2B143D05078A2CBD00AF745A /* psxplugin.icns */,
);
- path = icons;
+ name = icons;
+ path = ../icons;
sourceTree = "<group>";
};
2BA178AD0514CE260026D74D /* Resources */ = {
isa = PBXGroup;
children = (
+ 2B143D00078A2CBD00AF745A /* icons */,
D422E66C16DC48D000526DCF /* CheatWindow.xib */,
02FE55E616765F9400205CF2 /* KeyNames.plist */,
2BBB1786051E0D9700B84448 /* Credits.rtf */,
@@ -470,7 +980,6 @@
28F0C3CA146521B700A90285 /* AddPluginSheet.xib */,
55A90221147D7C7A0037E18F /* MemCardManager.xib */,
55C7A216148B2B3800C22ABC /* PcsxrMemCardDocument.xib */,
- 55858D2F178652F90068B8FC /* Configs */,
);
name = Resources;
path = English.lproj;
@@ -479,13 +988,6 @@
2BBD6C1D04C893F500A83E33 /* PlugIns */ = {
isa = PBXGroup;
children = (
- 55858D1B1786329D0068B8FC /* Bladesio1.xcodeproj */,
- 559DACA3146C647E00C5DF71 /* DFNet.xcodeproj */,
- 71D888CE130F04DC00F150FF /* PeopsXGL.xcodeproj */,
- 71F2C07E1200B69B00322AD9 /* DFInput.xcodeproj */,
- 71F93F6311FB8E9D007A5A7C /* DFCdrom.xcodeproj */,
- 71AD2DD210C3570900365243 /* PeopsSoftGPU.xcodeproj */,
- 71AD2DC710C356FD00365243 /* PeopsSPU.xcodeproj */,
);
name = PlugIns;
sourceTree = "<group>";
@@ -493,8 +995,6 @@
2BC4787804C7FDBD00CAB520 /* MacOSX */ = {
isa = PBXGroup;
children = (
- 2BA178AD0514CE260026D74D /* Resources */,
- 2B143D00078A2CBD00AF745A /* icons */,
55BB3493169CD42500850200 /* ARCBridge.h */,
7161C2810FDED6D000225F97 /* config.h */,
2BA178A505148D9D0026D74D /* main.m */,
@@ -598,82 +1098,678 @@
path = ../libpcsxcore;
sourceTree = "<group>";
};
- 55858D1C1786329D0068B8FC /* Products */ = {
+ 551A749D17868B110052D185 /* Frameworks */ = {
isa = PBXGroup;
children = (
- 55858D201786329D0068B8FC /* Bladesio1.psxplugin */,
+ 551A774217869BD40052D185 /* AudioUnit.framework */,
+ 551A774317869BD50052D185 /* CoreAudio.framework */,
+ 551A7723178699250052D185 /* OpenAL.framework */,
+ 551A76D1178695BD0052D185 /* GLUT.framework */,
+ 551A76D2178695C70052D185 /* OpenGL.framework */,
+ 2B690C760635C65C00CDA575 /* ExceptionHandling.framework */,
+ 2B976C00074C14B4007C050A /* Kernel.framework */,
+ 551A76AC178693C60052D185 /* Carbon.framework */,
+ 551A749E17868B110052D185 /* Cocoa.framework */,
+ 551A768F178691E60052D185 /* ForceFeedback.framework */,
+ 551A7684178691170052D185 /* IOKit.framework */,
+ 551A76D8178696810052D185 /* libz.dylib */,
+ 551A74A017868B110052D185 /* Other Frameworks */,
);
- name = Products;
+ name = Frameworks;
sourceTree = "<group>";
};
- 55858D2F178652F90068B8FC /* Configs */ = {
+ 551A74A017868B110052D185 /* Other Frameworks */ = {
isa = PBXGroup;
children = (
- 55858D2A17864DC80068B8FC /* Pcsxr-Debug.xcconfig */,
- 55858D2B17864DC90068B8FC /* Pcsxr-Instrument.xcconfig */,
- 55858D2C17864DC90068B8FC /* Pcsxr-Release.xcconfig */,
- 55858D2817864D140068B8FC /* Pcsxr.xcconfig */,
+ 551A76B2178693EA0052D185 /* CoreFoundation.framework */,
+ 551A76AE178693D60052D185 /* ApplicationServices.framework */,
+ 551A76AF178693D60052D185 /* CoreServices.framework */,
+ 551A74A117868B110052D185 /* AppKit.framework */,
+ 551A74A217868B110052D185 /* CoreData.framework */,
+ 551A74A317868B110052D185 /* Foundation.framework */,
);
- name = Configs;
- path = ../Configs;
+ name = "Other Frameworks";
sourceTree = "<group>";
};
- 559366BF12B694DF004ACC1E /* ix86_64 */ = {
+ 551A74AF17868BE90052D185 /* plugins */ = {
isa = PBXGroup;
children = (
- 559366C012B694DF004ACC1E /* iGte.h */,
- 559366C112B694DF004ACC1E /* iR3000A-64.c */,
- 559366C212B694DF004ACC1E /* ix86-64.c */,
- 559366C312B694DF004ACC1E /* ix86-64.h */,
- 559366C412B694DF004ACC1E /* ix86_3dnow.c */,
- 559366C512B694DF004ACC1E /* ix86_cpudetect.c */,
- 559366C612B694DF004ACC1E /* ix86_fpu.c */,
- 559366C712B694DF004ACC1E /* ix86_mmx.c */,
- 559366C812B694DF004ACC1E /* ix86_sse.c */,
+ 551A74B017868BE90052D185 /* Bladesio1 */,
+ 551A74C317868BEA0052D185 /* Common */,
+ 551A750417868BEA0052D185 /* DFCdrom */,
+ 551A751817868BEB0052D185 /* DFInput */,
+ 551A753217868BEB0052D185 /* DFNet */,
+ 551A754917868BEC0052D185 /* DFSound */,
+ 551A756617868BEC0052D185 /* DFXVideo */,
+ 551A758317868BED0052D185 /* PeopsXgl */,
);
- path = ix86_64;
+ path = plugins;
sourceTree = "<group>";
};
- 559DACA4146C647E00C5DF71 /* Products */ = {
+ 551A74B017868BE90052D185 /* Bladesio1 */ = {
isa = PBXGroup;
children = (
- 559DACAE146C647E00C5DF71 /* DFNet.psxplugin */,
+ 551A75B917868C200052D185 /* Resources */,
+ 551A74BD17868BEA0052D185 /* macsrc */,
+ 551A75BA17868C400052D185 /* src */,
);
- name = Products;
+ path = Bladesio1;
sourceTree = "<group>";
};
- 71AD2DCD10C356FD00365243 /* Products */ = {
+ 551A74BD17868BEA0052D185 /* macsrc */ = {
isa = PBXGroup;
children = (
- 71AD2DD110C356FD00365243 /* PeopsSpuSDL.psxplugin */,
- 28B467F11463D0020083F129 /* PeopsSpuAL.psxplugin */,
- 5586005F17850CFC00CB3D85 /* libSPUSharedCode.dylib */,
+ 551A74BE17868BEA0052D185 /* ARCBridge.h */,
+ 551A74BF17868BEA0052D185 /* cfg.c */,
+ 551A74C017868BEA0052D185 /* PluginConfigController.h */,
+ 551A74C117868BEA0052D185 /* PluginConfigController.m */,
);
- name = Products;
+ path = macsrc;
sourceTree = "<group>";
};
- 71AD2DD810C3570900365243 /* Products */ = {
+ 551A74C317868BEA0052D185 /* Common */ = {
isa = PBXGroup;
children = (
- 71AD2DDC10C3570900365243 /* gpuPeopsSoftGL.psxplugin */,
+ 551A74C417868BEA0052D185 /* SDL */,
);
- name = Products;
+ path = Common;
sourceTree = "<group>";
};
- 71D888CF130F04DC00F150FF /* Products */ = {
+ 551A74C417868BEA0052D185 /* SDL */ = {
isa = PBXGroup;
children = (
- 71D888D4130F04DC00F150FF /* gpuPeopsXGL.psxplugin */,
+ 551A74C517868BEA0052D185 /* include */,
+ 551A74D617868BEA0052D185 /* src */,
);
- name = Products;
+ path = SDL;
sourceTree = "<group>";
};
- 71F2C07F1200B69B00322AD9 /* Products */ = {
+ 551A74C517868BEA0052D185 /* include */ = {
isa = PBXGroup;
children = (
- 71F2C0861200B69B00322AD9 /* DFInput.psxplugin */,
+ 551A74C617868BEA0052D185 /* begin_code.h */,
+ 551A74C717868BEA0052D185 /* close_code.h */,
+ 551A74C817868BEA0052D185 /* SDL.h */,
+ 551A74C917868BEA0052D185 /* SDL_audio.h */,
+ 551A74CA17868BEA0052D185 /* SDL_config.h */,
+ 551A74CB17868BEA0052D185 /* SDL_endian.h */,
+ 551A74CC17868BEA0052D185 /* SDL_error.h */,
+ 551A74CD17868BEA0052D185 /* SDL_haptic.h */,
+ 551A74CE17868BEA0052D185 /* SDL_joystick.h */,
+ 551A74CF17868BEA0052D185 /* SDL_main.h */,
+ 551A74D017868BEA0052D185 /* SDL_mutex.h */,
+ 551A74D117868BEA0052D185 /* SDL_platform.h */,
+ 551A74D217868BEA0052D185 /* SDL_rwops.h */,
+ 551A74D317868BEA0052D185 /* SDL_stdinc.h */,
+ 551A74D417868BEA0052D185 /* SDL_thread.h */,
+ 551A74D517868BEA0052D185 /* SDL_version.h */,
);
- name = Products;
+ path = include;
+ sourceTree = "<group>";
+ };
+ 551A74D617868BEA0052D185 /* src */ = {
+ isa = PBXGroup;
+ children = (
+ 551A74D717868BEA0052D185 /* audio */,
+ 551A74E417868BEA0052D185 /* file */,
+ 551A74E917868BEA0052D185 /* haptic */,
+ 551A74EF17868BEA0052D185 /* joystick */,
+ 551A74F617868BEA0052D185 /* SDL.c */,
+ 551A74F717868BEA0052D185 /* SDL_error.c */,
+ 551A74F817868BEA0052D185 /* SDL_error_c.h */,
+ 551A74F917868BEA0052D185 /* thread */,
+ );
+ path = src;
+ sourceTree = "<group>";
+ };
+ 551A74D717868BEA0052D185 /* audio */ = {
+ isa = PBXGroup;
+ children = (
+ 551A74D817868BEA0052D185 /* macosx */,
+ 551A74DB17868BEA0052D185 /* SDL_audio.c */,
+ 551A74DC17868BEA0052D185 /* SDL_audio_c.h */,
+ 551A74DD17868BEA0052D185 /* SDL_audiocvt.c */,
+ 551A74DE17868BEA0052D185 /* SDL_audiomem.h */,
+ 551A74DF17868BEA0052D185 /* SDL_audiotypecvt.c */,
+ 551A74E017868BEA0052D185 /* SDL_mixer.c */,
+ 551A74E117868BEA0052D185 /* SDL_sysaudio.h */,
+ 551A74E217868BEA0052D185 /* SDL_wave.c */,
+ 551A74E317868BEA0052D185 /* SDL_wave.h */,
+ );
+ path = audio;
+ sourceTree = "<group>";
+ };
+ 551A74D817868BEA0052D185 /* macosx */ = {
+ isa = PBXGroup;
+ children = (
+ 551A74D917868BEA0052D185 /* SDL_coreaudio.c */,
+ 551A74DA17868BEA0052D185 /* SDL_coreaudio.h */,
+ );
+ path = macosx;
+ sourceTree = "<group>";
+ };
+ 551A74E417868BEA0052D185 /* file */ = {
+ isa = PBXGroup;
+ children = (
+ 551A74E517868BEA0052D185 /* cocoa */,
+ 551A74E817868BEA0052D185 /* SDL_rwops.c */,
+ );
+ path = file;
+ sourceTree = "<group>";
+ };
+ 551A74E517868BEA0052D185 /* cocoa */ = {
+ isa = PBXGroup;
+ children = (
+ 551A74E617868BEA0052D185 /* SDL_rwopsbundlesupport.h */,
+ 551A74E717868BEA0052D185 /* SDL_rwopsbundlesupport.m */,
+ );
+ path = cocoa;
+ sourceTree = "<group>";
+ };
+ 551A74E917868BEA0052D185 /* haptic */ = {
+ isa = PBXGroup;
+ children = (
+ 551A74EA17868BEA0052D185 /* darwin */,
+ 551A74EC17868BEA0052D185 /* SDL_haptic.c */,
+ 551A74ED17868BEA0052D185 /* SDL_haptic_c.h */,
+ 551A74EE17868BEA0052D185 /* SDL_syshaptic.h */,
+ );
+ path = haptic;
+ sourceTree = "<group>";
+ };
+ 551A74EA17868BEA0052D185 /* darwin */ = {
+ isa = PBXGroup;
+ children = (
+ 551A74EB17868BEA0052D185 /* SDL_syshaptic.c */,
+ );
+ path = darwin;
+ sourceTree = "<group>";
+ };
+ 551A74EF17868BEA0052D185 /* joystick */ = {
+ isa = PBXGroup;
+ children = (
+ 551A74F017868BEA0052D185 /* darwin */,
+ 551A74F317868BEA0052D185 /* SDL_joystick.c */,
+ 551A74F417868BEA0052D185 /* SDL_joystick_c.h */,
+ 551A74F517868BEA0052D185 /* SDL_sysjoystick.h */,
+ );
+ path = joystick;
+ sourceTree = "<group>";
+ };
+ 551A74F017868BEA0052D185 /* darwin */ = {
+ isa = PBXGroup;
+ children = (
+ 551A74F117868BEA0052D185 /* SDL_sysjoystick.c */,
+ 551A74F217868BEA0052D185 /* SDL_sysjoystick_c.h */,
+ );
+ path = darwin;
+ sourceTree = "<group>";
+ };
+ 551A74F917868BEA0052D185 /* thread */ = {
+ isa = PBXGroup;
+ children = (
+ 551A74FA17868BEA0052D185 /* pthread */,
+ 551A750117868BEA0052D185 /* SDL_systhread.h */,
+ 551A750217868BEA0052D185 /* SDL_thread.c */,
+ 551A750317868BEA0052D185 /* SDL_thread_c.h */,
+ );
+ path = thread;
+ sourceTree = "<group>";
+ };
+ 551A74FA17868BEA0052D185 /* pthread */ = {
+ isa = PBXGroup;
+ children = (
+ 551A74FB17868BEA0052D185 /* SDL_syscond.c */,
+ 551A74FC17868BEA0052D185 /* SDL_sysmutex.c */,
+ 551A74FD17868BEA0052D185 /* SDL_sysmutex_c.h */,
+ 551A74FE17868BEA0052D185 /* SDL_syssem.c */,
+ 551A74FF17868BEA0052D185 /* SDL_systhread.c */,
+ 551A750017868BEA0052D185 /* SDL_systhread_c.h */,
+ );
+ path = pthread;
+ sourceTree = "<group>";
+ };
+ 551A750417868BEA0052D185 /* DFCdrom */ = {
+ isa = PBXGroup;
+ children = (
+ 551A75F017868E640052D185 /* src */,
+ 551A751217868BEB0052D185 /* macsrc */,
+ 551A75D817868E180052D185 /* Resources */,
+ );
+ path = DFCdrom;
+ sourceTree = "<group>";
+ };
+ 551A751217868BEB0052D185 /* macsrc */ = {
+ isa = PBXGroup;
+ children = (
+ 551A750517868BEA0052D185 /* ARCBridge.h */,
+ 551A751317868BEB0052D185 /* cdr-macosx.c */,
+ 551A751417868BEB0052D185 /* cfg.c */,
+ 551A751517868BEB0052D185 /* PluginConfigController.h */,
+ 551A751617868BEB0052D185 /* PluginConfigController.m */,
+ );
+ path = macsrc;
+ sourceTree = "<group>";
+ };
+ 551A751817868BEB0052D185 /* DFInput */ = {
+ isa = PBXGroup;
+ children = (
+ 551A76651786901F0052D185 /* src */,
+ 551A752617868BEB0052D185 /* macsrc */,
+ 551A7671178690280052D185 /* Resources */,
+ );
+ path = DFInput;
+ sourceTree = "<group>";
+ };
+ 551A752617868BEB0052D185 /* macsrc */ = {
+ isa = PBXGroup;
+ children = (
+ 551A751917868BEB0052D185 /* ARCBridge.h */,
+ 551A752717868BEB0052D185 /* cfg.c */,
+ 551A752817868BEB0052D185 /* cfg.h */,
+ 551A752917868BEB0052D185 /* ControllerList.h */,
+ 551A752A17868BEB0052D185 /* ControllerList.m */,
+ 551A752B17868BEB0052D185 /* MappingCell.h */,
+ 551A752C17868BEB0052D185 /* MappingCell.m */,
+ 551A752D17868BEB0052D185 /* PadController.h */,
+ 551A752E17868BEB0052D185 /* PadController.m */,
+ 551A752F17868BEB0052D185 /* PadView.h */,
+ 551A753017868BEB0052D185 /* PadView.m */,
+ 551A753117868BEB0052D185 /* xkb.c */,
+ );
+ path = macsrc;
+ sourceTree = "<group>";
+ };
+ 551A753217868BEB0052D185 /* DFNet */ = {
+ isa = PBXGroup;
+ children = (
+ 551A777117869E830052D185 /* src */,
+ 551A754117868BEC0052D185 /* macsrc */,
+ 551A760817868EC10052D185 /* Resoruces */,
+ );
+ path = DFNet;
+ sourceTree = "<group>";
+ };
+ 551A754117868BEC0052D185 /* macsrc */ = {
+ isa = PBXGroup;
+ children = (
+ 551A754217868BEC0052D185 /* ARCBridge.h */,
+ 551A754317868BEC0052D185 /* cfg.c */,
+ 551A754417868BEC0052D185 /* PluginConfigController.h */,
+ 551A754517868BEC0052D185 /* PluginConfigController.m */,
+ 551A754617868BEC0052D185 /* SockDialog.h */,
+ 551A754717868BEC0052D185 /* SockDialog.m */,
+ );
+ path = macsrc;
+ sourceTree = "<group>";
+ };
+ 551A754917868BEC0052D185 /* DFSound */ = {
+ isa = PBXGroup;
+ children = (
+ 551A760917868EF00052D185 /* src */,
+ 551A754C17868BEC0052D185 /* macsrc */,
+ 551A755817868BEC0052D185 /* Resorces */,
+ );
+ path = DFSound;
+ sourceTree = "<group>";
+ };
+ 551A754C17868BEC0052D185 /* macsrc */ = {
+ isa = PBXGroup;
+ children = (
+ 551A754D17868BEC0052D185 /* ARCBridge.h */,
+ 551A754E17868BEC0052D185 /* maccfg.h */,
+ 551A754F17868BEC0052D185 /* NamedSlider.h */,
+ 551A755017868BEC0052D185 /* NamedSlider.m */,
+ 551A755117868BEC0052D185 /* PluginController.h */,
+ 551A755217868BEC0052D185 /* PluginController.m */,
+ 551A755317868BEC0052D185 /* SPUPluginController.h */,
+ 551A755417868BEC0052D185 /* SPUPluginController.m */,
+ );
+ path = macsrc;
+ sourceTree = "<group>";
+ };
+ 551A755817868BEC0052D185 /* Resorces */ = {
+ isa = PBXGroup;
+ children = (
+ 551A755917868BEC0052D185 /* OpenAL */,
+ 551A755C17868BEC0052D185 /* SDL */,
+ 551A755F17868BEC0052D185 /* Shared */,
+ );
+ path = Resorces;
+ sourceTree = "<group>";
+ };
+ 551A755917868BEC0052D185 /* OpenAL */ = {
+ isa = PBXGroup;
+ children = (
+ 551A754A17868BEC0052D185 /* Info-AL.plist */,
+ 551A755A17868BEC0052D185 /* InfoPlist.strings */,
+ );
+ path = OpenAL;
+ sourceTree = "<group>";
+ };
+ 551A755C17868BEC0052D185 /* SDL */ = {
+ isa = PBXGroup;
+ children = (
+ 551A754B17868BEC0052D185 /* Info-SDL.plist */,
+ 551A755D17868BEC0052D185 /* InfoPlist.strings */,
+ );
+ path = SDL;
+ sourceTree = "<group>";
+ };
+ 551A755F17868BEC0052D185 /* Shared */ = {
+ isa = PBXGroup;
+ children = (
+ 551A756017868BEC0052D185 /* Credits.rtf */,
+ 551A756217868BEC0052D185 /* Localizable.strings */,
+ 551A756417868BEC0052D185 /* NetSfPeopsSpuPluginMain.xib */,
+ );
+ path = Shared;
+ sourceTree = "<group>";
+ };
+ 551A756617868BEC0052D185 /* DFXVideo */ = {
+ isa = PBXGroup;
+ children = (
+ 551A762A17868F270052D185 /* src */,
+ 551A757317868BEC0052D185 /* macsrc */,
+ 551A764717868F3D0052D185 /* Resources */,
+ );
+ path = DFXVideo;
+ sourceTree = "<group>";
+ };
+ 551A757317868BEC0052D185 /* macsrc */ = {
+ isa = PBXGroup;
+ children = (
+ 551A756717868BEC0052D185 /* ARCBridge.h */,
+ 551A757417868BEC0052D185 /* drawgl.m */,
+ 551A757517868BEC0052D185 /* ExtendedKeys.h */,
+ 551A757617868BEC0052D185 /* PluginConfigController.h */,
+ 551A757717868BEC0052D185 /* PluginConfigController.m */,
+ 551A757817868BEC0052D185 /* PluginGLView.h */,
+ 551A757917868BEC0052D185 /* PluginGLView.m */,
+ 551A757A17868BEC0052D185 /* PluginWindow.h */,
+ 551A757B17868BEC0052D185 /* PluginWindow.m */,
+ 551A757C17868BEC0052D185 /* PluginWindowController.h */,
+ 551A757D17868BEC0052D185 /* PluginWindowController.m */,
+ 551A757E17868BEC0052D185 /* SGPUPreferences.h */,
+ );
+ path = macsrc;
+ sourceTree = "<group>";
+ };
+ 551A758317868BED0052D185 /* PeopsXgl */ = {
+ isa = PBXGroup;
+ children = (
+ 551A764817868F570052D185 /* src */,
+ 551A758E17868BED0052D185 /* macsrc */,
+ 551A766417868F870052D185 /* Resources */,
+ );
+ path = PeopsXgl;
+ sourceTree = "<group>";
+ };
+ 551A758E17868BED0052D185 /* macsrc */ = {
+ isa = PBXGroup;
+ children = (
+ 551A758417868BED0052D185 /* ARCBridge.h */,
+ 551A758F17868BED0052D185 /* drawgl.h */,
+ 551A759017868BED0052D185 /* drawgl.m */,
+ 551A759117868BED0052D185 /* ExtendedKeys.h */,
+ 551A759217868BED0052D185 /* NetSfPeopsOpenGLPluginConfigController.h */,
+ 551A759317868BED0052D185 /* NetSfPeopsOpenGLPluginConfigController.m */,
+ 551A759417868BED0052D185 /* PluginGLView.h */,
+ 551A759517868BED0052D185 /* PluginGLView.m */,
+ 551A759617868BED0052D185 /* PluginWindow.h */,
+ 551A759717868BED0052D185 /* PluginWindow.m */,
+ 551A759817868BED0052D185 /* PluginWindowController.h */,
+ 551A759917868BED0052D185 /* PluginWindowController.m */,
+ );
+ path = macsrc;
+ sourceTree = "<group>";
+ };
+ 551A75B917868C200052D185 /* Resources */ = {
+ isa = PBXGroup;
+ children = (
+ 551A74B417868BEA0052D185 /* Bladesio1PluginConfig.xib */,
+ 551A74B617868BEA0052D185 /* Credits.rtf */,
+ 551A74B817868BEA0052D185 /* InfoPlist.strings */,
+ 551A74BA17868BEA0052D185 /* Localizable.strings */,
+ 551A74BC17868BEA0052D185 /* Info.plist */,
+ 551A74C217868BEA0052D185 /* version.plist */,
+ );
+ name = Resources;
+ sourceTree = "<group>";
+ };
+ 551A75BA17868C400052D185 /* src */ = {
+ isa = PBXGroup;
+ children = (
+ 551A75BC17868C400052D185 /* connection.c */,
+ 551A75BD17868C400052D185 /* connection.h */,
+ 551A75BE17868C400052D185 /* fifo.c */,
+ 551A75BF17868C400052D185 /* fifo.h */,
+ 551A75C217868C400052D185 /* sio1.c */,
+ 551A75C317868C400052D185 /* sio1.h */,
+ 551A75C517868C400052D185 /* typedefs.h */,
+ );
+ name = src;
+ path = ../../../plugins/bladesio1;
+ sourceTree = "<group>";
+ };
+ 551A75D817868E180052D185 /* Resources */ = {
+ isa = PBXGroup;
+ children = (
+ 551A750917868BEB0052D185 /* Credits.rtf */,
+ 551A750B17868BEB0052D185 /* DFCdromPluginConfig.xib */,
+ 551A750D17868BEB0052D185 /* InfoPlist.strings */,
+ 551A750F17868BEB0052D185 /* Localizable.strings */,
+ 551A751117868BEB0052D185 /* Info.plist */,
+ 551A751717868BEB0052D185 /* version.plist */,
+ );
+ name = Resources;
+ sourceTree = "<group>";
+ };
+ 551A75F017868E640052D185 /* src */ = {
+ isa = PBXGroup;
+ children = (
+ 551A75F417868E640052D185 /* cdr.c */,
+ 551A75F517868E640052D185 /* cdr.h */,
+ 551A75FB17868E640052D185 /* util.c */,
+ );
+ name = src;
+ path = ../../../plugins/dfcdrom;
+ sourceTree = "<group>";
+ };
+ 551A760817868EC10052D185 /* Resoruces */ = {
+ isa = PBXGroup;
+ children = (
+ 551A753617868BEB0052D185 /* Credits.rtf */,
+ 551A753817868BEB0052D185 /* DFNet.xib */,
+ 551A753A17868BEB0052D185 /* InfoPlist.strings */,
+ 551A753C17868BEB0052D185 /* Localizable.strings */,
+ 551A753E17868BEB0052D185 /* SockDialog.xib */,
+ 551A754017868BEC0052D185 /* Info.plist */,
+ 551A754817868BEC0052D185 /* version.plist */,
+ );
+ name = Resoruces;
+ sourceTree = "<group>";
+ };
+ 551A760917868EF00052D185 /* src */ = {
+ isa = PBXGroup;
+ children = (
+ 551A760A17868EF00052D185 /* adsr.c */,
+ 551A760B17868EF00052D185 /* adsr.h */,
+ 551A760F17868EF00052D185 /* dma.c */,
+ 551A761017868EF00052D185 /* dma.h */,
+ 551A761117868EF00052D185 /* dsoundoss.h */,
+ 551A761217868EF00052D185 /* externals.c */,
+ 551A761317868EF00052D185 /* externals.h */,
+ 551A761417868EF00052D185 /* freeze.c */,
+ 551A761517868EF00052D185 /* gauss_i.h */,
+ 551A761817868EF00052D185 /* openal.c */,
+ 551A761A17868EF00052D185 /* psemuxa.h */,
+ 551A761C17868EF00052D185 /* registers.c */,
+ 551A761D17868EF00052D185 /* registers.h */,
+ 551A761E17868EF00052D185 /* regs.h */,
+ 551A761F17868EF00052D185 /* reverb.c */,
+ 551A762017868EF00052D185 /* reverb.h */,
+ 551A762117868EF00052D185 /* sdl.c */,
+ 551A762217868EF00052D185 /* spu.c */,
+ 551A762317868EF00052D185 /* spu.h */,
+ 551A762717868EF00052D185 /* stdafx.h */,
+ 551A762817868EF00052D185 /* xa.c */,
+ 551A762917868EF00052D185 /* xa.h */,
+ );
+ name = src;
+ path = ../../../plugins/dfsound;
+ sourceTree = "<group>";
+ };
+ 551A762A17868F270052D185 /* src */ = {
+ isa = PBXGroup;
+ children = (
+ 551A762B17868F270052D185 /* cfg.c */,
+ 551A762C17868F270052D185 /* cfg.h */,
+ 551A762D17868F270052D185 /* draw.c */,
+ 551A762E17868F270052D185 /* draw.h */,
+ 551A762F17868F270052D185 /* externals.h */,
+ 551A763017868F270052D185 /* fps.c */,
+ 551A763117868F270052D185 /* fps.h */,
+ 551A763217868F270052D185 /* gpu.c */,
+ 551A763317868F270052D185 /* gpu.h */,
+ 551A763717868F270052D185 /* hq2x.h */,
+ 551A763817868F270052D185 /* hq3x.h */,
+ 551A763A17868F280052D185 /* interp.h */,
+ 551A763B17868F280052D185 /* key.c */,
+ 551A763C17868F280052D185 /* key.h */,
+ 551A763F17868F280052D185 /* menu.c */,
+ 551A764017868F280052D185 /* menu.h */,
+ 551A764117868F280052D185 /* prim.c */,
+ 551A764217868F280052D185 /* prim.h */,
+ 551A764317868F280052D185 /* soft.c */,
+ 551A764417868F280052D185 /* soft.h */,
+ 551A764517868F280052D185 /* swap.h */,
+ 551A764617868F280052D185 /* zn.c */,
+ );
+ name = src;
+ path = ../../../plugins/dfxvideo;
+ sourceTree = "<group>";
+ };
+ 551A764717868F3D0052D185 /* Resources */ = {
+ isa = PBXGroup;
+ children = (
+ 551A756817868BEC0052D185 /* Credits.rtf */,
+ 551A756A17868BEC0052D185 /* InfoPlist.strings */,
+ 551A756C17868BEC0052D185 /* Localizable.strings */,
+ 551A756E17868BEC0052D185 /* NetSfPeopsSoftGPUConfig.xib */,
+ 551A757017868BEC0052D185 /* gpuPeteOGL2.slf */,
+ 551A757117868BEC0052D185 /* gpuPeteOGL2.slv */,
+ 551A757217868BEC0052D185 /* Info.plist */,
+ 551A757F17868BED0052D185 /* NetSfPeopsSoftGPUInterface.xib */,
+ );
+ name = Resources;
+ sourceTree = "<group>";
+ };
+ 551A764817868F570052D185 /* src */ = {
+ isa = PBXGroup;
+ children = (
+ 551A764B17868F570052D185 /* draw.c */,
+ 551A764C17868F570052D185 /* draw.h */,
+ 551A764D17868F570052D185 /* externals.h */,
+ 551A764E17868F570052D185 /* fps.c */,
+ 551A764F17868F570052D185 /* fps.h */,
+ 551A765017868F570052D185 /* gl_ext.h */,
+ 551A765117868F570052D185 /* gpu.c */,
+ 551A765217868F570052D185 /* gpu.h */,
+ 551A765617868F570052D185 /* gte_accuracy.c */,
+ 551A765717868F570052D185 /* gte_accuracy.h */,
+ 551A765817868F570052D185 /* key.c */,
+ 551A765917868F570052D185 /* key.h */,
+ 551A765B17868F570052D185 /* menu.c */,
+ 551A765C17868F570052D185 /* menu.h */,
+ 551A765D17868F570052D185 /* prim.c */,
+ 551A765E17868F570052D185 /* prim.h */,
+ 551A765F17868F570052D185 /* soft.c */,
+ 551A766017868F570052D185 /* soft.h */,
+ 551A766117868F570052D185 /* stdafx.h */,
+ 551A766217868F570052D185 /* texture.c */,
+ 551A766317868F570052D185 /* texture.h */,
+ );
+ name = src;
+ path = ../../../plugins/peopsxgl;
+ sourceTree = "<group>";
+ };
+ 551A766417868F870052D185 /* Resources */ = {
+ isa = PBXGroup;
+ children = (
+ 551A758517868BED0052D185 /* Credits.rtf */,
+ 551A758717868BED0052D185 /* InfoPlist.strings */,
+ 551A758917868BED0052D185 /* Localizable.strings */,
+ 551A758B17868BED0052D185 /* NetSfPeopsOpenGLConfig.xib */,
+ 551A758D17868BED0052D185 /* Info.plist */,
+ 551A759A17868BED0052D185 /* NetSfPeopsOpenGLGPUInterface.xib */,
+ );
+ name = Resources;
+ sourceTree = "<group>";
+ };
+ 551A76651786901F0052D185 /* src */ = {
+ isa = PBXGroup;
+ children = (
+ 551A76661786901F0052D185 /* analog.c */,
+ 551A766B1786901F0052D185 /* pad.c */,
+ 551A766C1786901F0052D185 /* pad.h */,
+ 551A766D1786901F0052D185 /* sdljoy.c */,
+ 551A766E1786901F0052D185 /* util.c */,
+ 551A766F1786901F0052D185 /* util.h */,
+ 551A76701786901F0052D185 /* xkb.c */,
+ );
+ name = src;
+ path = ../../../plugins/dfinput;
+ sourceTree = "<group>";
+ };
+ 551A7671178690280052D185 /* Resources */ = {
+ isa = PBXGroup;
+ children = (
+ 551A751D17868BEB0052D185 /* Credits.rtf */,
+ 551A751F17868BEB0052D185 /* InfoPlist.strings */,
+ 551A752117868BEB0052D185 /* Localizable.strings */,
+ 551A752317868BEB0052D185 /* NetPcsxrHIDInputPluginMain.xib */,
+ 551A752517868BEB0052D185 /* Info.plist */,
+ );
+ name = Resources;
+ sourceTree = "<group>";
+ };
+ 551A777117869E830052D185 /* src */ = {
+ isa = PBXGroup;
+ children = (
+ 551A777317869E830052D185 /* dfnet.c */,
+ 551A777417869E830052D185 /* dfnet.h */,
+ 551A777817869E830052D185 /* unix.c */,
+ );
+ name = src;
+ path = ../../../plugins/dfnet;
+ sourceTree = "<group>";
+ };
+ 55858D2F178652F90068B8FC /* Configs */ = {
+ isa = PBXGroup;
+ children = (
+ 55858D2A17864DC80068B8FC /* Pcsxr-Debug.xcconfig */,
+ 55858D2B17864DC90068B8FC /* Pcsxr-Instrument.xcconfig */,
+ 55858D2C17864DC90068B8FC /* Pcsxr-Release.xcconfig */,
+ 55858D2817864D140068B8FC /* Pcsxr.xcconfig */,
+ );
+ path = Configs;
+ sourceTree = "<group>";
+ };
+ 559366BF12B694DF004ACC1E /* ix86_64 */ = {
+ isa = PBXGroup;
+ children = (
+ 559366C012B694DF004ACC1E /* iGte.h */,
+ 559366C112B694DF004ACC1E /* iR3000A-64.c */,
+ 559366C212B694DF004ACC1E /* ix86-64.c */,
+ 559366C312B694DF004ACC1E /* ix86-64.h */,
+ 559366C412B694DF004ACC1E /* ix86_3dnow.c */,
+ 559366C512B694DF004ACC1E /* ix86_cpudetect.c */,
+ 559366C612B694DF004ACC1E /* ix86_fpu.c */,
+ 559366C712B694DF004ACC1E /* ix86_mmx.c */,
+ 559366C812B694DF004ACC1E /* ix86_sse.c */,
+ );
+ path = ix86_64;
sourceTree = "<group>";
};
71F4C5B30FDED15800529849 /* ix86 */ = {
@@ -687,15 +1783,24 @@
path = ix86;
sourceTree = "<group>";
};
- 71F93F6411FB8E9D007A5A7C /* Products */ = {
- isa = PBXGroup;
- children = (
- 71F93F6C11FB8E9D007A5A7C /* DFCdrom.psxplugin */,
+/* End PBXGroup section */
+
+/* Begin PBXHeadersBuildPhase section */
+ 551A76E51786971B0052D185 /* Headers */ = {
+ isa = PBXHeadersBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
);
- name = Products;
- sourceTree = "<group>";
+ runOnlyForDeploymentPostprocessing = 0;
};
-/* End PBXGroup section */
+ 551A77BE1786A2890052D185 /* Headers */ = {
+ isa = PBXHeadersBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
2BB3D68205427FE200831ACB /* PCSXR */ = {
@@ -712,14 +1817,14 @@
2BB3D6D005427FE200831ACB /* PBXBuildRule */,
);
dependencies = (
- 55858D23178632B70068B8FC /* PBXTargetDependency */,
- 559DACBA146C68B700C5DF71 /* PBXTargetDependency */,
- 559DAC46146BA61400C5DF71 /* PBXTargetDependency */,
- 71AD2DE910C3572200365243 /* PBXTargetDependency */,
- 71AD2DEB10C3572500365243 /* PBXTargetDependency */,
- 713CB2DE11FC49720033B6A8 /* PBXTargetDependency */,
- 71F2C0BC1200B75100322AD9 /* PBXTargetDependency */,
- 71D88A01130F090400F150FF /* PBXTargetDependency */,
+ 551A778517869F4B0052D185 /* PBXTargetDependency */,
+ 551A778717869F4B0052D185 /* PBXTargetDependency */,
+ 551A778917869F4B0052D185 /* PBXTargetDependency */,
+ 551A778B17869F4B0052D185 /* PBXTargetDependency */,
+ 551A778D17869F4B0052D185 /* PBXTargetDependency */,
+ 551A778F17869F4B0052D185 /* PBXTargetDependency */,
+ 551A779117869F4B0052D185 /* PBXTargetDependency */,
+ 551A779317869F4B0052D185 /* PBXTargetDependency */,
);
name = PCSXR;
productInstallPath = "$(USER_APPS_DIR)";
@@ -727,6 +1832,183 @@
productReference = 2BB3D6D105427FE200831ACB /* PCSXR.app */;
productType = "com.apple.product-type.application";
};
+ 551A75C617868C4E0052D185 /* Bladesio1 */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 551A75CB17868C4E0052D185 /* Build configuration list for PBXNativeTarget "Bladesio1" */;
+ buildPhases = (
+ 551A75C717868C4E0052D185 /* Sources */,
+ 551A75C817868C4E0052D185 /* Frameworks */,
+ 551A75CA17868C4E0052D185 /* Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = Bladesio1;
+ productName = BasePlugin;
+ productReference = 551A75CE17868C4E0052D185 /* Bladesio1.psxplugin */;
+ productType = "com.apple.product-type.bundle";
+ };
+ 551A7672178690500052D185 /* DFCdrom */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 551A7677178690500052D185 /* Build configuration list for PBXNativeTarget "DFCdrom" */;
+ buildPhases = (
+ 551A7673178690500052D185 /* Sources */,
+ 551A7674178690500052D185 /* Frameworks */,
+ 551A7676178690500052D185 /* Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = DFCdrom;
+ productName = BasePlugin;
+ productReference = 551A767A178690500052D185 /* DFCdrom.psxplugin */;
+ productType = "com.apple.product-type.bundle";
+ };
+ 551A76861786919F0052D185 /* DFInput */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 551A768B1786919F0052D185 /* Build configuration list for PBXNativeTarget "DFInput" */;
+ buildPhases = (
+ 551A76871786919F0052D185 /* Sources */,
+ 551A76881786919F0052D185 /* Frameworks */,
+ 551A768A1786919F0052D185 /* Resources */,
+ 551A77BA1786A1DC0052D185 /* Copy Frameworks */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 551A77DE1786A3730052D185 /* PBXTargetDependency */,
+ );
+ name = DFInput;
+ productName = BasePlugin;
+ productReference = 551A768E1786919F0052D185 /* DFInput.psxplugin */;
+ productType = "com.apple.product-type.bundle";
+ };
+ 551A76B4178693FF0052D185 /* DFXVideo */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 551A76B9178693FF0052D185 /* Build configuration list for PBXNativeTarget "DFXVideo" */;
+ buildPhases = (
+ 551A76B5178693FF0052D185 /* Sources */,
+ 551A76B6178693FF0052D185 /* Frameworks */,
+ 551A76B8178693FF0052D185 /* Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = DFXVideo;
+ productName = BasePlugin;
+ productReference = 551A76BC178693FF0052D185 /* PeopsSoftGPU.psxplugin */;
+ productType = "com.apple.product-type.bundle";
+ };
+ 551A76DA178696BD0052D185 /* PeopsSpuSDL */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 551A76DF178696BD0052D185 /* Build configuration list for PBXNativeTarget "PeopsSpuSDL" */;
+ buildPhases = (
+ 551A76DB178696BD0052D185 /* Sources */,
+ 551A76DC178696BD0052D185 /* Frameworks */,
+ 551A76DE178696BD0052D185 /* Resources */,
+ 551A779C17869FB10052D185 /* Copy Frameworks */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 551A77E11786A3880052D185 /* PBXTargetDependency */,
+ 551A76F5178697CF0052D185 /* PBXTargetDependency */,
+ );
+ name = PeopsSpuSDL;
+ productName = BasePlugin;
+ productReference = 551A76E2178696BD0052D185 /* PeopsSpuSDL.psxplugin */;
+ productType = "com.apple.product-type.bundle";
+ };
+ 551A76E61786971B0052D185 /* SPUSharedCode */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 551A76EF1786971B0052D185 /* Build configuration list for PBXNativeTarget "SPUSharedCode" */;
+ buildPhases = (
+ 551A76E31786971B0052D185 /* Sources */,
+ 551A76E41786971B0052D185 /* Frameworks */,
+ 551A76E51786971B0052D185 /* Headers */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = SPUSharedCode;
+ productName = SPUSharedCode;
+ productReference = 551A76E71786971B0052D185 /* libSPUSharedCode.dylib */;
+ productType = "com.apple.product-type.library.dynamic";
+ };
+ 551A7706178698C60052D185 /* PeopsSpuAL */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 551A771C178698C60052D185 /* Build configuration list for PBXNativeTarget "PeopsSpuAL" */;
+ buildPhases = (
+ 551A7709178698C60052D185 /* Sources */,
+ 551A7714178698C60052D185 /* Frameworks */,
+ 551A7717178698C60052D185 /* Resources */,
+ 551A779F17869FD60052D185 /* Copy Frameworks */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ 551A7707178698C60052D185 /* PBXTargetDependency */,
+ );
+ name = PeopsSpuAL;
+ productName = BasePlugin;
+ productReference = 551A771F178698C60052D185 /* PeopsSpuAL.psxplugin */;
+ productType = "com.apple.product-type.bundle";
+ };
+ 551A774717869C280052D185 /* PeopsXgl */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 551A774C17869C280052D185 /* Build configuration list for PBXNativeTarget "PeopsXgl" */;
+ buildPhases = (
+ 551A774817869C280052D185 /* Sources */,
+ 551A774917869C280052D185 /* Frameworks */,
+ 551A774B17869C280052D185 /* Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = PeopsXgl;
+ productName = BasePlugin;
+ productReference = 551A774F17869C280052D185 /* PeopsXGL.psxplugin */;
+ productType = "com.apple.product-type.bundle";
+ };
+ 551A776517869E430052D185 /* DFNet */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 551A776A17869E430052D185 /* Build configuration list for PBXNativeTarget "DFNet" */;
+ buildPhases = (
+ 551A776617869E430052D185 /* Sources */,
+ 551A776717869E430052D185 /* Frameworks */,
+ 551A776917869E430052D185 /* Resources */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = DFNet;
+ productName = BasePlugin;
+ productReference = 551A776D17869E430052D185 /* DFNet.psxplugin */;
+ productType = "com.apple.product-type.bundle";
+ };
+ 551A77BF1786A2890052D185 /* TinySDL */ = {
+ isa = PBXNativeTarget;
+ buildConfigurationList = 551A77C11786A2890052D185 /* Build configuration list for PBXNativeTarget "TinySDL" */;
+ buildPhases = (
+ 551A77BC1786A2890052D185 /* Sources */,
+ 551A77BD1786A2890052D185 /* Frameworks */,
+ 551A77BE1786A2890052D185 /* Headers */,
+ );
+ buildRules = (
+ );
+ dependencies = (
+ );
+ name = TinySDL;
+ productName = TinySDL;
+ productReference = 551A77C01786A2890052D185 /* libTinySDL.dylib */;
+ productType = "com.apple.product-type.library.dynamic";
+ };
/* End PBXNativeTarget section */
/* Begin PBXProject section */
@@ -744,112 +2026,27 @@
Japanese,
French,
German,
+ en,
);
mainGroup = 08FB7794FE84155DC02AAC07 /* Pcsxr */;
projectDirPath = "";
- projectReferences = (
- {
- ProductGroup = 55858D1C1786329D0068B8FC /* Products */;
- ProjectRef = 55858D1B1786329D0068B8FC /* Bladesio1.xcodeproj */;
- },
- {
- ProductGroup = 71F93F6411FB8E9D007A5A7C /* Products */;
- ProjectRef = 71F93F6311FB8E9D007A5A7C /* DFCdrom.xcodeproj */;
- },
- {
- ProductGroup = 71F2C07F1200B69B00322AD9 /* Products */;
- ProjectRef = 71F2C07E1200B69B00322AD9 /* DFInput.xcodeproj */;
- },
- {
- ProductGroup = 559DACA4146C647E00C5DF71 /* Products */;
- ProjectRef = 559DACA3146C647E00C5DF71 /* DFNet.xcodeproj */;
- },
- {
- ProductGroup = 71AD2DD810C3570900365243 /* Products */;
- ProjectRef = 71AD2DD210C3570900365243 /* PeopsSoftGPU.xcodeproj */;
- },
- {
- ProductGroup = 71AD2DCD10C356FD00365243 /* Products */;
- ProjectRef = 71AD2DC710C356FD00365243 /* PeopsSPU.xcodeproj */;
- },
- {
- ProductGroup = 71D888CF130F04DC00F150FF /* Products */;
- ProjectRef = 71D888CE130F04DC00F150FF /* PeopsXGL.xcodeproj */;
- },
- );
projectRoot = "";
targets = (
2BB3D68205427FE200831ACB /* PCSXR */,
+ 551A76E61786971B0052D185 /* SPUSharedCode */,
+ 551A77BF1786A2890052D185 /* TinySDL */,
+ 551A7672178690500052D185 /* DFCdrom */,
+ 551A76861786919F0052D185 /* DFInput */,
+ 551A76B4178693FF0052D185 /* DFXVideo */,
+ 551A774717869C280052D185 /* PeopsXgl */,
+ 551A76DA178696BD0052D185 /* PeopsSpuSDL */,
+ 551A7706178698C60052D185 /* PeopsSpuAL */,
+ 551A776517869E430052D185 /* DFNet */,
+ 551A75C617868C4E0052D185 /* Bladesio1 */,
);
};
/* End PBXProject section */
-/* Begin PBXReferenceProxy section */
- 28B467F11463D0020083F129 /* PeopsSpuAL.psxplugin */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.cfbundle;
- path = PeopsSpuAL.psxplugin;
- remoteRef = 28B467F01463D0020083F129 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 55858D201786329D0068B8FC /* Bladesio1.psxplugin */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.cfbundle;
- path = Bladesio1.psxplugin;
- remoteRef = 55858D1F1786329D0068B8FC /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 5586005F17850CFC00CB3D85 /* libSPUSharedCode.dylib */ = {
- isa = PBXReferenceProxy;
- fileType = "compiled.mach-o.dylib";
- path = libSPUSharedCode.dylib;
- remoteRef = 5586005E17850CFC00CB3D85 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 559DACAE146C647E00C5DF71 /* DFNet.psxplugin */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.cfbundle;
- path = DFNet.psxplugin;
- remoteRef = 559DACAD146C647E00C5DF71 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 71AD2DD110C356FD00365243 /* PeopsSpuSDL.psxplugin */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.cfbundle;
- path = PeopsSpuSDL.psxplugin;
- remoteRef = 71AD2DD010C356FD00365243 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 71AD2DDC10C3570900365243 /* gpuPeopsSoftGL.psxplugin */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.cfbundle;
- path = gpuPeopsSoftGL.psxplugin;
- remoteRef = 71AD2DDB10C3570900365243 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 71D888D4130F04DC00F150FF /* gpuPeopsXGL.psxplugin */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.cfbundle;
- path = gpuPeopsXGL.psxplugin;
- remoteRef = 71D888D3130F04DC00F150FF /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 71F2C0861200B69B00322AD9 /* DFInput.psxplugin */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.cfbundle;
- path = DFInput.psxplugin;
- remoteRef = 71F2C0851200B69B00322AD9 /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
- 71F93F6C11FB8E9D007A5A7C /* DFCdrom.psxplugin */ = {
- isa = PBXReferenceProxy;
- fileType = wrapper.cfbundle;
- path = DFCdrom.psxplugin;
- remoteRef = 71F93F6B11FB8E9D007A5A7C /* PBXContainerItemProxy */;
- sourceTree = BUILT_PRODUCTS_DIR;
- };
-/* End PBXReferenceProxy section */
-
/* Begin PBXResourcesBuildPhase section */
2BB3D6A205427FE200831ACB /* Resources */ = {
isa = PBXResourcesBuildPhase;
@@ -873,6 +2070,99 @@
);
runOnlyForDeploymentPostprocessing = 0;
};
+ 551A75CA17868C4E0052D185 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A75CF17868C860052D185 /* Bladesio1PluginConfig.xib in Resources */,
+ 551A75D017868C860052D185 /* Credits.rtf in Resources */,
+ 551A75D117868C860052D185 /* InfoPlist.strings in Resources */,
+ 551A75D217868C860052D185 /* Localizable.strings in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A7676178690500052D185 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A7680178690EE0052D185 /* Credits.rtf in Resources */,
+ 551A7681178690EE0052D185 /* DFCdromPluginConfig.xib in Resources */,
+ 551A7682178690EE0052D185 /* InfoPlist.strings in Resources */,
+ 551A7683178690EE0052D185 /* Localizable.strings in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A768A1786919F0052D185 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A769B178692470052D185 /* Credits.rtf in Resources */,
+ 551A769C178692470052D185 /* InfoPlist.strings in Resources */,
+ 551A769D178692470052D185 /* Localizable.strings in Resources */,
+ 551A769E178692470052D185 /* NetPcsxrHIDInputPluginMain.xib in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A76B8178693FF0052D185 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A76BD1786953B0052D185 /* Credits.rtf in Resources */,
+ 551A76BE1786953B0052D185 /* InfoPlist.strings in Resources */,
+ 551A76BF1786953B0052D185 /* Localizable.strings in Resources */,
+ 551A76C01786953B0052D185 /* NetSfPeopsSoftGPUConfig.xib in Resources */,
+ 551A76C11786953F0052D185 /* gpuPeteOGL2.slf in Resources */,
+ 551A76C21786953F0052D185 /* gpuPeteOGL2.slv in Resources */,
+ 551A76C31786953F0052D185 /* NetSfPeopsSoftGPUInterface.xib in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A76DE178696BD0052D185 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A7702178698980052D185 /* InfoPlist.strings in Resources */,
+ 551A7703178698980052D185 /* Credits.rtf in Resources */,
+ 551A7704178698980052D185 /* Localizable.strings in Resources */,
+ 551A7705178698980052D185 /* NetSfPeopsSpuPluginMain.xib in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A7717178698C60052D185 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A7719178698C60052D185 /* Credits.rtf in Resources */,
+ 551A771A178698C60052D185 /* Localizable.strings in Resources */,
+ 551A771B178698C60052D185 /* NetSfPeopsSpuPluginMain.xib in Resources */,
+ 551A7721178698E60052D185 /* InfoPlist.strings in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A774B17869C280052D185 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A776017869CBE0052D185 /* Credits.rtf in Resources */,
+ 551A776117869CBE0052D185 /* InfoPlist.strings in Resources */,
+ 551A776217869CBE0052D185 /* Localizable.strings in Resources */,
+ 551A776317869CBE0052D185 /* NetSfPeopsOpenGLConfig.xib in Resources */,
+ 551A776417869CC20052D185 /* NetSfPeopsOpenGLGPUInterface.xib in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A776917869E430052D185 /* Resources */ = {
+ isa = PBXResourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A777F17869EAE0052D185 /* Credits.rtf in Resources */,
+ 551A778017869EAE0052D185 /* DFNet.xib in Resources */,
+ 551A778117869EAE0052D185 /* InfoPlist.strings in Resources */,
+ 551A778217869EAE0052D185 /* Localizable.strings in Resources */,
+ 551A778317869EAE0052D185 /* SockDialog.xib in Resources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
@@ -933,48 +2223,229 @@
);
runOnlyForDeploymentPostprocessing = 0;
};
+ 551A75C717868C4E0052D185 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A75D317868D0C0052D185 /* cfg.c in Sources */,
+ 551A75D417868D1A0052D185 /* PluginConfigController.m in Sources */,
+ 551A75D517868D390052D185 /* connection.c in Sources */,
+ 551A75D617868D390052D185 /* fifo.c in Sources */,
+ 551A75D717868D390052D185 /* sio1.c in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A7673178690500052D185 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A767B178690AD0052D185 /* cdr-macosx.c in Sources */,
+ 551A767C178690AD0052D185 /* cfg.c in Sources */,
+ 551A767D178690AD0052D185 /* PluginConfigController.m in Sources */,
+ 551A767E178690B80052D185 /* cdr.c in Sources */,
+ 551A767F178690B80052D185 /* util.c in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A76871786919F0052D185 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A76921786922A0052D185 /* sdljoy.c in Sources */,
+ 551A7693178692330052D185 /* analog.c in Sources */,
+ 551A7694178692330052D185 /* pad.c in Sources */,
+ 551A76951786923E0052D185 /* cfg.c in Sources */,
+ 551A76961786923E0052D185 /* ControllerList.m in Sources */,
+ 551A76971786923E0052D185 /* MappingCell.m in Sources */,
+ 551A76981786923E0052D185 /* PadController.m in Sources */,
+ 551A76991786923E0052D185 /* PadView.m in Sources */,
+ 551A769A1786923E0052D185 /* xkb.c in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A76B5178693FF0052D185 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A76C41786954B0052D185 /* drawgl.m in Sources */,
+ 551A76C51786954B0052D185 /* PluginConfigController.m in Sources */,
+ 551A76C61786954B0052D185 /* PluginGLView.m in Sources */,
+ 551A76C71786954B0052D185 /* PluginWindow.m in Sources */,
+ 551A76C81786954B0052D185 /* PluginWindowController.m in Sources */,
+ 551A76CA178695840052D185 /* fps.c in Sources */,
+ 551A76CB178695840052D185 /* gpu.c in Sources */,
+ 551A76CC178695840052D185 /* key.c in Sources */,
+ 551A76CD178695840052D185 /* menu.c in Sources */,
+ 551A76CE178695840052D185 /* prim.c in Sources */,
+ 551A76CF178695840052D185 /* soft.c in Sources */,
+ 551A76D0178695840052D185 /* zn.c in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A76DB178696BD0052D185 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A76F7178697E70052D185 /* PluginController.m in Sources */,
+ 551A76F8178698130052D185 /* sdl.c in Sources */,
+ 551A76F9178698130052D185 /* spu.c in Sources */,
+ 551A76FA178698130052D185 /* xa.c in Sources */,
+ 551A76FB178698160052D185 /* reverb.c in Sources */,
+ 551A76FC1786981A0052D185 /* registers.c in Sources */,
+ 551A76FD178698230052D185 /* freeze.c in Sources */,
+ 551A76FF178698390052D185 /* dma.c in Sources */,
+ 551A77001786983C0052D185 /* adsr.c in Sources */,
+ 551A7701178698600052D185 /* externals.c in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A76E31786971B0052D185 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A76F2178697A50052D185 /* NamedSlider.m in Sources */,
+ 551A76F3178697A50052D185 /* SPUPluginController.m in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A7709178698C60052D185 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A770A178698C60052D185 /* PluginController.m in Sources */,
+ 551A770C178698C60052D185 /* spu.c in Sources */,
+ 551A770D178698C60052D185 /* xa.c in Sources */,
+ 551A770E178698C60052D185 /* reverb.c in Sources */,
+ 551A770F178698C60052D185 /* registers.c in Sources */,
+ 551A7710178698C60052D185 /* freeze.c in Sources */,
+ 551A7711178698C60052D185 /* dma.c in Sources */,
+ 551A7712178698C60052D185 /* adsr.c in Sources */,
+ 551A7713178698C60052D185 /* externals.c in Sources */,
+ 551A77221786990E0052D185 /* openal.c in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A774817869C280052D185 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A775217869C8B0052D185 /* draw.c in Sources */,
+ 551A775317869C8D0052D185 /* fps.c in Sources */,
+ 551A775417869C900052D185 /* gpu.c in Sources */,
+ 551A775517869C950052D185 /* gte_accuracy.c in Sources */,
+ 551A775617869C970052D185 /* key.c in Sources */,
+ 551A775717869C9A0052D185 /* menu.c in Sources */,
+ 551A775817869C9C0052D185 /* prim.c in Sources */,
+ 551A775917869C9F0052D185 /* soft.c in Sources */,
+ 551A775A17869CA10052D185 /* texture.c in Sources */,
+ 551A775B17869CA50052D185 /* drawgl.m in Sources */,
+ 551A775C17869CA80052D185 /* NetSfPeopsOpenGLPluginConfigController.m in Sources */,
+ 551A775D17869CAB0052D185 /* PluginGLView.m in Sources */,
+ 551A775E17869CAE0052D185 /* PluginWindow.m in Sources */,
+ 551A775F17869CB10052D185 /* PluginWindowController.m in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A776617869E430052D185 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A776E17869E640052D185 /* cfg.c in Sources */,
+ 551A776F17869E640052D185 /* PluginConfigController.m in Sources */,
+ 551A777017869E640052D185 /* SockDialog.m in Sources */,
+ 551A777A17869E830052D185 /* dfnet.c in Sources */,
+ 551A777E17869E830052D185 /* unix.c in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
+ 551A77BC1786A2890052D185 /* Sources */ = {
+ isa = PBXSourcesBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ 551A77CA1786A32F0052D185 /* SDL.c in Sources */,
+ 551A77CB1786A32F0052D185 /* SDL_error.c in Sources */,
+ 551A77CC1786A32F0052D185 /* SDL_syscond.c in Sources */,
+ 551A77CD1786A32F0052D185 /* SDL_sysmutex.c in Sources */,
+ 551A77CE1786A32F0052D185 /* SDL_syssem.c in Sources */,
+ 551A77CF1786A32F0052D185 /* SDL_systhread.c in Sources */,
+ 551A77D01786A32F0052D185 /* SDL_thread.c in Sources */,
+ 551A77D11786A33C0052D185 /* SDL_sysjoystick.c in Sources */,
+ 551A77D21786A33C0052D185 /* SDL_joystick.c in Sources */,
+ 551A77D31786A3430052D185 /* SDL_syshaptic.c in Sources */,
+ 551A77D41786A3430052D185 /* SDL_haptic.c in Sources */,
+ 551A77D51786A34B0052D185 /* SDL_rwopsbundlesupport.m in Sources */,
+ 551A77D61786A34B0052D185 /* SDL_rwops.c in Sources */,
+ 551A77D71786A35A0052D185 /* SDL_coreaudio.c in Sources */,
+ 551A77D81786A3620052D185 /* SDL_audio.c in Sources */,
+ 551A77D91786A3620052D185 /* SDL_audiocvt.c in Sources */,
+ 551A77DA1786A3620052D185 /* SDL_audiotypecvt.c in Sources */,
+ 551A77DB1786A3620052D185 /* SDL_mixer.c in Sources */,
+ 551A77DC1786A3620052D185 /* SDL_wave.c in Sources */,
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ };
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
- 55858D23178632B70068B8FC /* PBXTargetDependency */ = {
+ 551A76F5178697CF0052D185 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = Bladesio1;
- targetProxy = 55858D22178632B70068B8FC /* PBXContainerItemProxy */;
+ target = 551A76E61786971B0052D185 /* SPUSharedCode */;
+ targetProxy = 551A76F4178697CF0052D185 /* PBXContainerItemProxy */;
};
- 559DAC46146BA61400C5DF71 /* PBXTargetDependency */ = {
+ 551A7707178698C60052D185 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = PeopsAL;
- targetProxy = 559DAC45146BA61400C5DF71 /* PBXContainerItemProxy */;
+ target = 551A76E61786971B0052D185 /* SPUSharedCode */;
+ targetProxy = 551A7708178698C60052D185 /* PBXContainerItemProxy */;
};
- 559DACBA146C68B700C5DF71 /* PBXTargetDependency */ = {
+ 551A778517869F4B0052D185 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = DFNet;
- targetProxy = 559DACB9146C68B700C5DF71 /* PBXContainerItemProxy */;
+ target = 551A75C617868C4E0052D185 /* Bladesio1 */;
+ targetProxy = 551A778417869F4B0052D185 /* PBXContainerItemProxy */;
};
- 713CB2DE11FC49720033B6A8 /* PBXTargetDependency */ = {
+ 551A778717869F4B0052D185 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = DFCdrom;
- targetProxy = 713CB2DD11FC49720033B6A8 /* PBXContainerItemProxy */;
+ target = 551A7672178690500052D185 /* DFCdrom */;
+ targetProxy = 551A778617869F4B0052D185 /* PBXContainerItemProxy */;
};
- 71AD2DE910C3572200365243 /* PBXTargetDependency */ = {
+ 551A778917869F4B0052D185 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = PeopsSPU;
- targetProxy = 71AD2DE810C3572200365243 /* PBXContainerItemProxy */;
+ target = 551A76861786919F0052D185 /* DFInput */;
+ targetProxy = 551A778817869F4B0052D185 /* PBXContainerItemProxy */;
};
- 71AD2DEB10C3572500365243 /* PBXTargetDependency */ = {
+ 551A778B17869F4B0052D185 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = gpuPeopsSoftGL;
- targetProxy = 71AD2DEA10C3572500365243 /* PBXContainerItemProxy */;
+ target = 551A76B4178693FF0052D185 /* DFXVideo */;
+ targetProxy = 551A778A17869F4B0052D185 /* PBXContainerItemProxy */;
};
- 71D88A01130F090400F150FF /* PBXTargetDependency */ = {
+ 551A778D17869F4B0052D185 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = gpuPeopsXGL;
- targetProxy = 71D88A00130F090400F150FF /* PBXContainerItemProxy */;
+ target = 551A76DA178696BD0052D185 /* PeopsSpuSDL */;
+ targetProxy = 551A778C17869F4B0052D185 /* PBXContainerItemProxy */;
};
- 71F2C0BC1200B75100322AD9 /* PBXTargetDependency */ = {
+ 551A778F17869F4B0052D185 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
- name = DFInput;
- targetProxy = 71F2C0BB1200B75100322AD9 /* PBXContainerItemProxy */;
+ target = 551A7706178698C60052D185 /* PeopsSpuAL */;
+ targetProxy = 551A778E17869F4B0052D185 /* PBXContainerItemProxy */;
+ };
+ 551A779117869F4B0052D185 /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ target = 551A774717869C280052D185 /* PeopsXgl */;
+ targetProxy = 551A779017869F4B0052D185 /* PBXContainerItemProxy */;
+ };
+ 551A779317869F4B0052D185 /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ target = 551A776517869E430052D185 /* DFNet */;
+ targetProxy = 551A779217869F4B0052D185 /* PBXContainerItemProxy */;
+ };
+ 551A77DE1786A3730052D185 /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ target = 551A77BF1786A2890052D185 /* TinySDL */;
+ targetProxy = 551A77DD1786A3730052D185 /* PBXContainerItemProxy */;
+ };
+ 551A77E11786A3880052D185 /* PBXTargetDependency */ = {
+ isa = PBXTargetDependency;
+ target = 551A77BF1786A2890052D185 /* TinySDL */;
+ targetProxy = 551A77E01786A3880052D185 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
@@ -1027,6 +2498,246 @@
name = Credits.rtf;
sourceTree = "<group>";
};
+ 551A74B417868BEA0052D185 /* Bladesio1PluginConfig.xib */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A74B517868BEA0052D185 /* English */,
+ );
+ name = Bladesio1PluginConfig.xib;
+ sourceTree = "<group>";
+ };
+ 551A74B617868BEA0052D185 /* Credits.rtf */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A74B717868BEA0052D185 /* English */,
+ );
+ name = Credits.rtf;
+ sourceTree = "<group>";
+ };
+ 551A74B817868BEA0052D185 /* InfoPlist.strings */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A74B917868BEA0052D185 /* English */,
+ );
+ name = InfoPlist.strings;
+ sourceTree = "<group>";
+ };
+ 551A74BA17868BEA0052D185 /* Localizable.strings */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A74BB17868BEA0052D185 /* English */,
+ );
+ name = Localizable.strings;
+ sourceTree = "<group>";
+ };
+ 551A750917868BEB0052D185 /* Credits.rtf */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A750A17868BEB0052D185 /* English */,
+ );
+ name = Credits.rtf;
+ sourceTree = "<group>";
+ };
+ 551A750B17868BEB0052D185 /* DFCdromPluginConfig.xib */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A750C17868BEB0052D185 /* English */,
+ );
+ name = DFCdromPluginConfig.xib;
+ sourceTree = "<group>";
+ };
+ 551A750D17868BEB0052D185 /* InfoPlist.strings */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A750E17868BEB0052D185 /* English */,
+ );
+ name = InfoPlist.strings;
+ sourceTree = "<group>";
+ };
+ 551A750F17868BEB0052D185 /* Localizable.strings */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A751017868BEB0052D185 /* English */,
+ );
+ name = Localizable.strings;
+ sourceTree = "<group>";
+ };
+ 551A751D17868BEB0052D185 /* Credits.rtf */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A751E17868BEB0052D185 /* English */,
+ );
+ name = Credits.rtf;
+ sourceTree = "<group>";
+ };
+ 551A751F17868BEB0052D185 /* InfoPlist.strings */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A752017868BEB0052D185 /* English */,
+ );
+ name = InfoPlist.strings;
+ sourceTree = "<group>";
+ };
+ 551A752117868BEB0052D185 /* Localizable.strings */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A752217868BEB0052D185 /* English */,
+ );
+ name = Localizable.strings;
+ sourceTree = "<group>";
+ };
+ 551A752317868BEB0052D185 /* NetPcsxrHIDInputPluginMain.xib */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A752417868BEB0052D185 /* English */,
+ );
+ name = NetPcsxrHIDInputPluginMain.xib;
+ sourceTree = "<group>";
+ };
+ 551A753617868BEB0052D185 /* Credits.rtf */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A753717868BEB0052D185 /* English */,
+ );
+ name = Credits.rtf;
+ sourceTree = "<group>";
+ };
+ 551A753817868BEB0052D185 /* DFNet.xib */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A753917868BEB0052D185 /* English */,
+ );
+ name = DFNet.xib;
+ sourceTree = "<group>";
+ };
+ 551A753A17868BEB0052D185 /* InfoPlist.strings */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A753B17868BEB0052D185 /* English */,
+ );
+ name = InfoPlist.strings;
+ sourceTree = "<group>";
+ };
+ 551A753C17868BEB0052D185 /* Localizable.strings */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A753D17868BEB0052D185 /* English */,
+ );
+ name = Localizable.strings;
+ sourceTree = "<group>";
+ };
+ 551A753E17868BEB0052D185 /* SockDialog.xib */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A753F17868BEC0052D185 /* English */,
+ );
+ name = SockDialog.xib;
+ sourceTree = "<group>";
+ };
+ 551A755A17868BEC0052D185 /* InfoPlist.strings */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A755B17868BEC0052D185 /* English */,
+ );
+ name = InfoPlist.strings;
+ sourceTree = "<group>";
+ };
+ 551A755D17868BEC0052D185 /* InfoPlist.strings */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A755E17868BEC0052D185 /* English */,
+ );
+ name = InfoPlist.strings;
+ sourceTree = "<group>";
+ };
+ 551A756017868BEC0052D185 /* Credits.rtf */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A756117868BEC0052D185 /* English */,
+ );
+ name = Credits.rtf;
+ sourceTree = "<group>";
+ };
+ 551A756217868BEC0052D185 /* Localizable.strings */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A756317868BEC0052D185 /* English */,
+ );
+ name = Localizable.strings;
+ sourceTree = "<group>";
+ };
+ 551A756417868BEC0052D185 /* NetSfPeopsSpuPluginMain.xib */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A756517868BEC0052D185 /* English */,
+ );
+ name = NetSfPeopsSpuPluginMain.xib;
+ sourceTree = "<group>";
+ };
+ 551A756817868BEC0052D185 /* Credits.rtf */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A756917868BEC0052D185 /* English */,
+ );
+ name = Credits.rtf;
+ sourceTree = "<group>";
+ };
+ 551A756A17868BEC0052D185 /* InfoPlist.strings */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A756B17868BEC0052D185 /* English */,
+ );
+ name = InfoPlist.strings;
+ sourceTree = "<group>";
+ };
+ 551A756C17868BEC0052D185 /* Localizable.strings */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A756D17868BEC0052D185 /* English */,
+ );
+ name = Localizable.strings;
+ sourceTree = "<group>";
+ };
+ 551A756E17868BEC0052D185 /* NetSfPeopsSoftGPUConfig.xib */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A756F17868BEC0052D185 /* English */,
+ );
+ name = NetSfPeopsSoftGPUConfig.xib;
+ sourceTree = "<group>";
+ };
+ 551A758517868BED0052D185 /* Credits.rtf */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A758617868BED0052D185 /* English */,
+ );
+ name = Credits.rtf;
+ sourceTree = "<group>";
+ };
+ 551A758717868BED0052D185 /* InfoPlist.strings */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A758817868BED0052D185 /* English */,
+ );
+ name = InfoPlist.strings;
+ sourceTree = "<group>";
+ };
+ 551A758917868BED0052D185 /* Localizable.strings */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A758A17868BED0052D185 /* English */,
+ );
+ name = Localizable.strings;
+ sourceTree = "<group>";
+ };
+ 551A758B17868BED0052D185 /* NetSfPeopsOpenGLConfig.xib */ = {
+ isa = PBXVariantGroup;
+ children = (
+ 551A758C17868BED0052D185 /* English */,
+ );
+ name = NetSfPeopsOpenGLConfig.xib;
+ sourceTree = "<group>";
+ };
559DACEC146C72FF00C5DF71 /* Localizable.strings */ = {
isa = PBXVariantGroup;
children = (
@@ -1064,6 +2775,384 @@
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
+ 551A75CC17868C4E0052D185 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "PCSXRPLUG=Bladesio1",
+ "$(inherited)",
+ );
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
+ MACOSX_DEPLOYMENT_TARGET = 10.7;
+ WRAPPER_EXTENSION = psxplugin;
+ };
+ name = Debug;
+ };
+ 551A75CD17868C4E0052D185 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "PCSXRPLUG=Bladesio1",
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
+ MACOSX_DEPLOYMENT_TARGET = 10.7;
+ WRAPPER_EXTENSION = psxplugin;
+ };
+ name = Release;
+ };
+ 551A7678178690500052D185 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "PCSXRPLUG=DFCdrom",
+ "$(inherited)",
+ );
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
+ WRAPPER_EXTENSION = psxplugin;
+ };
+ name = Debug;
+ };
+ 551A7679178690500052D185 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "PCSXRPLUG=DFCdrom",
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
+ WRAPPER_EXTENSION = psxplugin;
+ };
+ name = Release;
+ };
+ 551A768C1786919F0052D185 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "PCSXRPLUG=DFInput",
+ SDL_AUDIO_DISABLED,
+ "$(inherited)",
+ );
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ HEADER_SEARCH_PATHS = (
+ plugins/Common/SDL/include,
+ "$(inherited)",
+ );
+ INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
+ LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks";
+ WRAPPER_EXTENSION = psxplugin;
+ };
+ name = Debug;
+ };
+ 551A768D1786919F0052D185 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "PCSXRPLUG=DFInput",
+ SDL_AUDIO_DISABLED,
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ HEADER_SEARCH_PATHS = (
+ plugins/Common/SDL/include,
+ "$(inherited)",
+ );
+ INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
+ LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks";
+ WRAPPER_EXTENSION = psxplugin;
+ };
+ name = Release;
+ };
+ 551A76BA178693FF0052D185 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "PCSXRPLUG=SoftGL",
+ _MACGL,
+ _DARWIN,
+ "$(inherited)",
+ );
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
+ OTHER_CFLAGS = "$(OPTIMIZATION_CFLAGS)";
+ PRODUCT_NAME = PeopsSoftGPU;
+ WRAPPER_EXTENSION = psxplugin;
+ };
+ name = Debug;
+ };
+ 551A76BB178693FF0052D185 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "PCSXRPLUG=SoftGL",
+ _MACGL,
+ _DARWIN,
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
+ OTHER_CFLAGS = "$(OPTIMIZATION_CFLAGS)";
+ PRODUCT_NAME = PeopsSoftGPU;
+ WRAPPER_EXTENSION = psxplugin;
+ };
+ name = Release;
+ };
+ 551A76E0178696BD0052D185 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "PCSXRPLUG=SDLSound",
+ USESDL,
+ SDL_JOYSTICK_DISABLED,
+ "$(inherited)",
+ );
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ HEADER_SEARCH_PATHS = (
+ plugins/Common/SDL/include,
+ "$(inherited)",
+ );
+ INFOPLIST_FILE = "plugins/DFSound/Info-SDL.plist";
+ INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
+ LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks";
+ WRAPPER_EXTENSION = psxplugin;
+ };
+ name = Debug;
+ };
+ 551A76E1178696BD0052D185 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "PCSXRPLUG=SDLSound",
+ USESDL,
+ SDL_JOYSTICK_DISABLED,
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ HEADER_SEARCH_PATHS = (
+ plugins/Common/SDL/include,
+ "$(inherited)",
+ );
+ INFOPLIST_FILE = "plugins/DFSound/Info-SDL.plist";
+ INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
+ LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks";
+ WRAPPER_EXTENSION = psxplugin;
+ };
+ name = Release;
+ };
+ 551A76F01786971B0052D185 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_WARN_EMPTY_BODY = YES;
+ DYLIB_COMPATIBILITY_VERSION = 1;
+ DYLIB_CURRENT_VERSION = 1;
+ EXECUTABLE_PREFIX = lib;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ INSTALL_PATH = "@rpath";
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ };
+ name = Debug;
+ };
+ 551A76F11786971B0052D185 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ ALWAYS_SEARCH_USER_PATHS = NO;
+ CLANG_WARN_EMPTY_BODY = YES;
+ DYLIB_COMPATIBILITY_VERSION = 1;
+ DYLIB_CURRENT_VERSION = 1;
+ EXECUTABLE_PREFIX = lib;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ INSTALL_PATH = "@rpath";
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ };
+ name = Release;
+ };
+ 551A771D178698C60052D185 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "PCSXRPLUG=ALSound",
+ USEOPENAL,
+ "$(inherited)",
+ );
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ INFOPLIST_FILE = "plugins/DFSound/Info-AL.plist";
+ INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
+ LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks";
+ WRAPPER_EXTENSION = psxplugin;
+ };
+ name = Debug;
+ };
+ 551A771E178698C60052D185 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "PCSXRPLUG=ALSound",
+ USEOPENAL,
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ INFOPLIST_FILE = "plugins/DFSound/Info-AL.plist";
+ INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
+ LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks";
+ WRAPPER_EXTENSION = psxplugin;
+ };
+ name = Release;
+ };
+ 551A774D17869C280052D185 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "PCSXRPLUG=PeopsXGL",
+ _MACGL,
+ _DARWIN,
+ "$(inherited)",
+ );
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
+ OTHER_CFLAGS = "$(OPTIMIZATION_CFLAGS)";
+ PRODUCT_NAME = PeopsXGL;
+ WRAPPER_EXTENSION = psxplugin;
+ };
+ name = Debug;
+ };
+ 551A774E17869C280052D185 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "PCSXRPLUG=PeopsXGL",
+ _MACGL,
+ _DARWIN,
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
+ OTHER_CFLAGS = "$(OPTIMIZATION_CFLAGS)";
+ PRODUCT_NAME = PeopsXGL;
+ WRAPPER_EXTENSION = psxplugin;
+ };
+ name = Release;
+ };
+ 551A776B17869E430052D185 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "PCSXRPLUG=DFNet",
+ "$(inherited)",
+ );
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
+ WRAPPER_EXTENSION = psxplugin;
+ };
+ name = Debug;
+ };
+ 551A776C17869E430052D185 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = (
+ "PCSXRPLUG=DFNet",
+ "$(inherited)",
+ );
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
+ WRAPPER_EXTENSION = psxplugin;
+ };
+ name = Release;
+ };
+ 551A77C21786A2890052D185 /* Debug */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ EXECUTABLE_PREFIX = lib;
+ GCC_DYNAMIC_NO_PIC = NO;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_OPTIMIZATION_LEVEL = 0;
+ GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ HEADER_SEARCH_PATHS = (
+ plugins/Common/SDL/include,
+ "$(inherited)",
+ );
+ INSTALL_PATH = "@rpath";
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ };
+ name = Debug;
+ };
+ 551A77C31786A2890052D185 /* Release */ = {
+ isa = XCBuildConfiguration;
+ buildSettings = {
+ CLANG_WARN_EMPTY_BODY = YES;
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
+ EXECUTABLE_PREFIX = lib;
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
+ GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
+ HEADER_SEARCH_PATHS = (
+ plugins/Common/SDL/include,
+ "$(inherited)",
+ );
+ INSTALL_PATH = "@rpath";
+ PRODUCT_NAME = "$(TARGET_NAME)";
+ };
+ name = Release;
+ };
71F353F40FD98DFE00CBEC28 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
@@ -1077,9 +3166,9 @@
"ENABLE_SIO1API=1",
"$(inherited)",
);
- GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO;
INFOPLIST_FILE = Info.plist;
+ MACOSX_DEPLOYMENT_TARGET = 10.7;
OTHER_CFLAGS = (
"-falign-loops=16",
"$(inherited)",
@@ -1098,15 +3187,14 @@
PCSXRCORE,
"PCSXR_VERSION=\\\"1.5\\\"",
"XA_HACK=1",
- "_MACOSX=1",
__MACOSX__,
"ENABLE_SIO1API=1",
"$(inherited)",
);
- GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
GCC_WARN_UNKNOWN_PRAGMAS = NO;
INFOPLIST_FILE = Info.plist;
LD_NO_PIE = YES;
+ MACOSX_DEPLOYMENT_TARGET = 10.7;
OTHER_CFLAGS = (
"-funroll-loops",
"-falign-loops=16",
@@ -1134,8 +3222,6 @@
../libpcsxcore,
../macosx,
);
- MACOSX_DEPLOYMENT_TARGET = 10.7;
- OTHER_LDFLAGS = "-lz";
};
name = Debug;
};
@@ -1156,15 +3242,93 @@
../libpcsxcore,
../macosx,
);
- MACOSX_DEPLOYMENT_TARGET = 10.7;
OTHER_CFLAGS = "-fomit-frame-pointer";
- OTHER_LDFLAGS = "-lz";
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
+ 551A75CB17868C4E0052D185 /* Build configuration list for PBXNativeTarget "Bladesio1" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 551A75CC17868C4E0052D185 /* Debug */,
+ 551A75CD17868C4E0052D185 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ };
+ 551A7677178690500052D185 /* Build configuration list for PBXNativeTarget "DFCdrom" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 551A7678178690500052D185 /* Debug */,
+ 551A7679178690500052D185 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ };
+ 551A768B1786919F0052D185 /* Build configuration list for PBXNativeTarget "DFInput" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 551A768C1786919F0052D185 /* Debug */,
+ 551A768D1786919F0052D185 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ };
+ 551A76B9178693FF0052D185 /* Build configuration list for PBXNativeTarget "DFXVideo" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 551A76BA178693FF0052D185 /* Debug */,
+ 551A76BB178693FF0052D185 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ };
+ 551A76DF178696BD0052D185 /* Build configuration list for PBXNativeTarget "PeopsSpuSDL" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 551A76E0178696BD0052D185 /* Debug */,
+ 551A76E1178696BD0052D185 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ };
+ 551A76EF1786971B0052D185 /* Build configuration list for PBXNativeTarget "SPUSharedCode" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 551A76F01786971B0052D185 /* Debug */,
+ 551A76F11786971B0052D185 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ };
+ 551A771C178698C60052D185 /* Build configuration list for PBXNativeTarget "PeopsSpuAL" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 551A771D178698C60052D185 /* Debug */,
+ 551A771E178698C60052D185 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ };
+ 551A774C17869C280052D185 /* Build configuration list for PBXNativeTarget "PeopsXgl" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 551A774D17869C280052D185 /* Debug */,
+ 551A774E17869C280052D185 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ };
+ 551A776A17869E430052D185 /* Build configuration list for PBXNativeTarget "DFNet" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 551A776B17869E430052D185 /* Debug */,
+ 551A776C17869E430052D185 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ };
+ 551A77C11786A2890052D185 /* Build configuration list for PBXNativeTarget "TinySDL" */ = {
+ isa = XCConfigurationList;
+ buildConfigurations = (
+ 551A77C21786A2890052D185 /* Debug */,
+ 551A77C31786A2890052D185 /* Release */,
+ );
+ defaultConfigurationIsVisible = 0;
+ };
71F353F30FD98DFE00CBEC28 /* Build configuration list for PBXNativeTarget "PCSXR" */ = {
isa = XCConfigurationList;
buildConfigurations = (
diff --git a/macosx/Pcsxr.xcworkspace/contents.xcworkspacedata b/macosx/Pcsxr.xcworkspace/contents.xcworkspacedata
index 1d41bc64..e458c69c 100644
--- a/macosx/Pcsxr.xcworkspace/contents.xcworkspacedata
+++ b/macosx/Pcsxr.xcworkspace/contents.xcworkspacedata
@@ -4,25 +4,4 @@
<FileRef
location = "container:Pcsxr.xcodeproj">
</FileRef>
- <FileRef
- location = "group:plugins/PeopsXgl/PeopsXGL.xcodeproj">
- </FileRef>
- <FileRef
- location = "group:plugins/DFInput/DFInput.xcodeproj">
- </FileRef>
- <FileRef
- location = "group:plugins/DFCdrom/DFCdrom.xcodeproj">
- </FileRef>
- <FileRef
- location = "group:plugins/DFXVideo/PeopsSoftGPU.xcodeproj">
- </FileRef>
- <FileRef
- location = "group:plugins/DFSound/PeopsSPU.xcodeproj">
- </FileRef>
- <FileRef
- location = "group:plugins/DFNet/DFNet.xcodeproj">
- </FileRef>
- <FileRef
- location = "group:plugins/Bladesio1/Bladesio1.xcodeproj">
- </FileRef>
</Workspace>
diff --git a/macosx/PcsxrPlugin.m b/macosx/PcsxrPlugin.m
index 958d493d..67b532b4 100755
--- a/macosx/PcsxrPlugin.m
+++ b/macosx/PcsxrPlugin.m
@@ -144,6 +144,8 @@
}
}
SysCloseLibrary(tempHandle);
+ } else {
+ SysLibError();
}
}
}
diff --git a/macosx/main.m b/macosx/main.m
index 5dd3410c..2b73320e 100755
--- a/macosx/main.m
+++ b/macosx/main.m
@@ -143,7 +143,15 @@ void *SysLoadSym(void *lib, const char *sym) {
}
const char *SysLibError() {
+#ifdef DEBUG
+ const char *theErr = dlerror();
+ if (theErr) {
+ NSLog(@"Error loading binary: %s", theErr);
+ }
+ return theErr;
+#else
return dlerror();
+#endif
}
void SysCloseLibrary(void *lib) {
diff --git a/macosx/plugins/Bladesio1/Bladesio1.xcodeproj/project.pbxproj b/macosx/plugins/Bladesio1/Bladesio1.xcodeproj/project.pbxproj
deleted file mode 100644
index cd29aa75..00000000
--- a/macosx/plugins/Bladesio1/Bladesio1.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,407 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
-
-/* Begin PBXBuildFile section */
- 28586CC614651E870082B8EC /* Bladesio1PluginConfig.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28586CC414651E870082B8EC /* Bladesio1PluginConfig.xib */; };
- 2BD707180555997500CB5D9B /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BD707170555997500CB5D9B /* IOKit.framework */; };
- 552E4CBA1474737A00FB231F /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 552E4CBC1474737A00FB231F /* Localizable.strings */; };
- 55858D13178609A80068B8FC /* connection.c in Sources */ = {isa = PBXBuildFile; fileRef = 55858D0B178609A80068B8FC /* connection.c */; };
- 55858D14178609A80068B8FC /* connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 55858D0C178609A80068B8FC /* connection.h */; };
- 55858D15178609A80068B8FC /* fifo.c in Sources */ = {isa = PBXBuildFile; fileRef = 55858D0D178609A80068B8FC /* fifo.c */; };
- 55858D16178609A80068B8FC /* fifo.h in Headers */ = {isa = PBXBuildFile; fileRef = 55858D0E178609A80068B8FC /* fifo.h */; };
- 55858D17178609A80068B8FC /* sio1.c in Sources */ = {isa = PBXBuildFile; fileRef = 55858D0F178609A80068B8FC /* sio1.c */; };
- 55858D18178609A80068B8FC /* sio1.h in Headers */ = {isa = PBXBuildFile; fileRef = 55858D10178609A80068B8FC /* sio1.h */; };
- 55858D19178609A80068B8FC /* typedefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 55858D11178609A80068B8FC /* typedefs.h */; };
- 55858D1A178622CE0068B8FC /* cfg.c in Sources */ = {isa = PBXBuildFile; fileRef = 71F3C32511F3CD0B007B9F12 /* cfg.c */; };
- 5586006E1785137C00CB3D85 /* ARCBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 5586006D1785137C00CB3D85 /* ARCBridge.h */; };
- 71F3C32A11F3CD0B007B9F12 /* PluginConfigController.h in Headers */ = {isa = PBXBuildFile; fileRef = 71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */; };
- 71F3C32B11F3CD0B007B9F12 /* PluginConfigController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */; };
- 71F3C38611F3CFED007B9F12 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71F3C38511F3CFED007B9F12 /* AppKit.framework */; };
- 71F3C38811F3CFF7007B9F12 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71F3C38711F3CFF7007B9F12 /* Carbon.framework */; };
- 71F3C47A11F3D108007B9F12 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 71F3C47811F3D108007B9F12 /* Credits.rtf */; };
- 8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */; };
- 8D5B49A804867FD3000E48DA /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 8D5B49A704867FD3000E48DA /* InfoPlist.strings */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXFileReference section */
- 089C167EFE841241C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; };
- 28586CC514651E870082B8EC /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/Bladesio1PluginConfig.xib; sourceTree = "<group>"; };
- 2BD707170555997500CB5D9B /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = "<absolute>"; };
- 552E4CBB1474737A00FB231F /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
- 55858D0B178609A80068B8FC /* connection.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = connection.c; sourceTree = "<group>"; };
- 55858D0C178609A80068B8FC /* connection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = connection.h; sourceTree = "<group>"; };
- 55858D0D178609A80068B8FC /* fifo.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = fifo.c; sourceTree = "<group>"; };
- 55858D0E178609A80068B8FC /* fifo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = fifo.h; sourceTree = "<group>"; };
- 55858D0F178609A80068B8FC /* sio1.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = sio1.c; sourceTree = "<group>"; };
- 55858D10178609A80068B8FC /* sio1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sio1.h; sourceTree = "<group>"; };
- 55858D11178609A80068B8FC /* typedefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = typedefs.h; sourceTree = "<group>"; };
- 55858D301786531D0068B8FC /* Pcsxr-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Debug.xcconfig"; sourceTree = "<group>"; };
- 55858D311786531D0068B8FC /* Pcsxr-Instrument.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Instrument.xcconfig"; sourceTree = "<group>"; };
- 55858D321786531D0068B8FC /* Pcsxr-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Release.xcconfig"; sourceTree = "<group>"; };
- 55858D331786531D0068B8FC /* Pcsxr.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Pcsxr.xcconfig; sourceTree = "<group>"; };
- 5586006D1785137C00CB3D85 /* ARCBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
- 71F3C32511F3CD0B007B9F12 /* cfg.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; path = cfg.c; sourceTree = "<group>"; };
- 71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; path = PluginConfigController.h; sourceTree = "<group>"; };
- 71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.objc; path = PluginConfigController.m; sourceTree = "<group>"; };
- 71F3C38511F3CFED007B9F12 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
- 71F3C38711F3CFF7007B9F12 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; };
- 71F3C47911F3D108007B9F12 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
- 8D576316048677EA00EA77CD /* Bladesio1.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Bladesio1.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
- 8D576317048677EA00EA77CD /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 8D576313048677EA00EA77CD /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */,
- 2BD707180555997500CB5D9B /* IOKit.framework in Frameworks */,
- 71F3C38611F3CFED007B9F12 /* AppKit.framework in Frameworks */,
- 71F3C38811F3CFF7007B9F12 /* Carbon.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 089C166AFE841209C02AAC07 /* CdrDevMac */ = {
- isa = PBXGroup;
- children = (
- 08FB77AFFE84173DC02AAC07 /* Source Files */,
- 089C167CFE841241C02AAC07 /* Resources */,
- 089C1671FE841209C02AAC07 /* External Frameworks and Libraries */,
- 19C28FB6FE9D52B211CA2CBB /* Products */,
- );
- name = CdrDevMac;
- sourceTree = "<group>";
- };
- 089C1671FE841209C02AAC07 /* External Frameworks and Libraries */ = {
- isa = PBXGroup;
- children = (
- 71F3C38511F3CFED007B9F12 /* AppKit.framework */,
- 71F3C38711F3CFF7007B9F12 /* Carbon.framework */,
- 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */,
- 2BD707170555997500CB5D9B /* IOKit.framework */,
- );
- name = "External Frameworks and Libraries";
- sourceTree = "<group>";
- };
- 089C167CFE841241C02AAC07 /* Resources */ = {
- isa = PBXGroup;
- children = (
- 28586CC414651E870082B8EC /* Bladesio1PluginConfig.xib */,
- 71F3C47811F3D108007B9F12 /* Credits.rtf */,
- 8D576317048677EA00EA77CD /* Info.plist */,
- 8D5B49A704867FD3000E48DA /* InfoPlist.strings */,
- 552E4CBC1474737A00FB231F /* Localizable.strings */,
- 55858D3D178653A80068B8FC /* Configs */,
- );
- name = Resources;
- sourceTree = "<group>";
- };
- 08FB77AFFE84173DC02AAC07 /* Source Files */ = {
- isa = PBXGroup;
- children = (
- 71F3C32111F3CCEF007B9F12 /* macsrc */,
- 71F3C30911F3CC22007B9F12 /* src */,
- );
- name = "Source Files";
- sourceTree = "<group>";
- };
- 19C28FB6FE9D52B211CA2CBB /* Products */ = {
- isa = PBXGroup;
- children = (
- 8D576316048677EA00EA77CD /* Bladesio1.psxplugin */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 55858D3D178653A80068B8FC /* Configs */ = {
- isa = PBXGroup;
- children = (
- 55858D301786531D0068B8FC /* Pcsxr-Debug.xcconfig */,
- 55858D311786531D0068B8FC /* Pcsxr-Instrument.xcconfig */,
- 55858D321786531D0068B8FC /* Pcsxr-Release.xcconfig */,
- 55858D331786531D0068B8FC /* Pcsxr.xcconfig */,
- );
- name = Configs;
- path = ../../Configs;
- sourceTree = "<group>";
- };
- 71F3C30911F3CC22007B9F12 /* src */ = {
- isa = PBXGroup;
- children = (
- 55858D0B178609A80068B8FC /* connection.c */,
- 55858D0C178609A80068B8FC /* connection.h */,
- 55858D0D178609A80068B8FC /* fifo.c */,
- 55858D0E178609A80068B8FC /* fifo.h */,
- 55858D0F178609A80068B8FC /* sio1.c */,
- 55858D10178609A80068B8FC /* sio1.h */,
- 55858D11178609A80068B8FC /* typedefs.h */,
- );
- name = src;
- path = ../../../plugins/bladesio1;
- sourceTree = "<group>";
- };
- 71F3C32111F3CCEF007B9F12 /* macsrc */ = {
- isa = PBXGroup;
- children = (
- 5586006D1785137C00CB3D85 /* ARCBridge.h */,
- 71F3C32511F3CD0B007B9F12 /* cfg.c */,
- 71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */,
- 71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */,
- );
- path = macsrc;
- sourceTree = "<group>";
- };
-/* End PBXGroup section */
-
-/* Begin PBXHeadersBuildPhase section */
- 8D57630E048677EA00EA77CD /* Headers */ = {
- isa = PBXHeadersBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 71F3C32A11F3CD0B007B9F12 /* PluginConfigController.h in Headers */,
- 5586006E1785137C00CB3D85 /* ARCBridge.h in Headers */,
- 55858D14178609A80068B8FC /* connection.h in Headers */,
- 55858D16178609A80068B8FC /* fifo.h in Headers */,
- 55858D18178609A80068B8FC /* sio1.h in Headers */,
- 55858D19178609A80068B8FC /* typedefs.h in Headers */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXHeadersBuildPhase section */
-
-/* Begin PBXNativeTarget section */
- 8D57630D048677EA00EA77CD /* Bladesio1 */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 710735990FDEED75004AD098 /* Build configuration list for PBXNativeTarget "Bladesio1" */;
- buildPhases = (
- 8D57630E048677EA00EA77CD /* Headers */,
- 8D57630F048677EA00EA77CD /* Resources */,
- 8D576311048677EA00EA77CD /* Sources */,
- 8D576313048677EA00EA77CD /* Frameworks */,
- 8D576315048677EA00EA77CD /* Rez */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = Bladesio1;
- productInstallPath = "$(HOME)/Library/Bundles";
- productName = CdrDevMac;
- productReference = 8D576316048677EA00EA77CD /* Bladesio1.psxplugin */;
- productType = "com.apple.product-type.bundle";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 089C1669FE841209C02AAC07 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 0460;
- };
- buildConfigurationList = 7107359E0FDEED75004AD098 /* Build configuration list for PBXProject "Bladesio1" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = English;
- hasScannedForEncodings = 1;
- knownRegions = (
- English,
- Japanese,
- French,
- German,
- );
- mainGroup = 089C166AFE841209C02AAC07 /* CdrDevMac */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 8D57630D048677EA00EA77CD /* Bladesio1 */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
- 8D57630F048677EA00EA77CD /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 8D5B49A804867FD3000E48DA /* InfoPlist.strings in Resources */,
- 71F3C47A11F3D108007B9F12 /* Credits.rtf in Resources */,
- 28586CC614651E870082B8EC /* Bladesio1PluginConfig.xib in Resources */,
- 552E4CBA1474737A00FB231F /* Localizable.strings in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXRezBuildPhase section */
- 8D576315048677EA00EA77CD /* Rez */ = {
- isa = PBXRezBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXRezBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- 8D576311048677EA00EA77CD /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 71F3C32B11F3CD0B007B9F12 /* PluginConfigController.m in Sources */,
- 55858D13178609A80068B8FC /* connection.c in Sources */,
- 55858D15178609A80068B8FC /* fifo.c in Sources */,
- 55858D17178609A80068B8FC /* sio1.c in Sources */,
- 55858D1A178622CE0068B8FC /* cfg.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin PBXVariantGroup section */
- 28586CC414651E870082B8EC /* Bladesio1PluginConfig.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 28586CC514651E870082B8EC /* English */,
- );
- name = Bladesio1PluginConfig.xib;
- sourceTree = "<group>";
- };
- 552E4CBC1474737A00FB231F /* Localizable.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 552E4CBB1474737A00FB231F /* English */,
- );
- name = Localizable.strings;
- sourceTree = "<group>";
- };
- 71F3C47811F3D108007B9F12 /* Credits.rtf */ = {
- isa = PBXVariantGroup;
- children = (
- 71F3C47911F3D108007B9F12 /* English */,
- );
- name = Credits.rtf;
- sourceTree = "<group>";
- };
- 8D5B49A704867FD3000E48DA /* InfoPlist.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 089C167EFE841241C02AAC07 /* English */,
- );
- name = InfoPlist.strings;
- sourceTree = "<group>";
- };
-/* End PBXVariantGroup section */
-
-/* Begin XCBuildConfiguration section */
- 7107359A0FDEED75004AD098 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "PCSXRPLUG=Bladesio1",
- "$(inherited)",
- );
- GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
- GCC_WARN_UNKNOWN_PRAGMAS = NO;
- INFOPLIST_FILE = Info.plist;
- INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
- OTHER_LDFLAGS = "";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SECTORDER_FLAGS = "";
- WRAPPER_EXTENSION = psxplugin;
- };
- name = Debug;
- };
- 7107359B0FDEED75004AD098 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "PCSXRPLUG=Bladesio1",
- "$(inherited)",
- );
- GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
- GCC_WARN_UNKNOWN_PRAGMAS = NO;
- INFOPLIST_FILE = Info.plist;
- INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
- OTHER_LDFLAGS = "";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SECTORDER_FLAGS = "";
- WRAPPER_EXTENSION = psxplugin;
- };
- name = Release;
- };
- 7107359F0FDEED75004AD098 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 55858D301786531D0068B8FC /* Pcsxr-Debug.xcconfig */;
- buildSettings = {
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- HEADER_SEARCH_PATHS = (
- ../../../libpcsxcore,
- ../..,
- ../../../plugins/dfcdrom,
- );
- MACOSX_DEPLOYMENT_TARGET = 10.7;
- };
- name = Debug;
- };
- 710735A00FDEED75004AD098 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 55858D321786531D0068B8FC /* Pcsxr-Release.xcconfig */;
- buildSettings = {
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- HEADER_SEARCH_PATHS = (
- ../../../libpcsxcore,
- ../..,
- ../../../plugins/dfcdrom,
- );
- MACOSX_DEPLOYMENT_TARGET = 10.7;
- };
- name = Release;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- 710735990FDEED75004AD098 /* Build configuration list for PBXNativeTarget "Bladesio1" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 7107359A0FDEED75004AD098 /* Debug */,
- 7107359B0FDEED75004AD098 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 7107359E0FDEED75004AD098 /* Build configuration list for PBXProject "Bladesio1" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 7107359F0FDEED75004AD098 /* Debug */,
- 710735A00FDEED75004AD098 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
-/* End XCConfigurationList section */
- };
- rootObject = 089C1669FE841209C02AAC07 /* Project object */;
-}
diff --git a/macosx/plugins/DFCdrom/DFCdrom.xcodeproj/project.pbxproj b/macosx/plugins/DFCdrom/DFCdrom.xcodeproj/project.pbxproj
deleted file mode 100644
index 88fef1e8..00000000
--- a/macosx/plugins/DFCdrom/DFCdrom.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,402 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
-
-/* Begin PBXBuildFile section */
- 28586CC614651E870082B8EC /* DFCdromPluginConfig.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28586CC414651E870082B8EC /* DFCdromPluginConfig.xib */; };
- 2BD707180555997500CB5D9B /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BD707170555997500CB5D9B /* IOKit.framework */; };
- 552E4CBA1474737A00FB231F /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 552E4CBC1474737A00FB231F /* Localizable.strings */; };
- 5586006E1785137C00CB3D85 /* ARCBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 5586006D1785137C00CB3D85 /* ARCBridge.h */; };
- 713DB2E811F113C30001BDD4 /* cdr.c in Sources */ = {isa = PBXBuildFile; fileRef = 713DB2E311F113C30001BDD4 /* cdr.c */; };
- 713DB2E911F113C30001BDD4 /* cdr.h in Headers */ = {isa = PBXBuildFile; fileRef = 713DB2E411F113C30001BDD4 /* cdr.h */; };
- 713DB2EB11F113C30001BDD4 /* util.c in Sources */ = {isa = PBXBuildFile; fileRef = 713DB2E611F113C30001BDD4 /* util.c */; };
- 71F3C32811F3CD0B007B9F12 /* cdr-macosx.c in Sources */ = {isa = PBXBuildFile; fileRef = 71F3C32411F3CD0B007B9F12 /* cdr-macosx.c */; };
- 71F3C32911F3CD0B007B9F12 /* cfg.c in Sources */ = {isa = PBXBuildFile; fileRef = 71F3C32511F3CD0B007B9F12 /* cfg.c */; };
- 71F3C32A11F3CD0B007B9F12 /* PluginConfigController.h in Headers */ = {isa = PBXBuildFile; fileRef = 71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */; };
- 71F3C32B11F3CD0B007B9F12 /* PluginConfigController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */; };
- 71F3C38611F3CFED007B9F12 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71F3C38511F3CFED007B9F12 /* AppKit.framework */; };
- 71F3C38811F3CFF7007B9F12 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71F3C38711F3CFF7007B9F12 /* Carbon.framework */; };
- 71F3C47A11F3D108007B9F12 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 71F3C47811F3D108007B9F12 /* Credits.rtf */; };
- 8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */; };
- 8D5B49A804867FD3000E48DA /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 8D5B49A704867FD3000E48DA /* InfoPlist.strings */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXFileReference section */
- 089C167EFE841241C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; };
- 28586CC514651E870082B8EC /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/DFCdromPluginConfig.xib; sourceTree = "<group>"; };
- 2BD707170555997500CB5D9B /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = "<absolute>"; };
- 552E4CBB1474737A00FB231F /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
- 55858D56178657110068B8FC /* Pcsxr-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Debug.xcconfig"; sourceTree = "<group>"; };
- 55858D57178657110068B8FC /* Pcsxr-Instrument.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Instrument.xcconfig"; sourceTree = "<group>"; };
- 55858D58178657110068B8FC /* Pcsxr-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Release.xcconfig"; sourceTree = "<group>"; };
- 55858D59178657110068B8FC /* Pcsxr.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Pcsxr.xcconfig; sourceTree = "<group>"; };
- 5586006D1785137C00CB3D85 /* ARCBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
- 713DB2E311F113C30001BDD4 /* cdr.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; lineEnding = 2; name = cdr.c; path = ../../../plugins/dfcdrom/cdr.c; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.c; };
- 713DB2E411F113C30001BDD4 /* cdr.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = cdr.h; path = ../../../plugins/dfcdrom/cdr.h; sourceTree = SOURCE_ROOT; };
- 713DB2E611F113C30001BDD4 /* util.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; lineEnding = 0; name = util.c; path = ../../../plugins/dfcdrom/util.c; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.c; };
- 71F3C32411F3CD0B007B9F12 /* cdr-macosx.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; lineEnding = 0; name = "cdr-macosx.c"; path = "macsrc/cdr-macosx.c"; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.c; };
- 71F3C32511F3CD0B007B9F12 /* cfg.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = cfg.c; path = macsrc/cfg.c; sourceTree = "<group>"; };
- 71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = PluginConfigController.h; path = macsrc/PluginConfigController.h; sourceTree = "<group>"; };
- 71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.objc; name = PluginConfigController.m; path = macsrc/PluginConfigController.m; sourceTree = "<group>"; };
- 71F3C38511F3CFED007B9F12 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
- 71F3C38711F3CFF7007B9F12 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; };
- 71F3C47911F3D108007B9F12 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
- 8D576316048677EA00EA77CD /* DFCdrom.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DFCdrom.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
- 8D576317048677EA00EA77CD /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 8D576313048677EA00EA77CD /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */,
- 2BD707180555997500CB5D9B /* IOKit.framework in Frameworks */,
- 71F3C38611F3CFED007B9F12 /* AppKit.framework in Frameworks */,
- 71F3C38811F3CFF7007B9F12 /* Carbon.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 089C166AFE841209C02AAC07 /* CdrDevMac */ = {
- isa = PBXGroup;
- children = (
- 08FB77AFFE84173DC02AAC07 /* Source Files */,
- 089C167CFE841241C02AAC07 /* Resources */,
- 089C1671FE841209C02AAC07 /* External Frameworks and Libraries */,
- 19C28FB6FE9D52B211CA2CBB /* Products */,
- );
- name = CdrDevMac;
- sourceTree = "<group>";
- };
- 089C1671FE841209C02AAC07 /* External Frameworks and Libraries */ = {
- isa = PBXGroup;
- children = (
- 71F3C38511F3CFED007B9F12 /* AppKit.framework */,
- 71F3C38711F3CFF7007B9F12 /* Carbon.framework */,
- 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */,
- 2BD707170555997500CB5D9B /* IOKit.framework */,
- );
- name = "External Frameworks and Libraries";
- sourceTree = "<group>";
- };
- 089C167CFE841241C02AAC07 /* Resources */ = {
- isa = PBXGroup;
- children = (
- 55858D5A178657110068B8FC /* Configs */,
- 28586CC414651E870082B8EC /* DFCdromPluginConfig.xib */,
- 71F3C47811F3D108007B9F12 /* Credits.rtf */,
- 8D576317048677EA00EA77CD /* Info.plist */,
- 8D5B49A704867FD3000E48DA /* InfoPlist.strings */,
- 552E4CBC1474737A00FB231F /* Localizable.strings */,
- );
- name = Resources;
- sourceTree = "<group>";
- };
- 08FB77AFFE84173DC02AAC07 /* Source Files */ = {
- isa = PBXGroup;
- children = (
- 71F3C32111F3CCEF007B9F12 /* macsrc */,
- 71F3C30911F3CC22007B9F12 /* src */,
- );
- name = "Source Files";
- sourceTree = "<group>";
- };
- 19C28FB6FE9D52B211CA2CBB /* Products */ = {
- isa = PBXGroup;
- children = (
- 8D576316048677EA00EA77CD /* DFCdrom.psxplugin */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 55858D5A178657110068B8FC /* Configs */ = {
- isa = PBXGroup;
- children = (
- 55858D56178657110068B8FC /* Pcsxr-Debug.xcconfig */,
- 55858D57178657110068B8FC /* Pcsxr-Instrument.xcconfig */,
- 55858D58178657110068B8FC /* Pcsxr-Release.xcconfig */,
- 55858D59178657110068B8FC /* Pcsxr.xcconfig */,
- );
- name = Configs;
- path = "/Users/cwbetts/makestuff/PCSX-R/macosx/Configs";
- sourceTree = "<absolute>";
- };
- 71F3C30911F3CC22007B9F12 /* src */ = {
- isa = PBXGroup;
- children = (
- 713DB2E311F113C30001BDD4 /* cdr.c */,
- 713DB2E411F113C30001BDD4 /* cdr.h */,
- 713DB2E611F113C30001BDD4 /* util.c */,
- );
- name = src;
- sourceTree = "<group>";
- };
- 71F3C32111F3CCEF007B9F12 /* macsrc */ = {
- isa = PBXGroup;
- children = (
- 5586006D1785137C00CB3D85 /* ARCBridge.h */,
- 71F3C32411F3CD0B007B9F12 /* cdr-macosx.c */,
- 71F3C32511F3CD0B007B9F12 /* cfg.c */,
- 71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */,
- 71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */,
- );
- name = macsrc;
- sourceTree = "<group>";
- };
-/* End PBXGroup section */
-
-/* Begin PBXHeadersBuildPhase section */
- 8D57630E048677EA00EA77CD /* Headers */ = {
- isa = PBXHeadersBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 713DB2E911F113C30001BDD4 /* cdr.h in Headers */,
- 71F3C32A11F3CD0B007B9F12 /* PluginConfigController.h in Headers */,
- 5586006E1785137C00CB3D85 /* ARCBridge.h in Headers */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXHeadersBuildPhase section */
-
-/* Begin PBXNativeTarget section */
- 8D57630D048677EA00EA77CD /* DFCdrom */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 710735990FDEED75004AD098 /* Build configuration list for PBXNativeTarget "DFCdrom" */;
- buildPhases = (
- 8D57630E048677EA00EA77CD /* Headers */,
- 8D57630F048677EA00EA77CD /* Resources */,
- 8D576311048677EA00EA77CD /* Sources */,
- 8D576313048677EA00EA77CD /* Frameworks */,
- 8D576315048677EA00EA77CD /* Rez */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = DFCdrom;
- productInstallPath = "$(HOME)/Library/Bundles";
- productName = CdrDevMac;
- productReference = 8D576316048677EA00EA77CD /* DFCdrom.psxplugin */;
- productType = "com.apple.product-type.bundle";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 089C1669FE841209C02AAC07 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 0460;
- };
- buildConfigurationList = 7107359E0FDEED75004AD098 /* Build configuration list for PBXProject "DFCdrom" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = English;
- hasScannedForEncodings = 1;
- knownRegions = (
- English,
- Japanese,
- French,
- German,
- );
- mainGroup = 089C166AFE841209C02AAC07 /* CdrDevMac */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 8D57630D048677EA00EA77CD /* DFCdrom */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
- 8D57630F048677EA00EA77CD /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 8D5B49A804867FD3000E48DA /* InfoPlist.strings in Resources */,
- 71F3C47A11F3D108007B9F12 /* Credits.rtf in Resources */,
- 28586CC614651E870082B8EC /* DFCdromPluginConfig.xib in Resources */,
- 552E4CBA1474737A00FB231F /* Localizable.strings in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXRezBuildPhase section */
- 8D576315048677EA00EA77CD /* Rez */ = {
- isa = PBXRezBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXRezBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- 8D576311048677EA00EA77CD /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 713DB2E811F113C30001BDD4 /* cdr.c in Sources */,
- 713DB2EB11F113C30001BDD4 /* util.c in Sources */,
- 71F3C32811F3CD0B007B9F12 /* cdr-macosx.c in Sources */,
- 71F3C32911F3CD0B007B9F12 /* cfg.c in Sources */,
- 71F3C32B11F3CD0B007B9F12 /* PluginConfigController.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin PBXVariantGroup section */
- 28586CC414651E870082B8EC /* DFCdromPluginConfig.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 28586CC514651E870082B8EC /* English */,
- );
- name = DFCdromPluginConfig.xib;
- sourceTree = "<group>";
- };
- 552E4CBC1474737A00FB231F /* Localizable.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 552E4CBB1474737A00FB231F /* English */,
- );
- name = Localizable.strings;
- sourceTree = "<group>";
- };
- 71F3C47811F3D108007B9F12 /* Credits.rtf */ = {
- isa = PBXVariantGroup;
- children = (
- 71F3C47911F3D108007B9F12 /* English */,
- );
- name = Credits.rtf;
- sourceTree = "<group>";
- };
- 8D5B49A704867FD3000E48DA /* InfoPlist.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 089C167EFE841241C02AAC07 /* English */,
- );
- name = InfoPlist.strings;
- sourceTree = "<group>";
- };
-/* End PBXVariantGroup section */
-
-/* Begin XCBuildConfiguration section */
- 7107359A0FDEED75004AD098 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- "CLANG_ENABLE_OBJC_ARC[arch=x86_64]" = YES;
- COMBINE_HIDPI_IMAGES = YES;
- COPY_PHASE_STRIP = NO;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "PCSXRPLUG=DFCdrom",
- "$(inherited)",
- );
- GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
- GCC_WARN_UNKNOWN_PRAGMAS = NO;
- INFOPLIST_FILE = Info.plist;
- INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
- OTHER_LDFLAGS = "";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SECTORDER_FLAGS = "";
- WRAPPER_EXTENSION = psxplugin;
- };
- name = Debug;
- };
- 7107359B0FDEED75004AD098 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- "CLANG_ENABLE_OBJC_ARC[arch=x86_64]" = YES;
- COMBINE_HIDPI_IMAGES = YES;
- COPY_PHASE_STRIP = YES;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
- GCC_OPTIMIZATION_LEVEL = s;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "PCSXRPLUG=DFCdrom",
- "$(inherited)",
- );
- GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
- GCC_WARN_UNKNOWN_PRAGMAS = NO;
- INFOPLIST_FILE = Info.plist;
- INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
- OTHER_LDFLAGS = "";
- PRODUCT_NAME = "$(TARGET_NAME)";
- SECTORDER_FLAGS = "";
- WRAPPER_EXTENSION = psxplugin;
- };
- name = Release;
- };
- 7107359F0FDEED75004AD098 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 55858D56178657110068B8FC /* Pcsxr-Debug.xcconfig */;
- buildSettings = {
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- HEADER_SEARCH_PATHS = (
- ../../../libpcsxcore,
- ../..,
- ../../../plugins/dfcdrom,
- );
- };
- name = Debug;
- };
- 710735A00FDEED75004AD098 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 55858D58178657110068B8FC /* Pcsxr-Release.xcconfig */;
- buildSettings = {
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- HEADER_SEARCH_PATHS = (
- ../../../libpcsxcore,
- ../..,
- ../../../plugins/dfcdrom,
- );
- };
- name = Release;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- 710735990FDEED75004AD098 /* Build configuration list for PBXNativeTarget "DFCdrom" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 7107359A0FDEED75004AD098 /* Debug */,
- 7107359B0FDEED75004AD098 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 7107359E0FDEED75004AD098 /* Build configuration list for PBXProject "DFCdrom" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 7107359F0FDEED75004AD098 /* Debug */,
- 710735A00FDEED75004AD098 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
-/* End XCConfigurationList section */
- };
- rootObject = 089C1669FE841209C02AAC07 /* Project object */;
-}
diff --git a/macosx/plugins/DFInput/DFInput.xcodeproj/project.pbxproj b/macosx/plugins/DFInput/DFInput.xcodeproj/project.pbxproj
deleted file mode 100644
index a7870800..00000000
--- a/macosx/plugins/DFInput/DFInput.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,663 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
-
-/* Begin PBXBuildFile section */
- 28586CC314651E730082B8EC /* NetPcsxrHIDInputPluginMain.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28586CC114651E730082B8EC /* NetPcsxrHIDInputPluginMain.xib */; };
- 2B679862069193F300E2BD4F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B679860069193F300E2BD4F /* Cocoa.framework */; };
- 2B679863069193F300E2BD4F /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B679861069193F300E2BD4F /* IOKit.framework */; };
- 552E4CBF1474739200FB231F /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 552E4CC11474739200FB231F /* Localizable.strings */; };
- 558600701785138600CB3D85 /* ARCBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 5586006F1785138600CB3D85 /* ARCBridge.h */; };
- 71054E211204A49F00AC2CCB /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71054E201204A49F00AC2CCB /* ForceFeedback.framework */; };
- 7136F1DA1200E163001973D9 /* ControllerList.h in Headers */ = {isa = PBXBuildFile; fileRef = 71E861A411FF75AC001C1826 /* ControllerList.h */; };
- 7136F1DB1200E163001973D9 /* ControllerList.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E861A511FF75AC001C1826 /* ControllerList.m */; };
- 7136F1DC1200E164001973D9 /* MappingCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 71E861A811FF75AC001C1826 /* MappingCell.h */; };
- 7136F1DD1200E164001973D9 /* MappingCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E861A911FF75AC001C1826 /* MappingCell.m */; };
- 7136F1DE1200E165001973D9 /* PadController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E861AB11FF75AC001C1826 /* PadController.m */; };
- 7136F1DF1200E165001973D9 /* PadController.h in Headers */ = {isa = PBXBuildFile; fileRef = 71E861AA11FF75AC001C1826 /* PadController.h */; };
- 7136F51A12011BB4001973D9 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 7136F51812011BB4001973D9 /* Credits.rtf */; };
- 714FA82E11FC822A00517F47 /* analog.c in Sources */ = {isa = PBXBuildFile; fileRef = 714FA82A11FC822A00517F47 /* analog.c */; };
- 714FA82F11FC822A00517F47 /* pad.c in Sources */ = {isa = PBXBuildFile; fileRef = 714FA82B11FC822A00517F47 /* pad.c */; };
- 714FA83011FC822A00517F47 /* pad.h in Headers */ = {isa = PBXBuildFile; fileRef = 714FA82C11FC822A00517F47 /* pad.h */; };
- 714FA83111FC822A00517F47 /* sdljoy.c in Sources */ = {isa = PBXBuildFile; fileRef = 714FA82D11FC822A00517F47 /* sdljoy.c */; };
- 714FA8A011FC846800517F47 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 714FA89F11FC846800517F47 /* Carbon.framework */; };
- 714FA8FA11FC863500517F47 /* cfg.c in Sources */ = {isa = PBXBuildFile; fileRef = 714FA8F811FC863500517F47 /* cfg.c */; };
- 714FA8FB11FC863500517F47 /* xkb.c in Sources */ = {isa = PBXBuildFile; fileRef = 714FA8F911FC863500517F47 /* xkb.c */; };
- 7192EAAE1200D54500038B92 /* cfg.h in Headers */ = {isa = PBXBuildFile; fileRef = 7192EAAB1200D54500038B92 /* cfg.h */; };
- 71C7B25B130F3904004BF975 /* SDL_syscond.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B252130F3904004BF975 /* SDL_syscond.c */; };
- 71C7B25C130F3904004BF975 /* SDL_sysmutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B253130F3904004BF975 /* SDL_sysmutex.c */; };
- 71C7B25D130F3904004BF975 /* SDL_sysmutex_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C7B254130F3904004BF975 /* SDL_sysmutex_c.h */; };
- 71C7B25E130F3904004BF975 /* SDL_syssem.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B255130F3904004BF975 /* SDL_syssem.c */; };
- 71C7B25F130F3904004BF975 /* SDL_systhread.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B256130F3904004BF975 /* SDL_systhread.c */; };
- 71C7B260130F3904004BF975 /* SDL_systhread_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C7B257130F3904004BF975 /* SDL_systhread_c.h */; };
- 71C7B261130F3904004BF975 /* SDL_systhread.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C7B258130F3904004BF975 /* SDL_systhread.h */; };
- 71C7B262130F3904004BF975 /* SDL_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B259130F3904004BF975 /* SDL_thread.c */; };
- 71C7B263130F3904004BF975 /* SDL_thread_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 71C7B25A130F3904004BF975 /* SDL_thread_c.h */; };
- 71D88838130F032700F150FF /* begin_code.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D887F9130F032700F150FF /* begin_code.h */; };
- 71D88839130F032700F150FF /* close_code.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D887FA130F032700F150FF /* close_code.h */; };
- 71D8883A130F032700F150FF /* SDL.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D887FB130F032700F150FF /* SDL.h */; };
- 71D8883B130F032700F150FF /* SDL_audio.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D887FC130F032700F150FF /* SDL_audio.h */; };
- 71D8883C130F032700F150FF /* SDL_config.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D887FD130F032700F150FF /* SDL_config.h */; };
- 71D8883D130F032700F150FF /* SDL_endian.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D887FE130F032700F150FF /* SDL_endian.h */; };
- 71D8883E130F032700F150FF /* SDL_error.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D887FF130F032700F150FF /* SDL_error.h */; };
- 71D8883F130F032700F150FF /* SDL_haptic.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88800130F032700F150FF /* SDL_haptic.h */; };
- 71D88840130F032700F150FF /* SDL_joystick.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88801130F032700F150FF /* SDL_joystick.h */; };
- 71D88841130F032700F150FF /* SDL_main.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88802130F032700F150FF /* SDL_main.h */; };
- 71D88842130F032700F150FF /* SDL_mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88803130F032700F150FF /* SDL_mutex.h */; };
- 71D88843130F032700F150FF /* SDL_platform.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88804130F032700F150FF /* SDL_platform.h */; };
- 71D88844130F032700F150FF /* SDL_rwops.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88805130F032700F150FF /* SDL_rwops.h */; };
- 71D88845130F032700F150FF /* SDL_stdinc.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88806130F032700F150FF /* SDL_stdinc.h */; };
- 71D88846130F032700F150FF /* SDL_thread.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88807130F032700F150FF /* SDL_thread.h */; };
- 71D88857130F032700F150FF /* SDL_syshaptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 71D8881F130F032700F150FF /* SDL_syshaptic.c */; };
- 71D88858130F032700F150FF /* SDL_haptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 71D88820130F032700F150FF /* SDL_haptic.c */; };
- 71D88859130F032700F150FF /* SDL_haptic_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88821130F032700F150FF /* SDL_haptic_c.h */; };
- 71D8885A130F032700F150FF /* SDL_syshaptic.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88822130F032700F150FF /* SDL_syshaptic.h */; };
- 71D8885B130F032700F150FF /* SDL_sysjoystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 71D88825130F032700F150FF /* SDL_sysjoystick.c */; };
- 71D8885C130F032700F150FF /* SDL_sysjoystick_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88826130F032700F150FF /* SDL_sysjoystick_c.h */; };
- 71D8885D130F032700F150FF /* SDL_joystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 71D88827130F032700F150FF /* SDL_joystick.c */; };
- 71D8885E130F032700F150FF /* SDL_joystick_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88828130F032700F150FF /* SDL_joystick_c.h */; };
- 71D8885F130F032700F150FF /* SDL_sysjoystick.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D88829130F032700F150FF /* SDL_sysjoystick.h */; };
- 71D88860130F032700F150FF /* SDL.c in Sources */ = {isa = PBXBuildFile; fileRef = 71D8882A130F032700F150FF /* SDL.c */; };
- 71D88861130F032700F150FF /* SDL_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 71D8882B130F032700F150FF /* SDL_error.c */; };
- 71D88862130F032700F150FF /* SDL_error_c.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D8882C130F032700F150FF /* SDL_error_c.h */; };
- 71E861B611FF75AC001C1826 /* PadView.h in Headers */ = {isa = PBXBuildFile; fileRef = 71E861AC11FF75AC001C1826 /* PadView.h */; };
- 71E861B711FF75AC001C1826 /* PadView.m in Sources */ = {isa = PBXBuildFile; fileRef = 71E861AD11FF75AC001C1826 /* PadView.m */; };
- 8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */; };
- 8D5B49A804867FD3000E48DA /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 8D5B49A704867FD3000E48DA /* InfoPlist.strings */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXFileReference section */
- 089C167EFE841241C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; };
- 28586CC214651E730082B8EC /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/NetPcsxrHIDInputPluginMain.xib; sourceTree = "<group>"; };
- 2B679860069193F300E2BD4F /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = /System/Library/Frameworks/Cocoa.framework; sourceTree = "<absolute>"; };
- 2B679861069193F300E2BD4F /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = "<absolute>"; };
- 552E4CC01474739200FB231F /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
- 55858D5B1786579E0068B8FC /* Pcsxr-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Debug.xcconfig"; sourceTree = "<group>"; };
- 55858D5C1786579E0068B8FC /* Pcsxr-Instrument.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Instrument.xcconfig"; sourceTree = "<group>"; };
- 55858D5D1786579E0068B8FC /* Pcsxr-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Release.xcconfig"; sourceTree = "<group>"; };
- 55858D5E1786579E0068B8FC /* Pcsxr.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Pcsxr.xcconfig; sourceTree = "<group>"; };
- 5586006F1785138600CB3D85 /* ARCBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
- 71054E201204A49F00AC2CCB /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ForceFeedback.framework; path = /System/Library/Frameworks/ForceFeedback.framework; sourceTree = "<absolute>"; };
- 7136F51912011BB4001973D9 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
- 714FA82A11FC822A00517F47 /* analog.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; lineEnding = 0; name = analog.c; path = ../../../plugins/dfinput/analog.c; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.c; };
- 714FA82B11FC822A00517F47 /* pad.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = pad.c; path = ../../../plugins/dfinput/pad.c; sourceTree = SOURCE_ROOT; };
- 714FA82C11FC822A00517F47 /* pad.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = pad.h; path = ../../../plugins/dfinput/pad.h; sourceTree = SOURCE_ROOT; };
- 714FA82D11FC822A00517F47 /* sdljoy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = sdljoy.c; path = ../../../plugins/dfinput/sdljoy.c; sourceTree = SOURCE_ROOT; };
- 714FA89F11FC846800517F47 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; };
- 714FA8F811FC863500517F47 /* cfg.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; lineEnding = 0; name = cfg.c; path = macsrc/cfg.c; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.c; };
- 714FA8F911FC863500517F47 /* xkb.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = xkb.c; path = macsrc/xkb.c; sourceTree = "<group>"; };
- 7192EAAB1200D54500038B92 /* cfg.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = cfg.h; path = macsrc/cfg.h; sourceTree = "<group>"; };
- 71C7B252130F3904004BF975 /* SDL_syscond.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_syscond.c; path = ../Common/SDL/src/thread/pthread/SDL_syscond.c; sourceTree = SOURCE_ROOT; };
- 71C7B253130F3904004BF975 /* SDL_sysmutex.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_sysmutex.c; path = ../Common/SDL/src/thread/pthread/SDL_sysmutex.c; sourceTree = SOURCE_ROOT; };
- 71C7B254130F3904004BF975 /* SDL_sysmutex_c.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_sysmutex_c.h; path = ../Common/SDL/src/thread/pthread/SDL_sysmutex_c.h; sourceTree = SOURCE_ROOT; };
- 71C7B255130F3904004BF975 /* SDL_syssem.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_syssem.c; path = ../Common/SDL/src/thread/pthread/SDL_syssem.c; sourceTree = SOURCE_ROOT; };
- 71C7B256130F3904004BF975 /* SDL_systhread.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_systhread.c; path = ../Common/SDL/src/thread/pthread/SDL_systhread.c; sourceTree = SOURCE_ROOT; };
- 71C7B257130F3904004BF975 /* SDL_systhread_c.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_systhread_c.h; path = ../Common/SDL/src/thread/pthread/SDL_systhread_c.h; sourceTree = SOURCE_ROOT; };
- 71C7B258130F3904004BF975 /* SDL_systhread.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_systhread.h; path = ../Common/SDL/src/thread/SDL_systhread.h; sourceTree = SOURCE_ROOT; };
- 71C7B259130F3904004BF975 /* SDL_thread.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_thread.c; path = ../Common/SDL/src/thread/SDL_thread.c; sourceTree = SOURCE_ROOT; };
- 71C7B25A130F3904004BF975 /* SDL_thread_c.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_thread_c.h; path = ../Common/SDL/src/thread/SDL_thread_c.h; sourceTree = SOURCE_ROOT; };
- 71D887F9130F032700F150FF /* begin_code.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = begin_code.h; path = ../Common/SDL/include/begin_code.h; sourceTree = SOURCE_ROOT; };
- 71D887FA130F032700F150FF /* close_code.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = close_code.h; path = ../Common/SDL/include/close_code.h; sourceTree = SOURCE_ROOT; };
- 71D887FB130F032700F150FF /* SDL.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL.h; path = ../Common/SDL/include/SDL.h; sourceTree = SOURCE_ROOT; };
- 71D887FC130F032700F150FF /* SDL_audio.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_audio.h; path = ../Common/SDL/include/SDL_audio.h; sourceTree = SOURCE_ROOT; };
- 71D887FD130F032700F150FF /* SDL_config.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_config.h; path = ../Common/SDL/include/SDL_config.h; sourceTree = SOURCE_ROOT; };
- 71D887FE130F032700F150FF /* SDL_endian.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_endian.h; path = ../Common/SDL/include/SDL_endian.h; sourceTree = SOURCE_ROOT; };
- 71D887FF130F032700F150FF /* SDL_error.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_error.h; path = ../Common/SDL/include/SDL_error.h; sourceTree = SOURCE_ROOT; };
- 71D88800130F032700F150FF /* SDL_haptic.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_haptic.h; path = ../Common/SDL/include/SDL_haptic.h; sourceTree = SOURCE_ROOT; };
- 71D88801130F032700F150FF /* SDL_joystick.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_joystick.h; path = ../Common/SDL/include/SDL_joystick.h; sourceTree = SOURCE_ROOT; };
- 71D88802130F032700F150FF /* SDL_main.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_main.h; path = ../Common/SDL/include/SDL_main.h; sourceTree = SOURCE_ROOT; };
- 71D88803130F032700F150FF /* SDL_mutex.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_mutex.h; path = ../Common/SDL/include/SDL_mutex.h; sourceTree = SOURCE_ROOT; };
- 71D88804130F032700F150FF /* SDL_platform.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_platform.h; path = ../Common/SDL/include/SDL_platform.h; sourceTree = SOURCE_ROOT; };
- 71D88805130F032700F150FF /* SDL_rwops.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_rwops.h; path = ../Common/SDL/include/SDL_rwops.h; sourceTree = SOURCE_ROOT; };
- 71D88806130F032700F150FF /* SDL_stdinc.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_stdinc.h; path = ../Common/SDL/include/SDL_stdinc.h; sourceTree = SOURCE_ROOT; };
- 71D88807130F032700F150FF /* SDL_thread.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_thread.h; path = ../Common/SDL/include/SDL_thread.h; sourceTree = SOURCE_ROOT; };
- 71D8881F130F032700F150FF /* SDL_syshaptic.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_syshaptic.c; path = ../Common/SDL/src/haptic/darwin/SDL_syshaptic.c; sourceTree = SOURCE_ROOT; };
- 71D88820130F032700F150FF /* SDL_haptic.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; lineEnding = 0; name = SDL_haptic.c; path = ../Common/SDL/src/haptic/SDL_haptic.c; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.c; };
- 71D88821130F032700F150FF /* SDL_haptic_c.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_haptic_c.h; path = ../Common/SDL/src/haptic/SDL_haptic_c.h; sourceTree = SOURCE_ROOT; };
- 71D88822130F032700F150FF /* SDL_syshaptic.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_syshaptic.h; path = ../Common/SDL/src/haptic/SDL_syshaptic.h; sourceTree = SOURCE_ROOT; };
- 71D88825130F032700F150FF /* SDL_sysjoystick.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_sysjoystick.c; path = ../Common/SDL/src/joystick/darwin/SDL_sysjoystick.c; sourceTree = SOURCE_ROOT; };
- 71D88826130F032700F150FF /* SDL_sysjoystick_c.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_sysjoystick_c.h; path = ../Common/SDL/src/joystick/darwin/SDL_sysjoystick_c.h; sourceTree = SOURCE_ROOT; };
- 71D88827130F032700F150FF /* SDL_joystick.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_joystick.c; path = ../Common/SDL/src/joystick/SDL_joystick.c; sourceTree = SOURCE_ROOT; };
- 71D88828130F032700F150FF /* SDL_joystick_c.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_joystick_c.h; path = ../Common/SDL/src/joystick/SDL_joystick_c.h; sourceTree = SOURCE_ROOT; };
- 71D88829130F032700F150FF /* SDL_sysjoystick.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_sysjoystick.h; path = ../Common/SDL/src/joystick/SDL_sysjoystick.h; sourceTree = SOURCE_ROOT; };
- 71D8882A130F032700F150FF /* SDL.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL.c; path = ../Common/SDL/src/SDL.c; sourceTree = SOURCE_ROOT; };
- 71D8882B130F032700F150FF /* SDL_error.c */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.c; name = SDL_error.c; path = ../Common/SDL/src/SDL_error.c; sourceTree = SOURCE_ROOT; };
- 71D8882C130F032700F150FF /* SDL_error_c.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = SDL_error_c.h; path = ../Common/SDL/src/SDL_error_c.h; sourceTree = SOURCE_ROOT; };
- 71E861A411FF75AC001C1826 /* ControllerList.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = ControllerList.h; path = macsrc/ControllerList.h; sourceTree = "<group>"; };
- 71E861A511FF75AC001C1826 /* ControllerList.m */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.objc; name = ControllerList.m; path = macsrc/ControllerList.m; sourceTree = "<group>"; };
- 71E861A811FF75AC001C1826 /* MappingCell.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = MappingCell.h; path = macsrc/MappingCell.h; sourceTree = "<group>"; };
- 71E861A911FF75AC001C1826 /* MappingCell.m */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.objc; name = MappingCell.m; path = macsrc/MappingCell.m; sourceTree = "<group>"; };
- 71E861AA11FF75AC001C1826 /* PadController.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = PadController.h; path = macsrc/PadController.h; sourceTree = "<group>"; };
- 71E861AB11FF75AC001C1826 /* PadController.m */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.objc; name = PadController.m; path = macsrc/PadController.m; sourceTree = "<group>"; };
- 71E861AC11FF75AC001C1826 /* PadView.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; name = PadView.h; path = macsrc/PadView.h; sourceTree = "<group>"; };
- 71E861AD11FF75AC001C1826 /* PadView.m */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.objc; name = PadView.m; path = macsrc/PadView.m; sourceTree = "<group>"; };
- 8D576316048677EA00EA77CD /* DFInput.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DFInput.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
- 8D576317048677EA00EA77CD /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 8D576313048677EA00EA77CD /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */,
- 2B679862069193F300E2BD4F /* Cocoa.framework in Frameworks */,
- 2B679863069193F300E2BD4F /* IOKit.framework in Frameworks */,
- 714FA8A011FC846800517F47 /* Carbon.framework in Frameworks */,
- 71054E211204A49F00AC2CCB /* ForceFeedback.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 089C166AFE841209C02AAC07 /* DFInput */ = {
- isa = PBXGroup;
- children = (
- 714FA82911FC820D00517F47 /* macsrc */,
- 714FA82811FC820900517F47 /* src */,
- 71D887F7130F032700F150FF /* SDL */,
- 089C167CFE841241C02AAC07 /* Resources */,
- 089C1671FE841209C02AAC07 /* External Frameworks and Libraries */,
- 19C28FB6FE9D52B211CA2CBB /* Products */,
- );
- name = DFInput;
- sourceTree = "<group>";
- };
- 089C1671FE841209C02AAC07 /* External Frameworks and Libraries */ = {
- isa = PBXGroup;
- children = (
- 71054E201204A49F00AC2CCB /* ForceFeedback.framework */,
- 714FA89F11FC846800517F47 /* Carbon.framework */,
- 2B679860069193F300E2BD4F /* Cocoa.framework */,
- 2B679861069193F300E2BD4F /* IOKit.framework */,
- 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */,
- );
- name = "External Frameworks and Libraries";
- sourceTree = "<group>";
- };
- 089C167CFE841241C02AAC07 /* Resources */ = {
- isa = PBXGroup;
- children = (
- 55858D5F1786579E0068B8FC /* Configs */,
- 7136F51812011BB4001973D9 /* Credits.rtf */,
- 28586CC114651E730082B8EC /* NetPcsxrHIDInputPluginMain.xib */,
- 8D576317048677EA00EA77CD /* Info.plist */,
- 8D5B49A704867FD3000E48DA /* InfoPlist.strings */,
- 552E4CC11474739200FB231F /* Localizable.strings */,
- );
- name = Resources;
- sourceTree = "<group>";
- };
- 19C28FB6FE9D52B211CA2CBB /* Products */ = {
- isa = PBXGroup;
- children = (
- 8D576316048677EA00EA77CD /* DFInput.psxplugin */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 55858D5F1786579E0068B8FC /* Configs */ = {
- isa = PBXGroup;
- children = (
- 55858D5B1786579E0068B8FC /* Pcsxr-Debug.xcconfig */,
- 55858D5C1786579E0068B8FC /* Pcsxr-Instrument.xcconfig */,
- 55858D5D1786579E0068B8FC /* Pcsxr-Release.xcconfig */,
- 55858D5E1786579E0068B8FC /* Pcsxr.xcconfig */,
- );
- name = Configs;
- path = "/Users/cwbetts/makestuff/PCSX-R/macosx/Configs";
- sourceTree = "<absolute>";
- };
- 714FA82811FC820900517F47 /* src */ = {
- isa = PBXGroup;
- children = (
- 714FA82A11FC822A00517F47 /* analog.c */,
- 714FA82B11FC822A00517F47 /* pad.c */,
- 714FA82C11FC822A00517F47 /* pad.h */,
- 714FA82D11FC822A00517F47 /* sdljoy.c */,
- );
- name = src;
- sourceTree = "<group>";
- };
- 714FA82911FC820D00517F47 /* macsrc */ = {
- isa = PBXGroup;
- children = (
- 5586006F1785138600CB3D85 /* ARCBridge.h */,
- 71E861A411FF75AC001C1826 /* ControllerList.h */,
- 71E861A511FF75AC001C1826 /* ControllerList.m */,
- 71E861A811FF75AC001C1826 /* MappingCell.h */,
- 71E861A911FF75AC001C1826 /* MappingCell.m */,
- 71E861AA11FF75AC001C1826 /* PadController.h */,
- 71E861AB11FF75AC001C1826 /* PadController.m */,
- 71E861AC11FF75AC001C1826 /* PadView.h */,
- 71E861AD11FF75AC001C1826 /* PadView.m */,
- 714FA8F811FC863500517F47 /* cfg.c */,
- 7192EAAB1200D54500038B92 /* cfg.h */,
- 714FA8F911FC863500517F47 /* xkb.c */,
- );
- name = macsrc;
- sourceTree = "<group>";
- };
- 71C7B250130F3904004BF975 /* thread */ = {
- isa = PBXGroup;
- children = (
- 71C7B251130F3904004BF975 /* pthread */,
- 71C7B258130F3904004BF975 /* SDL_systhread.h */,
- 71C7B259130F3904004BF975 /* SDL_thread.c */,
- 71C7B25A130F3904004BF975 /* SDL_thread_c.h */,
- );
- name = thread;
- path = ../Common/SDL/src/thread;
- sourceTree = SOURCE_ROOT;
- };
- 71C7B251130F3904004BF975 /* pthread */ = {
- isa = PBXGroup;
- children = (
- 71C7B252130F3904004BF975 /* SDL_syscond.c */,
- 71C7B253130F3904004BF975 /* SDL_sysmutex.c */,
- 71C7B254130F3904004BF975 /* SDL_sysmutex_c.h */,
- 71C7B255130F3904004BF975 /* SDL_syssem.c */,
- 71C7B256130F3904004BF975 /* SDL_systhread.c */,
- 71C7B257130F3904004BF975 /* SDL_systhread_c.h */,
- );
- name = pthread;
- path = ../Common/SDL/src/thread/pthread;
- sourceTree = SOURCE_ROOT;
- };
- 71D887F7130F032700F150FF /* SDL */ = {
- isa = PBXGroup;
- children = (
- 71D887F8130F032700F150FF /* include */,
- 71D88808130F032700F150FF /* src */,
- );
- name = SDL;
- path = ../Common/SDL;
- sourceTree = SOURCE_ROOT;
- };
- 71D887F8130F032700F150FF /* include */ = {
- isa = PBXGroup;
- children = (
- 71D887F9130F032700F150FF /* begin_code.h */,
- 71D887FA130F032700F150FF /* close_code.h */,
- 71D887FB130F032700F150FF /* SDL.h */,
- 71D887FC130F032700F150FF /* SDL_audio.h */,
- 71D887FD130F032700F150FF /* SDL_config.h */,
- 71D887FE130F032700F150FF /* SDL_endian.h */,
- 71D887FF130F032700F150FF /* SDL_error.h */,
- 71D88800130F032700F150FF /* SDL_haptic.h */,
- 71D88801130F032700F150FF /* SDL_joystick.h */,
- 71D88802130F032700F150FF /* SDL_main.h */,
- 71D88803130F032700F150FF /* SDL_mutex.h */,
- 71D88804130F032700F150FF /* SDL_platform.h */,
- 71D88805130F032700F150FF /* SDL_rwops.h */,
- 71D88806130F032700F150FF /* SDL_stdinc.h */,
- 71D88807130F032700F150FF /* SDL_thread.h */,
- );
- name = include;
- path = ../Common/SDL/include;
- sourceTree = SOURCE_ROOT;
- };
- 71D88808130F032700F150FF /* src */ = {
- isa = PBXGroup;
- children = (
- 71D8881D130F032700F150FF /* haptic */,
- 71D88823130F032700F150FF /* joystick */,
- 71C7B250130F3904004BF975 /* thread */,
- 71D8882A130F032700F150FF /* SDL.c */,
- 71D8882B130F032700F150FF /* SDL_error.c */,
- 71D8882C130F032700F150FF /* SDL_error_c.h */,
- );
- name = src;
- path = ../Common/SDL/src;
- sourceTree = SOURCE_ROOT;
- };
- 71D8881D130F032700F150FF /* haptic */ = {
- isa = PBXGroup;
- children = (
- 71D8881E130F032700F150FF /* darwin */,
- 71D88820130F032700F150FF /* SDL_haptic.c */,
- 71D88821130F032700F150FF /* SDL_haptic_c.h */,
- 71D88822130F032700F150FF /* SDL_syshaptic.h */,
- );
- name = haptic;
- path = ../Common/SDL/src/haptic;
- sourceTree = SOURCE_ROOT;
- };
- 71D8881E130F032700F150FF /* darwin */ = {
- isa = PBXGroup;
- children = (
- 71D8881F130F032700F150FF /* SDL_syshaptic.c */,
- );
- name = darwin;
- path = ../Common/SDL/src/haptic/darwin;
- sourceTree = SOURCE_ROOT;
- };
- 71D88823130F032700F150FF /* joystick */ = {
- isa = PBXGroup;
- children = (
- 71D88824130F032700F150FF /* darwin */,
- 71D88827130F032700F150FF /* SDL_joystick.c */,
- 71D88828130F032700F150FF /* SDL_joystick_c.h */,
- 71D88829130F032700F150FF /* SDL_sysjoystick.h */,
- );
- name = joystick;
- path = ../Common/SDL/src/joystick;
- sourceTree = SOURCE_ROOT;
- };
- 71D88824130F032700F150FF /* darwin */ = {
- isa = PBXGroup;
- children = (
- 71D88825130F032700F150FF /* SDL_sysjoystick.c */,
- 71D88826130F032700F150FF /* SDL_sysjoystick_c.h */,
- );
- name = darwin;
- path = ../Common/SDL/src/joystick/darwin;
- sourceTree = SOURCE_ROOT;
- };
-/* End PBXGroup section */
-
-/* Begin PBXHeadersBuildPhase section */
- 8D57630E048677EA00EA77CD /* Headers */ = {
- isa = PBXHeadersBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 714FA83011FC822A00517F47 /* pad.h in Headers */,
- 71E861B611FF75AC001C1826 /* PadView.h in Headers */,
- 7192EAAE1200D54500038B92 /* cfg.h in Headers */,
- 7136F1DA1200E163001973D9 /* ControllerList.h in Headers */,
- 7136F1DC1200E164001973D9 /* MappingCell.h in Headers */,
- 7136F1DF1200E165001973D9 /* PadController.h in Headers */,
- 71D88838130F032700F150FF /* begin_code.h in Headers */,
- 71D88839130F032700F150FF /* close_code.h in Headers */,
- 71D8883A130F032700F150FF /* SDL.h in Headers */,
- 71D8883B130F032700F150FF /* SDL_audio.h in Headers */,
- 71D8883C130F032700F150FF /* SDL_config.h in Headers */,
- 71D8883D130F032700F150FF /* SDL_endian.h in Headers */,
- 71D8883E130F032700F150FF /* SDL_error.h in Headers */,
- 71D8883F130F032700F150FF /* SDL_haptic.h in Headers */,
- 71D88840130F032700F150FF /* SDL_joystick.h in Headers */,
- 71D88841130F032700F150FF /* SDL_main.h in Headers */,
- 71D88842130F032700F150FF /* SDL_mutex.h in Headers */,
- 71D88843130F032700F150FF /* SDL_platform.h in Headers */,
- 71D88844130F032700F150FF /* SDL_rwops.h in Headers */,
- 71D88845130F032700F150FF /* SDL_stdinc.h in Headers */,
- 71D88846130F032700F150FF /* SDL_thread.h in Headers */,
- 71D88859130F032700F150FF /* SDL_haptic_c.h in Headers */,
- 71D8885A130F032700F150FF /* SDL_syshaptic.h in Headers */,
- 71D8885C130F032700F150FF /* SDL_sysjoystick_c.h in Headers */,
- 71D8885E130F032700F150FF /* SDL_joystick_c.h in Headers */,
- 71D8885F130F032700F150FF /* SDL_sysjoystick.h in Headers */,
- 71D88862130F032700F150FF /* SDL_error_c.h in Headers */,
- 71C7B25D130F3904004BF975 /* SDL_sysmutex_c.h in Headers */,
- 71C7B260130F3904004BF975 /* SDL_systhread_c.h in Headers */,
- 71C7B261130F3904004BF975 /* SDL_systhread.h in Headers */,
- 71C7B263130F3904004BF975 /* SDL_thread_c.h in Headers */,
- 558600701785138600CB3D85 /* ARCBridge.h in Headers */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXHeadersBuildPhase section */
-
-/* Begin PBXNativeTarget section */
- 8D57630D048677EA00EA77CD /* DFInput */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 71155B0C0FDFA2DE00EC0BC5 /* Build configuration list for PBXNativeTarget "DFInput" */;
- buildPhases = (
- 8D57630E048677EA00EA77CD /* Headers */,
- 8D57630F048677EA00EA77CD /* Resources */,
- 8D576311048677EA00EA77CD /* Sources */,
- 8D576313048677EA00EA77CD /* Frameworks */,
- 8D576315048677EA00EA77CD /* Rez */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = DFInput;
- productInstallPath = "$(HOME)/Library/Bundles";
- productName = DFInput;
- productReference = 8D576316048677EA00EA77CD /* DFInput.psxplugin */;
- productType = "com.apple.product-type.bundle";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 089C1669FE841209C02AAC07 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 0460;
- };
- buildConfigurationList = 71155B110FDFA2DE00EC0BC5 /* Build configuration list for PBXProject "DFInput" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = English;
- hasScannedForEncodings = 1;
- knownRegions = (
- English,
- Japanese,
- French,
- German,
- );
- mainGroup = 089C166AFE841209C02AAC07 /* DFInput */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 8D57630D048677EA00EA77CD /* DFInput */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
- 8D57630F048677EA00EA77CD /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 8D5B49A804867FD3000E48DA /* InfoPlist.strings in Resources */,
- 7136F51A12011BB4001973D9 /* Credits.rtf in Resources */,
- 28586CC314651E730082B8EC /* NetPcsxrHIDInputPluginMain.xib in Resources */,
- 552E4CBF1474739200FB231F /* Localizable.strings in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXRezBuildPhase section */
- 8D576315048677EA00EA77CD /* Rez */ = {
- isa = PBXRezBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXRezBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- 8D576311048677EA00EA77CD /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 714FA82E11FC822A00517F47 /* analog.c in Sources */,
- 714FA82F11FC822A00517F47 /* pad.c in Sources */,
- 714FA83111FC822A00517F47 /* sdljoy.c in Sources */,
- 714FA8FA11FC863500517F47 /* cfg.c in Sources */,
- 714FA8FB11FC863500517F47 /* xkb.c in Sources */,
- 71E861B711FF75AC001C1826 /* PadView.m in Sources */,
- 7136F1DB1200E163001973D9 /* ControllerList.m in Sources */,
- 7136F1DD1200E164001973D9 /* MappingCell.m in Sources */,
- 7136F1DE1200E165001973D9 /* PadController.m in Sources */,
- 71D88857130F032700F150FF /* SDL_syshaptic.c in Sources */,
- 71D88858130F032700F150FF /* SDL_haptic.c in Sources */,
- 71D8885B130F032700F150FF /* SDL_sysjoystick.c in Sources */,
- 71D8885D130F032700F150FF /* SDL_joystick.c in Sources */,
- 71D88860130F032700F150FF /* SDL.c in Sources */,
- 71D88861130F032700F150FF /* SDL_error.c in Sources */,
- 71C7B25B130F3904004BF975 /* SDL_syscond.c in Sources */,
- 71C7B25C130F3904004BF975 /* SDL_sysmutex.c in Sources */,
- 71C7B25E130F3904004BF975 /* SDL_syssem.c in Sources */,
- 71C7B25F130F3904004BF975 /* SDL_systhread.c in Sources */,
- 71C7B262130F3904004BF975 /* SDL_thread.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin PBXVariantGroup section */
- 28586CC114651E730082B8EC /* NetPcsxrHIDInputPluginMain.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 28586CC214651E730082B8EC /* English */,
- );
- name = NetPcsxrHIDInputPluginMain.xib;
- sourceTree = "<group>";
- };
- 552E4CC11474739200FB231F /* Localizable.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 552E4CC01474739200FB231F /* English */,
- );
- name = Localizable.strings;
- sourceTree = "<group>";
- };
- 7136F51812011BB4001973D9 /* Credits.rtf */ = {
- isa = PBXVariantGroup;
- children = (
- 7136F51912011BB4001973D9 /* English */,
- );
- name = Credits.rtf;
- sourceTree = "<group>";
- };
- 8D5B49A704867FD3000E48DA /* InfoPlist.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 089C167EFE841241C02AAC07 /* English */,
- );
- name = InfoPlist.strings;
- sourceTree = "<group>";
- };
-/* End PBXVariantGroup section */
-
-/* Begin XCBuildConfiguration section */
- 71155B0D0FDFA2DE00EC0BC5 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- COMBINE_HIDPI_IMAGES = YES;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_PRECOMPILE_PREFIX_HEADER = NO;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "PCSXRPLUG=DFInput",
- SDL_AUDIO_DISABLED,
- "$(inherited)",
- );
- GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
- GCC_WARN_UNKNOWN_PRAGMAS = NO;
- HEADER_SEARCH_PATHS = (
- ../../../libpcsxcore,
- ../Common/SDL/include,
- );
- INFOPLIST_FILE = Info.plist;
- INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
- LIBRARY_SEARCH_PATHS = .;
- PRODUCT_NAME = "$(TARGET_NAME)";
- WRAPPER_EXTENSION = psxplugin;
- };
- name = Debug;
- };
- 71155B0E0FDFA2DE00EC0BC5 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- COMBINE_HIDPI_IMAGES = YES;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_PRECOMPILE_PREFIX_HEADER = NO;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "PCSXRPLUG=DFInput",
- SDL_AUDIO_DISABLED,
- "$(inherited)",
- );
- GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
- GCC_WARN_UNKNOWN_PRAGMAS = NO;
- HEADER_SEARCH_PATHS = (
- ../../../libpcsxcore,
- ../Common/SDL/include,
- );
- INFOPLIST_FILE = Info.plist;
- INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
- LIBRARY_SEARCH_PATHS = .;
- PRODUCT_NAME = "$(TARGET_NAME)";
- WRAPPER_EXTENSION = psxplugin;
- };
- name = Release;
- };
- 71155B120FDFA2DE00EC0BC5 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 55858D5B1786579E0068B8FC /* Pcsxr-Debug.xcconfig */;
- buildSettings = {
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- HEADER_SEARCH_PATHS = (
- ../../../libpcsxcore,
- ../..,
- ../../../plugins/dfinput,
- ../../../plugins/dfinput,
- ../../../../plugins/dfinput,
- ../Common/SDL/include,
- );
- };
- name = Debug;
- };
- 71155B130FDFA2DE00EC0BC5 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 55858D5D1786579E0068B8FC /* Pcsxr-Release.xcconfig */;
- buildSettings = {
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- HEADER_SEARCH_PATHS = (
- ../../../libpcsxcore,
- ../..,
- ../../../plugins/dfinput,
- ../../../plugins/dfinput,
- ../../../../plugins/dfinput,
- ../Common/SDL/include,
- );
- };
- name = Release;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- 71155B0C0FDFA2DE00EC0BC5 /* Build configuration list for PBXNativeTarget "DFInput" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 71155B0D0FDFA2DE00EC0BC5 /* Debug */,
- 71155B0E0FDFA2DE00EC0BC5 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 71155B110FDFA2DE00EC0BC5 /* Build configuration list for PBXProject "DFInput" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 71155B120FDFA2DE00EC0BC5 /* Debug */,
- 71155B130FDFA2DE00EC0BC5 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
-/* End XCConfigurationList section */
- };
- rootObject = 089C1669FE841209C02AAC07 /* Project object */;
-}
diff --git a/macosx/plugins/DFNet/DFNet.xcodeproj/project.pbxproj b/macosx/plugins/DFNet/DFNet.xcodeproj/project.pbxproj
deleted file mode 100755
index a3b76244..00000000
--- a/macosx/plugins/DFNet/DFNet.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,388 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
-
-/* Begin PBXBuildFile section */
- 551ED70C130F209C00D19D11 /* SockDialog.h in Headers */ = {isa = PBXBuildFile; fileRef = 551ED70A130F209C00D19D11 /* SockDialog.h */; };
- 551ED70D130F209C00D19D11 /* SockDialog.m in Sources */ = {isa = PBXBuildFile; fileRef = 551ED70B130F209C00D19D11 /* SockDialog.m */; };
- 55278DBD12C813AC00288CD8 /* dfnet.c in Sources */ = {isa = PBXBuildFile; fileRef = 55278DBA12C813AC00288CD8 /* dfnet.c */; };
- 55278DBE12C813AC00288CD8 /* dfnet.h in Headers */ = {isa = PBXBuildFile; fileRef = 55278DBB12C813AC00288CD8 /* dfnet.h */; };
- 55278DC212C8141600288CD8 /* cfg.c in Sources */ = {isa = PBXBuildFile; fileRef = 55278DC112C8141600288CD8 /* cfg.c */; };
- 55612EC912C965F500BD3D17 /* unix.c in Sources */ = {isa = PBXBuildFile; fileRef = 55278DBC12C813AC00288CD8 /* unix.c */; };
- 558600731785139C00CB3D85 /* ARCBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 558600721785139C00CB3D85 /* ARCBridge.h */; };
- 559DACB3146C64B800C5DF71 /* DFNet.xib in Resources */ = {isa = PBXBuildFile; fileRef = 559DACB1146C64B800C5DF71 /* DFNet.xib */; };
- 559DACB8146C64D600C5DF71 /* SockDialog.xib in Resources */ = {isa = PBXBuildFile; fileRef = 559DACB6146C64D600C5DF71 /* SockDialog.xib */; };
- 55F79D6C1475B252007C856E /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 55F79D6E1475B252007C856E /* Localizable.strings */; };
- 71F3C32A11F3CD0B007B9F12 /* PluginConfigController.h in Headers */ = {isa = PBXBuildFile; fileRef = 71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */; };
- 71F3C32B11F3CD0B007B9F12 /* PluginConfigController.m in Sources */ = {isa = PBXBuildFile; fileRef = 71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */; };
- 71F3C38611F3CFED007B9F12 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71F3C38511F3CFED007B9F12 /* AppKit.framework */; };
- 71F3C47A11F3D108007B9F12 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 71F3C47811F3D108007B9F12 /* Credits.rtf */; };
- 8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */; };
- 8D5B49A804867FD3000E48DA /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 8D5B49A704867FD3000E48DA /* InfoPlist.strings */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXFileReference section */
- 089C167EFE841241C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; };
- 551ED70A130F209C00D19D11 /* SockDialog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SockDialog.h; sourceTree = "<group>"; };
- 551ED70B130F209C00D19D11 /* SockDialog.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SockDialog.m; sourceTree = "<group>"; };
- 55278DBA12C813AC00288CD8 /* dfnet.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = dfnet.c; path = ../../../plugins/dfnet/dfnet.c; sourceTree = SOURCE_ROOT; };
- 55278DBB12C813AC00288CD8 /* dfnet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = dfnet.h; path = ../../../plugins/dfnet/dfnet.h; sourceTree = SOURCE_ROOT; };
- 55278DBC12C813AC00288CD8 /* unix.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; lineEnding = 2; name = unix.c; path = ../../../plugins/dfnet/unix.c; sourceTree = SOURCE_ROOT; };
- 55278DC112C8141600288CD8 /* cfg.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = cfg.c; sourceTree = "<group>"; };
- 55858D65178658810068B8FC /* Pcsxr-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Debug.xcconfig"; sourceTree = "<group>"; };
- 55858D66178658810068B8FC /* Pcsxr-Instrument.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Instrument.xcconfig"; sourceTree = "<group>"; };
- 55858D67178658810068B8FC /* Pcsxr-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Release.xcconfig"; sourceTree = "<group>"; };
- 55858D68178658810068B8FC /* Pcsxr.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Pcsxr.xcconfig; sourceTree = "<group>"; };
- 558600721785139C00CB3D85 /* ARCBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
- 559DACB2146C64B800C5DF71 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = plugins/DFNet/English.lproj/DFNet.xib; sourceTree = "<group>"; };
- 559DACB7146C64D600C5DF71 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = plugins/DFNet/English.lproj/SockDialog.xib; sourceTree = "<group>"; };
- 55F79D6D1475B252007C856E /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
- 71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.h; path = PluginConfigController.h; sourceTree = "<group>"; };
- 71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */ = {isa = PBXFileReference; fileEncoding = 0; lastKnownFileType = sourcecode.c.objc; path = PluginConfigController.m; sourceTree = "<group>"; };
- 71F3C38511F3CFED007B9F12 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
- 71F3C38711F3CFF7007B9F12 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; };
- 71F3C47911F3D108007B9F12 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
- 8D576316048677EA00EA77CD /* DFNet.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DFNet.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
- 8D576317048677EA00EA77CD /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 8D576313048677EA00EA77CD /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */,
- 71F3C38611F3CFED007B9F12 /* AppKit.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 089C166AFE841209C02AAC07 /* CdrDevMac */ = {
- isa = PBXGroup;
- children = (
- 08FB77AFFE84173DC02AAC07 /* Source Files */,
- 089C167CFE841241C02AAC07 /* Resources */,
- 089C1671FE841209C02AAC07 /* External Frameworks and Libraries */,
- 19C28FB6FE9D52B211CA2CBB /* Products */,
- );
- name = CdrDevMac;
- sourceTree = "<group>";
- };
- 089C1671FE841209C02AAC07 /* External Frameworks and Libraries */ = {
- isa = PBXGroup;
- children = (
- 71F3C38511F3CFED007B9F12 /* AppKit.framework */,
- 71F3C38711F3CFF7007B9F12 /* Carbon.framework */,
- 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */,
- );
- name = "External Frameworks and Libraries";
- sourceTree = "<group>";
- };
- 089C167CFE841241C02AAC07 /* Resources */ = {
- isa = PBXGroup;
- children = (
- 55858D69178658810068B8FC /* Configs */,
- 559DACB1146C64B800C5DF71 /* DFNet.xib */,
- 71F3C47811F3D108007B9F12 /* Credits.rtf */,
- 8D576317048677EA00EA77CD /* Info.plist */,
- 8D5B49A704867FD3000E48DA /* InfoPlist.strings */,
- 55F79D6E1475B252007C856E /* Localizable.strings */,
- 559DACB6146C64D600C5DF71 /* SockDialog.xib */,
- );
- name = Resources;
- sourceTree = "<group>";
- };
- 08FB77AFFE84173DC02AAC07 /* Source Files */ = {
- isa = PBXGroup;
- children = (
- 71F3C32111F3CCEF007B9F12 /* macsrc */,
- 71F3C30911F3CC22007B9F12 /* src */,
- );
- name = "Source Files";
- sourceTree = "<group>";
- };
- 19C28FB6FE9D52B211CA2CBB /* Products */ = {
- isa = PBXGroup;
- children = (
- 8D576316048677EA00EA77CD /* DFNet.psxplugin */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 55858D69178658810068B8FC /* Configs */ = {
- isa = PBXGroup;
- children = (
- 55858D65178658810068B8FC /* Pcsxr-Debug.xcconfig */,
- 55858D66178658810068B8FC /* Pcsxr-Instrument.xcconfig */,
- 55858D67178658810068B8FC /* Pcsxr-Release.xcconfig */,
- 55858D68178658810068B8FC /* Pcsxr.xcconfig */,
- );
- name = Configs;
- path = ../../Configs;
- sourceTree = "<group>";
- };
- 71F3C30911F3CC22007B9F12 /* src */ = {
- isa = PBXGroup;
- children = (
- 55278DBA12C813AC00288CD8 /* dfnet.c */,
- 55278DBB12C813AC00288CD8 /* dfnet.h */,
- 55278DBC12C813AC00288CD8 /* unix.c */,
- );
- name = src;
- sourceTree = "<group>";
- };
- 71F3C32111F3CCEF007B9F12 /* macsrc */ = {
- isa = PBXGroup;
- children = (
- 558600721785139C00CB3D85 /* ARCBridge.h */,
- 55278DC112C8141600288CD8 /* cfg.c */,
- 71F3C32611F3CD0B007B9F12 /* PluginConfigController.h */,
- 71F3C32711F3CD0B007B9F12 /* PluginConfigController.m */,
- 551ED70A130F209C00D19D11 /* SockDialog.h */,
- 551ED70B130F209C00D19D11 /* SockDialog.m */,
- );
- path = macsrc;
- sourceTree = "<group>";
- };
-/* End PBXGroup section */
-
-/* Begin PBXHeadersBuildPhase section */
- 8D57630E048677EA00EA77CD /* Headers */ = {
- isa = PBXHeadersBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 71F3C32A11F3CD0B007B9F12 /* PluginConfigController.h in Headers */,
- 55278DBE12C813AC00288CD8 /* dfnet.h in Headers */,
- 551ED70C130F209C00D19D11 /* SockDialog.h in Headers */,
- 558600731785139C00CB3D85 /* ARCBridge.h in Headers */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXHeadersBuildPhase section */
-
-/* Begin PBXNativeTarget section */
- 8D57630D048677EA00EA77CD /* DFNet */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 710735990FDEED75004AD098 /* Build configuration list for PBXNativeTarget "DFNet" */;
- buildPhases = (
- 8D57630E048677EA00EA77CD /* Headers */,
- 8D57630F048677EA00EA77CD /* Resources */,
- 8D576311048677EA00EA77CD /* Sources */,
- 8D576313048677EA00EA77CD /* Frameworks */,
- 8D576315048677EA00EA77CD /* Rez */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = DFNet;
- productInstallPath = "$(HOME)/Library/Bundles";
- productName = CdrDevMac;
- productReference = 8D576316048677EA00EA77CD /* DFNet.psxplugin */;
- productType = "com.apple.product-type.bundle";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 089C1669FE841209C02AAC07 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 0440;
- };
- buildConfigurationList = 7107359E0FDEED75004AD098 /* Build configuration list for PBXProject "DFNet" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = English;
- hasScannedForEncodings = 1;
- knownRegions = (
- English,
- Japanese,
- French,
- German,
- );
- mainGroup = 089C166AFE841209C02AAC07 /* CdrDevMac */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 8D57630D048677EA00EA77CD /* DFNet */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
- 8D57630F048677EA00EA77CD /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 8D5B49A804867FD3000E48DA /* InfoPlist.strings in Resources */,
- 71F3C47A11F3D108007B9F12 /* Credits.rtf in Resources */,
- 559DACB3146C64B800C5DF71 /* DFNet.xib in Resources */,
- 559DACB8146C64D600C5DF71 /* SockDialog.xib in Resources */,
- 55F79D6C1475B252007C856E /* Localizable.strings in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXRezBuildPhase section */
- 8D576315048677EA00EA77CD /* Rez */ = {
- isa = PBXRezBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXRezBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- 8D576311048677EA00EA77CD /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 71F3C32B11F3CD0B007B9F12 /* PluginConfigController.m in Sources */,
- 55278DBD12C813AC00288CD8 /* dfnet.c in Sources */,
- 55278DC212C8141600288CD8 /* cfg.c in Sources */,
- 55612EC912C965F500BD3D17 /* unix.c in Sources */,
- 551ED70D130F209C00D19D11 /* SockDialog.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin PBXVariantGroup section */
- 559DACB1146C64B800C5DF71 /* DFNet.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 559DACB2146C64B800C5DF71 /* English */,
- );
- name = DFNet.xib;
- path = ../..;
- sourceTree = "<group>";
- };
- 559DACB6146C64D600C5DF71 /* SockDialog.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 559DACB7146C64D600C5DF71 /* English */,
- );
- name = SockDialog.xib;
- path = ../..;
- sourceTree = "<group>";
- };
- 55F79D6E1475B252007C856E /* Localizable.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 55F79D6D1475B252007C856E /* English */,
- );
- name = Localizable.strings;
- sourceTree = "<group>";
- };
- 71F3C47811F3D108007B9F12 /* Credits.rtf */ = {
- isa = PBXVariantGroup;
- children = (
- 71F3C47911F3D108007B9F12 /* English */,
- );
- name = Credits.rtf;
- sourceTree = "<group>";
- };
- 8D5B49A704867FD3000E48DA /* InfoPlist.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 089C167EFE841241C02AAC07 /* English */,
- );
- name = InfoPlist.strings;
- sourceTree = "<group>";
- };
-/* End PBXVariantGroup section */
-
-/* Begin XCBuildConfiguration section */
- 7107359A0FDEED75004AD098 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- COMBINE_HIDPI_IMAGES = YES;
- GCC_PRECOMPILE_PREFIX_HEADER = NO;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "PCSXRPLUG=DFNet",
- "$(inherited)",
- );
- GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
- GCC_WARN_UNKNOWN_PRAGMAS = NO;
- INFOPLIST_FILE = Info.plist;
- INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
- PRODUCT_NAME = "$(TARGET_NAME)";
- WRAPPER_EXTENSION = psxplugin;
- };
- name = Debug;
- };
- 7107359B0FDEED75004AD098 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- COMBINE_HIDPI_IMAGES = YES;
- GCC_PRECOMPILE_PREFIX_HEADER = NO;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "PCSXRPLUG=DFNet",
- "$(inherited)",
- );
- GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
- GCC_WARN_UNKNOWN_PRAGMAS = NO;
- INFOPLIST_FILE = Info.plist;
- INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
- PRODUCT_NAME = "$(TARGET_NAME)";
- WRAPPER_EXTENSION = psxplugin;
- };
- name = Release;
- };
- 7107359F0FDEED75004AD098 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 55858D65178658810068B8FC /* Pcsxr-Debug.xcconfig */;
- buildSettings = {
- HEADER_SEARCH_PATHS = (
- ../../../libpcsxcore,
- ../..,
- ../../../plugins/dfnet,
- );
- };
- name = Debug;
- };
- 710735A00FDEED75004AD098 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 55858D67178658810068B8FC /* Pcsxr-Release.xcconfig */;
- buildSettings = {
- HEADER_SEARCH_PATHS = (
- ../../../libpcsxcore,
- ../..,
- ../../../plugins/dfnet,
- );
- };
- name = Release;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- 710735990FDEED75004AD098 /* Build configuration list for PBXNativeTarget "DFNet" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 7107359A0FDEED75004AD098 /* Debug */,
- 7107359B0FDEED75004AD098 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 7107359E0FDEED75004AD098 /* Build configuration list for PBXProject "DFNet" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 7107359F0FDEED75004AD098 /* Debug */,
- 710735A00FDEED75004AD098 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
-/* End XCConfigurationList section */
- };
- rootObject = 089C1669FE841209C02AAC07 /* Project object */;
-}
diff --git a/macosx/plugins/DFNet/English.lproj/SockDialog.xib b/macosx/plugins/DFNet/English.lproj/SockDialog.xib
index d3d98dd5..04c8cc73 100644
--- a/macosx/plugins/DFNet/English.lproj/SockDialog.xib
+++ b/macosx/plugins/DFNet/English.lproj/SockDialog.xib
@@ -2,23 +2,23 @@
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="8.00">
<data>
<int key="IBDocument.SystemTarget">1060</int>
- <string key="IBDocument.SystemVersion">11C74</string>
- <string key="IBDocument.InterfaceBuilderVersion">1938</string>
- <string key="IBDocument.AppKitVersion">1138.23</string>
- <string key="IBDocument.HIToolboxVersion">567.00</string>
+ <string key="IBDocument.SystemVersion">12E55</string>
+ <string key="IBDocument.InterfaceBuilderVersion">3084</string>
+ <string key="IBDocument.AppKitVersion">1187.39</string>
+ <string key="IBDocument.HIToolboxVersion">626.00</string>
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
- <string key="NS.object.0">1938</string>
+ <string key="NS.object.0">3084</string>
</object>
<array key="IBDocument.IntegratedClassDependencies">
+ <string>NSButton</string>
+ <string>NSButtonCell</string>
+ <string>NSCustomObject</string>
+ <string>NSProgressIndicator</string>
<string>NSTextField</string>
+ <string>NSTextFieldCell</string>
<string>NSView</string>
<string>NSWindowTemplate</string>
- <string>NSProgressIndicator</string>
- <string>NSCustomObject</string>
- <string>NSButtonCell</string>
- <string>NSButton</string>
- <string>NSTextFieldCell</string>
</array>
<array key="IBDocument.PluginDependencies">
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
@@ -58,7 +58,7 @@
<reference key="NSWindow"/>
<bool key="NSEnabled">YES</bool>
<object class="NSTextFieldCell" key="NSCell" id="993388181">
- <int key="NSCellFlags">68288064</int>
+ <int key="NSCellFlags">68157504</int>
<int key="NSCellFlags2">138413056</int>
<string key="NSContents">Waiting for connections...</string>
<object class="NSFont" key="NSSupport" id="596705607">
@@ -86,15 +86,15 @@
</object>
</object>
</object>
+ <bool key="NSAllowsLogicalLayoutDirection">NO</bool>
</object>
<object class="NSProgressIndicator" id="308883112">
<reference key="NSNextResponder" ref="1006"/>
<int key="NSvFlags">1292</int>
- <object class="NSPSMatrix" key="NSDrawMatrix"/>
<string key="NSFrame">{{104, 61}, {174, 20}}</string>
<reference key="NSSuperview" ref="1006"/>
<reference key="NSWindow"/>
- <int key="NSpiFlags">16394</int>
+ <int key="NSpiFlags">24586</int>
<double key="NSMaxValue">100</double>
</object>
<object class="NSButton" id="105187407">
@@ -105,18 +105,19 @@
<reference key="NSWindow"/>
<bool key="NSEnabled">YES</bool>
<object class="NSButtonCell" key="NSCell" id="857910789">
- <int key="NSCellFlags">67239424</int>
+ <int key="NSCellFlags">67108864</int>
<int key="NSCellFlags2">134217728</int>
<string key="NSContents">Cancel</string>
<reference key="NSSupport" ref="596705607"/>
<reference key="NSControlView" ref="105187407"/>
- <int key="NSButtonFlags">-2038284033</int>
+ <int key="NSButtonFlags">-2038284288</int>
<int key="NSButtonFlags2">129</int>
<string key="NSAlternateContents"/>
<string type="base64-UTF8" key="NSKeyEquivalent">Gw</string>
<int key="NSPeriodicDelay">200</int>
<int key="NSPeriodicInterval">25</int>
</object>
+ <bool key="NSAllowsLogicalLayoutDirection">NO</bool>
</object>
</array>
<string key="NSFrameSize">{382, 139}</string>
@@ -273,10 +274,6 @@
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<real value="1060" key="NS.object.0"/>
</object>
- <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
- <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
- <real value="1060" key="NS.object.0"/>
- </object>
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
<int key="IBDocument.defaultPropertyAccessControl">3</int>
</data>
diff --git a/macosx/plugins/DFSound/PeopsSPU.xcodeproj/project.pbxproj b/macosx/plugins/DFSound/PeopsSPU.xcodeproj/project.pbxproj
deleted file mode 100644
index f986e898..00000000
--- a/macosx/plugins/DFSound/PeopsSPU.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,952 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
-
-/* Begin PBXBuildFile section */
- 2B7B2B94072D9BE6007F0C35 /* PluginController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B7B2B92072D9BE6007F0C35 /* PluginController.m */; };
- 2B7B2BD1072DAE5D007F0C35 /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B7B2BD0072DAE5D007F0C35 /* AppKit.framework */; };
- 2BFF7F3E0715D2E00061278A /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BFF7F3D0715D2E00061278A /* Carbon.framework */; };
- 5506636C14AB91C100C7C565 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 5506635A14AB91C100C7C565 /* InfoPlist.strings */; };
- 5506637314AB91C100C7C565 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 5506636314AB91C100C7C565 /* InfoPlist.strings */; };
- 554588461783DF39008A7407 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 554588451783DF39008A7407 /* Cocoa.framework */; };
- 554588541783DF87008A7407 /* NamedSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B7B2BE7072DB1B6007F0C35 /* NamedSlider.m */; };
- 554588551783DF8B008A7407 /* NamedSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B7B2BE6072DB1B6007F0C35 /* NamedSlider.h */; };
- 554588581783DFE0008A7407 /* libSPUSharedCode.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 554588431783DF39008A7407 /* libSPUSharedCode.dylib */; };
- 5545885A1783DFFE008A7407 /* libSPUSharedCode.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 554588431783DF39008A7407 /* libSPUSharedCode.dylib */; };
- 5545885D1783E00E008A7407 /* libSPUSharedCode.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 554588431783DF39008A7407 /* libSPUSharedCode.dylib */; };
- 5545885F1783E020008A7407 /* libSPUSharedCode.dylib in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 554588431783DF39008A7407 /* libSPUSharedCode.dylib */; };
- 554588701783E5FE008A7407 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 5545886A1783E5FE008A7407 /* Credits.rtf */; };
- 554588711783E5FE008A7407 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 5545886A1783E5FE008A7407 /* Credits.rtf */; };
- 554588721783E5FE008A7407 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 5545886C1783E5FE008A7407 /* Localizable.strings */; };
- 554588731783E5FE008A7407 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 5545886C1783E5FE008A7407 /* Localizable.strings */; };
- 554588741783E5FE008A7407 /* NetSfPeopsSpuPluginMain.xib in Resources */ = {isa = PBXBuildFile; fileRef = 5545886E1783E5FE008A7407 /* NetSfPeopsSpuPluginMain.xib */; };
- 554588751783E5FE008A7407 /* NetSfPeopsSpuPluginMain.xib in Resources */ = {isa = PBXBuildFile; fileRef = 5545886E1783E5FE008A7407 /* NetSfPeopsSpuPluginMain.xib */; };
- 554588781783F2E3008A7407 /* SPUPluginController.h in Headers */ = {isa = PBXBuildFile; fileRef = 554588761783F2E3008A7407 /* SPUPluginController.h */; };
- 554588791783F2E3008A7407 /* SPUPluginController.m in Sources */ = {isa = PBXBuildFile; fileRef = 554588771783F2E3008A7407 /* SPUPluginController.m */; };
- 5586006B1785136A00CB3D85 /* ARCBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 5586006A1785136A00CB3D85 /* ARCBridge.h */; };
- 5599693C13AFCD2900B0216B /* PluginController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B7B2B92072D9BE6007F0C35 /* PluginController.m */; };
- 5599693E13AFCD2900B0216B /* dma.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E797109DC529003BB7AC /* dma.c */; };
- 5599693F13AFCD2900B0216B /* freeze.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E79B109DC529003BB7AC /* freeze.c */; };
- 5599694013AFCD2900B0216B /* registers.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E79F109DC529003BB7AC /* registers.c */; };
- 5599694113AFCD2900B0216B /* spu.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E7A4109DC529003BB7AC /* spu.c */; };
- 5599694213AFCD2900B0216B /* xa.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E7A7109DC529003BB7AC /* xa.c */; };
- 5599695313AFCD2900B0216B /* externals.c in Sources */ = {isa = PBXBuildFile; fileRef = A1A2073D13816B1D005EE84C /* externals.c */; };
- 5599695513AFCD2900B0216B /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */; };
- 5599695713AFCD2900B0216B /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B7B2BD0072DAE5D007F0C35 /* AppKit.framework */; };
- 5599696613AFCD7F00B0216B /* SDL_error.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1F4130F340E004BF975 /* SDL_error.c */; };
- 5599696713AFCD7F00B0216B /* SDL_coreaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1D4130F340E004BF975 /* SDL_coreaudio.c */; };
- 5599696813AFCD8000B0216B /* SDL_audiotypecvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1DC130F340E004BF975 /* SDL_audiotypecvt.c */; };
- 5599696913AFCD8100B0216B /* SDL_audiocvt.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1D8130F340E004BF975 /* SDL_audiocvt.c */; };
- 5599696A13AFCD8100B0216B /* SDL_audio.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1D6130F340E004BF975 /* SDL_audio.c */; };
- 5599696B13AFCD8300B0216B /* SDL.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1F3130F340E004BF975 /* SDL.c */; };
- 5599696C13AFCD8B00B0216B /* openal.c in Sources */ = {isa = PBXBuildFile; fileRef = 5599692713AFCCC600B0216B /* openal.c */; };
- 5599696D13AFCD9300B0216B /* sdl.c in Sources */ = {isa = PBXBuildFile; fileRef = 71D88523130EF83900F150FF /* sdl.c */; };
- 5599696F13AFCE1D00B0216B /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5599696E13AFCE1D00B0216B /* OpenAL.framework */; };
- 71C7B206130F340E004BF975 /* SDL_mixer.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1DD130F340E004BF975 /* SDL_mixer.c */; };
- 71C7B207130F340E004BF975 /* SDL_wave.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1DF130F340E004BF975 /* SDL_wave.c */; };
- 71C7B208130F340E004BF975 /* SDL_rwopsbundlesupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1E4130F340E004BF975 /* SDL_rwopsbundlesupport.m */; };
- 71C7B209130F340E004BF975 /* SDL_rwops.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1E5130F340E004BF975 /* SDL_rwops.c */; };
- 71C7B210130F340E004BF975 /* SDL_syscond.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1F8130F340E004BF975 /* SDL_syscond.c */; };
- 71C7B211130F340E004BF975 /* SDL_sysmutex.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1F9130F340E004BF975 /* SDL_sysmutex.c */; };
- 71C7B212130F340E004BF975 /* SDL_syssem.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1FB130F340E004BF975 /* SDL_syssem.c */; };
- 71C7B213130F340E004BF975 /* SDL_systhread.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1FC130F340E004BF975 /* SDL_systhread.c */; };
- 71C7B214130F340E004BF975 /* SDL_thread.c in Sources */ = {isa = PBXBuildFile; fileRef = 71C7B1FF130F340E004BF975 /* SDL_thread.c */; };
- 71D88636130EFFB500F150FF /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71D88634130EFFB500F150FF /* CoreAudio.framework */; };
- 71D8864F130F009E00F150FF /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71D8864E130F009D00F150FF /* IOKit.framework */; };
- 71D88654130F00B400F150FF /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71D88653130F00B400F150FF /* AudioUnit.framework */; };
- 71E4E7AB109DC529003BB7AC /* dma.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E797109DC529003BB7AC /* dma.c */; };
- 71E4E7AC109DC529003BB7AC /* freeze.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E79B109DC529003BB7AC /* freeze.c */; };
- 71E4E7AE109DC529003BB7AC /* registers.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E79F109DC529003BB7AC /* registers.c */; };
- 71E4E7B0109DC529003BB7AC /* spu.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E7A4109DC529003BB7AC /* spu.c */; };
- 71E4E7B1109DC529003BB7AC /* xa.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E4E7A7109DC529003BB7AC /* xa.c */; };
- 8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */; };
- A1A2073E13816B1D005EE84C /* externals.c in Sources */ = {isa = PBXBuildFile; fileRef = A1A2073D13816B1D005EE84C /* externals.c */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXContainerItemProxy section */
- 554588561783DFD9008A7407 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 089C1669FE841209C02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 554588421783DF39008A7407;
- remoteInfo = PCSXRNamedSliders;
- };
- 5545885B1783E00A008A7407 /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 089C1669FE841209C02AAC07 /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 554588421783DF39008A7407;
- remoteInfo = PCSXRNamedSliders;
- };
-/* End PBXContainerItemProxy section */
-
-/* Begin PBXCopyFilesBuildPhase section */
- 554588591783DFE6008A7407 /* Copy Frameworks */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 10;
- files = (
- 5545885A1783DFFE008A7407 /* libSPUSharedCode.dylib in Copy Frameworks */,
- );
- name = "Copy Frameworks";
- runOnlyForDeploymentPostprocessing = 0;
- };
- 5545885E1783E015008A7407 /* Copy Frameworks */ = {
- isa = PBXCopyFilesBuildPhase;
- buildActionMask = 2147483647;
- dstPath = "";
- dstSubfolderSpec = 10;
- files = (
- 5545885F1783E020008A7407 /* libSPUSharedCode.dylib in Copy Frameworks */,
- );
- name = "Copy Frameworks";
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXCopyFilesBuildPhase section */
-
-/* Begin PBXFileReference section */
- 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = /System/Library/Frameworks/CoreFoundation.framework; sourceTree = "<absolute>"; };
- 2B7B2B91072D9BE6007F0C35 /* PluginController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 0; path = PluginController.h; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objcpp; };
- 2B7B2B92072D9BE6007F0C35 /* PluginController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; lineEnding = 0; path = PluginController.m; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.objc; };
- 2B7B2BD0072DAE5D007F0C35 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
- 2B7B2BE6072DB1B6007F0C35 /* NamedSlider.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; path = NamedSlider.h; sourceTree = "<group>"; };
- 2B7B2BE7072DB1B6007F0C35 /* NamedSlider.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; path = NamedSlider.m; sourceTree = "<group>"; };
- 2BFF7F3D0715D2E00061278A /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Carbon.framework; path = /System/Library/Frameworks/Carbon.framework; sourceTree = "<absolute>"; };
- 5506635B14AB91C100C7C565 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 5506636414AB91C100C7C565 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 5517C065136217DE00706CCF /* externals.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = externals.c; sourceTree = "<group>"; };
- 554588431783DF39008A7407 /* libSPUSharedCode.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib"; includeInIndex = 0; path = libSPUSharedCode.dylib; sourceTree = BUILT_PRODUCTS_DIR; };
- 554588451783DF39008A7407 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
- 554588481783DF39008A7407 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
- 554588491783DF39008A7407 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
- 5545884A1783DF39008A7407 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
- 5545886B1783E5FE008A7407 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
- 5545886D1783E5FE008A7407 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
- 5545886F1783E5FE008A7407 /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/NetSfPeopsSpuPluginMain.xib; sourceTree = "<group>"; };
- 554588761783F2E3008A7407 /* SPUPluginController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SPUPluginController.h; sourceTree = "<group>"; };
- 554588771783F2E3008A7407 /* SPUPluginController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SPUPluginController.m; sourceTree = "<group>"; };
- 55858D3E178654D90068B8FC /* Pcsxr-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Debug.xcconfig"; sourceTree = "<group>"; };
- 55858D3F178654D90068B8FC /* Pcsxr-Instrument.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Instrument.xcconfig"; sourceTree = "<group>"; };
- 55858D40178654D90068B8FC /* Pcsxr-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Release.xcconfig"; sourceTree = "<group>"; };
- 55858D41178654D90068B8FC /* Pcsxr.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Pcsxr.xcconfig; sourceTree = "<group>"; };
- 5586006A1785136A00CB3D85 /* ARCBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
- 5599692713AFCCC600B0216B /* openal.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = openal.c; sourceTree = "<group>"; };
- 5599695E13AFCD2900B0216B /* PeopsSpuAL.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PeopsSpuAL.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
- 5599696E13AFCE1D00B0216B /* OpenAL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenAL.framework; path = System/Library/Frameworks/OpenAL.framework; sourceTree = SDKROOT; };
- 55C8AB0C146DCD0E005ACCCB /* Info-AL.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Info-AL.plist"; sourceTree = "<group>"; };
- 55F36E4B146CA0A900718DE6 /* maccfg.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = maccfg.h; sourceTree = "<group>"; };
- 71C7B1C2130F340E004BF975 /* begin_code.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = begin_code.h; sourceTree = "<group>"; };
- 71C7B1C3130F340E004BF975 /* close_code.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = close_code.h; sourceTree = "<group>"; };
- 71C7B1C4130F340E004BF975 /* SDL.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL.h; sourceTree = "<group>"; };
- 71C7B1C5130F340E004BF975 /* SDL_audio.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_audio.h; sourceTree = "<group>"; };
- 71C7B1C6130F340E004BF975 /* SDL_config.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_config.h; sourceTree = "<group>"; };
- 71C7B1C7130F340E004BF975 /* SDL_endian.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_endian.h; sourceTree = "<group>"; };
- 71C7B1C8130F340E004BF975 /* SDL_error.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_error.h; sourceTree = "<group>"; };
- 71C7B1C9130F340E004BF975 /* SDL_haptic.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_haptic.h; sourceTree = "<group>"; };
- 71C7B1CA130F340E004BF975 /* SDL_joystick.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_joystick.h; sourceTree = "<group>"; };
- 71C7B1CB130F340E004BF975 /* SDL_main.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_main.h; sourceTree = "<group>"; };
- 71C7B1CC130F340E004BF975 /* SDL_mutex.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_mutex.h; sourceTree = "<group>"; };
- 71C7B1CD130F340E004BF975 /* SDL_platform.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_platform.h; sourceTree = "<group>"; };
- 71C7B1CE130F340E004BF975 /* SDL_rwops.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_rwops.h; sourceTree = "<group>"; };
- 71C7B1CF130F340E004BF975 /* SDL_stdinc.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_stdinc.h; sourceTree = "<group>"; };
- 71C7B1D0130F340E004BF975 /* SDL_thread.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_thread.h; sourceTree = "<group>"; };
- 71C7B1D4130F340E004BF975 /* SDL_coreaudio.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_coreaudio.c; sourceTree = "<group>"; };
- 71C7B1D5130F340E004BF975 /* SDL_coreaudio.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_coreaudio.h; sourceTree = "<group>"; };
- 71C7B1D6130F340E004BF975 /* SDL_audio.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_audio.c; sourceTree = "<group>"; };
- 71C7B1D7130F340E004BF975 /* SDL_audio_c.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_audio_c.h; sourceTree = "<group>"; };
- 71C7B1D8130F340E004BF975 /* SDL_audiocvt.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_audiocvt.c; sourceTree = "<group>"; };
- 71C7B1DB130F340E004BF975 /* SDL_audiomem.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_audiomem.h; sourceTree = "<group>"; };
- 71C7B1DC130F340E004BF975 /* SDL_audiotypecvt.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_audiotypecvt.c; sourceTree = "<group>"; };
- 71C7B1DD130F340E004BF975 /* SDL_mixer.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_mixer.c; sourceTree = "<group>"; };
- 71C7B1DE130F340E004BF975 /* SDL_sysaudio.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_sysaudio.h; sourceTree = "<group>"; };
- 71C7B1DF130F340E004BF975 /* SDL_wave.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_wave.c; sourceTree = "<group>"; };
- 71C7B1E0130F340E004BF975 /* SDL_wave.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_wave.h; sourceTree = "<group>"; };
- 71C7B1E3130F340E004BF975 /* SDL_rwopsbundlesupport.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_rwopsbundlesupport.h; sourceTree = "<group>"; };
- 71C7B1E4130F340E004BF975 /* SDL_rwopsbundlesupport.m */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.objc; path = SDL_rwopsbundlesupport.m; sourceTree = "<group>"; };
- 71C7B1E5130F340E004BF975 /* SDL_rwops.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_rwops.c; sourceTree = "<group>"; };
- 71C7B1F3130F340E004BF975 /* SDL.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL.c; sourceTree = "<group>"; };
- 71C7B1F4130F340E004BF975 /* SDL_error.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_error.c; sourceTree = "<group>"; };
- 71C7B1F5130F340E004BF975 /* SDL_error_c.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_error_c.h; sourceTree = "<group>"; };
- 71C7B1F8130F340E004BF975 /* SDL_syscond.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_syscond.c; sourceTree = "<group>"; };
- 71C7B1F9130F340E004BF975 /* SDL_sysmutex.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_sysmutex.c; sourceTree = "<group>"; };
- 71C7B1FA130F340E004BF975 /* SDL_sysmutex_c.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_sysmutex_c.h; sourceTree = "<group>"; };
- 71C7B1FB130F340E004BF975 /* SDL_syssem.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_syssem.c; sourceTree = "<group>"; };
- 71C7B1FC130F340E004BF975 /* SDL_systhread.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_systhread.c; sourceTree = "<group>"; };
- 71C7B1FD130F340E004BF975 /* SDL_systhread_c.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_systhread_c.h; sourceTree = "<group>"; };
- 71C7B1FE130F340E004BF975 /* SDL_systhread.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_systhread.h; sourceTree = "<group>"; };
- 71C7B1FF130F340E004BF975 /* SDL_thread.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = SDL_thread.c; sourceTree = "<group>"; };
- 71C7B200130F340E004BF975 /* SDL_thread_c.h */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.h; path = SDL_thread_c.h; sourceTree = "<group>"; };
- 71D88523130EF83900F150FF /* sdl.c */ = {isa = PBXFileReference; fileEncoding = 4294967295; lastKnownFileType = sourcecode.c.c; path = sdl.c; sourceTree = "<group>"; };
- 71D88634130EFFB500F150FF /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = /System/Library/Frameworks/CoreAudio.framework; sourceTree = "<absolute>"; };
- 71D8864E130F009D00F150FF /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = IOKit.framework; path = /System/Library/Frameworks/IOKit.framework; sourceTree = "<absolute>"; };
- 71D88653130F00B400F150FF /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioUnit.framework; path = /System/Library/Frameworks/AudioUnit.framework; sourceTree = "<absolute>"; };
- 71E4E793109DC529003BB7AC /* adsr.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = adsr.c; sourceTree = "<group>"; };
- 71E4E794109DC529003BB7AC /* adsr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = adsr.h; sourceTree = "<group>"; };
- 71E4E796109DC529003BB7AC /* cfg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cfg.h; sourceTree = "<group>"; };
- 71E4E797109DC529003BB7AC /* dma.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = dma.c; sourceTree = "<group>"; };
- 71E4E798109DC529003BB7AC /* dma.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dma.h; sourceTree = "<group>"; };
- 71E4E799109DC529003BB7AC /* dsoundoss.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dsoundoss.h; sourceTree = "<group>"; };
- 71E4E79A109DC529003BB7AC /* externals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = externals.h; sourceTree = "<group>"; };
- 71E4E79B109DC529003BB7AC /* freeze.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = freeze.c; sourceTree = "<group>"; };
- 71E4E79C109DC529003BB7AC /* gauss_i.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gauss_i.h; sourceTree = "<group>"; };
- 71E4E79E109DC529003BB7AC /* psemuxa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = psemuxa.h; sourceTree = "<group>"; };
- 71E4E79F109DC529003BB7AC /* registers.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = registers.c; sourceTree = "<group>"; };
- 71E4E7A0109DC529003BB7AC /* registers.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = registers.h; sourceTree = "<group>"; };
- 71E4E7A1109DC529003BB7AC /* regs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = regs.h; sourceTree = "<group>"; };
- 71E4E7A2109DC529003BB7AC /* reverb.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = reverb.c; sourceTree = "<group>"; };
- 71E4E7A3109DC529003BB7AC /* reverb.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = reverb.h; sourceTree = "<group>"; };
- 71E4E7A4109DC529003BB7AC /* spu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; lineEnding = 2; path = spu.c; sourceTree = "<group>"; xcLanguageSpecificationIdentifier = xcode.lang.c; };
- 71E4E7A5109DC529003BB7AC /* spu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spu.h; sourceTree = "<group>"; };
- 71E4E7A6109DC529003BB7AC /* stdafx.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stdafx.h; sourceTree = "<group>"; };
- 71E4E7A7109DC529003BB7AC /* xa.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xa.c; sourceTree = "<group>"; };
- 71E4E7A8109DC529003BB7AC /* xa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xa.h; sourceTree = "<group>"; };
- 8D576316048677EA00EA77CD /* PeopsSpuSDL.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PeopsSpuSDL.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
- 8D576317048677EA00EA77CD /* Info-SDL.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Info-SDL.plist"; sourceTree = "<group>"; };
- A1A2073D13816B1D005EE84C /* externals.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = externals.c; sourceTree = "<group>"; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 554588401783DF39008A7407 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 554588461783DF39008A7407 /* Cocoa.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 5599695413AFCD2900B0216B /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 5545885D1783E00E008A7407 /* libSPUSharedCode.dylib in Frameworks */,
- 5599695513AFCD2900B0216B /* CoreFoundation.framework in Frameworks */,
- 5599695713AFCD2900B0216B /* AppKit.framework in Frameworks */,
- 5599696F13AFCE1D00B0216B /* OpenAL.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 8D576313048677EA00EA77CD /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 554588581783DFE0008A7407 /* libSPUSharedCode.dylib in Frameworks */,
- 8D576314048677EA00EA77CD /* CoreFoundation.framework in Frameworks */,
- 2BFF7F3E0715D2E00061278A /* Carbon.framework in Frameworks */,
- 2B7B2BD1072DAE5D007F0C35 /* AppKit.framework in Frameworks */,
- 71D88636130EFFB500F150FF /* CoreAudio.framework in Frameworks */,
- 71D8864F130F009E00F150FF /* IOKit.framework in Frameworks */,
- 71D88654130F00B400F150FF /* AudioUnit.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 089C166AFE841209C02AAC07 /* PSX Plugin */ = {
- isa = PBXGroup;
- children = (
- 08FB77AFFE84173DC02AAC07 /* Source */,
- 2B7B2B8E072D9BD6007F0C35 /* macsrc */,
- 089C167CFE841241C02AAC07 /* Resources */,
- 71C7B1C0130F340E004BF975 /* SDL */,
- 089C1671FE841209C02AAC07 /* External Frameworks and Libraries */,
- 554588441783DF39008A7407 /* Frameworks */,
- 19C28FB6FE9D52B211CA2CBB /* Products */,
- 8D576317048677EA00EA77CD /* Info-SDL.plist */,
- 55C8AB0C146DCD0E005ACCCB /* Info-AL.plist */,
- );
- name = "PSX Plugin";
- sourceTree = "<group>";
- };
- 089C1671FE841209C02AAC07 /* External Frameworks and Libraries */ = {
- isa = PBXGroup;
- children = (
- 71D88653130F00B400F150FF /* AudioUnit.framework */,
- 71D8864E130F009D00F150FF /* IOKit.framework */,
- 71D88634130EFFB500F150FF /* CoreAudio.framework */,
- 2B7B2BD0072DAE5D007F0C35 /* AppKit.framework */,
- 2BFF7F3D0715D2E00061278A /* Carbon.framework */,
- 0AA1909FFE8422F4C02AAC07 /* CoreFoundation.framework */,
- 5599696E13AFCE1D00B0216B /* OpenAL.framework */,
- );
- name = "External Frameworks and Libraries";
- sourceTree = "<group>";
- };
- 089C167CFE841241C02AAC07 /* Resources */ = {
- isa = PBXGroup;
- children = (
- 55858D42178654D90068B8FC /* Configs */,
- 554588691783E5FE008A7407 /* Shared */,
- 5506635714AB91C100C7C565 /* OpenAL */,
- 5506636014AB91C100C7C565 /* SDL */,
- );
- name = Resources;
- path = Resorces;
- sourceTree = "<group>";
- };
- 08FB77AFFE84173DC02AAC07 /* Source */ = {
- isa = PBXGroup;
- children = (
- A1A2073D13816B1D005EE84C /* externals.c */,
- 71E4E793109DC529003BB7AC /* adsr.c */,
- 71E4E794109DC529003BB7AC /* adsr.h */,
- 71E4E796109DC529003BB7AC /* cfg.h */,
- 71E4E797109DC529003BB7AC /* dma.c */,
- 71E4E798109DC529003BB7AC /* dma.h */,
- 71E4E799109DC529003BB7AC /* dsoundoss.h */,
- 5517C065136217DE00706CCF /* externals.c */,
- 71E4E79A109DC529003BB7AC /* externals.h */,
- 71E4E79B109DC529003BB7AC /* freeze.c */,
- 71E4E79C109DC529003BB7AC /* gauss_i.h */,
- 71E4E79E109DC529003BB7AC /* psemuxa.h */,
- 71E4E79F109DC529003BB7AC /* registers.c */,
- 71E4E7A0109DC529003BB7AC /* registers.h */,
- 71E4E7A1109DC529003BB7AC /* regs.h */,
- 71E4E7A2109DC529003BB7AC /* reverb.c */,
- 71E4E7A3109DC529003BB7AC /* reverb.h */,
- 71D88523130EF83900F150FF /* sdl.c */,
- 71E4E7A4109DC529003BB7AC /* spu.c */,
- 71E4E7A5109DC529003BB7AC /* spu.h */,
- 71E4E7A6109DC529003BB7AC /* stdafx.h */,
- 5599692713AFCCC600B0216B /* openal.c */,
- 71E4E7A7109DC529003BB7AC /* xa.c */,
- 71E4E7A8109DC529003BB7AC /* xa.h */,
- );
- name = Source;
- path = ../../../plugins/dfsound;
- sourceTree = "<group>";
- };
- 19C28FB6FE9D52B211CA2CBB /* Products */ = {
- isa = PBXGroup;
- children = (
- 8D576316048677EA00EA77CD /* PeopsSpuSDL.psxplugin */,
- 5599695E13AFCD2900B0216B /* PeopsSpuAL.psxplugin */,
- 554588431783DF39008A7407 /* libSPUSharedCode.dylib */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 2B7B2B8E072D9BD6007F0C35 /* macsrc */ = {
- isa = PBXGroup;
- children = (
- 5586006A1785136A00CB3D85 /* ARCBridge.h */,
- 55F36E4B146CA0A900718DE6 /* maccfg.h */,
- 2B7B2B91072D9BE6007F0C35 /* PluginController.h */,
- 2B7B2B92072D9BE6007F0C35 /* PluginController.m */,
- 2B7B2BE6072DB1B6007F0C35 /* NamedSlider.h */,
- 2B7B2BE7072DB1B6007F0C35 /* NamedSlider.m */,
- 554588761783F2E3008A7407 /* SPUPluginController.h */,
- 554588771783F2E3008A7407 /* SPUPluginController.m */,
- );
- path = macsrc;
- sourceTree = "<group>";
- };
- 5506635714AB91C100C7C565 /* OpenAL */ = {
- isa = PBXGroup;
- children = (
- 5506635A14AB91C100C7C565 /* InfoPlist.strings */,
- );
- path = OpenAL;
- sourceTree = "<group>";
- };
- 5506636014AB91C100C7C565 /* SDL */ = {
- isa = PBXGroup;
- children = (
- 5506636314AB91C100C7C565 /* InfoPlist.strings */,
- );
- path = SDL;
- sourceTree = "<group>";
- };
- 554588441783DF39008A7407 /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 554588451783DF39008A7407 /* Cocoa.framework */,
- 554588471783DF39008A7407 /* Other Frameworks */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- 554588471783DF39008A7407 /* Other Frameworks */ = {
- isa = PBXGroup;
- children = (
- 554588481783DF39008A7407 /* AppKit.framework */,
- 554588491783DF39008A7407 /* CoreData.framework */,
- 5545884A1783DF39008A7407 /* Foundation.framework */,
- );
- name = "Other Frameworks";
- sourceTree = "<group>";
- };
- 554588691783E5FE008A7407 /* Shared */ = {
- isa = PBXGroup;
- children = (
- 5545886A1783E5FE008A7407 /* Credits.rtf */,
- 5545886C1783E5FE008A7407 /* Localizable.strings */,
- 5545886E1783E5FE008A7407 /* NetSfPeopsSpuPluginMain.xib */,
- );
- path = Shared;
- sourceTree = "<group>";
- };
- 55858D42178654D90068B8FC /* Configs */ = {
- isa = PBXGroup;
- children = (
- 55858D3E178654D90068B8FC /* Pcsxr-Debug.xcconfig */,
- 55858D3F178654D90068B8FC /* Pcsxr-Instrument.xcconfig */,
- 55858D40178654D90068B8FC /* Pcsxr-Release.xcconfig */,
- 55858D41178654D90068B8FC /* Pcsxr.xcconfig */,
- );
- name = Configs;
- path = ../../../Configs;
- sourceTree = "<group>";
- };
- 71C7B1C0130F340E004BF975 /* SDL */ = {
- isa = PBXGroup;
- children = (
- 71C7B1C1130F340E004BF975 /* include */,
- 71C7B1D1130F340E004BF975 /* src */,
- );
- name = SDL;
- path = ../Common/SDL;
- sourceTree = SOURCE_ROOT;
- };
- 71C7B1C1130F340E004BF975 /* include */ = {
- isa = PBXGroup;
- children = (
- 71C7B1C2130F340E004BF975 /* begin_code.h */,
- 71C7B1C3130F340E004BF975 /* close_code.h */,
- 71C7B1C4130F340E004BF975 /* SDL.h */,
- 71C7B1C5130F340E004BF975 /* SDL_audio.h */,
- 71C7B1C6130F340E004BF975 /* SDL_config.h */,
- 71C7B1C7130F340E004BF975 /* SDL_endian.h */,
- 71C7B1C8130F340E004BF975 /* SDL_error.h */,
- 71C7B1C9130F340E004BF975 /* SDL_haptic.h */,
- 71C7B1CA130F340E004BF975 /* SDL_joystick.h */,
- 71C7B1CB130F340E004BF975 /* SDL_main.h */,
- 71C7B1CC130F340E004BF975 /* SDL_mutex.h */,
- 71C7B1CD130F340E004BF975 /* SDL_platform.h */,
- 71C7B1CE130F340E004BF975 /* SDL_rwops.h */,
- 71C7B1CF130F340E004BF975 /* SDL_stdinc.h */,
- 71C7B1D0130F340E004BF975 /* SDL_thread.h */,
- );
- path = include;
- sourceTree = "<group>";
- };
- 71C7B1D1130F340E004BF975 /* src */ = {
- isa = PBXGroup;
- children = (
- 71C7B1D2130F340E004BF975 /* audio */,
- 71C7B1E1130F340E004BF975 /* file */,
- 71C7B1F6130F340E004BF975 /* thread */,
- 71C7B1F3130F340E004BF975 /* SDL.c */,
- 71C7B1F4130F340E004BF975 /* SDL_error.c */,
- 71C7B1F5130F340E004BF975 /* SDL_error_c.h */,
- );
- path = src;
- sourceTree = "<group>";
- };
- 71C7B1D2130F340E004BF975 /* audio */ = {
- isa = PBXGroup;
- children = (
- 71C7B1D3130F340E004BF975 /* macosx */,
- 71C7B1D6130F340E004BF975 /* SDL_audio.c */,
- 71C7B1D7130F340E004BF975 /* SDL_audio_c.h */,
- 71C7B1D8130F340E004BF975 /* SDL_audiocvt.c */,
- 71C7B1DB130F340E004BF975 /* SDL_audiomem.h */,
- 71C7B1DC130F340E004BF975 /* SDL_audiotypecvt.c */,
- 71C7B1DD130F340E004BF975 /* SDL_mixer.c */,
- 71C7B1DE130F340E004BF975 /* SDL_sysaudio.h */,
- 71C7B1DF130F340E004BF975 /* SDL_wave.c */,
- 71C7B1E0130F340E004BF975 /* SDL_wave.h */,
- );
- path = audio;
- sourceTree = "<group>";
- };
- 71C7B1D3130F340E004BF975 /* macosx */ = {
- isa = PBXGroup;
- children = (
- 71C7B1D4130F340E004BF975 /* SDL_coreaudio.c */,
- 71C7B1D5130F340E004BF975 /* SDL_coreaudio.h */,
- );
- path = macosx;
- sourceTree = "<group>";
- };
- 71C7B1E1130F340E004BF975 /* file */ = {
- isa = PBXGroup;
- children = (
- 71C7B1E2130F340E004BF975 /* cocoa */,
- 71C7B1E5130F340E004BF975 /* SDL_rwops.c */,
- );
- path = file;
- sourceTree = "<group>";
- };
- 71C7B1E2130F340E004BF975 /* cocoa */ = {
- isa = PBXGroup;
- children = (
- 71C7B1E3130F340E004BF975 /* SDL_rwopsbundlesupport.h */,
- 71C7B1E4130F340E004BF975 /* SDL_rwopsbundlesupport.m */,
- );
- path = cocoa;
- sourceTree = "<group>";
- };
- 71C7B1F6130F340E004BF975 /* thread */ = {
- isa = PBXGroup;
- children = (
- 71C7B1F7130F340E004BF975 /* pthread */,
- 71C7B1FE130F340E004BF975 /* SDL_systhread.h */,
- 71C7B1FF130F340E004BF975 /* SDL_thread.c */,
- 71C7B200130F340E004BF975 /* SDL_thread_c.h */,
- );
- path = thread;
- sourceTree = "<group>";
- };
- 71C7B1F7130F340E004BF975 /* pthread */ = {
- isa = PBXGroup;
- children = (
- 71C7B1F8130F340E004BF975 /* SDL_syscond.c */,
- 71C7B1F9130F340E004BF975 /* SDL_sysmutex.c */,
- 71C7B1FA130F340E004BF975 /* SDL_sysmutex_c.h */,
- 71C7B1FB130F340E004BF975 /* SDL_syssem.c */,
- 71C7B1FC130F340E004BF975 /* SDL_systhread.c */,
- 71C7B1FD130F340E004BF975 /* SDL_systhread_c.h */,
- );
- path = pthread;
- sourceTree = "<group>";
- };
-/* End PBXGroup section */
-
-/* Begin PBXHeadersBuildPhase section */
- 554588411783DF39008A7407 /* Headers */ = {
- isa = PBXHeadersBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 554588551783DF8B008A7407 /* NamedSlider.h in Headers */,
- 554588781783F2E3008A7407 /* SPUPluginController.h in Headers */,
- 5586006B1785136A00CB3D85 /* ARCBridge.h in Headers */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXHeadersBuildPhase section */
-
-/* Begin PBXNativeTarget section */
- 554588421783DF39008A7407 /* SPUSharedCode */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 554588531783DF39008A7407 /* Build configuration list for PBXNativeTarget "SPUSharedCode" */;
- buildPhases = (
- 5545883F1783DF39008A7407 /* Sources */,
- 554588401783DF39008A7407 /* Frameworks */,
- 554588411783DF39008A7407 /* Headers */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = SPUSharedCode;
- productName = PCSXRNamedSliders;
- productReference = 554588431783DF39008A7407 /* libSPUSharedCode.dylib */;
- productType = "com.apple.product-type.library.dynamic";
- };
- 5599693613AFCD2900B0216B /* PeopsSpuAL */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 5599695B13AFCD2900B0216B /* Build configuration list for PBXNativeTarget "PeopsSpuAL" */;
- buildPhases = (
- 5599693713AFCD2900B0216B /* Resources */,
- 5599693B13AFCD2900B0216B /* Sources */,
- 5599695413AFCD2900B0216B /* Frameworks */,
- 5545885E1783E015008A7407 /* Copy Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- 5545885C1783E00A008A7407 /* PBXTargetDependency */,
- );
- name = PeopsSpuAL;
- productInstallPath = "$(HOME)/Library/Bundles";
- productName = "PSX Plugin";
- productReference = 5599695E13AFCD2900B0216B /* PeopsSpuAL.psxplugin */;
- productType = "com.apple.product-type.bundle";
- };
- 8D57630D048677EA00EA77CD /* PeopsSpuSDL */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 71155B260FDFA2EB00EC0BC5 /* Build configuration list for PBXNativeTarget "PeopsSpuSDL" */;
- buildPhases = (
- 8D57630F048677EA00EA77CD /* Resources */,
- 8D576311048677EA00EA77CD /* Sources */,
- 8D576313048677EA00EA77CD /* Frameworks */,
- 554588591783DFE6008A7407 /* Copy Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- 554588571783DFD9008A7407 /* PBXTargetDependency */,
- );
- name = PeopsSpuSDL;
- productInstallPath = "$(HOME)/Library/Bundles";
- productName = "PSX Plugin";
- productReference = 8D576316048677EA00EA77CD /* PeopsSpuSDL.psxplugin */;
- productType = "com.apple.product-type.bundle";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 089C1669FE841209C02AAC07 /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 0460;
- };
- buildConfigurationList = 71155B2B0FDFA2EB00EC0BC5 /* Build configuration list for PBXProject "PeopsSPU" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = English;
- hasScannedForEncodings = 1;
- knownRegions = (
- English,
- Japanese,
- French,
- German,
- );
- mainGroup = 089C166AFE841209C02AAC07 /* PSX Plugin */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 8D57630D048677EA00EA77CD /* PeopsSpuSDL */,
- 5599693613AFCD2900B0216B /* PeopsSpuAL */,
- 554588421783DF39008A7407 /* SPUSharedCode */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
- 5599693713AFCD2900B0216B /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 5506636C14AB91C100C7C565 /* InfoPlist.strings in Resources */,
- 554588711783E5FE008A7407 /* Credits.rtf in Resources */,
- 554588731783E5FE008A7407 /* Localizable.strings in Resources */,
- 554588751783E5FE008A7407 /* NetSfPeopsSpuPluginMain.xib in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 8D57630F048677EA00EA77CD /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 5506637314AB91C100C7C565 /* InfoPlist.strings in Resources */,
- 554588701783E5FE008A7407 /* Credits.rtf in Resources */,
- 554588721783E5FE008A7407 /* Localizable.strings in Resources */,
- 554588741783E5FE008A7407 /* NetSfPeopsSpuPluginMain.xib in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- 5545883F1783DF39008A7407 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 554588541783DF87008A7407 /* NamedSlider.m in Sources */,
- 554588791783F2E3008A7407 /* SPUPluginController.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 5599693B13AFCD2900B0216B /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 5599693C13AFCD2900B0216B /* PluginController.m in Sources */,
- 5599693E13AFCD2900B0216B /* dma.c in Sources */,
- 5599693F13AFCD2900B0216B /* freeze.c in Sources */,
- 5599694013AFCD2900B0216B /* registers.c in Sources */,
- 5599694113AFCD2900B0216B /* spu.c in Sources */,
- 5599694213AFCD2900B0216B /* xa.c in Sources */,
- 5599695313AFCD2900B0216B /* externals.c in Sources */,
- 5599696C13AFCD8B00B0216B /* openal.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 8D576311048677EA00EA77CD /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2B7B2B94072D9BE6007F0C35 /* PluginController.m in Sources */,
- 71E4E7AB109DC529003BB7AC /* dma.c in Sources */,
- 71E4E7AC109DC529003BB7AC /* freeze.c in Sources */,
- 71E4E7AE109DC529003BB7AC /* registers.c in Sources */,
- 71E4E7B0109DC529003BB7AC /* spu.c in Sources */,
- 71E4E7B1109DC529003BB7AC /* xa.c in Sources */,
- 71C7B206130F340E004BF975 /* SDL_mixer.c in Sources */,
- 71C7B207130F340E004BF975 /* SDL_wave.c in Sources */,
- 71C7B208130F340E004BF975 /* SDL_rwopsbundlesupport.m in Sources */,
- 71C7B209130F340E004BF975 /* SDL_rwops.c in Sources */,
- 71C7B210130F340E004BF975 /* SDL_syscond.c in Sources */,
- 71C7B211130F340E004BF975 /* SDL_sysmutex.c in Sources */,
- 71C7B212130F340E004BF975 /* SDL_syssem.c in Sources */,
- 71C7B213130F340E004BF975 /* SDL_systhread.c in Sources */,
- 71C7B214130F340E004BF975 /* SDL_thread.c in Sources */,
- A1A2073E13816B1D005EE84C /* externals.c in Sources */,
- 5599696613AFCD7F00B0216B /* SDL_error.c in Sources */,
- 5599696713AFCD7F00B0216B /* SDL_coreaudio.c in Sources */,
- 5599696813AFCD8000B0216B /* SDL_audiotypecvt.c in Sources */,
- 5599696913AFCD8100B0216B /* SDL_audiocvt.c in Sources */,
- 5599696A13AFCD8100B0216B /* SDL_audio.c in Sources */,
- 5599696B13AFCD8300B0216B /* SDL.c in Sources */,
- 5599696D13AFCD9300B0216B /* sdl.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin PBXTargetDependency section */
- 554588571783DFD9008A7407 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 554588421783DF39008A7407 /* SPUSharedCode */;
- targetProxy = 554588561783DFD9008A7407 /* PBXContainerItemProxy */;
- };
- 5545885C1783E00A008A7407 /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 554588421783DF39008A7407 /* SPUSharedCode */;
- targetProxy = 5545885B1783E00A008A7407 /* PBXContainerItemProxy */;
- };
-/* End PBXTargetDependency section */
-
-/* Begin PBXVariantGroup section */
- 5506635A14AB91C100C7C565 /* InfoPlist.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 5506635B14AB91C100C7C565 /* English */,
- );
- name = InfoPlist.strings;
- sourceTree = "<group>";
- };
- 5506636314AB91C100C7C565 /* InfoPlist.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 5506636414AB91C100C7C565 /* English */,
- );
- name = InfoPlist.strings;
- sourceTree = "<group>";
- };
- 5545886A1783E5FE008A7407 /* Credits.rtf */ = {
- isa = PBXVariantGroup;
- children = (
- 5545886B1783E5FE008A7407 /* English */,
- );
- name = Credits.rtf;
- sourceTree = "<group>";
- };
- 5545886C1783E5FE008A7407 /* Localizable.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 5545886D1783E5FE008A7407 /* English */,
- );
- name = Localizable.strings;
- sourceTree = "<group>";
- };
- 5545886E1783E5FE008A7407 /* NetSfPeopsSpuPluginMain.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 5545886F1783E5FE008A7407 /* English */,
- );
- name = NetSfPeopsSpuPluginMain.xib;
- sourceTree = "<group>";
- };
-/* End PBXVariantGroup section */
-
-/* Begin XCBuildConfiguration section */
- 554588511783DF39008A7407 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- "CLANG_ENABLE_OBJC_ARC[arch=x86_64]" = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1;
- EXECUTABLE_PREFIX = lib;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_ENABLE_OBJC_EXCEPTIONS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- INSTALL_PATH = "@rpath";
- PRODUCT_NAME = "$(TARGET_NAME)";
- };
- name = Debug;
- };
- 554588521783DF39008A7407 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
- CLANG_CXX_LIBRARY = "libc++";
- "CLANG_ENABLE_OBJC_ARC[arch=x86_64]" = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- DYLIB_COMPATIBILITY_VERSION = 1;
- DYLIB_CURRENT_VERSION = 1;
- EXECUTABLE_PREFIX = lib;
- GCC_C_LANGUAGE_STANDARD = gnu99;
- GCC_ENABLE_OBJC_EXCEPTIONS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- INSTALL_PATH = "@rpath";
- PRODUCT_NAME = "$(TARGET_NAME)";
- };
- name = Release;
- };
- 5599695C13AFCD2900B0216B /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- GCC_PREPROCESSOR_DEFINITIONS = (
- "PCSXRPLUG=ALSound",
- USEOPENAL,
- "$(inherited)",
- );
- HEADER_SEARCH_PATHS = (
- src/,
- ../../../plugins/dfsound,
- );
- INFOPLIST_FILE = "Info-AL.plist";
- INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
- LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks";
- PRODUCT_NAME = "$(TARGET_NAME)";
- WRAPPER_EXTENSION = psxplugin;
- };
- name = Debug;
- };
- 5599695D13AFCD2900B0216B /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- GCC_PREPROCESSOR_DEFINITIONS = (
- "PCSXRPLUG=ALSound",
- USEOPENAL,
- "$(inherited)",
- );
- HEADER_SEARCH_PATHS = (
- src/,
- ../../../plugins/dfsound,
- );
- INFOPLIST_FILE = "Info-AL.plist";
- INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
- LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks";
- PRODUCT_NAME = "$(TARGET_NAME)";
- WRAPPER_EXTENSION = psxplugin;
- };
- name = Release;
- };
- 71155B270FDFA2EB00EC0BC5 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- GCC_PREPROCESSOR_DEFINITIONS = (
- "PCSXRPLUG=SDLSound",
- USESDL,
- SDL_JOYSTICK_DISABLED,
- "$(inherited)",
- );
- HEADER_SEARCH_PATHS = (
- src/,
- ../../../plugins/dfsound,
- ../Common/SDL/include,
- );
- INFOPLIST_FILE = "Info-SDL.plist";
- INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
- LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks";
- PRODUCT_NAME = "$(TARGET_NAME)";
- WRAPPER_EXTENSION = psxplugin;
- };
- name = Debug;
- };
- 71155B290FDFA2EB00EC0BC5 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- GCC_PREPROCESSOR_DEFINITIONS = (
- "PCSXRPLUG=SDLSound",
- USESDL,
- SDL_JOYSTICK_DISABLED,
- "$(inherited)",
- );
- HEADER_SEARCH_PATHS = (
- src/,
- ../../../plugins/dfsound,
- ../Common/SDL/include,
- );
- INFOPLIST_FILE = "Info-SDL.plist";
- INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
- LD_RUNPATH_SEARCH_PATHS = "@loader_path/../Frameworks";
- PRODUCT_NAME = "$(TARGET_NAME)";
- WRAPPER_EXTENSION = psxplugin;
- };
- name = Release;
- };
- 71155B2C0FDFA2EB00EC0BC5 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 55858D3E178654D90068B8FC /* Pcsxr-Debug.xcconfig */;
- buildSettings = {
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- };
- name = Debug;
- };
- 71155B2E0FDFA2EB00EC0BC5 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 55858D40178654D90068B8FC /* Pcsxr-Release.xcconfig */;
- buildSettings = {
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- };
- name = Release;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- 554588531783DF39008A7407 /* Build configuration list for PBXNativeTarget "SPUSharedCode" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 554588511783DF39008A7407 /* Debug */,
- 554588521783DF39008A7407 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 5599695B13AFCD2900B0216B /* Build configuration list for PBXNativeTarget "PeopsSpuAL" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 5599695C13AFCD2900B0216B /* Debug */,
- 5599695D13AFCD2900B0216B /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 71155B260FDFA2EB00EC0BC5 /* Build configuration list for PBXNativeTarget "PeopsSpuSDL" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 71155B270FDFA2EB00EC0BC5 /* Debug */,
- 71155B290FDFA2EB00EC0BC5 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 71155B2B0FDFA2EB00EC0BC5 /* Build configuration list for PBXProject "PeopsSPU" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 71155B2C0FDFA2EB00EC0BC5 /* Debug */,
- 71155B2E0FDFA2EB00EC0BC5 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
-/* End XCConfigurationList section */
- };
- rootObject = 089C1669FE841209C02AAC07 /* Project object */;
-}
diff --git a/macosx/plugins/DFSound/Resorces/SDL/English.lproj/InfoPlist.strings b/macosx/plugins/DFSound/Resorces/SDL/English.lproj/InfoPlist.strings
index 524a4e56..31673188 100755
--- a/macosx/plugins/DFSound/Resorces/SDL/English.lproj/InfoPlist.strings
+++ b/macosx/plugins/DFSound/Resorces/SDL/English.lproj/InfoPlist.strings
Binary files differ
diff --git a/macosx/plugins/DFXVideo/PeopsSoftGPU.xcodeproj/project.pbxproj b/macosx/plugins/DFXVideo/PeopsSoftGPU.xcodeproj/project.pbxproj
deleted file mode 100644
index c6b5611a..00000000
--- a/macosx/plugins/DFXVideo/PeopsSoftGPU.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,441 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
-
-/* Begin PBXBuildFile section */
- 28586CC914651E9B0082B8EC /* NetSfPeopsSoftGPUConfig.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28586CC714651E9B0082B8EC /* NetSfPeopsSoftGPUConfig.xib */; };
- 28586CCB14651EAB0082B8EC /* NetSfPeopsSoftGPUInterface.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28586CCA14651EAB0082B8EC /* NetSfPeopsSoftGPUInterface.xib */; };
- 2B038C07069183300082466B /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2B038C05069183300082466B /* InfoPlist.strings */; };
- 2B957EB10635DFE400543905 /* PluginWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B957EAF0635DFE400543905 /* PluginWindow.m */; };
- 2B959DC106342C22000F2A2D /* drawgl.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B3E5D64062B2CC1001D796E /* drawgl.m */; };
- 2B959DCD06342C24000F2A2D /* PluginGLView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BAF4FCA0632967A00DB9A16 /* PluginGLView.m */; };
- 2B959DD506342C25000F2A2D /* PluginWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B3E5DF1062B36FB001D796E /* PluginWindowController.m */; };
- 2B959E4406342D32000F2A2D /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B959E4306342D32000F2A2D /* OpenGL.framework */; };
- 2BB260A90777462E00F6854C /* PluginConfigController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BB260A70777462E00F6854C /* PluginConfigController.m */; };
- 2BD2E769077AF53E00657C69 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 2BD2E767077AF53E00657C69 /* Credits.rtf */; };
- 2BD7C777076E1FAB000F05ED /* GLUT.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B51949E06B3D2D200744730 /* GLUT.framework */; };
- 552E4CAE1474730B00FB231F /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 552E4CB01474730B00FB231F /* Localizable.strings */; };
- 5555E0C41606839300C0A310 /* gpuPeteOGL2.slf in Resources */ = {isa = PBXBuildFile; fileRef = 5555E0C21606839300C0A310 /* gpuPeteOGL2.slf */; };
- 5555E0C51606839300C0A310 /* gpuPeteOGL2.slv in Resources */ = {isa = PBXBuildFile; fileRef = 5555E0C31606839300C0A310 /* gpuPeteOGL2.slv */; };
- 5586006717850E7600CB3D85 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5586006617850E7600CB3D85 /* Cocoa.framework */; };
- 71E9EC06109F24E700E98D1D /* fps.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E9EBF4109F24E600E98D1D /* fps.c */; };
- 71E9EC08109F24E700E98D1D /* gpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E9EBF6109F24E600E98D1D /* gpu.c */; };
- 71E9EC0B109F24E700E98D1D /* key.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E9EBF9109F24E600E98D1D /* key.c */; };
- 71E9EC0D109F24E700E98D1D /* menu.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E9EBFB109F24E600E98D1D /* menu.c */; };
- 71E9EC0F109F24E700E98D1D /* prim.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E9EBFD109F24E700E98D1D /* prim.c */; };
- 71E9EC11109F24E700E98D1D /* soft.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E9EBFF109F24E700E98D1D /* soft.c */; };
- 71E9EC14109F24E700E98D1D /* zn.c in Sources */ = {isa = PBXBuildFile; fileRef = 71E9EC02109F24E700E98D1D /* zn.c */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXFileReference section */
- 28586CC814651E9B0082B8EC /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = English.lproj/NetSfPeopsSoftGPUConfig.xib; sourceTree = "<group>"; };
- 28586CCA14651EAB0082B8EC /* NetSfPeopsSoftGPUInterface.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NetSfPeopsSoftGPUInterface.xib; sourceTree = "<group>"; };
- 2B038C06069183300082466B /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2B038D2206918AA80082466B /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 2B3E5D64062B2CC1001D796E /* drawgl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = drawgl.m; path = macsrc/drawgl.m; sourceTree = SOURCE_ROOT; };
- 2B3E5DF0062B36FB001D796E /* PluginWindowController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PluginWindowController.h; path = macsrc/PluginWindowController.h; sourceTree = SOURCE_ROOT; };
- 2B3E5DF1062B36FB001D796E /* PluginWindowController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = PluginWindowController.m; path = macsrc/PluginWindowController.m; sourceTree = SOURCE_ROOT; };
- 2B51949E06B3D2D200744730 /* GLUT.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLUT.framework; path = /System/Library/Frameworks/GLUT.framework; sourceTree = "<absolute>"; };
- 2B957EAE0635DFE400543905 /* PluginWindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PluginWindow.h; path = macsrc/PluginWindow.h; sourceTree = SOURCE_ROOT; };
- 2B957EAF0635DFE400543905 /* PluginWindow.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = PluginWindow.m; path = macsrc/PluginWindow.m; sourceTree = SOURCE_ROOT; };
- 2B959E4306342D32000F2A2D /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = "<absolute>"; };
- 2BAF4FC90632967A00DB9A16 /* PluginGLView.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PluginGLView.h; path = macsrc/PluginGLView.h; sourceTree = SOURCE_ROOT; };
- 2BAF4FCA0632967A00DB9A16 /* PluginGLView.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = PluginGLView.m; path = macsrc/PluginGLView.m; sourceTree = SOURCE_ROOT; };
- 2BAF50930632BB1A00DB9A16 /* gpuPeopsSoftGL.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = gpuPeopsSoftGL.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
- 2BB260A60777462E00F6854C /* PluginConfigController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PluginConfigController.h; path = macsrc/PluginConfigController.h; sourceTree = SOURCE_ROOT; };
- 2BB260A70777462E00F6854C /* PluginConfigController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = PluginConfigController.m; path = macsrc/PluginConfigController.m; sourceTree = SOURCE_ROOT; };
- 2BD2E768077AF53E00657C69 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
- 552E4CAF1474730B00FB231F /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
- 5555E0C21606839300C0A310 /* gpuPeteOGL2.slf */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = gpuPeteOGL2.slf; sourceTree = "<group>"; };
- 5555E0C31606839300C0A310 /* gpuPeteOGL2.slv */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = gpuPeteOGL2.slv; sourceTree = "<group>"; };
- 5555E0CA160695BF00C0A310 /* SGPUPreferences.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = SGPUPreferences.h; path = macsrc/SGPUPreferences.h; sourceTree = "<group>"; };
- 55858D4F178656240068B8FC /* Pcsxr-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Pcsxr-Debug.xcconfig"; path = "../../Configs/Pcsxr-Debug.xcconfig"; sourceTree = "<group>"; };
- 55858D50178656240068B8FC /* Pcsxr-Instrument.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Pcsxr-Instrument.xcconfig"; path = "../../Configs/Pcsxr-Instrument.xcconfig"; sourceTree = "<group>"; };
- 55858D51178656240068B8FC /* Pcsxr-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = "Pcsxr-Release.xcconfig"; path = "../../Configs/Pcsxr-Release.xcconfig"; sourceTree = "<group>"; };
- 55858D52178656240068B8FC /* Pcsxr.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Pcsxr.xcconfig; path = ../../Configs/Pcsxr.xcconfig; sourceTree = "<group>"; };
- 5586006017850E5800CB3D85 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
- 5586006217850E6C00CB3D85 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
- 5586006317850E6C00CB3D85 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
- 5586006617850E7600CB3D85 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
- 5586006C1785137400CB3D85 /* ARCBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
- 55D42F0E168D9A7F0027EBF0 /* ExtendedKeys.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ExtendedKeys.h; path = macsrc/ExtendedKeys.h; sourceTree = "<group>"; };
- 71E9EBF1109F24E600E98D1D /* cfg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = cfg.h; path = ../../../plugins/dfxvideo/cfg.h; sourceTree = SOURCE_ROOT; };
- 71E9EBF2109F24E600E98D1D /* draw.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = draw.h; path = ../../../plugins/dfxvideo/draw.h; sourceTree = SOURCE_ROOT; };
- 71E9EBF3109F24E600E98D1D /* externals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = externals.h; path = ../../../plugins/dfxvideo/externals.h; sourceTree = SOURCE_ROOT; };
- 71E9EBF4109F24E600E98D1D /* fps.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = fps.c; path = ../../../plugins/dfxvideo/fps.c; sourceTree = SOURCE_ROOT; };
- 71E9EBF5109F24E600E98D1D /* fps.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = fps.h; path = ../../../plugins/dfxvideo/fps.h; sourceTree = SOURCE_ROOT; };
- 71E9EBF6109F24E600E98D1D /* gpu.c */ = {isa = PBXFileReference; fileEncoding = 4; indentWidth = 1; lastKnownFileType = sourcecode.c.c; name = gpu.c; path = ../../../plugins/dfxvideo/gpu.c; sourceTree = SOURCE_ROOT; usesTabs = 0; };
- 71E9EBF7109F24E600E98D1D /* gpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = gpu.h; path = ../../../plugins/dfxvideo/gpu.h; sourceTree = SOURCE_ROOT; };
- 71E9EBF8109F24E600E98D1D /* interp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = interp.h; path = ../../../plugins/dfxvideo/interp.h; sourceTree = SOURCE_ROOT; };
- 71E9EBF9109F24E600E98D1D /* key.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = key.c; path = ../../../plugins/dfxvideo/key.c; sourceTree = SOURCE_ROOT; };
- 71E9EBFA109F24E600E98D1D /* key.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = key.h; path = ../../../plugins/dfxvideo/key.h; sourceTree = SOURCE_ROOT; };
- 71E9EBFB109F24E600E98D1D /* menu.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = menu.c; path = ../../../plugins/dfxvideo/menu.c; sourceTree = SOURCE_ROOT; };
- 71E9EBFC109F24E700E98D1D /* menu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = menu.h; path = ../../../plugins/dfxvideo/menu.h; sourceTree = SOURCE_ROOT; };
- 71E9EBFD109F24E700E98D1D /* prim.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = prim.c; path = ../../../plugins/dfxvideo/prim.c; sourceTree = SOURCE_ROOT; };
- 71E9EBFE109F24E700E98D1D /* prim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = prim.h; path = ../../../plugins/dfxvideo/prim.h; sourceTree = SOURCE_ROOT; };
- 71E9EBFF109F24E700E98D1D /* soft.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = soft.c; path = ../../../plugins/dfxvideo/soft.c; sourceTree = SOURCE_ROOT; };
- 71E9EC00109F24E700E98D1D /* soft.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = soft.h; path = ../../../plugins/dfxvideo/soft.h; sourceTree = SOURCE_ROOT; };
- 71E9EC01109F24E700E98D1D /* swap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = swap.h; path = ../../../plugins/dfxvideo/swap.h; sourceTree = SOURCE_ROOT; };
- 71E9EC02109F24E700E98D1D /* zn.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = zn.c; path = ../../../plugins/dfxvideo/zn.c; sourceTree = SOURCE_ROOT; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 2BAF50910632BB1A00DB9A16 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 5586006717850E7600CB3D85 /* Cocoa.framework in Frameworks */,
- 2B959E4406342D32000F2A2D /* OpenGL.framework in Frameworks */,
- 2BD7C777076E1FAB000F05ED /* GLUT.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 2B3E59FF062AAC1A001D796E = {
- isa = PBXGroup;
- children = (
- 71E9EBF0109F24B600E98D1D /* src */,
- 2BD2E2F40779F50B00657C69 /* macsrc */,
- 2BD2E818077AFB9F00657C69 /* Resources */,
- 2B038D2206918AA80082466B /* Info.plist */,
- 2B3E5A0B062AAC34001D796E /* Frameworks */,
- 2B3E5A46062AACF3001D796E /* Products */,
- );
- sourceTree = "<group>";
- };
- 2B3E5A0B062AAC34001D796E /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 5586006617850E7600CB3D85 /* Cocoa.framework */,
- 2B959E4306342D32000F2A2D /* OpenGL.framework */,
- 2B51949E06B3D2D200744730 /* GLUT.framework */,
- 5586006817850E8800CB3D85 /* Additional Frameworks */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- 2B3E5A46062AACF3001D796E /* Products */ = {
- isa = PBXGroup;
- children = (
- 2BAF50930632BB1A00DB9A16 /* gpuPeopsSoftGL.psxplugin */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 2BD2E2F40779F50B00657C69 /* macsrc */ = {
- isa = PBXGroup;
- children = (
- 5586006C1785137400CB3D85 /* ARCBridge.h */,
- 55D42F0E168D9A7F0027EBF0 /* ExtendedKeys.h */,
- 2BB260A60777462E00F6854C /* PluginConfigController.h */,
- 2BB260A70777462E00F6854C /* PluginConfigController.m */,
- 2B3E5DF0062B36FB001D796E /* PluginWindowController.h */,
- 2B3E5DF1062B36FB001D796E /* PluginWindowController.m */,
- 2B957EAE0635DFE400543905 /* PluginWindow.h */,
- 2B957EAF0635DFE400543905 /* PluginWindow.m */,
- 2BAF4FC90632967A00DB9A16 /* PluginGLView.h */,
- 2BAF4FCA0632967A00DB9A16 /* PluginGLView.m */,
- 2B3E5D64062B2CC1001D796E /* drawgl.m */,
- 5555E0CA160695BF00C0A310 /* SGPUPreferences.h */,
- );
- name = macsrc;
- sourceTree = "<group>";
- };
- 2BD2E818077AFB9F00657C69 /* Resources */ = {
- isa = PBXGroup;
- children = (
- 55858D53178656240068B8FC /* Configs */,
- 5555E0C21606839300C0A310 /* gpuPeteOGL2.slf */,
- 5555E0C31606839300C0A310 /* gpuPeteOGL2.slv */,
- 28586CC714651E9B0082B8EC /* NetSfPeopsSoftGPUConfig.xib */,
- 28586CCA14651EAB0082B8EC /* NetSfPeopsSoftGPUInterface.xib */,
- 2BD2E767077AF53E00657C69 /* Credits.rtf */,
- 552E4CB01474730B00FB231F /* Localizable.strings */,
- 2B038C05069183300082466B /* InfoPlist.strings */,
- );
- name = Resources;
- sourceTree = "<group>";
- };
- 55858D53178656240068B8FC /* Configs */ = {
- isa = PBXGroup;
- children = (
- 55858D4F178656240068B8FC /* Pcsxr-Debug.xcconfig */,
- 55858D50178656240068B8FC /* Pcsxr-Instrument.xcconfig */,
- 55858D51178656240068B8FC /* Pcsxr-Release.xcconfig */,
- 55858D52178656240068B8FC /* Pcsxr.xcconfig */,
- );
- name = Configs;
- path = "/Users/cwbetts/makestuff/PCSX-R/macosx/plugins/DFSound/Resorces/../../Bladesio1";
- sourceTree = "<absolute>";
- };
- 5586006817850E8800CB3D85 /* Additional Frameworks */ = {
- isa = PBXGroup;
- children = (
- 5586006217850E6C00CB3D85 /* CoreFoundation.framework */,
- 5586006317850E6C00CB3D85 /* Foundation.framework */,
- 5586006017850E5800CB3D85 /* AppKit.framework */,
- );
- name = "Additional Frameworks";
- sourceTree = "<group>";
- };
- 71E9EBF0109F24B600E98D1D /* src */ = {
- isa = PBXGroup;
- children = (
- 71E9EBF1109F24E600E98D1D /* cfg.h */,
- 71E9EBF2109F24E600E98D1D /* draw.h */,
- 71E9EBF3109F24E600E98D1D /* externals.h */,
- 71E9EBF4109F24E600E98D1D /* fps.c */,
- 71E9EBF5109F24E600E98D1D /* fps.h */,
- 71E9EBF6109F24E600E98D1D /* gpu.c */,
- 71E9EBF7109F24E600E98D1D /* gpu.h */,
- 71E9EBF8109F24E600E98D1D /* interp.h */,
- 71E9EBF9109F24E600E98D1D /* key.c */,
- 71E9EBFA109F24E600E98D1D /* key.h */,
- 71E9EBFB109F24E600E98D1D /* menu.c */,
- 71E9EBFC109F24E700E98D1D /* menu.h */,
- 71E9EBFD109F24E700E98D1D /* prim.c */,
- 71E9EBFE109F24E700E98D1D /* prim.h */,
- 71E9EBFF109F24E700E98D1D /* soft.c */,
- 71E9EC00109F24E700E98D1D /* soft.h */,
- 71E9EC01109F24E700E98D1D /* swap.h */,
- 71E9EC02109F24E700E98D1D /* zn.c */,
- );
- name = src;
- sourceTree = "<group>";
- };
-/* End PBXGroup section */
-
-/* Begin PBXNativeTarget section */
- 2BAF50920632BB1A00DB9A16 /* gpuPeopsSoftGL */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 7170842C0FDFD328004F3EB4 /* Build configuration list for PBXNativeTarget "gpuPeopsSoftGL" */;
- buildPhases = (
- 2BAF508F0632BB1A00DB9A16 /* Resources */,
- 2BAF50900632BB1A00DB9A16 /* Sources */,
- 2BAF50910632BB1A00DB9A16 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = gpuPeopsSoftGL;
- productName = gpuPeopsSoftGL;
- productReference = 2BAF50930632BB1A00DB9A16 /* gpuPeopsSoftGL.psxplugin */;
- productType = "com.apple.product-type.bundle";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 2B3E5A03062AAC1A001D796E /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 0460;
- };
- buildConfigurationList = 717084310FDFD328004F3EB4 /* Build configuration list for PBXProject "PeopsSoftGPU" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = English;
- hasScannedForEncodings = 1;
- knownRegions = (
- English,
- Japanese,
- French,
- German,
- );
- mainGroup = 2B3E59FF062AAC1A001D796E;
- productRefGroup = 2B3E5A46062AACF3001D796E /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 2BAF50920632BB1A00DB9A16 /* gpuPeopsSoftGL */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
- 2BAF508F0632BB1A00DB9A16 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2B038C07069183300082466B /* InfoPlist.strings in Resources */,
- 2BD2E769077AF53E00657C69 /* Credits.rtf in Resources */,
- 28586CC914651E9B0082B8EC /* NetSfPeopsSoftGPUConfig.xib in Resources */,
- 28586CCB14651EAB0082B8EC /* NetSfPeopsSoftGPUInterface.xib in Resources */,
- 552E4CAE1474730B00FB231F /* Localizable.strings in Resources */,
- 5555E0C41606839300C0A310 /* gpuPeteOGL2.slf in Resources */,
- 5555E0C51606839300C0A310 /* gpuPeteOGL2.slv in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- 2BAF50900632BB1A00DB9A16 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2B959DC106342C22000F2A2D /* drawgl.m in Sources */,
- 2B959DCD06342C24000F2A2D /* PluginGLView.m in Sources */,
- 2B959DD506342C25000F2A2D /* PluginWindowController.m in Sources */,
- 2B957EB10635DFE400543905 /* PluginWindow.m in Sources */,
- 2BB260A90777462E00F6854C /* PluginConfigController.m in Sources */,
- 71E9EC06109F24E700E98D1D /* fps.c in Sources */,
- 71E9EC08109F24E700E98D1D /* gpu.c in Sources */,
- 71E9EC0B109F24E700E98D1D /* key.c in Sources */,
- 71E9EC0D109F24E700E98D1D /* menu.c in Sources */,
- 71E9EC0F109F24E700E98D1D /* prim.c in Sources */,
- 71E9EC11109F24E700E98D1D /* soft.c in Sources */,
- 71E9EC14109F24E700E98D1D /* zn.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin PBXVariantGroup section */
- 28586CC714651E9B0082B8EC /* NetSfPeopsSoftGPUConfig.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 28586CC814651E9B0082B8EC /* English */,
- );
- name = NetSfPeopsSoftGPUConfig.xib;
- sourceTree = "<group>";
- };
- 2B038C05069183300082466B /* InfoPlist.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 2B038C06069183300082466B /* English */,
- );
- name = InfoPlist.strings;
- sourceTree = "<group>";
- };
- 2BD2E767077AF53E00657C69 /* Credits.rtf */ = {
- isa = PBXVariantGroup;
- children = (
- 2BD2E768077AF53E00657C69 /* English */,
- );
- name = Credits.rtf;
- sourceTree = "<group>";
- };
- 552E4CB01474730B00FB231F /* Localizable.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 552E4CAF1474730B00FB231F /* English */,
- );
- name = Localizable.strings;
- sourceTree = "<group>";
- };
-/* End PBXVariantGroup section */
-
-/* Begin XCBuildConfiguration section */
- 7170842D0FDFD328004F3EB4 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- GCC_PREPROCESSOR_DEFINITIONS = (
- "PCSXRPLUG=SoftGL",
- _MACGL,
- _DARWIN,
- "$(inherited)",
- );
- GCC_WARN_UNKNOWN_PRAGMAS = NO;
- INFOPLIST_FILE = Info.plist;
- INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
- OPTIMIZATION_CFLAGS = "-finline-functions -finline-limit=1600 -fno-exceptions -funroll-loops -falign-loops=16 -ffast-math";
- OTHER_CFLAGS = (
- "$(inherited)",
- "$(OPTIMIZATION_CFLAGS)",
- );
- PRODUCT_NAME = "$(TARGET_NAME)";
- SECTORDER_FLAGS = "";
- WRAPPER_EXTENSION = psxplugin;
- };
- name = Debug;
- };
- 7170842E0FDFD328004F3EB4 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- GCC_PREPROCESSOR_DEFINITIONS = (
- "PCSXRPLUG=SoftGL",
- _MACGL,
- _DARWIN,
- "$(inherited)",
- );
- GCC_WARN_UNKNOWN_PRAGMAS = NO;
- INFOPLIST_FILE = Info.plist;
- INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
- OPTIMIZATION_CFLAGS = "-finline-functions -finline-limit=1600 -fomit-frame-pointer -fno-exceptions -funroll-loops -falign-loops=16 -ffast-math";
- OTHER_CFLAGS = (
- "$(inherited)",
- "$(OPTIMIZATION_CFLAGS)",
- );
- PRODUCT_NAME = "$(TARGET_NAME)";
- SECTORDER_FLAGS = "";
- WRAPPER_EXTENSION = psxplugin;
- };
- name = Release;
- };
- 717084320FDFD328004F3EB4 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 55858D4F178656240068B8FC /* Pcsxr-Debug.xcconfig */;
- buildSettings = {
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- HEADER_SEARCH_PATHS = (
- ../../../plugins/dfxvideo,
- ../../../libpcsxcore,
- );
- };
- name = Debug;
- };
- 717084330FDFD328004F3EB4 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 55858D51178656240068B8FC /* Pcsxr-Release.xcconfig */;
- buildSettings = {
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- HEADER_SEARCH_PATHS = (
- ../../../plugins/dfxvideo,
- ../../../libpcsxcore,
- );
- };
- name = Release;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- 7170842C0FDFD328004F3EB4 /* Build configuration list for PBXNativeTarget "gpuPeopsSoftGL" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 7170842D0FDFD328004F3EB4 /* Debug */,
- 7170842E0FDFD328004F3EB4 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 717084310FDFD328004F3EB4 /* Build configuration list for PBXProject "PeopsSoftGPU" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 717084320FDFD328004F3EB4 /* Debug */,
- 717084330FDFD328004F3EB4 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
-/* End XCConfigurationList section */
- };
- rootObject = 2B3E5A03062AAC1A001D796E /* Project object */;
-}
diff --git a/macosx/plugins/PeopsXgl/PeopsXGL.xcodeproj/project.pbxproj b/macosx/plugins/PeopsXgl/PeopsXGL.xcodeproj/project.pbxproj
deleted file mode 100644
index e2017db6..00000000
--- a/macosx/plugins/PeopsXgl/PeopsXGL.xcodeproj/project.pbxproj
+++ /dev/null
@@ -1,444 +0,0 @@
-// !$*UTF8*$!
-{
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 46;
- objects = {
-
-/* Begin PBXBuildFile section */
- 28586CBE14651D960082B8EC /* NetSfPeopsOpenGLConfig.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28586CBC14651D960082B8EC /* NetSfPeopsOpenGLConfig.xib */; };
- 28586CC014651E560082B8EC /* NetSfPeopsOpenGLGPUInterface.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28586CBF14651E560082B8EC /* NetSfPeopsOpenGLGPUInterface.xib */; };
- 2B038C07069183300082466B /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2B038C05069183300082466B /* InfoPlist.strings */; };
- 2B959E4406342D32000F2A2D /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B959E4306342D32000F2A2D /* OpenGL.framework */; };
- 2BD2E769077AF53E00657C69 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 2BD2E767077AF53E00657C69 /* Credits.rtf */; };
- 2BD7C777076E1FAB000F05ED /* GLUT.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B51949E06B3D2D200744730 /* GLUT.framework */; };
- 3F31AF741302D4B600CBB551 /* drawgl.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F31AF6A1302D4B600CBB551 /* drawgl.m */; };
- 3F31AF761302D4B600CBB551 /* PluginGLView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F31AF6F1302D4B600CBB551 /* PluginGLView.m */; };
- 3F31AF771302D4B600CBB551 /* PluginWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F31AF711302D4B600CBB551 /* PluginWindow.m */; };
- 3F31AF781302D4B600CBB551 /* PluginWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F31AF731302D4B600CBB551 /* PluginWindowController.m */; };
- 3F7F38041307999800556C34 /* NetSfPeopsOpenGLPluginConfigController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F38031307999800556C34 /* NetSfPeopsOpenGLPluginConfigController.m */; };
- 3F7F384813079BFD00556C34 /* texture.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F383613079BFD00556C34 /* texture.c */; };
- 3F7F384913079BFD00556C34 /* menu.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F383913079BFD00556C34 /* menu.c */; };
- 3F7F384A13079BFD00556C34 /* prim.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F383B13079BFD00556C34 /* prim.c */; };
- 3F7F384B13079BFD00556C34 /* key.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F383C13079BFD00556C34 /* key.c */; };
- 3F7F384C13079BFD00556C34 /* fps.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F383D13079BFD00556C34 /* fps.c */; };
- 3F7F384E13079BFD00556C34 /* gpu.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F384113079BFD00556C34 /* gpu.c */; };
- 3F7F384F13079BFD00556C34 /* soft.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F384313079BFD00556C34 /* soft.c */; };
- 3F7F385013079BFD00556C34 /* draw.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F7F384713079BFD00556C34 /* draw.c */; };
- 552E4CC91474742F00FB231F /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 552E4CCB1474742F00FB231F /* Localizable.strings */; };
- A191B90713F6741300D0971F /* gte_accuracy.c in Sources */ = {isa = PBXBuildFile; fileRef = A191B90513F6741300D0971F /* gte_accuracy.c */; };
-/* End PBXBuildFile section */
-
-/* Begin PBXFileReference section */
- 28586CBD14651D960082B8EC /* English */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = English; path = plugins/PeopsXgl/English.lproj/NetSfPeopsOpenGLConfig.xib; sourceTree = "<group>"; };
- 28586CBF14651E560082B8EC /* NetSfPeopsOpenGLGPUInterface.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NetSfPeopsOpenGLGPUInterface.xib; sourceTree = "<group>"; };
- 2B038C06069183300082466B /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
- 2B038D2206918AA80082466B /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 2B51949E06B3D2D200744730 /* GLUT.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLUT.framework; path = /System/Library/Frameworks/GLUT.framework; sourceTree = "<absolute>"; };
- 2B959E4306342D32000F2A2D /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = /System/Library/Frameworks/OpenGL.framework; sourceTree = "<absolute>"; };
- 2BAF50930632BB1A00DB9A16 /* gpuPeopsXGL.psxplugin */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = gpuPeopsXGL.psxplugin; sourceTree = BUILT_PRODUCTS_DIR; };
- 2BD2E768077AF53E00657C69 /* English */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = English; path = English.lproj/Credits.rtf; sourceTree = "<group>"; };
- 3F31AF6A1302D4B600CBB551 /* drawgl.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = drawgl.m; path = macsrc/drawgl.m; sourceTree = SOURCE_ROOT; };
- 3F31AF6E1302D4B600CBB551 /* PluginGLView.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PluginGLView.h; path = macsrc/PluginGLView.h; sourceTree = SOURCE_ROOT; };
- 3F31AF6F1302D4B600CBB551 /* PluginGLView.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = PluginGLView.m; path = macsrc/PluginGLView.m; sourceTree = SOURCE_ROOT; };
- 3F31AF701302D4B600CBB551 /* PluginWindow.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PluginWindow.h; path = macsrc/PluginWindow.h; sourceTree = SOURCE_ROOT; };
- 3F31AF711302D4B600CBB551 /* PluginWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PluginWindow.m; path = macsrc/PluginWindow.m; sourceTree = SOURCE_ROOT; };
- 3F31AF721302D4B600CBB551 /* PluginWindowController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = PluginWindowController.h; path = macsrc/PluginWindowController.h; sourceTree = SOURCE_ROOT; };
- 3F31AF731302D4B600CBB551 /* PluginWindowController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = PluginWindowController.m; path = macsrc/PluginWindowController.m; sourceTree = SOURCE_ROOT; };
- 3F7F38021307999800556C34 /* NetSfPeopsOpenGLPluginConfigController.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = NetSfPeopsOpenGLPluginConfigController.h; path = macsrc/NetSfPeopsOpenGLPluginConfigController.h; sourceTree = SOURCE_ROOT; };
- 3F7F38031307999800556C34 /* NetSfPeopsOpenGLPluginConfigController.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = NetSfPeopsOpenGLPluginConfigController.m; path = macsrc/NetSfPeopsOpenGLPluginConfigController.m; sourceTree = SOURCE_ROOT; };
- 3F7F383313079BFD00556C34 /* stdafx.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 2; name = stdafx.h; path = ../../../plugins/peopsxgl/stdafx.h; sourceTree = SOURCE_ROOT; };
- 3F7F383513079BFD00556C34 /* texture.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = texture.h; path = ../../../plugins/peopsxgl/texture.h; sourceTree = SOURCE_ROOT; };
- 3F7F383613079BFD00556C34 /* texture.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; lineEnding = 2; name = texture.c; path = ../../../plugins/peopsxgl/texture.c; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.c; };
- 3F7F383713079BFD00556C34 /* key.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = key.h; path = ../../../plugins/peopsxgl/key.h; sourceTree = SOURCE_ROOT; };
- 3F7F383813079BFD00556C34 /* menu.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = menu.h; path = ../../../plugins/peopsxgl/menu.h; sourceTree = SOURCE_ROOT; };
- 3F7F383913079BFD00556C34 /* menu.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; lineEnding = 2; name = menu.c; path = ../../../plugins/peopsxgl/menu.c; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.c; };
- 3F7F383A13079BFD00556C34 /* gpu.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = gpu.h; path = ../../../plugins/peopsxgl/gpu.h; sourceTree = SOURCE_ROOT; };
- 3F7F383B13079BFD00556C34 /* prim.c */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.c; name = prim.c; path = ../../../plugins/peopsxgl/prim.c; sourceTree = SOURCE_ROOT; };
- 3F7F383C13079BFD00556C34 /* key.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; lineEnding = 2; name = key.c; path = ../../../plugins/peopsxgl/key.c; sourceTree = SOURCE_ROOT; };
- 3F7F383D13079BFD00556C34 /* fps.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; lineEnding = 2; name = fps.c; path = ../../../plugins/peopsxgl/fps.c; sourceTree = SOURCE_ROOT; };
- 3F7F383F13079BFD00556C34 /* gl_ext.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = gl_ext.h; path = ../../../plugins/peopsxgl/gl_ext.h; sourceTree = SOURCE_ROOT; };
- 3F7F384013079BFD00556C34 /* fps.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = fps.h; path = ../../../plugins/peopsxgl/fps.h; sourceTree = SOURCE_ROOT; };
- 3F7F384113079BFD00556C34 /* gpu.c */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.c; lineEnding = 2; name = gpu.c; path = ../../../plugins/peopsxgl/gpu.c; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.c; };
- 3F7F384213079BFD00556C34 /* soft.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = soft.h; path = ../../../plugins/peopsxgl/soft.h; sourceTree = SOURCE_ROOT; };
- 3F7F384313079BFD00556C34 /* soft.c */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.c; name = soft.c; path = ../../../plugins/peopsxgl/soft.c; sourceTree = SOURCE_ROOT; };
- 3F7F384413079BFD00556C34 /* prim.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = prim.h; path = ../../../plugins/peopsxgl/prim.h; sourceTree = SOURCE_ROOT; };
- 3F7F384513079BFD00556C34 /* externals.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; lineEnding = 2; name = externals.h; path = ../../../plugins/peopsxgl/externals.h; sourceTree = SOURCE_ROOT; };
- 3F7F384613079BFD00556C34 /* draw.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = draw.h; path = ../../../plugins/peopsxgl/draw.h; sourceTree = SOURCE_ROOT; };
- 3F7F384713079BFD00556C34 /* draw.c */ = {isa = PBXFileReference; fileEncoding = 5; lastKnownFileType = sourcecode.c.c; lineEnding = 2; name = draw.c; path = ../../../plugins/peopsxgl/draw.c; sourceTree = SOURCE_ROOT; };
- 552E4CCA1474742F00FB231F /* English */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/Localizable.strings; sourceTree = "<group>"; };
- 55858D60178657F70068B8FC /* Pcsxr-Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Debug.xcconfig"; sourceTree = "<group>"; };
- 55858D61178657F70068B8FC /* Pcsxr-Instrument.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Instrument.xcconfig"; sourceTree = "<group>"; };
- 55858D62178657F70068B8FC /* Pcsxr-Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = "Pcsxr-Release.xcconfig"; sourceTree = "<group>"; };
- 55858D63178657F70068B8FC /* Pcsxr.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; path = Pcsxr.xcconfig; sourceTree = "<group>"; };
- 558600711785139200CB3D85 /* ARCBridge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ARCBridge.h; sourceTree = "<group>"; };
- 55D42F10168D9AAE0027EBF0 /* ExtendedKeys.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ExtendedKeys.h; path = macsrc/ExtendedKeys.h; sourceTree = "<group>"; };
- 55F36E4A146C9F9900718DE6 /* drawgl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = drawgl.h; path = macsrc/drawgl.h; sourceTree = "<group>"; };
- A191B90513F6741300D0971F /* gte_accuracy.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = gte_accuracy.c; path = ../../../plugins/peopsxgl/gte_accuracy.c; sourceTree = SOURCE_ROOT; };
- A191B90613F6741300D0971F /* gte_accuracy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = gte_accuracy.h; path = ../../../plugins/peopsxgl/gte_accuracy.h; sourceTree = SOURCE_ROOT; };
-/* End PBXFileReference section */
-
-/* Begin PBXFrameworksBuildPhase section */
- 2BAF50910632BB1A00DB9A16 /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2B959E4406342D32000F2A2D /* OpenGL.framework in Frameworks */,
- 2BD7C777076E1FAB000F05ED /* GLUT.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXFrameworksBuildPhase section */
-
-/* Begin PBXGroup section */
- 2B3E59FF062AAC1A001D796E = {
- isa = PBXGroup;
- children = (
- 71E9EBF0109F24B600E98D1D /* src */,
- 2BD2E2F40779F50B00657C69 /* macsrc */,
- 2BD2E818077AFB9F00657C69 /* Resources */,
- 2B038D2206918AA80082466B /* Info.plist */,
- 2B3E5A0B062AAC34001D796E /* Frameworks */,
- 2B3E5A46062AACF3001D796E /* Products */,
- );
- sourceTree = "<group>";
- };
- 2B3E5A0B062AAC34001D796E /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 2B959E4306342D32000F2A2D /* OpenGL.framework */,
- 2B51949E06B3D2D200744730 /* GLUT.framework */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- 2B3E5A46062AACF3001D796E /* Products */ = {
- isa = PBXGroup;
- children = (
- 2BAF50930632BB1A00DB9A16 /* gpuPeopsXGL.psxplugin */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 2BD2E2F40779F50B00657C69 /* macsrc */ = {
- isa = PBXGroup;
- children = (
- 558600711785139200CB3D85 /* ARCBridge.h */,
- 55D42F10168D9AAE0027EBF0 /* ExtendedKeys.h */,
- 3F7F38021307999800556C34 /* NetSfPeopsOpenGLPluginConfigController.h */,
- 3F7F38031307999800556C34 /* NetSfPeopsOpenGLPluginConfigController.m */,
- 55F36E4A146C9F9900718DE6 /* drawgl.h */,
- 3F31AF6A1302D4B600CBB551 /* drawgl.m */,
- 3F31AF6E1302D4B600CBB551 /* PluginGLView.h */,
- 3F31AF6F1302D4B600CBB551 /* PluginGLView.m */,
- 3F31AF701302D4B600CBB551 /* PluginWindow.h */,
- 3F31AF711302D4B600CBB551 /* PluginWindow.m */,
- 3F31AF721302D4B600CBB551 /* PluginWindowController.h */,
- 3F31AF731302D4B600CBB551 /* PluginWindowController.m */,
- );
- name = macsrc;
- sourceTree = "<group>";
- };
- 2BD2E818077AFB9F00657C69 /* Resources */ = {
- isa = PBXGroup;
- children = (
- 55858D64178657F70068B8FC /* Configs */,
- 28586CBC14651D960082B8EC /* NetSfPeopsOpenGLConfig.xib */,
- 28586CBF14651E560082B8EC /* NetSfPeopsOpenGLGPUInterface.xib */,
- 2BD2E767077AF53E00657C69 /* Credits.rtf */,
- 2B038C05069183300082466B /* InfoPlist.strings */,
- 552E4CCB1474742F00FB231F /* Localizable.strings */,
- );
- name = Resources;
- sourceTree = "<group>";
- };
- 55858D64178657F70068B8FC /* Configs */ = {
- isa = PBXGroup;
- children = (
- 55858D60178657F70068B8FC /* Pcsxr-Debug.xcconfig */,
- 55858D61178657F70068B8FC /* Pcsxr-Instrument.xcconfig */,
- 55858D62178657F70068B8FC /* Pcsxr-Release.xcconfig */,
- 55858D63178657F70068B8FC /* Pcsxr.xcconfig */,
- );
- name = Configs;
- path = ../../Configs;
- sourceTree = "<group>";
- };
- 71E9EBF0109F24B600E98D1D /* src */ = {
- isa = PBXGroup;
- children = (
- A191B90513F6741300D0971F /* gte_accuracy.c */,
- A191B90613F6741300D0971F /* gte_accuracy.h */,
- 3F7F383313079BFD00556C34 /* stdafx.h */,
- 3F7F383513079BFD00556C34 /* texture.h */,
- 3F7F383613079BFD00556C34 /* texture.c */,
- 3F7F383713079BFD00556C34 /* key.h */,
- 3F7F383813079BFD00556C34 /* menu.h */,
- 3F7F383913079BFD00556C34 /* menu.c */,
- 3F7F383A13079BFD00556C34 /* gpu.h */,
- 3F7F383B13079BFD00556C34 /* prim.c */,
- 3F7F383C13079BFD00556C34 /* key.c */,
- 3F7F383D13079BFD00556C34 /* fps.c */,
- 3F7F383F13079BFD00556C34 /* gl_ext.h */,
- 3F7F384013079BFD00556C34 /* fps.h */,
- 3F7F384113079BFD00556C34 /* gpu.c */,
- 3F7F384213079BFD00556C34 /* soft.h */,
- 3F7F384313079BFD00556C34 /* soft.c */,
- 3F7F384413079BFD00556C34 /* prim.h */,
- 3F7F384513079BFD00556C34 /* externals.h */,
- 3F7F384613079BFD00556C34 /* draw.h */,
- 3F7F384713079BFD00556C34 /* draw.c */,
- );
- name = src;
- sourceTree = "<group>";
- };
-/* End PBXGroup section */
-
-/* Begin PBXNativeTarget section */
- 2BAF50920632BB1A00DB9A16 /* gpuPeopsXGL */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 7170842C0FDFD328004F3EB4 /* Build configuration list for PBXNativeTarget "gpuPeopsXGL" */;
- buildPhases = (
- 2BAF508F0632BB1A00DB9A16 /* Resources */,
- 2BAF50900632BB1A00DB9A16 /* Sources */,
- 2BAF50910632BB1A00DB9A16 /* Frameworks */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = gpuPeopsXGL;
- productName = gpuPeopsSoftGL;
- productReference = 2BAF50930632BB1A00DB9A16 /* gpuPeopsXGL.psxplugin */;
- productType = "com.apple.product-type.bundle";
- };
-/* End PBXNativeTarget section */
-
-/* Begin PBXProject section */
- 2B3E5A03062AAC1A001D796E /* Project object */ = {
- isa = PBXProject;
- attributes = {
- LastUpgradeCheck = 0460;
- };
- buildConfigurationList = 717084310FDFD328004F3EB4 /* Build configuration list for PBXProject "PeopsXGL" */;
- compatibilityVersion = "Xcode 3.2";
- developmentRegion = English;
- hasScannedForEncodings = 1;
- knownRegions = (
- English,
- Japanese,
- French,
- German,
- );
- mainGroup = 2B3E59FF062AAC1A001D796E;
- productRefGroup = 2B3E5A46062AACF3001D796E /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 2BAF50920632BB1A00DB9A16 /* gpuPeopsXGL */,
- );
- };
-/* End PBXProject section */
-
-/* Begin PBXResourcesBuildPhase section */
- 2BAF508F0632BB1A00DB9A16 /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2B038C07069183300082466B /* InfoPlist.strings in Resources */,
- 2BD2E769077AF53E00657C69 /* Credits.rtf in Resources */,
- 28586CBE14651D960082B8EC /* NetSfPeopsOpenGLConfig.xib in Resources */,
- 28586CC014651E560082B8EC /* NetSfPeopsOpenGLGPUInterface.xib in Resources */,
- 552E4CC91474742F00FB231F /* Localizable.strings in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXResourcesBuildPhase section */
-
-/* Begin PBXSourcesBuildPhase section */
- 2BAF50900632BB1A00DB9A16 /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 3F31AF741302D4B600CBB551 /* drawgl.m in Sources */,
- 3F31AF761302D4B600CBB551 /* PluginGLView.m in Sources */,
- 3F31AF771302D4B600CBB551 /* PluginWindow.m in Sources */,
- 3F31AF781302D4B600CBB551 /* PluginWindowController.m in Sources */,
- 3F7F38041307999800556C34 /* NetSfPeopsOpenGLPluginConfigController.m in Sources */,
- 3F7F384813079BFD00556C34 /* texture.c in Sources */,
- 3F7F384913079BFD00556C34 /* menu.c in Sources */,
- 3F7F384A13079BFD00556C34 /* prim.c in Sources */,
- 3F7F384B13079BFD00556C34 /* key.c in Sources */,
- 3F7F384C13079BFD00556C34 /* fps.c in Sources */,
- 3F7F384E13079BFD00556C34 /* gpu.c in Sources */,
- 3F7F384F13079BFD00556C34 /* soft.c in Sources */,
- 3F7F385013079BFD00556C34 /* draw.c in Sources */,
- A191B90713F6741300D0971F /* gte_accuracy.c in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
-/* End PBXSourcesBuildPhase section */
-
-/* Begin PBXVariantGroup section */
- 28586CBC14651D960082B8EC /* NetSfPeopsOpenGLConfig.xib */ = {
- isa = PBXVariantGroup;
- children = (
- 28586CBD14651D960082B8EC /* English */,
- );
- name = NetSfPeopsOpenGLConfig.xib;
- path = ../..;
- sourceTree = "<group>";
- };
- 2B038C05069183300082466B /* InfoPlist.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 2B038C06069183300082466B /* English */,
- );
- name = InfoPlist.strings;
- sourceTree = "<group>";
- };
- 2BD2E767077AF53E00657C69 /* Credits.rtf */ = {
- isa = PBXVariantGroup;
- children = (
- 2BD2E768077AF53E00657C69 /* English */,
- );
- name = Credits.rtf;
- sourceTree = "<group>";
- };
- 552E4CCB1474742F00FB231F /* Localizable.strings */ = {
- isa = PBXVariantGroup;
- children = (
- 552E4CCA1474742F00FB231F /* English */,
- );
- name = Localizable.strings;
- sourceTree = "<group>";
- };
-/* End PBXVariantGroup section */
-
-/* Begin XCBuildConfiguration section */
- 7170842D0FDFD328004F3EB4 /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_PRECOMPILE_PREFIX_HEADER = NO;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "PCSXRPLUG=PeopsXGL",
- _MACGL,
- _DARWIN,
- "$(inherited)",
- );
- GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
- GCC_WARN_UNKNOWN_PRAGMAS = NO;
- INFOPLIST_FILE = Info.plist;
- INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
- OPTIMIZATION_CFLAGS = "-finline-functions -finline-limit=1600 -fno-exceptions -funroll-loops -falign-loops=16 -ffast-math";
- OTHER_CFLAGS = "-finline-functions";
- OTHER_LDFLAGS = (
- "-framework",
- Foundation,
- "-framework",
- AppKit,
- );
- PRODUCT_NAME = "$(TARGET_NAME)";
- SECTORDER_FLAGS = "";
- WRAPPER_EXTENSION = psxplugin;
- };
- name = Debug;
- };
- 7170842E0FDFD328004F3EB4 /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_PRECOMPILE_PREFIX_HEADER = NO;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "PCSXRPLUG=PeopsXGL",
- _MACGL,
- _DARWIN,
- "$(inherited)",
- );
- GCC_WARN_FOUR_CHARACTER_CONSTANTS = NO;
- GCC_WARN_UNKNOWN_PRAGMAS = NO;
- INFOPLIST_FILE = Info.plist;
- INSTALL_PATH = "$(USER_LIBRARY_DIR)/Playstation Emulator Plugins";
- OPTIMIZATION_CFLAGS = "-finline-functions -finline-limit=1600 -fomit-frame-pointer -fno-exceptions -funroll-loops -falign-loops=16 -ffast-math";
- OTHER_LDFLAGS = (
- "-framework",
- Foundation,
- "-framework",
- AppKit,
- );
- PRODUCT_NAME = "$(TARGET_NAME)";
- SECTORDER_FLAGS = "";
- WRAPPER_EXTENSION = psxplugin;
- };
- name = Release;
- };
- 717084320FDFD328004F3EB4 /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 55858D60178657F70068B8FC /* Pcsxr-Debug.xcconfig */;
- buildSettings = {
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- GCC_WARN_ABOUT_POINTER_SIGNEDNESS = NO;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- HEADER_SEARCH_PATHS = (
- ../../../plugins/peopsxgl,
- ../../../libpcsxcore,
- );
- WARNING_CFLAGS = "-Wall";
- };
- name = Debug;
- };
- 717084330FDFD328004F3EB4 /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 55858D62178657F70068B8FC /* Pcsxr-Release.xcconfig */;
- buildSettings = {
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- GCC_ENABLE_SSE3_EXTENSIONS = YES;
- GCC_OPTIMIZATION_LEVEL = 3;
- GCC_WARN_ABOUT_POINTER_SIGNEDNESS = NO;
- GCC_WARN_ABOUT_RETURN_TYPE = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- HEADER_SEARCH_PATHS = (
- ../../../plugins/peopsxgl,
- ../../../libpcsxcore,
- );
- OTHER_CFLAGS = "-fomit-frame-pointer";
- WARNING_CFLAGS = "-Wall";
- };
- name = Release;
- };
-/* End XCBuildConfiguration section */
-
-/* Begin XCConfigurationList section */
- 7170842C0FDFD328004F3EB4 /* Build configuration list for PBXNativeTarget "gpuPeopsXGL" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 7170842D0FDFD328004F3EB4 /* Debug */,
- 7170842E0FDFD328004F3EB4 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 717084310FDFD328004F3EB4 /* Build configuration list for PBXProject "PeopsXGL" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 717084320FDFD328004F3EB4 /* Debug */,
- 717084330FDFD328004F3EB4 /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
-/* End XCConfigurationList section */
- };
- rootObject = 2B3E5A03062AAC1A001D796E /* Project object */;
-}