Restore gear ASAP, add denied sound for illegal activation without wasting ammo.
/* This file is part of Appirater. Copyright (c) 2010, Arash Payan All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *//* * Appirater.m * appirater * * Created by Arash Payan on 9/5/09. * http://arashpayan.com * Copyright 2010 Arash Payan. All rights reserved. */#import "Appirater.h"#import <SystemConfiguration/SCNetworkReachability.h>#import <netinet/in.h>#import "CommodityFunctions.h"NSString *const kAppiraterLaunchDate = @"kAppiraterLaunchDate";NSString *const kAppiraterLaunchCount = @"kAppiraterLaunchCount";NSString *const kAppiraterCurrentVersion = @"kAppiraterCurrentVersion";NSString *const kAppiraterRatedCurrentVersion = @"kAppiraterRatedCurrentVersion";NSString *const kAppiraterDeclinedToRate = @"kAppiraterDeclinedToRate";NSString *templateReviewURL = @"itms-apps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?id=APP_ID&onlyLatestVersion=true&pageNumber=0&sortOrdering=1&type=Purple+Software";@implementation Appirater+(void) appLaunched { Appirater *appirater = [[Appirater alloc] init]; [NSThread detachNewThreadSelector:@selector(appLaunchedHandler) toTarget:appirater withObject:nil];}-(void) appLaunchedHandler { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; if (APPIRATER_DEBUG) { [self performSelectorOnMainThread:@selector(showPrompt) withObject:nil waitUntilDone:NO]; return; } BOOL willShowPrompt = NO; // get the app's version NSString *version = [[[NSBundle mainBundle] infoDictionary] objectForKey:(NSString*)kCFBundleVersionKey]; // get the version number that we've been tracking NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults]; NSString *trackingVersion = [userDefaults stringForKey:kAppiraterCurrentVersion]; if (trackingVersion == nil) { trackingVersion = version; [userDefaults setObject:version forKey:kAppiraterCurrentVersion]; } if (APPIRATER_DEBUG) DLog(@"APPIRATER Tracking version: %@", trackingVersion); if ([trackingVersion isEqualToString:version]) { // get the launch date NSTimeInterval timeInterval = [userDefaults doubleForKey:kAppiraterLaunchDate]; if (timeInterval == 0) { timeInterval = [[NSDate date] timeIntervalSince1970]; [userDefaults setDouble:timeInterval forKey:kAppiraterLaunchDate]; } NSTimeInterval secondsSinceLaunch = [[NSDate date] timeIntervalSinceDate:[NSDate dateWithTimeIntervalSince1970:timeInterval]]; double secondsUntilPrompt = 60 * 60 * 24 * DAYS_UNTIL_PROMPT; // get the launch count int launchCount = [userDefaults integerForKey:kAppiraterLaunchCount]; launchCount++; [userDefaults setInteger:launchCount forKey:kAppiraterLaunchCount]; if (APPIRATER_DEBUG) NSLog(@"APPIRATER Launch count: %d", launchCount); // have they previously declined to rate this version of the app? BOOL declinedToRate = [userDefaults boolForKey:kAppiraterDeclinedToRate]; // have they already rated the app? BOOL ratedApp = [userDefaults boolForKey:kAppiraterRatedCurrentVersion]; if (secondsSinceLaunch > secondsUntilPrompt && launchCount > LAUNCHES_UNTIL_PROMPT && !declinedToRate && !ratedApp) { if (isNetworkReachable()) { // check if they can reach the app store willShowPrompt = YES; [self performSelectorOnMainThread:@selector(showPrompt) withObject:nil waitUntilDone:NO]; } } } else { // it's a new version of the app, so restart tracking [userDefaults setObject:version forKey:kAppiraterCurrentVersion]; [userDefaults setDouble:[[NSDate date] timeIntervalSince1970] forKey:kAppiraterLaunchDate]; [userDefaults setInteger:1 forKey:kAppiraterLaunchCount]; [userDefaults setBool:NO forKey:kAppiraterRatedCurrentVersion]; [userDefaults setBool:NO forKey:kAppiraterDeclinedToRate]; } [userDefaults synchronize]; if (!willShowPrompt) [self autorelease]; [pool release];}-(void) showPrompt { UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:APPIRATER_MESSAGE_TITLE message:APPIRATER_MESSAGE delegate:self cancelButtonTitle:APPIRATER_CANCEL_BUTTON otherButtonTitles:APPIRATER_RATE_BUTTON, APPIRATER_RATE_LATER, nil]; [alertView show]; [alertView release];}-(void) alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger) buttonIndex { NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults]; switch (buttonIndex) { case 0: // they don't want to rate it [userDefaults setBool:YES forKey:kAppiraterDeclinedToRate]; break; case 1: // they want to rate it [[UIApplication sharedApplication] openURL: [NSURL URLWithString:[templateReviewURL stringByReplacingOccurrencesOfString:@"APP_ID" withString:[NSString stringWithFormat:@"%d", APPIRATER_APP_ID]]]]; [userDefaults setBool:YES forKey:kAppiraterRatedCurrentVersion]; break; case 2: // remind them later break; default: break; } [userDefaults synchronize]; [self release];}@end