I have a spritesheet made from 100 or so images. The spritesheet is made by Texture Packer in tif format, and is accompanied by a JSON. My intention is to create an animation by using the following code:
- (UIImageView*)makeAnimationFromJSON:(NSURL*)jsonURL
baseImageName:(NSString*)baseImageName
startingIndex:(int)startingIndex
endingIndex:(int)endingIndex
{
NSString* jsonString = [NSString stringWithContentsOfURL:jsonURL encoding:NSUTF8StringEncoding error:nil];
NSMutableArray* frameArray = [NSMutableArray array];
NSMutableArray* frameOffsetArray = [NSMutableArray array];
NSMutableDictionary* textureDictionary = [jsonString JSONValue];
textureDictionary = [textureDictionary objectForKey:@"frames"];
NSString* imageName;
CGRect frameRect;
CGRect frameOffsetRect;
NSValue* rectValue;
NSValue* rectOffsetValue;
NSMutableDictionary* frameDictionary;
NSMutableDictionary* imageBorderDictionary;
CGPoint frameOffset; //this is used because texturepacker trims the sprites
for(int i=startingIndex; i<=endingIndex; i++)
{
imageName = [NSString stringWithFormat:@"%@.%d.tif", baseImageName, i];
if(imageName)
{
frameDictionary = [textureDictionary objectForKey:imageName];
imageBorderDictionary = [frameDictionary objectForKey:@"spriteSourceSize"];
frameOffsetRect = CGRectMake([[imageBorderDictionary objectForKey:@"x"] floatValue],
[[imageBorderDictionary objectForKey:@"y"] floatValue],
[[imageBorderDictionary objectForKey:@"w"] floatValue],
[[imageBorderDictionary objectForKey:@"h"] floatValue]);
rectOffsetValue = [NSValue valueWithCGRect:frameOffsetRect];
[frameOffsetArray addObject:rectOffsetValue];
frameDictionary = [frameDictionary objectForKey:@"frame"];
frameRect = CGRectMake([[frameDictionary objectForKey:@"x"] floatValue] - frameOffsetRect.origin.x,
[[frameDictionary objectForKey:@"y"] floatValue] - frameOffsetRect.origin.y,
[[frameDictionary objectForKey:@"w"] floatValue],
[[frameDictionary objectForKey:@"h"] floatValue]);
rectValue = [NSValue valueWithCGRect:frameRect];
[frameArray addObject:rectValue];
}
}
UIImage* baseImage = [UIImage imageNamed:[NSString stringWithFormat:@"%@.png", baseImageName]];
UIImage* image;
NSMutableArray* imageArray = [NSMutableArray array];
CGImageRef imageRef;
for(int i=0; i<=(endingIndex - startingIndex); i++)
{
rectValue = [frameArray objectAtIndex:i];
frameRect = [rectValue CGRectValue];
imageRef = CGImageCreateWithImageInRect([baseImage CGImage], frameRect);
image = [UIImage imageWithCGImage:imageRef];
[imageArray addObject:image];
CGImageRelease(imageRef);
}
UIImageView* imageView = [[[UIImageView alloc] initWithImage:image] autorelease];
imageView.animationImages = imageArray;
return imageView;
}
The first for loop reads in the data from the JSON. The second for loop finds the appropriate rectangle in the spritesheet, crops that segment and then adds it to the animationImages array of the imageview. After the imageview is returned I animate it. However, I am getting very jumpy images because the frames in the spritesheet are trimmed differently, and I can't find the appropriate rectangles to crop from the spritesheet. Is there something about the coordinates in the JSON or CGImage that is preventing me from doing so?
(I am trying to do this without relying on cocos2d or Sparrow etc.)