/flixel-ios/src/Flixel/FlxEmitter.m

http://github.com/ericjohnson/canabalt-ios · Objective C · 340 lines · 318 code · 6 blank · 16 comment · 42 complexity · 5634304bdc52c55f5ccc25060ab268b6 MD5 · raw file

  1. //
  2. // FlxEmitter.m
  3. // flixel-ios
  4. //
  5. // Copyright Semi Secret Software 2009-2010. All rights reserved.
  6. //
  7. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  8. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  9. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  10. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  11. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  12. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  13. // THE SOFTWARE.
  14. //
  15. #import <Flixel/Flixel.h>
  16. @implementation FlxEmitter
  17. @synthesize quantity;
  18. @synthesize on;
  19. @synthesize gravity;
  20. @synthesize minParticleSpeed;
  21. @synthesize minRotation;
  22. @synthesize maxParticleSpeed;
  23. @synthesize delay;
  24. @synthesize maxRotation;
  25. @synthesize particleDrag;
  26. - (id) init;
  27. {
  28. return [self initWithX:0];
  29. }
  30. - (id) initWithX:(float)X;
  31. {
  32. return [self initWithX:X y:0];
  33. }
  34. - (id) initWithX:(float)X y:(float)Y;
  35. {
  36. if ((self = [super initWithX:X y:Y width:0 height:0])) {
  37. x = X;
  38. y = Y;
  39. width = 0;
  40. height = 0;
  41. minParticleSpeed = CGPointMake(-100,-100);
  42. maxParticleSpeed = CGPointMake(100,100);
  43. minRotation = -360;
  44. maxRotation = 360;
  45. gravity = 400;
  46. particleDrag = CGPointZero;
  47. delay = 0.1;
  48. quantity = 0;
  49. _counter = 0;
  50. _explode = YES;
  51. exists = NO;
  52. on = NO;
  53. }
  54. return self;
  55. }
  56. - (void) dealloc
  57. {
  58. [super dealloc];
  59. }
  60. - (FlxEmitter *) createSprites:(NSString *)Graphics;
  61. {
  62. return [self createSprites:Graphics quantity:50];
  63. }
  64. - (FlxEmitter *) createSprites:(NSString *)Graphics quantity:(unsigned int)Quantity;
  65. {
  66. return [self createSprites:Graphics quantity:Quantity bakedRotations:16];
  67. }
  68. - (FlxEmitter *) createSprites:(NSString *)Graphics quantity:(unsigned int)Quantity bakedRotations:(unsigned int)BakedRotations;
  69. {
  70. return [self createSprites:Graphics quantity:Quantity bakedRotations:BakedRotations multiple:YES];
  71. }
  72. - (FlxEmitter *) createSprites:(NSString *)Graphics quantity:(unsigned int)Quantity bakedRotations:(unsigned int)BakedRotations multiple:(BOOL)Multiple;
  73. {
  74. return [self createSprites:Graphics quantity:Quantity bakedRotations:BakedRotations multiple:Multiple collide:0];
  75. }
  76. - (FlxEmitter *) createSprites:(NSString *)Graphics quantity:(unsigned int)Quantity bakedRotations:(unsigned int)BakedRotations multiple:(BOOL)Multiple collide:(float)Collide;
  77. {
  78. return [self createSprites:Graphics quantity:Quantity bakedRotations:BakedRotations multiple:Multiple collide:Collide modelScale:1.0];
  79. }
  80. - (FlxEmitter *) createSprites:(NSString *)Graphics quantity:(unsigned int)Quantity bakedRotations:(unsigned int)BakedRotations modelScale:(float)ModelScale;
  81. {
  82. return [self createSprites:Graphics quantity:Quantity bakedRotations:BakedRotations multiple:YES modelScale:ModelScale];
  83. }
  84. - (FlxEmitter *) createSprites:(NSString *)Graphics quantity:(unsigned int)Quantity bakedRotations:(unsigned int)BakedRotations multiple:(BOOL)Multiple modelScale:(float)ModelScale;
  85. {
  86. return [self createSprites:Graphics quantity:Quantity bakedRotations:BakedRotations multiple:Multiple collide:0 modelScale:ModelScale];
  87. }
  88. - (FlxEmitter *) createSprites:(NSString *)Graphics
  89. quantity:(unsigned int)Quantity
  90. bakedRotations:(unsigned int)BakedRotations
  91. multiple:(BOOL)Multiple
  92. collide:(float)Collide
  93. modelScale:(float)ModelScale;
  94. {
  95. [members removeAllObjects];
  96. unsigned int r;
  97. FlxSprite * s;
  98. unsigned int tf = 1;
  99. float sw;
  100. float sh;
  101. if (Multiple)
  102. {
  103. s = [[[FlxManagedSprite alloc] initWithX:0 y:0 graphic:Graphics modelScale:ModelScale] autorelease];
  104. tf = s.width / s.height;
  105. }
  106. for ( unsigned int i = 0; i < Quantity; i++ )
  107. {
  108. s = [[[FlxSprite alloc] init] autorelease];
  109. //s = [[[FlxManagedSprite alloc] init] autorelease];
  110. if (Multiple)
  111. {
  112. r = [FlxU random] * tf;
  113. if (BakedRotations > 0)
  114. [s loadRotatedGraphic:Graphics rotations:BakedRotations frame:r modelScale:ModelScale];
  115. else
  116. {
  117. [s loadGraphic:Graphics animated:YES modelScale:ModelScale];
  118. s.frame = r;
  119. }
  120. }
  121. else
  122. {
  123. if (BakedRotations > 0)
  124. [s loadRotatedGraphic:Graphics rotations:BakedRotations modelScale:ModelScale];
  125. else
  126. [s loadGraphic:Graphics modelScale:ModelScale];
  127. }
  128. if (Collide > 0)
  129. {
  130. sw = s.width;
  131. sh = s.height;
  132. s.width *= Collide;
  133. s.height *= Collide;
  134. s.offset = CGPointMake((sw - s.width) / 2,
  135. (sh - s.height) / 2);
  136. s.solid = YES;
  137. }
  138. else {
  139. s.solid = NO;
  140. }
  141. s.exists = NO;
  142. s.scrollFactor = scrollFactor;
  143. [self add:s];
  144. }
  145. return self;
  146. }
  147. - (void) setSizeWithParam1:(unsigned int)Width param2:(unsigned int)Height;
  148. {
  149. width = Width;
  150. height = Height;
  151. }
  152. - (void) setXSpeed;
  153. {
  154. return [self setXSpeed:0];
  155. }
  156. - (void) setXSpeed:(float)Min;
  157. {
  158. return [self setXSpeedWithParam1:Min param2:0];
  159. }
  160. - (void) setXSpeedWithParam1:(float)Min param2:(float)Max;
  161. {
  162. minParticleSpeed.x = Min;
  163. maxParticleSpeed.x = Max;
  164. }
  165. - (void) setYSpeed;
  166. {
  167. return [self setYSpeed:0];
  168. }
  169. - (void) setYSpeed:(float)Min;
  170. {
  171. return [self setYSpeedWithParam1:Min param2:0];
  172. }
  173. - (void) setYSpeedWithParam1:(float)Min param2:(float)Max;
  174. {
  175. minParticleSpeed.y = Min;
  176. maxParticleSpeed.y = Max;
  177. }
  178. - (void) setRotation;
  179. {
  180. return [self setRotation:0];
  181. }
  182. - (void) setRotation:(float)Min;
  183. {
  184. return [self setRotationWithParam1:Min param2:0];
  185. }
  186. - (void) setRotationWithParam1:(float)Min param2:(float)Max;
  187. {
  188. minRotation = Min;
  189. maxRotation = Max;
  190. }
  191. - (void) updateEmitter;
  192. {
  193. if (_explode)
  194. {
  195. unsigned int i;
  196. unsigned int l;
  197. _timer += FlxG.elapsed;
  198. if ((delay > 0) && (_timer > delay))
  199. {
  200. [self kill];
  201. return;
  202. }
  203. if (on)
  204. {
  205. on = NO;
  206. l = members.length;
  207. if (quantity > 0)
  208. l = quantity;
  209. l += _particle;
  210. for ( i = _particle; i < l; i++ )
  211. [self emitParticle];
  212. }
  213. return;
  214. }
  215. if (!on)
  216. return;
  217. _timer += FlxG.elapsed;
  218. while ((_timer > delay) && ((quantity <= 0) || (_counter < quantity)))
  219. {
  220. _timer -= delay;
  221. [self emitParticle];
  222. }
  223. }
  224. - (void) updateMembers;
  225. {
  226. FlxObject * o;
  227. unsigned int l = members.length;
  228. for ( unsigned int i = 0; i < l; i++ )
  229. {
  230. o = ((FlxObject *)([members objectAtIndex:i]));
  231. if ((o != nil) && o.exists && o.active) {
  232. [o update];
  233. }
  234. }
  235. }
  236. - (void) update;
  237. {
  238. [super update];
  239. [self updateEmitter];
  240. }
  241. - (void) start;
  242. {
  243. return [self start:YES];
  244. }
  245. - (void) start:(BOOL)Explode;
  246. {
  247. return [self startWithParam1:Explode param2:0];
  248. }
  249. - (void) startWithParam1:(BOOL)Explode param2:(float)Delay;
  250. {
  251. return [self startWithParam1:Explode param2:Delay param3:0];
  252. }
  253. - (void) startWithParam1:(BOOL)Explode param2:(float)Delay param3:(unsigned int)Quantity;
  254. {
  255. if (members.length <= 0)
  256. {
  257. [FlxG log:@"WARNING: there are no sprites loaded in your emitter.\nAdd some to FlxEmitter.members or use FlxEmitter.createSprites()."];
  258. return;
  259. }
  260. _explode = Explode;
  261. if (!_explode)
  262. _counter = 0;
  263. if (!exists)
  264. _particle = 0;
  265. exists = YES;
  266. visible = YES;
  267. active = YES;
  268. dead = NO;
  269. on = YES;
  270. _timer = 0;
  271. if (quantity == 0)
  272. quantity = Quantity;
  273. if (Delay != 0)
  274. delay = Delay;
  275. if (delay < 0)
  276. delay = -delay;
  277. for (FlxSprite * s in members)
  278. s.visible = NO;
  279. }
  280. - (void) emitParticle;
  281. {
  282. _counter++;
  283. //FlxSprite * s = ((FlxSprite *)([members objectAtIndex:_particle]));
  284. FlxObject * s = ((FlxObject *)([members objectAtIndex:_particle]));
  285. s.exists = YES;
  286. s.active = YES;
  287. s.dead = NO;
  288. s.x = x - ((int)(s.width) >> 1) + [FlxU random] * width;
  289. s.y = y - ((int)(s.height) >> 1) + [FlxU random] * height;
  290. s.visible = YES;
  291. CGPoint s_velocity;
  292. s_velocity.x = minParticleSpeed.x;
  293. if (minParticleSpeed.x != maxParticleSpeed.x)
  294. s_velocity.x += [FlxU random] * (maxParticleSpeed.x - minParticleSpeed.x);
  295. s_velocity.y = minParticleSpeed.y;
  296. if (minParticleSpeed.y != maxParticleSpeed.y)
  297. s_velocity.y += [FlxU random] * (maxParticleSpeed.y - minParticleSpeed.y);
  298. s.velocity = s_velocity;
  299. s.acceleration = CGPointMake(s.acceleration.x,
  300. gravity);
  301. s.angularVelocity = minRotation;
  302. if (minRotation != maxRotation)
  303. s.angularVelocity += [FlxU random] * (maxRotation - minRotation);
  304. if (s.angularVelocity != 0)
  305. s.angle = [FlxU random] * 360 - 180;
  306. s.drag = particleDrag;
  307. _particle++;
  308. if (_particle >= members.length)
  309. _particle = 0;
  310. [s onEmit];
  311. }
  312. - (void) stop;
  313. {
  314. return [self stop:3];
  315. }
  316. - (void) stop:(float)Delay;
  317. {
  318. _explode = YES;
  319. delay = Delay;
  320. if (delay < 0)
  321. delay = -Delay;
  322. on = NO;
  323. }
  324. - (void) at:(FlxObject *)Object;
  325. {
  326. x = Object.x + Object.origin.x;
  327. y = Object.y + Object.origin.y;
  328. }
  329. - (void) kill;
  330. {
  331. [super kill];
  332. on = NO;
  333. }
  334. @end