gl_image.c 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572
  1. /*
  2. Copyright (C) 1997-2001 Id Software, Inc.
  3. This program is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU General Public License
  5. as published by the Free Software Foundation; either version 2
  6. of the License, or (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. See the GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program; if not, write to the Free Software
  13. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  14. */
  15. #include "gl_local.h"
  16. image_t gltextures[MAX_GLTEXTURES];
  17. int numgltextures;
  18. int base_textureid; // gltextures[i] = base_textureid+i
  19. static byte intensitytable[256];
  20. static unsigned char gammatable[256];
  21. cvar_t *intensity;
  22. unsigned d_8to24table[256];
  23. qboolean GL_Upload8 (byte *data, int width, int height, qboolean mipmap, qboolean is_sky );
  24. qboolean GL_Upload32 (unsigned *data, int width, int height, qboolean mipmap);
  25. int gl_solid_format = 3;
  26. int gl_alpha_format = 4;
  27. int gl_tex_solid_format = 3;
  28. int gl_tex_alpha_format = 4;
  29. int gl_filter_min = GL_LINEAR_MIPMAP_NEAREST;
  30. int gl_filter_max = GL_LINEAR;
  31. void GL_SetTexturePalette( unsigned palette[256] )
  32. {
  33. int i;
  34. unsigned char temptable[768];
  35. for ( i = 0; i < 256; i++ )
  36. {
  37. temptable[i*3+0] = ( palette[i] >> 0 ) & 0xff;
  38. temptable[i*3+1] = ( palette[i] >> 8 ) & 0xff;
  39. temptable[i*3+2] = ( palette[i] >> 16 ) & 0xff;
  40. }
  41. if ( qglColorTableEXT && gl_ext_palettedtexture->value )
  42. {
  43. qglColorTableEXT( GL_SHARED_TEXTURE_PALETTE_EXT,
  44. GL_RGB,
  45. 256,
  46. GL_RGB,
  47. GL_UNSIGNED_BYTE,
  48. temptable );
  49. }
  50. }
  51. void GL_EnableMultitexture( qboolean enable )
  52. {
  53. if ( !qglSelectTextureSGIS )
  54. return;
  55. if ( enable )
  56. {
  57. GL_SelectTexture( GL_TEXTURE1_SGIS );
  58. qglEnable( GL_TEXTURE_2D );
  59. GL_TexEnv( GL_REPLACE );
  60. }
  61. else
  62. {
  63. GL_SelectTexture( GL_TEXTURE1_SGIS );
  64. qglDisable( GL_TEXTURE_2D );
  65. GL_TexEnv( GL_REPLACE );
  66. }
  67. GL_SelectTexture( GL_TEXTURE0_SGIS );
  68. GL_TexEnv( GL_REPLACE );
  69. }
  70. void GL_SelectTexture( GLenum texture )
  71. {
  72. int tmu;
  73. if ( !qglSelectTextureSGIS )
  74. return;
  75. if ( texture == GL_TEXTURE0_SGIS )
  76. tmu = 0;
  77. else
  78. tmu = 1;
  79. if ( tmu == gl_state.currenttmu )
  80. return;
  81. gl_state.currenttmu = tmu;
  82. if ( tmu == 0 )
  83. qglSelectTextureSGIS( GL_TEXTURE0_SGIS );
  84. else
  85. qglSelectTextureSGIS( GL_TEXTURE1_SGIS );
  86. }
  87. void GL_TexEnv( GLenum mode )
  88. {
  89. static int lastmodes[2] = { -1, -1 };
  90. if ( mode != lastmodes[gl_state.currenttmu] )
  91. {
  92. qglTexEnvf( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, mode );
  93. lastmodes[gl_state.currenttmu] = mode;
  94. }
  95. }
  96. void GL_Bind (int texnum)
  97. {
  98. extern image_t *draw_chars;
  99. if (gl_nobind->value && draw_chars) // performance evaluation option
  100. texnum = draw_chars->texnum;
  101. if ( gl_state.currenttextures[gl_state.currenttmu] == texnum)
  102. return;
  103. gl_state.currenttextures[gl_state.currenttmu] = texnum;
  104. qglBindTexture (GL_TEXTURE_2D, texnum);
  105. }
  106. void GL_MBind( GLenum target, int texnum )
  107. {
  108. GL_SelectTexture( target );
  109. if ( target == GL_TEXTURE0_SGIS )
  110. {
  111. if ( gl_state.currenttextures[0] == texnum )
  112. return;
  113. }
  114. else
  115. {
  116. if ( gl_state.currenttextures[1] == texnum )
  117. return;
  118. }
  119. GL_Bind( texnum );
  120. }
  121. typedef struct
  122. {
  123. char *name;
  124. int minimize, maximize;
  125. } glmode_t;
  126. glmode_t modes[] = {
  127. {"GL_NEAREST", GL_NEAREST, GL_NEAREST},
  128. {"GL_LINEAR", GL_LINEAR, GL_LINEAR},
  129. {"GL_NEAREST_MIPMAP_NEAREST", GL_NEAREST_MIPMAP_NEAREST, GL_NEAREST},
  130. {"GL_LINEAR_MIPMAP_NEAREST", GL_LINEAR_MIPMAP_NEAREST, GL_LINEAR},
  131. {"GL_NEAREST_MIPMAP_LINEAR", GL_NEAREST_MIPMAP_LINEAR, GL_NEAREST},
  132. {"GL_LINEAR_MIPMAP_LINEAR", GL_LINEAR_MIPMAP_LINEAR, GL_LINEAR}
  133. };
  134. #define NUM_GL_MODES (sizeof(modes) / sizeof (glmode_t))
  135. typedef struct
  136. {
  137. char *name;
  138. int mode;
  139. } gltmode_t;
  140. gltmode_t gl_alpha_modes[] = {
  141. {"default", 4},
  142. {"GL_RGBA", GL_RGBA},
  143. {"GL_RGBA8", GL_RGBA8},
  144. {"GL_RGB5_A1", GL_RGB5_A1},
  145. {"GL_RGBA4", GL_RGBA4},
  146. {"GL_RGBA2", GL_RGBA2},
  147. };
  148. #define NUM_GL_ALPHA_MODES (sizeof(gl_alpha_modes) / sizeof (gltmode_t))
  149. gltmode_t gl_solid_modes[] = {
  150. {"default", 3},
  151. {"GL_RGB", GL_RGB},
  152. {"GL_RGB8", GL_RGB8},
  153. {"GL_RGB5", GL_RGB5},
  154. {"GL_RGB4", GL_RGB4},
  155. {"GL_R3_G3_B2", GL_R3_G3_B2},
  156. #ifdef GL_RGB2_EXT
  157. {"GL_RGB2", GL_RGB2_EXT},
  158. #endif
  159. };
  160. #define NUM_GL_SOLID_MODES (sizeof(gl_solid_modes) / sizeof (gltmode_t))
  161. /*
  162. ===============
  163. GL_TextureMode
  164. ===============
  165. */
  166. void GL_TextureMode( char *string )
  167. {
  168. int i;
  169. image_t *glt;
  170. for (i=0 ; i< NUM_GL_MODES ; i++)
  171. {
  172. if ( !Q_stricmp( modes[i].name, string ) )
  173. break;
  174. }
  175. if (i == NUM_GL_MODES)
  176. {
  177. ri.Con_Printf (PRINT_ALL, "bad filter name\n");
  178. return;
  179. }
  180. gl_filter_min = modes[i].minimize;
  181. gl_filter_max = modes[i].maximize;
  182. // change all the existing mipmap texture objects
  183. for (i=0, glt=gltextures ; i<numgltextures ; i++, glt++)
  184. {
  185. if (glt->type != it_pic && glt->type != it_sky )
  186. {
  187. GL_Bind (glt->texnum);
  188. qglTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, gl_filter_min);
  189. qglTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, gl_filter_max);
  190. }
  191. }
  192. }
  193. /*
  194. ===============
  195. GL_TextureAlphaMode
  196. ===============
  197. */
  198. void GL_TextureAlphaMode( char *string )
  199. {
  200. int i;
  201. for (i=0 ; i< NUM_GL_ALPHA_MODES ; i++)
  202. {
  203. if ( !Q_stricmp( gl_alpha_modes[i].name, string ) )
  204. break;
  205. }
  206. if (i == NUM_GL_ALPHA_MODES)
  207. {
  208. ri.Con_Printf (PRINT_ALL, "bad alpha texture mode name\n");
  209. return;
  210. }
  211. gl_tex_alpha_format = gl_alpha_modes[i].mode;
  212. }
  213. /*
  214. ===============
  215. GL_TextureSolidMode
  216. ===============
  217. */
  218. void GL_TextureSolidMode( char *string )
  219. {
  220. int i;
  221. for (i=0 ; i< NUM_GL_SOLID_MODES ; i++)
  222. {
  223. if ( !Q_stricmp( gl_solid_modes[i].name, string ) )
  224. break;
  225. }
  226. if (i == NUM_GL_SOLID_MODES)
  227. {
  228. ri.Con_Printf (PRINT_ALL, "bad solid texture mode name\n");
  229. return;
  230. }
  231. gl_tex_solid_format = gl_solid_modes[i].mode;
  232. }
  233. /*
  234. ===============
  235. GL_ImageList_f
  236. ===============
  237. */
  238. void GL_ImageList_f (void)
  239. {
  240. int i;
  241. image_t *image;
  242. int texels;
  243. const char *palstrings[2] =
  244. {
  245. "RGB",
  246. "PAL"
  247. };
  248. ri.Con_Printf (PRINT_ALL, "------------------\n");
  249. texels = 0;
  250. for (i=0, image=gltextures ; i<numgltextures ; i++, image++)
  251. {
  252. if (image->texnum <= 0)
  253. continue;
  254. texels += image->upload_width*image->upload_height;
  255. switch (image->type)
  256. {
  257. case it_skin:
  258. ri.Con_Printf (PRINT_ALL, "M");
  259. break;
  260. case it_sprite:
  261. ri.Con_Printf (PRINT_ALL, "S");
  262. break;
  263. case it_wall:
  264. ri.Con_Printf (PRINT_ALL, "W");
  265. break;
  266. case it_pic:
  267. ri.Con_Printf (PRINT_ALL, "P");
  268. break;
  269. default:
  270. ri.Con_Printf (PRINT_ALL, " ");
  271. break;
  272. }
  273. ri.Con_Printf (PRINT_ALL, " %3i %3i %s: %s\n",
  274. image->upload_width, image->upload_height, palstrings[image->paletted], image->name);
  275. }
  276. ri.Con_Printf (PRINT_ALL, "Total texel count (not counting mipmaps): %i\n", texels);
  277. }
  278. /*
  279. =============================================================================
  280. scrap allocation
  281. Allocate all the little status bar obejcts into a single texture
  282. to crutch up inefficient hardware / drivers
  283. =============================================================================
  284. */
  285. #define MAX_SCRAPS 1
  286. #define BLOCK_WIDTH 256
  287. #define BLOCK_HEIGHT 256
  288. int scrap_allocated[MAX_SCRAPS][BLOCK_WIDTH];
  289. byte scrap_texels[MAX_SCRAPS][BLOCK_WIDTH*BLOCK_HEIGHT];
  290. qboolean scrap_dirty;
  291. // returns a texture number and the position inside it
  292. int Scrap_AllocBlock (int w, int h, int *x, int *y)
  293. {
  294. int i, j;
  295. int best, best2;
  296. int texnum;
  297. for (texnum=0 ; texnum<MAX_SCRAPS ; texnum++)
  298. {
  299. best = BLOCK_HEIGHT;
  300. for (i=0 ; i<BLOCK_WIDTH-w ; i++)
  301. {
  302. best2 = 0;
  303. for (j=0 ; j<w ; j++)
  304. {
  305. if (scrap_allocated[texnum][i+j] >= best)
  306. break;
  307. if (scrap_allocated[texnum][i+j] > best2)
  308. best2 = scrap_allocated[texnum][i+j];
  309. }
  310. if (j == w)
  311. { // this is a valid spot
  312. *x = i;
  313. *y = best = best2;
  314. }
  315. }
  316. if (best + h > BLOCK_HEIGHT)
  317. continue;
  318. for (i=0 ; i<w ; i++)
  319. scrap_allocated[texnum][*x + i] = best + h;
  320. return texnum;
  321. }
  322. return -1;
  323. // Sys_Error ("Scrap_AllocBlock: full");
  324. }
  325. int scrap_uploads;
  326. void Scrap_Upload (void)
  327. {
  328. scrap_uploads++;
  329. GL_Bind(TEXNUM_SCRAPS);
  330. GL_Upload8 (scrap_texels[0], BLOCK_WIDTH, BLOCK_HEIGHT, false, false );
  331. scrap_dirty = false;
  332. }
  333. /*
  334. =================================================================
  335. PCX LOADING
  336. =================================================================
  337. */
  338. /*
  339. ==============
  340. LoadPCX
  341. ==============
  342. */
  343. void LoadPCX (char *filename, byte **pic, byte **palette, int *width, int *height)
  344. {
  345. byte *raw;
  346. pcx_t *pcx;
  347. int x, y;
  348. int len;
  349. int dataByte, runLength;
  350. byte *out, *pix;
  351. *pic = NULL;
  352. *palette = NULL;
  353. //
  354. // load the file
  355. //
  356. len = ri.FS_LoadFile (filename, (void **)&raw);
  357. if (!raw)
  358. {
  359. ri.Con_Printf (PRINT_DEVELOPER, "Bad pcx file %s\n", filename);
  360. return;
  361. }
  362. //
  363. // parse the PCX file
  364. //
  365. pcx = (pcx_t *)raw;
  366. pcx->xmin = LittleShort(pcx->xmin);
  367. pcx->ymin = LittleShort(pcx->ymin);
  368. pcx->xmax = LittleShort(pcx->xmax);
  369. pcx->ymax = LittleShort(pcx->ymax);
  370. pcx->hres = LittleShort(pcx->hres);
  371. pcx->vres = LittleShort(pcx->vres);
  372. pcx->bytes_per_line = LittleShort(pcx->bytes_per_line);
  373. pcx->palette_type = LittleShort(pcx->palette_type);
  374. raw = &pcx->data;
  375. if (pcx->manufacturer != 0x0a
  376. || pcx->version != 5
  377. || pcx->encoding != 1
  378. || pcx->bits_per_pixel != 8
  379. || pcx->xmax >= 640
  380. || pcx->ymax >= 480)
  381. {
  382. ri.Con_Printf (PRINT_ALL, "Bad pcx file %s\n", filename);
  383. return;
  384. }
  385. out = malloc ( (pcx->ymax+1) * (pcx->xmax+1) );
  386. *pic = out;
  387. pix = out;
  388. if (palette)
  389. {
  390. *palette = malloc(768);
  391. memcpy (*palette, (byte *)pcx + len - 768, 768);
  392. }
  393. if (width)
  394. *width = pcx->xmax+1;
  395. if (height)
  396. *height = pcx->ymax+1;
  397. for (y=0 ; y<=pcx->ymax ; y++, pix += pcx->xmax+1)
  398. {
  399. for (x=0 ; x<=pcx->xmax ; )
  400. {
  401. dataByte = *raw++;
  402. if((dataByte & 0xC0) == 0xC0)
  403. {
  404. runLength = dataByte & 0x3F;
  405. dataByte = *raw++;
  406. }
  407. else
  408. runLength = 1;
  409. while(runLength-- > 0)
  410. pix[x++] = dataByte;
  411. }
  412. }
  413. if ( raw - (byte *)pcx > len)
  414. {
  415. ri.Con_Printf (PRINT_DEVELOPER, "PCX file %s was malformed", filename);
  416. free (*pic);
  417. *pic = NULL;
  418. }
  419. ri.FS_FreeFile (pcx);
  420. }
  421. /*
  422. =========================================================
  423. TARGA LOADING
  424. =========================================================
  425. */
  426. typedef struct _TargaHeader {
  427. unsigned char id_length, colormap_type, image_type;
  428. unsigned short colormap_index, colormap_length;
  429. unsigned char colormap_size;
  430. unsigned short x_origin, y_origin, width, height;
  431. unsigned char pixel_size, attributes;
  432. } TargaHeader;
  433. /*
  434. =============
  435. LoadTGA
  436. =============
  437. */
  438. void LoadTGA (char *name, byte **pic, int *width, int *height)
  439. {
  440. int columns, rows, numPixels;
  441. byte *pixbuf;
  442. int row, column;
  443. byte *buf_p;
  444. byte *buffer;
  445. int length;
  446. TargaHeader targa_header;
  447. byte *targa_rgba;
  448. byte tmp[2];
  449. *pic = NULL;
  450. //
  451. // load the file
  452. //
  453. length = ri.FS_LoadFile (name, (void **)&buffer);
  454. if (!buffer)
  455. {
  456. ri.Con_Printf (PRINT_DEVELOPER, "Bad tga file %s\n", name);
  457. return;
  458. }
  459. buf_p = buffer;
  460. targa_header.id_length = *buf_p++;
  461. targa_header.colormap_type = *buf_p++;
  462. targa_header.image_type = *buf_p++;
  463. tmp[0] = buf_p[0];
  464. tmp[1] = buf_p[1];
  465. targa_header.colormap_index = LittleShort ( *((short *)tmp) );
  466. buf_p+=2;
  467. tmp[0] = buf_p[0];
  468. tmp[1] = buf_p[1];
  469. targa_header.colormap_length = LittleShort ( *((short *)tmp) );
  470. buf_p+=2;
  471. targa_header.colormap_size = *buf_p++;
  472. targa_header.x_origin = LittleShort ( *((short *)buf_p) );
  473. buf_p+=2;
  474. targa_header.y_origin = LittleShort ( *((short *)buf_p) );
  475. buf_p+=2;
  476. targa_header.width = LittleShort ( *((short *)buf_p) );
  477. buf_p+=2;
  478. targa_header.height = LittleShort ( *((short *)buf_p) );
  479. buf_p+=2;
  480. targa_header.pixel_size = *buf_p++;
  481. targa_header.attributes = *buf_p++;
  482. if (targa_header.image_type!=2
  483. && targa_header.image_type!=10)
  484. ri.Sys_Error (ERR_DROP, "LoadTGA: Only type 2 and 10 targa RGB images supported\n");
  485. if (targa_header.colormap_type !=0
  486. || (targa_header.pixel_size!=32 && targa_header.pixel_size!=24))
  487. ri.Sys_Error (ERR_DROP, "LoadTGA: Only 32 or 24 bit images supported (no colormaps)\n");
  488. columns = targa_header.width;
  489. rows = targa_header.height;
  490. numPixels = columns * rows;
  491. if (width)
  492. *width = columns;
  493. if (height)
  494. *height = rows;
  495. targa_rgba = malloc (numPixels*4);
  496. *pic = targa_rgba;
  497. if (targa_header.id_length != 0)
  498. buf_p += targa_header.id_length; // skip TARGA image comment
  499. if (targa_header.image_type==2) { // Uncompressed, RGB images
  500. for(row=rows-1; row>=0; row--) {
  501. pixbuf = targa_rgba + row*columns*4;
  502. for(column=0; column<columns; column++) {
  503. unsigned char red,green,blue,alphabyte;
  504. switch (targa_header.pixel_size) {
  505. case 24:
  506. blue = *buf_p++;
  507. green = *buf_p++;
  508. red = *buf_p++;
  509. *pixbuf++ = red;
  510. *pixbuf++ = green;
  511. *pixbuf++ = blue;
  512. *pixbuf++ = 255;
  513. break;
  514. case 32:
  515. blue = *buf_p++;
  516. green = *buf_p++;
  517. red = *buf_p++;
  518. alphabyte = *buf_p++;
  519. *pixbuf++ = red;
  520. *pixbuf++ = green;
  521. *pixbuf++ = blue;
  522. *pixbuf++ = alphabyte;
  523. break;
  524. }
  525. }
  526. }
  527. }
  528. else if (targa_header.image_type==10) { // Runlength encoded RGB images
  529. unsigned char red,green,blue,alphabyte,packetHeader,packetSize,j;
  530. for(row=rows-1; row>=0; row--) {
  531. pixbuf = targa_rgba + row*columns*4;
  532. for(column=0; column<columns; ) {
  533. packetHeader= *buf_p++;
  534. packetSize = 1 + (packetHeader & 0x7f);
  535. if (packetHeader & 0x80) { // run-length packet
  536. switch (targa_header.pixel_size) {
  537. case 24:
  538. blue = *buf_p++;
  539. green = *buf_p++;
  540. red = *buf_p++;
  541. alphabyte = 255;
  542. break;
  543. case 32:
  544. blue = *buf_p++;
  545. green = *buf_p++;
  546. red = *buf_p++;
  547. alphabyte = *buf_p++;
  548. break;
  549. }
  550. for(j=0;j<packetSize;j++) {
  551. *pixbuf++=red;
  552. *pixbuf++=green;
  553. *pixbuf++=blue;
  554. *pixbuf++=alphabyte;
  555. column++;
  556. if (column==columns) { // run spans across rows
  557. column=0;
  558. if (row>0)
  559. row--;
  560. else
  561. goto breakOut;
  562. pixbuf = targa_rgba + row*columns*4;
  563. }
  564. }
  565. }
  566. else { // non run-length packet
  567. for(j=0;j<packetSize;j++) {
  568. switch (targa_header.pixel_size) {
  569. case 24:
  570. blue = *buf_p++;
  571. green = *buf_p++;
  572. red = *buf_p++;
  573. *pixbuf++ = red;
  574. *pixbuf++ = green;
  575. *pixbuf++ = blue;
  576. *pixbuf++ = 255;
  577. break;
  578. case 32:
  579. blue = *buf_p++;
  580. green = *buf_p++;
  581. red = *buf_p++;
  582. alphabyte = *buf_p++;
  583. *pixbuf++ = red;
  584. *pixbuf++ = green;
  585. *pixbuf++ = blue;
  586. *pixbuf++ = alphabyte;
  587. break;
  588. }
  589. column++;
  590. if (column==columns) { // pixel packet run spans across rows
  591. column=0;
  592. if (row>0)
  593. row--;
  594. else
  595. goto breakOut;
  596. pixbuf = targa_rgba + row*columns*4;
  597. }
  598. }
  599. }
  600. }
  601. breakOut:;
  602. }
  603. }
  604. ri.FS_FreeFile (buffer);
  605. }
  606. /*
  607. ====================================================================
  608. IMAGE FLOOD FILLING
  609. ====================================================================
  610. */
  611. /*
  612. =================
  613. Mod_FloodFillSkin
  614. Fill background pixels so mipmapping doesn't have haloes
  615. =================
  616. */
  617. typedef struct
  618. {
  619. short x, y;
  620. } floodfill_t;
  621. // must be a power of 2
  622. #define FLOODFILL_FIFO_SIZE 0x1000
  623. #define FLOODFILL_FIFO_MASK (FLOODFILL_FIFO_SIZE - 1)
  624. #define FLOODFILL_STEP( off, dx, dy ) \
  625. { \
  626. if (pos[off] == fillcolor) \
  627. { \
  628. pos[off] = 255; \
  629. fifo[inpt].x = x + (dx), fifo[inpt].y = y + (dy); \
  630. inpt = (inpt + 1) & FLOODFILL_FIFO_MASK; \
  631. } \
  632. else if (pos[off] != 255) fdc = pos[off]; \
  633. }
  634. void R_FloodFillSkin( byte *skin, int skinwidth, int skinheight )
  635. {
  636. byte fillcolor = *skin; // assume this is the pixel to fill
  637. floodfill_t fifo[FLOODFILL_FIFO_SIZE];
  638. int inpt = 0, outpt = 0;
  639. int filledcolor = -1;
  640. int i;
  641. if (filledcolor == -1)
  642. {
  643. filledcolor = 0;
  644. // attempt to find opaque black
  645. for (i = 0; i < 256; ++i)
  646. if (d_8to24table[i] == (255 << 0)) // alpha 1.0
  647. {
  648. filledcolor = i;
  649. break;
  650. }
  651. }
  652. // can't fill to filled color or to transparent color (used as visited marker)
  653. if ((fillcolor == filledcolor) || (fillcolor == 255))
  654. {
  655. //printf( "not filling skin from %d to %d\n", fillcolor, filledcolor );
  656. return;
  657. }
  658. fifo[inpt].x = 0, fifo[inpt].y = 0;
  659. inpt = (inpt + 1) & FLOODFILL_FIFO_MASK;
  660. while (outpt != inpt)
  661. {
  662. int x = fifo[outpt].x, y = fifo[outpt].y;
  663. int fdc = filledcolor;
  664. byte *pos = &skin[x + skinwidth * y];
  665. outpt = (outpt + 1) & FLOODFILL_FIFO_MASK;
  666. if (x > 0) FLOODFILL_STEP( -1, -1, 0 );
  667. if (x < skinwidth - 1) FLOODFILL_STEP( 1, 1, 0 );
  668. if (y > 0) FLOODFILL_STEP( -skinwidth, 0, -1 );
  669. if (y < skinheight - 1) FLOODFILL_STEP( skinwidth, 0, 1 );
  670. skin[x + skinwidth * y] = fdc;
  671. }
  672. }
  673. //=======================================================
  674. /*
  675. ================
  676. GL_ResampleTexture
  677. ================
  678. */
  679. void GL_ResampleTexture (unsigned *in, int inwidth, int inheight, unsigned *out, int outwidth, int outheight)
  680. {
  681. int i, j;
  682. unsigned *inrow, *inrow2;
  683. unsigned frac, fracstep;
  684. unsigned p1[1024], p2[1024];
  685. byte *pix1, *pix2, *pix3, *pix4;
  686. fracstep = inwidth*0x10000/outwidth;
  687. frac = fracstep>>2;
  688. for (i=0 ; i<outwidth ; i++)
  689. {
  690. p1[i] = 4*(frac>>16);
  691. frac += fracstep;
  692. }
  693. frac = 3*(fracstep>>2);
  694. for (i=0 ; i<outwidth ; i++)
  695. {
  696. p2[i] = 4*(frac>>16);
  697. frac += fracstep;
  698. }
  699. for (i=0 ; i<outheight ; i++, out += outwidth)
  700. {
  701. inrow = in + inwidth*(int)((i+0.25)*inheight/outheight);
  702. inrow2 = in + inwidth*(int)((i+0.75)*inheight/outheight);
  703. frac = fracstep >> 1;
  704. for (j=0 ; j<outwidth ; j++)
  705. {
  706. pix1 = (byte *)inrow + p1[j];
  707. pix2 = (byte *)inrow + p2[j];
  708. pix3 = (byte *)inrow2 + p1[j];
  709. pix4 = (byte *)inrow2 + p2[j];
  710. ((byte *)(out+j))[0] = (pix1[0] + pix2[0] + pix3[0] + pix4[0])>>2;
  711. ((byte *)(out+j))[1] = (pix1[1] + pix2[1] + pix3[1] + pix4[1])>>2;
  712. ((byte *)(out+j))[2] = (pix1[2] + pix2[2] + pix3[2] + pix4[2])>>2;
  713. ((byte *)(out+j))[3] = (pix1[3] + pix2[3] + pix3[3] + pix4[3])>>2;
  714. }
  715. }
  716. }
  717. /*
  718. ================
  719. GL_LightScaleTexture
  720. Scale up the pixel values in a texture to increase the
  721. lighting range
  722. ================
  723. */
  724. void GL_LightScaleTexture (unsigned *in, int inwidth, int inheight, qboolean only_gamma )
  725. {
  726. if ( only_gamma )
  727. {
  728. int i, c;
  729. byte *p;
  730. p = (byte *)in;
  731. c = inwidth*inheight;
  732. for (i=0 ; i<c ; i++, p+=4)
  733. {
  734. p[0] = gammatable[p[0]];
  735. p[1] = gammatable[p[1]];
  736. p[2] = gammatable[p[2]];
  737. }
  738. }
  739. else
  740. {
  741. int i, c;
  742. byte *p;
  743. p = (byte *)in;
  744. c = inwidth*inheight;
  745. for (i=0 ; i<c ; i++, p+=4)
  746. {
  747. p[0] = gammatable[intensitytable[p[0]]];
  748. p[1] = gammatable[intensitytable[p[1]]];
  749. p[2] = gammatable[intensitytable[p[2]]];
  750. }
  751. }
  752. }
  753. /*
  754. ================
  755. GL_MipMap
  756. Operates in place, quartering the size of the texture
  757. ================
  758. */
  759. void GL_MipMap (byte *in, int width, int height)
  760. {
  761. int i, j;
  762. byte *out;
  763. width <<=2;
  764. height >>= 1;
  765. out = in;
  766. for (i=0 ; i<height ; i++, in+=width)
  767. {
  768. for (j=0 ; j<width ; j+=8, out+=4, in+=8)
  769. {
  770. out[0] = (in[0] + in[4] + in[width+0] + in[width+4])>>2;
  771. out[1] = (in[1] + in[5] + in[width+1] + in[width+5])>>2;
  772. out[2] = (in[2] + in[6] + in[width+2] + in[width+6])>>2;
  773. out[3] = (in[3] + in[7] + in[width+3] + in[width+7])>>2;
  774. }
  775. }
  776. }
  777. /*
  778. ===============
  779. GL_Upload32
  780. Returns has_alpha
  781. ===============
  782. */
  783. void GL_BuildPalettedTexture( unsigned char *paletted_texture, unsigned char *scaled, int scaled_width, int scaled_height )
  784. {
  785. int i;
  786. for ( i = 0; i < scaled_width * scaled_height; i++ )
  787. {
  788. unsigned int r, g, b, c;
  789. r = ( scaled[0] >> 3 ) & 31;
  790. g = ( scaled[1] >> 2 ) & 63;
  791. b = ( scaled[2] >> 3 ) & 31;
  792. c = r | ( g << 5 ) | ( b << 11 );
  793. paletted_texture[i] = gl_state.d_16to8table[c];
  794. scaled += 4;
  795. }
  796. }
  797. int upload_width, upload_height;
  798. qboolean uploaded_paletted;
  799. qboolean GL_Upload32 (unsigned *data, int width, int height, qboolean mipmap)
  800. {
  801. int samples;
  802. unsigned scaled[256*256];
  803. unsigned char paletted_texture[256*256];
  804. int scaled_width, scaled_height;
  805. int i, c;
  806. byte *scan;
  807. int comp;
  808. uploaded_paletted = false;
  809. for (scaled_width = 1 ; scaled_width < width ; scaled_width<<=1)
  810. ;
  811. if (gl_round_down->value && scaled_width > width && mipmap)
  812. scaled_width >>= 1;
  813. for (scaled_height = 1 ; scaled_height < height ; scaled_height<<=1)
  814. ;
  815. if (gl_round_down->value && scaled_height > height && mipmap)
  816. scaled_height >>= 1;
  817. // let people sample down the world textures for speed
  818. if (mipmap)
  819. {
  820. scaled_width >>= (int)gl_picmip->value;
  821. scaled_height >>= (int)gl_picmip->value;
  822. }
  823. // don't ever bother with >256 textures
  824. if (scaled_width > 256)
  825. scaled_width = 256;
  826. if (scaled_height > 256)
  827. scaled_height = 256;
  828. if (scaled_width < 1)
  829. scaled_width = 1;
  830. if (scaled_height < 1)
  831. scaled_height = 1;
  832. upload_width = scaled_width;
  833. upload_height = scaled_height;
  834. if (scaled_width * scaled_height > sizeof(scaled)/4)
  835. ri.Sys_Error (ERR_DROP, "GL_Upload32: too big");
  836. // scan the texture for any non-255 alpha
  837. c = width*height;
  838. scan = ((byte *)data) + 3;
  839. samples = gl_solid_format;
  840. for (i=0 ; i<c ; i++, scan += 4)
  841. {
  842. if ( *scan != 255 )
  843. {
  844. samples = gl_alpha_format;
  845. break;
  846. }
  847. }
  848. if (samples == gl_solid_format)
  849. comp = gl_tex_solid_format;
  850. else if (samples == gl_alpha_format)
  851. comp = gl_tex_alpha_format;
  852. else {
  853. ri.Con_Printf (PRINT_ALL,
  854. "Unknown number of texture components %i\n",
  855. samples);
  856. comp = samples;
  857. }
  858. #if 0
  859. if (mipmap)
  860. gluBuild2DMipmaps (GL_TEXTURE_2D, samples, width, height, GL_RGBA, GL_UNSIGNED_BYTE, trans);
  861. else if (scaled_width == width && scaled_height == height)
  862. qglTexImage2D (GL_TEXTURE_2D, 0, comp, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, trans);
  863. else
  864. {
  865. gluScaleImage (GL_RGBA, width, height, GL_UNSIGNED_BYTE, trans,
  866. scaled_width, scaled_height, GL_UNSIGNED_BYTE, scaled);
  867. qglTexImage2D (GL_TEXTURE_2D, 0, comp, scaled_width, scaled_height, 0, GL_RGBA, GL_UNSIGNED_BYTE, scaled);
  868. }
  869. #else
  870. if (scaled_width == width && scaled_height == height)
  871. {
  872. if (!mipmap)
  873. {
  874. if ( qglColorTableEXT && gl_ext_palettedtexture->value && samples == gl_solid_format )
  875. {
  876. uploaded_paletted = true;
  877. GL_BuildPalettedTexture( paletted_texture, ( unsigned char * ) data, scaled_width, scaled_height );
  878. qglTexImage2D( GL_TEXTURE_2D,
  879. 0,
  880. GL_COLOR_INDEX8_EXT,
  881. scaled_width,
  882. scaled_height,
  883. 0,
  884. GL_COLOR_INDEX,
  885. GL_UNSIGNED_BYTE,
  886. paletted_texture );
  887. }
  888. else
  889. {
  890. qglTexImage2D (GL_TEXTURE_2D, 0, comp, scaled_width, scaled_height, 0, GL_RGBA, GL_UNSIGNED_BYTE, data);
  891. }
  892. goto done;
  893. }
  894. memcpy (scaled, data, width*height*4);
  895. }
  896. else
  897. GL_ResampleTexture (data, width, height, scaled, scaled_width, scaled_height);
  898. GL_LightScaleTexture (scaled, scaled_width, scaled_height, !mipmap );
  899. if ( qglColorTableEXT && gl_ext_palettedtexture->value && ( samples == gl_solid_format ) )
  900. {
  901. uploaded_paletted = true;
  902. GL_BuildPalettedTexture( paletted_texture, ( unsigned char * ) scaled, scaled_width, scaled_height );
  903. qglTexImage2D( GL_TEXTURE_2D,
  904. 0,
  905. GL_COLOR_INDEX8_EXT,
  906. scaled_width,
  907. scaled_height,
  908. 0,
  909. GL_COLOR_INDEX,
  910. GL_UNSIGNED_BYTE,
  911. paletted_texture );
  912. }
  913. else
  914. {
  915. qglTexImage2D( GL_TEXTURE_2D, 0, comp, scaled_width, scaled_height, 0, GL_RGBA, GL_UNSIGNED_BYTE, scaled );
  916. }
  917. if (mipmap)
  918. {
  919. int miplevel;
  920. miplevel = 0;
  921. while (scaled_width > 1 || scaled_height > 1)
  922. {
  923. GL_MipMap ((byte *)scaled, scaled_width, scaled_height);
  924. scaled_width >>= 1;
  925. scaled_height >>= 1;
  926. if (scaled_width < 1)
  927. scaled_width = 1;
  928. if (scaled_height < 1)
  929. scaled_height = 1;
  930. miplevel++;
  931. if ( qglColorTableEXT && gl_ext_palettedtexture->value && samples == gl_solid_format )
  932. {
  933. uploaded_paletted = true;
  934. GL_BuildPalettedTexture( paletted_texture, ( unsigned char * ) scaled, scaled_width, scaled_height );
  935. qglTexImage2D( GL_TEXTURE_2D,
  936. miplevel,
  937. GL_COLOR_INDEX8_EXT,
  938. scaled_width,
  939. scaled_height,
  940. 0,
  941. GL_COLOR_INDEX,
  942. GL_UNSIGNED_BYTE,
  943. paletted_texture );
  944. }
  945. else
  946. {
  947. qglTexImage2D (GL_TEXTURE_2D, miplevel, comp, scaled_width, scaled_height, 0, GL_RGBA, GL_UNSIGNED_BYTE, scaled);
  948. }
  949. }
  950. }
  951. done: ;
  952. #endif
  953. if (mipmap)
  954. {
  955. qglTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, gl_filter_min);
  956. qglTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, gl_filter_max);
  957. }
  958. else
  959. {
  960. qglTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, gl_filter_max);
  961. qglTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, gl_filter_max);
  962. }
  963. return (samples == gl_alpha_format);
  964. }
  965. /*
  966. ===============
  967. GL_Upload8
  968. Returns has_alpha
  969. ===============
  970. */
  971. /*
  972. static qboolean IsPowerOf2( int value )
  973. {
  974. int i = 1;
  975. while ( 1 )
  976. {
  977. if ( value == i )
  978. return true;
  979. if ( i > value )
  980. return false;
  981. i <<= 1;
  982. }
  983. }
  984. */
  985. qboolean GL_Upload8 (byte *data, int width, int height, qboolean mipmap, qboolean is_sky )
  986. {
  987. unsigned trans[512*256];
  988. int i, s;
  989. int p;
  990. s = width*height;
  991. if (s > sizeof(trans)/4)
  992. ri.Sys_Error (ERR_DROP, "GL_Upload8: too large");
  993. if ( qglColorTableEXT &&
  994. gl_ext_palettedtexture->value &&
  995. is_sky )
  996. {
  997. qglTexImage2D( GL_TEXTURE_2D,
  998. 0,
  999. GL_COLOR_INDEX8_EXT,
  1000. width,
  1001. height,
  1002. 0,
  1003. GL_COLOR_INDEX,
  1004. GL_UNSIGNED_BYTE,
  1005. data );
  1006. qglTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, gl_filter_max);
  1007. qglTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, gl_filter_max);
  1008. }
  1009. else
  1010. {
  1011. for (i=0 ; i<s ; i++)
  1012. {
  1013. p = data[i];
  1014. trans[i] = d_8to24table[p];
  1015. if (p == 255)
  1016. { // transparent, so scan around for another color
  1017. // to avoid alpha fringes
  1018. // FIXME: do a full flood fill so mips work...
  1019. if (i > width && data[i-width] != 255)
  1020. p = data[i-width];
  1021. else if (i < s-width && data[i+width] != 255)
  1022. p = data[i+width];
  1023. else if (i > 0 && data[i-1] != 255)
  1024. p = data[i-1];
  1025. else if (i < s-1 && data[i+1] != 255)
  1026. p = data[i+1];
  1027. else
  1028. p = 0;
  1029. // copy rgb components
  1030. ((byte *)&trans[i])[0] = ((byte *)&d_8to24table[p])[0];
  1031. ((byte *)&trans[i])[1] = ((byte *)&d_8to24table[p])[1];
  1032. ((byte *)&trans[i])[2] = ((byte *)&d_8to24table[p])[2];
  1033. }
  1034. }
  1035. return GL_Upload32 (trans, width, height, mipmap);
  1036. }
  1037. }
  1038. /*
  1039. ================
  1040. GL_LoadPic
  1041. This is also used as an entry point for the generated r_notexture
  1042. ================
  1043. */
  1044. image_t *GL_LoadPic (char *name, byte *pic, int width, int height, imagetype_t type, int bits)
  1045. {
  1046. image_t *image;
  1047. int i;
  1048. // find a free image_t
  1049. for (i=0, image=gltextures ; i<numgltextures ; i++,image++)
  1050. {
  1051. if (!image->texnum)
  1052. break;
  1053. }
  1054. if (i == numgltextures)
  1055. {
  1056. if (numgltextures == MAX_GLTEXTURES)
  1057. ri.Sys_Error (ERR_DROP, "MAX_GLTEXTURES");
  1058. numgltextures++;
  1059. }
  1060. image = &gltextures[i];
  1061. if (strlen(name) >= sizeof(image->name))
  1062. ri.Sys_Error (ERR_DROP, "Draw_LoadPic: \"%s\" is too long", name);
  1063. strcpy (image->name, name);
  1064. image->registration_sequence = registration_sequence;
  1065. image->width = width;
  1066. image->height = height;
  1067. image->type = type;
  1068. if (type == it_skin && bits == 8)
  1069. R_FloodFillSkin(pic, width, height);
  1070. // load little pics into the scrap
  1071. if (image->type == it_pic && bits == 8
  1072. && image->width < 64 && image->height < 64)
  1073. {
  1074. int x, y;
  1075. int i, j, k;
  1076. int texnum;
  1077. texnum = Scrap_AllocBlock (image->width, image->height, &x, &y);
  1078. if (texnum == -1)
  1079. goto nonscrap;
  1080. scrap_dirty = true;
  1081. // copy the texels into the scrap block
  1082. k = 0;
  1083. for (i=0 ; i<image->height ; i++)
  1084. for (j=0 ; j<image->width ; j++, k++)
  1085. scrap_texels[texnum][(y+i)*BLOCK_WIDTH + x + j] = pic[k];
  1086. image->texnum = TEXNUM_SCRAPS + texnum;
  1087. image->scrap = true;
  1088. image->has_alpha = true;
  1089. image->sl = (x+0.01)/(float)BLOCK_WIDTH;
  1090. image->sh = (x+image->width-0.01)/(float)BLOCK_WIDTH;
  1091. image->tl = (y+0.01)/(float)BLOCK_WIDTH;
  1092. image->th = (y+image->height-0.01)/(float)BLOCK_WIDTH;
  1093. }
  1094. else
  1095. {
  1096. nonscrap:
  1097. image->scrap = false;
  1098. image->texnum = TEXNUM_IMAGES + (image - gltextures);
  1099. GL_Bind(image->texnum);
  1100. if (bits == 8)
  1101. image->has_alpha = GL_Upload8 (pic, width, height, (image->type != it_pic && image->type != it_sky), image->type == it_sky );
  1102. else
  1103. image->has_alpha = GL_Upload32 ((unsigned *)pic, width, height, (image->type != it_pic && image->type != it_sky) );
  1104. image->upload_width = upload_width; // after power of 2 and scales
  1105. image->upload_height = upload_height;
  1106. image->paletted = uploaded_paletted;
  1107. image->sl = 0;
  1108. image->sh = 1;
  1109. image->tl = 0;
  1110. image->th = 1;
  1111. }
  1112. return image;
  1113. }
  1114. /*
  1115. ================
  1116. GL_LoadWal
  1117. ================
  1118. */
  1119. image_t *GL_LoadWal (char *name)
  1120. {
  1121. miptex_t *mt;
  1122. int width, height, ofs;
  1123. image_t *image;
  1124. ri.FS_LoadFile (name, (void **)&mt);
  1125. if (!mt)
  1126. {
  1127. ri.Con_Printf (PRINT_ALL, "GL_FindImage: can't load %s\n", name);
  1128. return r_notexture;
  1129. }
  1130. width = LittleLong (mt->width);
  1131. height = LittleLong (mt->height);
  1132. ofs = LittleLong (mt->offsets[0]);
  1133. image = GL_LoadPic (name, (byte *)mt + ofs, width, height, it_wall, 8);
  1134. ri.FS_FreeFile ((void *)mt);
  1135. return image;
  1136. }
  1137. /*
  1138. ===============
  1139. GL_FindImage
  1140. Finds or loads the given image
  1141. ===============
  1142. */
  1143. image_t *GL_FindImage (char *name, imagetype_t type)
  1144. {
  1145. image_t *image;
  1146. int i, len;
  1147. byte *pic, *palette;
  1148. int width, height;
  1149. if (!name)
  1150. return NULL; // ri.Sys_Error (ERR_DROP, "GL_FindImage: NULL name");
  1151. len = strlen(name);
  1152. if (len<5)
  1153. return NULL; // ri.Sys_Error (ERR_DROP, "GL_FindImage: bad name: %s", name);
  1154. // look for it
  1155. for (i=0, image=gltextures ; i<numgltextures ; i++,image++)
  1156. {
  1157. if (!strcmp(name, image->name))
  1158. {
  1159. image->registration_sequence = registration_sequence;
  1160. return image;
  1161. }
  1162. }
  1163. //
  1164. // load the pic from disk
  1165. //
  1166. pic = NULL;
  1167. palette = NULL;
  1168. if (!strcmp(name+len-4, ".pcx"))
  1169. {
  1170. LoadPCX (name, &pic, &palette, &width, &height);
  1171. if (!pic)
  1172. return NULL; // ri.Sys_Error (ERR_DROP, "GL_FindImage: can't load %s", name);
  1173. image = GL_LoadPic (name, pic, width, height, type, 8);
  1174. }
  1175. else if (!strcmp(name+len-4, ".wal"))
  1176. {
  1177. image = GL_LoadWal (name);
  1178. }
  1179. else if (!strcmp(name+len-4, ".tga"))
  1180. {
  1181. LoadTGA (name, &pic, &width, &height);
  1182. if (!pic)
  1183. return NULL; // ri.Sys_Error (ERR_DROP, "GL_FindImage: can't load %s", name);
  1184. image = GL_LoadPic (name, pic, width, height, type, 32);
  1185. }
  1186. else
  1187. return NULL; // ri.Sys_Error (ERR_DROP, "GL_FindImage: bad extension on: %s", name);
  1188. if (pic)
  1189. free(pic);
  1190. if (palette)
  1191. free(palette);
  1192. return image;
  1193. }
  1194. /*
  1195. ===============
  1196. R_RegisterSkin
  1197. ===============
  1198. */
  1199. struct image_s *R_RegisterSkin (char *name)
  1200. {
  1201. return GL_FindImage (name, it_skin);
  1202. }
  1203. /*
  1204. ================
  1205. GL_FreeUnusedImages
  1206. Any image that was not touched on this registration sequence
  1207. will be freed.
  1208. ================
  1209. */
  1210. void GL_FreeUnusedImages (void)
  1211. {
  1212. int i;
  1213. image_t *image;
  1214. // never free r_notexture or particle texture
  1215. r_notexture->registration_sequence = registration_sequence;
  1216. r_particletexture->registration_sequence = registration_sequence;
  1217. for (i=0, image=gltextures ; i<numgltextures ; i++, image++)
  1218. {
  1219. if (image->registration_sequence == registration_sequence)
  1220. continue; // used this sequence
  1221. if (!image->registration_sequence)
  1222. continue; // free image_t slot
  1223. if (image->type == it_pic)
  1224. continue; // don't free pics
  1225. // free it
  1226. qglDeleteTextures (1, &image->texnum);
  1227. memset (image, 0, sizeof(*image));
  1228. }
  1229. }
  1230. /*
  1231. ===============
  1232. Draw_GetPalette
  1233. ===============
  1234. */
  1235. int Draw_GetPalette (void)
  1236. {
  1237. int i;
  1238. int r, g, b;
  1239. unsigned v;
  1240. byte *pic, *pal;
  1241. int width, height;
  1242. // get the palette
  1243. LoadPCX ("pics/colormap.pcx", &pic, &pal, &width, &height);
  1244. if (!pal)
  1245. ri.Sys_Error (ERR_FATAL, "Couldn't load pics/colormap.pcx");
  1246. for (i=0 ; i<256 ; i++)
  1247. {
  1248. r = pal[i*3+0];
  1249. g = pal[i*3+1];
  1250. b = pal[i*3+2];
  1251. v = (255<<24) + (r<<0) + (g<<8) + (b<<16);
  1252. d_8to24table[i] = LittleLong(v);
  1253. }
  1254. d_8to24table[255] &= LittleLong(0xffffff); // 255 is transparent
  1255. free (pic);
  1256. free (pal);
  1257. return 0;
  1258. }
  1259. /*
  1260. ===============
  1261. GL_InitImages
  1262. ===============
  1263. */
  1264. void GL_InitImages (void)
  1265. {
  1266. int i, j;
  1267. float g = vid_gamma->value;
  1268. registration_sequence = 1;
  1269. // init intensity conversions
  1270. intensity = ri.Cvar_Get ("intensity", "2", 0);
  1271. if ( intensity->value <= 1 )
  1272. ri.Cvar_Set( "intensity", "1" );
  1273. gl_state.inverse_intensity = 1 / intensity->value;
  1274. Draw_GetPalette ();
  1275. if ( qglColorTableEXT )
  1276. {
  1277. ri.FS_LoadFile( "pics/16to8.dat", &gl_state.d_16to8table );
  1278. if ( !gl_state.d_16to8table )
  1279. ri.Sys_Error( ERR_FATAL, "Couldn't load pics/16to8.pcx");
  1280. }
  1281. if ( gl_config.renderer & ( GL_RENDERER_VOODOO | GL_RENDERER_VOODOO2 ) )
  1282. {
  1283. g = 1.0F;
  1284. }
  1285. for ( i = 0; i < 256; i++ )
  1286. {
  1287. if ( g == 1 )
  1288. {
  1289. gammatable[i] = i;
  1290. }
  1291. else
  1292. {
  1293. float inf;
  1294. inf = 255 * pow ( (i+0.5)/255.5 , g ) + 0.5;
  1295. if (inf < 0)
  1296. inf = 0;
  1297. if (inf > 255)
  1298. inf = 255;
  1299. gammatable[i] = inf;
  1300. }
  1301. }
  1302. for (i=0 ; i<256 ; i++)
  1303. {
  1304. j = i*intensity->value;
  1305. if (j > 255)
  1306. j = 255;
  1307. intensitytable[i] = j;
  1308. }
  1309. }
  1310. /*
  1311. ===============
  1312. GL_ShutdownImages
  1313. ===============
  1314. */
  1315. void GL_ShutdownImages (void)
  1316. {
  1317. int i;
  1318. image_t *image;
  1319. for (i=0, image=gltextures ; i<numgltextures ; i++, image++)
  1320. {
  1321. if (!image->registration_sequence)
  1322. continue; // free image_t slot
  1323. // free it
  1324. qglDeleteTextures (1, &image->texnum);
  1325. memset (image, 0, sizeof(*image));
  1326. }
  1327. }