Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Create dynamic new structures of various types |
| 3 | * and some utils in that trend. |
| 4 | * |
| 5 | * Copyright 1998 Bertho A. Stultiens |
| 6 | * |
Alexandre Julliard | 0799c1a | 2002-03-09 23:29:33 +0000 | [diff] [blame] | 7 | * This library is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU Lesser General Public |
| 9 | * License as published by the Free Software Foundation; either |
| 10 | * version 2.1 of the License, or (at your option) any later version. |
| 11 | * |
| 12 | * This library is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * Lesser General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public |
| 18 | * License along with this library; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 20 | */ |
| 21 | |
Patrik Stridvall | 021bd85 | 1999-07-18 18:40:11 +0000 | [diff] [blame] | 22 | #include "config.h" |
| 23 | |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 24 | #include <stdio.h> |
| 25 | #include <stdlib.h> |
Jeff Garzik | c3e1f72 | 1999-02-19 15:42:11 +0000 | [diff] [blame] | 26 | #include <string.h> |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 27 | #include <assert.h> |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 28 | #include <ctype.h> |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 29 | |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 30 | #include "wrc.h" |
| 31 | #include "newstruc.h" |
| 32 | #include "utils.h" |
| 33 | #include "parser.h" |
| 34 | |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 35 | #include "wingdi.h" /* for BITMAPINFOHEADER */ |
| 36 | |
Jon Griffiths | 0aab81f | 2004-06-01 19:43:21 +0000 | [diff] [blame] | 37 | #include <pshpack2.h> |
| 38 | typedef struct |
| 39 | { |
| 40 | DWORD biSize; |
| 41 | WORD biWidth; |
| 42 | WORD biHeight; |
| 43 | WORD biPlanes; |
| 44 | WORD biBitCount; |
| 45 | } BITMAPOS2HEADER; |
| 46 | #include <poppack.h> |
| 47 | |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 48 | /* Generate new_* functions that have no parameters (NOTE: no ';') */ |
| 49 | __NEW_STRUCT_FUNC(dialog) |
| 50 | __NEW_STRUCT_FUNC(dialogex) |
| 51 | __NEW_STRUCT_FUNC(name_id) |
| 52 | __NEW_STRUCT_FUNC(menu) |
| 53 | __NEW_STRUCT_FUNC(menuex) |
| 54 | __NEW_STRUCT_FUNC(menu_item) |
| 55 | __NEW_STRUCT_FUNC(menuex_item) |
| 56 | __NEW_STRUCT_FUNC(control) |
| 57 | __NEW_STRUCT_FUNC(icon) |
| 58 | __NEW_STRUCT_FUNC(cursor) |
| 59 | __NEW_STRUCT_FUNC(versioninfo) |
| 60 | __NEW_STRUCT_FUNC(ver_value) |
| 61 | __NEW_STRUCT_FUNC(ver_block) |
| 62 | __NEW_STRUCT_FUNC(stt_entry) |
| 63 | __NEW_STRUCT_FUNC(accelerator) |
| 64 | __NEW_STRUCT_FUNC(event) |
| 65 | __NEW_STRUCT_FUNC(raw_data) |
| 66 | __NEW_STRUCT_FUNC(lvc) |
| 67 | __NEW_STRUCT_FUNC(res_count) |
| 68 | __NEW_STRUCT_FUNC(string) |
Alexandre Julliard | 638f169 | 1999-01-17 16:32:32 +0000 | [diff] [blame] | 69 | __NEW_STRUCT_FUNC(toolbar_item) |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 70 | __NEW_STRUCT_FUNC(ani_any) |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 71 | |
| 72 | /* New instances for all types of structures */ |
| 73 | /* Very inefficient (in size), but very functional :-] |
| 74 | * Especially for type-checking. |
| 75 | */ |
| 76 | resource_t *new_resource(enum res_e t, void *res, int memopt, language_t *lan) |
| 77 | { |
| 78 | resource_t *r = (resource_t *)xmalloc(sizeof(resource_t)); |
| 79 | r->type = t; |
| 80 | r->res.overlay = res; |
| 81 | r->memopt = memopt; |
| 82 | r->lan = lan; |
| 83 | return r; |
| 84 | } |
| 85 | |
| 86 | version_t *new_version(DWORD v) |
| 87 | { |
| 88 | version_t *vp = (version_t *)xmalloc(sizeof(version_t)); |
| 89 | *vp = v; |
| 90 | return vp; |
| 91 | } |
| 92 | |
| 93 | characts_t *new_characts(DWORD c) |
| 94 | { |
| 95 | characts_t *cp = (characts_t *)xmalloc(sizeof(characts_t)); |
| 96 | *cp = c; |
| 97 | return cp; |
| 98 | } |
| 99 | |
| 100 | language_t *new_language(int id, int sub) |
| 101 | { |
| 102 | language_t *lan = (language_t *)xmalloc(sizeof(language_t)); |
| 103 | lan->id = id; |
| 104 | lan->sub = sub; |
| 105 | return lan; |
| 106 | } |
| 107 | |
| 108 | language_t *dup_language(language_t *l) |
| 109 | { |
| 110 | if(!l) return NULL; |
| 111 | return new_language(l->id, l->sub); |
| 112 | } |
| 113 | |
| 114 | version_t *dup_version(version_t *v) |
| 115 | { |
| 116 | if(!v) return NULL; |
| 117 | return new_version(*v); |
| 118 | } |
| 119 | |
| 120 | characts_t *dup_characts(characts_t *c) |
| 121 | { |
| 122 | if(!c) return NULL; |
| 123 | return new_characts(*c); |
| 124 | } |
| 125 | |
Alexandre Julliard | 52788d1 | 2005-06-30 20:58:52 +0000 | [diff] [blame] | 126 | html_t *new_html(raw_data_t *rd, int *memopt) |
| 127 | { |
| 128 | html_t *html = xmalloc(sizeof(html_t)); |
| 129 | html->data = rd; |
| 130 | if(memopt) |
| 131 | { |
| 132 | html->memopt = *memopt; |
| 133 | free(memopt); |
| 134 | } |
| 135 | else |
| 136 | html->memopt = WRC_MO_MOVEABLE | WRC_MO_PURE; |
| 137 | return html; |
| 138 | } |
| 139 | |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 140 | rcdata_t *new_rcdata(raw_data_t *rd, int *memopt) |
| 141 | { |
| 142 | rcdata_t *rc = (rcdata_t *)xmalloc(sizeof(rcdata_t)); |
| 143 | rc->data = rd; |
| 144 | if(memopt) |
| 145 | { |
| 146 | rc->memopt = *memopt; |
| 147 | free(memopt); |
| 148 | } |
| 149 | else |
| 150 | rc->memopt = WRC_MO_MOVEABLE | WRC_MO_PURE; |
| 151 | return rc; |
| 152 | } |
| 153 | |
| 154 | font_id_t *new_font_id(int size, string_t *face, int weight, int italic) |
| 155 | { |
| 156 | font_id_t *fid = (font_id_t *)xmalloc(sizeof(font_id_t)); |
| 157 | fid->name = face; |
| 158 | fid->size = size; |
| 159 | fid->weight = weight; |
| 160 | fid->italic = italic; |
| 161 | return fid; |
| 162 | } |
| 163 | |
| 164 | user_t *new_user(name_id_t *type, raw_data_t *rd, int *memopt) |
| 165 | { |
| 166 | user_t *usr = (user_t *)xmalloc(sizeof(user_t)); |
| 167 | usr->data = rd; |
| 168 | if(memopt) |
| 169 | { |
| 170 | usr->memopt = *memopt; |
| 171 | free(memopt); |
| 172 | } |
| 173 | else |
| 174 | usr->memopt = WRC_MO_MOVEABLE | WRC_MO_PURE; |
| 175 | usr->type = type; |
| 176 | return usr; |
| 177 | } |
| 178 | |
| 179 | font_t *new_font(raw_data_t *rd, int *memopt) |
| 180 | { |
| 181 | font_t *fnt = (font_t *)xmalloc(sizeof(font_t)); |
| 182 | fnt->data = rd; |
| 183 | if(memopt) |
| 184 | { |
| 185 | fnt->memopt = *memopt; |
| 186 | free(memopt); |
| 187 | } |
| 188 | else |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 189 | fnt->memopt = WRC_MO_MOVEABLE | WRC_MO_DISCARDABLE; |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 190 | return fnt; |
| 191 | } |
| 192 | |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 193 | fontdir_t *new_fontdir(raw_data_t *rd, int *memopt) |
| 194 | { |
| 195 | fontdir_t *fnd = (fontdir_t *)xmalloc(sizeof(fontdir_t)); |
| 196 | fnd->data = rd; |
| 197 | if(memopt) |
| 198 | { |
| 199 | fnd->memopt = *memopt; |
| 200 | free(memopt); |
| 201 | } |
| 202 | else |
| 203 | fnd->memopt = WRC_MO_MOVEABLE | WRC_MO_DISCARDABLE; |
| 204 | return fnd; |
| 205 | } |
| 206 | |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 207 | |
| 208 | /* |
| 209 | * Convert bitmaps to proper endian |
| 210 | */ |
| 211 | static void convert_bitmap_swap_v3(BITMAPINFOHEADER *bih) |
| 212 | { |
| 213 | bih->biSize = BYTESWAP_DWORD(bih->biSize); |
| 214 | bih->biWidth = BYTESWAP_DWORD(bih->biWidth); |
| 215 | bih->biHeight = BYTESWAP_DWORD(bih->biHeight); |
| 216 | bih->biPlanes = BYTESWAP_WORD(bih->biPlanes); |
| 217 | bih->biBitCount = BYTESWAP_WORD(bih->biBitCount); |
| 218 | bih->biCompression = BYTESWAP_DWORD(bih->biCompression); |
| 219 | bih->biSizeImage = BYTESWAP_DWORD(bih->biSizeImage); |
| 220 | bih->biXPelsPerMeter = BYTESWAP_DWORD(bih->biXPelsPerMeter); |
| 221 | bih->biYPelsPerMeter = BYTESWAP_DWORD(bih->biYPelsPerMeter); |
| 222 | bih->biClrUsed = BYTESWAP_DWORD(bih->biClrUsed); |
| 223 | bih->biClrImportant = BYTESWAP_DWORD(bih->biClrImportant); |
| 224 | } |
| 225 | |
| 226 | static void convert_bitmap_swap_v4(BITMAPV4HEADER *b4h) |
| 227 | { |
| 228 | convert_bitmap_swap_v3((BITMAPINFOHEADER *)b4h); |
| 229 | b4h->bV4RedMask = BYTESWAP_DWORD(b4h->bV4RedMask); |
| 230 | b4h->bV4GreenMask = BYTESWAP_DWORD(b4h->bV4GreenMask); |
| 231 | b4h->bV4BlueMask = BYTESWAP_DWORD(b4h->bV4BlueMask); |
| 232 | b4h->bV4AlphaMask = BYTESWAP_DWORD(b4h->bV4AlphaMask); |
| 233 | b4h->bV4CSType = BYTESWAP_DWORD(b4h->bV4CSType); |
Steven Edwards | ca14f24 | 2002-09-04 18:47:32 +0000 | [diff] [blame] | 234 | b4h->bV4Endpoints.ciexyzRed.ciexyzX = BYTESWAP_DWORD(b4h->bV4Endpoints.ciexyzRed.ciexyzX); |
| 235 | b4h->bV4Endpoints.ciexyzRed.ciexyzY = BYTESWAP_DWORD(b4h->bV4Endpoints.ciexyzRed.ciexyzY); |
| 236 | b4h->bV4Endpoints.ciexyzRed.ciexyzZ = BYTESWAP_DWORD(b4h->bV4Endpoints.ciexyzRed.ciexyzZ); |
| 237 | b4h->bV4Endpoints.ciexyzGreen.ciexyzX = BYTESWAP_DWORD(b4h->bV4Endpoints.ciexyzGreen.ciexyzX); |
| 238 | b4h->bV4Endpoints.ciexyzGreen.ciexyzY = BYTESWAP_DWORD(b4h->bV4Endpoints.ciexyzGreen.ciexyzY); |
| 239 | b4h->bV4Endpoints.ciexyzGreen.ciexyzZ = BYTESWAP_DWORD(b4h->bV4Endpoints.ciexyzGreen.ciexyzZ); |
| 240 | b4h->bV4Endpoints.ciexyzBlue.ciexyzX = BYTESWAP_DWORD(b4h->bV4Endpoints.ciexyzBlue.ciexyzX); |
| 241 | b4h->bV4Endpoints.ciexyzBlue.ciexyzY = BYTESWAP_DWORD(b4h->bV4Endpoints.ciexyzBlue.ciexyzY); |
| 242 | b4h->bV4Endpoints.ciexyzBlue.ciexyzZ = BYTESWAP_DWORD(b4h->bV4Endpoints.ciexyzBlue.ciexyzZ); |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 243 | b4h->bV4GammaRed = BYTESWAP_DWORD(b4h->bV4GammaRed); |
| 244 | b4h->bV4GammaGreen = BYTESWAP_DWORD(b4h->bV4GammaGreen); |
| 245 | b4h->bV4GammaBlue = BYTESWAP_DWORD(b4h->bV4GammaBlue); |
| 246 | } |
| 247 | |
Jon Griffiths | 0aab81f | 2004-06-01 19:43:21 +0000 | [diff] [blame] | 248 | static void convert_bitmap_swap_os2(BITMAPOS2HEADER *boh) |
| 249 | { |
| 250 | boh->biSize = BYTESWAP_DWORD(boh->biSize); |
| 251 | boh->biWidth = BYTESWAP_WORD(boh->biWidth); |
| 252 | boh->biHeight = BYTESWAP_WORD(boh->biHeight); |
| 253 | boh->biPlanes = BYTESWAP_WORD(boh->biPlanes); |
| 254 | boh->biBitCount = BYTESWAP_WORD(boh->biBitCount); |
| 255 | } |
| 256 | |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 257 | #define FL_SIGBE 0x01 |
| 258 | #define FL_SIZEBE 0x02 |
| 259 | #define FL_V4 0x04 |
Jon Griffiths | 0aab81f | 2004-06-01 19:43:21 +0000 | [diff] [blame] | 260 | #define FL_OS2 0x08 |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 261 | static int convert_bitmap(char *data, int size) |
| 262 | { |
| 263 | BITMAPINFOHEADER *bih = (BITMAPINFOHEADER *)data; |
| 264 | BITMAPV4HEADER *b4h = (BITMAPV4HEADER *)data; |
Jon Griffiths | 0aab81f | 2004-06-01 19:43:21 +0000 | [diff] [blame] | 265 | BITMAPOS2HEADER *boh = (BITMAPOS2HEADER *)data; |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 266 | int type = 0; |
Jon Griffiths | 0aab81f | 2004-06-01 19:43:21 +0000 | [diff] [blame] | 267 | int returnSize = 0; /* size to be returned */ |
Patrik Stridvall | d303dad | 2000-05-12 21:39:55 +0000 | [diff] [blame] | 268 | #ifdef WORDS_BIGENDIAN |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 269 | DWORD bisizel = BYTESWAP_DWORD(sizeof(BITMAPINFOHEADER)); |
| 270 | DWORD b4sizel = BYTESWAP_DWORD(sizeof(BITMAPV4HEADER)); |
Jon Griffiths | 0aab81f | 2004-06-01 19:43:21 +0000 | [diff] [blame] | 271 | DWORD bosizel = BYTESWAP_DWORD(sizeof(BITMAPOS2HEADER)); |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 272 | DWORD bisizeb = sizeof(BITMAPINFOHEADER); |
| 273 | DWORD b4sizeb = sizeof(BITMAPV4HEADER); |
Jon Griffiths | 0aab81f | 2004-06-01 19:43:21 +0000 | [diff] [blame] | 274 | DWORD bosizeb = sizeof(BITMAPOS2HEADER); |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 275 | #else |
| 276 | DWORD bisizel = sizeof(BITMAPINFOHEADER); |
| 277 | DWORD b4sizel = sizeof(BITMAPV4HEADER); |
Jon Griffiths | 0aab81f | 2004-06-01 19:43:21 +0000 | [diff] [blame] | 278 | DWORD bosizel = sizeof(BITMAPOS2HEADER); |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 279 | DWORD bisizeb = BYTESWAP_DWORD(sizeof(BITMAPINFOHEADER)); |
| 280 | DWORD b4sizeb = BYTESWAP_DWORD(sizeof(BITMAPV4HEADER)); |
Jon Griffiths | 0aab81f | 2004-06-01 19:43:21 +0000 | [diff] [blame] | 281 | DWORD bosizeb = BYTESWAP_DWORD(sizeof(BITMAPOS2HEADER)); |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 282 | #endif |
| 283 | |
Warren Baird | 714bfd7 | 2002-05-04 18:26:34 +0000 | [diff] [blame] | 284 | |
| 285 | /* |
| 286 | * Originally the bih and b4h pointers were simply incremented here, |
| 287 | * and memmoved at the end of the function. This causes alignment |
| 288 | * issues on solaris, so we do the memmove here rather than at the end. |
| 289 | */ |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 290 | if(data[0] == 'B' && data[1] == 'M') |
| 291 | { |
| 292 | /* Little endian signature */ |
Warren Baird | 714bfd7 | 2002-05-04 18:26:34 +0000 | [diff] [blame] | 293 | memmove(data, data+sizeof(BITMAPFILEHEADER), size - sizeof(BITMAPFILEHEADER)); |
| 294 | returnSize = sizeof(BITMAPFILEHEADER); |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 295 | } |
| 296 | else if(data[0] == 'M' && data[1] == 'B') |
| 297 | { |
| 298 | type |= FL_SIGBE; /* Big endian signature */ |
Warren Baird | 714bfd7 | 2002-05-04 18:26:34 +0000 | [diff] [blame] | 299 | memmove(data, data+sizeof(BITMAPFILEHEADER), size - sizeof(BITMAPFILEHEADER)); |
| 300 | returnSize = sizeof(BITMAPFILEHEADER); |
| 301 | |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | if(bih->biSize == bisizel) |
| 305 | { |
| 306 | /* Little endian */ |
| 307 | } |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 308 | else if(bih->biSize == bisizeb) |
| 309 | { |
| 310 | type |= FL_SIZEBE; |
| 311 | } |
Jon Griffiths | 0aab81f | 2004-06-01 19:43:21 +0000 | [diff] [blame] | 312 | else if(bih->biSize == b4sizel) |
| 313 | { |
| 314 | type |= FL_V4; |
| 315 | } |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 316 | else if(bih->biSize == b4sizeb) |
| 317 | { |
| 318 | type |= FL_SIZEBE | FL_V4; |
| 319 | } |
Jon Griffiths | 0aab81f | 2004-06-01 19:43:21 +0000 | [diff] [blame] | 320 | else if(!bih->biSize || bih->biSize == bosizel) |
| 321 | { |
| 322 | type |= FL_OS2; |
| 323 | } |
| 324 | else if(bih->biSize == bosizeb) |
| 325 | { |
| 326 | type |= FL_SIZEBE | FL_OS2; |
| 327 | } |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 328 | else |
Jon Griffiths | 0aab81f | 2004-06-01 19:43:21 +0000 | [diff] [blame] | 329 | yyerror("Invalid bitmap format, bih->biSize = %ld", bih->biSize); |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 330 | |
| 331 | switch(type) |
| 332 | { |
| 333 | default: |
| 334 | break; |
| 335 | case FL_SIZEBE: |
| 336 | case FL_SIZEBE | FL_V4: |
Jon Griffiths | 0aab81f | 2004-06-01 19:43:21 +0000 | [diff] [blame] | 337 | case FL_SIZEBE | FL_OS2: |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 338 | yywarning("Bitmap v%c signature little-endian, but size big-endian", type & FL_V4 ? '4' : '3'); |
| 339 | break; |
| 340 | case FL_SIGBE: |
| 341 | case FL_SIGBE | FL_V4: |
Jon Griffiths | 0aab81f | 2004-06-01 19:43:21 +0000 | [diff] [blame] | 342 | case FL_SIGBE | FL_OS2: |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 343 | yywarning("Bitmap v%c signature big-endian, but size little-endian", type & FL_V4 ? '4' : '3'); |
| 344 | break; |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | switch(byteorder) |
| 348 | { |
Patrik Stridvall | d303dad | 2000-05-12 21:39:55 +0000 | [diff] [blame] | 349 | #ifdef WORDS_BIGENDIAN |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 350 | default: |
| 351 | #endif |
| 352 | case WRC_BO_BIG: |
| 353 | if(!(type & FL_SIZEBE)) |
| 354 | { |
| 355 | if(type & FL_V4) |
| 356 | convert_bitmap_swap_v4(b4h); |
Jon Griffiths | 0aab81f | 2004-06-01 19:43:21 +0000 | [diff] [blame] | 357 | else if(type & FL_OS2) |
| 358 | { |
| 359 | convert_bitmap_swap_os2(boh); |
| 360 | } |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 361 | else |
| 362 | convert_bitmap_swap_v3(bih); |
| 363 | } |
| 364 | break; |
Patrik Stridvall | d303dad | 2000-05-12 21:39:55 +0000 | [diff] [blame] | 365 | #ifndef WORDS_BIGENDIAN |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 366 | default: |
| 367 | #endif |
| 368 | case WRC_BO_LITTLE: |
| 369 | if(type & FL_SIZEBE) |
| 370 | { |
| 371 | if(type & FL_V4) |
| 372 | convert_bitmap_swap_v4(b4h); |
Jon Griffiths | 0aab81f | 2004-06-01 19:43:21 +0000 | [diff] [blame] | 373 | else if(type & FL_OS2) |
| 374 | { |
| 375 | convert_bitmap_swap_os2(boh); |
| 376 | } |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 377 | else |
| 378 | convert_bitmap_swap_v3(bih); |
| 379 | } |
| 380 | break; |
| 381 | } |
| 382 | |
| 383 | if(size && (void *)data != (void *)bih) |
| 384 | { |
| 385 | /* We have the fileheader still attached, remove it */ |
| 386 | memmove(data, data+sizeof(BITMAPFILEHEADER), size - sizeof(BITMAPFILEHEADER)); |
| 387 | return sizeof(BITMAPFILEHEADER); |
| 388 | } |
Warren Baird | 714bfd7 | 2002-05-04 18:26:34 +0000 | [diff] [blame] | 389 | return returnSize; |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 390 | } |
| 391 | #undef FL_SIGBE |
| 392 | #undef FL_SIZEBE |
| 393 | #undef FL_V4 |
| 394 | |
| 395 | /* |
| 396 | * Cursor and icon splitter functions used when allocating |
| 397 | * cursor- and icon-groups. |
| 398 | */ |
| 399 | typedef struct { |
| 400 | language_t lan; |
| 401 | int id; |
| 402 | } id_alloc_t; |
| 403 | |
| 404 | static int get_new_id(id_alloc_t **list, int *n, language_t *lan) |
| 405 | { |
| 406 | int i; |
| 407 | assert(lan != NULL); |
| 408 | assert(list != NULL); |
| 409 | assert(n != NULL); |
| 410 | |
| 411 | if(!*list) |
| 412 | { |
| 413 | *list = (id_alloc_t *)xmalloc(sizeof(id_alloc_t)); |
| 414 | *n = 1; |
| 415 | (*list)[0].lan = *lan; |
| 416 | (*list)[0].id = 1; |
| 417 | return 1; |
| 418 | } |
| 419 | |
| 420 | for(i = 0; i < *n; i++) |
| 421 | { |
| 422 | if((*list)[i].lan.id == lan->id && (*list)[i].lan.sub == lan->sub) |
| 423 | return ++((*list)[i].id); |
| 424 | } |
| 425 | |
| 426 | *list = (id_alloc_t *)xrealloc(*list, sizeof(id_alloc_t) * (*n+1)); |
| 427 | (*list)[*n].lan = *lan; |
| 428 | (*list)[*n].id = 1; |
| 429 | *n += 1; |
| 430 | return 1; |
| 431 | } |
| 432 | |
| 433 | static int alloc_icon_id(language_t *lan) |
| 434 | { |
| 435 | static id_alloc_t *idlist = NULL; |
| 436 | static int nid = 0; |
| 437 | |
| 438 | return get_new_id(&idlist, &nid, lan); |
| 439 | } |
| 440 | |
| 441 | static int alloc_cursor_id(language_t *lan) |
| 442 | { |
| 443 | static id_alloc_t *idlist = NULL; |
| 444 | static int nid = 0; |
| 445 | |
| 446 | return get_new_id(&idlist, &nid, lan); |
| 447 | } |
| 448 | |
| 449 | static void split_icons(raw_data_t *rd, icon_group_t *icog, int *nico) |
| 450 | { |
| 451 | int cnt; |
| 452 | int i; |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 453 | icon_t *ico; |
| 454 | icon_t *list = NULL; |
| 455 | icon_header_t *ih = (icon_header_t *)rd->data; |
| 456 | int swap = 0; |
| 457 | |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 458 | if(ih->type == 1) |
| 459 | swap = 0; |
| 460 | else if(BYTESWAP_WORD(ih->type) == 1) |
| 461 | swap = 1; |
| 462 | else |
| 463 | yyerror("Icon resource data has invalid type id %d", ih->type); |
| 464 | |
| 465 | cnt = swap ? BYTESWAP_WORD(ih->count) : ih->count; |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 466 | for(i = 0; i < cnt; i++) |
| 467 | { |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 468 | icon_dir_entry_t ide; |
| 469 | BITMAPINFOHEADER info; |
| 470 | memcpy(&ide, rd->data + sizeof(icon_header_t) |
| 471 | + i*sizeof(icon_dir_entry_t), sizeof(ide)); |
| 472 | |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 473 | ico = new_icon(); |
| 474 | ico->id = alloc_icon_id(icog->lvc.language); |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 475 | ico->lvc = icog->lvc; |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 476 | if(swap) |
| 477 | { |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 478 | ide.offset = BYTESWAP_DWORD(ide.offset); |
| 479 | ide.ressize= BYTESWAP_DWORD(ide.ressize); |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 480 | } |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 481 | if(ide.offset > rd->size |
| 482 | || ide.offset + ide.ressize > rd->size) |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 483 | yyerror("Icon resource data corrupt"); |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 484 | ico->width = ide.width; |
| 485 | ico->height = ide.height; |
| 486 | ico->nclr = ide.nclr; |
| 487 | ico->planes = swap ? BYTESWAP_WORD(ide.planes) : ide.planes; |
| 488 | ico->bits = swap ? BYTESWAP_WORD(ide.bits) : ide.bits; |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 489 | memcpy(&info, rd->data + ide.offset, sizeof(info)); |
Warren Baird | 714bfd7 | 2002-05-04 18:26:34 +0000 | [diff] [blame] | 490 | convert_bitmap((char *) &info, 0); |
| 491 | memcpy(rd->data + ide.offset, &info, sizeof(info)); |
| 492 | |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 493 | if(!ico->planes) |
| 494 | { |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 495 | /* Argh! They did not fill out the resdir structure */ |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 496 | /* The bitmap is in destination byteorder. We want native for our structures */ |
| 497 | switch(byteorder) |
| 498 | { |
Patrik Stridvall | d303dad | 2000-05-12 21:39:55 +0000 | [diff] [blame] | 499 | #ifdef WORDS_BIGENDIAN |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 500 | case WRC_BO_LITTLE: |
| 501 | #else |
| 502 | case WRC_BO_BIG: |
| 503 | #endif |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 504 | ico->planes = BYTESWAP_WORD(info.biPlanes); |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 505 | break; |
| 506 | default: |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 507 | ico->planes = info.biPlanes; |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 508 | } |
| 509 | } |
| 510 | if(!ico->bits) |
| 511 | { |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 512 | /* Argh! They did not fill out the resdir structure */ |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 513 | /* The bitmap is in destination byteorder. We want native for our structures */ |
| 514 | switch(byteorder) |
| 515 | { |
Patrik Stridvall | d303dad | 2000-05-12 21:39:55 +0000 | [diff] [blame] | 516 | #ifdef WORDS_BIGENDIAN |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 517 | case WRC_BO_LITTLE: |
| 518 | #else |
| 519 | case WRC_BO_BIG: |
| 520 | #endif |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 521 | ico->bits = BYTESWAP_WORD(info.biBitCount); |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 522 | break; |
| 523 | default: |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 524 | ico->bits = info.biBitCount; |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 525 | } |
| 526 | } |
| 527 | ico->data = new_raw_data(); |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 528 | copy_raw_data(ico->data, rd, ide.offset, ide.ressize); |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 529 | if(!list) |
| 530 | { |
| 531 | list = ico; |
| 532 | } |
| 533 | else |
| 534 | { |
| 535 | ico->next = list; |
| 536 | list->prev = ico; |
| 537 | list = ico; |
| 538 | } |
| 539 | } |
| 540 | icog->iconlist = list; |
| 541 | *nico = cnt; |
| 542 | } |
| 543 | |
| 544 | static void split_cursors(raw_data_t *rd, cursor_group_t *curg, int *ncur) |
| 545 | { |
| 546 | int cnt; |
| 547 | int i; |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 548 | cursor_t *cur; |
| 549 | cursor_t *list = NULL; |
| 550 | cursor_header_t *ch = (cursor_header_t *)rd->data; |
| 551 | int swap = 0; |
| 552 | |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 553 | if(ch->type == 2) |
| 554 | swap = 0; |
| 555 | else if(BYTESWAP_WORD(ch->type) == 2) |
| 556 | swap = 1; |
| 557 | else |
| 558 | yyerror("Cursor resource data has invalid type id %d", ch->type); |
| 559 | cnt = swap ? BYTESWAP_WORD(ch->count) : ch->count; |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 560 | for(i = 0; i < cnt; i++) |
| 561 | { |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 562 | cursor_dir_entry_t cde; |
| 563 | BITMAPINFOHEADER info; |
| 564 | memcpy(&cde, rd->data + sizeof(cursor_header_t) |
| 565 | + i*sizeof(cursor_dir_entry_t), sizeof(cde)); |
| 566 | |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 567 | cur = new_cursor(); |
| 568 | cur->id = alloc_cursor_id(curg->lvc.language); |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 569 | cur->lvc = curg->lvc; |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 570 | if(swap) |
| 571 | { |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 572 | cde.offset = BYTESWAP_DWORD(cde.offset); |
| 573 | cde.ressize= BYTESWAP_DWORD(cde.ressize); |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 574 | } |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 575 | if(cde.offset > rd->size |
| 576 | || cde.offset + cde.ressize > rd->size) |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 577 | yyerror("Cursor resource data corrupt"); |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 578 | cur->width = cde.width; |
| 579 | cur->height = cde.height; |
| 580 | cur->nclr = cde.nclr; |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 581 | memcpy(&info, rd->data + cde.offset, sizeof(info)); |
Warren Baird | 714bfd7 | 2002-05-04 18:26:34 +0000 | [diff] [blame] | 582 | convert_bitmap((char *)&info, 0); |
| 583 | memcpy(rd->data + cde.offset, &info, sizeof(info)); |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 584 | /* The bitmap is in destination byteorder. We want native for our structures */ |
| 585 | switch(byteorder) |
| 586 | { |
Patrik Stridvall | d303dad | 2000-05-12 21:39:55 +0000 | [diff] [blame] | 587 | #ifdef WORDS_BIGENDIAN |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 588 | case WRC_BO_LITTLE: |
| 589 | #else |
| 590 | case WRC_BO_BIG: |
| 591 | #endif |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 592 | cur->planes = BYTESWAP_WORD(info.biPlanes); |
| 593 | cur->bits = BYTESWAP_WORD(info.biBitCount); |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 594 | break; |
| 595 | default: |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 596 | cur->planes = info.biPlanes; |
| 597 | cur->bits = info.biBitCount; |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 598 | } |
| 599 | if(!win32 && (cur->planes != 1 || cur->bits != 1)) |
| 600 | yywarning("Win16 cursor contains colors"); |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 601 | cur->xhot = swap ? BYTESWAP_WORD(cde.xhot) : cde.xhot; |
| 602 | cur->yhot = swap ? BYTESWAP_WORD(cde.yhot) : cde.yhot; |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 603 | cur->data = new_raw_data(); |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 604 | copy_raw_data(cur->data, rd, cde.offset, cde.ressize); |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 605 | if(!list) |
| 606 | { |
| 607 | list = cur; |
| 608 | } |
| 609 | else |
| 610 | { |
| 611 | cur->next = list; |
| 612 | list->prev = cur; |
| 613 | list = cur; |
| 614 | } |
| 615 | } |
| 616 | curg->cursorlist = list; |
| 617 | *ncur = cnt; |
| 618 | } |
| 619 | |
| 620 | |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 621 | icon_group_t *new_icon_group(raw_data_t *rd, int *memopt) |
| 622 | { |
| 623 | icon_group_t *icog = (icon_group_t *)xmalloc(sizeof(icon_group_t)); |
| 624 | if(memopt) |
| 625 | { |
| 626 | icog->memopt = *memopt; |
| 627 | free(memopt); |
| 628 | } |
| 629 | else |
| 630 | icog->memopt = WRC_MO_MOVEABLE | WRC_MO_PURE | WRC_MO_DISCARDABLE; |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 631 | icog->lvc = rd->lvc; |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 632 | split_icons(rd, icog, &(icog->nicon)); |
| 633 | free(rd->data); |
| 634 | free(rd); |
| 635 | return icog; |
| 636 | } |
| 637 | |
| 638 | cursor_group_t *new_cursor_group(raw_data_t *rd, int *memopt) |
| 639 | { |
| 640 | cursor_group_t *curg = (cursor_group_t *)xmalloc(sizeof(cursor_group_t)); |
| 641 | if(memopt) |
| 642 | { |
| 643 | curg->memopt = *memopt; |
| 644 | free(memopt); |
| 645 | } |
| 646 | else |
| 647 | curg->memopt = WRC_MO_MOVEABLE | WRC_MO_PURE | WRC_MO_DISCARDABLE; |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 648 | curg->lvc = rd->lvc; |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 649 | split_cursors(rd, curg, &(curg->ncursor)); |
| 650 | free(rd->data); |
| 651 | free(rd); |
| 652 | return curg; |
| 653 | } |
| 654 | |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 655 | /* |
| 656 | * Animated cursors and icons |
| 657 | * |
| 658 | * The format of animated cursors and icons is yet another example |
| 659 | * of bad design by "The Company". The entire RIFF structure is |
| 660 | * flawed by design because it is inconsistent and single minded: |
| 661 | * - some tags have lengths attached, others don't. The use of these |
| 662 | * non-length tags is absolutely unclear; |
| 663 | * - the content of "icon" tags can be both icons and cursors; |
| 664 | * - tags lack proper alignment constraints. It seems that everything |
| 665 | * is 16bit aligned, but I could not find that in any docu. Just be |
| 666 | * prepared to eat anything; |
| 667 | * - there are no strict constraints on tag-nesting and the organization |
| 668 | * is highly illogical; |
| 669 | * |
| 670 | * Anyhow, here is the basic structure: |
| 671 | * "RIFF" { dword taglength } |
| 672 | * "ACON" // What does it do? |
| 673 | * "LIST" { dword taglength } |
| 674 | * "INFO" // And what does this do? |
| 675 | * "INAM" { dword taglength } // Icon/cursor name |
| 676 | * {inam data} |
| 677 | * "IART" { dword taglength } // The artist |
| 678 | * {iart data} |
| 679 | * "fram" // Is followed by "icon"s |
| 680 | * "icon" { dword taglength } // First frame |
| 681 | * { icon/cursor data } |
| 682 | * "icon" { dword taglength } // Second frame |
| 683 | * { icon/cursor data } |
| 684 | * ... // ... |
| 685 | * "anih" { dword taglength } // Header structure |
| 686 | * { aniheader_t structure } |
| 687 | * "rate" { dword taglength } // The rate for each frame |
| 688 | * { `steps' dwords } |
| 689 | * "seq " { dword taglength } // The frame blit-order |
| 690 | * { `steps' dwords } |
| 691 | * |
| 692 | * Tag length are bytelength without the header and length field (i.e. -8). |
| 693 | * The "LIST" tag may occur several times and may encapsulate different |
| 694 | * tags. The `steps' is the number of "icon" tags found (actually the |
| 695 | * number of steps specified in the aniheader_t structure). The "seq "uence |
Jon Griffiths | eb5bf7d | 2005-02-25 14:07:56 +0000 | [diff] [blame] | 696 | * tag can be omitted, in which case the sequence is equal to the sequence |
| 697 | * of "icon"s found in the file. Also "rate" may be omitted, in which case |
Bertho Stultiens | c107f71 | 2000-06-08 00:38:47 +0000 | [diff] [blame] | 698 | * the default from the aniheader_t structure is used. |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 699 | * |
Bertho Stultiens | c107f71 | 2000-06-08 00:38:47 +0000 | [diff] [blame] | 700 | * An animated cursor puts `.cur' formatted files into each "icon" tag, |
| 701 | * whereas animated icons contain `.ico' formatted files. |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 702 | * |
| 703 | * Note about the code: Yes, it can be shorter/compressed. Some tags can be |
| 704 | * dealt with in the same code. However, this version shows what is going on |
| 705 | * and is better debug-able. |
| 706 | */ |
| 707 | static const char riff[4] = "RIFF"; |
| 708 | static const char acon[4] = "ACON"; |
| 709 | static const char list[4] = "LIST"; |
| 710 | static const char info[4] = "INFO"; |
| 711 | static const char inam[4] = "INAM"; |
| 712 | static const char iart[4] = "IART"; |
| 713 | static const char fram[4] = "fram"; |
| 714 | static const char icon[4] = "icon"; |
| 715 | static const char anih[4] = "anih"; |
| 716 | static const char rate[4] = "rate"; |
| 717 | static const char seq[4] = "seq "; |
| 718 | |
Marcus Meissner | 1f787ca | 2004-07-06 19:26:28 +0000 | [diff] [blame] | 719 | #define SKIP_TAG(p,size) ((riff_tag_t *)(((char *)p) + (size))) |
| 720 | |
| 721 | #define NEXT_TAG(p) SKIP_TAG(p,(isswapped ? BYTESWAP_DWORD(p->size) : p->size) + sizeof(*p)) |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 722 | |
| 723 | static void handle_ani_icon(riff_tag_t *rtp, enum res_e type, int isswapped) |
| 724 | { |
| 725 | cursor_dir_entry_t *cdp; |
| 726 | cursor_header_t *chp; |
| 727 | int count; |
| 728 | int ctype; |
| 729 | int i; |
| 730 | static int once = 0; /* This will trigger only once per file! */ |
| 731 | const char *anistr = type == res_aniico ? "icon" : "cursor"; |
| 732 | /* Notes: |
| 733 | * Both cursor and icon directories are similar |
| 734 | * Both cursor and icon headers are similar |
| 735 | */ |
| 736 | |
| 737 | chp = (cursor_header_t *)(rtp+1); |
| 738 | cdp = (cursor_dir_entry_t *)(chp+1); |
| 739 | count = isswapped ? BYTESWAP_WORD(chp->count) : chp->count; |
| 740 | ctype = isswapped ? BYTESWAP_WORD(chp->type) : chp->type; |
| 741 | chp->reserved = BYTESWAP_WORD(chp->reserved); |
| 742 | chp->type = BYTESWAP_WORD(chp->type); |
| 743 | chp->count = BYTESWAP_WORD(chp->count); |
| 744 | |
| 745 | if(type == res_anicur && ctype != 2 && !once) |
| 746 | { |
| 747 | yywarning("Animated cursor contains invalid \"icon\" tag cursor-file (%d->%s)", |
| 748 | ctype, |
| 749 | ctype == 1 ? "icontype" : "?"); |
| 750 | once++; |
| 751 | } |
| 752 | else if(type == res_aniico && ctype != 1 && !once) |
| 753 | { |
| 754 | yywarning("Animated icon contains invalid \"icon\" tag icon-file (%d->%s)", |
| 755 | ctype, |
| 756 | ctype == 2 ? "cursortype" : "?"); |
| 757 | once++; |
| 758 | } |
| 759 | else if(ctype != 1 && ctype != 2 && !once) |
| 760 | { |
| 761 | yywarning("Animated %s contains invalid \"icon\" tag file-type (%d; neither icon nor cursor)", anistr, ctype); |
| 762 | once++; |
| 763 | } |
| 764 | |
| 765 | for(i = 0; i < count; i++) |
| 766 | { |
| 767 | DWORD ofs = isswapped ? BYTESWAP_DWORD(cdp[i].offset) : cdp[i].offset; |
| 768 | DWORD sze = isswapped ? BYTESWAP_DWORD(cdp[i].ressize) : cdp[i].ressize; |
| 769 | if(ofs > rtp->size || ofs+sze > rtp->size) |
| 770 | yyerror("Animated %s's data corrupt", anistr); |
| 771 | convert_bitmap((char *)chp + ofs, 0); |
| 772 | cdp[i].xhot = BYTESWAP_WORD(cdp->xhot); |
| 773 | cdp[i].yhot = BYTESWAP_WORD(cdp->yhot); |
| 774 | cdp[i].ressize = BYTESWAP_DWORD(cdp->ressize); |
| 775 | cdp[i].offset = BYTESWAP_DWORD(cdp->offset); |
| 776 | } |
| 777 | } |
| 778 | |
| 779 | static void handle_ani_list(riff_tag_t *lst, enum res_e type, int isswapped) |
| 780 | { |
| 781 | riff_tag_t *rtp = lst+1; /* Skip the "LIST" tag */ |
Vincent BĂ©ron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 782 | |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 783 | while((char *)rtp < (char *)lst + lst->size + sizeof(*lst)) |
| 784 | { |
| 785 | if(!memcmp(rtp->tag, info, sizeof(info))) |
| 786 | { |
Marcus Meissner | 1f787ca | 2004-07-06 19:26:28 +0000 | [diff] [blame] | 787 | rtp = SKIP_TAG(rtp,4); |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 788 | } |
| 789 | else if(!memcmp(rtp->tag, inam, sizeof(inam))) |
| 790 | { |
| 791 | /* Ignore the icon/cursor name; its a string */ |
| 792 | rtp = NEXT_TAG(rtp); |
| 793 | } |
| 794 | else if(!memcmp(rtp->tag, iart, sizeof(iart))) |
| 795 | { |
| 796 | /* Ignore the author's name; its a string */ |
| 797 | rtp = NEXT_TAG(rtp); |
| 798 | } |
| 799 | else if(!memcmp(rtp->tag, fram, sizeof(fram))) |
| 800 | { |
| 801 | /* This should be followed by "icon"s, but we |
| 802 | * simply ignore this because it is pure |
| 803 | * non-information. |
| 804 | */ |
Marcus Meissner | 1f787ca | 2004-07-06 19:26:28 +0000 | [diff] [blame] | 805 | rtp = SKIP_TAG(rtp,4); |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 806 | } |
| 807 | else if(!memcmp(rtp->tag, icon, sizeof(icon))) |
| 808 | { |
| 809 | handle_ani_icon(rtp, type, isswapped); |
| 810 | rtp = NEXT_TAG(rtp); |
| 811 | } |
| 812 | else |
| 813 | internal_error(__FILE__, __LINE__, "Unknown tag \"%c%c%c%c\" in RIFF file", |
| 814 | isprint(rtp->tag[0]) ? rtp->tag[0] : '.', |
| 815 | isprint(rtp->tag[1]) ? rtp->tag[1] : '.', |
| 816 | isprint(rtp->tag[2]) ? rtp->tag[2] : '.', |
| 817 | isprint(rtp->tag[3]) ? rtp->tag[3] : '.'); |
| 818 | |
Alexandre Julliard | 261e376 | 2005-09-12 15:14:06 +0000 | [diff] [blame] | 819 | if((UINT_PTR)rtp & 1) |
Marcus Meissner | 1f787ca | 2004-07-06 19:26:28 +0000 | [diff] [blame] | 820 | rtp = SKIP_TAG(rtp,1); |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 821 | } |
| 822 | } |
| 823 | |
| 824 | ani_curico_t *new_ani_curico(enum res_e type, raw_data_t *rd, int *memopt) |
| 825 | { |
| 826 | ani_curico_t *ani = (ani_curico_t *)xmalloc(sizeof(ani_curico_t)); |
| 827 | riff_tag_t *rtp; |
| 828 | int isswapped = 0; |
| 829 | int doswap; |
| 830 | const char *anistr = type == res_aniico ? "icon" : "cursor"; |
| 831 | |
| 832 | assert(!memcmp(rd->data, riff, sizeof(riff))); |
| 833 | assert(type == res_anicur || type == res_aniico); |
| 834 | |
| 835 | rtp = (riff_tag_t *)rd->data; |
| 836 | |
| 837 | if(BYTESWAP_DWORD(rtp->size) + 2*sizeof(DWORD) == rd->size) |
| 838 | isswapped = 1; |
| 839 | else if(rtp->size + 2*sizeof(DWORD) == rd->size) |
| 840 | isswapped = 0; |
| 841 | else |
| 842 | yyerror("Animated %s has an invalid RIFF length", anistr); |
| 843 | |
| 844 | switch(byteorder) |
| 845 | { |
| 846 | #ifdef WORDS_BIGENDIAN |
| 847 | case WRC_BO_LITTLE: |
| 848 | #else |
| 849 | case WRC_BO_BIG: |
| 850 | #endif |
| 851 | doswap = !isswapped; |
| 852 | break; |
| 853 | default: |
| 854 | doswap = isswapped; |
| 855 | } |
| 856 | |
| 857 | /* |
| 858 | * When to swap what: |
| 859 | * isswapped | doswap | |
| 860 | * ----------+--------+--------------------------------- |
| 861 | * 0 | 0 | read native; don't convert |
| 862 | * 1 | 0 | read swapped size; don't convert |
| 863 | * 0 | 1 | read native; convert |
| 864 | * 1 | 1 | read swapped size; convert |
| 865 | * Reading swapped size if necessary to calculate in native |
| 866 | * format. E.g. a little-endian source on a big-endian |
| 867 | * processor. |
| 868 | */ |
| 869 | if(doswap) |
| 870 | { |
| 871 | /* We only go through the RIFF file if we need to swap |
| 872 | * bytes in words/dwords. Else we couldn't care less |
| 873 | * what the file contains. This is consistent with |
Francois Gouget | 93416cd | 2005-03-23 13:15:18 +0000 | [diff] [blame] | 874 | * MS' rc.exe, which doesn't complain at all, even though |
| 875 | * the file format might not be entirely correct. |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 876 | */ |
| 877 | rtp++; /* Skip the "RIFF" tag */ |
| 878 | |
| 879 | while((char *)rtp < (char *)rd->data + rd->size) |
| 880 | { |
| 881 | if(!memcmp(rtp->tag, acon, sizeof(acon))) |
| 882 | { |
Marcus Meissner | 1f787ca | 2004-07-06 19:26:28 +0000 | [diff] [blame] | 883 | rtp = SKIP_TAG(rtp,4); |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 884 | } |
| 885 | else if(!memcmp(rtp->tag, list, sizeof(list))) |
| 886 | { |
| 887 | handle_ani_list(rtp, type, isswapped); |
| 888 | rtp = NEXT_TAG(rtp); |
| 889 | } |
| 890 | else if(!memcmp(rtp->tag, anih, sizeof(anih))) |
| 891 | { |
| 892 | aniheader_t *ahp = (aniheader_t *)((char *)(rtp+1)); |
| 893 | ahp->structsize = BYTESWAP_DWORD(ahp->structsize); |
| 894 | ahp->frames = BYTESWAP_DWORD(ahp->frames); |
| 895 | ahp->steps = BYTESWAP_DWORD(ahp->steps); |
| 896 | ahp->cx = BYTESWAP_DWORD(ahp->cx); |
| 897 | ahp->cy = BYTESWAP_DWORD(ahp->cy); |
| 898 | ahp->bitcount = BYTESWAP_DWORD(ahp->bitcount); |
| 899 | ahp->planes = BYTESWAP_DWORD(ahp->planes); |
| 900 | ahp->rate = BYTESWAP_DWORD(ahp->rate); |
| 901 | ahp->flags = BYTESWAP_DWORD(ahp->flags); |
| 902 | rtp = NEXT_TAG(rtp); |
| 903 | } |
| 904 | else if(!memcmp(rtp->tag, rate, sizeof(rate))) |
| 905 | { |
| 906 | int cnt = rtp->size / sizeof(DWORD); |
| 907 | DWORD *dwp = (DWORD *)(rtp+1); |
| 908 | int i; |
| 909 | for(i = 0; i < cnt; i++) |
| 910 | dwp[i] = BYTESWAP_DWORD(dwp[i]); |
| 911 | rtp = NEXT_TAG(rtp); |
| 912 | } |
| 913 | else if(!memcmp(rtp->tag, seq, sizeof(seq))) |
| 914 | { |
| 915 | int cnt = rtp->size / sizeof(DWORD); |
| 916 | DWORD *dwp = (DWORD *)(rtp+1); |
| 917 | int i; |
| 918 | for(i = 0; i < cnt; i++) |
| 919 | dwp[i] = BYTESWAP_DWORD(dwp[i]); |
| 920 | rtp = NEXT_TAG(rtp); |
| 921 | } |
| 922 | else |
| 923 | internal_error(__FILE__, __LINE__, "Unknown tag \"%c%c%c%c\" in RIFF file", |
| 924 | isprint(rtp->tag[0]) ? rtp->tag[0] : '.', |
| 925 | isprint(rtp->tag[1]) ? rtp->tag[1] : '.', |
| 926 | isprint(rtp->tag[2]) ? rtp->tag[2] : '.', |
| 927 | isprint(rtp->tag[3]) ? rtp->tag[3] : '.'); |
| 928 | |
Alexandre Julliard | 261e376 | 2005-09-12 15:14:06 +0000 | [diff] [blame] | 929 | if((UINT_PTR)rtp & 1) |
Marcus Meissner | 1f787ca | 2004-07-06 19:26:28 +0000 | [diff] [blame] | 930 | rtp = SKIP_TAG(rtp,1); |
Bertho Stultiens | 997e0d7 | 2000-05-23 01:18:38 +0000 | [diff] [blame] | 931 | } |
| 932 | |
| 933 | /* We must end correctly here */ |
| 934 | if((char *)rtp != (char *)rd->data + rd->size) |
| 935 | yyerror("Animated %s contains invalid field size(s)", anistr); |
| 936 | } |
| 937 | |
| 938 | ani->data = rd; |
| 939 | if(memopt) |
| 940 | { |
| 941 | ani->memopt = *memopt; |
| 942 | free(memopt); |
| 943 | } |
| 944 | else |
| 945 | ani->memopt = WRC_MO_MOVEABLE | WRC_MO_DISCARDABLE; |
| 946 | return ani; |
| 947 | } |
| 948 | #undef NEXT_TAG |
| 949 | |
| 950 | /* Bitmaps */ |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 951 | bitmap_t *new_bitmap(raw_data_t *rd, int *memopt) |
| 952 | { |
| 953 | bitmap_t *bmp = (bitmap_t *)xmalloc(sizeof(bitmap_t)); |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 954 | |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 955 | bmp->data = rd; |
| 956 | if(memopt) |
| 957 | { |
| 958 | bmp->memopt = *memopt; |
| 959 | free(memopt); |
| 960 | } |
| 961 | else |
| 962 | bmp->memopt = WRC_MO_MOVEABLE | WRC_MO_PURE; |
Bertho Stultiens | 3d455c9 | 2000-05-09 22:35:10 +0000 | [diff] [blame] | 963 | rd->size -= convert_bitmap(rd->data, rd->size); |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 964 | return bmp; |
| 965 | } |
| 966 | |
| 967 | ver_words_t *new_ver_words(int i) |
| 968 | { |
| 969 | ver_words_t *w = (ver_words_t *)xmalloc(sizeof(ver_words_t)); |
| 970 | w->words = (WORD *)xmalloc(sizeof(WORD)); |
| 971 | w->words[0] = (WORD)i; |
| 972 | w->nwords = 1; |
| 973 | return w; |
| 974 | } |
| 975 | |
| 976 | ver_words_t *add_ver_words(ver_words_t *w, int i) |
| 977 | { |
| 978 | w->words = (WORD *)xrealloc(w->words, (w->nwords+1) * sizeof(WORD)); |
| 979 | w->words[w->nwords] = (WORD)i; |
| 980 | w->nwords++; |
| 981 | return w; |
| 982 | } |
| 983 | |
Bertho Stultiens | 661a940 | 2000-06-13 03:37:56 +0000 | [diff] [blame] | 984 | #define MSGTAB_BAD_PTR(p, b, l, r) (((l) - ((char *)(p) - (char *)(b))) > (r)) |
Bertho Stultiens | c107f71 | 2000-06-08 00:38:47 +0000 | [diff] [blame] | 985 | messagetable_t *new_messagetable(raw_data_t *rd, int *memopt) |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 986 | { |
| 987 | messagetable_t *msg = (messagetable_t *)xmalloc(sizeof(messagetable_t)); |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 988 | msgtab_block_t *mbp; |
Bertho Stultiens | c107f71 | 2000-06-08 00:38:47 +0000 | [diff] [blame] | 989 | DWORD nblk; |
| 990 | DWORD i; |
| 991 | WORD lo; |
| 992 | WORD hi; |
| 993 | |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 994 | msg->data = rd; |
Bertho Stultiens | 661a940 | 2000-06-13 03:37:56 +0000 | [diff] [blame] | 995 | if(memopt) |
| 996 | { |
| 997 | msg->memopt = *memopt; |
| 998 | free(memopt); |
| 999 | } |
| 1000 | else |
| 1001 | msg->memopt = WRC_MO_MOVEABLE | WRC_MO_PURE; |
| 1002 | |
| 1003 | if(rd->size < sizeof(DWORD)) |
| 1004 | yyerror("Invalid messagetable, size too small"); |
| 1005 | |
Bertho Stultiens | c107f71 | 2000-06-08 00:38:47 +0000 | [diff] [blame] | 1006 | nblk = *(DWORD *)rd->data; |
| 1007 | lo = WRC_LOWORD(nblk); |
| 1008 | hi = WRC_HIWORD(nblk); |
| 1009 | |
| 1010 | /* FIXME: |
| 1011 | * This test will fail for all n*2^16 blocks in the messagetable. |
| 1012 | * However, no sane person would want to have so many blocks |
| 1013 | * and have a table of megabytes attached. |
| 1014 | * So, I will assume that we have less than 2^16 blocks in the table |
| 1015 | * and all will just work out fine. Otherwise, we would need to test |
| 1016 | * the ID, offset and length (and flag) fields to be very sure. |
| 1017 | */ |
| 1018 | if(hi && lo) |
| 1019 | internal_error(__FILE__, __LINE__, "Messagetable contains more than 65535 blocks; cannot determine endian"); |
| 1020 | if(!hi && !lo) |
| 1021 | yyerror("Invalid messagetable block count 0"); |
| 1022 | |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 1023 | if(!hi && lo) /* Messagetable byteorder == native byteorder */ |
Bertho Stultiens | c107f71 | 2000-06-08 00:38:47 +0000 | [diff] [blame] | 1024 | { |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 1025 | #ifdef WORDS_BIGENDIAN |
| 1026 | if(byteorder != WRC_BO_LITTLE) goto out; |
| 1027 | #else |
| 1028 | if(byteorder != WRC_BO_BIG) goto out; |
| 1029 | #endif |
| 1030 | /* Resource byteorder != native byteorder */ |
| 1031 | |
| 1032 | mbp = (msgtab_block_t *)&(((DWORD *)rd->data)[1]); |
| 1033 | if(MSGTAB_BAD_PTR(mbp, rd->data, rd->size, nblk * sizeof(*mbp))) |
| 1034 | yyerror("Messagetable's blocks are outside of defined data"); |
| 1035 | for(i = 0; i < nblk; i++) |
| 1036 | { |
| 1037 | msgtab_entry_t *mep, *next_mep; |
| 1038 | DWORD id; |
| 1039 | |
| 1040 | mep = (msgtab_entry_t *)(((char *)rd->data) + mbp[i].offset); |
| 1041 | |
| 1042 | for(id = mbp[i].idlo; id <= mbp[i].idhi; id++) |
| 1043 | { |
| 1044 | if(MSGTAB_BAD_PTR(mep, rd->data, rd->size, mep->length)) |
| 1045 | yyerror("Messagetable's data for block %d, ID 0x%08lx is outside of defined data", (int)i, id); |
| 1046 | if(mep->flags == 1) /* Docu says 'flags == 0x0001' for unicode */ |
| 1047 | { |
| 1048 | WORD *wp = (WORD *)&mep[1]; |
| 1049 | int l = mep->length/2 - 2; /* Length included header */ |
| 1050 | int n; |
| 1051 | |
| 1052 | if(mep->length & 1) |
| 1053 | yyerror("Message 0x%08lx is unicode (block %d), but has odd length (%d)", id, (int)i, mep->length); |
| 1054 | for(n = 0; n < l; n++) |
| 1055 | wp[n] = BYTESWAP_WORD(wp[n]); |
Vincent BĂ©ron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 1056 | |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 1057 | } |
| 1058 | next_mep = (msgtab_entry_t *)(((char *)mep) + mep->length); |
| 1059 | mep->length = BYTESWAP_WORD(mep->length); |
| 1060 | mep->flags = BYTESWAP_WORD(mep->flags); |
| 1061 | mep = next_mep; |
| 1062 | } |
| 1063 | |
| 1064 | mbp[i].idlo = BYTESWAP_DWORD(mbp[i].idlo); |
| 1065 | mbp[i].idhi = BYTESWAP_DWORD(mbp[i].idhi); |
| 1066 | mbp[i].offset = BYTESWAP_DWORD(mbp[i].offset); |
| 1067 | } |
| 1068 | } |
| 1069 | if(hi && !lo) /* Messagetable byteorder != native byteorder */ |
| 1070 | { |
| 1071 | #ifdef WORDS_BIGENDIAN |
| 1072 | if(byteorder == WRC_BO_LITTLE) goto out; |
| 1073 | #else |
| 1074 | if(byteorder == WRC_BO_BIG) goto out; |
| 1075 | #endif |
| 1076 | /* Resource byteorder == native byteorder */ |
| 1077 | |
| 1078 | mbp = (msgtab_block_t *)&(((DWORD *)rd->data)[1]); |
Bertho Stultiens | c107f71 | 2000-06-08 00:38:47 +0000 | [diff] [blame] | 1079 | nblk = BYTESWAP_DWORD(nblk); |
Bertho Stultiens | 661a940 | 2000-06-13 03:37:56 +0000 | [diff] [blame] | 1080 | if(MSGTAB_BAD_PTR(mbp, rd->data, rd->size, nblk * sizeof(*mbp))) |
| 1081 | yyerror("Messagetable's blocks are outside of defined data"); |
Bertho Stultiens | c107f71 | 2000-06-08 00:38:47 +0000 | [diff] [blame] | 1082 | for(i = 0; i < nblk; i++) |
| 1083 | { |
| 1084 | msgtab_entry_t *mep; |
| 1085 | DWORD id; |
| 1086 | |
| 1087 | mbp[i].idlo = BYTESWAP_DWORD(mbp[i].idlo); |
| 1088 | mbp[i].idhi = BYTESWAP_DWORD(mbp[i].idhi); |
| 1089 | mbp[i].offset = BYTESWAP_DWORD(mbp[i].offset); |
| 1090 | mep = (msgtab_entry_t *)(((char *)rd->data) + mbp[i].offset); |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 1091 | |
Bertho Stultiens | c107f71 | 2000-06-08 00:38:47 +0000 | [diff] [blame] | 1092 | for(id = mbp[i].idlo; id <= mbp[i].idhi; id++) |
| 1093 | { |
| 1094 | mep->length = BYTESWAP_WORD(mep->length); |
| 1095 | mep->flags = BYTESWAP_WORD(mep->flags); |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 1096 | |
Bertho Stultiens | 661a940 | 2000-06-13 03:37:56 +0000 | [diff] [blame] | 1097 | if(MSGTAB_BAD_PTR(mep, rd->data, rd->size, mep->length)) |
| 1098 | yyerror("Messagetable's data for block %d, ID 0x%08lx is outside of defined data", (int)i, id); |
| 1099 | if(mep->flags == 1) /* Docu says 'flags == 0x0001' for unicode */ |
Bertho Stultiens | c107f71 | 2000-06-08 00:38:47 +0000 | [diff] [blame] | 1100 | { |
| 1101 | WORD *wp = (WORD *)&mep[1]; |
| 1102 | int l = mep->length/2 - 2; /* Length included header */ |
| 1103 | int n; |
| 1104 | |
| 1105 | if(mep->length & 1) |
| 1106 | yyerror("Message 0x%08lx is unicode (block %d), but has odd length (%d)", id, (int)i, mep->length); |
| 1107 | for(n = 0; n < l; n++) |
| 1108 | wp[n] = BYTESWAP_WORD(wp[n]); |
Vincent BĂ©ron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 1109 | |
Bertho Stultiens | c107f71 | 2000-06-08 00:38:47 +0000 | [diff] [blame] | 1110 | } |
| 1111 | mep = (msgtab_entry_t *)(((char *)mep) + mep->length); |
| 1112 | } |
| 1113 | } |
| 1114 | } |
| 1115 | |
Ulrich Weigand | b5533c1 | 2001-01-02 20:46:28 +0000 | [diff] [blame] | 1116 | out: |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 1117 | return msg; |
| 1118 | } |
Bertho Stultiens | 661a940 | 2000-06-13 03:37:56 +0000 | [diff] [blame] | 1119 | #undef MSGTAB_BAD_PTR |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 1120 | |
Joerg Mayer | abe635c | 2000-11-11 00:38:37 +0000 | [diff] [blame] | 1121 | void copy_raw_data(raw_data_t *dst, raw_data_t *src, unsigned int offs, int len) |
Alexandre Julliard | a845b88 | 1998-06-01 10:44:35 +0000 | [diff] [blame] | 1122 | { |
| 1123 | assert(offs <= src->size); |
| 1124 | assert(offs + len <= src->size); |
| 1125 | if(!dst->data) |
| 1126 | { |
| 1127 | dst->data = (char *)xmalloc(len); |
| 1128 | dst->size = 0; |
| 1129 | } |
| 1130 | else |
| 1131 | dst->data = (char *)xrealloc(dst->data, dst->size + len); |
| 1132 | /* dst->size holds the offset to copy to */ |
| 1133 | memcpy(dst->data + dst->size, src->data + offs, len); |
| 1134 | dst->size += len; |
| 1135 | } |
| 1136 | |
| 1137 | int *new_int(int i) |
| 1138 | { |
| 1139 | int *ip = (int *)xmalloc(sizeof(int)); |
| 1140 | *ip = i; |
| 1141 | return ip; |
| 1142 | } |
| 1143 | |
| 1144 | stringtable_t *new_stringtable(lvc_t *lvc) |
| 1145 | { |
| 1146 | stringtable_t *stt = (stringtable_t *)xmalloc(sizeof(stringtable_t)); |
| 1147 | |
| 1148 | if(lvc) |
| 1149 | stt->lvc = *lvc; |
| 1150 | |
| 1151 | return stt; |
| 1152 | } |
| 1153 | |
Alexandre Julliard | 638f169 | 1999-01-17 16:32:32 +0000 | [diff] [blame] | 1154 | toolbar_t *new_toolbar(int button_width, int button_height, toolbar_item_t *items, int nitems) |
| 1155 | { |
| 1156 | toolbar_t *tb = (toolbar_t *)xmalloc(sizeof(toolbar_t)); |
| 1157 | tb->button_width = button_width; |
| 1158 | tb->button_height = button_height; |
| 1159 | tb->nitems = nitems; |
| 1160 | tb->items = items; |
| 1161 | return tb; |
| 1162 | } |
Bertho Stultiens | 62451da | 1999-07-20 14:54:54 +0000 | [diff] [blame] | 1163 | |
| 1164 | dlginit_t *new_dlginit(raw_data_t *rd, int *memopt) |
| 1165 | { |
| 1166 | dlginit_t *di = (dlginit_t *)xmalloc(sizeof(dlginit_t)); |
| 1167 | di->data = rd; |
| 1168 | if(memopt) |
| 1169 | { |
| 1170 | di->memopt = *memopt; |
| 1171 | free(memopt); |
| 1172 | } |
| 1173 | else |
| 1174 | di->memopt = WRC_MO_MOVEABLE | WRC_MO_PURE | WRC_MO_DISCARDABLE; |
| 1175 | |
| 1176 | return di; |
| 1177 | } |
| 1178 | |
Juergen Schmied | 1ce88e9 | 1999-11-07 21:08:57 +0000 | [diff] [blame] | 1179 | style_pair_t *new_style_pair(style_t *style, style_t *exstyle) |
Bertho Stultiens | 62451da | 1999-07-20 14:54:54 +0000 | [diff] [blame] | 1180 | { |
| 1181 | style_pair_t *sp = (style_pair_t *)xmalloc(sizeof(style_pair_t)); |
| 1182 | sp->style = style; |
| 1183 | sp->exstyle = exstyle; |
| 1184 | return sp; |
| 1185 | } |
Juergen Schmied | 1ce88e9 | 1999-11-07 21:08:57 +0000 | [diff] [blame] | 1186 | |
| 1187 | style_t *new_style(DWORD or_mask, DWORD and_mask) |
| 1188 | { |
| 1189 | style_t *st = (style_t *)xmalloc(sizeof(style_t)); |
| 1190 | st->or_mask = or_mask; |
| 1191 | st->and_mask = and_mask; |
| 1192 | return st; |
| 1193 | } |