00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include "Core/precomp.h"
00018 #include <iostream>
00019 #ifdef WIN32
00020 #define WIN32_LEAN_AND_MEAN
00021 #include <windows.h>
00022 #endif
00023 #include "API/Display/Display/pixelformat.h"
00024 #include "API/Display/Display/palette.h"
00025 #include "API/Core/IOData/inputsource.h"
00026 #include "API/Core/IOData/inputsource_provider.h"
00027 #include "API/Display/SurfaceProviders/provider_bmp.h"
00028 #include "API/Core/System/error.h"
00029 #include "API/Core/System/cl_assert.h"
00030 #include "API/Display/Display/res_surface.h"
00031 #include "API/Core/Resources/resourceoptions.h"
00032
00033 CL_Surface *CL_BMPProvider::create(
00034 std::string handle,
00035 CL_InputSourceProvider *provider,
00036 bool transparent,
00037 short trans_col)
00038 {
00039 return CL_Surface::create(new CL_BMPProvider(
00040 handle,
00041 provider,
00042 transparent,
00043 trans_col), true);
00044 }
00045
00046 CL_BMPProvider::CL_BMPProvider(
00047 std::string _name,
00048 CL_InputSourceProvider *_provider,
00049 bool _transparent,
00050 short _trans_col)
00051 {
00052 provider = _provider != NULL ? _provider->clone() :
00053 CL_InputSourceProvider::create_file_provider(".");
00054
00055
00056
00057 transparent = _transparent;
00058 if (!transparent) trans_col = -1;
00059 else trans_col = _trans_col;
00060
00061 name = _name;
00062 palette = NULL;
00063 image = NULL;
00064
00065 }
00066
00067 CL_BMPProvider::~CL_BMPProvider()
00068 {
00069 perform_unlock();
00070 delete provider;
00071 }
00072
00073
00074
00075
00076
00077
00078
00079 unsigned int CL_BMPProvider::get_depth() const
00080 {
00081 if (biBitCount==24)
00082 return 32;
00083 else if (biBitCount==8)
00084 return 8;
00085 else
00086 return ~0;
00087 }
00088
00089 unsigned int CL_BMPProvider::get_pitch() const
00090 {
00091 if (biBitCount==24)
00092 return 4*get_width();
00093
00094 else if (biBitCount==8)
00095 return get_width();
00096
00097 else
00098 return ~0;
00099
00100 }
00101
00102 unsigned int CL_BMPProvider::get_red_mask() const
00103 {
00104
00105 return 0xff000000;
00106
00107 }
00108
00109 unsigned int CL_BMPProvider::get_green_mask() const
00110 {
00111 return 0x00ff0000;
00112
00113 }
00114
00115 unsigned int CL_BMPProvider::get_blue_mask() const
00116 {
00117 return 0x0000ff00;
00118
00119 }
00120
00121 unsigned int CL_BMPProvider::get_alpha_mask() const
00122 {
00123 return 0x000000ff;
00124 }
00125
00126 void CL_BMPProvider::perform_lock()
00127 {
00128 if (image != NULL) return;
00129
00130 cl_assert(provider != NULL);
00131 CL_InputSource *datafile = provider->open_source(name.c_str());
00132 cl_assert(datafile != NULL);
00133
00134
00135
00136 magic[0] = datafile->read_char8();
00137 magic[1] = datafile->read_char8();
00138
00139 if ( (magic[0] != 'B') && (magic[1] != 'M') )
00140 std::cout << std::endl << "File is not a Windows BMP file(DIB)" << std::endl;
00141
00142 bfSize = datafile->read_uint32();
00143 bfReserved1 = datafile->read_ushort16();
00144 bfReserved2 = datafile->read_ushort16();
00145 bfOffBits = datafile->read_uint32();
00146
00147
00148 biSize = datafile->read_uint32();
00149 biWidth = datafile->read_int32();
00150 biHeight = datafile->read_int32();
00151 biPlanes = datafile->read_ushort16();
00152 biBitCount = datafile->read_ushort16();
00153 biCompression = datafile->read_uint32();
00154 biSizeImage = datafile->read_uint32();
00155 biXPelsPerMeter = datafile->read_int32();
00156 biYPelsPerMeter = datafile->read_int32();
00157 biClrUsed = datafile->read_uint32();
00158 biClrImportant = datafile->read_uint32();
00159
00160 if(biSize!=40)
00161 std::cout << std::endl << "This BMP file are in a old format. Please update this BMP file to BMP(DIB) version 3.0,";
00162
00163 std::cout << std::endl
00164 << "bfSize = " << bfSize << std::endl
00165 << "bfReserved1 = " << bfReserved1 << std::endl
00166 << "bfReserved2 = " << bfReserved2 << std::endl
00167 << "bfOffBits = " << bfOffBits << std::endl
00168 << "biWidth = " << biWidth << std::endl
00169 << "biHeight = " << biHeight << std::endl
00170 << "biPlanes = " << biPlanes << std::endl
00171 << "biBitCount = " << biBitCount << std::endl
00172 << "biCompression = " << biCompression << std::endl
00173 << "biSizeImage = " << biSizeImage << std::endl
00174 << "biXPelsPerMeter = " << biXPelsPerMeter << std::endl
00175 << "biYPelsPerMeter = " << biYPelsPerMeter << std::endl
00176 << "biClrUsed = " << biClrUsed << std::endl
00177 << "biClrImportant = " << biClrImportant << std::endl;
00178
00179
00180
00181
00182 if ( (biBitCount==8) || (biBitCount==16) || (biBitCount==24) )
00183
00184 ;
00185
00186 else
00187 {
00188 throw CL_Error("We only support 8, 16 or 24 bpp.");
00189 }
00190
00191
00192
00193
00194
00195
00196
00197 if (biBitCount==8)
00198 {
00199 if(biClrUsed==0)
00200 biClrUsed=256;
00201
00202 unsigned char *pal = new unsigned char[(biClrUsed*3)];
00203
00204 int i = 0;
00205
00206 for (;;)
00207 {
00208
00209
00210 pal[i+2] = datafile->read_uchar8();
00211
00212
00213
00214 pal[i+1] = datafile->read_uchar8();
00215
00216
00217
00218 pal[i] = datafile->read_uchar8();
00219
00220 i+=3;
00221
00222
00223
00224
00225 datafile->read_uchar8();
00226
00227
00228 if ( ((int)biClrUsed*3) <= i)
00229 break;
00230 }
00231
00232
00233 palette = new CL_Palette(pal, biClrUsed);
00234
00235 }
00236
00237 else
00238 {
00239 palette = NULL;
00240 }
00241
00242
00243
00244
00245
00246
00247 if ( (biBitCount==8) && (biCompression==BI_RGB) )
00248 {
00249 image = new unsigned char[biSizeImage];
00250
00251 cl_assert(image != NULL);
00252
00253 for (int y=biHeight-1; y>-1; y--)
00254
00255 {
00256
00257 for (int x=0; x<biWidth; x++)
00258 {
00259 image[(x+y*biHeight)] = datafile->read_uchar8();
00260 }
00261 }
00262
00263
00264 }
00265
00266
00267
00268
00269
00270 if ( (biBitCount==8) && (biCompression==BI_RLE8) )
00271 {
00272 image = new unsigned char[biWidth*biHeight];
00273
00274 cl_assert(image != NULL);
00275
00276
00277
00278
00279
00280
00281
00282
00283
00284
00285
00286
00287
00288
00289
00290
00291
00292
00293
00294
00295
00296
00297
00298
00299
00300
00301
00302
00303
00304
00305
00306
00307
00308
00309
00310
00311
00312
00313
00314
00315
00316
00317
00318
00319
00320
00321
00322
00323
00324
00325
00326
00327
00328
00329
00330
00331
00332
00333
00334
00335
00336
00337
00338
00339
00340
00341
00342
00343
00344
00345
00346
00347
00348
00349
00350
00351
00352
00353
00354
00355
00356
00357
00358
00359
00360
00361
00362
00363
00364
00365
00366
00367
00368
00369
00370
00371
00372
00373
00374
00375
00376 unsigned char value1=0;
00377 unsigned char value2=0;
00378
00379 unsigned char color=5;
00380 unsigned char num_pixels=0;
00381
00382
00383
00384
00385
00386
00387 int x=0;
00388 int y=0;
00389
00390
00391 for (;;)
00392 {
00393
00394
00395
00396 if( (value1 == 0) && !(value2==0 || value2==1 || value2==2) )
00397 {
00398 for (int i=0; i < value2; i++)
00399 {
00400 if(x >= biWidth)
00401 {
00402 x=0;
00403
00404 y++;
00405 }
00406 color = datafile->read_uchar8();
00407
00408 image[(x+y*biWidth)] = color;
00409 x++;
00410
00411 }
00412
00413 datafile->read_uchar8();
00414
00415
00416 }
00417
00418 else
00419 {
00420 if(value1 == 0)
00421 {
00422 switch(value2)
00423 {
00424 case 0:
00425 for (; x<biWidth; x++)
00426 image[(x+y*biWidth)] = color;
00427 break;
00428
00429 case 1:
00430
00431 for (; y<biHeight; y++)
00432 for (; x<biWidth; x++)
00433 image[(x+y*biWidth)] = color;
00434 break;
00435
00436 case 2:
00437 value1 = datafile->read_uchar8();
00438 value2 = datafile->read_uchar8();
00439
00440 x += value1;
00441 y += value2;
00442 break;
00443 }
00444 }
00445
00446 else
00447 {
00448 num_pixels = value1;
00449 color = value2;
00450
00451 for(int i = 0; i < num_pixels;i++)
00452 {
00453 if(x >= biWidth)
00454 {
00455 x=0;
00456 y++;
00457 }
00458 image[(x+y*biWidth)] = color;
00459 x++;
00460
00461 }
00462 }
00463
00464
00465 }
00466
00467
00468
00469
00470
00471
00472 if ( (y==biHeight) && (x==biWidth) )
00473 break;
00474
00475 if(x >= biWidth)
00476 {
00477 x=0;
00478 y++;
00479 }
00480
00481
00482 }
00483
00484 }
00485
00486
00487
00488
00489
00490
00491
00492 if ( (biBitCount==24) && (biCompression==BI_RGB) )
00493 {
00494 image = new unsigned char[biWidth*biHeight*4];
00495
00496 cl_assert(image != NULL);
00497
00498 for (int y=biHeight-1; y>-1; y--)
00499
00500 {
00501
00502 for (int x=0; x<biWidth; x++)
00503 {
00504 image[(x+y*biWidth)*4 + 0] = 255;
00505 image[(x+y*biWidth)*4 + 1] = datafile->read_uchar8();
00506 image[(x+y*biWidth)*4 + 2] = datafile->read_uchar8();
00507 image[(x+y*biWidth)*4 + 3] = datafile->read_uchar8();
00508 }
00509 }
00510
00511 }
00512
00513
00514
00515
00516
00517
00518
00519
00520
00521
00522
00523
00524
00525
00526
00527
00528
00529
00530
00531
00532
00533
00534
00535
00536
00537
00538
00539
00540
00541
00542
00543
00544
00545
00546
00547
00548
00549
00550
00551
00552
00553
00554
00555
00556
00557
00558
00559
00560
00561
00562
00563
00564
00565
00566
00567
00568
00569
00570
00571
00572
00573
00574
00575
00576
00577
00578
00579
00580
00581
00582
00583
00584
00585
00586
00587
00588
00589
00590
00591
00592
00593
00594
00595
00596
00597
00598
00599
00600
00601
00602
00603
00604
00605
00606
00607
00608
00609
00610
00611
00612
00613
00614
00615
00616
00617
00618
00619
00620
00621
00622
00623
00624
00625
00626
00627
00628
00629
00630
00631
00632
00633
00634
00635
00636
00637
00638
00639
00640
00641
00642
00643
00644
00645
00646
00647
00648
00649
00650
00651
00652
00653
00654
00655
00656
00657
00658
00659
00660
00661
00662
00663
00664
00665
00666
00667
00668
00669
00670
00671
00672
00673
00674
00675
00676
00677
00678
00679
00681
00683
00684
00685
00686
00687
00688
00689
00690
00691
00692
00693
00694
00695
00696
00697
00698
00699
00700
00701
00702
00703
00704
00705
00706
00707
00708
00709
00710
00711
00712
00713
00714
00715
00716
00717
00718
00719
00720
00721
00722
00723
00724
00725
00726
00727
00728
00729
00730
00731
00732
00733
00734
00735
00736
00737
00738
00739
00740
00741
00742
00743
00744
00745
00746
00747
00748
00749
00750
00751
00752
00753
00754
00755
00756
00757
00758
00759
00760
00761
00762
00763
00764
00765
00766
00767
00768
00769
00770
00771
00772
00773
00774
00775
00776
00777
00778
00779
00780
00781
00782
00783
00784
00785
00786
00787
00788
00789
00790
00791
00792
00793
00794
00795
00796
00797
00798
00799
00800
00801
00802
00803
00804
00805
00806
00807
00808
00809
00810
00811
00812
00813
00814
00815
00816
00817
00818
00819
00820
00821
00822
00823 delete datafile;
00824 }
00825
00826 void CL_BMPProvider::perform_unlock()
00827 {
00828 delete[] image;
00829 delete palette;
00830
00831 image = NULL;
00832 palette = NULL;
00833 }