CGBuffer.h
上传用户:center1979
上传日期:2022-07-26
资源大小:50633k
文件大小:10k
源码类别:

OpenGL

开发平台:

Visual C++

  1. /*
  2. Disclaimer: IMPORTANT:  This Apple software is supplied to you by Apple Computer, Inc.
  3.                 ("Apple") in consideration of your agreement to the following terms, and your
  4.                 use, installation, modification or redistribution of this Apple software
  5.                 constitutes acceptance of these terms.  If you do not agree with these terms,
  6.                 please do not use, install, modify or redistribute this Apple software.
  7.                 In consideration of your agreement to abide by the following terms, and subject
  8.                 to these terms, Apple grants you a personal, non-exclusive license, under Apple誷
  9.                 copyrights in this original Apple software (the "Apple Software"), to use,
  10.                 reproduce, modify and redistribute the Apple Software, with or without
  11.                 modifications, in source and/or binary forms; provided that if you redistribute
  12.                 the Apple Software in its entirety and without modifications, you must retain
  13.                 this notice and the following text and disclaimers in all such redistributions of
  14.                 the Apple Software.  Neither the name, trademarks, service marks or logos of
  15.                 Apple Computer, Inc. may be used to endorse or promote products derived from the
  16.                 Apple Software without specific prior written permission from Apple.  Except as
  17.                 expressly stated in this notice, no other rights or licenses, express or implied,
  18.                 are granted by Apple herein, including but not limited to any patent rights that
  19.                 may be infringed by your derivative works or by other works in which the Apple
  20.                 Software may be incorporated.
  21.                 The Apple Software is provided by Apple on an "AS IS" basis.  APPLE MAKES NO
  22.                 WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED
  23.                 WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  24.                 PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN
  25.                 COMBINATION WITH YOUR PRODUCTS.
  26.                 IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR
  27.                 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  28.                 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  29.                 ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION
  30.                 OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT
  31.                 (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN
  32.                 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  33. */
  34. // Note that this is modified Apple source code, and not in its entireity (some classes are, some aren't), 
  35. // but we might as well leave it in here, even though it doesn't sound like we have to.
  36. // -bob
  37. #include <mach/mach.h>
  38. #include <Carbon/Carbon.h>
  39. // Celestia's DPRINTF is different than Carbon's
  40. #undef DPRINTF
  41. #include <celutil/debug.h>
  42. class CGFrame : public CGRect
  43. {
  44. public:
  45. CGFrame(float x0, float y0, float w, float h)
  46. {
  47. *this = CGRectMake(x0,y0,w,h);
  48. }
  49. explicit CGFrame(float w = 0, float h = 0)
  50. {
  51. *this = CGRectMake(0,0,w,h);
  52. }
  53. CGFrame(const Rect& rect)
  54. {
  55. origin.x = rect.left, size.width = rect.right - rect.left;
  56. origin.y = rect.top, size.height = rect.bottom - rect.top;
  57. }
  58. CGFrame(const CGRect& copy)
  59. {
  60. origin = copy.origin;
  61. size = copy.size;
  62. }
  63. CGFrame(const CGSize& size)
  64. {
  65. origin.x = origin.y = 0;
  66. this->size = size;
  67. }
  68. CGFrame(float x, float y, const CGSize& size)
  69. {
  70. *this = CGRectMake(x, y, size.width, size.height);
  71. }
  72. CGFrame(const CGPoint& pos, const CGSize& size)
  73. {
  74. *this = CGRectMake(pos.x, pos.y, size.width, size.height);
  75. }
  76. void Offset(float dx, float dy)
  77. {
  78. origin.x += dx, origin.y += dy;
  79. }
  80. void Inset(float dx, float dy)
  81. {
  82. origin.x += dx, origin.y += dy;
  83. size.width -= dx*2, size.height -= dy*2;
  84. }
  85. };
  86. class MemoryBuffer
  87. {
  88.   size_t size;
  89.   int ref_count;
  90.   MemoryBuffer(char* const data, size_t size) : size(size), ref_count(1), data(data)
  91.   {
  92.   }
  93.   ~MemoryBuffer()
  94.   {
  95.     vm_deallocate((vm_map_t) mach_task_self(), (vm_address_t) data, size);
  96.   }
  97. public:
  98.   friend class _MemoryBuffer; // to shut the compiler up
  99.   char* const data;
  100.   MemoryBuffer* Retain()
  101.   {
  102.     ++ref_count;
  103.     return this;
  104.   }
  105.   void Release()
  106.   {
  107.     if (--ref_count == 0)
  108.       delete this;
  109.   }
  110.   static MemoryBuffer* Create(size_t size)
  111.   {
  112.     char* data;
  113.     kern_return_t err = vm_allocate((vm_map_t) mach_task_self(), (vm_address_t*) &data, size, TRUE);
  114.     return (err == KERN_SUCCESS) ? new MemoryBuffer(data, size) : NULL;
  115.   }
  116. };
  117. class Datafile
  118. {
  119.     int ref_count;
  120.     FILE* file;
  121.     
  122. public:        
  123.     MemoryBuffer* data_buffer;
  124.     unsigned long data_size;
  125.     Datafile() : ref_count(1), file(NULL), data_buffer(NULL), data_size(0)
  126.     {
  127.     }
  128.     ~Datafile()
  129.     {
  130.         Reset();
  131.     }
  132.     Datafile* Retain()
  133.     {
  134.         ++ref_count;
  135.         return this;
  136.     }
  137.     
  138.     void Release()
  139.     {
  140.         if (--ref_count==0) 
  141.             delete this;
  142.     }
  143.     
  144.     int Open(const char* path)
  145.     {
  146.         file = fopen(path,"r");
  147.         if (!file) {
  148.             DPRINTF(0,"Datafile::Open() - Couldn't open %sn", path);
  149.             Reset();
  150.             return 0;
  151.         }
  152.         fseek(file, 0, SEEK_END);
  153.         data_size = ftell(file);
  154.         data_buffer = MemoryBuffer::Create(data_size);
  155.         if (!data_buffer) {
  156.             DPRINTF(0,"Datafile::Open() - Couldn't allocate MemoryBuffer of size %dn", data_size);
  157.             Reset();
  158.             return 0;
  159.         }
  160.         //DPRINTF(0,"Datafile::Open() - Successfully opened '%s' %d bytesn", path, data_size);
  161.         return 1;
  162.     }
  163.     
  164.     int Read()
  165.     {
  166.         if ((file == NULL) || (data_buffer == NULL) || (data_size == 0)) {
  167.             DPRINTF(0,"Datafile::Read() - No file open, file of zero size, or no valid MemoryBuffern");
  168.             Reset();
  169.             return 0;
  170.         }
  171.         
  172.         fseek(file, 0, SEEK_SET);        
  173.         if (fread((void*)data_buffer->data, 1, data_size, file) != data_size) {
  174.             DPRINTF(0,"Datafile::Read() - Didn't read to finish?");
  175.             Reset();
  176.             return 0;
  177.         }
  178.         
  179.         //DPRINTF(0,"Datafile::Read() - Successfully read all %d bytes into buffern",data_size);
  180.         return 1;
  181.     }
  182.     
  183.     void Close()
  184.     {
  185.         if (file) {
  186.             fclose(file);
  187.             file = NULL;
  188.         }
  189.     }
  190.     
  191.     void Reset()
  192.     {
  193.         Close();
  194.         if (data_buffer) {
  195.             data_buffer->Release();
  196.             data_buffer = NULL;
  197.         }
  198.     }
  199. };
  200. class CGBuffer
  201. {
  202. Datafile file;
  203. CGImageRef image_ref;
  204. CGContextRef context_ref;
  205. int ref_count;
  206. void Init()
  207. {
  208. ref_count = 1;
  209. buffer = NULL;
  210. image_ref = NULL;
  211. context_ref = NULL;
  212. image_finished = false;
  213. }
  214. bool CreateCGContext()
  215. {
  216. if (context_ref)
  217. {
  218. CGContextRelease(context_ref);
  219. context_ref = NULL;
  220. }
  221. if (buffer)
  222. {
  223. buffer->Release();
  224. buffer = NULL;
  225. }
  226. size_t buffer_rowbytes = (size_t)(image_size.width * ((image_depth == 8) ? 1 : 4)); //CGImageGetBytesPerRow(image_ref);
  227. buffer = MemoryBuffer::Create(buffer_rowbytes * (size_t)image_size.height); 
  228. if (!buffer)
  229. return false;
  230. CGColorSpaceRef colorspace_ref = (image_depth == 8) ? CGColorSpaceCreateDeviceGray() : CGColorSpaceCreateDeviceRGB();
  231. if (!colorspace_ref)
  232. return false;
  233. CGImageAlphaInfo alpha_info = (image_depth == 8) ? kCGImageAlphaNone : kCGImageAlphaPremultipliedLast; //kCGImageAlphaLast; //RGBA format
  234. context_ref = CGBitmapContextCreate(buffer->data, (size_t)image_size.width, (size_t)image_size.height, 8, buffer_rowbytes, colorspace_ref, alpha_info);
  235. if (context_ref)
  236. {
  237. CGContextSetFillColorSpace(context_ref, colorspace_ref);
  238. CGContextSetStrokeColorSpace(context_ref, colorspace_ref);
  239.                         // move down, and flip vertically 
  240.                         // to turn postscript style coordinates to "screen style"
  241. CGContextTranslateCTM(context_ref, 0.0, image_size.height);
  242. CGContextScaleCTM(context_ref, 1.0, -1.0);
  243. }
  244. CGColorSpaceRelease(colorspace_ref);
  245. colorspace_ref = NULL;
  246. return !!context_ref;
  247. }
  248. void RenderCGImage(const CGRect& dst_rect)
  249. {
  250. if (!context_ref || !image_ref)
  251. return;
  252. CGContextDrawImage(context_ref, dst_rect, image_ref);
  253. }
  254. public:
  255. MemoryBuffer* buffer;
  256. CGSize image_size;
  257. size_t image_depth;
  258. bool image_finished;
  259. CGBuffer(const char* path)
  260. {
  261. Init();
  262. Open(path);
  263. }
  264.         ~CGBuffer()
  265. {
  266. Reset();
  267. }
  268. CGBuffer* Retain()
  269. {
  270. ++ref_count;
  271. return this;
  272. }
  273. void Release()
  274. {
  275. if (--ref_count == 0)
  276. delete this;
  277. }
  278. bool Open(const char* path)
  279. {
  280. file.Reset();
  281. return file.Open(path);
  282. }
  283. bool LoadJPEG()
  284. {
  285. if (!file.Read())
  286. return false;
  287. file.Close();
  288. CGDataProviderRef src_provider_ref = CGDataProviderCreateWithData(this, file.data_buffer->data, file.data_size, NULL);
  289. if (!src_provider_ref)
  290. return false;
  291. image_ref = CGImageCreateWithJPEGDataProvider(src_provider_ref, NULL, true, kCGRenderingIntentDefault);
  292. CGDataProviderRelease(src_provider_ref);
  293. src_provider_ref = NULL;
  294. if (!image_ref)
  295. return false;
  296. image_size = CGSizeMake(CGImageGetWidth(image_ref), CGImageGetHeight(image_ref));
  297. image_depth = CGImageGetBitsPerPixel(image_ref);
  298. return !!image_ref;
  299. }
  300. bool Render()
  301. {
  302. if (!image_ref)
  303. return false;
  304. if (!CreateCGContext())
  305. return false;
  306. RenderCGImage(CGFrame(image_size));
  307. CGContextRelease(context_ref);
  308. context_ref = NULL;
  309. CGImageRelease(image_ref);
  310. image_ref = NULL;
  311. file.Reset();
  312. return true;
  313. }
  314. void Reset()
  315. {
  316. if (buffer)
  317. {
  318. buffer->Release();
  319. buffer = NULL;
  320. }
  321. if (image_ref)
  322. {
  323. CGImageRelease(image_ref);
  324. image_ref = NULL;
  325. }
  326. if (context_ref)
  327. {
  328. CGContextRelease(context_ref);
  329. context_ref = NULL;
  330. }
  331. }
  332. };