required libs:
* ZipArchive - Obj-C impl of zip
* asi-http-request : http request help to assist with asynchoronous downloading of files
* minizip : support for ZipArchive
*
Added default splash screen for iOS app. (using the Wagic background to keep it neutral to module)
TODO: refine handling for iPad splash screen
* add selection screen and input screen for location of downloadable content. (ie core files, image files, etc )
* add support to opt out of backing up to iCloud for core files. Right now iOS will automatically backup all files under Documents folder to iCloud. Consider only allowing player data to be backed up to iCloud. All graphics and other assets are considered volatile.
44 lines
1.3 KiB
C
44 lines
1.3 KiB
C
//
|
|
// ASIHTTPRequestConfig.h
|
|
// Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest
|
|
//
|
|
// Created by Ben Copsey on 14/12/2009.
|
|
// Copyright 2009 All-Seeing Interactive. All rights reserved.
|
|
//
|
|
|
|
|
|
// ======
|
|
// Debug output configuration options
|
|
// ======
|
|
|
|
// If defined will use the specified function for debug logging
|
|
// Otherwise use NSLog
|
|
#ifndef ASI_DEBUG_LOG
|
|
#define ASI_DEBUG_LOG NSLog
|
|
#endif
|
|
|
|
// When set to 1 ASIHTTPRequests will print information about what a request is doing
|
|
#ifndef DEBUG_REQUEST_STATUS
|
|
#define DEBUG_REQUEST_STATUS 0
|
|
#endif
|
|
|
|
// When set to 1, ASIFormDataRequests will print information about the request body to the console
|
|
#ifndef DEBUG_FORM_DATA_REQUEST
|
|
#define DEBUG_FORM_DATA_REQUEST 0
|
|
#endif
|
|
|
|
// When set to 1, ASIHTTPRequests will print information about bandwidth throttling to the console
|
|
#ifndef DEBUG_THROTTLING
|
|
#define DEBUG_THROTTLING 0
|
|
#endif
|
|
|
|
// When set to 1, ASIHTTPRequests will print information about persistent connections to the console
|
|
#ifndef DEBUG_PERSISTENT_CONNECTIONS
|
|
#define DEBUG_PERSISTENT_CONNECTIONS 0
|
|
#endif
|
|
|
|
// When set to 1, ASIHTTPRequests will print information about HTTP authentication (Basic, Digest or NTLM) to the console
|
|
#ifndef DEBUG_HTTP_AUTHENTICATION
|
|
#define DEBUG_HTTP_AUTHENTICATION 0
|
|
#endif
|