Delete almost all XCode related files.

Phil's OS X build process actually uses the autotools build; this is
automated in scripts/build-osx.sh. Only a couple of files from the osx/
directory appear to be referenced, we can just keep these around.

The X Code project is difficult to keep up to date as we have few OS X
developers; best to get rid of it.
master
John Bartholomew 2018-08-25 20:03:51 +01:00
parent 80ec00408a
commit f7ae0f86ad
20 changed files with 1 additions and 6446 deletions

View File

@ -1,5 +1,5 @@
## Process this file with automake to produce Makefile.in
SUBDIRS = contrib $(PLATFORM_SUBDIRS) src data osx
SUBDIRS = contrib $(PLATFORM_SUBDIRS) src data
PATH := @MXE_PATH@:$(PATH)

View File

@ -451,6 +451,5 @@ AC_CONFIG_FILES([
contrib/vcacheopt/Makefile
contrib/glew/Makefile
contrib/profiler/Makefile
osx/Makefile
win32/Makefile])
AC_OUTPUT

View File

@ -1,16 +0,0 @@
EXTRA_DIST = \
SDLMain.h \
SDLMain.m \
SDLMain.nib/designable.nib \
SDLMain.nib/keyedobjects.nib \
main.cpp \
pioneer-logo.icns \
pioneer-logo.png \
pioneer.xcodeproj/project.pbxproj \
pioneer.xcodeproj/project.xcworkspace/contents.xcworkspacedata \
pioneer/en.lproj/Credits.rtf \
pioneer/en.lproj/InfoPlist.strings \
pioneer/pioneer-Info.plist \
pioneer/pioneer-Prefix.pch
include $(top_srcdir)/Makefile.common

View File

@ -1,15 +0,0 @@
// Copyright © 2008-2018 Pioneer Developers. See AUTHORS.txt for details
// Licensed under the terms of the GPL v3. See licenses/GPL-3.txt
//
// Objective-C cocoa wrapper for pioneer
#import <Cocoa/Cocoa.h>
@interface SDLMain : NSObject {
}
- (IBAction)openURL:(id)sender;
- (IBAction)openAboutPanel:(id)sender;
@end

View File

@ -1,104 +0,0 @@
// Copyright © 2008-2018 Pioneer Developers. See AUTHORS.txt for details
// Licensed under the terms of the GPL v3. See licenses/GPL-3.txt
//
// Objective-C cocoa wrapper for pioneer
#include "buildopts.h"
#import <SDL2/SDL.h>
#import "SDLMain.h"
#import <unistd.h>
static int gArgc;
static char **gArgv;
@implementation SDLMain
// Called when the internal event loop has just started running
- (void) applicationDidFinishLaunching: (__unused NSNotification *) note
{
int status;
// Hand off to main application code
status = SDL_main (gArgc, gArgv);
// We're done, thank you for playing
exit(status);
}
// menuItem Actions
- (IBAction)openURL:(id)sender
{
if ([[sender title] isEqualToString:@"Homepage"])
{
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://pioneerspacesim.net/"]];
}
else if ([[sender title] isEqualToString:@"Issue Tracker"])
{
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"https://github.com/pioneerspacesim/pioneer/issues"]];
}
else if ([[sender title] isEqualToString:@"pioneer Forums"])
{
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://pioneerspacesim.net/forum"]];
}
else if ([[sender title] isEqualToString:@"Chat with the dev team"])
{
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://pioneerspacesim.net/irc"]];
}
}
- (IBAction)openAboutPanel:(__unused id)sender
{
NSDictionary *options;
NSImage *img;
img = [NSImage imageNamed: @"pioneer-logo.icns"];
options = [NSDictionary dictionaryWithObjectsAndKeys:
img, @"ApplicationIcon",
@"Copyright (C) 2011 - See AUTHORS.txt", @"Copyright",
nil];
[[NSApplication sharedApplication] orderFrontStandardAboutPanelWithOptions:options];
}
@end // SDLMain
#ifdef main
# undef main
#endif
//
// Main application entry point
//
int main (int argc, char * argv[])
{
// Detect if the option key is pressed on app launch
NSUInteger flags = ([NSEvent modifierFlags] & NSDeviceIndependentModifierFlagsMask);
BOOL isOptionPressed = (0 != (flags & NSAlternateKeyMask));
// Copy the arguments into a global variable
// This is passed if we are launched by double-clicking
if ( argc >= 2 && strncmp (argv[1], "-psn", 4) == 0 ) {
// Launched from FINDER (app icon)
gArgv = (char **) SDL_malloc(sizeof (char *) * 2);
gArgv[0] = argv[0];
gArgv[1] = "-mv"; // Modelviewer param when Option key is held down
if (isOptionPressed) {
gArgc = 2;
} else {
gArgc = 1;
}
} else {
// Launched manually (via cmd-line)
int i;
gArgc = argc;
gArgv = (char **) SDL_malloc(sizeof (char *) * (argc+1));
for (i = 0; i <= argc; i++)
gArgv[i] = argv[i];
}
NSApplicationMain (argc, (const char **)argv);
return 0;
}

