Added tvOS port
11
README.md
|
@ -1,6 +1,6 @@
|
|||
# Wolfenstein 3D for iOS 11
|
||||
# Wolfenstein 3D for iOS 11 and tvOS for Apple TV
|
||||
|
||||
This is my update for Wolfenstein 3D for iOS to run on iOS 11. It also runs in modern resolutions including the full width of the iPhone X.
|
||||
This is my update for Wolfenstein 3D for iOS to run on iOS 11, running in modern resolutions including the full width of the iPhone X. I have also made a target and version for tvOS to run on Apple TV
|
||||
|
||||
Improvements/Changes
|
||||
|
||||
|
@ -10,9 +10,16 @@ Improvements/Changes
|
|||
- Basic MFi controller support
|
||||
- Deprecated APIs removed and replaced with modern equivalents
|
||||
- Code locations reorganized and consolodated
|
||||
- Second project target for tvOS that takes advantage of focus model and removes on-screen controls.
|
||||
|
||||
This commit adds a "menu_art" directory with placeholder images and a substitute font. These are images made from scratch and a public domain font in order to avoid distributing copyrighted material.
|
||||
|
||||
Note that unlike the DOOM for iOS repository from id Software, this repository includes all the game content (levels, sounds, etc.) from the original Wolfenstein 3-D release because John Carmack included them in the initial drop in 2009. As a result, **you can clone this repository, build, and start playing immediately**. It does not include the Spear of Destiny levels as the original release did not have them, and the in-app purchase to purchase them has long since stopped working. If you try to start a Spear of Destiny episiode the app will crash, but if you have the files yourself from some other means you can drop them in the `base/maps` directory and play them.
|
||||
|
||||
For a rundown of getting the code up and running in iOS 11, I wrote this [lengthy article](http://schnapple.com/wolfenstein-3d-and-doom-on-ios-11/) on the subject. For a rundown of the effort to get it running on tvOS, I wrote a [second lenghty article](http://schnapple.com/wolfenstein-3d-and-doom-on-tvos-for-apple-tv/) on the subject.
|
||||
|
||||
[Video of Wolfenstein 3-D running on an iPhone X](https://www.youtube.com/watch?v=O_tC5krFVZ8)
|
||||
|
||||
[Video of Wolfenstein 3-D running on an Apple TV](https://www.youtube.com/watch?v=ghkjUi_1Bos)
|
||||
|
||||
Have fun. For any questions I can be reached at tomkidd@gmail.com
|
|
@ -1,18 +0,0 @@
|
|||
# Wolfenstein 3D for iOS 11
|
||||
|
||||
This is my update for Wolfenstein 3D for iOS to run on iOS 11. It also runs in modern resolutions including the full width of the iPhone X.
|
||||
|
||||
Improvements/Changes
|
||||
|
||||
- Compiles and runs in iOS 11 SDK
|
||||
- Orientation and coordinate system fixed to reflect iOS 8 changes
|
||||
- C warnings fixed for Xcode 9.3
|
||||
- Basic MFi controller support
|
||||
- Deprecated APIs removed and replaced with modern equivalents
|
||||
- Code locations reorganized and consolodated
|
||||
|
||||
This commit adds a "menu_art" directory with placeholder images and a substitute font. These are images made from scratch and a public domain font in order to avoid distributing copyrighted material.
|
||||
|
||||
Note that unlike the DOOM for iOS repository from id Software, this repository includes all the game content (levels, sounds, etc.) from the original Wolfenstein 3-D release because John Carmack included them in the initial drop in 2009. As a result, **you can clone this repository, build, and start playing immediately**. It does not include the Spear of Destiny levels as the original release did not have them, and the in-app purchase to purchase them has long since stopped working. If you try to start a Spear of Destiny episiode the app will crash, but if you have the files yourself from some other means you can drop them in the `base/maps` directory and play them.
|
||||
|
||||
Have fun. For any questions I can be reached at tomkidd@gmail.com
|
BIN
wolf3d/code/.DS_Store
vendored
BIN
wolf3d/code/iphone/.DS_Store
vendored
|
@ -96,7 +96,10 @@ EAGLView *eaglview = nil;
|
|||
eaglview = self;
|
||||
|
||||
if ( self ) {
|
||||
|
||||
#if !TARGET_OS_TV
|
||||
[self setMultipleTouchEnabled:YES];
|
||||
#endif
|
||||
|
||||
// Support rendering at native resolution on devices with Retina displays.
|
||||
if( [self respondsToSelector:@selector(contentScaleFactor)] ) {
|
||||
|
@ -305,6 +308,7 @@ EAGLView *eaglview = nil;
|
|||
}
|
||||
|
||||
- (void) handleTouches:(NSSet*)touches withEvent:(UIEvent*)event {
|
||||
#if !TARGET_OS_TV
|
||||
int touchCount = 0;
|
||||
int points[16];
|
||||
static int previousTouchCount = 0;
|
||||
|
@ -369,6 +373,7 @@ EAGLView *eaglview = nil;
|
|||
previousTouchCount = touchCount;
|
||||
|
||||
iphoneTouchEvent( touchCount, points );
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
@ -472,7 +477,7 @@ void SysIPhoneOpenURL( const char *url ) {
|
|||
Com_Printf( "OpenURL char *: %s\n", url );
|
||||
|
||||
NSString *nss = [NSString stringWithCString: url encoding: NSASCIIStringEncoding];
|
||||
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: nss]];
|
||||
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: nss] options:@{} completionHandler:nil];
|
||||
}
|
||||
|
||||
void SysIPhoneLoadJPG( W8* jpegData, int jpegBytes, W8 **pic, W16 *width, W16 *height, W16 *bytes ) {
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
|
||||
#import "EpisodeViewController.h"
|
||||
#import "LevelSelectViewController.h"
|
||||
#import "wolf3dAppDelegate.h"
|
||||
|
||||
#import "wolfiphone.h"
|
||||
|
||||
|
@ -86,12 +87,14 @@ static const char * const EpisodeNames[TOTAL_EPISODES][2] = {
|
|||
|
||||
// TODO: Select the current episode. Haven't yet figured out a good way to get the table
|
||||
// view to load with a default row selected, so for now always select episode 1.
|
||||
#if !TARGET_OS_TV
|
||||
int initialEpisode = 0;
|
||||
|
||||
NSIndexPath *initialPath = [NSIndexPath indexPathForRow:initialEpisode inSection:0];
|
||||
|
||||
[self.episodeList selectRowAtIndexPath:initialPath animated:YES scrollPosition:UITableViewScrollPositionNone];
|
||||
[self handleSelectionAtIndexPath:initialPath];
|
||||
#endif
|
||||
}
|
||||
|
||||
- (void)didReceiveMemoryWarning {
|
||||
|
@ -125,7 +128,8 @@ static const char * const EpisodeNames[TOTAL_EPISODES][2] = {
|
|||
}
|
||||
|
||||
- (IBAction)next:(id)sender {
|
||||
LevelSelectViewController *lsc = [[LevelSelectViewController alloc] initWithNibName:@"LevelSelectView" bundle:nil];
|
||||
wolf3dAppDelegate* app = (wolf3dAppDelegate*)[[UIApplication sharedApplication] delegate];
|
||||
LevelSelectViewController *lsc = [[LevelSelectViewController alloc] initWithNibName:[app GetNibNameForDevice: @"LevelSelectView"] bundle:nil];
|
||||
[self.navigationController pushViewController:lsc animated:YES];
|
||||
[lsc release];
|
||||
}
|
||||
|
@ -263,7 +267,8 @@ static CGRect maximumNameLabelFrame = { { 0.0, 0.0 }, { 0.0, 0.0 } };
|
|||
|
||||
if (cell == nil) {
|
||||
//cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:MyIdentifier] autorelease];
|
||||
[[NSBundle mainBundle] loadNibNamed:@"EpisodeCell" owner:self options:nil];
|
||||
wolf3dAppDelegate* app = (wolf3dAppDelegate*)[[UIApplication sharedApplication] delegate];
|
||||
[[NSBundle mainBundle] loadNibNamed:[app GetNibNameForDevice:@"EpisodeCell"] owner:self options:nil];
|
||||
|
||||
if ( episodeCell == nil ) {
|
||||
// Couldn't create from nib file, load a default cell.
|
||||
|
@ -308,6 +313,7 @@ static CGRect maximumNameLabelFrame = { { 0.0, 0.0 }, { 0.0, 0.0 } };
|
|||
|
||||
cell.backgroundColor = UIColor.clearColor;
|
||||
|
||||
cell.contentView.backgroundColor = UIColor.blackColor;
|
||||
|
||||
return cell;
|
||||
}
|
||||
|
@ -321,19 +327,48 @@ static CGRect maximumNameLabelFrame = { { 0.0, 0.0 }, { 0.0, 0.0 } };
|
|||
[self setCellSelected:NO atIndexPath:indexPath];
|
||||
}
|
||||
|
||||
#if TARGET_OS_TV
|
||||
- (void)didUpdateFocusInContext:(UIFocusUpdateContext *)context withAnimationCoordinator:(UIFocusAnimationCoordinator *)coordinator {
|
||||
|
||||
[super didUpdateFocusInContext:context withAnimationCoordinator:coordinator];
|
||||
|
||||
if ([context.nextFocusedView isKindOfClass:[UITableViewCell class]]) {
|
||||
[coordinator addCoordinatedAnimations:^{
|
||||
|
||||
[((UITableViewCell *)context.nextFocusedView).contentView setBackgroundColor:[UIColor blackColor]];
|
||||
[((UITableViewCell *)context.nextFocusedView) viewWithTag:3].hidden = false;
|
||||
|
||||
|
||||
if ([context.previouslyFocusedView isKindOfClass:[UITableViewCell class]]) {
|
||||
[((UITableViewCell *)context.previouslyFocusedView).contentView setBackgroundColor:[UIColor blackColor]];
|
||||
[((UITableViewCell *)context.previouslyFocusedView) viewWithTag:3].hidden = true;
|
||||
}
|
||||
|
||||
[context.nextFocusedView setBackgroundColor:[UIColor blackColor]];
|
||||
[context.previouslyFocusedView setBackgroundColor:[UIColor clearColor]];
|
||||
} completion:nil];
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
- (void)setCellSelected:(BOOL)selected atIndexPath:(NSIndexPath*)indexPath {
|
||||
// Get the cell that was selected.
|
||||
#if TARGET_OS_TV
|
||||
[self next:self];
|
||||
#else
|
||||
UITableViewCell * cell = [episodeList cellForRowAtIndexPath:indexPath];
|
||||
|
||||
[self setCellSelected:selected cell:cell];
|
||||
#endif
|
||||
}
|
||||
|
||||
- (void)setCellSelected:(BOOL)selected cell:(UITableViewCell*)cell {
|
||||
// Get the "selected" image
|
||||
UIView * selectionFrame = [cell viewWithTag:3];
|
||||
|
||||
// Show the selected image
|
||||
#if !TARGET_OS_TV
|
||||
// Get the "selected" image
|
||||
UIView * selectionFrame = [cell viewWithTag:3];
|
||||
|
||||
// Show the selected image
|
||||
selectionFrame.hidden = !selected;
|
||||
#endif
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -1,11 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="13771" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
|
||||
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="14109" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
|
||||
<device id="retina5_9" orientation="portrait">
|
||||
<adaptation id="fullscreen"/>
|
||||
</device>
|
||||
<dependencies>
|
||||
<deployment identifier="iOS"/>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="13772"/>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14088"/>
|
||||
<capability name="Constraints to layout margins" minToolsVersion="6.0"/>
|
||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
||||
</dependencies>
|
||||
<scenes>
|
||||
|
@ -20,7 +21,18 @@
|
|||
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
|
||||
<rect key="frame" x="0.0" y="0.0" width="375" height="812"/>
|
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||
<subviews>
|
||||
<imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="Default-Portrait.png" translatesAutoresizingMaskIntoConstraints="NO" id="dgg-o8-gc8">
|
||||
<rect key="frame" x="16" y="44" width="343" height="734"/>
|
||||
</imageView>
|
||||
</subviews>
|
||||
<color key="backgroundColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
||||
<constraints>
|
||||
<constraint firstItem="uoV-pw-f8X" firstAttribute="top" secondItem="dgg-o8-gc8" secondAttribute="bottom" id="3un-VV-McN"/>
|
||||
<constraint firstItem="dgg-o8-gc8" firstAttribute="top" secondItem="kSa-Ap-Mb8" secondAttribute="bottom" id="HuS-8L-pE0"/>
|
||||
<constraint firstItem="dgg-o8-gc8" firstAttribute="leading" secondItem="Ze5-6b-2t3" secondAttribute="leadingMargin" id="atz-C1-TZ9"/>
|
||||
<constraint firstAttribute="trailingMargin" secondItem="dgg-o8-gc8" secondAttribute="trailing" id="j6u-4n-9V1"/>
|
||||
</constraints>
|
||||
</view>
|
||||
</viewController>
|
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
|
||||
|
@ -28,4 +40,7 @@
|
|||
<point key="canvasLocation" x="53" y="375"/>
|
||||
</scene>
|
||||
</scenes>
|
||||
<resources>
|
||||
<image name="Default-Portrait.png" width="320" height="480"/>
|
||||
</resources>
|
||||
</document>
|
||||
|
|
|
@ -225,8 +225,17 @@ UITableView interface
|
|||
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
|
||||
|
||||
[self handleSelectionAtIndexPath:indexPath];
|
||||
#if TARGET_OS_TV
|
||||
[self next:self];
|
||||
#endif
|
||||
}
|
||||
|
||||
#if TARGET_OS_TV
|
||||
-(NSArray<id<UIFocusEnvironment>> *)preferredFocusEnvironments {
|
||||
return @[missionList];
|
||||
}
|
||||
#endif
|
||||
|
||||
- (void)didReceiveMemoryWarning {
|
||||
// Releases the view if it doesn't have a superview.
|
||||
[super didReceiveMemoryWarning];
|
||||
|
|
|
@ -29,7 +29,10 @@
|
|||
#import "CreditsViewController.h"
|
||||
#import "LegalViewController.h"
|
||||
#import "TriviaViewController.h"
|
||||
|
||||
#if !TARGET_OS_TV
|
||||
#import "SettingsViewController.h"
|
||||
#endif
|
||||
|
||||
@interface MainMenuViewController ()
|
||||
|
||||
|
@ -62,6 +65,8 @@
|
|||
@synthesize idGamesButton, idSoftwareButton, triviaButton;
|
||||
@synthesize backButton;
|
||||
|
||||
BOOL subMenu = NO;
|
||||
|
||||
- (void)didReceiveMemoryWarning {
|
||||
[super didReceiveMemoryWarning];
|
||||
|
||||
|
@ -93,15 +98,18 @@
|
|||
|
||||
|
||||
- (IBAction)newGame:(id)sender {
|
||||
SkillViewController *svc = [[SkillViewController alloc] initWithNibName:@"SkillView" bundle:nil];
|
||||
wolf3dAppDelegate* app = (wolf3dAppDelegate*)[[UIApplication sharedApplication] delegate];
|
||||
SkillViewController *svc = [[SkillViewController alloc] initWithNibName:[app GetNibNameForDevice:@"SkillView"] bundle:nil];
|
||||
[self.navigationController pushViewController:svc animated:YES];
|
||||
[svc release];
|
||||
}
|
||||
|
||||
- (IBAction)settings:(id)sender {
|
||||
#if !TARGET_OS_TV
|
||||
SettingsViewController *evc = [[SettingsViewController alloc] initWithNibName:@"SettingsView" bundle:nil];
|
||||
[self.navigationController pushViewController:evc animated:YES];
|
||||
[evc release];
|
||||
[evc release];
|
||||
#endif
|
||||
}
|
||||
|
||||
- (IBAction)about:(id)sender {
|
||||
|
@ -115,19 +123,21 @@
|
|||
}
|
||||
|
||||
- (IBAction)credits:(id)sender {
|
||||
CreditsViewController *cvc = [[CreditsViewController alloc] initWithNibName:@"CreditsView" bundle:nil];
|
||||
wolf3dAppDelegate* app = (wolf3dAppDelegate*)[[UIApplication sharedApplication] delegate];
|
||||
CreditsViewController *cvc = [[CreditsViewController alloc] initWithNibName:[app GetNibNameForDevice:@"CreditsView"] bundle:nil];
|
||||
[self.navigationController pushViewController:cvc animated:YES];
|
||||
[cvc release];
|
||||
}
|
||||
|
||||
- (IBAction)legal:(id)sender {
|
||||
LegalViewController *lvc = [[LegalViewController alloc] initWithNibName:@"LegalView" bundle:nil];
|
||||
wolf3dAppDelegate* app = (wolf3dAppDelegate*)[[UIApplication sharedApplication] delegate];
|
||||
LegalViewController *lvc = [[LegalViewController alloc] initWithNibName:[app GetNibNameForDevice:@"LegalView"] bundle:nil];
|
||||
[self.navigationController pushViewController:lvc animated:YES];
|
||||
[lvc release];
|
||||
}
|
||||
|
||||
- (IBAction)idGames:(id)sender {
|
||||
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms-apps://itunes.com/apps/idsoftware"]];
|
||||
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"itms-apps://itunes.com/apps/idsoftware"] options:@{} completionHandler:nil];
|
||||
}
|
||||
|
||||
- (IBAction)idSoftware:(id)sender {
|
||||
|
@ -136,7 +146,8 @@
|
|||
}
|
||||
|
||||
- (IBAction)trivia:(id)sender {
|
||||
TriviaViewController *tvc = [[TriviaViewController alloc] initWithNibName:@"TriviaView" bundle:nil];
|
||||
wolf3dAppDelegate* app = (wolf3dAppDelegate*)[[UIApplication sharedApplication] delegate];
|
||||
TriviaViewController *tvc = [[TriviaViewController alloc] initWithNibName:[app GetNibNameForDevice:@"TriviaView"] bundle:nil];
|
||||
[self.navigationController pushViewController:tvc animated:YES];
|
||||
[tvc release];
|
||||
|
||||
|
@ -159,7 +170,7 @@
|
|||
[self.aboutButton setHidden:hide];
|
||||
[self.extrasButton setHidden:hide];
|
||||
[self.resumeStar setHidden:hide];
|
||||
|
||||
subMenu = hide;
|
||||
}
|
||||
|
||||
- (void)setAboutHidden:(BOOL)hide {
|
||||
|
@ -185,5 +196,42 @@
|
|||
[app showOpenGL];
|
||||
}
|
||||
|
||||
#if TARGET_OS_TV
|
||||
- (void)pressesBegan:(NSSet<UIPress *> *)presses withEvent:(UIPressesEvent *)event {
|
||||
for (UIPress* press in presses) {
|
||||
switch (press.type) {
|
||||
case UIPressTypeMenu:
|
||||
if (subMenu) {
|
||||
break;
|
||||
} else {
|
||||
[super pressesBegan: presses withEvent: event];
|
||||
}
|
||||
default:
|
||||
[super pressesBegan: presses withEvent: event];
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
- (void)pressesEnded:(NSSet<UIPress *> *)presses withEvent:(UIPressesEvent *)event {
|
||||
for (UIPress* press in presses) {
|
||||
switch (press.type) {
|
||||
case UIPressTypeMenu:
|
||||
if (subMenu) {
|
||||
[self setAboutHidden:YES];
|
||||
[self setExtrasHidden:YES];
|
||||
[self setMainHidden:NO];
|
||||
} else {
|
||||
[super pressesEnded: presses withEvent: event];
|
||||
}
|
||||
break;
|
||||
default:
|
||||
[super pressesEnded: presses withEvent: event];
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
@end
|
||||
|
|
52
wolf3d/code/iphone/Resources-tvOS/views/CreditsView-tvos.xib
Normal file
|
@ -0,0 +1,52 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document type="com.apple.InterfaceBuilder.AppleTV.XIB" version="3.0" toolsVersion="14109" targetRuntime="AppleTV" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
|
||||
<device id="appleTV" orientation="landscape">
|
||||
<adaptation id="light"/>
|
||||
</device>
|
||||
<dependencies>
|
||||
<deployment identifier="tvOS"/>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14088"/>
|
||||
<capability name="Constraints with non-1.0 multipliers" minToolsVersion="5.1"/>
|
||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
||||
</dependencies>
|
||||
<objects>
|
||||
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="CreditsViewController">
|
||||
<connections>
|
||||
<outlet property="creditsList" destination="UGO-eU-gGU" id="FGq-em-OLL"/>
|
||||
<outlet property="view" destination="1" id="6"/>
|
||||
</connections>
|
||||
</placeholder>
|
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
|
||||
<view contentMode="scaleToFill" id="1">
|
||||
<rect key="frame" x="0.0" y="0.0" width="1024" height="768"/>
|
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||
<subviews>
|
||||
<imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" fixedFrame="YES" image="credits_bg" translatesAutoresizingMaskIntoConstraints="NO" id="8">
|
||||
<rect key="frame" x="0.0" y="0.0" width="1024" height="768"/>
|
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||
</imageView>
|
||||
<tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="UGO-eU-gGU">
|
||||
<rect key="frame" x="390" y="20" width="614" height="728"/>
|
||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
||||
<connections>
|
||||
<outlet property="dataSource" destination="-1" id="XRW-Jq-TVd"/>
|
||||
<outlet property="delegate" destination="-1" id="VhF-Qc-AD7"/>
|
||||
</connections>
|
||||
</tableView>
|
||||
</subviews>
|
||||
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<constraints>
|
||||
<constraint firstItem="UGO-eU-gGU" firstAttribute="top" secondItem="1" secondAttribute="top" constant="20" id="Vs1-2l-3ss"/>
|
||||
<constraint firstAttribute="bottom" secondItem="UGO-eU-gGU" secondAttribute="bottom" constant="20" id="ehC-Pt-sD8"/>
|
||||
<constraint firstItem="UGO-eU-gGU" firstAttribute="width" secondItem="1" secondAttribute="width" multiplier="0.6" id="lvC-GO-Ugn"/>
|
||||
<constraint firstAttribute="trailing" secondItem="UGO-eU-gGU" secondAttribute="trailing" constant="20" id="rN5-PF-0J7"/>
|
||||
</constraints>
|
||||
<nil key="simulatedStatusBarMetrics"/>
|
||||
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
|
||||
<point key="canvasLocation" x="34" y="54"/>
|
||||
</view>
|
||||
</objects>
|
||||
<resources>
|
||||
<image name="credits_bg" width="480" height="320"/>
|
||||
</resources>
|
||||
</document>
|
60
wolf3d/code/iphone/Resources-tvOS/views/EpisodeCell-tvos.xib
Normal file
|
@ -0,0 +1,60 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document type="com.apple.InterfaceBuilder.AppleTV.XIB" version="3.0" toolsVersion="14109" targetRuntime="AppleTV" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
|
||||
<device id="appleTV" orientation="landscape">
|
||||
<adaptation id="light"/>
|
||||
</device>
|
||||
<dependencies>
|
||||
<deployment identifier="tvOS"/>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14088"/>
|
||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
||||
</dependencies>
|
||||
<objects>
|
||||
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="EpisodeViewController">
|
||||
<connections>
|
||||
<outlet property="episodeCell" destination="fBs-An-CcD" id="XCb-St-dge"/>
|
||||
</connections>
|
||||
</placeholder>
|
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
|
||||
<tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" id="fBs-An-CcD" customClass="EpisodeCell-tvos">
|
||||
<rect key="frame" x="0.0" y="0.0" width="178" height="189"/>
|
||||
<autoresizingMask key="autoresizingMask"/>
|
||||
<tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="fBs-An-CcD" id="S0Q-fX-qc8">
|
||||
<rect key="frame" x="0.0" y="0.0" width="178" height="189"/>
|
||||
<autoresizingMask key="autoresizingMask"/>
|
||||
<subviews>
|
||||
<imageView hidden="YES" userInteractionEnabled="NO" tag="3" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" misplaced="YES" image="highlight_bracket" translatesAutoresizingMaskIntoConstraints="NO" id="Gd1-3z-zhH">
|
||||
<rect key="frame" x="1" y="5" width="610" height="180"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||
</imageView>
|
||||
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" misplaced="YES" image="episode_bracket" translatesAutoresizingMaskIntoConstraints="NO" id="LbU-jl-Wr9">
|
||||
<rect key="frame" x="5" y="13" width="598" height="163"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||
</imageView>
|
||||
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" misplaced="YES" image="episode_divider.png" translatesAutoresizingMaskIntoConstraints="NO" id="JNG-G1-WeP">
|
||||
<rect key="frame" x="13" y="61" width="387" height="3"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||
</imageView>
|
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="1" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="Episode Number" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="l9E-ik-cxO" customClass="UIFontLabel">
|
||||
<rect key="frame" x="18" y="24" width="586" height="52"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||
<fontDescription key="fontDescription" type="system" pointSize="44"/>
|
||||
<color key="textColor" red="0.66666668650000005" green="0.66666668650000005" blue="0.66666668650000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<nil key="highlightedColor"/>
|
||||
</label>
|
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="2" contentMode="TopLeft" horizontalHuggingPriority="251" verticalHuggingPriority="251" misplaced="YES" text="Episode Name" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZTd-ue-tnm" customClass="UIFontLabel">
|
||||
<rect key="frame" x="17" y="87" width="586" height="75"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||
<fontDescription key="fontDescription" type="system" pointSize="64"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<nil key="highlightedColor"/>
|
||||
</label>
|
||||
</subviews>
|
||||
</tableViewCellContentView>
|
||||
</tableViewCell>
|
||||
</objects>
|
||||
<resources>
|
||||
<image name="episode_bracket" width="606" height="168"/>
|
||||
<image name="episode_divider.png" width="16" height="16"/>
|
||||
<image name="highlight_bracket" width="623" height="189"/>
|
||||
</resources>
|
||||
</document>
|
63
wolf3d/code/iphone/Resources-tvOS/views/EpisodeView-tvos.xib
Normal file
|
@ -0,0 +1,63 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document type="com.apple.InterfaceBuilder.AppleTV.XIB" version="3.0" toolsVersion="14109" targetRuntime="AppleTV" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
|
||||
<device id="appleTV" orientation="landscape">
|
||||
<adaptation id="light"/>
|
||||
</device>
|
||||
<dependencies>
|
||||
<deployment identifier="tvOS"/>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14088"/>
|
||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
||||
</dependencies>
|
||||
<objects>
|
||||
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="EpisodeViewController">
|
||||
<connections>
|
||||
<outlet property="episodeList" destination="50" id="53"/>
|
||||
<outlet property="view" destination="1" id="13"/>
|
||||
</connections>
|
||||
</placeholder>
|
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
|
||||
<view contentMode="scaleToFill" id="1">
|
||||
<rect key="frame" x="0.0" y="0.0" width="1024" height="768"/>
|
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||
<subviews>
|
||||
<imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" fixedFrame="YES" image="wolf_bg" translatesAutoresizingMaskIntoConstraints="NO" id="28">
|
||||
<rect key="frame" x="0.0" y="0.0" width="1024" height="768"/>
|
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||
</imageView>
|
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="EPISODE" lineBreakMode="middleTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="32" customClass="UIFontLabel">
|
||||
<rect key="frame" x="200" y="47" width="191" height="57"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="57" id="QQs-VQ-hcN"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name=".AppleSystemUIFont" family=".AppleSystemUIFont" pointSize="48"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</label>
|
||||
<tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" showsHorizontalScrollIndicator="NO" indicatorStyle="white" style="plain" separatorStyle="none" rowHeight="189" sectionHeaderHeight="0.0" sectionFooterHeight="0.0" translatesAutoresizingMaskIntoConstraints="NO" id="50" userLabel="Episode List">
|
||||
<rect key="frame" x="200" y="104" width="625" height="577"/>
|
||||
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="625" id="6Fq-le-jqW"/>
|
||||
</constraints>
|
||||
<connections>
|
||||
<outlet property="dataSource" destination="-1" id="51"/>
|
||||
<outlet property="delegate" destination="-1" id="52"/>
|
||||
</connections>
|
||||
</tableView>
|
||||
</subviews>
|
||||
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<constraints>
|
||||
<constraint firstItem="50" firstAttribute="top" secondItem="32" secondAttribute="bottom" id="2Ts-Mj-EFL"/>
|
||||
<constraint firstItem="50" firstAttribute="top" secondItem="1" secondAttribute="top" constant="104" id="F8i-Tn-iW6"/>
|
||||
<constraint firstItem="50" firstAttribute="centerX" secondItem="1" secondAttribute="centerX" id="Nkh-Qy-YI6"/>
|
||||
<constraint firstItem="32" firstAttribute="leading" secondItem="50" secondAttribute="leading" id="mNB-P0-qd7"/>
|
||||
<constraint firstAttribute="bottom" secondItem="50" secondAttribute="bottom" constant="87" id="xPt-Ur-jUq"/>
|
||||
</constraints>
|
||||
<nil key="simulatedStatusBarMetrics"/>
|
||||
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
|
||||
</view>
|
||||
</objects>
|
||||
<resources>
|
||||
<image name="wolf_bg" width="480" height="320"/>
|
||||
</resources>
|
||||
</document>
|
75
wolf3d/code/iphone/Resources-tvOS/views/LegalView-tvos.xib
Normal file
|
@ -0,0 +1,75 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document type="com.apple.InterfaceBuilder.AppleTV.XIB" version="3.0" toolsVersion="14109" targetRuntime="AppleTV" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
|
||||
<device id="appleTV" orientation="landscape">
|
||||
<adaptation id="light"/>
|
||||
</device>
|
||||
<dependencies>
|
||||
<deployment identifier="tvOS"/>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14088"/>
|
||||
<capability name="Constraints with non-1.0 multipliers" minToolsVersion="5.1"/>
|
||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
||||
</dependencies>
|
||||
<objects>
|
||||
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="LegalViewController">
|
||||
<connections>
|
||||
<outlet property="view" destination="1" id="3"/>
|
||||
</connections>
|
||||
</placeholder>
|
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
|
||||
<view contentMode="scaleToFill" id="1">
|
||||
<rect key="frame" x="0.0" y="0.0" width="1024" height="768"/>
|
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||
<subviews>
|
||||
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="credits_bg" translatesAutoresizingMaskIntoConstraints="NO" id="7">
|
||||
<rect key="frame" x="0.0" y="0.0" width="1024" height="768"/>
|
||||
</imageView>
|
||||
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="jPd-Tp-yhZ">
|
||||
<rect key="frame" x="410" y="0.0" width="614" height="768"/>
|
||||
<subviews>
|
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="10" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="17">
|
||||
<rect key="frame" x="20" y="20" width="574" height="510"/>
|
||||
<string key="text">Wolfenstein® 3D Classic Platinum© 2009-2011 id Software LLC, a ZeniMax Media company. Wolfenstein, id, id Software, id Tech and related logos are registered trademarks or trademarks of id Software LLC in the U.S. and/or other countries. Bethesda, Bethesda Softworks, ZeniMax and related logos are registered trademarks or trademarks of ZeniMax Media Inc. in the U.S. and/or other countries. All Rights Reserved.</string>
|
||||
<fontDescription key="fontDescription" name=".AppleSystemUIFont" family=".AppleSystemUIFont" pointSize="22"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</label>
|
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Legal" textAlignment="center" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="4" customClass="UIFontLabel">
|
||||
<rect key="frame" x="255" y="91" width="105" height="55"/>
|
||||
<fontDescription key="fontDescription" name=".AppleSystemUIFont" family=".AppleSystemUIFont" pointSize="44"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
</subviews>
|
||||
<constraints>
|
||||
<constraint firstItem="4" firstAttribute="top" secondItem="jPd-Tp-yhZ" secondAttribute="top" constant="91" id="F1F-cN-xls"/>
|
||||
<constraint firstItem="17" firstAttribute="leading" secondItem="jPd-Tp-yhZ" secondAttribute="leading" constant="20" id="P2U-la-t6v"/>
|
||||
<constraint firstAttribute="trailing" secondItem="17" secondAttribute="trailing" constant="20" id="SRr-O3-2bD"/>
|
||||
<constraint firstItem="4" firstAttribute="centerX" secondItem="jPd-Tp-yhZ" secondAttribute="centerX" id="cHf-FP-spz"/>
|
||||
<constraint firstItem="17" firstAttribute="top" secondItem="jPd-Tp-yhZ" secondAttribute="top" constant="20" id="cMk-HW-9tZ"/>
|
||||
<constraint firstAttribute="bottom" secondItem="17" secondAttribute="bottom" constant="238" id="oRt-Pv-DEC"/>
|
||||
</constraints>
|
||||
</view>
|
||||
</subviews>
|
||||
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="bottom" secondItem="jPd-Tp-yhZ" secondAttribute="bottom" id="2o6-5a-0jC"/>
|
||||
<constraint firstItem="jPd-Tp-yhZ" firstAttribute="width" secondItem="1" secondAttribute="width" multiplier="0.6" id="KIw-2S-10j"/>
|
||||
<constraint firstAttribute="bottom" secondItem="7" secondAttribute="bottom" id="KTn-PX-Y75"/>
|
||||
<constraint firstItem="7" firstAttribute="top" secondItem="1" secondAttribute="top" id="R6o-lJ-kFs"/>
|
||||
<constraint firstAttribute="trailing" secondItem="jPd-Tp-yhZ" secondAttribute="trailing" id="c83-Dc-izf"/>
|
||||
<constraint firstItem="jPd-Tp-yhZ" firstAttribute="top" secondItem="1" secondAttribute="top" id="n51-7D-DrM"/>
|
||||
<constraint firstAttribute="trailing" secondItem="7" secondAttribute="trailing" id="nBU-Za-HEW"/>
|
||||
<constraint firstItem="7" firstAttribute="leading" secondItem="1" secondAttribute="leading" id="y8T-TD-sLt"/>
|
||||
</constraints>
|
||||
<nil key="simulatedStatusBarMetrics"/>
|
||||
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
|
||||
<point key="canvasLocation" x="34" y="54"/>
|
||||
</view>
|
||||
</objects>
|
||||
<resources>
|
||||
<image name="credits_bg" width="480" height="320"/>
|
||||
</resources>
|
||||
</document>
|
|
@ -0,0 +1,66 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document type="com.apple.InterfaceBuilder.AppleTV.XIB" version="3.0" toolsVersion="14109" targetRuntime="AppleTV" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
|
||||
<device id="appleTV" orientation="landscape">
|
||||
<adaptation id="light"/>
|
||||
</device>
|
||||
<dependencies>
|
||||
<deployment identifier="tvOS"/>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14088"/>
|
||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
||||
</dependencies>
|
||||
<objects>
|
||||
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="LevelSelectViewController">
|
||||
<connections>
|
||||
<outlet property="missionList" destination="34" id="37"/>
|
||||
<outlet property="view" destination="1" id="4"/>
|
||||
</connections>
|
||||
</placeholder>
|
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
|
||||
<view contentMode="scaleToFill" id="1">
|
||||
<rect key="frame" x="0.0" y="0.0" width="1024" height="768"/>
|
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||
<subviews>
|
||||
<imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" image="wolf_bg" translatesAutoresizingMaskIntoConstraints="NO" id="13">
|
||||
<rect key="frame" x="0.0" y="0.0" width="1024" height="768"/>
|
||||
</imageView>
|
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="MISSION" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="15" customClass="UIFontLabel">
|
||||
<rect key="frame" x="200" y="48" width="175" height="52"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="52" id="BVG-FM-eHA"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name=".AppleSystemUIFont" family=".AppleSystemUIFont" pointSize="44"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</label>
|
||||
<tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" showsHorizontalScrollIndicator="NO" indicatorStyle="white" style="plain" separatorStyle="none" rowHeight="50" sectionHeaderHeight="0.0" sectionFooterHeight="0.0" translatesAutoresizingMaskIntoConstraints="NO" id="34" userLabel="Mission List">
|
||||
<rect key="frame" x="200" y="104" width="625" height="593"/>
|
||||
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="625" id="TMJ-ve-dpy"/>
|
||||
</constraints>
|
||||
<connections>
|
||||
<outlet property="dataSource" destination="-1" id="35"/>
|
||||
<outlet property="delegate" destination="-1" id="36"/>
|
||||
</connections>
|
||||
</tableView>
|
||||
</subviews>
|
||||
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<constraints>
|
||||
<constraint firstItem="34" firstAttribute="centerX" secondItem="1" secondAttribute="centerX" id="7AX-70-dxt"/>
|
||||
<constraint firstItem="13" firstAttribute="leading" secondItem="1" secondAttribute="leading" id="8ht-TQ-KRQ"/>
|
||||
<constraint firstItem="15" firstAttribute="leading" secondItem="34" secondAttribute="leading" id="D2J-iI-RyW"/>
|
||||
<constraint firstItem="34" firstAttribute="top" secondItem="15" secondAttribute="bottom" constant="4" id="JTC-xo-hIg"/>
|
||||
<constraint firstItem="13" firstAttribute="top" secondItem="1" secondAttribute="top" id="QRD-hk-ZLh"/>
|
||||
<constraint firstAttribute="bottom" secondItem="34" secondAttribute="bottom" constant="71" id="clV-lc-SAq"/>
|
||||
<constraint firstItem="34" firstAttribute="top" secondItem="1" secondAttribute="top" constant="104" id="phh-3S-CI8"/>
|
||||
<constraint firstAttribute="bottom" secondItem="13" secondAttribute="bottom" id="ppg-FT-DoP"/>
|
||||
<constraint firstAttribute="trailing" secondItem="13" secondAttribute="trailing" id="xjA-iM-s0D"/>
|
||||
</constraints>
|
||||
<nil key="simulatedStatusBarMetrics"/>
|
||||
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
|
||||
</view>
|
||||
</objects>
|
||||
<resources>
|
||||
<image name="wolf_bg" width="480" height="320"/>
|
||||
</resources>
|
||||
</document>
|
185
wolf3d/code/iphone/Resources-tvOS/views/MainMenuView-tvos.xib
Normal file
|
@ -0,0 +1,185 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document type="com.apple.InterfaceBuilder.AppleTV.XIB" version="3.0" toolsVersion="14109" targetRuntime="AppleTV" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
|
||||
<device id="appleTV" orientation="landscape">
|
||||
<adaptation id="light"/>
|
||||
</device>
|
||||
<dependencies>
|
||||
<deployment identifier="tvOS"/>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14088"/>
|
||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
||||
</dependencies>
|
||||
<objects>
|
||||
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="MainMenuViewController">
|
||||
<connections>
|
||||
<outlet property="creditsButton" destination="47" id="50"/>
|
||||
<outlet property="legalButton" destination="32" id="38"/>
|
||||
<outlet property="resumeButton" destination="4" id="40"/>
|
||||
<outlet property="resumeStar" destination="64" id="65"/>
|
||||
<outlet property="startNewGameButton" destination="5" id="Sp7-Rr-obK"/>
|
||||
<outlet property="triviaButton" destination="56" id="59"/>
|
||||
<outlet property="view" destination="1" id="3"/>
|
||||
</connections>
|
||||
</placeholder>
|
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
|
||||
<view contentMode="scaleToFill" id="1">
|
||||
<rect key="frame" x="0.0" y="0.0" width="1024" height="768"/>
|
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||
<subviews>
|
||||
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ZHW-nn-VCz">
|
||||
<rect key="frame" x="0.0" y="0.0" width="1024" height="768"/>
|
||||
<subviews>
|
||||
<imageView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" fixedFrame="YES" image="main_bg" translatesAutoresizingMaskIntoConstraints="NO" id="16">
|
||||
<rect key="frame" x="0.0" y="0.0" width="1024" height="768"/>
|
||||
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
||||
</imageView>
|
||||
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="5" customClass="UIFontButton">
|
||||
<rect key="frame" x="88" y="259" width="300" height="75"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="75" id="hl3-Zk-Tt4"/>
|
||||
<constraint firstAttribute="width" constant="300" id="pmI-zl-j31"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name=".AppleSystemUIFont" family=".AppleSystemUIFont" pointSize="64"/>
|
||||
<size key="titleShadowOffset" width="2" height="2"/>
|
||||
<state key="normal" title="New Game">
|
||||
<color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="titleShadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="highlighted">
|
||||
<color key="titleColor" red="0.3333333432674408" green="0.3333333432674408" blue="0.3333333432674408" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="focused">
|
||||
<color key="titleShadowColor" red="1" green="0.14913141730000001" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<connections>
|
||||
<action selector="newGame:" destination="-1" eventType="primaryActionTriggered" id="10"/>
|
||||
</connections>
|
||||
</button>
|
||||
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="32" customClass="UIFontButton">
|
||||
<rect key="frame" x="137" y="489" width="147" height="75"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="75" id="kJg-Md-yk1"/>
|
||||
<constraint firstAttribute="width" constant="147" id="z8s-W2-tSC"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name=".AppleSystemUIFont" family=".AppleSystemUIFont" pointSize="64"/>
|
||||
<size key="titleShadowOffset" width="2" height="2"/>
|
||||
<state key="normal" title="Legal">
|
||||
<color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="titleShadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="highlighted">
|
||||
<color key="titleColor" red="0.3333333432674408" green="0.3333333432674408" blue="0.3333333432674408" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="focused">
|
||||
<color key="titleShadowColor" red="1" green="0.14913141730000001" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<connections>
|
||||
<action selector="legal:" destination="-1" eventType="primaryActionTriggered" id="34"/>
|
||||
</connections>
|
||||
</button>
|
||||
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="47" customClass="UIFontButton">
|
||||
<rect key="frame" x="105" y="373" width="194" height="75"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="194" id="FVh-9x-zZz"/>
|
||||
<constraint firstAttribute="height" constant="75" id="cul-8d-1cf"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name=".AppleSystemUIFont" family=".AppleSystemUIFont" pointSize="64"/>
|
||||
<size key="titleShadowOffset" width="2" height="2"/>
|
||||
<state key="normal" title="Credits">
|
||||
<color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="titleShadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="highlighted">
|
||||
<color key="titleColor" red="0.3333333432674408" green="0.3333333432674408" blue="0.3333333432674408" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="focused">
|
||||
<color key="titleShadowColor" red="1" green="0.14913141730000001" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<connections>
|
||||
<action selector="credits:" destination="-1" eventType="primaryActionTriggered" id="63"/>
|
||||
</connections>
|
||||
</button>
|
||||
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="56" customClass="UIFontButton">
|
||||
<rect key="frame" x="168" y="601" width="140" height="75"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="75" id="8yN-R0-3H2"/>
|
||||
<constraint firstAttribute="width" constant="140" id="f10-Vi-Uvf"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name=".AppleSystemUIFont" family=".AppleSystemUIFont" pointSize="64"/>
|
||||
<size key="titleShadowOffset" width="2" height="2"/>
|
||||
<state key="normal" title="Trivia">
|
||||
<color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="titleShadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="highlighted">
|
||||
<color key="titleColor" red="0.3333333432674408" green="0.3333333432674408" blue="0.3333333432674408" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="focused">
|
||||
<color key="titleShadowColor" red="1" green="0.14913141730000001" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<connections>
|
||||
<action selector="trivia:" destination="-1" eventType="primaryActionTriggered" id="62"/>
|
||||
</connections>
|
||||
</button>
|
||||
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="4" customClass="UIFontButton">
|
||||
<rect key="frame" x="679" y="611" width="220" height="75"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="75" id="eaH-lw-CPs"/>
|
||||
<constraint firstAttribute="width" constant="220" id="wG6-iQ-uaK"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name=".AppleSystemUIFont" family=".AppleSystemUIFont" pointSize="64"/>
|
||||
<size key="titleShadowOffset" width="2" height="2"/>
|
||||
<state key="normal" title="Resume">
|
||||
<color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="titleShadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="highlighted">
|
||||
<color key="titleColor" red="0.3333333432674408" green="0.3333333432674408" blue="0.3333333432674408" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="focused">
|
||||
<color key="titleShadowColor" red="1" green="0.14913141730000001" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<connections>
|
||||
<action selector="resume:" destination="-1" eventType="primaryActionTriggered" id="9"/>
|
||||
</connections>
|
||||
</button>
|
||||
<imageView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" image="star_icon" translatesAutoresizingMaskIntoConstraints="NO" id="64">
|
||||
<rect key="frame" x="913" y="629" width="41" height="39"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="41" id="SFO-kA-S9U"/>
|
||||
<constraint firstAttribute="height" constant="39" id="iKe-DI-u4N"/>
|
||||
</constraints>
|
||||
</imageView>
|
||||
</subviews>
|
||||
<color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="bottom" secondItem="4" secondAttribute="bottom" constant="82" id="0Ta-fu-tte"/>
|
||||
<constraint firstItem="32" firstAttribute="top" secondItem="47" secondAttribute="bottom" constant="41" id="4XP-oO-1uq"/>
|
||||
<constraint firstAttribute="bottom" secondItem="64" secondAttribute="bottom" constant="100" id="8da-Pq-kOI"/>
|
||||
<constraint firstItem="56" firstAttribute="leading" secondItem="ZHW-nn-VCz" secondAttribute="leading" constant="168" id="CTM-Qn-smZ"/>
|
||||
<constraint firstItem="5" firstAttribute="leading" secondItem="ZHW-nn-VCz" secondAttribute="leading" constant="88" id="FKW-a6-pbe"/>
|
||||
<constraint firstAttribute="height" constant="768" id="P9e-vG-Wxg"/>
|
||||
<constraint firstItem="47" firstAttribute="leading" secondItem="ZHW-nn-VCz" secondAttribute="leading" constant="105" id="Tcj-Pw-Jea"/>
|
||||
<constraint firstAttribute="trailing" secondItem="64" secondAttribute="trailing" constant="70" id="U1V-Fl-Qf9"/>
|
||||
<constraint firstItem="32" firstAttribute="leading" secondItem="ZHW-nn-VCz" secondAttribute="leading" constant="137" id="VHO-5V-quY"/>
|
||||
<constraint firstItem="64" firstAttribute="leading" secondItem="4" secondAttribute="trailing" constant="14" id="X3Q-Ip-GBz"/>
|
||||
<constraint firstItem="5" firstAttribute="top" secondItem="ZHW-nn-VCz" secondAttribute="top" constant="259" id="avY-zN-hgb"/>
|
||||
<constraint firstAttribute="width" constant="1024" id="ebD-OJ-st4"/>
|
||||
<constraint firstItem="56" firstAttribute="top" secondItem="32" secondAttribute="bottom" constant="37" id="xXq-jw-ui7"/>
|
||||
<constraint firstItem="47" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="39" id="yB3-h9-yox"/>
|
||||
</constraints>
|
||||
</view>
|
||||
</subviews>
|
||||
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<constraints>
|
||||
<constraint firstItem="ZHW-nn-VCz" firstAttribute="centerY" secondItem="1" secondAttribute="centerY" id="27q-jF-ho4"/>
|
||||
<constraint firstItem="ZHW-nn-VCz" firstAttribute="centerX" secondItem="1" secondAttribute="centerX" id="qQS-Gt-4G2"/>
|
||||
</constraints>
|
||||
<nil key="simulatedStatusBarMetrics"/>
|
||||
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
|
||||
</view>
|
||||
</objects>
|
||||
<resources>
|
||||
<image name="main_bg" width="480" height="320"/>
|
||||
<image name="star_icon" width="41" height="39"/>
|
||||
</resources>
|
||||
</document>
|
232
wolf3d/code/iphone/Resources-tvOS/views/SkillView-tvos.xib
Normal file
|
@ -0,0 +1,232 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document type="com.apple.InterfaceBuilder.AppleTV.XIB" version="3.0" toolsVersion="14109" targetRuntime="AppleTV" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
|
||||
<device id="appleTV" orientation="landscape">
|
||||
<adaptation id="light"/>
|
||||
</device>
|
||||
<dependencies>
|
||||
<deployment identifier="tvOS"/>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14088"/>
|
||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
||||
</dependencies>
|
||||
<objects>
|
||||
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="SkillViewController">
|
||||
<connections>
|
||||
<outlet property="selectionFrame" destination="35" id="37"/>
|
||||
<outlet property="view" destination="1" id="3"/>
|
||||
</connections>
|
||||
</placeholder>
|
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
|
||||
<view contentMode="scaleToFill" id="1">
|
||||
<rect key="frame" x="0.0" y="0.0" width="1024" height="768"/>
|
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||
<subviews>
|
||||
<imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleAspectFill" fixedFrame="YES" image="wolf_bg" translatesAutoresizingMaskIntoConstraints="NO" id="4">
|
||||
<rect key="frame" x="0.0" y="0.0" width="1024" height="768"/>
|
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||
</imageView>
|
||||
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="iIi-X8-EoY">
|
||||
<rect key="frame" x="205" y="0.0" width="614" height="768"/>
|
||||
<subviews>
|
||||
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="highlight_bracket" translatesAutoresizingMaskIntoConstraints="NO" id="35">
|
||||
<rect key="frame" x="20" y="61" width="623" height="174"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="174" id="Kiz-t2-Zq3"/>
|
||||
<constraint firstAttribute="width" constant="623" id="mFr-Mw-nkB"/>
|
||||
</constraints>
|
||||
</imageView>
|
||||
<imageView userInteractionEnabled="NO" tag="1" contentMode="scaleToFill" image="episode_bracket" translatesAutoresizingMaskIntoConstraints="NO" id="12">
|
||||
<rect key="frame" x="4" y="52" width="606" height="151"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="606" id="9E5-cQ-9H0"/>
|
||||
<constraint firstAttribute="height" constant="151" id="vLE-sC-Wug"/>
|
||||
</constraints>
|
||||
</imageView>
|
||||
<imageView userInteractionEnabled="NO" tag="2" contentMode="scaleToFill" image="episode_bracket" translatesAutoresizingMaskIntoConstraints="NO" id="13">
|
||||
<rect key="frame" x="4" y="223" width="606" height="151"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="606" id="JQ6-uc-QEt"/>
|
||||
<constraint firstAttribute="height" constant="151" id="gGz-6v-dqx"/>
|
||||
</constraints>
|
||||
</imageView>
|
||||
<imageView userInteractionEnabled="NO" tag="3" contentMode="scaleToFill" image="episode_bracket" translatesAutoresizingMaskIntoConstraints="NO" id="14">
|
||||
<rect key="frame" x="8" y="394" width="606" height="151"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="151" id="NkK-Dw-YE6"/>
|
||||
<constraint firstAttribute="width" constant="606" id="kDn-jU-JUA"/>
|
||||
</constraints>
|
||||
</imageView>
|
||||
<imageView userInteractionEnabled="NO" tag="4" contentMode="scaleToFill" image="episode_bracket" translatesAutoresizingMaskIntoConstraints="NO" id="15">
|
||||
<rect key="frame" x="8" y="565" width="606" height="151"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="151" id="Tf1-N9-a3N"/>
|
||||
<constraint firstAttribute="width" constant="606" id="bkM-iv-Sjt"/>
|
||||
</constraints>
|
||||
</imageView>
|
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Difficulty Select" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="11" customClass="UIFontLabel">
|
||||
<rect key="frame" x="0.0" y="0.0" width="295" height="52"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="52" id="OkH-YP-XNl"/>
|
||||
<constraint firstAttribute="width" constant="295" id="euI-Bw-9tY"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name=".AppleSystemUIFont" family=".AppleSystemUIFont" pointSize="44"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</label>
|
||||
<button autoresizesSubviews="NO" opaque="NO" contentMode="scaleAspectFit" contentHorizontalAlignment="left" contentVerticalAlignment="bottom" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="21" customClass="UIFontButton">
|
||||
<rect key="frame" x="22" y="52" width="588" height="151"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="151" id="Obp-mG-K5d"/>
|
||||
<constraint firstAttribute="width" constant="588" id="bzA-pg-T3T"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name="Helvetica-Bold" family="Helvetica" pointSize="48"/>
|
||||
<state key="normal" title=" Can I Play, Daddy?">
|
||||
<color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="highlighted" backgroundImage="highlight_bracket">
|
||||
<color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="focused" backgroundImage="highlight_bracket"/>
|
||||
<connections>
|
||||
<action selector="canIPlayDaddy:" destination="-1" eventType="primaryActionTriggered" id="31"/>
|
||||
</connections>
|
||||
</button>
|
||||
<button autoresizesSubviews="NO" opaque="NO" contentMode="scaleAspectFit" contentHorizontalAlignment="left" contentVerticalAlignment="bottom" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="22" customClass="UIFontButton">
|
||||
<rect key="frame" x="22" y="223" width="588" height="151"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="151" id="Fxj-mx-DmE"/>
|
||||
<constraint firstAttribute="width" constant="588" id="ZV4-Zp-TOw"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name="Helvetica-Bold" family="Helvetica" pointSize="48"/>
|
||||
<state key="normal" title=" Don't Hurt Me">
|
||||
<color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="highlighted" backgroundImage="highlight_bracket">
|
||||
<color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="focused" backgroundImage="highlight_bracket"/>
|
||||
<connections>
|
||||
<action selector="dontHurtMe:" destination="-1" eventType="primaryActionTriggered" id="32"/>
|
||||
</connections>
|
||||
</button>
|
||||
<button autoresizesSubviews="NO" opaque="NO" contentMode="scaleAspectFit" contentHorizontalAlignment="left" contentVerticalAlignment="bottom" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="23" customClass="UIFontButton">
|
||||
<rect key="frame" x="22" y="394" width="592" height="151"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="592" id="Hfo-w3-War"/>
|
||||
<constraint firstAttribute="height" constant="151" id="Kr1-i5-WY9"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name="Helvetica-Bold" family="Helvetica" pointSize="48"/>
|
||||
<state key="normal" title=" Bring 'Em On!">
|
||||
<color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="highlighted" backgroundImage="highlight_bracket">
|
||||
<color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="focused" backgroundImage="highlight_bracket"/>
|
||||
<connections>
|
||||
<action selector="BringEmOn:" destination="-1" eventType="primaryActionTriggered" id="30"/>
|
||||
</connections>
|
||||
</button>
|
||||
<button autoresizesSubviews="NO" opaque="NO" contentMode="scaleAspectFit" contentHorizontalAlignment="left" contentVerticalAlignment="bottom" lineBreakMode="wordWrap" translatesAutoresizingMaskIntoConstraints="NO" id="24" customClass="UIFontButton">
|
||||
<rect key="frame" x="22" y="565" width="592" height="151"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="151" id="h01-jq-l52"/>
|
||||
<constraint firstAttribute="width" constant="592" id="uS6-bZ-1CU"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name="Helvetica-Bold" family="Helvetica" pointSize="48"/>
|
||||
<state key="normal" title=" I am Death Incarnate!">
|
||||
<color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="highlighted" backgroundImage="highlight_bracket">
|
||||
<color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="focused" backgroundImage="highlight_bracket"/>
|
||||
<connections>
|
||||
<action selector="IAmDeathIncarnate:" destination="-1" eventType="primaryActionTriggered" id="33"/>
|
||||
</connections>
|
||||
</button>
|
||||
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="difficulty_head1" translatesAutoresizingMaskIntoConstraints="NO" id="R7G-C4-M3c">
|
||||
<rect key="frame" x="22" y="74" width="79" height="107"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="107" id="2VV-pk-fvE"/>
|
||||
<constraint firstAttribute="width" constant="79" id="khd-rC-AbQ"/>
|
||||
</constraints>
|
||||
</imageView>
|
||||
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="difficulty_head2" translatesAutoresizingMaskIntoConstraints="NO" id="fOA-bX-5bb">
|
||||
<rect key="frame" x="22" y="245" width="79" height="107"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="79" id="3h0-Og-8az"/>
|
||||
<constraint firstAttribute="height" constant="107" id="W5T-oN-h5H"/>
|
||||
</constraints>
|
||||
</imageView>
|
||||
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="difficulty_head3" translatesAutoresizingMaskIntoConstraints="NO" id="29L-lJ-brz">
|
||||
<rect key="frame" x="22" y="416" width="79" height="107"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="79" id="5IX-8G-Kjb"/>
|
||||
<constraint firstAttribute="height" constant="107" id="WED-Jv-m8h"/>
|
||||
</constraints>
|
||||
</imageView>
|
||||
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="difficulty_head4" translatesAutoresizingMaskIntoConstraints="NO" id="BXu-Um-H4P">
|
||||
<rect key="frame" x="22" y="587" width="79" height="107"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="107" id="DbQ-J5-HXx"/>
|
||||
<constraint firstAttribute="width" constant="79" id="YUq-R6-2o2"/>
|
||||
</constraints>
|
||||
</imageView>
|
||||
</subviews>
|
||||
<constraints>
|
||||
<constraint firstItem="12" firstAttribute="leading" secondItem="iIi-X8-EoY" secondAttribute="leading" constant="4" id="06J-2H-TAG"/>
|
||||
<constraint firstItem="11" firstAttribute="leading" secondItem="iIi-X8-EoY" secondAttribute="leading" id="3Ed-qt-EvU"/>
|
||||
<constraint firstItem="22" firstAttribute="top" secondItem="12" secondAttribute="bottom" constant="20" id="66N-sn-F57"/>
|
||||
<constraint firstItem="13" firstAttribute="top" secondItem="12" secondAttribute="bottom" constant="20" id="GeR-3T-tgP"/>
|
||||
<constraint firstItem="15" firstAttribute="leading" secondItem="iIi-X8-EoY" secondAttribute="leading" constant="8" id="Gnw-nf-Y3I"/>
|
||||
<constraint firstItem="24" firstAttribute="top" secondItem="14" secondAttribute="bottom" constant="20" id="IYI-EY-rXg"/>
|
||||
<constraint firstItem="22" firstAttribute="leading" secondItem="iIi-X8-EoY" secondAttribute="leading" constant="22" id="LJM-7y-aIT"/>
|
||||
<constraint firstItem="23" firstAttribute="leading" secondItem="iIi-X8-EoY" secondAttribute="leading" constant="22" id="Pc4-xp-2Jm"/>
|
||||
<constraint firstItem="BXu-Um-H4P" firstAttribute="top" secondItem="14" secondAttribute="bottom" constant="42" id="QIq-zG-WwF"/>
|
||||
<constraint firstItem="13" firstAttribute="leading" secondItem="iIi-X8-EoY" secondAttribute="leading" constant="4" id="Qmd-9y-fox"/>
|
||||
<constraint firstItem="29L-lJ-brz" firstAttribute="top" secondItem="13" secondAttribute="bottom" constant="42" id="RNB-Br-vOH"/>
|
||||
<constraint firstItem="14" firstAttribute="top" secondItem="13" secondAttribute="bottom" constant="20" id="Tpl-uO-bDZ"/>
|
||||
<constraint firstItem="14" firstAttribute="leading" secondItem="iIi-X8-EoY" secondAttribute="leading" constant="8" id="Utu-qW-InM"/>
|
||||
<constraint firstItem="fOA-bX-5bb" firstAttribute="top" secondItem="35" secondAttribute="bottom" constant="10" id="V7j-2U-pdQ"/>
|
||||
<constraint firstItem="15" firstAttribute="top" secondItem="14" secondAttribute="bottom" constant="20" id="Wuv-oQ-AsO"/>
|
||||
<constraint firstItem="11" firstAttribute="top" secondItem="iIi-X8-EoY" secondAttribute="top" id="Xym-TO-Z7L"/>
|
||||
<constraint firstItem="21" firstAttribute="leading" secondItem="iIi-X8-EoY" secondAttribute="leading" constant="22" id="Zez-0T-7KI"/>
|
||||
<constraint firstItem="R7G-C4-M3c" firstAttribute="leading" secondItem="iIi-X8-EoY" secondAttribute="leading" constant="22" id="bNY-qh-Wit"/>
|
||||
<constraint firstItem="24" firstAttribute="leading" secondItem="iIi-X8-EoY" secondAttribute="leading" constant="22" id="c7A-Hb-saF"/>
|
||||
<constraint firstItem="21" firstAttribute="top" secondItem="11" secondAttribute="bottom" id="dDE-Q5-Ug0"/>
|
||||
<constraint firstItem="29L-lJ-brz" firstAttribute="leading" secondItem="iIi-X8-EoY" secondAttribute="leading" constant="22" id="eU4-4g-Et8"/>
|
||||
<constraint firstItem="35" firstAttribute="top" secondItem="11" secondAttribute="bottom" constant="9" id="eaM-3g-H2i"/>
|
||||
<constraint firstAttribute="width" constant="614" id="ihM-wr-jPE"/>
|
||||
<constraint firstItem="12" firstAttribute="top" secondItem="11" secondAttribute="bottom" id="kS5-mJ-QBW"/>
|
||||
<constraint firstItem="fOA-bX-5bb" firstAttribute="leading" secondItem="iIi-X8-EoY" secondAttribute="leading" constant="22" id="l5u-97-pfE"/>
|
||||
<constraint firstItem="23" firstAttribute="top" secondItem="13" secondAttribute="bottom" constant="20" id="mK0-5q-UMu"/>
|
||||
<constraint firstItem="35" firstAttribute="leading" secondItem="iIi-X8-EoY" secondAttribute="leading" constant="20" id="nCZ-fG-smY"/>
|
||||
<constraint firstItem="BXu-Um-H4P" firstAttribute="leading" secondItem="iIi-X8-EoY" secondAttribute="leading" constant="22" id="uls-c2-fsE"/>
|
||||
<constraint firstItem="R7G-C4-M3c" firstAttribute="top" secondItem="11" secondAttribute="bottom" constant="22" id="y7r-hc-dRb"/>
|
||||
<constraint firstAttribute="height" constant="768" id="yzT-VR-85v"/>
|
||||
</constraints>
|
||||
</view>
|
||||
</subviews>
|
||||
<constraints>
|
||||
<constraint firstItem="iIi-X8-EoY" firstAttribute="centerY" secondItem="1" secondAttribute="centerY" id="BUg-tS-KdP"/>
|
||||
<constraint firstItem="iIi-X8-EoY" firstAttribute="centerX" secondItem="1" secondAttribute="centerX" id="D3j-po-LNv"/>
|
||||
<constraint firstItem="iIi-X8-EoY" firstAttribute="centerX" secondItem="1" secondAttribute="centerX" id="IDb-Kd-Xyy"/>
|
||||
</constraints>
|
||||
<nil key="simulatedStatusBarMetrics"/>
|
||||
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
|
||||
</view>
|
||||
</objects>
|
||||
<resources>
|
||||
<image name="difficulty_head1" width="64" height="87"/>
|
||||
<image name="difficulty_head2" width="60" height="82"/>
|
||||
<image name="difficulty_head3" width="60" height="78"/>
|
||||
<image name="difficulty_head4" width="59" height="79"/>
|
||||
<image name="episode_bracket" width="606" height="168"/>
|
||||
<image name="highlight_bracket" width="623" height="189"/>
|
||||
<image name="wolf_bg" width="480" height="320"/>
|
||||
</resources>
|
||||
</document>
|
348
wolf3d/code/iphone/Resources-tvOS/views/TriviaView-tvos.xib
Normal file
|
@ -0,0 +1,348 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<document type="com.apple.InterfaceBuilder.AppleTV.XIB" version="3.0" toolsVersion="14109" targetRuntime="AppleTV" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
|
||||
<device id="appleTV" orientation="landscape">
|
||||
<adaptation id="light"/>
|
||||
</device>
|
||||
<dependencies>
|
||||
<deployment identifier="tvOS"/>
|
||||
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="14088"/>
|
||||
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
||||
</dependencies>
|
||||
<objects>
|
||||
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="TriviaViewController">
|
||||
<connections>
|
||||
<outlet property="firstTrivia" destination="20" id="24"/>
|
||||
<outlet property="lastTrivia" destination="40" id="43"/>
|
||||
<outlet property="view" destination="1" id="3"/>
|
||||
</connections>
|
||||
</placeholder>
|
||||
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
|
||||
<view contentMode="scaleToFill" id="1">
|
||||
<rect key="frame" x="0.0" y="0.0" width="1024" height="768"/>
|
||||
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
|
||||
<subviews>
|
||||
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="zDA-qx-YSf">
|
||||
<rect key="frame" x="0.0" y="0.0" width="1024" height="768"/>
|
||||
<subviews>
|
||||
<imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="wolf_bg" translatesAutoresizingMaskIntoConstraints="NO" id="45">
|
||||
<rect key="frame" x="0.0" y="0.0" width="1024" height="768"/>
|
||||
</imageView>
|
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Trivia" textAlignment="center" lineBreakMode="tailTruncation" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="5" customClass="UIFontLabel">
|
||||
<rect key="frame" x="435" y="20" width="159" height="77"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="77" id="COf-TA-xjD"/>
|
||||
<constraint firstAttribute="width" constant="159" id="CQG-MV-Pvu"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name=".AppleSystemUIFont" family=".AppleSystemUIFont" pointSize="48"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="1" contentMode="left" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="11" baselineAdjustment="alignBaselines" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="20">
|
||||
<rect key="frame" x="155" y="140" width="713" height="400"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="713" id="8kJ-j2-Wml"/>
|
||||
<constraint firstAttribute="height" constant="400" id="ebZ-Yl-oMo"/>
|
||||
</constraints>
|
||||
<string key="text">ORIGINAL WOLF: The original release of Wolfenstein 3D only contained 3 Episodes. Episodes 4, 5, and 6 were sold separately as "The Nocturnal Missions", and were intended to act as a prequel to the original trilogy of Episodes. Subsequent releases of the game included all 6 Episodes together.</string>
|
||||
<fontDescription key="fontDescription" name="Helvetica" family="Helvetica" pointSize="30"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
<label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="2" contentMode="left" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="7" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="26">
|
||||
<rect key="frame" x="162" y="140" width="700" height="400"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="700" id="AdP-d7-jCi"/>
|
||||
<constraint firstAttribute="height" constant="400" id="C4Q-mS-yYb"/>
|
||||
</constraints>
|
||||
<string key="text">BJ, THE MAN: William Joseph Blazkowicz was born August 15, 1911, to Polish immigrants. Blazkowicz was a top spy for the Allied Forces, eventually receiving the Congressional Medal of Honor.</string>
|
||||
<fontDescription key="fontDescription" name="Helvetica" family="Helvetica" pointSize="30"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
<label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="3" contentMode="left" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="7" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="30">
|
||||
<rect key="frame" x="162" y="140" width="700" height="400"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="400" id="Qxx-CW-rnl"/>
|
||||
<constraint firstAttribute="width" constant="700" id="q44-oo-f9h"/>
|
||||
</constraints>
|
||||
<string key="text">BOX ART: Ken Rieger was the talented illustrator who created the cover art for Spear of Destiny, Wolfenstein3D and Commander Keen.</string>
|
||||
<fontDescription key="fontDescription" name="Helvetica" family="Helvetica" pointSize="30"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
<label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="4" contentMode="left" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="7" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="28">
|
||||
<rect key="frame" x="162" y="140" width="700" height="400"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="400" id="DAa-YL-ldr"/>
|
||||
<constraint firstAttribute="width" constant="700" id="T1F-2x-3Ke"/>
|
||||
</constraints>
|
||||
<string key="text">THE REAL SPEAR: The Spear of Destiny, also known as The Spear or The Holy Lance, is believed to have been the weapon used to pierce the side of Jesus Christ at the Crucifixion. The Spear soon became a symbol of God's favor and those who possessed it were believed to be invincible.</string>
|
||||
<fontDescription key="fontDescription" name="Helvetica" family="Helvetica" pointSize="30"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
<label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="5" contentMode="left" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="7" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="27">
|
||||
<rect key="frame" x="162" y="140" width="700" height="400"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="400" id="b9p-eX-x5q"/>
|
||||
<constraint firstAttribute="width" constant="700" id="j9u-5U-0f0"/>
|
||||
</constraints>
|
||||
<string key="text">THE SPEAR AND HITLER: Hitler is believed to have acquired the Spear at the beginning of WWII. Near the end of that war, it is rumored that General Patton discovered the Spear and that the downfall of Germany began that day. It is fabled that the U.S. was destined to succeed Germany as the New World Power once ownership of the Spear changed hands.</string>
|
||||
<fontDescription key="fontDescription" name="Helvetica" family="Helvetica" pointSize="30"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
<label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="6" contentMode="left" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="7" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="29">
|
||||
<rect key="frame" x="162" y="140" width="700" height="400"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="700" id="5MC-bN-noE"/>
|
||||
<constraint firstAttribute="height" constant="400" id="TuN-Bl-vhl"/>
|
||||
</constraints>
|
||||
<string key="text">DEATH DIMENSION: It is said that Hitler made a pact with the Angel of Death, promising the souls of his Nazi soldiers, to protect the Spear of Destiny.</string>
|
||||
<fontDescription key="fontDescription" name="Helvetica" family="Helvetica" pointSize="30"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
<label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="7" contentMode="left" text="GOD MODE: In the game, if you can access god mode, BJ's eyes will glow with eerie golden light." textAlignment="center" lineBreakMode="wordWrap" numberOfLines="7" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="32">
|
||||
<rect key="frame" x="162" y="140" width="700" height="400"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="400" id="Bk8-fv-ZsF"/>
|
||||
<constraint firstAttribute="width" constant="700" id="oMJ-2V-UXZ"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name="Helvetica" family="Helvetica" pointSize="30"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
<label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="8" contentMode="left" text="A PRINCE: Robert Prince, wrote the music for Commander Keen, Wolfenstein 3-D, and Doom." textAlignment="center" lineBreakMode="wordWrap" numberOfLines="7" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="31">
|
||||
<rect key="frame" x="162" y="140" width="700" height="400"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="700" id="e2d-ov-P5H"/>
|
||||
<constraint firstAttribute="height" constant="400" id="qVz-nH-S3D"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name="Helvetica" family="Helvetica" pointSize="30"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
<label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="9" contentMode="left" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="7" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="33">
|
||||
<rect key="frame" x="142" y="140" width="740" height="400"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="740" id="MiG-gl-d49"/>
|
||||
<constraint firstAttribute="height" constant="400" id="g9i-Vo-wTp"/>
|
||||
</constraints>
|
||||
<string key="text">DELAYED DEVELOPMENT: It is rumored that work on Spear of Destiny was hindered by the development team's time spent playing Fatal Fury (which Jay Wilbur called 'Fatal Productivity'), and Street Fighter II.</string>
|
||||
<fontDescription key="fontDescription" name="Helvetica" family="Helvetica" pointSize="30"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
<label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="10" contentMode="left" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="7" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="34">
|
||||
<rect key="frame" x="142" y="140" width="740" height="400"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="400" id="NfU-8Y-zvQ"/>
|
||||
<constraint firstAttribute="width" constant="740" id="ifC-b0-SkQ"/>
|
||||
</constraints>
|
||||
<string key="text">A MATTER OF DEGREES: John Carmack is known for his innovations in 3D graphics and rocketry but what is less known is that this self-taught engineer has no degrees - he dropped out of school after one semester.</string>
|
||||
<fontDescription key="fontDescription" name="Helvetica" family="Helvetica" pointSize="30"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
<label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="11" contentMode="left" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="7" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="35">
|
||||
<rect key="frame" x="162" y="140" width="700" height="400"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="400" id="rFR-Mv-5wY"/>
|
||||
<constraint firstAttribute="width" constant="700" id="xzI-60-TBu"/>
|
||||
</constraints>
|
||||
<string key="text">THE CARMACK: John Carmack, one of the founders of id Software, preferred to work at a pizza joint and make games rather than go to college. His favorite programming food is pizza and diet coke.</string>
|
||||
<fontDescription key="fontDescription" name="Helvetica" family="Helvetica" pointSize="30"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
<label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="12" contentMode="left" text="DREAMING IN DIGITAL: Doom was reported to cause gamers to dream in pixels and lower productivity." textAlignment="center" lineBreakMode="wordWrap" numberOfLines="7" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="36">
|
||||
<rect key="frame" x="142" y="140" width="740" height="400"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="740" id="870-H5-7Sx"/>
|
||||
<constraint firstAttribute="height" constant="400" id="h2F-na-IMX"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name="Helvetica" family="Helvetica" pointSize="30"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
<label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="13" contentMode="left" text="KEEPING IT IN THE FAMILY: BJ is Commander Keen's grandfather." textAlignment="center" lineBreakMode="wordWrap" numberOfLines="7" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="37">
|
||||
<rect key="frame" x="212" y="140" width="600" height="400"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="400" id="9Pb-mr-9MF"/>
|
||||
<constraint firstAttribute="width" constant="600" id="LYQ-EM-Zol"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name="Helvetica" family="Helvetica" pointSize="30"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
<label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="14" contentMode="left" text="WHAT'S IN A NAME: The original name for Doom was "It's Green and Pissed"" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="7" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="38">
|
||||
<rect key="frame" x="242" y="140" width="540" height="400"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="540" id="WBl-Ko-5Yj"/>
|
||||
<constraint firstAttribute="height" constant="400" id="zv9-NE-fU9"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name="Helvetica" family="Helvetica" pointSize="30"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
<label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="15" contentMode="TopLeft" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="7" minimumFontSize="10" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="39">
|
||||
<rect key="frame" x="192" y="140" width="640" height="400"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="400" id="8aq-4H-iqY"/>
|
||||
<constraint firstAttribute="width" constant="640" id="kwn-gw-egu"/>
|
||||
</constraints>
|
||||
<string key="text">GIBS: Gibs, pronounced with a hard 'g', is sometimes confused as 'jibs' due to its pronunciation. The term came from the imagery of flying chicken giblets, or gibs for short.</string>
|
||||
<fontDescription key="fontDescription" name="Helvetica" family="Helvetica" pointSize="30"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
<label hidden="YES" opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="16" contentMode="left" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="7" minimumFontSize="10" translatesAutoresizingMaskIntoConstraints="NO" id="40">
|
||||
<rect key="frame" x="155" y="140" width="713" height="400"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="400" id="E7k-ER-ytb"/>
|
||||
<constraint firstAttribute="width" constant="713" id="b8O-6o-RzO"/>
|
||||
</constraints>
|
||||
<string key="text">WOLFENSTEIN 3D: The game was originally designed to have more complex gameplay. Though dragging bodies, stealth kills and uniforms were already programmed, it was decided that they slowed down the pace of the game and were removed.</string>
|
||||
<fontDescription key="fontDescription" name="Helvetica" family="Helvetica" pointSize="30"/>
|
||||
<color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="shadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<size key="shadowOffset" width="2" height="2"/>
|
||||
</label>
|
||||
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="16" customClass="UIFontButton">
|
||||
<rect key="frame" x="693" y="510" width="99" height="57"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="height" constant="57" id="FZ8-68-fbY"/>
|
||||
<constraint firstAttribute="width" constant="99" id="TLk-QT-fi2"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name=".AppleSystemUIFont" family=".AppleSystemUIFont" pointSize="48"/>
|
||||
<size key="titleShadowOffset" width="2" height="2"/>
|
||||
<state key="normal" title="Next">
|
||||
<color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="titleShadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="highlighted">
|
||||
<color key="titleColor" red="0.3333333432674408" green="0.3333333432674408" blue="0.3333333432674408" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="titleShadowColor" red="1" green="0.14913141730000001" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<connections>
|
||||
<action selector="nextTrivia:" destination="-1" eventType="primaryActionTriggered" id="18"/>
|
||||
</connections>
|
||||
</button>
|
||||
<button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="17" customClass="UIFontButton">
|
||||
<rect key="frame" x="440" y="510" width="187" height="57"/>
|
||||
<constraints>
|
||||
<constraint firstAttribute="width" constant="187" id="ZI1-OQ-z3K"/>
|
||||
<constraint firstAttribute="height" constant="57" id="ozg-nE-nwt"/>
|
||||
</constraints>
|
||||
<fontDescription key="fontDescription" name=".AppleSystemUIFont" family=".AppleSystemUIFont" pointSize="48"/>
|
||||
<size key="titleShadowOffset" width="2" height="2"/>
|
||||
<state key="normal" title="Previous">
|
||||
<color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="titleShadowColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<state key="highlighted">
|
||||
<color key="titleColor" red="0.3333333432674408" green="0.3333333432674408" blue="0.3333333432674408" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<color key="titleShadowColor" red="1" green="0.14913141730000001" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
</state>
|
||||
<connections>
|
||||
<action selector="previousTrivia:" destination="-1" eventType="primaryActionTriggered" id="19"/>
|
||||
</connections>
|
||||
</button>
|
||||
</subviews>
|
||||
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
||||
<constraints>
|
||||
<constraint firstItem="37" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="43" id="0Um-h0-nct"/>
|
||||
<constraint firstItem="40" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="155" id="4ci-Ma-zUe"/>
|
||||
<constraint firstItem="29" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="43" id="5rq-D4-8Kj"/>
|
||||
<constraint firstItem="36" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="142" id="68X-Kg-6hI"/>
|
||||
<constraint firstItem="26" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="43" id="6MK-bS-lg6"/>
|
||||
<constraint firstItem="40" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="43" id="6h6-uY-pTV"/>
|
||||
<constraint firstAttribute="bottom" secondItem="45" secondAttribute="bottom" id="6uB-6T-niw"/>
|
||||
<constraint firstItem="5" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="435" id="7NO-iK-wLK"/>
|
||||
<constraint firstItem="31" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="162" id="8AN-dK-Zks"/>
|
||||
<constraint firstItem="16" firstAttribute="top" secondItem="zDA-qx-YSf" secondAttribute="top" constant="510" id="Amm-Qa-yQ0"/>
|
||||
<constraint firstItem="37" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="212" id="Auw-Ok-gb5"/>
|
||||
<constraint firstAttribute="width" constant="1024" id="Bua-Fi-Lgp"/>
|
||||
<constraint firstItem="5" firstAttribute="top" secondItem="zDA-qx-YSf" secondAttribute="top" constant="20" id="Dsa-Ia-4wO"/>
|
||||
<constraint firstItem="34" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="142" id="IpT-vo-uAI"/>
|
||||
<constraint firstItem="28" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="43" id="Jd8-dH-eQr"/>
|
||||
<constraint firstItem="17" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="440" id="LaL-d4-o0e"/>
|
||||
<constraint firstItem="34" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="43" id="OdK-r8-2rD"/>
|
||||
<constraint firstItem="39" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="43" id="On8-ca-02o"/>
|
||||
<constraint firstItem="33" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="43" id="PXZ-Zk-pgU"/>
|
||||
<constraint firstItem="35" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="162" id="QF2-b2-dAf"/>
|
||||
<constraint firstItem="45" firstAttribute="top" secondItem="zDA-qx-YSf" secondAttribute="top" id="SFT-3y-GLb"/>
|
||||
<constraint firstItem="30" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="162" id="TWc-tF-z3s"/>
|
||||
<constraint firstItem="17" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="413" id="V6c-Hv-D0n"/>
|
||||
<constraint firstItem="16" firstAttribute="leading" secondItem="17" secondAttribute="trailing" constant="66" id="WBv-T7-Mm1"/>
|
||||
<constraint firstItem="20" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="43" id="X5u-BE-I2B"/>
|
||||
<constraint firstItem="36" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="43" id="XFM-yY-Lz8"/>
|
||||
<constraint firstItem="38" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="242" id="Yq4-fe-RVu"/>
|
||||
<constraint firstItem="20" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="155" id="afa-7G-5Y0"/>
|
||||
<constraint firstItem="32" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="43" id="cxW-9c-4Qu"/>
|
||||
<constraint firstItem="30" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="43" id="dIc-Jp-yuf"/>
|
||||
<constraint firstItem="39" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="192" id="dVr-1q-NAr"/>
|
||||
<constraint firstAttribute="height" constant="768" id="deS-Sv-dxc"/>
|
||||
<constraint firstItem="38" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="43" id="eYo-el-g4J"/>
|
||||
<constraint firstItem="35" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="43" id="efQ-gB-WZn"/>
|
||||
<constraint firstItem="29" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="162" id="frn-Yj-9o9"/>
|
||||
<constraint firstAttribute="trailing" secondItem="45" secondAttribute="trailing" id="gHj-qD-tPT"/>
|
||||
<constraint firstItem="28" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="162" id="hUA-k5-z5A"/>
|
||||
<constraint firstItem="33" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="142" id="mX8-m8-RXl"/>
|
||||
<constraint firstItem="26" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="162" id="nHk-ln-RcX"/>
|
||||
<constraint firstItem="27" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="43" id="oE3-tS-ryI"/>
|
||||
<constraint firstItem="27" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="162" id="ofe-g7-3hu"/>
|
||||
<constraint firstItem="45" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" id="sU0-9k-Ce5"/>
|
||||
<constraint firstItem="31" firstAttribute="top" secondItem="5" secondAttribute="bottom" constant="43" id="vzE-GI-KuW"/>
|
||||
<constraint firstItem="32" firstAttribute="leading" secondItem="zDA-qx-YSf" secondAttribute="leading" constant="162" id="yvq-sk-Vxx"/>
|
||||
</constraints>
|
||||
</view>
|
||||
</subviews>
|
||||
<color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
|
||||
<constraints>
|
||||
<constraint firstItem="zDA-qx-YSf" firstAttribute="centerX" secondItem="1" secondAttribute="centerX" id="QBa-gL-Bbm"/>
|
||||
<constraint firstItem="zDA-qx-YSf" firstAttribute="centerY" secondItem="1" secondAttribute="centerY" id="QQj-zc-wO0"/>
|
||||
</constraints>
|
||||
<nil key="simulatedStatusBarMetrics"/>
|
||||
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
|
||||
<point key="canvasLocation" x="34" y="54"/>
|
||||
</view>
|
||||
</objects>
|
||||
<resources>
|
||||
<image name="wolf_bg" width="480" height="320"/>
|
||||
</resources>
|
||||
</document>
|
|
@ -26,10 +26,12 @@
|
|||
|
||||
@interface SettingsViewController : UIViewController {
|
||||
|
||||
#if !TARGET_OS_TV
|
||||
IBOutlet UISlider * sensitivitySlider;
|
||||
IBOutlet UISlider * tiltMoveSpeedSlider;
|
||||
IBOutlet UISlider * tiltTurnSpeedSlider;
|
||||
IBOutlet UISlider * hudAlphaSlider;
|
||||
#endif
|
||||
|
||||
IBOutlet UILabel * sensitivityLabel;
|
||||
IBOutlet UILabel * tiltMoveSpeedLabel;
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#import "SkillViewController.h"
|
||||
#import "EpisodeViewController.h"
|
||||
#import "wolf_local.h"
|
||||
#import "wolf3dAppDelegate.h"
|
||||
|
||||
@interface SkillViewController ()
|
||||
|
||||
|
@ -65,6 +66,9 @@
|
|||
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
|
||||
- (void)viewDidLoad {
|
||||
[super viewDidLoad];
|
||||
#if TARGET_OS_TV
|
||||
self.selectionFrame.hidden = YES;
|
||||
#endif
|
||||
}
|
||||
|
||||
- (void)viewDidLayoutSubviews {
|
||||
|
@ -90,7 +94,8 @@
|
|||
}
|
||||
|
||||
- (IBAction)next:(id)sender {
|
||||
EpisodeViewController *evc = [[EpisodeViewController alloc] initWithNibName:@"EpisodeView" bundle:nil];
|
||||
wolf3dAppDelegate* app = (wolf3dAppDelegate*)[[UIApplication sharedApplication] delegate];
|
||||
EpisodeViewController *evc = [[EpisodeViewController alloc] initWithNibName:[app GetNibNameForDevice:@"EpisodeView"] bundle:nil];
|
||||
[self.navigationController pushViewController:evc animated:YES];
|
||||
[evc release];
|
||||
}
|
||||
|
@ -99,21 +104,33 @@
|
|||
-(IBAction)canIPlayDaddy:(id)sender {
|
||||
Cvar_SetValue( skill->name, 0 );
|
||||
[self setSelectionFrame];
|
||||
#if TARGET_OS_TV
|
||||
[self next:sender];
|
||||
#endif
|
||||
}
|
||||
|
||||
-(IBAction)dontHurtMe:(id)sender {
|
||||
Cvar_SetValue( skill->name, 1 );
|
||||
[self setSelectionFrame];
|
||||
#if TARGET_OS_TV
|
||||
[self next:sender];
|
||||
#endif
|
||||
}
|
||||
|
||||
-(IBAction)BringEmOn:(id)sender {
|
||||
Cvar_SetValue( skill->name, 2 );
|
||||
[self setSelectionFrame];
|
||||
#if TARGET_OS_TV
|
||||
[self next:sender];
|
||||
#endif
|
||||
}
|
||||
|
||||
-(IBAction)IAmDeathIncarnate:(id)sender {
|
||||
Cvar_SetValue( skill->name, 3 );
|
||||
[self setSelectionFrame];
|
||||
#if TARGET_OS_TV
|
||||
[self next:sender];
|
||||
#endif
|
||||
}
|
||||
|
||||
@end
|
||||
|
|
|
@ -25,6 +25,14 @@
|
|||
|
||||
@implementation UIFontButton
|
||||
|
||||
#if TARGET_OS_TV
|
||||
|
||||
- (BOOL)canBecomeFocused {
|
||||
return YES;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
- (void)awakeFromNib {
|
||||
[super awakeFromNib];
|
||||
CGFloat points = self.titleLabel.font.pointSize;
|
||||
|
|
|
@ -31,21 +31,31 @@
|
|||
Provides a basic pop-up message box
|
||||
===================================
|
||||
*/
|
||||
|
||||
// For now, no message boxes will be shown in tvOS. The messages will just go into oblivion.
|
||||
// We need to transfer it to use UIAlertViewControllers and also be able to be presented from a utility class
|
||||
// and I just don't want to spend the time on that right now -tkidd
|
||||
|
||||
#if !TARGET_OS_TV
|
||||
UIAlertView *alert;
|
||||
#endif
|
||||
|
||||
void InitAlert()
|
||||
{
|
||||
alert = [[UIAlertView alloc] initWithTitle:@"Title"
|
||||
#if !TARGET_OS_TV
|
||||
alert = [[UIAlertView alloc] initWithTitle:@"Title"
|
||||
message:@"Message"
|
||||
delegate:nil
|
||||
cancelButtonTitle:@"OK"
|
||||
otherButtonTitles: nil];
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
void iphoneMessageBox(char *title, char *message)
|
||||
{
|
||||
//check if alert exists and initialize if it isn't
|
||||
#if !TARGET_OS_TV
|
||||
if (!alert)
|
||||
{
|
||||
InitAlert();
|
||||
|
@ -58,11 +68,14 @@ void iphoneMessageBox(char *title, char *message)
|
|||
alert.message = nsMessage;
|
||||
|
||||
[alert show];
|
||||
#endif
|
||||
}
|
||||
|
||||
void iphoneKillMessageBox()
|
||||
{
|
||||
[alert dismissWithClickedButtonIndex:alert.cancelButtonIndex animated:NO];
|
||||
#if !TARGET_OS_TV
|
||||
[alert dismissWithClickedButtonIndex:alert.cancelButtonIndex animated:NO];
|
||||
#endif
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -74,6 +87,7 @@ void iphoneKillMessageBox()
|
|||
*/
|
||||
void iphoneNewMessageBox(char *title, char *message)
|
||||
{
|
||||
#if !TARGET_OS_TV
|
||||
UIAlertView *newAlert;
|
||||
newAlert = [[UIAlertView alloc] initWithTitle:@"Title"
|
||||
message:@"Message"
|
||||
|
@ -90,6 +104,7 @@ void iphoneNewMessageBox(char *title, char *message)
|
|||
|
||||
[newAlert show];
|
||||
[newAlert release];
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
@ -103,19 +118,24 @@ void iphoneNewMessageBox(char *title, char *message)
|
|||
ClickedButton call.
|
||||
===================================
|
||||
*/
|
||||
#if !TARGET_OS_TV
|
||||
UIAlertView *alertYesNo;
|
||||
#endif
|
||||
|
||||
void InitAlertYesNo()
|
||||
{
|
||||
alertYesNo = [[UIAlertView alloc] initWithTitle:@"Title"
|
||||
#if !TARGET_OS_TV
|
||||
alertYesNo = [[UIAlertView alloc] initWithTitle:@"Title"
|
||||
message:@"Message"
|
||||
delegate:(wolf3dAppDelegate *)[UIApplication sharedApplication].delegate//nil
|
||||
cancelButtonTitle:@"No"
|
||||
otherButtonTitles:@"Yes", nil];
|
||||
otherButtonTitles:@"Yes", nil];
|
||||
#endif
|
||||
}
|
||||
|
||||
void iphoneYesNoBox(char *title, char *message)
|
||||
{
|
||||
#if !TARGET_OS_TV
|
||||
if (!alertYesNo)
|
||||
{
|
||||
InitAlertYesNo();
|
||||
|
@ -128,5 +148,6 @@ void iphoneYesNoBox(char *title, char *message)
|
|||
alertYesNo.message = nsMessage;
|
||||
|
||||
[alertYesNo show];
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -106,6 +106,9 @@ int TestURLConnection()
|
|||
//-----------------------------
|
||||
void OpenURLConnection( const char *url )
|
||||
{
|
||||
// the entire bit with downloading the SOD expansion is disabled on tvOS for now -tkidd
|
||||
|
||||
#if !TARGET_OS_TV
|
||||
Com_Printf( "ConnectURL char *: %s\n", url );
|
||||
|
||||
//convert url to nsstring
|
||||
|
@ -115,7 +118,7 @@ void OpenURLConnection( const char *url )
|
|||
NSURLRequest *theRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:nssURL]
|
||||
cachePolicy:NSURLRequestUseProtocolCachePolicy
|
||||
timeoutInterval:60.0];
|
||||
|
||||
|
||||
// create the connection with the request
|
||||
// and start loading the data
|
||||
NSURLConnection *theConnection=[[NSURLConnection alloc] initWithRequest:theRequest
|
||||
|
@ -132,6 +135,7 @@ void OpenURLConnection( const char *url )
|
|||
//return to main menu
|
||||
menuState = IPM_MAIN;
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
//============================
|
||||
|
|
|
@ -111,7 +111,10 @@ void DownloadURLConnection( char *url )
|
|||
|
||||
|
||||
//convert url to nsstring
|
||||
NSString *nssURL = [NSString stringWithUTF8String: url];
|
||||
// the entire bit with downloading user maps is disabled on tvOS for now -tkidd
|
||||
|
||||
#if !TARGET_OS_TV
|
||||
NSString *nssURL = [NSString stringWithUTF8String: url];
|
||||
|
||||
// create the request
|
||||
NSURLRequest *theRequest=[NSURLRequest requestWithURL:[NSURL URLWithString:nssURL]
|
||||
|
@ -136,6 +139,7 @@ void DownloadURLConnection( char *url )
|
|||
}
|
||||
|
||||
menuState = IPM_DOWNLOADPROGRESS;
|
||||
#endif
|
||||
}
|
||||
|
||||
unsigned int userDataAmount = 0;
|
||||
|
|
|
@ -1933,14 +1933,23 @@ void iphoneFrame() {
|
|||
iphoneDrawNotifyText();
|
||||
|
||||
//gsh
|
||||
#if !TARGET_OS_TV
|
||||
iphoneDrawReturnButton();
|
||||
#endif
|
||||
|
||||
iphoneDrawMapView();
|
||||
|
||||
iphoneDrawFace();
|
||||
|
||||
iphoneDrawNumber( huds.ammo.x + huds.ammo.width / 2, huds.ammo.y, Player.ammo[AMMO_BULLETS], 48, 48 );
|
||||
#if !TARGET_OS_TV
|
||||
|
||||
// TODO: make the ammo count scooch over for the notch when the iPhone X is being held with the notch to the right.
|
||||
iphoneDrawNumber( huds.ammo.x + huds.ammo.width / 2, huds.ammo.y, Player.ammo[AMMO_BULLETS], 48 * screenScale, 48 * screenScale );
|
||||
#else
|
||||
iphoneDrawNumber( huds.ammo.x + huds.ammo.width / 2, (viddef.height - huds.ammo.height) - 2, Player.ammo[AMMO_BULLETS], 48 * screenScale, 48 * screenScale );
|
||||
#endif
|
||||
|
||||
#if !TARGET_OS_TV
|
||||
if ( hideControls->value != 1 ) {
|
||||
iphoneDrawHudControl( &huds.forwardStick );
|
||||
iphoneDrawHudControl( &huds.sideStick );
|
||||
|
@ -1955,6 +1964,7 @@ void iphoneFrame() {
|
|||
if ( iphoneDrawHudButton( &huds.map ) ) {
|
||||
iphoneOpenAutomap();
|
||||
}
|
||||
#endif
|
||||
|
||||
Client_Screen_DrawConsole();
|
||||
|
||||
|
@ -2009,3 +2019,9 @@ void iPhoneSetRightTriggerPressed( bool _rightTriggerPressed )
|
|||
{
|
||||
rightTriggerPressed = _rightTriggerPressed;
|
||||
}
|
||||
|
||||
void iPhoneSetButtonAPressed( bool _buttonAPressed )
|
||||
{
|
||||
buttonAPressed = _buttonAPressed;
|
||||
}
|
||||
|
||||
|
|
|
@ -3276,8 +3276,12 @@ void iphoneIntermission() {
|
|||
//----------------------
|
||||
// tap for next level
|
||||
//----------------------
|
||||
if ( !TouchReleased( 0, 0, viddef.width, viddef.height ) ) {
|
||||
return;
|
||||
if (buttonAPressed) {
|
||||
// do nothing!
|
||||
} else if ( !TouchReleased( 0, 0, viddef.width, viddef.height ) ) {
|
||||
if (!buttonAPressed) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
menuState = IPM_GAME;
|
||||
|
|
|
@ -162,6 +162,7 @@ Called by updatedTransactions when a request fails.
|
|||
{
|
||||
if (transaction.error.code != SKErrorPaymentCancelled)
|
||||
{
|
||||
#if !TARGET_OS_TV
|
||||
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"In-App Purchase error"
|
||||
message:[transaction.error localizedDescription]
|
||||
delegate:nil
|
||||
|
@ -170,6 +171,7 @@ Called by updatedTransactions when a request fails.
|
|||
|
||||
[alert show];
|
||||
[alert release];
|
||||
#endif
|
||||
}
|
||||
[[SKPaymentQueue defaultQueue] finishTransaction: transaction];
|
||||
|
||||
|
@ -286,6 +288,7 @@ void InAppPurchaseStartPurchase( const char * productIdentifier ) {
|
|||
} else {
|
||||
// User has disabled In-App purchases in settings. Kindly remind him that he can
|
||||
// enable purchases again.
|
||||
#if !TARGET_OS_TV
|
||||
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"In-App Purchases are disabled"
|
||||
message:@"You can enable In-App purchases in your device's settings."
|
||||
delegate:nil
|
||||
|
@ -294,6 +297,7 @@ void InAppPurchaseStartPurchase( const char * productIdentifier ) {
|
|||
|
||||
[alert show];
|
||||
[alert release];
|
||||
#endif
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -27,11 +27,13 @@
|
|||
#import "wolf3dAppDelegate.h"
|
||||
|
||||
#import <AudioToolbox/AudioServices.h>
|
||||
#include <AudioToolbox/AudioToolbox.h>
|
||||
#import <UIKit/UIDevice.h>
|
||||
#import <Foundation/NSUserDefaults.h>
|
||||
|
||||
void interruptionListener( void *inUserData, UInt32 inInterruption)
|
||||
{
|
||||
#if !TARGET_OS_TV
|
||||
printf("Session interrupted! --- %s ---", inInterruption == kAudioSessionBeginInterruption ? "Begin Interruption" : "End Interruption");
|
||||
|
||||
if ( inInterruption == kAudioSessionEndInterruption )
|
||||
|
@ -50,6 +52,7 @@ void interruptionListener( void *inUserData, UInt32 inInterruption)
|
|||
// handle error
|
||||
}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
int otherAudioIsPlaying;
|
||||
|
|
|
@ -340,6 +340,7 @@ void iPhoneSetLeftThumbstickYValue( float _leftThumbstickYAxis );
|
|||
void iPhoneSetRightThumbstickXValue( float _rightThumbstickXAxis );
|
||||
void iPhoneSetRightThumbstickYValue( float _rightThumbstickYAxis );
|
||||
void iPhoneSetRightTriggerPressed( bool _rightTriggerPressed );
|
||||
void iPhoneSetButtonAPressed( bool _buttonAPressed );
|
||||
|
||||
void iphoneResume(void);
|
||||
|
||||
|
|
|
@ -182,8 +182,198 @@
|
|||
72B5FF390F7E5C3D00C8A372 /* hud.c in Sources */ = {isa = PBXBuildFile; fileRef = 72B5FF380F7E5C3D00C8A372 /* hud.c */; };
|
||||
A1129052206A808100BEDEB5 /* Launch Screen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = A1129051206A808100BEDEB5 /* Launch Screen.storyboard */; };
|
||||
A112905E206DF0DB00BEDEB5 /* header_advanced.png in Resources */ = {isa = PBXBuildFile; fileRef = A112905D206DF0DA00BEDEB5 /* header_advanced.png */; };
|
||||
A12D765020913DB900B4A4BB /* MainMenuView-tvos.xib in Resources */ = {isa = PBXBuildFile; fileRef = A12D764D20913B9C00B4A4BB /* MainMenuView-tvos.xib */; };
|
||||
A12D765120913E1900B4A4BB /* base in Resources */ = {isa = PBXBuildFile; fileRef = A19BF3691FD6E4C800DAC4C1 /* base */; };
|
||||
A12D76542091491900B4A4BB /* CreditsView-tvos.xib in Resources */ = {isa = PBXBuildFile; fileRef = A12D76522091491500B4A4BB /* CreditsView-tvos.xib */; };
|
||||
A12D76582091496E00B4A4BB /* EpisodeView-tvos.xib in Resources */ = {isa = PBXBuildFile; fileRef = A12D76572091496E00B4A4BB /* EpisodeView-tvos.xib */; };
|
||||
A12D765A2091498000B4A4BB /* LegalView-tvos.xib in Resources */ = {isa = PBXBuildFile; fileRef = A12D76592091498000B4A4BB /* LegalView-tvos.xib */; };
|
||||
A12D765C209149A100B4A4BB /* LevelSelectView-tvos.xib in Resources */ = {isa = PBXBuildFile; fileRef = A12D765B209149A100B4A4BB /* LevelSelectView-tvos.xib */; };
|
||||
A12D765E209149BF00B4A4BB /* SkillView-tvos.xib in Resources */ = {isa = PBXBuildFile; fileRef = A12D765D209149BF00B4A4BB /* SkillView-tvos.xib */; };
|
||||
A12D7660209149CF00B4A4BB /* TriviaView-tvos.xib in Resources */ = {isa = PBXBuildFile; fileRef = A12D765F209149CF00B4A4BB /* TriviaView-tvos.xib */; };
|
||||
A12D766520914F8700B4A4BB /* EpisodeCell-tvos.xib in Resources */ = {isa = PBXBuildFile; fileRef = A12D766320914F8700B4A4BB /* EpisodeCell-tvos.xib */; };
|
||||
A1337A1A2090BAE400F4D670 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A1337A192090BAE400F4D670 /* Assets.xcassets */; };
|
||||
A1337A282090BBA700F4D670 /* CreditsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D5C0CF613DF9A5D008ECBD1 /* CreditsViewController.m */; };
|
||||
A1337A292090BBA700F4D670 /* EpisodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D5C0C2A13DF6836008ECBD1 /* EpisodeViewController.m */; };
|
||||
A1337A2A2090BBA700F4D670 /* LegalViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D5C0CF913DF9A8E008ECBD1 /* LegalViewController.m */; };
|
||||
A1337A2B2090BBA700F4D670 /* LevelSelectViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D5C0C4A13DF800E008ECBD1 /* LevelSelectViewController.m */; };
|
||||
A1337A2C2090BBA700F4D670 /* MainMenuViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D86CF8C13DDE51800186487 /* MainMenuViewController.m */; };
|
||||
A1337A2D2090BBA700F4D670 /* wolf3dViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D3ED73E13BF554400C5B1DF /* wolf3dViewController.m */; };
|
||||
A1337A2E2090BBA700F4D670 /* TriviaViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D5C0DE113E05D4D008ECBD1 /* TriviaViewController.m */; };
|
||||
A1337A2F2090BBA700F4D670 /* SkillViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D10C3E313F33AB700DF5856 /* SkillViewController.m */; };
|
||||
A1337A302090BC4C00F4D670 /* EAGLView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7229CE460F6C89F8004123C5 /* EAGLView.m */; };
|
||||
A1337A312090BC6C00F4D670 /* gles_glue.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CE540F6C8CDE004123C5 /* gles_glue.c */; };
|
||||
A1337A322090BC6C00F4D670 /* hud.c in Sources */ = {isa = PBXBuildFile; fileRef = 72B5FF380F7E5C3D00C8A372 /* hud.c */; };
|
||||
A1337A332090BC6C00F4D670 /* iphone_alerts.m in Sources */ = {isa = PBXBuildFile; fileRef = ED0A8D0C1069ACA8001E0547 /* iphone_alerts.m */; };
|
||||
A1337A342090BC6C00F4D670 /* iphone_downloadSOD.m in Sources */ = {isa = PBXBuildFile; fileRef = ED0A8D0D1069ACA8001E0547 /* iphone_downloadSOD.m */; };
|
||||
A1337A352090BC6C00F4D670 /* iphone_downloadUserMap.m in Sources */ = {isa = PBXBuildFile; fileRef = ED0A8D0E1069ACA8001E0547 /* iphone_downloadUserMap.m */; };
|
||||
A1337A362090BC6C00F4D670 /* iphone_loop.c in Sources */ = {isa = PBXBuildFile; fileRef = 43CF03090F56D5C200E4A23D /* iphone_loop.c */; };
|
||||
A1337A372090BC6C00F4D670 /* iphone_main.c in Sources */ = {isa = PBXBuildFile; fileRef = 43E8D2DF0F4FC61E003F09B2 /* iphone_main.c */; };
|
||||
A1337A382090BC6C00F4D670 /* iphone_mapselector.c in Sources */ = {isa = PBXBuildFile; fileRef = ED0A8D0F1069ACA8001E0547 /* iphone_mapselector.c */; };
|
||||
A1337A392090BC6C00F4D670 /* iphone_menus.c in Sources */ = {isa = PBXBuildFile; fileRef = 72A7E8F60F5F2063005B83C0 /* iphone_menus.c */; };
|
||||
A1337A3A2090BC6C00F4D670 /* iphone_store.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D24009D13D89BF4009FC7A7 /* iphone_store.m */; };
|
||||
A1337A3B2090BC6C00F4D670 /* iphone_sys.m in Sources */ = {isa = PBXBuildFile; fileRef = 43AF6B940F996DA200777569 /* iphone_sys.m */; };
|
||||
A1337A3C2090BC6C00F4D670 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 29B97316FDCFA39411CA2CEA /* main.m */; };
|
||||
A1337A3D2090BC6C00F4D670 /* MissionTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D5C0FD713E10204008ECBD1 /* MissionTableViewCell.m */; };
|
||||
A1337A3E2090BC8700F4D670 /* bitwise.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC5D0F6B3295004123C5 /* bitwise.c */; settings = {COMPILER_FLAGS = "-w"; }; };
|
||||
A1337A3F2090BC8700F4D670 /* block.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC5E0F6B3295004123C5 /* block.c */; settings = {COMPILER_FLAGS = "-w"; }; };
|
||||
A1337A402090BC8700F4D670 /* codebook.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC600F6B3295004123C5 /* codebook.c */; settings = {COMPILER_FLAGS = "-w"; }; };
|
||||
A1337A412090BC8700F4D670 /* floor0.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC640F6B3295004123C5 /* floor0.c */; settings = {COMPILER_FLAGS = "-w"; }; };
|
||||
A1337A422090BC8700F4D670 /* floor1.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC650F6B3295004123C5 /* floor1.c */; settings = {COMPILER_FLAGS = "-w"; }; };
|
||||
A1337A432090BC8700F4D670 /* framing.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC660F6B3295004123C5 /* framing.c */; settings = {COMPILER_FLAGS = "-w"; }; };
|
||||
A1337A442090BC8700F4D670 /* info.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC670F6B3295004123C5 /* info.c */; settings = {COMPILER_FLAGS = "-w"; }; };
|
||||
A1337A452090BC8700F4D670 /* mapping0.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC6C0F6B3295004123C5 /* mapping0.c */; settings = {COMPILER_FLAGS = "-w"; }; };
|
||||
A1337A462090BC8700F4D670 /* registry.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC740F6B3295004123C5 /* registry.c */; };
|
||||
A1337A472090BC8700F4D670 /* res012.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC760F6B3295004123C5 /* res012.c */; settings = {COMPILER_FLAGS = "-w"; }; };
|
||||
A1337A482090BC8700F4D670 /* sharedbook.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC770F6B3295004123C5 /* sharedbook.c */; settings = {COMPILER_FLAGS = "-w"; }; };
|
||||
A1337A492090BC8700F4D670 /* synthesis.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC780F6B3295004123C5 /* synthesis.c */; settings = {COMPILER_FLAGS = "-w"; }; };
|
||||
A1337A4A2090BC8700F4D670 /* vorbisfile.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC790F6B3295004123C5 /* vorbisfile.c */; settings = {COMPILER_FLAGS = "-w"; }; };
|
||||
A1337A4B2090BC8700F4D670 /* window.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC7A0F6B3295004123C5 /* window.c */; settings = {COMPILER_FLAGS = "-w"; }; };
|
||||
A1337A4C2090BCA700F4D670 /* UIFontButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DDD3A2313DF231100967735 /* UIFontButton.m */; };
|
||||
A1337A4D2090BCA700F4D670 /* UIFontLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D5C0C6F13DF8920008ECBD1 /* UIFontLabel.m */; };
|
||||
A1337A4F2090BCA700F4D670 /* UITableViewScrolling.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DBC68B213F58BCC002A8253 /* UITableViewScrolling.m */; };
|
||||
A1337A502090BCB800F4D670 /* wolf3dAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7229CE490F6C89F8004123C5 /* wolf3dAppDelegate.m */; };
|
||||
A1337A512090BCBF00F4D670 /* POSITYPE-idSettler10v2.otf in Resources */ = {isa = PBXBuildFile; fileRef = 3D86D68A13DF172B00186487 /* POSITYPE-idSettler10v2.otf */; };
|
||||
A1337A522090BCCF00F4D670 /* dist.plist in Resources */ = {isa = PBXBuildFile; fileRef = 4364BF3E0F5CB25900F29317 /* dist.plist */; };
|
||||
A1337A532090BCE100F4D670 /* GODMODEFACE0PIC.png in Resources */ = {isa = PBXBuildFile; fileRef = A1BB8B98206E07C300D46B47 /* GODMODEFACE0PIC.png */; };
|
||||
A1337A542090BCE100F4D670 /* GODMODEFACE1PIC.png in Resources */ = {isa = PBXBuildFile; fileRef = A1BB8B99206E07C300D46B47 /* GODMODEFACE1PIC.png */; };
|
||||
A1337A552090BCE100F4D670 /* GODMODEFACE2PIC.png in Resources */ = {isa = PBXBuildFile; fileRef = A1BB8B9A206E07C300D46B47 /* GODMODEFACE2PIC.png */; };
|
||||
A1337A562090BCE100F4D670 /* adv_btn.png in Resources */ = {isa = PBXBuildFile; fileRef = 35E6E15413F3172F0010F530 /* adv_btn.png */; };
|
||||
A1337A572090BCE100F4D670 /* arialImageLAL_white-alpha.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8824713E35E5000C95AE8 /* arialImageLAL_white-alpha.png */; };
|
||||
A1337A582090BCE100F4D670 /* arialImageLAL.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8824813E35E5000C95AE8 /* arialImageLAL.png */; };
|
||||
A1337A592090BCE100F4D670 /* back_arrow.png in Resources */ = {isa = PBXBuildFile; fileRef = 350CCF9D13DF8C47003303AB /* back_arrow.png */; };
|
||||
A1337A5A2090BCE100F4D670 /* button_highlight.png in Resources */ = {isa = PBXBuildFile; fileRef = 3555CC3F13E2001A006E7D2F /* button_highlight.png */; };
|
||||
A1337A5B2090BCE100F4D670 /* credits_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 35048AAC13E0A03A00516B10 /* credits_bg.png */; };
|
||||
A1337A5C2090BCE100F4D670 /* difficulty_head1.png in Resources */ = {isa = PBXBuildFile; fileRef = 350BA59413F34F7900FAE7E4 /* difficulty_head1.png */; };
|
||||
A1337A5D2090BCE100F4D670 /* difficulty_head2.png in Resources */ = {isa = PBXBuildFile; fileRef = 350BA59513F34F7900FAE7E4 /* difficulty_head2.png */; };
|
||||
A1337A5E2090BCE100F4D670 /* difficulty_head3.png in Resources */ = {isa = PBXBuildFile; fileRef = 350BA59613F34F7900FAE7E4 /* difficulty_head3.png */; };
|
||||
A1337A5F2090BCE100F4D670 /* difficulty_head4.png in Resources */ = {isa = PBXBuildFile; fileRef = 350BA59713F34F7900FAE7E4 /* difficulty_head4.png */; };
|
||||
A1337A602090BCE100F4D670 /* down_arrow.png in Resources */ = {isa = PBXBuildFile; fileRef = 35E6E16813F318A50010F530 /* down_arrow.png */; };
|
||||
A1337A612090BCE100F4D670 /* episode_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 350CCF9A13DF8B0E003303AB /* episode_bg.png */; };
|
||||
A1337A622090BCE100F4D670 /* episode_bracket.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DF1804213F44D6700ED668A /* episode_bracket.png */; };
|
||||
A1337A632090BCE100F4D670 /* episode_divider.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DF1804313F44D6700ED668A /* episode_divider.png */; };
|
||||
A1337A642090BCE100F4D670 /* header_advanced.png in Resources */ = {isa = PBXBuildFile; fileRef = A112905D206DF0DA00BEDEB5 /* header_advanced.png */; };
|
||||
A1337A652090BCE100F4D670 /* header_ep1.png in Resources */ = {isa = PBXBuildFile; fileRef = A1BB8B84206DFC2D00D46B47 /* header_ep1.png */; };
|
||||
A1337A662090BCE100F4D670 /* header_ep2.png in Resources */ = {isa = PBXBuildFile; fileRef = A1BB8B86206DFC2D00D46B47 /* header_ep2.png */; };
|
||||
A1337A672090BCE100F4D670 /* header_ep3.png in Resources */ = {isa = PBXBuildFile; fileRef = A1BB8B8B206DFC2E00D46B47 /* header_ep3.png */; };
|
||||
A1337A682090BCE100F4D670 /* header_ep4.png in Resources */ = {isa = PBXBuildFile; fileRef = A1BB8B85206DFC2D00D46B47 /* header_ep4.png */; };
|
||||
A1337A692090BCE100F4D670 /* header_ep5.png in Resources */ = {isa = PBXBuildFile; fileRef = A1BB8B88206DFC2D00D46B47 /* header_ep5.png */; };
|
||||
A1337A6A2090BCE100F4D670 /* header_ep6.png in Resources */ = {isa = PBXBuildFile; fileRef = A1BB8B87206DFC2D00D46B47 /* header_ep6.png */; };
|
||||
A1337A6B2090BCE100F4D670 /* header_ep7.png in Resources */ = {isa = PBXBuildFile; fileRef = A1BB8B8A206DFC2E00D46B47 /* header_ep7.png */; };
|
||||
A1337A6C2090BCE100F4D670 /* header_ep8.png in Resources */ = {isa = PBXBuildFile; fileRef = A1BB8B82206DFC2D00D46B47 /* header_ep8.png */; };
|
||||
A1337A6D2090BCE100F4D670 /* header_ep9.png in Resources */ = {isa = PBXBuildFile; fileRef = A1BB8B89206DFC2E00D46B47 /* header_ep9.png */; };
|
||||
A1337A6E2090BCE100F4D670 /* header_ep10.png in Resources */ = {isa = PBXBuildFile; fileRef = A1BB8B83206DFC2D00D46B47 /* header_ep10.png */; };
|
||||
A1337A6F2090BCE100F4D670 /* header_ep11.png in Resources */ = {isa = PBXBuildFile; fileRef = A1BB8B8C206DFC2E00D46B47 /* header_ep11.png */; };
|
||||
A1337A702090BCE100F4D670 /* highlight_bracket.png in Resources */ = {isa = PBXBuildFile; fileRef = 35E6E16313F318600010F530 /* highlight_bracket.png */; };
|
||||
A1337A712090BCE100F4D670 /* intermission.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8826A13E35E5000C95AE8 /* intermission.png */; };
|
||||
A1337A722090BCE100F4D670 /* iphone_image.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8826B13E35E5000C95AE8 /* iphone_image.png */; };
|
||||
A1337A732090BCE100F4D670 /* iphone_preset_1.png in Resources */ = {isa = PBXBuildFile; fileRef = 35048ABD13E0D51600516B10 /* iphone_preset_1.png */; };
|
||||
A1337A742090BCE100F4D670 /* iphone_preset_2.png in Resources */ = {isa = PBXBuildFile; fileRef = 3D5C0F7F13E0FC46008ECBD1 /* iphone_preset_2.png */; };
|
||||
A1337A752090BCE100F4D670 /* iphone_preset_3.png in Resources */ = {isa = PBXBuildFile; fileRef = 3D5C0F8013E0FC46008ECBD1 /* iphone_preset_3.png */; };
|
||||
A1337A762090BCE100F4D670 /* iphone_preset_4.png in Resources */ = {isa = PBXBuildFile; fileRef = 3D5C0F8113E0FC46008ECBD1 /* iphone_preset_4.png */; };
|
||||
A1337A772090BCE100F4D670 /* kills_shadow.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8826C13E35E5000C95AE8 /* kills_shadow.png */; };
|
||||
A1337A782090BCE100F4D670 /* kills.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8826D13E35E5000C95AE8 /* kills.png */; };
|
||||
A1337A792090BCE100F4D670 /* left_chevron.png in Resources */ = {isa = PBXBuildFile; fileRef = 35E6E15E13F318420010F530 /* left_chevron.png */; };
|
||||
A1337A7A2090BCE100F4D670 /* main_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 3D5C0D0913DF9B41008ECBD1 /* main_bg.png */; };
|
||||
A1337A7B2090BCE100F4D670 /* map_background.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8826E13E35E5000C95AE8 /* map_background.png */; };
|
||||
A1337A7C2090BCE100F4D670 /* next_arrow.png in Resources */ = {isa = PBXBuildFile; fileRef = 35048AA913E07E7800516B10 /* next_arrow.png */; };
|
||||
A1337A7D2090BCE100F4D670 /* partime_shadow.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8827413E35E5000C95AE8 /* partime_shadow.png */; };
|
||||
A1337A7E2090BCE100F4D670 /* partime.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8827513E35E5000C95AE8 /* partime.png */; };
|
||||
A1337A7F2090BCE100F4D670 /* right_chevron.png in Resources */ = {isa = PBXBuildFile; fileRef = 35E6E15F13F318420010F530 /* right_chevron.png */; };
|
||||
A1337A802090BCE100F4D670 /* secrets_shadow.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8827613E35E5000C95AE8 /* secrets_shadow.png */; };
|
||||
A1337A812090BCE100F4D670 /* secrets.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8827713E35E5000C95AE8 /* secrets.png */; };
|
||||
A1337A822090BCE100F4D670 /* settings_divider.png in Resources */ = {isa = PBXBuildFile; fileRef = 35E6E15913F3182C0010F530 /* settings_divider.png */; };
|
||||
A1337A832090BCE100F4D670 /* settings_line_art.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DBC68E613F599B4002A8253 /* settings_line_art.png */; };
|
||||
A1337A842090BCE100F4D670 /* settings_slider_blue.png in Resources */ = {isa = PBXBuildFile; fileRef = 35E6E19F13F321A50010F530 /* settings_slider_blue.png */; };
|
||||
A1337A852090BCE100F4D670 /* settings_slider_blue~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 3589EBA513F5E3DC005FBE56 /* settings_slider_blue~ipad.png */; };
|
||||
A1337A862090BCE100F4D670 /* settings_slider_grey.png in Resources */ = {isa = PBXBuildFile; fileRef = 35E6E1A013F321A50010F530 /* settings_slider_grey.png */; };
|
||||
A1337A872090BCE100F4D670 /* settings_slider_grey~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 3589EBA613F5E3DC005FBE56 /* settings_slider_grey~ipad.png */; };
|
||||
A1337A882090BCE100F4D670 /* settings_slider_white.png in Resources */ = {isa = PBXBuildFile; fileRef = 35E6E1A113F321A50010F530 /* settings_slider_white.png */; };
|
||||
A1337A892090BCE100F4D670 /* settings_slider_white~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = 3589EBA713F5E3DC005FBE56 /* settings_slider_white~ipad.png */; };
|
||||
A1337A8A2090BCE100F4D670 /* star_icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 35E6E17413F3196A0010F530 /* star_icon.png */; };
|
||||
A1337A8B2090BCE100F4D670 /* stats_large.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8827E13E35E5000C95AE8 /* stats_large.png */; };
|
||||
A1337A8C2090BCE100F4D670 /* stats.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8827F13E35E5000C95AE8 /* stats.png */; };
|
||||
A1337A8D2090BCE100F4D670 /* submenus_background_image.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8828113E35E5000C95AE8 /* submenus_background_image.png */; };
|
||||
A1337A8E2090BCE100F4D670 /* treasure_shadow.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8828213E35E5000C95AE8 /* treasure_shadow.png */; };
|
||||
A1337A8F2090BCE100F4D670 /* treasure.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8828313E35E5000C95AE8 /* treasure.png */; };
|
||||
A1337A902090BCE100F4D670 /* up_arrow.png in Resources */ = {isa = PBXBuildFile; fileRef = 35E6E15A13F3182C0010F530 /* up_arrow.png */; };
|
||||
A1337A912090BCE100F4D670 /* up_down.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8828413E35E5000C95AE8 /* up_down.png */; };
|
||||
A1337A922090BCE100F4D670 /* victory_256.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DE8828513E35E5000C95AE8 /* victory_256.png */; };
|
||||
A1337A932090BCE100F4D670 /* wolf_bg.png in Resources */ = {isa = PBXBuildFile; fileRef = 35048ABB13E0D2EA00516B10 /* wolf_bg.png */; };
|
||||
A1337A942090BCE100F4D670 /* Default.png in Resources */ = {isa = PBXBuildFile; fileRef = 43CF02FE0F56974E00E4A23D /* Default.png */; };
|
||||
A1337A952090BCEA00F4D670 /* wondering.caf in Resources */ = {isa = PBXBuildFile; fileRef = 3DB873FE13FB3C0E0050FB2A /* wondering.caf */; };
|
||||
A1337A962090BCF000F4D670 /* wolf3d_icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 43CF02EC0F56955F00E4A23D /* wolf3d_icon.png */; };
|
||||
A1337A972090BCF000F4D670 /* wolf3dlite_icon.png in Resources */ = {isa = PBXBuildFile; fileRef = 43E341280F9BB4B6003C5D00 /* wolf3dlite_icon.png */; };
|
||||
A1337A982090BCF800F4D670 /* WOLF_57.png in Resources */ = {isa = PBXBuildFile; fileRef = C8D1CFE313E22B5200F0EAC6 /* WOLF_57.png */; };
|
||||
A1337A992090BCF800F4D670 /* WOLF_72.png in Resources */ = {isa = PBXBuildFile; fileRef = C8D1CFE713E22B6800F0EAC6 /* WOLF_72.png */; };
|
||||
A1337A9A2090BCF800F4D670 /* WOLF_114.png in Resources */ = {isa = PBXBuildFile; fileRef = C8D1CFE513E22B5B00F0EAC6 /* WOLF_114.png */; };
|
||||
A1337AA52090BDC300F4D670 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1337A9B2090BDC100F4D670 /* AudioToolbox.framework */; };
|
||||
A1337AA62090BDC300F4D670 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1337A9C2090BDC200F4D670 /* OpenGLES.framework */; };
|
||||
A1337AA72090BDC300F4D670 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1337A9D2090BDC200F4D670 /* StoreKit.framework */; };
|
||||
A1337AA82090BDC300F4D670 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1337A9E2090BDC200F4D670 /* SystemConfiguration.framework */; };
|
||||
A1337AA92090BDC300F4D670 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1337A9F2090BDC200F4D670 /* AVFoundation.framework */; };
|
||||
A1337AAA2090BDC300F4D670 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1337AA02090BDC200F4D670 /* UIKit.framework */; };
|
||||
A1337AAB2090BDC300F4D670 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1337AA12090BDC200F4D670 /* Foundation.framework */; };
|
||||
A1337AAC2090BDC300F4D670 /* OpenAL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1337AA22090BDC200F4D670 /* OpenAL.framework */; };
|
||||
A1337AAD2090BDC300F4D670 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1337AA32090BDC200F4D670 /* CoreGraphics.framework */; };
|
||||
A1337AAE2090BDC300F4D670 /* GameController.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1337AA42090BDC200F4D670 /* GameController.framework */; };
|
||||
A1337AB02090BDEA00F4D670 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1337AAF2090BDEA00F4D670 /* QuartzCore.framework */; };
|
||||
A1337AB12091388600F4D670 /* wolf_actor_ai.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC250F6B3222004123C5 /* wolf_actor_ai.c */; };
|
||||
A1337AB22091388600F4D670 /* wolf_actors.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC270F6B3222004123C5 /* wolf_actors.c */; };
|
||||
A1337AB32091388600F4D670 /* wolf_ai_com.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC290F6B3222004123C5 /* wolf_ai_com.c */; };
|
||||
A1337AB42091388600F4D670 /* wolf_areas.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC2B0F6B3222004123C5 /* wolf_areas.c */; };
|
||||
A1337AB52091388600F4D670 /* wolf_bj.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC2C0F6B3222004123C5 /* wolf_bj.c */; };
|
||||
A1337AB62091388600F4D670 /* wolf_client_main.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC2E0F6B3222004123C5 /* wolf_client_main.c */; };
|
||||
A1337AB72091388600F4D670 /* wolf_doors.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC300F6B3222004123C5 /* wolf_doors.c */; };
|
||||
A1337AB82091388600F4D670 /* wolf_level.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC310F6B3222004123C5 /* wolf_level.c */; };
|
||||
A1337AB92091388600F4D670 /* wolf_main.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC340F6B3222004123C5 /* wolf_main.c */; };
|
||||
A1337ABA2091388600F4D670 /* wolf_math.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC350F6B3222004123C5 /* wolf_math.c */; };
|
||||
A1337ABB2091388600F4D670 /* wolf_opengl.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC370F6B3222004123C5 /* wolf_opengl.c */; };
|
||||
A1337ABC2091388600F4D670 /* wolf_player.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC380F6B3222004123C5 /* wolf_player.c */; };
|
||||
A1337ABD2091388600F4D670 /* wolf_powerups.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC3A0F6B3222004123C5 /* wolf_powerups.c */; };
|
||||
A1337ABE2091388600F4D670 /* wolf_pushwalls.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC3C0F6B3222004123C5 /* wolf_pushwalls.c */; };
|
||||
A1337ABF2091388600F4D670 /* wolf_raycast.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC3D0F6B3222004123C5 /* wolf_raycast.c */; };
|
||||
A1337AC02091388600F4D670 /* wolf_renderer.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC3F0F6B3222004123C5 /* wolf_renderer.c */; };
|
||||
A1337AC12091388600F4D670 /* wolf_sprites.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC410F6B3222004123C5 /* wolf_sprites.c */; };
|
||||
A1337AC22091388600F4D670 /* wolf_sv_ccmds.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC430F6B3222004123C5 /* wolf_sv_ccmds.c */; };
|
||||
A1337AC32091388600F4D670 /* wolf_weapon.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC440F6B3222004123C5 /* wolf_weapon.c */; };
|
||||
A1337AC4209138FA00F4D670 /* angle.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B1A0F6B2D9D0085DD28 /* angle.c */; };
|
||||
A1337AC5209138FA00F4D670 /* arch.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B1D0F6B2D9D0085DD28 /* arch.c */; };
|
||||
A1337AC6209138FA00F4D670 /* cmd.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B230F6B2D9D0085DD28 /* cmd.c */; };
|
||||
A1337AC7209138FA00F4D670 /* com_string.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B250F6B2D9D0085DD28 /* com_string.c */; };
|
||||
A1337AC8209138FA00F4D670 /* common.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B270F6B2D9D0085DD28 /* common.c */; };
|
||||
A1337AC9209138FA00F4D670 /* console.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B2A0F6B2D9D0085DD28 /* console.c */; };
|
||||
A1337ACA209138FA00F4D670 /* cvar.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B2D0F6B2D9D0085DD28 /* cvar.c */; };
|
||||
A1337ACB209138FA00F4D670 /* fileio.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B2F0F6B2D9D0085DD28 /* fileio.c */; };
|
||||
A1337ACC209138FA00F4D670 /* files.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B310F6B2D9D0085DD28 /* files.c */; };
|
||||
A1337ACD209138FA00F4D670 /* filestring.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B320F6B2D9D0085DD28 /* filestring.c */; };
|
||||
A1337ACE209138FA00F4D670 /* font_manager.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B350F6B2D9D0085DD28 /* font_manager.c */; };
|
||||
A1337ACF209138FA00F4D670 /* glob.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B370F6B2D9D0085DD28 /* glob.c */; };
|
||||
A1337AD0209138FA00F4D670 /* math.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B3E0F6B2D9D0085DD28 /* math.c */; };
|
||||
A1337AD1209138FA00F4D670 /* matrix.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B3F0F6B2D9D0085DD28 /* matrix.c */; };
|
||||
A1337AD2209138FA00F4D670 /* memory.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B410F6B2D9D0085DD28 /* memory.c */; };
|
||||
A1337AD3209138FA00F4D670 /* oggfile.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B490F6B2D9D0085DD28 /* oggfile.c */; };
|
||||
A1337AD4209138FA00F4D670 /* openal_binding.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B4B0F6B2D9D0085DD28 /* openal_binding.c */; };
|
||||
A1337AD5209138FA00F4D670 /* openal_main.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B4D0F6B2D9D0085DD28 /* openal_main.c */; };
|
||||
A1337AD6209138FA00F4D670 /* opengl_draw.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B500F6B2D9D0085DD28 /* opengl_draw.c */; };
|
||||
A1337AD7209138FA00F4D670 /* opengl_main.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B530F6B2D9D0085DD28 /* opengl_main.c */; };
|
||||
A1337AD8209138FA00F4D670 /* opengl_texture.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B540F6B2D9D0085DD28 /* opengl_texture.c */; };
|
||||
A1337AD9209138FA00F4D670 /* random_number.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B560F6B2D9D0085DD28 /* random_number.c */; };
|
||||
A1337ADA209138FA00F4D670 /* share.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B590F6B2D9D0085DD28 /* share.c */; };
|
||||
A1337ADB209138FA00F4D670 /* sound.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B5A0F6B2D9D0085DD28 /* sound.c */; };
|
||||
A1337ADC209138FA00F4D670 /* sound_sfx_id.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B5D0F6B2D9D0085DD28 /* sound_sfx_id.c */; };
|
||||
A1337ADD209138FA00F4D670 /* sound_stream.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B5E0F6B2D9D0085DD28 /* sound_stream.c */; };
|
||||
A1337ADE209138FA00F4D670 /* texture_manager.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B610F6B2D9D0085DD28 /* texture_manager.c */; };
|
||||
A1337ADF209138FA00F4D670 /* tga.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B630F6B2D9D0085DD28 /* tga.c */; };
|
||||
A1337AE0209138FA00F4D670 /* unix_file.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B680F6B2D9D0085DD28 /* unix_file.c */; };
|
||||
A1337AE1209138FA00F4D670 /* unix_timer.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B6A0F6B2D9D0085DD28 /* unix_timer.c */; };
|
||||
A1337AE2209138FA00F4D670 /* vector.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B6B0F6B2D9D0085DD28 /* vector.c */; };
|
||||
A1337AE3209138FA00F4D670 /* wavfile.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B6E0F6B2D9D0085DD28 /* wavfile.c */; };
|
||||
A1337AE4209138FA00F4D670 /* zmem.c in Sources */ = {isa = PBXBuildFile; fileRef = 72935B720F6B2D9D0085DD28 /* zmem.c */; };
|
||||
A1337AE52091396900F4D670 /* mdct.c in Sources */ = {isa = PBXBuildFile; fileRef = 7229CC6D0F6B3295004123C5 /* mdct.c */; settings = {COMPILER_FLAGS = "-w"; }; };
|
||||
A19BF36A1FD6E4E100DAC4C1 /* base in Resources */ = {isa = PBXBuildFile; fileRef = A19BF3691FD6E4C800DAC4C1 /* base */; };
|
||||
A1B3746D2036A6CA00E1C7BE /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A1B3746C2036A6CA00E1C7BE /* CoreMotion.framework */; };
|
||||
A1B7CA33209D195B00743C98 /* Default-Portrait.png in Resources */ = {isa = PBXBuildFile; fileRef = A1B7CA31209D195B00743C98 /* Default-Portrait.png */; };
|
||||
A1B7CA34209D195B00743C98 /* Default-Portrait~ipad.png in Resources */ = {isa = PBXBuildFile; fileRef = A1B7CA32209D195B00743C98 /* Default-Portrait~ipad.png */; };
|
||||
A1BB8B8D206DFC2E00D46B47 /* header_ep8.png in Resources */ = {isa = PBXBuildFile; fileRef = A1BB8B82206DFC2D00D46B47 /* header_ep8.png */; };
|
||||
A1BB8B8E206DFC2E00D46B47 /* header_ep10.png in Resources */ = {isa = PBXBuildFile; fileRef = A1BB8B83206DFC2D00D46B47 /* header_ep10.png */; };
|
||||
A1BB8B8F206DFC2E00D46B47 /* header_ep1.png in Resources */ = {isa = PBXBuildFile; fileRef = A1BB8B84206DFC2D00D46B47 /* header_ep1.png */; };
|
||||
|
@ -473,9 +663,33 @@
|
|||
A112905B206DA37A00BEDEB5 /* gles_glue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = gles_glue.h; sourceTree = "<group>"; };
|
||||
A112905C206DA37A00BEDEB5 /* iphone_qgl_enumerants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iphone_qgl_enumerants.h; sourceTree = "<group>"; };
|
||||
A112905D206DF0DA00BEDEB5 /* header_advanced.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = header_advanced.png; path = ../../menu_art/header_advanced.png; sourceTree = "<group>"; };
|
||||
A12D764D20913B9C00B4A4BB /* MainMenuView-tvos.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = "MainMenuView-tvos.xib"; sourceTree = "<group>"; };
|
||||
A12D76522091491500B4A4BB /* CreditsView-tvos.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = "CreditsView-tvos.xib"; sourceTree = "<group>"; };
|
||||
A12D76572091496E00B4A4BB /* EpisodeView-tvos.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = "EpisodeView-tvos.xib"; sourceTree = "<group>"; };
|
||||
A12D76592091498000B4A4BB /* LegalView-tvos.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = "LegalView-tvos.xib"; sourceTree = "<group>"; };
|
||||
A12D765B209149A100B4A4BB /* LevelSelectView-tvos.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = "LevelSelectView-tvos.xib"; sourceTree = "<group>"; };
|
||||
A12D765D209149BF00B4A4BB /* SkillView-tvos.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = "SkillView-tvos.xib"; sourceTree = "<group>"; };
|
||||
A12D765F209149CF00B4A4BB /* TriviaView-tvos.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = "TriviaView-tvos.xib"; sourceTree = "<group>"; };
|
||||
A12D766320914F8700B4A4BB /* EpisodeCell-tvos.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = "EpisodeCell-tvos.xib"; sourceTree = "<group>"; };
|
||||
A1337A0E2090BAE300F4D670 /* wolf3dTV.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = wolf3dTV.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
A1337A192090BAE400F4D670 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
||||
A1337A1B2090BAE400F4D670 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
||||
A1337A9B2090BDC100F4D670 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS11.3.sdk/System/Library/Frameworks/AudioToolbox.framework; sourceTree = DEVELOPER_DIR; };
|
||||
A1337A9C2090BDC200F4D670 /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS11.3.sdk/System/Library/Frameworks/OpenGLES.framework; sourceTree = DEVELOPER_DIR; };
|
||||
A1337A9D2090BDC200F4D670 /* StoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = StoreKit.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS11.3.sdk/System/Library/Frameworks/StoreKit.framework; sourceTree = DEVELOPER_DIR; };
|
||||
A1337A9E2090BDC200F4D670 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS11.3.sdk/System/Library/Frameworks/SystemConfiguration.framework; sourceTree = DEVELOPER_DIR; };
|
||||
A1337A9F2090BDC200F4D670 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS11.3.sdk/System/Library/Frameworks/AVFoundation.framework; sourceTree = DEVELOPER_DIR; };
|
||||
A1337AA02090BDC200F4D670 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS11.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
|
||||
A1337AA12090BDC200F4D670 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS11.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
|
||||
A1337AA22090BDC200F4D670 /* OpenAL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenAL.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS11.3.sdk/System/Library/Frameworks/OpenAL.framework; sourceTree = DEVELOPER_DIR; };
|
||||
A1337AA32090BDC200F4D670 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS11.3.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; };
|
||||
A1337AA42090BDC200F4D670 /* GameController.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GameController.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS11.3.sdk/System/Library/Frameworks/GameController.framework; sourceTree = DEVELOPER_DIR; };
|
||||
A1337AAF2090BDEA00F4D670 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS11.3.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; };
|
||||
A19BF3691FD6E4C800DAC4C1 /* base */ = {isa = PBXFileReference; lastKnownFileType = folder; name = base; path = ../../base; sourceTree = "<group>"; };
|
||||
A1B3746C2036A6CA00E1C7BE /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; };
|
||||
A1B3746E2036B0F100E1C7BE /* README.md */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../../README.md; sourceTree = "<group>"; };
|
||||
A1B7CA31209D195B00743C98 /* Default-Portrait.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Default-Portrait.png"; path = "../../menu_art/Default-Portrait.png"; sourceTree = "<group>"; };
|
||||
A1B7CA32209D195B00743C98 /* Default-Portrait~ipad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "Default-Portrait~ipad.png"; path = "../../menu_art/Default-Portrait~ipad.png"; sourceTree = "<group>"; };
|
||||
A1BB8B82206DFC2D00D46B47 /* header_ep8.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = header_ep8.png; path = ../../menu_art/header_ep8.png; sourceTree = "<group>"; };
|
||||
A1BB8B83206DFC2D00D46B47 /* header_ep10.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = header_ep10.png; path = ../../menu_art/header_ep10.png; sourceTree = "<group>"; };
|
||||
A1BB8B84206DFC2D00D46B47 /* header_ep1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = header_ep1.png; path = ../../menu_art/header_ep1.png; sourceTree = "<group>"; };
|
||||
|
@ -526,6 +740,24 @@
|
|||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
A1337A0B2090BAE300F4D670 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
A1337AB02090BDEA00F4D670 /* QuartzCore.framework in Frameworks */,
|
||||
A1337AA52090BDC300F4D670 /* AudioToolbox.framework in Frameworks */,
|
||||
A1337AA62090BDC300F4D670 /* OpenGLES.framework in Frameworks */,
|
||||
A1337AA72090BDC300F4D670 /* StoreKit.framework in Frameworks */,
|
||||
A1337AA82090BDC300F4D670 /* SystemConfiguration.framework in Frameworks */,
|
||||
A1337AA92090BDC300F4D670 /* AVFoundation.framework in Frameworks */,
|
||||
A1337AAA2090BDC300F4D670 /* UIKit.framework in Frameworks */,
|
||||
A1337AAB2090BDC300F4D670 /* Foundation.framework in Frameworks */,
|
||||
A1337AAC2090BDC300F4D670 /* OpenAL.framework in Frameworks */,
|
||||
A1337AAD2090BDC300F4D670 /* CoreGraphics.framework in Frameworks */,
|
||||
A1337AAE2090BDC300F4D670 /* GameController.framework in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
|
@ -534,6 +766,7 @@
|
|||
children = (
|
||||
1D6058910D05DD3D006BFB54 /* wolf3d.app */,
|
||||
4364BF3E0F5CB25900F29317 /* dist.plist */,
|
||||
A1337A0E2090BAE300F4D670 /* wolf3dTV.app */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
|
@ -541,18 +774,20 @@
|
|||
29B97314FDCFA39411CA2CEA /* CustomTemplate */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A1129051206A808100BEDEB5 /* Launch Screen.storyboard */,
|
||||
A19BF3691FD6E4C800DAC4C1 /* base */,
|
||||
29B97323FDCFA39411CA2CEA /* Frameworks */,
|
||||
A1129051206A808100BEDEB5 /* Launch Screen.storyboard */,
|
||||
29B97315FDCFA39411CA2CEA /* Other Sources */,
|
||||
3D86D68A13DF172B00186487 /* POSITYPE-idSettler10v2.otf */,
|
||||
19C28FACFE9D520D11CA2CBB /* Products */,
|
||||
A1B3746E2036B0F100E1C7BE /* README.md */,
|
||||
29B97317FDCFA39411CA2CEA /* Resources */,
|
||||
3D15A41A13C6BA0B00FBFAA2 /* Resources-iPad */,
|
||||
A1337AE620913B2D00F4D670 /* Resources-tvOS */,
|
||||
C8D1CFE313E22B5200F0EAC6 /* WOLF_57.png */,
|
||||
C8D1CFE713E22B6800F0EAC6 /* WOLF_72.png */,
|
||||
C8D1CFE513E22B5B00F0EAC6 /* WOLF_114.png */,
|
||||
A1337A0F2090BAE300F4D670 /* wolf3dTV */,
|
||||
);
|
||||
name = CustomTemplate;
|
||||
sourceTree = "<group>";
|
||||
|
@ -613,7 +848,18 @@
|
|||
29B97323FDCFA39411CA2CEA /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A1337AAF2090BDEA00F4D670 /* QuartzCore.framework */,
|
||||
A1C78235203FBADE00F2D2DE /* GameController.framework */,
|
||||
A1337A9B2090BDC100F4D670 /* AudioToolbox.framework */,
|
||||
A1337A9F2090BDC200F4D670 /* AVFoundation.framework */,
|
||||
A1337AA32090BDC200F4D670 /* CoreGraphics.framework */,
|
||||
A1337AA12090BDC200F4D670 /* Foundation.framework */,
|
||||
A1337AA42090BDC200F4D670 /* GameController.framework */,
|
||||
A1337AA22090BDC200F4D670 /* OpenAL.framework */,
|
||||
A1337A9C2090BDC200F4D670 /* OpenGLES.framework */,
|
||||
A1337A9D2090BDC200F4D670 /* StoreKit.framework */,
|
||||
A1337A9E2090BDC200F4D670 /* SystemConfiguration.framework */,
|
||||
A1337AA02090BDC200F4D670 /* UIKit.framework */,
|
||||
A1B3746C2036A6CA00E1C7BE /* CoreMotion.framework */,
|
||||
3D3ED95A13BF77FA00C5B1DF /* AudioToolbox.framework */,
|
||||
43AE7E9E0F67387500B2F562 /* CoreGraphics.framework */,
|
||||
|
@ -680,6 +926,8 @@
|
|||
3D5C0CFD13DF9ABF008ECBD1 /* menu_art */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A1B7CA31209D195B00743C98 /* Default-Portrait.png */,
|
||||
A1B7CA32209D195B00743C98 /* Default-Portrait~ipad.png */,
|
||||
A1BB8B98206E07C300D46B47 /* GODMODEFACE0PIC.png */,
|
||||
A1BB8B99206E07C300D46B47 /* GODMODEFACE1PIC.png */,
|
||||
A1BB8B9A206E07C300D46B47 /* GODMODEFACE2PIC.png */,
|
||||
|
@ -933,6 +1181,38 @@
|
|||
name = wolf;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
A12D764F20913BC200B4A4BB /* views */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A12D76522091491500B4A4BB /* CreditsView-tvos.xib */,
|
||||
A12D76572091496E00B4A4BB /* EpisodeView-tvos.xib */,
|
||||
A12D76592091498000B4A4BB /* LegalView-tvos.xib */,
|
||||
A12D765B209149A100B4A4BB /* LevelSelectView-tvos.xib */,
|
||||
A12D764D20913B9C00B4A4BB /* MainMenuView-tvos.xib */,
|
||||
A12D765D209149BF00B4A4BB /* SkillView-tvos.xib */,
|
||||
A12D765F209149CF00B4A4BB /* TriviaView-tvos.xib */,
|
||||
A12D766320914F8700B4A4BB /* EpisodeCell-tvos.xib */,
|
||||
);
|
||||
path = views;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
A1337A0F2090BAE300F4D670 /* wolf3dTV */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A1337A192090BAE400F4D670 /* Assets.xcassets */,
|
||||
A1337A1B2090BAE400F4D670 /* Info.plist */,
|
||||
);
|
||||
path = wolf3dTV;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
A1337AE620913B2D00F4D670 /* Resources-tvOS */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A12D764F20913BC200B4A4BB /* views */,
|
||||
);
|
||||
path = "Resources-tvOS";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
|
@ -953,6 +1233,23 @@
|
|||
productReference = 1D6058910D05DD3D006BFB54 /* wolf3d.app */;
|
||||
productType = "com.apple.product-type.application";
|
||||
};
|
||||
A1337A0D2090BAE300F4D670 /* wolf3dTV */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = A1337A262090BAE400F4D670 /* Build configuration list for PBXNativeTarget "wolf3dTV" */;
|
||||
buildPhases = (
|
||||
A1337A0C2090BAE300F4D670 /* Resources */,
|
||||
A1337A0A2090BAE300F4D670 /* Sources */,
|
||||
A1337A0B2090BAE300F4D670 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = wolf3dTV;
|
||||
productName = wolf3dTV;
|
||||
productReference = A1337A0E2090BAE300F4D670 /* wolf3dTV.app */;
|
||||
productType = "com.apple.product-type.application";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
|
@ -960,6 +1257,11 @@
|
|||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 0930;
|
||||
TargetAttributes = {
|
||||
A1337A0D2090BAE300F4D670 = {
|
||||
CreatedOnToolsVersion = 9.3;
|
||||
};
|
||||
};
|
||||
};
|
||||
buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "wolf3d" */;
|
||||
compatibilityVersion = "Xcode 3.1";
|
||||
|
@ -970,12 +1272,14 @@
|
|||
Japanese,
|
||||
French,
|
||||
German,
|
||||
Base,
|
||||
);
|
||||
mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */;
|
||||
projectDirPath = "";
|
||||
projectRoot = ../../../;
|
||||
targets = (
|
||||
1D6058900D05DD3D006BFB54 /* wolf3d */,
|
||||
A1337A0D2090BAE300F4D670 /* wolf3dTV */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
@ -1028,9 +1332,11 @@
|
|||
3DE8828613E35E5000C95AE8 /* arialImageLAL_white-alpha.png in Resources */,
|
||||
A1BB8B90206DFC2E00D46B47 /* header_ep4.png in Resources */,
|
||||
3DE8828713E35E5000C95AE8 /* arialImageLAL.png in Resources */,
|
||||
A1B7CA33209D195B00743C98 /* Default-Portrait.png in Resources */,
|
||||
3DE882A913E35E5000C95AE8 /* intermission.png in Resources */,
|
||||
3DE882AA13E35E5000C95AE8 /* iphone_image.png in Resources */,
|
||||
3DE882AB13E35E5000C95AE8 /* kills_shadow.png in Resources */,
|
||||
A1B7CA34209D195B00743C98 /* Default-Portrait~ipad.png in Resources */,
|
||||
3DE882AC13E35E5000C95AE8 /* kills.png in Resources */,
|
||||
3DE882AD13E35E5000C95AE8 /* map_background.png in Resources */,
|
||||
A1BB8B97206DFC2E00D46B47 /* header_ep11.png in Resources */,
|
||||
|
@ -1082,6 +1388,97 @@
|
|||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
A1337A0C2090BAE300F4D670 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
A12D765120913E1900B4A4BB /* base in Resources */,
|
||||
A1337A962090BCF000F4D670 /* wolf3d_icon.png in Resources */,
|
||||
A1337A572090BCE100F4D670 /* arialImageLAL_white-alpha.png in Resources */,
|
||||
A1337A9A2090BCF800F4D670 /* WOLF_114.png in Resources */,
|
||||
A1337A6F2090BCE100F4D670 /* header_ep11.png in Resources */,
|
||||
A1337A6D2090BCE100F4D670 /* header_ep9.png in Resources */,
|
||||
A1337A882090BCE100F4D670 /* settings_slider_white.png in Resources */,
|
||||
A1337A922090BCE100F4D670 /* victory_256.png in Resources */,
|
||||
A1337A992090BCF800F4D670 /* WOLF_72.png in Resources */,
|
||||
A1337A6A2090BCE100F4D670 /* header_ep6.png in Resources */,
|
||||
A1337A952090BCEA00F4D670 /* wondering.caf in Resources */,
|
||||
A12D766520914F8700B4A4BB /* EpisodeCell-tvos.xib in Resources */,
|
||||
A1337A862090BCE100F4D670 /* settings_slider_grey.png in Resources */,
|
||||
A1337A672090BCE100F4D670 /* header_ep3.png in Resources */,
|
||||
A1337A5C2090BCE100F4D670 /* difficulty_head1.png in Resources */,
|
||||
A1337A832090BCE100F4D670 /* settings_line_art.png in Resources */,
|
||||
A1337A932090BCE100F4D670 /* wolf_bg.png in Resources */,
|
||||
A1337A7E2090BCE100F4D670 /* partime.png in Resources */,
|
||||
A1337A842090BCE100F4D670 /* settings_slider_blue.png in Resources */,
|
||||
A1337A942090BCE100F4D670 /* Default.png in Resources */,
|
||||
A1337A792090BCE100F4D670 /* left_chevron.png in Resources */,
|
||||
A1337A552090BCE100F4D670 /* GODMODEFACE2PIC.png in Resources */,
|
||||
A1337A782090BCE100F4D670 /* kills.png in Resources */,
|
||||
A1337A5D2090BCE100F4D670 /* difficulty_head2.png in Resources */,
|
||||
A1337A602090BCE100F4D670 /* down_arrow.png in Resources */,
|
||||
A12D765C209149A100B4A4BB /* LevelSelectView-tvos.xib in Resources */,
|
||||
A1337A632090BCE100F4D670 /* episode_divider.png in Resources */,
|
||||
A1337A6C2090BCE100F4D670 /* header_ep8.png in Resources */,
|
||||
A1337A912090BCE100F4D670 /* up_down.png in Resources */,
|
||||
A1337A732090BCE100F4D670 /* iphone_preset_1.png in Resources */,
|
||||
A1337A7D2090BCE100F4D670 /* partime_shadow.png in Resources */,
|
||||
A1337A892090BCE100F4D670 /* settings_slider_white~ipad.png in Resources */,
|
||||
A1337A592090BCE100F4D670 /* back_arrow.png in Resources */,
|
||||
A1337A582090BCE100F4D670 /* arialImageLAL.png in Resources */,
|
||||
A1337A712090BCE100F4D670 /* intermission.png in Resources */,
|
||||
A1337A772090BCE100F4D670 /* kills_shadow.png in Resources */,
|
||||
A1337A722090BCE100F4D670 /* iphone_image.png in Resources */,
|
||||
A1337A642090BCE100F4D670 /* header_advanced.png in Resources */,
|
||||
A1337A742090BCE100F4D670 /* iphone_preset_2.png in Resources */,
|
||||
A1337A8E2090BCE100F4D670 /* treasure_shadow.png in Resources */,
|
||||
A1337A7C2090BCE100F4D670 /* next_arrow.png in Resources */,
|
||||
A1337A562090BCE100F4D670 /* adv_btn.png in Resources */,
|
||||
A1337A692090BCE100F4D670 /* header_ep5.png in Resources */,
|
||||
A1337A872090BCE100F4D670 /* settings_slider_grey~ipad.png in Resources */,
|
||||
A1337A762090BCE100F4D670 /* iphone_preset_4.png in Resources */,
|
||||
A1337A8D2090BCE100F4D670 /* submenus_background_image.png in Resources */,
|
||||
A1337A8C2090BCE100F4D670 /* stats.png in Resources */,
|
||||
A12D7660209149CF00B4A4BB /* TriviaView-tvos.xib in Resources */,
|
||||
A12D765020913DB900B4A4BB /* MainMenuView-tvos.xib in Resources */,
|
||||
A1337A662090BCE100F4D670 /* header_ep2.png in Resources */,
|
||||
A1337A752090BCE100F4D670 /* iphone_preset_3.png in Resources */,
|
||||
A1337A822090BCE100F4D670 /* settings_divider.png in Resources */,
|
||||
A1337A5E2090BCE100F4D670 /* difficulty_head3.png in Resources */,
|
||||
A1337A622090BCE100F4D670 /* episode_bracket.png in Resources */,
|
||||
A1337A532090BCE100F4D670 /* GODMODEFACE0PIC.png in Resources */,
|
||||
A1337A8F2090BCE100F4D670 /* treasure.png in Resources */,
|
||||
A1337A702090BCE100F4D670 /* highlight_bracket.png in Resources */,
|
||||
A1337A6E2090BCE100F4D670 /* header_ep10.png in Resources */,
|
||||
A1337A612090BCE100F4D670 /* episode_bg.png in Resources */,
|
||||
A1337A512090BCBF00F4D670 /* POSITYPE-idSettler10v2.otf in Resources */,
|
||||
A1337A522090BCCF00F4D670 /* dist.plist in Resources */,
|
||||
A1337A7B2090BCE100F4D670 /* map_background.png in Resources */,
|
||||
A1337A7F2090BCE100F4D670 /* right_chevron.png in Resources */,
|
||||
A1337A1A2090BAE400F4D670 /* Assets.xcassets in Resources */,
|
||||
A1337A542090BCE100F4D670 /* GODMODEFACE1PIC.png in Resources */,
|
||||
A1337A812090BCE100F4D670 /* secrets.png in Resources */,
|
||||
A12D76542091491900B4A4BB /* CreditsView-tvos.xib in Resources */,
|
||||
A1337A972090BCF000F4D670 /* wolf3dlite_icon.png in Resources */,
|
||||
A12D76582091496E00B4A4BB /* EpisodeView-tvos.xib in Resources */,
|
||||
A1337A7A2090BCE100F4D670 /* main_bg.png in Resources */,
|
||||
A1337A982090BCF800F4D670 /* WOLF_57.png in Resources */,
|
||||
A1337A852090BCE100F4D670 /* settings_slider_blue~ipad.png in Resources */,
|
||||
A12D765A2091498000B4A4BB /* LegalView-tvos.xib in Resources */,
|
||||
A1337A8B2090BCE100F4D670 /* stats_large.png in Resources */,
|
||||
A1337A5A2090BCE100F4D670 /* button_highlight.png in Resources */,
|
||||
A1337A902090BCE100F4D670 /* up_arrow.png in Resources */,
|
||||
A1337A682090BCE100F4D670 /* header_ep4.png in Resources */,
|
||||
A1337A5B2090BCE100F4D670 /* credits_bg.png in Resources */,
|
||||
A1337A802090BCE100F4D670 /* secrets_shadow.png in Resources */,
|
||||
A1337A6B2090BCE100F4D670 /* header_ep7.png in Resources */,
|
||||
A12D765E209149BF00B4A4BB /* SkillView-tvos.xib in Resources */,
|
||||
A1337A8A2090BCE100F4D670 /* star_icon.png in Resources */,
|
||||
A1337A5F2090BCE100F4D670 /* difficulty_head4.png in Resources */,
|
||||
A1337A652090BCE100F4D670 /* header_ep1.png in Resources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
|
@ -1187,6 +1584,106 @@
|
|||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
A1337A0A2090BAE300F4D670 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
A1337A422090BC8700F4D670 /* floor1.c in Sources */,
|
||||
A1337A2A2090BBA700F4D670 /* LegalViewController.m in Sources */,
|
||||
A1337AB12091388600F4D670 /* wolf_actor_ai.c in Sources */,
|
||||
A1337A402090BC8700F4D670 /* codebook.c in Sources */,
|
||||
A1337ABD2091388600F4D670 /* wolf_powerups.c in Sources */,
|
||||
A1337A332090BC6C00F4D670 /* iphone_alerts.m in Sources */,
|
||||
A1337AD6209138FA00F4D670 /* opengl_draw.c in Sources */,
|
||||
A1337A3B2090BC6C00F4D670 /* iphone_sys.m in Sources */,
|
||||
A1337AE2209138FA00F4D670 /* vector.c in Sources */,
|
||||
A1337ADC209138FA00F4D670 /* sound_sfx_id.c in Sources */,
|
||||
A1337AD3209138FA00F4D670 /* oggfile.c in Sources */,
|
||||
A1337ACA209138FA00F4D670 /* cvar.c in Sources */,
|
||||
A1337A442090BC8700F4D670 /* info.c in Sources */,
|
||||
A1337AC7209138FA00F4D670 /* com_string.c in Sources */,
|
||||
A1337AC12091388600F4D670 /* wolf_sprites.c in Sources */,
|
||||
A1337AB32091388600F4D670 /* wolf_ai_com.c in Sources */,
|
||||
A1337A382090BC6C00F4D670 /* iphone_mapselector.c in Sources */,
|
||||
A1337A2D2090BBA700F4D670 /* wolf3dViewController.m in Sources */,
|
||||
A1337AC6209138FA00F4D670 /* cmd.c in Sources */,
|
||||
A1337A3F2090BC8700F4D670 /* block.c in Sources */,
|
||||
A1337AC5209138FA00F4D670 /* arch.c in Sources */,
|
||||
A1337ADA209138FA00F4D670 /* share.c in Sources */,
|
||||
A1337A342090BC6C00F4D670 /* iphone_downloadSOD.m in Sources */,
|
||||
A1337AB82091388600F4D670 /* wolf_level.c in Sources */,
|
||||
A1337AE3209138FA00F4D670 /* wavfile.c in Sources */,
|
||||
A1337AC4209138FA00F4D670 /* angle.c in Sources */,
|
||||
A1337A2F2090BBA700F4D670 /* SkillViewController.m in Sources */,
|
||||
A1337A322090BC6C00F4D670 /* hud.c in Sources */,
|
||||
A1337AB72091388600F4D670 /* wolf_doors.c in Sources */,
|
||||
A1337A302090BC4C00F4D670 /* EAGLView.m in Sources */,
|
||||
A1337A2B2090BBA700F4D670 /* LevelSelectViewController.m in Sources */,
|
||||
A1337AD0209138FA00F4D670 /* math.c in Sources */,
|
||||
A1337ADF209138FA00F4D670 /* tga.c in Sources */,
|
||||
A1337A502090BCB800F4D670 /* wolf3dAppDelegate.m in Sources */,
|
||||
A1337ABB2091388600F4D670 /* wolf_opengl.c in Sources */,
|
||||
A1337ABE2091388600F4D670 /* wolf_pushwalls.c in Sources */,
|
||||
A1337AC02091388600F4D670 /* wolf_renderer.c in Sources */,
|
||||
A1337AD2209138FA00F4D670 /* memory.c in Sources */,
|
||||
A1337ABA2091388600F4D670 /* wolf_math.c in Sources */,
|
||||
A1337A4B2090BC8700F4D670 /* window.c in Sources */,
|
||||
A1337A4C2090BCA700F4D670 /* UIFontButton.m in Sources */,
|
||||
A1337AB62091388600F4D670 /* wolf_client_main.c in Sources */,
|
||||
A1337A352090BC6C00F4D670 /* iphone_downloadUserMap.m in Sources */,
|
||||
A1337A412090BC8700F4D670 /* floor0.c in Sources */,
|
||||
A1337AD4209138FA00F4D670 /* openal_binding.c in Sources */,
|
||||
A1337ACB209138FA00F4D670 /* fileio.c in Sources */,
|
||||
A1337AC8209138FA00F4D670 /* common.c in Sources */,
|
||||
A1337AD9209138FA00F4D670 /* random_number.c in Sources */,
|
||||
A1337AE4209138FA00F4D670 /* zmem.c in Sources */,
|
||||
A1337ABC2091388600F4D670 /* wolf_player.c in Sources */,
|
||||
A1337A432090BC8700F4D670 /* framing.c in Sources */,
|
||||
A1337ACF209138FA00F4D670 /* glob.c in Sources */,
|
||||
A1337ACC209138FA00F4D670 /* files.c in Sources */,
|
||||
A1337A362090BC6C00F4D670 /* iphone_loop.c in Sources */,
|
||||
A1337AD7209138FA00F4D670 /* opengl_main.c in Sources */,
|
||||
A1337A482090BC8700F4D670 /* sharedbook.c in Sources */,
|
||||
A1337AB22091388600F4D670 /* wolf_actors.c in Sources */,
|
||||
A1337ACD209138FA00F4D670 /* filestring.c in Sources */,
|
||||
A1337A472090BC8700F4D670 /* res012.c in Sources */,
|
||||
A1337AD1209138FA00F4D670 /* matrix.c in Sources */,
|
||||
A1337A282090BBA700F4D670 /* CreditsViewController.m in Sources */,
|
||||
A1337AD8209138FA00F4D670 /* opengl_texture.c in Sources */,
|
||||
A1337AE52091396900F4D670 /* mdct.c in Sources */,
|
||||
A1337AC22091388600F4D670 /* wolf_sv_ccmds.c in Sources */,
|
||||
A1337A4A2090BC8700F4D670 /* vorbisfile.c in Sources */,
|
||||
A1337A462090BC8700F4D670 /* registry.c in Sources */,
|
||||
A1337ADD209138FA00F4D670 /* sound_stream.c in Sources */,
|
||||
A1337AE0209138FA00F4D670 /* unix_file.c in Sources */,
|
||||
A1337A4F2090BCA700F4D670 /* UITableViewScrolling.m in Sources */,
|
||||
A1337A3D2090BC6C00F4D670 /* MissionTableViewCell.m in Sources */,
|
||||
A1337AB52091388600F4D670 /* wolf_bj.c in Sources */,
|
||||
A1337A492090BC8700F4D670 /* synthesis.c in Sources */,
|
||||
A1337AD5209138FA00F4D670 /* openal_main.c in Sources */,
|
||||
A1337AB42091388600F4D670 /* wolf_areas.c in Sources */,
|
||||
A1337AC32091388600F4D670 /* wolf_weapon.c in Sources */,
|
||||
A1337A2C2090BBA700F4D670 /* MainMenuViewController.m in Sources */,
|
||||
A1337A292090BBA700F4D670 /* EpisodeViewController.m in Sources */,
|
||||
A1337AC9209138FA00F4D670 /* console.c in Sources */,
|
||||
A1337A3E2090BC8700F4D670 /* bitwise.c in Sources */,
|
||||
A1337AE1209138FA00F4D670 /* unix_timer.c in Sources */,
|
||||
A1337A4D2090BCA700F4D670 /* UIFontLabel.m in Sources */,
|
||||
A1337AB92091388600F4D670 /* wolf_main.c in Sources */,
|
||||
A1337A372090BC6C00F4D670 /* iphone_main.c in Sources */,
|
||||
A1337ACE209138FA00F4D670 /* font_manager.c in Sources */,
|
||||
A1337ADE209138FA00F4D670 /* texture_manager.c in Sources */,
|
||||
A1337A3A2090BC6C00F4D670 /* iphone_store.m in Sources */,
|
||||
A1337A392090BC6C00F4D670 /* iphone_menus.c in Sources */,
|
||||
A1337A312090BC6C00F4D670 /* gles_glue.c in Sources */,
|
||||
A1337A3C2090BC6C00F4D670 /* main.m in Sources */,
|
||||
A1337A452090BC8700F4D670 /* mapping0.c in Sources */,
|
||||
A1337ADB209138FA00F4D670 /* sound.c in Sources */,
|
||||
A1337A2E2090BBA700F4D670 /* TriviaViewController.m in Sources */,
|
||||
A1337ABF2091388600F4D670 /* wolf_raycast.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
|
@ -1520,6 +2017,348 @@
|
|||
};
|
||||
name = DebugLite;
|
||||
};
|
||||
A1337A1E2090BAE400F4D670 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
|
||||
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
||||
CLANG_ANALYZER_NONNULL = YES_NONAGGRESSIVE;
|
||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
|
||||
CLANG_CXX_LIBRARY = "compiler-default";
|
||||
CLANG_ENABLE_MODULES = NO;
|
||||
CLANG_ENABLE_OBJC_ARC = NO;
|
||||
CLANG_ENABLE_OBJC_WEAK = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
|
||||
CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES;
|
||||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
DEVELOPMENT_TEAM = 9UY8SFDNQ8;
|
||||
ENABLE_NS_ASSERTIONS = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_NO_COMMON_BLOCKS = NO;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = wolf3d_Prefix.pch;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = IPHONE;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
INFOPLIST_FILE = wolf3dTV/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "";
|
||||
MTL_ENABLE_DEBUG_INFO = YES;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tomkiddconsulting.wolf3dTV;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = appletvos;
|
||||
TARGETED_DEVICE_FAMILY = 3;
|
||||
TVOS_DEPLOYMENT_TARGET = 11.3;
|
||||
VALIDATE_PRODUCT = NO;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
A1337A1F2090BAE400F4D670 /* DebugLite */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
|
||||
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
||||
CLANG_ANALYZER_NONNULL = YES_NONAGGRESSIVE;
|
||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
|
||||
CLANG_CXX_LIBRARY = "compiler-default";
|
||||
CLANG_ENABLE_MODULES = NO;
|
||||
CLANG_ENABLE_OBJC_ARC = NO;
|
||||
CLANG_ENABLE_OBJC_WEAK = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
|
||||
CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES;
|
||||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
DEVELOPMENT_TEAM = 9UY8SFDNQ8;
|
||||
ENABLE_NS_ASSERTIONS = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_NO_COMMON_BLOCKS = NO;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = wolf3d_Prefix.pch;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
LITE,
|
||||
IPHONE,
|
||||
);
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
INFOPLIST_FILE = wolf3dTV/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "";
|
||||
MTL_ENABLE_DEBUG_INFO = YES;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tomkiddconsulting.wolf3dTV;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = appletvos;
|
||||
TARGETED_DEVICE_FAMILY = 3;
|
||||
TVOS_DEPLOYMENT_TARGET = 11.3;
|
||||
VALIDATE_PRODUCT = NO;
|
||||
};
|
||||
name = DebugLite;
|
||||
};
|
||||
A1337A202090BAE400F4D670 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
|
||||
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
||||
CLANG_ANALYZER_NONNULL = YES_NONAGGRESSIVE;
|
||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
|
||||
CLANG_CXX_LIBRARY = "compiler-default";
|
||||
CLANG_ENABLE_MODULES = NO;
|
||||
CLANG_ENABLE_OBJC_ARC = NO;
|
||||
CLANG_ENABLE_OBJC_WEAK = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
|
||||
CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES;
|
||||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
DEVELOPMENT_TEAM = 9UY8SFDNQ8;
|
||||
ENABLE_NS_ASSERTIONS = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_NO_COMMON_BLOCKS = NO;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = wolf3d_Prefix.pch;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = IPHONE;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
INFOPLIST_FILE = wolf3dTV/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "";
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tomkiddconsulting.wolf3dTV;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = appletvos;
|
||||
TARGETED_DEVICE_FAMILY = 3;
|
||||
TVOS_DEPLOYMENT_TARGET = 11.3;
|
||||
VALIDATE_PRODUCT = NO;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
A1337A212090BAE400F4D670 /* ReleaseLite */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
|
||||
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
||||
CLANG_ANALYZER_NONNULL = YES_NONAGGRESSIVE;
|
||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
|
||||
CLANG_CXX_LIBRARY = "compiler-default";
|
||||
CLANG_ENABLE_MODULES = NO;
|
||||
CLANG_ENABLE_OBJC_ARC = NO;
|
||||
CLANG_ENABLE_OBJC_WEAK = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
|
||||
CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES;
|
||||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
DEVELOPMENT_TEAM = 9UY8SFDNQ8;
|
||||
ENABLE_NS_ASSERTIONS = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_NO_COMMON_BLOCKS = NO;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = wolf3d_Prefix.pch;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
LITE,
|
||||
IPHONE,
|
||||
);
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
INFOPLIST_FILE = wolf3dTV/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "";
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tomkiddconsulting.wolf3dTV;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = appletvos;
|
||||
TARGETED_DEVICE_FAMILY = 3;
|
||||
TVOS_DEPLOYMENT_TARGET = 11.3;
|
||||
VALIDATE_PRODUCT = NO;
|
||||
};
|
||||
name = ReleaseLite;
|
||||
};
|
||||
A1337A222090BAE400F4D670 /* AdHocDist */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
|
||||
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
||||
CLANG_ANALYZER_NONNULL = YES_NONAGGRESSIVE;
|
||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
|
||||
CLANG_CXX_LIBRARY = "compiler-default";
|
||||
CLANG_ENABLE_MODULES = NO;
|
||||
CLANG_ENABLE_OBJC_ARC = NO;
|
||||
CLANG_ENABLE_OBJC_WEAK = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
|
||||
CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES;
|
||||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
DEVELOPMENT_TEAM = 9UY8SFDNQ8;
|
||||
ENABLE_NS_ASSERTIONS = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_NO_COMMON_BLOCKS = NO;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = wolf3d_Prefix.pch;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = IPHONE;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
INFOPLIST_FILE = wolf3dTV/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "";
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tomkiddconsulting.wolf3dTV;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = appletvos;
|
||||
TARGETED_DEVICE_FAMILY = 3;
|
||||
TVOS_DEPLOYMENT_TARGET = 11.3;
|
||||
VALIDATE_PRODUCT = NO;
|
||||
};
|
||||
name = AdHocDist;
|
||||
};
|
||||
A1337A232090BAE400F4D670 /* AdHocDistLite */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
|
||||
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
||||
CLANG_ANALYZER_NONNULL = YES_NONAGGRESSIVE;
|
||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
|
||||
CLANG_CXX_LIBRARY = "compiler-default";
|
||||
CLANG_ENABLE_MODULES = NO;
|
||||
CLANG_ENABLE_OBJC_ARC = NO;
|
||||
CLANG_ENABLE_OBJC_WEAK = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
|
||||
CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES;
|
||||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
DEVELOPMENT_TEAM = 9UY8SFDNQ8;
|
||||
ENABLE_NS_ASSERTIONS = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_NO_COMMON_BLOCKS = NO;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = wolf3d_Prefix.pch;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
LITE,
|
||||
IPHONE,
|
||||
);
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
INFOPLIST_FILE = wolf3dTV/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "";
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tomkiddconsulting.wolf3dTV;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = appletvos;
|
||||
TARGETED_DEVICE_FAMILY = 3;
|
||||
TVOS_DEPLOYMENT_TARGET = 11.3;
|
||||
VALIDATE_PRODUCT = NO;
|
||||
};
|
||||
name = AdHocDistLite;
|
||||
};
|
||||
A1337A242090BAE400F4D670 /* Distribution */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
|
||||
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
||||
CLANG_ANALYZER_NONNULL = YES_NONAGGRESSIVE;
|
||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
|
||||
CLANG_CXX_LIBRARY = "compiler-default";
|
||||
CLANG_ENABLE_MODULES = NO;
|
||||
CLANG_ENABLE_OBJC_ARC = NO;
|
||||
CLANG_ENABLE_OBJC_WEAK = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
|
||||
CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES;
|
||||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
DEVELOPMENT_TEAM = 9UY8SFDNQ8;
|
||||
ENABLE_NS_ASSERTIONS = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_NO_COMMON_BLOCKS = NO;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = wolf3d_Prefix.pch;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = IPHONE;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
INFOPLIST_FILE = wolf3dTV/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "";
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tomkiddconsulting.wolf3dTV;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = appletvos;
|
||||
TARGETED_DEVICE_FAMILY = 3;
|
||||
TVOS_DEPLOYMENT_TARGET = 11.3;
|
||||
VALIDATE_PRODUCT = NO;
|
||||
};
|
||||
name = Distribution;
|
||||
};
|
||||
A1337A252090BAE400F4D670 /* DistributionLite */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
ASSETCATALOG_COMPILER_APPICON_NAME = "App Icon & Top Shelf Image";
|
||||
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
|
||||
CLANG_ANALYZER_NONNULL = YES_NONAGGRESSIVE;
|
||||
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "compiler-default";
|
||||
CLANG_CXX_LIBRARY = "compiler-default";
|
||||
CLANG_ENABLE_MODULES = NO;
|
||||
CLANG_ENABLE_OBJC_ARC = NO;
|
||||
CLANG_ENABLE_OBJC_WEAK = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
|
||||
CLANG_WARN_DOCUMENTATION_COMMENTS = NO;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES;
|
||||
CLANG_WARN_UNGUARDED_AVAILABILITY = YES;
|
||||
CODE_SIGN_STYLE = Automatic;
|
||||
COPY_PHASE_STRIP = YES;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
DEVELOPMENT_TEAM = 9UY8SFDNQ8;
|
||||
ENABLE_NS_ASSERTIONS = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = c99;
|
||||
GCC_NO_COMMON_BLOCKS = NO;
|
||||
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
||||
GCC_PREFIX_HEADER = wolf3d_Prefix.pch;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
LITE,
|
||||
IPHONE,
|
||||
);
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
||||
INFOPLIST_FILE = wolf3dTV/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "";
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
PRODUCT_BUNDLE_IDENTIFIER = com.tomkiddconsulting.wolf3dTV;
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SDKROOT = appletvos;
|
||||
TARGETED_DEVICE_FAMILY = 3;
|
||||
TVOS_DEPLOYMENT_TARGET = 11.3;
|
||||
VALIDATE_PRODUCT = NO;
|
||||
};
|
||||
name = DistributionLite;
|
||||
};
|
||||
C01FCF4F08A954540054247B /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
|
@ -1762,6 +2601,21 @@
|
|||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
A1337A262090BAE400F4D670 /* Build configuration list for PBXNativeTarget "wolf3dTV" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
A1337A1E2090BAE400F4D670 /* Debug */,
|
||||
A1337A1F2090BAE400F4D670 /* DebugLite */,
|
||||
A1337A202090BAE400F4D670 /* Release */,
|
||||
A1337A212090BAE400F4D670 /* ReleaseLite */,
|
||||
A1337A222090BAE400F4D670 /* AdHocDist */,
|
||||
A1337A232090BAE400F4D670 /* AdHocDistLite */,
|
||||
A1337A242090BAE400F4D670 /* Distribution */,
|
||||
A1337A252090BAE400F4D670 /* DistributionLite */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
C01FCF4E08A954540054247B /* Build configuration list for PBXProject "wolf3d" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
|
|
|
@ -24,17 +24,26 @@
|
|||
#import <UIKit/UIKit.h>
|
||||
#import <UIKit/UIAccelerometer.h>
|
||||
#import <AVFoundation/AVAudioPlayer.h>
|
||||
|
||||
#if !TARGET_OS_TV
|
||||
#import <CoreMotion/CoreMotion.h>
|
||||
#endif
|
||||
|
||||
#import "iphone_store.h"
|
||||
|
||||
@class wolf3dViewController;
|
||||
|
||||
#if TARGET_OS_TV
|
||||
@interface wolf3dAppDelegate : NSObject <UIApplicationDelegate> {
|
||||
#else
|
||||
@interface wolf3dAppDelegate : NSObject <UIApplicationDelegate, UIAccelerometerDelegate, UIAlertViewDelegate> {
|
||||
#endif
|
||||
|
||||
UIWindow *window;
|
||||
UINavigationController *navigationController;
|
||||
wolf3dViewController *viewController;
|
||||
int lastAccelUpdateMsec;
|
||||
BOOL glVisible;
|
||||
|
||||
@private
|
||||
UIView *waitingView;
|
||||
|
@ -47,7 +56,9 @@
|
|||
@property (nonatomic, retain) UINavigationController *navigationController;
|
||||
@property (nonatomic, retain) UIView *waitingView;
|
||||
@property (nonatomic, retain) AVAudioPlayer *player;
|
||||
#if !TARGET_OS_TV
|
||||
@property (nonatomic, strong) CMMotionManager * motionManager;
|
||||
#endif
|
||||
|
||||
- (void)initMenuMusicPlayer;
|
||||
|
||||
|
@ -60,7 +71,11 @@
|
|||
- (void)GLtoMainMenu;
|
||||
- (void)GLtoPreviousMenu;
|
||||
- (void)didRotate:(NSNotification *)notification;
|
||||
- (BOOL)isGLVisible;
|
||||
#if !TARGET_OS_TV
|
||||
- (void)setScreenForOrientation:(UIDeviceOrientation)orientation;
|
||||
#endif
|
||||
- (NSString*) GetNibNameForDevice:(NSString*) nibName;
|
||||
|
||||
- (void)dismissWaitingView;
|
||||
|
||||
|
|
|
@ -141,6 +141,7 @@ void SysIPhoneVibrate() {
|
|||
// accelerometer.delegate = self;
|
||||
// accelerometer.updateInterval = 1.0 / 30.0;
|
||||
|
||||
#if !TARGET_OS_TV
|
||||
[NSTimer scheduledTimerWithTimeInterval:0.01 target:self selector:@selector(updateDeviceMotion) userInfo:nil repeats:YES];
|
||||
|
||||
self.motionManager = [[CMMotionManager alloc] init];
|
||||
|
@ -149,7 +150,8 @@ void SysIPhoneVibrate() {
|
|||
[self.motionManager startDeviceMotionUpdatesUsingReferenceFrame:CMAttitudeReferenceFrameXArbitraryCorrectedZVertical];
|
||||
|
||||
[self.motionManager startAccelerometerUpdates];
|
||||
|
||||
#endif
|
||||
|
||||
// do all the game startup work
|
||||
//iphoneStartup();
|
||||
|
||||
|
@ -169,12 +171,14 @@ void SysIPhoneVibrate() {
|
|||
#endif
|
||||
|
||||
// Sign up for rotation notifications
|
||||
#if !TARGET_OS_TV
|
||||
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
|
||||
|
||||
[[NSNotificationCenter defaultCenter] addObserver:self
|
||||
selector:@selector(didRotate:)
|
||||
name:UIDeviceOrientationDidChangeNotification
|
||||
object:nil];
|
||||
#endif
|
||||
|
||||
// Support rendering at native resolution on devices with Retina displays.
|
||||
if ( [[UIScreen mainScreen] respondsToSelector:@selector(scale)] ) {
|
||||
|
@ -185,7 +189,21 @@ void SysIPhoneVibrate() {
|
|||
// Screen is initially landscape-left.
|
||||
// BEWARE! For UI*Interface*Orientation, Left/Right refers to the location of the home button.
|
||||
// BUT, for UI*Device*Orientation, Left/Right refers to the location of the side OPPOSITE the home button!!
|
||||
#if !TARGET_OS_TV
|
||||
[self setScreenForOrientation:UIDeviceOrientationLandscapeRight];
|
||||
#else
|
||||
viddef.width = [UIScreen mainScreen].bounds.size.width * deviceScale;
|
||||
viddef.height = [UIScreen mainScreen].bounds.size.height * deviceScale;
|
||||
|
||||
float widthRatio = viddef.width / REFERENCE_WIDTH;
|
||||
float heightRatio = viddef.height / REFERENCE_HEIGHT;
|
||||
|
||||
if ( widthRatio < heightRatio ) {
|
||||
screenScale = widthRatio;
|
||||
} else {
|
||||
screenScale = heightRatio;
|
||||
}
|
||||
#endif
|
||||
|
||||
CGRect screenBound = [[UIScreen mainScreen] bounds];
|
||||
CGSize screenSize = screenBound.size;
|
||||
|
@ -198,7 +216,8 @@ void SysIPhoneVibrate() {
|
|||
|
||||
// Create the window programmatically instead of loading from a nib file.
|
||||
self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
|
||||
|
||||
self.window.backgroundColor = UIColor.blackColor;
|
||||
|
||||
// We will create the OpenGL view here so we can get a context and preload textures, but
|
||||
// don't actually add the view to the window until the player enters a level.
|
||||
wolf3dViewController *vc = [[wolf3dViewController alloc] initWithNibName:nil bundle:nil];
|
||||
|
@ -206,7 +225,7 @@ void SysIPhoneVibrate() {
|
|||
[self.viewController setActive:NO];
|
||||
[vc release];
|
||||
|
||||
MainMenuViewController *rootController = [[MainMenuViewController alloc] initWithNibName:@"MainMenuView" bundle:nil];
|
||||
MainMenuViewController *rootController = [[MainMenuViewController alloc] initWithNibName:[self GetNibNameForDevice: @"MainMenuView"] bundle:nil];
|
||||
navigationController = [[UINavigationController alloc] initWithRootViewController:rootController];
|
||||
[navigationController setNavigationBarHidden:YES];
|
||||
[rootController release];
|
||||
|
@ -221,22 +240,30 @@ void SysIPhoneVibrate() {
|
|||
- (void)showOpenGL {
|
||||
// Maybe clearing the OpenGL view before displaying will fix the old frame flashing.
|
||||
// I don't mind if this blocks until a vsync, becasue it's just a menu.
|
||||
[self.viewController clearAndPresentRenderbuffer];
|
||||
|
||||
[[navigationController view] removeFromSuperview];
|
||||
|
||||
[self.viewController setActive:YES];
|
||||
[window addSubview:[self.viewController view]];
|
||||
|
||||
[self.viewController startAnimation];
|
||||
// [self.viewController clearAndPresentRenderbuffer];
|
||||
//
|
||||
// [[navigationController view] removeFromSuperview];
|
||||
//
|
||||
// [self.viewController setActive:YES];
|
||||
// [window addSubview:[self.viewController view]];
|
||||
//
|
||||
// [self.viewController startAnimation];
|
||||
[self.viewController clearAndPresentRenderbuffer];
|
||||
[self.viewController setActive:YES];
|
||||
[self.navigationController pushViewController:self.viewController animated:NO];
|
||||
[self.viewController startAnimation];
|
||||
glVisible = YES;
|
||||
}
|
||||
|
||||
- (void)didRotate:(NSNotification *)notification {
|
||||
#if !TARGET_OS_TV
|
||||
UIDeviceOrientation orient = [[UIDevice currentDevice] orientation];
|
||||
|
||||
[self setScreenForOrientation:orient];
|
||||
#endif
|
||||
}
|
||||
|
||||
#if !TARGET_OS_TV
|
||||
- (void)setScreenForOrientation:(UIDeviceOrientation) orientation {
|
||||
|
||||
// Note the the UIDeviceOrientations are REVERSED from the UIInterface orientations!
|
||||
|
@ -272,9 +299,11 @@ void SysIPhoneVibrate() {
|
|||
screenScale = heightRatio;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
//this is so that we can respond to alertView events (messageboxes)
|
||||
//but this should only respond to the alertPurchaseSpear
|
||||
#if !TARGET_OS_TV
|
||||
- (void)alertView:(UIAlertView *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
|
||||
{
|
||||
if (buttonIndex == 1) {
|
||||
|
@ -334,6 +363,7 @@ void SysIPhoneVibrate() {
|
|||
BeginStoreKit();
|
||||
}*/
|
||||
}
|
||||
#endif
|
||||
|
||||
- (void)applicationWillResignActive:(UIApplication *)application {
|
||||
[self.viewController stopAnimation];
|
||||
|
@ -369,6 +399,7 @@ void SysIPhoneVibrate() {
|
|||
|
||||
#if 1
|
||||
extern char urlbuffer[1024];
|
||||
#if !TARGET_OS_TV
|
||||
- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
|
||||
// wolf3d:foo should launch wolf3d now... next, add useful URL parameter encoding
|
||||
|
||||
|
@ -431,6 +462,7 @@ extern char urlbuffer[1024];
|
|||
return YES;
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
- (void)dealloc {
|
||||
|
@ -468,6 +500,7 @@ extern char urlbuffer[1024];
|
|||
//
|
||||
//}
|
||||
|
||||
#if !TARGET_OS_TV
|
||||
-(void)updateDeviceMotion
|
||||
{
|
||||
CMAccelerometerData *deviceMotion = self.motionManager.accelerometerData;
|
||||
|
@ -488,6 +521,19 @@ extern char urlbuffer[1024];
|
|||
iphoneTiltEvent( acc );
|
||||
lastAccelUpdateMsec = (int)Sys_Milliseconds();
|
||||
}
|
||||
#endif
|
||||
|
||||
- (NSString*) GetNibNameForDevice:(NSString*) nibName
|
||||
{
|
||||
NSString *extension = @"";
|
||||
|
||||
#if TARGET_OS_TV
|
||||
extension = @"-tvos";
|
||||
#endif
|
||||
|
||||
return [NSString stringWithFormat:@"%@%@", nibName, extension];
|
||||
}
|
||||
|
||||
|
||||
//------------------------------------------------------------
|
||||
// connection
|
||||
|
@ -593,14 +639,19 @@ extern char urlbuffer[1024];
|
|||
[viewController setActive:NO];
|
||||
[[viewController view] removeFromSuperview];
|
||||
[window addSubview:navigationController.view];
|
||||
glVisible = NO;
|
||||
}
|
||||
|
||||
- (void)GLtoPreviousMenu {
|
||||
[viewController setActive:NO];
|
||||
[[viewController view] removeFromSuperview];
|
||||
[window addSubview:navigationController.view];
|
||||
glVisible = NO;
|
||||
}
|
||||
|
||||
- (BOOL) isGLVisible {
|
||||
return glVisible;
|
||||
}
|
||||
@end
|
||||
|
||||
void iphoneStartMainMenu() {
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "tv"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"layers" : [
|
||||
{
|
||||
"filename" : "Front.imagestacklayer"
|
||||
},
|
||||
{
|
||||
"filename" : "Middle.imagestacklayer"
|
||||
},
|
||||
{
|
||||
"filename" : "Back.imagestacklayer"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "tv"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "tv"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "tv",
|
||||
"filename" : "wolf3d_tv_back.png",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"idiom" : "tv",
|
||||
"scale" : "2x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 33 KiB |
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"layers" : [
|
||||
{
|
||||
"filename" : "Front.imagestacklayer"
|
||||
},
|
||||
{
|
||||
"filename" : "Middle.imagestacklayer"
|
||||
},
|
||||
{
|
||||
"filename" : "Back.imagestacklayer"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "tv",
|
||||
"filename" : "wolf3d_tv_front.png",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"idiom" : "tv",
|
||||
"scale" : "2x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 19 KiB |
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "tv",
|
||||
"filename" : "wolf3d_tv_middle.png",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"idiom" : "tv",
|
||||
"scale" : "2x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 56 KiB |
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"assets" : [
|
||||
{
|
||||
"size" : "1280x768",
|
||||
"idiom" : "tv",
|
||||
"filename" : "App Icon - App Store.imagestack",
|
||||
"role" : "primary-app-icon"
|
||||
},
|
||||
{
|
||||
"size" : "400x240",
|
||||
"idiom" : "tv",
|
||||
"filename" : "App Icon.imagestack",
|
||||
"role" : "primary-app-icon"
|
||||
},
|
||||
{
|
||||
"size" : "2320x720",
|
||||
"idiom" : "tv",
|
||||
"filename" : "Top Shelf Image Wide.imageset",
|
||||
"role" : "top-shelf-image-wide"
|
||||
},
|
||||
{
|
||||
"size" : "1920x720",
|
||||
"idiom" : "tv",
|
||||
"filename" : "Top Shelf Image.imageset",
|
||||
"role" : "top-shelf-image"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "tv",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"idiom" : "tv",
|
||||
"scale" : "2x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"idiom" : "tv",
|
||||
"filename" : "wolf3d_banner.png",
|
||||
"scale" : "1x"
|
||||
},
|
||||
{
|
||||
"idiom" : "tv",
|
||||
"scale" : "2x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 2.1 MiB |
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"images" : [
|
||||
{
|
||||
"orientation" : "landscape",
|
||||
"idiom" : "tv",
|
||||
"extent" : "full-screen",
|
||||
"minimum-system-version" : "11.0",
|
||||
"scale" : "2x"
|
||||
},
|
||||
{
|
||||
"orientation" : "landscape",
|
||||
"idiom" : "tv",
|
||||
"filename" : "Default-Portrait~tvos.png",
|
||||
"extent" : "full-screen",
|
||||
"minimum-system-version" : "9.0",
|
||||
"scale" : "1x"
|
||||
}
|
||||
],
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
After Width: | Height: | Size: 2.9 KiB |
34
wolf3d/code/iphone/wolf3dTV/Info.plist
Normal file
|
@ -0,0 +1,34 @@
|
|||
<?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>$(DEVELOPMENT_LANGUAGE)</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>$(EXECUTABLE_NAME)</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>1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
<true/>
|
||||
<key>UIRequiredDeviceCapabilities</key>
|
||||
<array>
|
||||
<string>arm64</string>
|
||||
</array>
|
||||
<key>UIUserInterfaceStyle</key>
|
||||
<string>Automatic</string>
|
||||
<key>UIAppFonts</key>
|
||||
<array>
|
||||
<string>POSITYPE-idSettler10v2.otf</string>
|
||||
</array>
|
||||
</dict>
|
||||
</plist>
|
|
@ -26,7 +26,7 @@
|
|||
#import "wolf3dViewController.h"
|
||||
#import "EAGLView.h"
|
||||
#import "wolfiphone.h"
|
||||
//#import "wolf3dAppDelegate.h"
|
||||
#import "wolf3dAppDelegate.h"
|
||||
|
||||
#import <GameController/GameController.h>
|
||||
|
||||
|
@ -97,10 +97,19 @@
|
|||
|
||||
// Now that we have a context, we can init the render system.
|
||||
iphoneStartup();
|
||||
|
||||
#if TARGET_OS_TV
|
||||
UITapGestureRecognizer *tapGestureRecognizer = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(handleTapFrom:)];
|
||||
[self.view addGestureRecognizer:tapGestureRecognizer];
|
||||
#endif
|
||||
|
||||
return self;
|
||||
}
|
||||
|
||||
-(void)handleTapFrom:(UIPanGestureRecognizer *)gesture
|
||||
{
|
||||
NSLog(@"caught!");
|
||||
}
|
||||
|
||||
|
||||
- (void)awakeFromNib
|
||||
|
@ -163,7 +172,9 @@
|
|||
|
||||
- (void)dealloc {
|
||||
// Stop orientation notifications.
|
||||
#if !TARGET_OS_TV
|
||||
[[UIDevice currentDevice] endGeneratingDeviceOrientationNotifications];
|
||||
#endif
|
||||
|
||||
// Tear down context.
|
||||
if ([EAGLContext currentContext] == context)
|
||||
|
@ -186,6 +197,10 @@
|
|||
[self setActive:NO];
|
||||
|
||||
[super viewWillDisappear:animated];
|
||||
|
||||
|
||||
wolf3dAppDelegate* app = (wolf3dAppDelegate*)[[UIApplication sharedApplication] delegate];
|
||||
[app GLtoMainMenu];
|
||||
}
|
||||
|
||||
- (NSInteger)animationFrameInterval
|
||||
|
@ -219,7 +234,11 @@
|
|||
// Not worrying about supporting external displays yet, so just create a default display link.
|
||||
//CADisplayLink *aDisplayLink = [[UIScreen mainScreen] displayLinkWithTarget:self selector:@selector(drawFrame)];
|
||||
CADisplayLink *aDisplayLink = [CADisplayLink displayLinkWithTarget:self selector:@selector(drawFrame)];
|
||||
#if TARGET_OS_TV
|
||||
[aDisplayLink setPreferredFramesPerSecond:60];
|
||||
#else
|
||||
[aDisplayLink setFrameInterval:animationFrameInterval];
|
||||
#endif
|
||||
[aDisplayLink addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
|
||||
self.displayLink = aDisplayLink;
|
||||
|
||||
|
@ -276,6 +295,39 @@
|
|||
|
||||
}
|
||||
|
||||
//#if TARGET_OS_TV
|
||||
//- (void)pressesBegan:(NSSet<UIPress *> *)presses withEvent:(UIPressesEvent *)event {
|
||||
// for (UIPress* press in presses) {
|
||||
// switch (press.type) {
|
||||
// case UIPressTypeMenu:
|
||||
// break;
|
||||
// default:
|
||||
// [super pressesBegan: presses withEvent: event];
|
||||
// break;
|
||||
// }
|
||||
// }
|
||||
//}
|
||||
//
|
||||
//- (void)pressesEnded:(NSSet<UIPress *> *)presses withEvent:(UIPressesEvent *)event {
|
||||
// for (UIPress* press in presses) {
|
||||
// wolf3dAppDelegate* app = (wolf3dAppDelegate*)[[UIApplication sharedApplication] delegate];
|
||||
// switch (press.type) {
|
||||
// case UIPressTypeMenu:
|
||||
// if ([app isGLVisible]) {
|
||||
// [app GLtoMainMenu];
|
||||
// } else {
|
||||
// [super pressesEnded: presses withEvent: event];
|
||||
// }
|
||||
// break;
|
||||
// default:
|
||||
// [super pressesEnded: presses withEvent: event];
|
||||
// break;
|
||||
// }
|
||||
// }
|
||||
//}
|
||||
//
|
||||
//#endif
|
||||
|
||||
// Clears the renderbuffer and immediately displays it.
|
||||
- (void)clearAndPresentRenderbuffer {
|
||||
qglClear( GL_COLOR_BUFFER_BIT );
|
||||
|
@ -338,8 +390,8 @@
|
|||
}
|
||||
|
||||
// A button
|
||||
if (gamepad.buttonA == element && gamepad.buttonA.isPressed) {
|
||||
message = [message stringByAppendingString:@"A Button"];
|
||||
if (gamepad.buttonA == element) {
|
||||
iPhoneSetButtonAPressed(gamepad.buttonA.isPressed);
|
||||
}
|
||||
|
||||
// B button
|
||||
|
|
|
@ -118,3 +118,20 @@ void picTimingClear(void);
|
|||
#define IS_IPHONE (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
|
||||
#define IS_IPHONE_X (IS_IPHONE && SCREEN_MAX_LENGTH == 812.0)
|
||||
extern bool isiPhoneX;
|
||||
|
||||
// Game controller stuff
|
||||
extern bool controllerConnected;
|
||||
extern bool leftTriggerPressed;
|
||||
extern bool rightTriggerPressed;
|
||||
extern bool leftShoulderPressed;
|
||||
extern bool rightShoulderPressed;
|
||||
extern bool buttonAPressed;
|
||||
extern bool buttonBPressed;
|
||||
extern bool buttonXPressed;
|
||||
extern bool buttonYPressed;
|
||||
// TODO: d-pad
|
||||
extern float leftThumbstickYAxis;
|
||||
extern float leftThumbstickXAxis;
|
||||
extern float rightThumbstickYAxis;
|
||||
extern float rightThumbstickXAxis;
|
||||
|
||||
|
|
BIN
wolf3d/menu_art/Default-Portrait.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
wolf3d/menu_art/Default-Portrait~ipad.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
wolf3d/menu_art/Default-Portrait~tvos.png
Normal file
After Width: | Height: | Size: 2.9 KiB |