Texture2D.m
上传用户:jsxyqc
上传日期:2015-08-08
资源大小:1251k
文件大小:11k
源码类别:

MacOS编程

开发平台:

Objective-C

  1. /*
  2. ===== IMPORTANT =====
  3. This is sample code demonstrating API, technology or techniques in development.
  4. Although this sample code has been reviewed for technical accuracy, it is not
  5. final. Apple is supplying this information to help you plan for the adoption of
  6. the technologies and programming interfaces described herein. This information
  7. is subject to change, and software implemented based on this sample code should
  8. be tested with final operating system software and final documentation. Newer
  9. versions of this sample code may be provided with future seeds of the API or
  10. technology. For information about updates to this and other developer
  11. documentation, view the New & Updated sidebars in subsequent documentation
  12. seeds.
  13. =====================
  14. File: Texture2D.m
  15. Abstract: Creates OpenGL 2D textures from images or text.
  16. Version: 1.6
  17. Disclaimer: IMPORTANT:  This Apple software is supplied to you by Apple Inc.
  18. ("Apple") in consideration of your agreement to the following terms, and your
  19. use, installation, modification or redistribution of this Apple software
  20. constitutes acceptance of these terms.  If you do not agree with these terms,
  21. please do not use, install, modify or redistribute this Apple software.
  22. In consideration of your agreement to abide by the following terms, and subject
  23. to these terms, Apple grants you a personal, non-exclusive license, under
  24. Apple's copyrights in this original Apple software (the "Apple Software"), to
  25. use, reproduce, modify and redistribute the Apple Software, with or without
  26. modifications, in source and/or binary forms; provided that if you redistribute
  27. the Apple Software in its entirety and without modifications, you must retain
  28. this notice and the following text and disclaimers in all such redistributions
  29. of the Apple Software.
  30. Neither the name, trademarks, service marks or logos of Apple Inc. may be used
  31. to endorse or promote products derived from the Apple Software without specific
  32. prior written permission from Apple.  Except as expressly stated in this notice,
  33. no other rights or licenses, express or implied, are granted by Apple herein,
  34. including but not limited to any patent rights that may be infringed by your
  35. derivative works or by other works in which the Apple Software may be
  36. incorporated.
  37. The Apple Software is provided by Apple on an "AS IS" basis.  APPLE MAKES NO
  38. WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED
  39. WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  40. PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN
  41. COMBINATION WITH YOUR PRODUCTS.
  42. IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR
  43. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  44. GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  45. ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR
  46. DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF
  47. CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF
  48. APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  49. Copyright (C) 2008 Apple Inc. All Rights Reserved.
  50. */
  51. #import <OpenGLES/ES1/glext.h>
  52. #import "Texture2D.h"
  53. //CONSTANTS:
  54. #define kMaxTextureSize  1024
  55. //CLASS IMPLEMENTATIONS:
  56. @implementation Texture2D
  57. @synthesize contentSize=_size, pixelFormat=_format, pixelsWide=_width, pixelsHigh=_height, name=_name, maxS=_maxS, maxT=_maxT;
  58. - (id) initWithData:(const void*)data pixelFormat:(Texture2DPixelFormat)pixelFormat pixelsWide:(NSUInteger)width pixelsHigh:(NSUInteger)height contentSize:(CGSize)size
  59. {
  60. GLint saveName;
  61. if((self = [super init])) {
  62. glGenTextures(1, &_name);
  63. glGetIntegerv(GL_TEXTURE_BINDING_2D, &saveName);
  64. glBindTexture(GL_TEXTURE_2D, _name);
  65. glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
  66. switch(pixelFormat) {
  67. case kTexture2DPixelFormat_RGBA8888:
  68. glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, data);
  69. break;
  70. case kTexture2DPixelFormat_RGB565:
  71. glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width, height, 0, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, data);
  72. break;
  73. case kTexture2DPixelFormat_A8:
  74. glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, width, height, 0, GL_ALPHA, GL_UNSIGNED_BYTE, data);
  75. break;
  76. default:
  77. [NSException raise:NSInternalInconsistencyException format:@""];
  78. }
  79. glBindTexture(GL_TEXTURE_2D, saveName);
  80. _size = size;
  81. _width = width;
  82. _height = height;
  83. _format = pixelFormat;
  84. _maxS = size.width / (float)width;
  85. _maxT = size.height / (float)height;
  86. }
  87. return self;
  88. }
  89. - (void) dealloc
  90. {
  91. if(_name)
  92.  glDeleteTextures(1, &_name);
  93. [super dealloc];
  94. }
  95. - (NSString*) description
  96. {
  97. return [NSString stringWithFormat:@"<%@ = %08X | Name = %i | Dimensions = %ix%i | Coordinates = (%.2f, %.2f)>", [self class], self, _name, _width, _height, _maxS, _maxT];
  98. }
  99. @end
  100. @implementation Texture2D (Image)
  101. - (id) initWithImage:(UIImage *)uiImage
  102. {
  103. NSUInteger width,
  104. height,
  105. i;
  106. CGContextRef context = nil;
  107. void* data = nil;;
  108. CGColorSpaceRef colorSpace;
  109. void* tempData;
  110. unsigned int* inPixel32;
  111. unsigned short* outPixel16;
  112. BOOL hasAlpha;
  113. CGImageAlphaInfo info;
  114. CGAffineTransform transform;
  115. CGSize imageSize;
  116. Texture2DPixelFormat    pixelFormat;
  117. CGImageRef image;
  118. UIImageOrientation orientation;
  119. BOOL sizeToFit = NO;
  120. image = [uiImage CGImage];
  121. orientation = [uiImage imageOrientation]; 
  122. if(image == NULL) {
  123. [self release];
  124. NSLog(@"Image is Null");
  125. return nil;
  126. }
  127. info = CGImageGetAlphaInfo(image);
  128. hasAlpha = ((info == kCGImageAlphaPremultipliedLast) || (info == kCGImageAlphaPremultipliedFirst) || (info == kCGImageAlphaLast) || (info == kCGImageAlphaFirst) ? YES : NO);
  129. if(CGImageGetColorSpace(image)) {
  130. if(hasAlpha)
  131. pixelFormat = kTexture2DPixelFormat_RGBA8888;
  132. else
  133. pixelFormat = kTexture2DPixelFormat_RGB565;
  134. } else  //NOTE: No colorspace means a mask image
  135. pixelFormat = kTexture2DPixelFormat_A8;
  136. imageSize = CGSizeMake(CGImageGetWidth(image), CGImageGetHeight(image));
  137. transform = CGAffineTransformIdentity;
  138. width = imageSize.width;
  139. if((width != 1) && (width & (width - 1))) {
  140. i = 1;
  141. while((sizeToFit ? 2 * i : i) < width)
  142. i *= 2;
  143. width = i;
  144. }
  145. height = imageSize.height;
  146. if((height != 1) && (height & (height - 1))) {
  147. i = 1;
  148. while((sizeToFit ? 2 * i : i) < height)
  149. i *= 2;
  150. height = i;
  151. }
  152. while((width > kMaxTextureSize) || (height > kMaxTextureSize)) {
  153. width /= 2;
  154. height /= 2;
  155. transform = CGAffineTransformScale(transform, 0.5, 0.5);
  156. imageSize.width *= 0.5;
  157. imageSize.height *= 0.5;
  158. }
  159. switch(pixelFormat) {
  160. case kTexture2DPixelFormat_RGBA8888:
  161. colorSpace = CGColorSpaceCreateDeviceRGB();
  162. data = malloc(height * width * 4);
  163. context = CGBitmapContextCreate(data, width, height, 8, 4 * width, colorSpace, kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big);
  164. CGColorSpaceRelease(colorSpace);
  165. break;
  166. case kTexture2DPixelFormat_RGB565:
  167. colorSpace = CGColorSpaceCreateDeviceRGB();
  168. data = malloc(height * width * 4);
  169. context = CGBitmapContextCreate(data, width, height, 8, 4 * width, colorSpace, kCGImageAlphaNoneSkipLast | kCGBitmapByteOrder32Big);
  170. CGColorSpaceRelease(colorSpace);
  171. break;
  172. case kTexture2DPixelFormat_A8:
  173. data = malloc(height * width);
  174. context = CGBitmapContextCreate(data, width, height, 8, width, NULL, kCGImageAlphaOnly);
  175. break;
  176. default:
  177. [NSException raise:NSInternalInconsistencyException format:@"Invalid pixel format"];
  178. }
  179.  
  180. CGContextClearRect(context, CGRectMake(0, 0, width, height));
  181. CGContextTranslateCTM(context, 0, height - imageSize.height);
  182. if(!CGAffineTransformIsIdentity(transform))
  183. CGContextConcatCTM(context, transform);
  184. CGContextDrawImage(context, CGRectMake(0, 0, CGImageGetWidth(image), CGImageGetHeight(image)), image);
  185. //Convert "RRRRRRRRRGGGGGGGGBBBBBBBBAAAAAAAA" to "RRRRRGGGGGGBBBBB"
  186. if(pixelFormat == kTexture2DPixelFormat_RGB565) {
  187. tempData = malloc(height * width * 2);
  188. inPixel32 = (unsigned int*)data;
  189. outPixel16 = (unsigned short*)tempData;
  190. for(i = 0; i < width * height; ++i, ++inPixel32)
  191. *outPixel16++ = ((((*inPixel32 >> 0) & 0xFF) >> 3) << 11) | ((((*inPixel32 >> 8) & 0xFF) >> 2) << 5) | ((((*inPixel32 >> 16) & 0xFF) >> 3) << 0);
  192. free(data);
  193. data = tempData;
  194. }
  195. self = [self initWithData:data pixelFormat:pixelFormat pixelsWide:width pixelsHigh:height contentSize:imageSize];
  196. CGContextRelease(context);
  197. free(data);
  198. return self;
  199. }
  200. @end
  201. @implementation Texture2D (Text)
  202. - (id) initWithString:(NSString*)string dimensions:(CGSize)dimensions alignment:(UITextAlignment)alignment fontName:(NSString*)name fontSize:(CGFloat)size
  203. {
  204. NSUInteger width,
  205. height,
  206. i;
  207. CGContextRef context;
  208. void* data;
  209. CGColorSpaceRef colorSpace;
  210. UIFont * font;
  211. font = [UIFont fontWithName:name size:size];
  212. width = dimensions.width;
  213. if((width != 1) && (width & (width - 1))) {
  214. i = 1;
  215. while(i < width)
  216. i *= 2;
  217. width = i;
  218. }
  219. height = dimensions.height;
  220. if((height != 1) && (height & (height - 1))) {
  221. i = 1;
  222. while(i < height)
  223. i *= 2;
  224. height = i;
  225. }
  226. colorSpace = CGColorSpaceCreateDeviceGray();
  227. data = calloc(height, width);
  228. context = CGBitmapContextCreate(data, width, height, 8, width, colorSpace, kCGImageAlphaNone);
  229. CGColorSpaceRelease(colorSpace);
  230. CGContextSetGrayFillColor(context, 1.0, 1.0);
  231. CGContextTranslateCTM(context, 0.0, height);
  232. CGContextScaleCTM(context, 1.0, -1.0); //NOTE: NSString draws in UIKit referential i.e. renders upside-down compared to CGBitmapContext referential
  233. UIGraphicsPushContext(context);
  234. [string drawInRect:CGRectMake(0, 0, dimensions.width, dimensions.height) withFont:font lineBreakMode:UILineBreakModeWordWrap alignment:alignment];
  235. UIGraphicsPopContext();
  236. self = [self initWithData:data pixelFormat:kTexture2DPixelFormat_A8 pixelsWide:width pixelsHigh:height contentSize:dimensions];
  237. CGContextRelease(context);
  238. free(data);
  239. return self;
  240. }
  241. @end
  242. @implementation Texture2D (Drawing)
  243. - (void) drawAtPoint:(CGPoint)point 
  244. {
  245. GLfloat coordinates[] = { 0, _maxT,
  246. _maxS, _maxT,
  247. 0, 0,
  248. _maxS, 0 };
  249. GLfloat width = (GLfloat)_width * _maxS,
  250. height = (GLfloat)_height * _maxT;
  251. GLfloat vertices[] = { -width / 2 + point.x, -height / 2 + point.y, 0.0,
  252. width / 2 + point.x, -height / 2 + point.y, 0.0,
  253. -width / 2 + point.x, height / 2 + point.y, 0.0,
  254. width / 2 + point.x, height / 2 + point.y, 0.0 };
  255. glBindTexture(GL_TEXTURE_2D, _name);
  256. glVertexPointer(3, GL_FLOAT, 0, vertices);
  257. glTexCoordPointer(2, GL_FLOAT, 0, coordinates);
  258. glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
  259. }
  260. - (void) drawInRect:(CGRect)rect
  261. {
  262. GLfloat  coordinates[] = {  0, _maxT,
  263. _maxS, _maxT,
  264. 0, 0,
  265. _maxS, 0  };
  266. GLfloat vertices[] = { rect.origin.x, rect.origin.y, 0.0,
  267. rect.origin.x + rect.size.width, rect.origin.y, 0.0,
  268. rect.origin.x, rect.origin.y + rect.size.height, 0.0,
  269. rect.origin.x + rect.size.width, rect.origin.y + rect.size.height, 0.0 };
  270. glBindTexture(GL_TEXTURE_2D, _name);
  271. glVertexPointer(3, GL_FLOAT, 0, vertices);
  272. glTexCoordPointer(2, GL_FLOAT, 0, coordinates);
  273. glDrawArrays(GL_TRIANGLE_STRIP, 0, 4);
  274. }
  275. @end