View File

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<installer-gui-script minSpecVersion="1">
<title>Pioneer</title>
<domains enable_localSystem="true"/>
<options rootVolumeOnly="true" customize="never" hostArchitectures="i386" require-scripts="false"/>
<choices-outline>
<line choice="default">
<line choice="net.pioneerspacesim.pioneer.pkg"/>
</line>
</choices-outline>
<choice id="default"/>
<choice id="net.pioneerspacesim.pioneer.pkg" visible="false">
<pkg-ref id="net.pioneerspacesim.pioneer.pkg"/>
</choice>
<pkg-ref id="net.pioneerspacesim.pioneer.pkg" version="0" onConclusion="none">pioneer.pkg</pkg-ref>
</installer-gui-script>

View File

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<array/>
</plist>

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<Group
location = "container:"
name = "New Group">
<FileRef
location = "self:">
</FileRef>
</Group>
</Workspace>

View File

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded</key>
<false/>
</dict>
</plist>

View File

@ -1,80 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0820"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "4AE9706A1436A64000424F91"
BuildableName = "GenGitVersion"
BlueprintName = "GenGitVersion"
ReferencedContainer = "container:pioneer.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
</Testables>
<AdditionalOptions>
</AdditionalOptions>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "4AE9706A1436A64000424F91"
BuildableName = "GenGitVersion"
BlueprintName = "GenGitVersion"
ReferencedContainer = "container:pioneer.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "4AE9706A1436A64000424F91"
BuildableName = "GenGitVersion"
BlueprintName = "GenGitVersion"
ReferencedContainer = "container:pioneer.xcodeproj">
</BuildableReference>
</MacroExpansion>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>

View File

@ -1,149 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0820"
version = "2.0">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "8D07F2BC0486CC7A007CD1D0"
BuildableName = "Ogg.framework"
BlueprintName = "Ogg"
ReferencedContainer = "container:../../pioneer-thirdparty/source/libogg/macosx/Ogg.xcodeproj">
</BuildableReference>
</BuildActionEntry>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "BECDF5FE0761BA81005FE872"
BuildableName = "SDL2.framework"
BlueprintName = "Framework"
ReferencedContainer = "container:../../pioneer-thirdparty/source/sdl2/Xcode/SDL/SDL.xcodeproj">
</BuildableReference>
</BuildActionEntry>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "BE1FA71807AF4C44004B6283"
BuildableName = "SDL2_image.framework"
BlueprintName = "Framework"
ReferencedContainer = "container:../../pioneer-thirdparty/source/sdl2_image/Xcode/SDL_image.xcodeproj">
</BuildableReference>
</BuildActionEntry>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "730F23A1091827B100AB638C"
BuildableName = "Vorbis.framework"
BlueprintName = "Vorbis"
ReferencedContainer = "container:../../pioneer-thirdparty/source/libvorbis-1.3.3/macosx/Vorbis.xcodeproj">
</BuildableReference>
</BuildActionEntry>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "4A20B0DD135319770020F43E"
BuildableName = "pioneer.app"
BlueprintName = "pioneer"
ReferencedContainer = "container:pioneer.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES">
<Testables>
</Testables>
<MacroExpansion>
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "4A20B0DD135319770020F43E"
BuildableName = "pioneer.app"
BlueprintName = "pioneer"
ReferencedContainer = "container:pioneer.xcodeproj">
</BuildableReference>
</MacroExpansion>
<AdditionalOptions>
</AdditionalOptions>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "NO"
debugXPCServices = "NO"
debugServiceExtension = "internal"
allowLocationSimulation = "NO"
viewDebuggingEnabled = "No">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "4A20B0DD135319770020F43E"
BuildableName = "pioneer.app"
BlueprintName = "pioneer"
ReferencedContainer = "container:pioneer.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
<AdditionalOptions>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "4A20B0DD135319770020F43E"
BuildableName = "pioneer.app"
BlueprintName = "pioneer"
ReferencedContainer = "container:pioneer.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>

