• Main Page
  • Related Pages
  • Modules
  • Classes
  • Files
  • File List
  • File Members

/depot/cocosdocs/cocos2d-iphone-0.99.5/cocos2d/CCParticleExamples.h

00001 /*
00002  * cocos2d for iPhone: http://www.cocos2d-iphone.org
00003  *
00004  * Copyright (c) 2008-2010 Ricardo Quesada
00005  * 
00006  * Permission is hereby granted, free of charge, to any person obtaining a copy
00007  * of this software and associated documentation files (the "Software"), to deal
00008  * in the Software without restriction, including without limitation the rights
00009  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
00010  * copies of the Software, and to permit persons to whom the Software is
00011  * furnished to do so, subject to the following conditions:
00012  * 
00013  * The above copyright notice and this permission notice shall be included in
00014  * all copies or substantial portions of the Software.
00015  * 
00016  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
00017  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
00018  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
00019  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
00020  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
00021  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
00022  * THE SOFTWARE.
00023  *
00024  */
00025 
00026 
00027 #import <Availability.h>
00028 
00029 #import "CCParticleSystemPoint.h"
00030 #import "CCParticleSystemQuad.h"
00031 
00032 // build each architecture with the optimal particle system
00033 
00034 // ARMv7, Mac or Simulator use "Quad" particle
00035 #if defined(__ARM_NEON__) || defined(__MAC_OS_X_VERSION_MAX_ALLOWED) || TARGET_IPHONE_SIMULATOR
00036          #define ARCH_OPTIMAL_PARTICLE_SYSTEM CCParticleSystemQuad
00037 
00038 // ARMv6 use "Point" particle
00039 #elif __arm__
00040          #define ARCH_OPTIMAL_PARTICLE_SYSTEM CCParticleSystemPoint
00041 #else
00042          #error(unknown architecture)
00043 #endif
00044 
00045 
00047 @interface CCParticleFire: ARCH_OPTIMAL_PARTICLE_SYSTEM
00048 {
00049 }
00050 @end
00051 
00053 @interface CCParticleFireworks : ARCH_OPTIMAL_PARTICLE_SYSTEM
00054 {
00055 }
00056 @end
00057 
00059 @interface CCParticleSun : ARCH_OPTIMAL_PARTICLE_SYSTEM
00060 {
00061 }
00062 @end
00063 
00065 @interface CCParticleGalaxy : ARCH_OPTIMAL_PARTICLE_SYSTEM
00066 {
00067 }
00068 @end
00069 
00071 @interface CCParticleFlower : ARCH_OPTIMAL_PARTICLE_SYSTEM
00072 {
00073 }
00074 @end
00075 
00077 @interface CCParticleMeteor : ARCH_OPTIMAL_PARTICLE_SYSTEM
00078 {
00079 }
00080 @end
00081 
00083 @interface CCParticleSpiral : ARCH_OPTIMAL_PARTICLE_SYSTEM
00084 {
00085 }
00086 @end
00087 
00089 @interface CCParticleExplosion : ARCH_OPTIMAL_PARTICLE_SYSTEM
00090 {
00091 }
00092 @end
00093 
00095 @interface CCParticleSmoke : ARCH_OPTIMAL_PARTICLE_SYSTEM
00096 {
00097 }
00098 @end
00099 
00101 @interface CCParticleSnow : ARCH_OPTIMAL_PARTICLE_SYSTEM
00102 {
00103 }
00104 @end
00105 
00107 @interface CCParticleRain : ARCH_OPTIMAL_PARTICLE_SYSTEM
00108 {
00109 }
00110 @end

Generated on Mon Jan 31 2011 15:39:14 for Unofficial Cocos2D for iOS 0.99.5 API Reference by  doxygen 1.7.1