|
cocos2d for iPhone 1.0.0
2D engine for iOS and OS X
|
00001 /* 00002 * cocos2d for iPhone: http://www.cocos2d-iphone.org 00003 * 00004 * Copyright (c) 2008-2009 Jason Booth 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 "CCActionInterval.h" 00028 00031 @interface CCActionEase : CCActionInterval <NSCopying> 00032 { 00033 CCActionInterval * other; 00034 } 00036 +(id) actionWithAction: (CCActionInterval*) action; 00038 -(id) initWithAction: (CCActionInterval*) action; 00039 @end 00040 00043 @interface CCEaseRateAction : CCActionEase <NSCopying> 00044 { 00045 float rate; 00046 } 00048 @property (nonatomic,readwrite,assign) float rate; 00050 +(id) actionWithAction: (CCActionInterval*) action rate:(float)rate; 00052 -(id) initWithAction: (CCActionInterval*) action rate:(float)rate; 00053 @end 00054 00057 @interface CCEaseIn : CCEaseRateAction <NSCopying> {} @end 00058 00061 @interface CCEaseOut : CCEaseRateAction <NSCopying> {} @end 00062 00065 @interface CCEaseInOut : CCEaseRateAction <NSCopying> {} @end 00066 00069 @interface CCEaseExponentialIn : CCActionEase <NSCopying> {} @end 00072 @interface CCEaseExponentialOut : CCActionEase <NSCopying> {} @end 00075 @interface CCEaseExponentialInOut : CCActionEase <NSCopying> {} @end 00078 @interface CCEaseSineIn : CCActionEase <NSCopying> {} @end 00081 @interface CCEaseSineOut : CCActionEase <NSCopying> {} @end 00084 @interface CCEaseSineInOut : CCActionEase <NSCopying> {} @end 00085 00089 @interface CCEaseElastic : CCActionEase <NSCopying> 00090 { 00091 float period_; 00092 } 00093 00095 @property (nonatomic,readwrite) float period; 00096 00098 +(id) actionWithAction: (CCActionInterval*) action period:(float)period; 00100 -(id) initWithAction: (CCActionInterval*) action period:(float)period; 00101 @end 00102 00107 @interface CCEaseElasticIn : CCEaseElastic <NSCopying> {} @end 00112 @interface CCEaseElasticOut : CCEaseElastic <NSCopying> {} @end 00117 @interface CCEaseElasticInOut : CCEaseElastic <NSCopying> {} @end 00118 00122 @interface CCEaseBounce : CCActionEase <NSCopying> {} @end 00123 00128 @interface CCEaseBounceIn : CCEaseBounce <NSCopying> {} @end 00129 00134 @interface CCEaseBounceOut : CCEaseBounce <NSCopying> {} @end 00135 00140 @interface CCEaseBounceInOut : CCEaseBounce <NSCopying> {} @end 00141 00146 @interface CCEaseBackIn : CCActionEase <NSCopying> {} @end 00147 00152 @interface CCEaseBackOut : CCActionEase <NSCopying> {} @end 00153 00158 @interface CCEaseBackInOut : CCActionEase <NSCopying> {} @end 00159