View File

@ -1,19 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Workspace
version = "1.0">
<FileRef
location = "group:../../pioneer-thirdparty/source/libogg/macosx/Ogg.xcodeproj">
</FileRef>
<FileRef
location = "group:../../pioneer-thirdparty/source/libvorbis-1.3.3/macosx/Vorbis.xcodeproj">
</FileRef>
<FileRef
location = "group:../../pioneer-thirdparty/source/sdl2/Xcode/SDL/SDL.xcodeproj">
</FileRef>
<FileRef
location = "group:../../pioneer-thirdparty/source/sdl2_image/Xcode/SDL_image.xcodeproj">
</FileRef>
<FileRef
location = "container:pioneer.xcodeproj">
</FileRef>
</Workspace>

View File

@ -1,53 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDESourceControlProjectFavoriteDictionaryKey</key>
<false/>
<key>IDESourceControlProjectIdentifier</key>
<string>489F6EAB-4599-4922-95BB-10B7BDFCCF8C</string>
<key>IDESourceControlProjectName</key>
<string>pioneer</string>
<key>IDESourceControlProjectOriginsDictionary</key>
<dict>
<key>CEB9386F2744B9C86681D599A1A9B6D6ADBFB2A8</key>
<string>github.com:SilkyPantsDan/pioneer.git</string>
<key>DA6F661DD649F78B3D5A22E52AD1F5102743FEDB</key>
<string>github.com:SilkyPantsDan/pioneer-thirdparty.git</string>
</dict>
<key>IDESourceControlProjectPath</key>
<string>osx/pioneer.xcworkspace</string>
<key>IDESourceControlProjectRelativeInstallPathDictionary</key>
<dict>
<key>CEB9386F2744B9C86681D599A1A9B6D6ADBFB2A8</key>
<string>../..</string>
<key>DA6F661DD649F78B3D5A22E52AD1F5102743FEDB</key>
<string>../..-thirdparty</string>
</dict>
<key>IDESourceControlProjectURL</key>
<string>github.com:SilkyPantsDan/pioneer.git</string>
<key>IDESourceControlProjectVersion</key>
<integer>111</integer>
<key>IDESourceControlProjectWCCIdentifier</key>
<string>CEB9386F2744B9C86681D599A1A9B6D6ADBFB2A8</string>
<key>IDESourceControlProjectWCConfigurations</key>
<array>
<dict>
<key>IDESourceControlRepositoryExtensionIdentifierKey</key>
<string>public.vcs.git</string>
<key>IDESourceControlWCCIdentifierKey</key>
<string>CEB9386F2744B9C86681D599A1A9B6D6ADBFB2A8</string>
<key>IDESourceControlWCCName</key>
<string>pioneer</string>
</dict>
<dict>
<key>IDESourceControlRepositoryExtensionIdentifierKey</key>
<string>public.vcs.git</string>
<key>IDESourceControlWCCIdentifierKey</key>
<string>DA6F661DD649F78B3D5A22E52AD1F5102743FEDB</string>
<key>IDESourceControlWCCName</key>
<string>pioneer-thirdparty</string>
</dict>
</array>
</dict>
</plist>

View File

@ -1,11 +0,0 @@
{\rtf1\ansi\ansicpg1252\cocoartf1138
{\fonttbl\f0\fswiss\fcharset0 Helvetica;}
{\colortbl;\red255\green255\blue255;}
\paperw11900\paperh16840\vieww9600\viewh8400\viewkind0
\deftab560
\pard\tx560\pardeftab560\pardirnatural
\f0\fs24 \cf0 \CocoaLigature0 Pioneer is a space adventure game set in the Milky Way galaxy at the turn of the 31st century.\
\
For more information, see:\
http://pioneerspacesim.net/}

View File

@ -1,2 +0,0 @@
/* Localized versions of Info.plist keys */

View File

@ -1,51 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleDocumentTypes</key>
<array/>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIconFile</key>
<string>pioneer-logo.icns</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>${PRODUCT_NAME}</string>
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>PIONEER_VERSION</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
<array/>
<key>CFBundleVersion</key>
<string>GIT_VERSION</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.simulation-games</string>
<key>LSMinimumSystemVersion</key>
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
<key>LSMinimumSystemVersionByArchitecture</key>
<dict>
<key>i386</key>
<string>10.5.0</string>
<key>x86_64</key>
<string>10.6.0</string>
</dict>
<key>NSMainNibFile</key>
<string>pioneerApp</string>
<key>NSPrincipalClass</key>
<string>NSApplication</string>
<key>NSServices</key>
<array/>
<key>UTExportedTypeDeclarations</key>
<array/>
<key>UTImportedTypeDeclarations</key>
<array/>
</dict>
</plist>

View File

@ -1,7 +0,0 @@
//
// Prefix header for all source files of the 'pioneer' target in the 'pioneer' project
//
#ifdef __OBJC__
#import <Cocoa/Cocoa.h>
#endif

View File

@ -1,523 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<archive type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="8.00">
<data>
<int key="IBDocument.SystemTarget">1050</int>
<string key="IBDocument.SystemVersion">11G56</string>
<string key="IBDocument.InterfaceBuilderVersion">2840</string>
<string key="IBDocument.AppKitVersion">1138.51</string>
<string key="IBDocument.HIToolboxVersion">569.00</string>
<object class="NSMutableDictionary" key="IBDocument.PluginVersions">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="NS.object.0">2840</string>
</object>
<array key="IBDocument.IntegratedClassDependencies">
<string>NSCustomObject</string>
<string>NSMenu</string>
<string>NSMenuItem</string>
</array>
<array key="IBDocument.PluginDependencies">
<string>com.apple.InterfaceBuilder.CocoaPlugin</string>
</array>
<object class="NSMutableDictionary" key="IBDocument.Metadata">
<string key="NS.key.0">PluginDependencyRecalculationVersion</string>
<integer value="1" key="NS.object.0"/>
</object>
<array class="NSMutableArray" key="IBDocument.RootObjects" id="221716787">
<object class="NSCustomObject" id="953304728">
<object class="NSMutableString" key="NSClassName">
<characters key="NS.bytes">NSApplication</characters>
</object>
</object>
<object class="NSCustomObject" id="488339511">
<string key="NSClassName">FirstResponder</string>
</object>
<object class="NSCustomObject" id="187020191">
<string key="NSClassName">NSApplication</string>
</object>
<object class="NSMenu" id="644706750">
<string key="NSTitle">SDLMain</string>
<array class="NSMutableArray" key="NSMenuItems">
<object class="NSMenuItem" id="997411580">
<reference key="NSMenu" ref="644706750"/>
<string key="NSTitle">pioneer</string>
<string key="NSKeyEquiv"/>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<object class="NSCustomResource" key="NSOnImage" id="575155727">
<string key="NSClassName">NSImage</string>
<string key="NSResourceName">NSMenuCheckmark</string>
</object>
<object class="NSCustomResource" key="NSMixedImage" id="299182213">
<string key="NSClassName">NSImage</string>
<string key="NSResourceName">NSMenuMixedState</string>
</object>
<string key="NSAction">submenuAction:</string>
<object class="NSMenu" key="NSSubmenu" id="994139965">
<string key="NSTitle">pioneer</string>
<array class="NSMutableArray" key="NSMenuItems">
<object class="NSMenuItem" id="137732289">
<reference key="NSMenu" ref="994139965"/>
<string key="NSTitle">About pioneer</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="575155727"/>
<reference key="NSMixedImage" ref="299182213"/>
</object>
<object class="NSMenuItem" id="616057264">
<reference key="NSMenu" ref="994139965"/>
<bool key="NSIsDisabled">YES</bool>
<bool key="NSIsSeparator">YES</bool>
<string key="NSTitle"/>
<string key="NSKeyEquiv"/>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="575155727"/>
<reference key="NSMixedImage" ref="299182213"/>
</object>
<object class="NSMenuItem" id="345122497">
<reference key="NSMenu" ref="994139965"/>
<string key="NSTitle">Hide pioneer</string>
<string key="NSKeyEquiv">h</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="575155727"/>
<reference key="NSMixedImage" ref="299182213"/>
</object>
<object class="NSMenuItem" id="1015501197">
<reference key="NSMenu" ref="994139965"/>
<string key="NSTitle">Hide Others</string>
<string key="NSKeyEquiv"/>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="575155727"/>
<reference key="NSMixedImage" ref="299182213"/>
</object>
<object class="NSMenuItem" id="1045366482">
<reference key="NSMenu" ref="994139965"/>
<string key="NSTitle">Show All</string>
<string key="NSKeyEquiv"/>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="575155727"/>
<reference key="NSMixedImage" ref="299182213"/>
</object>
<object class="NSMenuItem" id="989937927">
<reference key="NSMenu" ref="994139965"/>
<bool key="NSIsDisabled">YES</bool>
<bool key="NSIsSeparator">YES</bool>
<string key="NSTitle"/>
<string key="NSKeyEquiv"/>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="575155727"/>
<reference key="NSMixedImage" ref="299182213"/>
</object>
<object class="NSMenuItem" id="552016725">
<reference key="NSMenu" ref="994139965"/>
<string key="NSTitle">Quit pioneer</string>
<string key="NSKeyEquiv">q</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="575155727"/>
<reference key="NSMixedImage" ref="299182213"/>
</object>
</array>
<string key="NSName">_NSAppleMenu</string>
</object>
</object>
<object class="NSMenuItem" id="614514777">
<reference key="NSMenu" ref="644706750"/>
<string key="NSTitle">Window</string>
<string key="NSKeyEquiv"/>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="575155727"/>
<reference key="NSMixedImage" ref="299182213"/>
<string key="NSAction">submenuAction:</string>
<object class="NSMenu" key="NSSubmenu" id="323424490">
<object class="NSMutableString" key="NSTitle">
<characters key="NS.bytes">Window</characters>
</object>
<array class="NSMutableArray" key="NSMenuItems">
<object class="NSMenuItem" id="564697436">
<reference key="NSMenu" ref="323424490"/>
<string key="NSTitle">Minimize</string>
<string key="NSKeyEquiv">m</string>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="575155727"/>
<reference key="NSMixedImage" ref="299182213"/>
</object>
</array>
<string key="NSName">_NSWindowsMenu</string>
</object>
</object>
<object class="NSMenuItem" id="25921972">
<reference key="NSMenu" ref="644706750"/>
<string key="NSTitle">Help</string>
<string key="NSKeyEquiv"/>
<int key="NSKeyEquivModMask">1048576</int>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="575155727"/>
<reference key="NSMixedImage" ref="299182213"/>
<string key="NSAction">submenuAction:</string>
<object class="NSMenu" key="NSSubmenu" id="837849758">
<object class="NSMutableString" key="NSTitle">
<characters key="NS.bytes">Help</characters>
</object>
<array class="NSMutableArray" key="NSMenuItems">
<object class="NSMenuItem" id="515163849">
<reference key="NSMenu" ref="837849758"/>
<string key="NSTitle">Homepage</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="575155727"/>
<reference key="NSMixedImage" ref="299182213"/>
</object>
<object class="NSMenuItem" id="1068333157">
<reference key="NSMenu" ref="837849758"/>
<string key="NSTitle">Issue Tracker</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="575155727"/>
<reference key="NSMixedImage" ref="299182213"/>
</object>
<object class="NSMenuItem" id="579302047">
<reference key="NSMenu" ref="837849758"/>
<string key="NSTitle">pioneer Forums</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="575155727"/>
<reference key="NSMixedImage" ref="299182213"/>
</object>
<object class="NSMenuItem" id="686928768">
<reference key="NSMenu" ref="837849758"/>
<string key="NSTitle">Chat with the dev Team</string>
<string key="NSKeyEquiv"/>
<int key="NSMnemonicLoc">2147483647</int>
<reference key="NSOnImage" ref="575155727"/>
<reference key="NSMixedImage" ref="299182213"/>
</object>
</array>
</object>
</object>
</array>
<string key="NSName">_NSMainMenu</string>
</object>
<object class="NSCustomObject" id="448461463">
<string key="NSClassName">SDLMain</string>
</object>
<object class="NSCustomObject" id="299659319">
<string key="NSClassName">NSFontManager</string>
</object>
</array>
<object class="IBObjectContainer" key="IBDocument.Objects">
<array class="NSMutableArray" key="connectionRecords">
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">hideOtherApplications:</string>
<reference key="source" ref="953304728"/>
<reference key="destination" ref="1015501197"/>
</object>
<int key="connectionID">146</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">hide:</string>
<reference key="source" ref="953304728"/>
<reference key="destination" ref="345122497"/>
</object>
<int key="connectionID">152</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">unhideAllApplications:</string>
<reference key="source" ref="953304728"/>
<reference key="destination" ref="1045366482"/>
</object>
<int key="connectionID">153</int>
</object>
<object class="IBConnectionRecord">
<object class="IBOutletConnection" key="connection">
<string key="label">delegate</string>
<reference key="source" ref="953304728"/>
<reference key="destination" ref="448461463"/>
</object>
<int key="connectionID">195</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">performMiniaturize:</string>
<reference key="source" ref="488339511"/>
<reference key="destination" ref="564697436"/>
</object>
<int key="connectionID">288</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">terminate:</string>
<reference key="source" ref="488339511"/>
<reference key="destination" ref="552016725"/>
</object>
<int key="connectionID">292</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">openURL:</string>
<reference key="source" ref="448461463"/>
<reference key="destination" ref="515163849"/>
</object>
<int key="connectionID">366</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">openURL:</string>
<reference key="source" ref="448461463"/>
<reference key="destination" ref="1068333157"/>
</object>
<int key="connectionID">367</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">openURL:</string>
<reference key="source" ref="448461463"/>
<reference key="destination" ref="579302047"/>
</object>
<int key="connectionID">368</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">openURL:</string>
<reference key="source" ref="448461463"/>
<reference key="destination" ref="686928768"/>
</object>
<int key="connectionID">374</int>
</object>
<object class="IBConnectionRecord">
<object class="IBActionConnection" key="connection">
<string key="label">openAboutPanel:</string>
<reference key="source" ref="448461463"/>
<reference key="destination" ref="137732289"/>
</object>
<int key="connectionID">380</int>
</object>
</array>
<object class="IBMutableOrderedSet" key="objectRecords">
<array key="orderedObjects">
<object class="IBObjectRecord">
<int key="objectID">0</int>
<array key="object" id="0"/>
<reference key="children" ref="221716787"/>
<nil key="parent"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">-2</int>
<reference key="object" ref="953304728"/>
<reference key="parent" ref="0"/>
<string key="objectName">File's Owner</string>
</object>
<object class="IBObjectRecord">
<int key="objectID">-1</int>
<reference key="object" ref="488339511"/>
<reference key="parent" ref="0"/>
<string key="objectName">First Responder</string>
</object>
<object class="IBObjectRecord">
<int key="objectID">29</int>
<reference key="object" ref="644706750"/>
<array class="NSMutableArray" key="children">
<reference ref="997411580"/>
<reference ref="25921972"/>
<reference ref="614514777"/>
</array>
<reference key="parent" ref="0"/>
<string key="objectName">MainMenu</string>
</object>
<object class="IBObjectRecord">
<int key="objectID">56</int>
<reference key="object" ref="997411580"/>
<array class="NSMutableArray" key="children">
<reference ref="994139965"/>
</array>
<reference key="parent" ref="644706750"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">57</int>
<reference key="object" ref="994139965"/>
<array class="NSMutableArray" key="children">
<reference ref="137732289"/>
<reference ref="345122497"/>
<reference ref="552016725"/>
<reference ref="1015501197"/>
<reference ref="989937927"/>
<reference ref="1045366482"/>
<reference ref="616057264"/>
</array>
<reference key="parent" ref="997411580"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">58</int>
<reference key="object" ref="137732289"/>
<reference key="parent" ref="994139965"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">134</int>
<reference key="object" ref="345122497"/>
<reference key="parent" ref="994139965"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">136</int>
<reference key="object" ref="552016725"/>
<reference key="parent" ref="994139965"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">145</int>
<reference key="object" ref="1015501197"/>
<reference key="parent" ref="994139965"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">149</int>
<reference key="object" ref="989937927"/>
<reference key="parent" ref="994139965"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">150</int>
<reference key="object" ref="1045366482"/>
<reference key="parent" ref="994139965"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">196</int>
<reference key="object" ref="616057264"/>
<reference key="parent" ref="994139965"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">103</int>
<reference key="object" ref="25921972"/>
<array class="NSMutableArray" key="children">
<reference ref="837849758"/>
</array>
<reference key="parent" ref="644706750"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">106</int>
<reference key="object" ref="837849758"/>
<array class="NSMutableArray" key="children">
<reference ref="515163849"/>
<reference ref="1068333157"/>
<reference ref="579302047"/>
<reference ref="686928768"/>
</array>
<reference key="parent" ref="25921972"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">284</int>
<reference key="object" ref="614514777"/>
<array class="NSMutableArray" key="children">
<reference ref="323424490"/>
</array>
<reference key="parent" ref="644706750"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">285</int>
<reference key="object" ref="323424490"/>
<array class="NSMutableArray" key="children">
<reference ref="564697436"/>
</array>
<reference key="parent" ref="614514777"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">283</int>
<reference key="object" ref="564697436"/>
<reference key="parent" ref="323424490"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">194</int>
<reference key="object" ref="448461463"/>
<reference key="parent" ref="0"/>
<string key="objectName">SDLMain</string>
</object>
<object class="IBObjectRecord">
<int key="objectID">253</int>
<reference key="object" ref="299659319"/>
<reference key="parent" ref="0"/>
<string key="objectName">Font Manager</string>
</object>
<object class="IBObjectRecord">
<int key="objectID">-3</int>
<reference key="object" ref="187020191"/>
<reference key="parent" ref="0"/>
<string key="objectName">Application</string>
</object>
<object class="IBObjectRecord">
<int key="objectID">358</int>
<reference key="object" ref="515163849"/>
<reference key="parent" ref="837849758"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">359</int>
<reference key="object" ref="1068333157"/>
<reference key="parent" ref="837849758"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">360</int>
<reference key="object" ref="579302047"/>
<reference key="parent" ref="837849758"/>
</object>
<object class="IBObjectRecord">
<int key="objectID">361</int>
<reference key="object" ref="686928768"/>
<reference key="parent" ref="837849758"/>
</object>
</array>
</object>
<dictionary class="NSMutableDictionary" key="flattenedProperties">
<string key="-1.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="-2.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="-3.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="103.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="106.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="134.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="136.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="145.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="149.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="150.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="194.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="196.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="253.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="283.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="284.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="285.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="29.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="358.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="359.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="360.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="361.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="56.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="57.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
<string key="58.IBPluginDependency">com.apple.InterfaceBuilder.CocoaPlugin</string>
</dictionary>
<dictionary class="NSMutableDictionary" key="unlocalizedProperties"/>
<nil key="activeLocalization"/>
<dictionary class="NSMutableDictionary" key="localizations"/>
<nil key="sourceID"/>
<int key="maxID">386</int>
</object>
<object class="IBClassDescriber" key="IBDocument.Classes"/>
<int key="IBDocument.localizationMode">0</int>
<string key="IBDocument.TargetRuntimeIdentifier">IBCocoaFramework</string>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<real value="1050" key="NS.object.0"/>
</object>
<object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
<string key="NS.key.0">com.apple.InterfaceBuilder.CocoaPlugin.macosx</string>
<real value="1070" key="NS.object.0"/>
</object>
<bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
<int key="IBDocument.defaultPropertyAccessControl">3</int>
<dictionary class="NSMutableDictionary" key="IBDocument.LastKnownImageSizes">
<string key="NSMenuCheckmark">{11, 11}</string>
<string key="NSMenuMixedState">{10, 3}</string>
</dictionary>
</data>
</archive>