From: Holger Schemel Date: Sun, 21 Jan 2007 02:03:23 +0000 (+0100) Subject: rnd-20070121-2-src X-Git-Tag: 3.2.4^2~106 X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=commitdiff_plain;h=cb8b58732432cc7f3163446dedd54c63126b23c3 rnd-20070121-2-src --- diff --git a/ChangeLog b/ChangeLog index b16fcf9c..1412fe15 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,19 +1,24 @@ 2007-01-20 * fixed small drawing bug in X11FadeRectangle - * added EM/DC style exits for newly supported Diamond Caves II levels - * added white key and gate for newly supported Diamond Caves II levels - * added fake (no key) gate for newly supported Diamond Caves II levels + * added new elements for newly supported Diamond Caves II levels: + - EM/DC style exits that disappear after passing + - white key and gate (one white key needed for each white gate) + - fake gate (there is no key to open/pass this kind of gate!) + - extended magic wall which also handles pearls and crystals + - fast quicksand 2007-01-14 * changed maximum value for endless loop detection to a higher value (some levels really used very deep recursion without being endless) 2007-01-13 - * added growing steel walls for newly supported Diamond Caves II levels - * added snappable land mine for newly supported Diamond Caves II levels + * added new elements for newly supported Diamond Caves II levels: + - growing steel walls + - snappable land mine 2007-01-08 - * added steel text elements for newly supported Diamond Caves II levels + * added new elements for newly supported Diamond Caves II levels: + - steel text elements 2007-01-06 * added level file loader for native Diamond Caves II levels diff --git a/src/conf_e2g.c b/src/conf_e2g.c index 25d04111..ca1c9051 100644 --- a/src/conf_e2g.c +++ b/src/conf_e2g.c @@ -1001,6 +1001,42 @@ element_to_graphic[] = EL_MAGIC_WALL_DEAD, -1, -1, FALSE, IMG_MAGIC_WALL_DEAD }, + { + EL_DC_MAGIC_WALL, -1, -1, FALSE, + IMG_DC_MAGIC_WALL + }, + { + EL_DC_MAGIC_WALL_ACTIVE, -1, -1, FALSE, + IMG_DC_MAGIC_WALL_ACTIVE + }, + { + EL_DC_MAGIC_WALL, ACTION_ACTIVE, -1, FALSE, + IMG_DC_MAGIC_WALL_ACTIVE + }, + { + EL_DC_MAGIC_WALL_FILLING, -1, -1, FALSE, + IMG_DC_MAGIC_WALL_FILLING + }, + { + EL_DC_MAGIC_WALL, ACTION_FILLING, -1, FALSE, + IMG_DC_MAGIC_WALL_FILLING + }, + { + EL_DC_MAGIC_WALL_FULL, -1, -1, FALSE, + IMG_DC_MAGIC_WALL_FULL + }, + { + EL_DC_MAGIC_WALL_EMPTYING, -1, -1, FALSE, + IMG_DC_MAGIC_WALL_EMPTYING + }, + { + EL_DC_MAGIC_WALL, ACTION_EMPTYING, -1, FALSE, + IMG_DC_MAGIC_WALL_EMPTYING + }, + { + EL_DC_MAGIC_WALL_DEAD, -1, -1, FALSE, + IMG_DC_MAGIC_WALL_DEAD + }, { EL_QUICKSAND_EMPTY, -1, -1, FALSE, IMG_QUICKSAND_EMPTY @@ -1017,6 +1053,22 @@ element_to_graphic[] = EL_QUICKSAND_EMPTYING, -1, -1, FALSE, IMG_QUICKSAND_EMPTYING }, + { + EL_QUICKSAND_FAST_EMPTY, -1, -1, FALSE, + IMG_QUICKSAND_FAST_EMPTY + }, + { + EL_QUICKSAND_FAST_FILLING, -1, -1, FALSE, + IMG_QUICKSAND_FAST_FILLING + }, + { + EL_QUICKSAND_FAST_FULL, -1, -1, FALSE, + IMG_QUICKSAND_FAST_FULL + }, + { + EL_QUICKSAND_FAST_EMPTYING, -1, -1, FALSE, + IMG_QUICKSAND_FAST_EMPTYING + }, { EL_ACID_POOL_TOPLEFT, -1, -1, FALSE, IMG_ACID_POOL_TOPLEFT diff --git a/src/conf_e2s.c b/src/conf_e2s.c index c86f115e..bdcb6ac8 100644 --- a/src/conf_e2s.c +++ b/src/conf_e2s.c @@ -376,6 +376,26 @@ element_to_sound[] = EL_MAGIC_WALL, FALSE, ACTION_FILLING, SND_MAGIC_WALL_FILLING }, + { + EL_DC_MAGIC_WALL, FALSE, ACTION_ACTIVATING, + SND_DC_MAGIC_WALL_ACTIVATING + }, + { + EL_DC_MAGIC_WALL_ACTIVE, FALSE, -1, + SND_DC_MAGIC_WALL_ACTIVE + }, + { + EL_DC_MAGIC_WALL, FALSE, ACTION_ACTIVE, + SND_DC_MAGIC_WALL_ACTIVE + }, + { + EL_DC_MAGIC_WALL_FILLING, FALSE, -1, + SND_DC_MAGIC_WALL_FILLING + }, + { + EL_DC_MAGIC_WALL, FALSE, ACTION_FILLING, + SND_DC_MAGIC_WALL_FILLING + }, { EL_AMOEBA_DEAD, TRUE, ACTION_WAITING, SND_CLASS_AMOEBA_WAITING diff --git a/src/conf_esg.c b/src/conf_esg.c index 6ed2a57c..9b97510d 100644 --- a/src/conf_esg.c +++ b/src/conf_esg.c @@ -175,6 +175,10 @@ element_to_special_graphic[] = EL_QUICKSAND_FULL, GFX_SPECIAL_ARG_EDITOR, IMG_QUICKSAND_FULL_EDITOR }, + { + EL_QUICKSAND_FAST_FULL, GFX_SPECIAL_ARG_EDITOR, + IMG_QUICKSAND_FAST_FULL_EDITOR + }, { EL_AMOEBA_WET, GFX_SPECIAL_ARG_EDITOR, IMG_AMOEBA_WET_EDITOR diff --git a/src/conf_gfx.c b/src/conf_gfx.c index 542c5e5a..a4946dc9 100644 --- a/src/conf_gfx.c +++ b/src/conf_gfx.c @@ -1303,6 +1303,43 @@ struct ConfigInfo image_config[] = { "magic_wall_dead.ypos", "8" }, { "magic_wall_dead.frames", "1" }, + { "dc_magic_wall", "RocksDC2.pcx" }, + { "dc_magic_wall.xpos", "0" }, + { "dc_magic_wall.ypos", "3" }, + { "dc_magic_wall.frames", "1" }, + { "dc_magic_wall.active", "RocksDC2.pcx" }, + { "dc_magic_wall.active.xpos", "0" }, + { "dc_magic_wall.active.ypos", "3" }, + { "dc_magic_wall.active.frames", "4" }, + { "dc_magic_wall.active.anim_mode", "reverse" }, + { "dc_magic_wall.active.delay", "4" }, + { "dc_magic_wall.active.global_sync", "true" }, + { "dc_magic_wall.filling", "RocksDC2.pcx" }, + { "dc_magic_wall.filling.xpos", "0" }, + { "dc_magic_wall.filling.ypos", "3" }, + { "dc_magic_wall.filling.frames", "4" }, + { "dc_magic_wall.filling.anim_mode", "reverse" }, + { "dc_magic_wall.filling.delay", "4" }, + { "dc_magic_wall.filling.global_sync", "true" }, + { "dc_magic_wall_full", "RocksDC2.pcx" }, + { "dc_magic_wall_full.xpos", "0" }, + { "dc_magic_wall_full.ypos", "3" }, + { "dc_magic_wall_full.frames", "4" }, + { "dc_magic_wall_full.anim_mode", "reverse" }, + { "dc_magic_wall_full.delay", "4" }, + { "dc_magic_wall_full.global_sync", "true" }, + { "dc_magic_wall.emptying", "RocksDC2.pcx" }, + { "dc_magic_wall.emptying.xpos", "0" }, + { "dc_magic_wall.emptying.ypos", "3" }, + { "dc_magic_wall.emptying.frames", "4" }, + { "dc_magic_wall.emptying.anim_mode", "reverse" }, + { "dc_magic_wall.emptying.delay", "4" }, + { "dc_magic_wall.emptying.global_sync", "true" }, + { "dc_magic_wall_dead", "RocksDC2.pcx" }, + { "dc_magic_wall_dead.xpos", "0" }, + { "dc_magic_wall_dead.ypos", "3" }, + { "dc_magic_wall_dead.frames", "1" }, + { "quicksand_empty", "RocksElements.pcx" }, { "quicksand_empty.xpos", "2" }, { "quicksand_empty.ypos", "0" }, @@ -1323,6 +1360,26 @@ struct ConfigInfo image_config[] = { "quicksand.emptying.ypos", "0" }, { "quicksand.emptying.frames", "1" }, + { "quicksand_fast_empty", "RocksDC2.pcx" }, + { "quicksand_fast_empty.xpos", "4" }, + { "quicksand_fast_empty.ypos", "3" }, + { "quicksand_fast_empty.frames", "1" }, + { "quicksand_fast.filling", "RocksDC2.pcx" }, + { "quicksand_fast.filling.xpos", "4" }, + { "quicksand_fast.filling.ypos", "3" }, + { "quicksand_fast.filling.frames", "1" }, + { "quicksand_fast_full", "RocksDC2.pcx" }, + { "quicksand_fast_full.xpos", "4" }, + { "quicksand_fast_full.ypos", "3" }, + { "quicksand_fast_full.frames", "1" }, + { "quicksand_fast_full.EDITOR", "RocksDC2.pcx" }, + { "quicksand_fast_full.EDITOR.xpos", "5" }, + { "quicksand_fast_full.EDITOR.ypos", "3" }, + { "quicksand_fast.emptying", "RocksDC2.pcx" }, + { "quicksand_fast.emptying.xpos", "4" }, + { "quicksand_fast.emptying.ypos", "3" }, + { "quicksand_fast.emptying.frames", "1" }, + { "acid_pool_topleft", "RocksElements.pcx" }, { "acid_pool_topleft.xpos", "0" }, { "acid_pool_topleft.ypos", "1" }, diff --git a/src/conf_gfx.h b/src/conf_gfx.h index e538b278..0f47add4 100644 --- a/src/conf_gfx.h +++ b/src/conf_gfx.h @@ -263,1484 +263,1495 @@ #define IMG_MAGIC_WALL_FULL 242 #define IMG_MAGIC_WALL_EMPTYING 243 #define IMG_MAGIC_WALL_DEAD 244 -#define IMG_QUICKSAND_EMPTY 245 -#define IMG_QUICKSAND_FILLING 246 -#define IMG_QUICKSAND_FULL 247 -#define IMG_QUICKSAND_FULL_EDITOR 248 -#define IMG_QUICKSAND_EMPTYING 249 -#define IMG_ACID_POOL_TOPLEFT 250 -#define IMG_ACID_POOL_TOPRIGHT 251 -#define IMG_ACID_POOL_BOTTOMLEFT 252 -#define IMG_ACID_POOL_BOTTOM 253 -#define IMG_ACID_POOL_BOTTOMRIGHT 254 -#define IMG_ACID 255 -#define IMG_ACID_SPLASH_LEFT 256 -#define IMG_ACID_SPLASH_RIGHT 257 -#define IMG_AMOEBA_DROP 258 -#define IMG_AMOEBA_GROWING 259 -#define IMG_AMOEBA_SHRINKING 260 -#define IMG_AMOEBA_WET 261 -#define IMG_AMOEBA_WET_EDITOR 262 -#define IMG_AMOEBA_DROPPING 263 -#define IMG_AMOEBA_DRY 264 -#define IMG_AMOEBA_FULL 265 -#define IMG_AMOEBA_FULL_EDITOR 266 -#define IMG_AMOEBA_DEAD 267 -#define IMG_AMOEBA_DEAD_EDITOR 268 -#define IMG_EM_KEY_1 269 -#define IMG_EM_KEY_2 270 -#define IMG_EM_KEY_3 271 -#define IMG_EM_KEY_4 272 -#define IMG_DC_KEY_WHITE 273 -#define IMG_EM_GATE_1 274 -#define IMG_EM_GATE_2 275 -#define IMG_EM_GATE_3 276 -#define IMG_EM_GATE_4 277 -#define IMG_DC_GATE_WHITE 278 -#define IMG_EM_GATE_1_GRAY 279 -#define IMG_EM_GATE_1_GRAY_EDITOR 280 -#define IMG_EM_GATE_1_GRAY_ACTIVE 281 -#define IMG_EM_GATE_2_GRAY 282 -#define IMG_EM_GATE_2_GRAY_EDITOR 283 -#define IMG_EM_GATE_2_GRAY_ACTIVE 284 -#define IMG_EM_GATE_3_GRAY 285 -#define IMG_EM_GATE_3_GRAY_EDITOR 286 -#define IMG_EM_GATE_3_GRAY_ACTIVE 287 -#define IMG_EM_GATE_4_GRAY 288 -#define IMG_EM_GATE_4_GRAY_EDITOR 289 -#define IMG_EM_GATE_4_GRAY_ACTIVE 290 -#define IMG_DC_GATE_WHITE_GRAY 291 -#define IMG_DC_GATE_WHITE_GRAY_EDITOR 292 -#define IMG_DC_GATE_WHITE_GRAY_ACTIVE 293 -#define IMG_DC_GATE_FAKE_GRAY 294 -#define IMG_EXIT_CLOSED 295 -#define IMG_EXIT_OPENING 296 -#define IMG_EXIT_OPEN 297 -#define IMG_EXIT_CLOSING 298 -#define IMG_STEEL_EXIT_CLOSED 299 -#define IMG_STEEL_EXIT_OPENING 300 -#define IMG_STEEL_EXIT_OPEN 301 -#define IMG_STEEL_EXIT_CLOSING 302 -#define IMG_EM_EXIT_CLOSED 303 -#define IMG_EM_EXIT_OPENING 304 -#define IMG_EM_EXIT_OPEN 305 -#define IMG_EM_EXIT_CLOSING 306 -#define IMG_EM_STEEL_EXIT_CLOSED 307 -#define IMG_EM_STEEL_EXIT_OPENING 308 -#define IMG_EM_STEEL_EXIT_OPEN 309 -#define IMG_EM_STEEL_EXIT_CLOSING 310 -#define IMG_BALLOON 311 -#define IMG_BALLOON_MOVING 312 -#define IMG_BALLOON_PUSHING 313 -#define IMG_BALLOON_SWITCH_LEFT 314 -#define IMG_BALLOON_SWITCH_RIGHT 315 -#define IMG_BALLOON_SWITCH_UP 316 -#define IMG_BALLOON_SWITCH_DOWN 317 -#define IMG_BALLOON_SWITCH_ANY 318 -#define IMG_BALLOON_SWITCH_NONE 319 -#define IMG_SPRING 320 -#define IMG_EMC_STEELWALL_1 321 -#define IMG_EMC_STEELWALL_2 322 -#define IMG_EMC_STEELWALL_3 323 -#define IMG_EMC_STEELWALL_4 324 -#define IMG_EMC_WALL_1 325 -#define IMG_EMC_WALL_2 326 -#define IMG_EMC_WALL_3 327 -#define IMG_EMC_WALL_4 328 -#define IMG_EMC_WALL_5 329 -#define IMG_EMC_WALL_6 330 -#define IMG_EMC_WALL_7 331 -#define IMG_EMC_WALL_8 332 -#define IMG_INVISIBLE_STEELWALL 333 -#define IMG_INVISIBLE_STEELWALL_EDITOR 334 -#define IMG_INVISIBLE_STEELWALL_ACTIVE 335 -#define IMG_INVISIBLE_WALL 336 -#define IMG_INVISIBLE_WALL_EDITOR 337 -#define IMG_INVISIBLE_WALL_ACTIVE 338 -#define IMG_INVISIBLE_SAND 339 -#define IMG_INVISIBLE_SAND_EDITOR 340 -#define IMG_INVISIBLE_SAND_ACTIVE 341 -#define IMG_INVISIBLE_SAND_ACTIVE_CRUMBLED 342 -#define IMG_INVISIBLE_SAND_ACTIVE_DIGGING_LEFT 343 -#define IMG_INVISIBLE_SAND_ACTIVE_DIGGING_RIGHT 344 -#define IMG_INVISIBLE_SAND_ACTIVE_DIGGING_UP 345 -#define IMG_INVISIBLE_SAND_ACTIVE_DIGGING_DOWN 346 -#define IMG_INVISIBLE_SAND_ACTIVE_DIGGING_LEFT_CRUMBLED 347 -#define IMG_INVISIBLE_SAND_ACTIVE_DIGGING_RIGHT_CRUMBLED 348 -#define IMG_INVISIBLE_SAND_ACTIVE_DIGGING_UP_CRUMBLED 349 -#define IMG_INVISIBLE_SAND_ACTIVE_DIGGING_DOWN_CRUMBLED 350 -#define IMG_CONVEYOR_BELT_1_MIDDLE 351 -#define IMG_CONVEYOR_BELT_1_MIDDLE_ACTIVE 352 -#define IMG_CONVEYOR_BELT_1_LEFT 353 -#define IMG_CONVEYOR_BELT_1_LEFT_ACTIVE 354 -#define IMG_CONVEYOR_BELT_1_RIGHT 355 -#define IMG_CONVEYOR_BELT_1_RIGHT_ACTIVE 356 -#define IMG_CONVEYOR_BELT_1_SWITCH_LEFT 357 -#define IMG_CONVEYOR_BELT_1_SWITCH_MIDDLE 358 -#define IMG_CONVEYOR_BELT_1_SWITCH_RIGHT 359 -#define IMG_CONVEYOR_BELT_2_MIDDLE 360 -#define IMG_CONVEYOR_BELT_2_MIDDLE_ACTIVE 361 -#define IMG_CONVEYOR_BELT_2_LEFT 362 -#define IMG_CONVEYOR_BELT_2_LEFT_ACTIVE 363 -#define IMG_CONVEYOR_BELT_2_RIGHT 364 -#define IMG_CONVEYOR_BELT_2_RIGHT_ACTIVE 365 -#define IMG_CONVEYOR_BELT_2_SWITCH_LEFT 366 -#define IMG_CONVEYOR_BELT_2_SWITCH_MIDDLE 367 -#define IMG_CONVEYOR_BELT_2_SWITCH_RIGHT 368 -#define IMG_CONVEYOR_BELT_3_MIDDLE 369 -#define IMG_CONVEYOR_BELT_3_MIDDLE_ACTIVE 370 -#define IMG_CONVEYOR_BELT_3_LEFT 371 -#define IMG_CONVEYOR_BELT_3_LEFT_ACTIVE 372 -#define IMG_CONVEYOR_BELT_3_RIGHT 373 -#define IMG_CONVEYOR_BELT_3_RIGHT_ACTIVE 374 -#define IMG_CONVEYOR_BELT_3_SWITCH_LEFT 375 -#define IMG_CONVEYOR_BELT_3_SWITCH_MIDDLE 376 -#define IMG_CONVEYOR_BELT_3_SWITCH_RIGHT 377 -#define IMG_CONVEYOR_BELT_4_MIDDLE 378 -#define IMG_CONVEYOR_BELT_4_MIDDLE_ACTIVE 379 -#define IMG_CONVEYOR_BELT_4_LEFT 380 -#define IMG_CONVEYOR_BELT_4_LEFT_ACTIVE 381 -#define IMG_CONVEYOR_BELT_4_RIGHT 382 -#define IMG_CONVEYOR_BELT_4_RIGHT_ACTIVE 383 -#define IMG_CONVEYOR_BELT_4_SWITCH_LEFT 384 -#define IMG_CONVEYOR_BELT_4_SWITCH_MIDDLE 385 -#define IMG_CONVEYOR_BELT_4_SWITCH_RIGHT 386 -#define IMG_SWITCHGATE_SWITCH_UP 387 -#define IMG_SWITCHGATE_SWITCH_DOWN 388 -#define IMG_DC_SWITCHGATE_SWITCH_UP 389 -#define IMG_DC_SWITCHGATE_SWITCH_DOWN 390 -#define IMG_LIGHT_SWITCH 391 -#define IMG_LIGHT_SWITCH_ACTIVE 392 -#define IMG_TIMEGATE_SWITCH 393 -#define IMG_TIMEGATE_SWITCH_ACTIVE 394 -#define IMG_DC_TIMEGATE_SWITCH 395 -#define IMG_DC_TIMEGATE_SWITCH_ACTIVE 396 -#define IMG_ENVELOPE_1 397 -#define IMG_ENVELOPE_1_COLLECTING 398 -#define IMG_ENVELOPE_2 399 -#define IMG_ENVELOPE_2_COLLECTING 400 -#define IMG_ENVELOPE_3 401 -#define IMG_ENVELOPE_3_COLLECTING 402 -#define IMG_ENVELOPE_4 403 -#define IMG_ENVELOPE_4_COLLECTING 404 -#define IMG_SIGN_RADIOACTIVITY 405 -#define IMG_SIGN_GIVE_WAY 406 -#define IMG_SIGN_NO_ENTRY 407 -#define IMG_SIGN_EMERGENCY_EXIT 408 -#define IMG_SIGN_YIN_YANG 409 -#define IMG_SIGN_EXCLAMATION 410 -#define IMG_SIGN_STOP 411 -#define IMG_SIGN_PARKING 412 -#define IMG_SIGN_WHEELCHAIR 413 -#define IMG_SIGN_ENTRY_FORBIDDEN 414 -#define IMG_SPERMS 415 -#define IMG_BULLET 416 -#define IMG_HEART 417 -#define IMG_CROSS 418 -#define IMG_FRANKIE 419 -#define IMG_SIGN_SPERMS 420 -#define IMG_SIGN_BULLET 421 -#define IMG_SIGN_HEART 422 -#define IMG_SIGN_CROSS 423 -#define IMG_SIGN_FRANKIE 424 -#define IMG_LANDMINE 425 -#define IMG_DC_LANDMINE 426 -#define IMG_STEELWALL_SLIPPERY 427 -#define IMG_EXTRA_TIME 428 -#define IMG_SHIELD_NORMAL 429 -#define IMG_SHIELD_NORMAL_ACTIVE 430 -#define IMG_SHIELD_DEADLY 431 -#define IMG_SHIELD_DEADLY_ACTIVE 432 -#define IMG_SWITCHGATE_CLOSED 433 -#define IMG_SWITCHGATE_OPENING 434 -#define IMG_SWITCHGATE_OPEN 435 -#define IMG_SWITCHGATE_CLOSING 436 -#define IMG_TIMEGATE_CLOSED 437 -#define IMG_TIMEGATE_OPENING 438 -#define IMG_TIMEGATE_OPEN 439 -#define IMG_TIMEGATE_CLOSING 440 -#define IMG_PEARL 441 -#define IMG_PEARL_BREAKING 442 -#define IMG_CRYSTAL 443 -#define IMG_WALL_PEARL 444 -#define IMG_WALL_CRYSTAL 445 -#define IMG_DC_STEELWALL_1_LEFT 446 -#define IMG_DC_STEELWALL_1_RIGHT 447 -#define IMG_DC_STEELWALL_1_TOP 448 -#define IMG_DC_STEELWALL_1_BOTTOM 449 -#define IMG_DC_STEELWALL_1_HORIZONTAL 450 -#define IMG_DC_STEELWALL_1_VERTICAL 451 -#define IMG_DC_STEELWALL_1_TOPLEFT 452 -#define IMG_DC_STEELWALL_1_TOPRIGHT 453 -#define IMG_DC_STEELWALL_1_BOTTOMLEFT 454 -#define IMG_DC_STEELWALL_1_BOTTOMRIGHT 455 -#define IMG_DC_STEELWALL_1_TOPLEFT_2 456 -#define IMG_DC_STEELWALL_1_TOPRIGHT_2 457 -#define IMG_DC_STEELWALL_1_BOTTOMLEFT_2 458 -#define IMG_DC_STEELWALL_1_BOTTOMRIGHT_2 459 -#define IMG_DC_STEELWALL_2_LEFT 460 -#define IMG_DC_STEELWALL_2_RIGHT 461 -#define IMG_DC_STEELWALL_2_TOP 462 -#define IMG_DC_STEELWALL_2_BOTTOM 463 -#define IMG_DC_STEELWALL_2_HORIZONTAL 464 -#define IMG_DC_STEELWALL_2_VERTICAL 465 -#define IMG_DC_STEELWALL_2_MIDDLE 466 -#define IMG_DC_STEELWALL_2_SINGLE 467 -#define IMG_TUBE_RIGHT_DOWN 468 -#define IMG_TUBE_HORIZONTAL_DOWN 469 -#define IMG_TUBE_LEFT_DOWN 470 -#define IMG_TUBE_HORIZONTAL 471 -#define IMG_TUBE_VERTICAL_RIGHT 472 -#define IMG_TUBE_ANY 473 -#define IMG_TUBE_VERTICAL_LEFT 474 -#define IMG_TUBE_VERTICAL 475 -#define IMG_TUBE_RIGHT_UP 476 -#define IMG_TUBE_HORIZONTAL_UP 477 -#define IMG_TUBE_LEFT_UP 478 -#define IMG_TRAP 479 -#define IMG_TRAP_ACTIVE 480 -#define IMG_DX_SUPABOMB 481 -#define IMG_KEY_1 482 -#define IMG_KEY_1_EDITOR 483 -#define IMG_KEY_2 484 -#define IMG_KEY_2_EDITOR 485 -#define IMG_KEY_3 486 -#define IMG_KEY_3_EDITOR 487 -#define IMG_KEY_4 488 -#define IMG_KEY_4_EDITOR 489 -#define IMG_GATE_1 490 -#define IMG_GATE_2 491 -#define IMG_GATE_3 492 -#define IMG_GATE_4 493 -#define IMG_GATE_1_GRAY 494 -#define IMG_GATE_1_GRAY_EDITOR 495 -#define IMG_GATE_1_GRAY_ACTIVE 496 -#define IMG_GATE_2_GRAY 497 -#define IMG_GATE_2_GRAY_EDITOR 498 -#define IMG_GATE_2_GRAY_ACTIVE 499 -#define IMG_GATE_3_GRAY 500 -#define IMG_GATE_3_GRAY_EDITOR 501 -#define IMG_GATE_3_GRAY_ACTIVE 502 -#define IMG_GATE_4_GRAY 503 -#define IMG_GATE_4_GRAY_EDITOR 504 -#define IMG_GATE_4_GRAY_ACTIVE 505 -#define IMG_GAME_OF_LIFE 506 -#define IMG_BIOMAZE 507 -#define IMG_PACMAN 508 -#define IMG_PACMAN_RIGHT 509 -#define IMG_PACMAN_UP 510 -#define IMG_PACMAN_LEFT 511 -#define IMG_PACMAN_DOWN 512 -#define IMG_PACMAN_TURNING_FROM_RIGHT 513 -#define IMG_PACMAN_TURNING_FROM_UP 514 -#define IMG_PACMAN_TURNING_FROM_LEFT 515 -#define IMG_PACMAN_TURNING_FROM_DOWN 516 -#define IMG_LAMP 517 -#define IMG_LAMP_EDITOR 518 -#define IMG_LAMP_ACTIVE 519 -#define IMG_TIME_ORB_FULL 520 -#define IMG_TIME_ORB_EMPTY 521 -#define IMG_EMERALD_YELLOW 522 -#define IMG_EMERALD_YELLOW_MOVING 523 -#define IMG_EMERALD_YELLOW_FALLING 524 -#define IMG_EMERALD_RED 525 -#define IMG_EMERALD_RED_MOVING 526 -#define IMG_EMERALD_RED_FALLING 527 -#define IMG_EMERALD_PURPLE 528 -#define IMG_EMERALD_PURPLE_MOVING 529 -#define IMG_EMERALD_PURPLE_FALLING 530 -#define IMG_WALL_EMERALD_YELLOW 531 -#define IMG_WALL_EMERALD_RED 532 -#define IMG_WALL_EMERALD_PURPLE 533 -#define IMG_WALL_BD_DIAMOND 534 -#define IMG_EXPANDABLE_WALL 535 -#define IMG_EXPANDABLE_WALL_HORIZONTAL 536 -#define IMG_EXPANDABLE_WALL_HORIZONTAL_EDITOR 537 -#define IMG_EXPANDABLE_WALL_VERTICAL 538 -#define IMG_EXPANDABLE_WALL_VERTICAL_EDITOR 539 -#define IMG_EXPANDABLE_WALL_ANY 540 -#define IMG_EXPANDABLE_WALL_ANY_EDITOR 541 -#define IMG_EXPANDABLE_STEELWALL_HORIZONTAL 542 -#define IMG_EXPANDABLE_STEELWALL_HORIZONTAL_EDITOR 543 -#define IMG_EXPANDABLE_STEELWALL_VERTICAL 544 -#define IMG_EXPANDABLE_STEELWALL_VERTICAL_EDITOR 545 -#define IMG_EXPANDABLE_STEELWALL_ANY 546 -#define IMG_EXPANDABLE_STEELWALL_ANY_EDITOR 547 -#define IMG_BD_EXPANDABLE_WALL 548 -#define IMG_BD_EXPANDABLE_WALL_EDITOR 549 -#define IMG_EXPANDABLE_WALL_GROWING_LEFT 550 -#define IMG_EXPANDABLE_WALL_GROWING_RIGHT 551 -#define IMG_EXPANDABLE_WALL_GROWING_UP 552 -#define IMG_EXPANDABLE_WALL_GROWING_DOWN 553 -#define IMG_EXPANDABLE_STEELWALL_GROWING_LEFT 554 -#define IMG_EXPANDABLE_STEELWALL_GROWING_RIGHT 555 -#define IMG_EXPANDABLE_STEELWALL_GROWING_UP 556 -#define IMG_EXPANDABLE_STEELWALL_GROWING_DOWN 557 -#define IMG_BLACK_ORB 558 -#define IMG_SPEED_PILL 559 -#define IMG_DARK_YAMYAM 560 -#define IMG_DYNABOMB 561 -#define IMG_DYNABOMB_ACTIVE 562 -#define IMG_DYNABOMB_PLAYER_1 563 -#define IMG_DYNABOMB_PLAYER_1_ACTIVE 564 -#define IMG_DYNABOMB_PLAYER_2 565 -#define IMG_DYNABOMB_PLAYER_2_ACTIVE 566 -#define IMG_DYNABOMB_PLAYER_3 567 -#define IMG_DYNABOMB_PLAYER_3_ACTIVE 568 -#define IMG_DYNABOMB_PLAYER_4 569 -#define IMG_DYNABOMB_PLAYER_4_ACTIVE 570 -#define IMG_DYNABOMB_INCREASE_NUMBER 571 -#define IMG_DYNABOMB_INCREASE_SIZE 572 -#define IMG_DYNABOMB_INCREASE_POWER 573 -#define IMG_PIG 574 -#define IMG_PIG_DOWN 575 -#define IMG_PIG_UP 576 -#define IMG_PIG_LEFT 577 -#define IMG_PIG_RIGHT 578 -#define IMG_PIG_MOVING_DOWN 579 -#define IMG_PIG_MOVING_UP 580 -#define IMG_PIG_MOVING_LEFT 581 -#define IMG_PIG_MOVING_RIGHT 582 -#define IMG_PIG_DIGGING_DOWN 583 -#define IMG_PIG_DIGGING_UP 584 -#define IMG_PIG_DIGGING_LEFT 585 -#define IMG_PIG_DIGGING_RIGHT 586 -#define IMG_DRAGON 587 -#define IMG_DRAGON_DOWN 588 -#define IMG_DRAGON_UP 589 -#define IMG_DRAGON_LEFT 590 -#define IMG_DRAGON_RIGHT 591 -#define IMG_DRAGON_MOVING_DOWN 592 -#define IMG_DRAGON_MOVING_UP 593 -#define IMG_DRAGON_MOVING_LEFT 594 -#define IMG_DRAGON_MOVING_RIGHT 595 -#define IMG_DRAGON_ATTACKING_DOWN 596 -#define IMG_DRAGON_ATTACKING_UP 597 -#define IMG_DRAGON_ATTACKING_LEFT 598 -#define IMG_DRAGON_ATTACKING_RIGHT 599 -#define IMG_MOLE 600 -#define IMG_MOLE_DOWN 601 -#define IMG_MOLE_UP 602 -#define IMG_MOLE_LEFT 603 -#define IMG_MOLE_RIGHT 604 -#define IMG_MOLE_MOVING_DOWN 605 -#define IMG_MOLE_MOVING_UP 606 -#define IMG_MOLE_MOVING_LEFT 607 -#define IMG_MOLE_MOVING_RIGHT 608 -#define IMG_MOLE_DIGGING_DOWN 609 -#define IMG_MOLE_DIGGING_UP 610 -#define IMG_MOLE_DIGGING_LEFT 611 -#define IMG_MOLE_DIGGING_RIGHT 612 -#define IMG_PENGUIN 613 -#define IMG_PENGUIN_EDITOR 614 -#define IMG_PENGUIN_DOWN 615 -#define IMG_PENGUIN_UP 616 -#define IMG_PENGUIN_LEFT 617 -#define IMG_PENGUIN_RIGHT 618 -#define IMG_PENGUIN_MOVING_DOWN 619 -#define IMG_PENGUIN_MOVING_UP 620 -#define IMG_PENGUIN_MOVING_LEFT 621 -#define IMG_PENGUIN_MOVING_RIGHT 622 -#define IMG_SATELLITE 623 -#define IMG_FLAMES_1_LEFT 624 -#define IMG_FLAMES_2_LEFT 625 -#define IMG_FLAMES_3_LEFT 626 -#define IMG_FLAMES_1_RIGHT 627 -#define IMG_FLAMES_2_RIGHT 628 -#define IMG_FLAMES_3_RIGHT 629 -#define IMG_FLAMES_1_UP 630 -#define IMG_FLAMES_2_UP 631 -#define IMG_FLAMES_3_UP 632 -#define IMG_FLAMES_1_DOWN 633 -#define IMG_FLAMES_2_DOWN 634 -#define IMG_FLAMES_3_DOWN 635 -#define IMG_STONEBLOCK 636 -#define IMG_PLAYER_1 637 -#define IMG_PLAYER_1_EDITOR 638 -#define IMG_PLAYER_1_DOWN 639 -#define IMG_PLAYER_1_UP 640 -#define IMG_PLAYER_1_LEFT 641 -#define IMG_PLAYER_1_RIGHT 642 -#define IMG_PLAYER_1_MOVING_DOWN 643 -#define IMG_PLAYER_1_MOVING_UP 644 -#define IMG_PLAYER_1_MOVING_LEFT 645 -#define IMG_PLAYER_1_MOVING_RIGHT 646 -#define IMG_PLAYER_1_DIGGING_DOWN 647 -#define IMG_PLAYER_1_DIGGING_UP 648 -#define IMG_PLAYER_1_DIGGING_LEFT 649 -#define IMG_PLAYER_1_DIGGING_RIGHT 650 -#define IMG_PLAYER_1_COLLECTING_DOWN 651 -#define IMG_PLAYER_1_COLLECTING_UP 652 -#define IMG_PLAYER_1_COLLECTING_LEFT 653 -#define IMG_PLAYER_1_COLLECTING_RIGHT 654 -#define IMG_PLAYER_1_PUSHING_DOWN 655 -#define IMG_PLAYER_1_PUSHING_UP 656 -#define IMG_PLAYER_1_PUSHING_LEFT 657 -#define IMG_PLAYER_1_PUSHING_RIGHT 658 -#define IMG_PLAYER_1_SNAPPING_DOWN 659 -#define IMG_PLAYER_1_SNAPPING_UP 660 -#define IMG_PLAYER_1_SNAPPING_LEFT 661 -#define IMG_PLAYER_1_SNAPPING_RIGHT 662 -#define IMG_PLAYER_2 663 -#define IMG_PLAYER_2_EDITOR 664 -#define IMG_PLAYER_2_DOWN 665 -#define IMG_PLAYER_2_UP 666 -#define IMG_PLAYER_2_LEFT 667 -#define IMG_PLAYER_2_RIGHT 668 -#define IMG_PLAYER_2_MOVING_DOWN 669 -#define IMG_PLAYER_2_MOVING_UP 670 -#define IMG_PLAYER_2_MOVING_LEFT 671 -#define IMG_PLAYER_2_MOVING_RIGHT 672 -#define IMG_PLAYER_2_DIGGING_DOWN 673 -#define IMG_PLAYER_2_DIGGING_UP 674 -#define IMG_PLAYER_2_DIGGING_LEFT 675 -#define IMG_PLAYER_2_DIGGING_RIGHT 676 -#define IMG_PLAYER_2_COLLECTING_DOWN 677 -#define IMG_PLAYER_2_COLLECTING_UP 678 -#define IMG_PLAYER_2_COLLECTING_LEFT 679 -#define IMG_PLAYER_2_COLLECTING_RIGHT 680 -#define IMG_PLAYER_2_PUSHING_DOWN 681 -#define IMG_PLAYER_2_PUSHING_UP 682 -#define IMG_PLAYER_2_PUSHING_LEFT 683 -#define IMG_PLAYER_2_PUSHING_RIGHT 684 -#define IMG_PLAYER_2_SNAPPING_DOWN 685 -#define IMG_PLAYER_2_SNAPPING_UP 686 -#define IMG_PLAYER_2_SNAPPING_LEFT 687 -#define IMG_PLAYER_2_SNAPPING_RIGHT 688 -#define IMG_PLAYER_3 689 -#define IMG_PLAYER_3_EDITOR 690 -#define IMG_PLAYER_3_DOWN 691 -#define IMG_PLAYER_3_UP 692 -#define IMG_PLAYER_3_LEFT 693 -#define IMG_PLAYER_3_RIGHT 694 -#define IMG_PLAYER_3_MOVING_DOWN 695 -#define IMG_PLAYER_3_MOVING_UP 696 -#define IMG_PLAYER_3_MOVING_LEFT 697 -#define IMG_PLAYER_3_MOVING_RIGHT 698 -#define IMG_PLAYER_3_DIGGING_DOWN 699 -#define IMG_PLAYER_3_DIGGING_UP 700 -#define IMG_PLAYER_3_DIGGING_LEFT 701 -#define IMG_PLAYER_3_DIGGING_RIGHT 702 -#define IMG_PLAYER_3_COLLECTING_DOWN 703 -#define IMG_PLAYER_3_COLLECTING_UP 704 -#define IMG_PLAYER_3_COLLECTING_LEFT 705 -#define IMG_PLAYER_3_COLLECTING_RIGHT 706 -#define IMG_PLAYER_3_PUSHING_DOWN 707 -#define IMG_PLAYER_3_PUSHING_UP 708 -#define IMG_PLAYER_3_PUSHING_LEFT 709 -#define IMG_PLAYER_3_PUSHING_RIGHT 710 -#define IMG_PLAYER_3_SNAPPING_DOWN 711 -#define IMG_PLAYER_3_SNAPPING_UP 712 -#define IMG_PLAYER_3_SNAPPING_LEFT 713 -#define IMG_PLAYER_3_SNAPPING_RIGHT 714 -#define IMG_PLAYER_4 715 -#define IMG_PLAYER_4_EDITOR 716 -#define IMG_PLAYER_4_DOWN 717 -#define IMG_PLAYER_4_UP 718 -#define IMG_PLAYER_4_LEFT 719 -#define IMG_PLAYER_4_RIGHT 720 -#define IMG_PLAYER_4_MOVING_DOWN 721 -#define IMG_PLAYER_4_MOVING_UP 722 -#define IMG_PLAYER_4_MOVING_LEFT 723 -#define IMG_PLAYER_4_MOVING_RIGHT 724 -#define IMG_PLAYER_4_DIGGING_DOWN 725 -#define IMG_PLAYER_4_DIGGING_UP 726 -#define IMG_PLAYER_4_DIGGING_LEFT 727 -#define IMG_PLAYER_4_DIGGING_RIGHT 728 -#define IMG_PLAYER_4_COLLECTING_DOWN 729 -#define IMG_PLAYER_4_COLLECTING_UP 730 -#define IMG_PLAYER_4_COLLECTING_LEFT 731 -#define IMG_PLAYER_4_COLLECTING_RIGHT 732 -#define IMG_PLAYER_4_PUSHING_DOWN 733 -#define IMG_PLAYER_4_PUSHING_UP 734 -#define IMG_PLAYER_4_PUSHING_LEFT 735 -#define IMG_PLAYER_4_PUSHING_RIGHT 736 -#define IMG_PLAYER_4_SNAPPING_DOWN 737 -#define IMG_PLAYER_4_SNAPPING_UP 738 -#define IMG_PLAYER_4_SNAPPING_LEFT 739 -#define IMG_PLAYER_4_SNAPPING_RIGHT 740 -#define IMG_DEFAULT_EXPLODING 741 -#define IMG_TWINKLE_BLUE 742 -#define IMG_TWINKLE_WHITE 743 -#define IMG_STEELWALL_TOPLEFT 744 -#define IMG_STEELWALL_TOPRIGHT 745 -#define IMG_STEELWALL_BOTTOMLEFT 746 -#define IMG_STEELWALL_BOTTOMRIGHT 747 -#define IMG_STEELWALL_HORIZONTAL 748 -#define IMG_STEELWALL_VERTICAL 749 -#define IMG_STEELWALL_TOPLEFT_EDITOR 750 -#define IMG_STEELWALL_TOPRIGHT_EDITOR 751 -#define IMG_STEELWALL_BOTTOMLEFT_EDITOR 752 -#define IMG_STEELWALL_BOTTOMRIGHT_EDITOR 753 -#define IMG_STEELWALL_HORIZONTAL_EDITOR 754 -#define IMG_STEELWALL_VERTICAL_EDITOR 755 -#define IMG_INVISIBLE_STEELWALL_TOPLEFT 756 -#define IMG_INVISIBLE_STEELWALL_TOPRIGHT 757 -#define IMG_INVISIBLE_STEELWALL_BOTTOMLEFT 758 -#define IMG_INVISIBLE_STEELWALL_BOTTOMRIGHT 759 -#define IMG_INVISIBLE_STEELWALL_HORIZONTAL 760 -#define IMG_INVISIBLE_STEELWALL_VERTICAL 761 -#define IMG_INVISIBLE_STEELWALL_TOPLEFT_EDITOR 762 -#define IMG_INVISIBLE_STEELWALL_TOPRIGHT_EDITOR 763 -#define IMG_INVISIBLE_STEELWALL_BOTTOMLEFT_EDITOR 764 -#define IMG_INVISIBLE_STEELWALL_BOTTOMRIGHT_EDITOR 765 -#define IMG_INVISIBLE_STEELWALL_HORIZONTAL_EDITOR 766 -#define IMG_INVISIBLE_STEELWALL_VERTICAL_EDITOR 767 -#define IMG_ARROW_LEFT 768 -#define IMG_ARROW_RIGHT 769 -#define IMG_ARROW_UP 770 -#define IMG_ARROW_DOWN 771 -#define IMG_UNKNOWN 772 -#define IMG_TRIGGER_ELEMENT 773 -#define IMG_TRIGGER_PLAYER 774 -#define IMG_TRIGGER_CE_VALUE 775 -#define IMG_TRIGGER_CE_SCORE 776 -#define IMG_CURRENT_CE_VALUE 777 -#define IMG_CURRENT_CE_SCORE 778 -#define IMG_PREV_CE_1 779 -#define IMG_PREV_CE_2 780 -#define IMG_PREV_CE_3 781 -#define IMG_PREV_CE_4 782 -#define IMG_PREV_CE_5 783 -#define IMG_PREV_CE_6 784 -#define IMG_PREV_CE_7 785 -#define IMG_PREV_CE_8 786 -#define IMG_NEXT_CE_1 787 -#define IMG_NEXT_CE_2 788 -#define IMG_NEXT_CE_3 789 -#define IMG_NEXT_CE_4 790 -#define IMG_NEXT_CE_5 791 -#define IMG_NEXT_CE_6 792 -#define IMG_NEXT_CE_7 793 -#define IMG_NEXT_CE_8 794 -#define IMG_SELF 795 -#define IMG_ANY_ELEMENT 796 -#define IMG_EMC_KEY_5 797 -#define IMG_EMC_KEY_6 798 -#define IMG_EMC_KEY_7 799 -#define IMG_EMC_KEY_8 800 -#define IMG_EMC_GATE_5 801 -#define IMG_EMC_GATE_6 802 -#define IMG_EMC_GATE_7 803 -#define IMG_EMC_GATE_8 804 -#define IMG_EMC_GATE_5_GRAY 805 -#define IMG_EMC_GATE_5_GRAY_EDITOR 806 -#define IMG_EMC_GATE_5_GRAY_ACTIVE 807 -#define IMG_EMC_GATE_6_GRAY 808 -#define IMG_EMC_GATE_6_GRAY_EDITOR 809 -#define IMG_EMC_GATE_6_GRAY_ACTIVE 810 -#define IMG_EMC_GATE_7_GRAY 811 -#define IMG_EMC_GATE_7_GRAY_EDITOR 812 -#define IMG_EMC_GATE_7_GRAY_ACTIVE 813 -#define IMG_EMC_GATE_8_GRAY 814 -#define IMG_EMC_GATE_8_GRAY_EDITOR 815 -#define IMG_EMC_GATE_8_GRAY_ACTIVE 816 -#define IMG_EMC_ANDROID 817 -#define IMG_EMC_ANDROID_SHRINKING_UPLEFT 818 -#define IMG_EMC_ANDROID_GROWING_DOWNRIGHT 819 -#define IMG_EMC_ANDROID_SHRINKING_DOWNLEFT 820 -#define IMG_EMC_ANDROID_GROWING_UPRIGHT 821 -#define IMG_EMC_ANDROID_SHRINKING_UPRIGHT 822 -#define IMG_EMC_ANDROID_GROWING_DOWNLEFT 823 -#define IMG_EMC_ANDROID_SHRINKING_DOWNRIGHT 824 -#define IMG_EMC_ANDROID_GROWING_UPLEFT 825 -#define IMG_EMC_GRASS 826 -#define IMG_EMC_GRASS_CRUMBLED 827 -#define IMG_EMC_GRASS_DIGGING_LEFT 828 -#define IMG_EMC_GRASS_DIGGING_RIGHT 829 -#define IMG_EMC_GRASS_DIGGING_UP 830 -#define IMG_EMC_GRASS_DIGGING_DOWN 831 -#define IMG_EMC_GRASS_DIGGING_LEFT_CRUMBLED 832 -#define IMG_EMC_GRASS_DIGGING_RIGHT_CRUMBLED 833 -#define IMG_EMC_GRASS_DIGGING_UP_CRUMBLED 834 -#define IMG_EMC_GRASS_DIGGING_DOWN_CRUMBLED 835 -#define IMG_EMC_MAGIC_BALL 836 -#define IMG_EMC_MAGIC_BALL_ACTIVE 837 -#define IMG_EMC_MAGIC_BALL_DROPPING 838 -#define IMG_EMC_MAGIC_BALL_SWITCH 839 -#define IMG_EMC_MAGIC_BALL_SWITCH_ACTIVE 840 -#define IMG_EMC_SPRING_BUMPER 841 -#define IMG_EMC_SPRING_BUMPER_ACTIVE 842 -#define IMG_EMC_PLANT 843 -#define IMG_EMC_PLANT_CRUMBLED 844 -#define IMG_EMC_LENSES 845 -#define IMG_EMC_MAGNIFIER 846 -#define IMG_EMC_WALL_9 847 -#define IMG_EMC_WALL_10 848 -#define IMG_EMC_WALL_11 849 -#define IMG_EMC_WALL_12 850 -#define IMG_EMC_WALL_13 851 -#define IMG_EMC_WALL_14 852 -#define IMG_EMC_WALL_15 853 -#define IMG_EMC_WALL_16 854 -#define IMG_EMC_WALL_SLIPPERY_1 855 -#define IMG_EMC_WALL_SLIPPERY_2 856 -#define IMG_EMC_WALL_SLIPPERY_3 857 -#define IMG_EMC_WALL_SLIPPERY_4 858 -#define IMG_EMC_FAKE_GRASS 859 -#define IMG_EMC_FAKE_GRASS_CRUMBLED 860 -#define IMG_EMC_FAKE_GRASS_ACTIVE 861 -#define IMG_EMC_FAKE_GRASS_ACTIVE_CRUMBLED 862 -#define IMG_EMC_FAKE_GRASS_EDITOR 863 -#define IMG_EMC_FAKE_ACID 864 -#define IMG_EMC_DRIPPER 865 -#define IMG_EMC_DRIPPER_EDITOR 866 -#define IMG_EMC_DRIPPER_ACTIVE 867 -#define IMG_CHAR_SPACE 868 -#define IMG_CHAR_SPACE_EDITOR 869 -#define IMG_CHAR_EXCLAM 870 -#define IMG_CHAR_QUOTEDBL 871 -#define IMG_CHAR_NUMBERSIGN 872 -#define IMG_CHAR_DOLLAR 873 -#define IMG_CHAR_PERCENT 874 -#define IMG_CHAR_AMPERSAND 875 -#define IMG_CHAR_APOSTROPHE 876 -#define IMG_CHAR_PARENLEFT 877 -#define IMG_CHAR_PARENRIGHT 878 -#define IMG_CHAR_ASTERISK 879 -#define IMG_CHAR_PLUS 880 -#define IMG_CHAR_COMMA 881 -#define IMG_CHAR_MINUS 882 -#define IMG_CHAR_PERIOD 883 -#define IMG_CHAR_SLASH 884 -#define IMG_CHAR_0 885 -#define IMG_CHAR_1 886 -#define IMG_CHAR_2 887 -#define IMG_CHAR_3 888 -#define IMG_CHAR_4 889 -#define IMG_CHAR_5 890 -#define IMG_CHAR_6 891 -#define IMG_CHAR_7 892 -#define IMG_CHAR_8 893 -#define IMG_CHAR_9 894 -#define IMG_CHAR_COLON 895 -#define IMG_CHAR_SEMICOLON 896 -#define IMG_CHAR_LESS 897 -#define IMG_CHAR_EQUAL 898 -#define IMG_CHAR_GREATER 899 -#define IMG_CHAR_QUESTION 900 -#define IMG_CHAR_AT 901 -#define IMG_CHAR_A 902 -#define IMG_CHAR_B 903 -#define IMG_CHAR_C 904 -#define IMG_CHAR_D 905 -#define IMG_CHAR_E 906 -#define IMG_CHAR_F 907 -#define IMG_CHAR_G 908 -#define IMG_CHAR_H 909 -#define IMG_CHAR_I 910 -#define IMG_CHAR_J 911 -#define IMG_CHAR_K 912 -#define IMG_CHAR_L 913 -#define IMG_CHAR_M 914 -#define IMG_CHAR_N 915 -#define IMG_CHAR_O 916 -#define IMG_CHAR_P 917 -#define IMG_CHAR_Q 918 -#define IMG_CHAR_R 919 -#define IMG_CHAR_S 920 -#define IMG_CHAR_T 921 -#define IMG_CHAR_U 922 -#define IMG_CHAR_V 923 -#define IMG_CHAR_W 924 -#define IMG_CHAR_X 925 -#define IMG_CHAR_Y 926 -#define IMG_CHAR_Z 927 -#define IMG_CHAR_BRACKETLEFT 928 -#define IMG_CHAR_BACKSLASH 929 -#define IMG_CHAR_BRACKETRIGHT 930 -#define IMG_CHAR_ASCIICIRCUM 931 -#define IMG_CHAR_UNDERSCORE 932 -#define IMG_CHAR_COPYRIGHT 933 -#define IMG_CHAR_AUMLAUT 934 -#define IMG_CHAR_OUMLAUT 935 -#define IMG_CHAR_UUMLAUT 936 -#define IMG_CHAR_DEGREE 937 -#define IMG_CHAR_TRADEMARK 938 -#define IMG_CHAR_CURSOR 939 -#define IMG_CHAR_BUTTON 940 -#define IMG_CHAR_UP 941 -#define IMG_CHAR_DOWN 942 -#define IMG_STEEL_CHAR_SPACE 943 -#define IMG_STEEL_CHAR_SPACE_EDITOR 944 -#define IMG_STEEL_CHAR_EXCLAM 945 -#define IMG_STEEL_CHAR_QUOTEDBL 946 -#define IMG_STEEL_CHAR_NUMBERSIGN 947 -#define IMG_STEEL_CHAR_DOLLAR 948 -#define IMG_STEEL_CHAR_PERCENT 949 -#define IMG_STEEL_CHAR_AMPERSAND 950 -#define IMG_STEEL_CHAR_APOSTROPHE 951 -#define IMG_STEEL_CHAR_PARENLEFT 952 -#define IMG_STEEL_CHAR_PARENRIGHT 953 -#define IMG_STEEL_CHAR_ASTERISK 954 -#define IMG_STEEL_CHAR_PLUS 955 -#define IMG_STEEL_CHAR_COMMA 956 -#define IMG_STEEL_CHAR_MINUS 957 -#define IMG_STEEL_CHAR_PERIOD 958 -#define IMG_STEEL_CHAR_SLASH 959 -#define IMG_STEEL_CHAR_0 960 -#define IMG_STEEL_CHAR_1 961 -#define IMG_STEEL_CHAR_2 962 -#define IMG_STEEL_CHAR_3 963 -#define IMG_STEEL_CHAR_4 964 -#define IMG_STEEL_CHAR_5 965 -#define IMG_STEEL_CHAR_6 966 -#define IMG_STEEL_CHAR_7 967 -#define IMG_STEEL_CHAR_8 968 -#define IMG_STEEL_CHAR_9 969 -#define IMG_STEEL_CHAR_COLON 970 -#define IMG_STEEL_CHAR_SEMICOLON 971 -#define IMG_STEEL_CHAR_LESS 972 -#define IMG_STEEL_CHAR_EQUAL 973 -#define IMG_STEEL_CHAR_GREATER 974 -#define IMG_STEEL_CHAR_QUESTION 975 -#define IMG_STEEL_CHAR_AT 976 -#define IMG_STEEL_CHAR_A 977 -#define IMG_STEEL_CHAR_B 978 -#define IMG_STEEL_CHAR_C 979 -#define IMG_STEEL_CHAR_D 980 -#define IMG_STEEL_CHAR_E 981 -#define IMG_STEEL_CHAR_F 982 -#define IMG_STEEL_CHAR_G 983 -#define IMG_STEEL_CHAR_H 984 -#define IMG_STEEL_CHAR_I 985 -#define IMG_STEEL_CHAR_J 986 -#define IMG_STEEL_CHAR_K 987 -#define IMG_STEEL_CHAR_L 988 -#define IMG_STEEL_CHAR_M 989 -#define IMG_STEEL_CHAR_N 990 -#define IMG_STEEL_CHAR_O 991 -#define IMG_STEEL_CHAR_P 992 -#define IMG_STEEL_CHAR_Q 993 -#define IMG_STEEL_CHAR_R 994 -#define IMG_STEEL_CHAR_S 995 -#define IMG_STEEL_CHAR_T 996 -#define IMG_STEEL_CHAR_U 997 -#define IMG_STEEL_CHAR_V 998 -#define IMG_STEEL_CHAR_W 999 -#define IMG_STEEL_CHAR_X 1000 -#define IMG_STEEL_CHAR_Y 1001 -#define IMG_STEEL_CHAR_Z 1002 -#define IMG_STEEL_CHAR_BRACKETLEFT 1003 -#define IMG_STEEL_CHAR_BACKSLASH 1004 -#define IMG_STEEL_CHAR_BRACKETRIGHT 1005 -#define IMG_STEEL_CHAR_ASCIICIRCUM 1006 -#define IMG_STEEL_CHAR_UNDERSCORE 1007 -#define IMG_STEEL_CHAR_COPYRIGHT 1008 -#define IMG_STEEL_CHAR_AUMLAUT 1009 -#define IMG_STEEL_CHAR_OUMLAUT 1010 -#define IMG_STEEL_CHAR_UUMLAUT 1011 -#define IMG_STEEL_CHAR_DEGREE 1012 -#define IMG_STEEL_CHAR_TRADEMARK 1013 -#define IMG_STEEL_CHAR_CURSOR 1014 -#define IMG_STEEL_CHAR_BUTTON 1015 -#define IMG_STEEL_CHAR_UP 1016 -#define IMG_STEEL_CHAR_DOWN 1017 -#define IMG_CUSTOM_1 1018 -#define IMG_CUSTOM_1_EDITOR 1019 -#define IMG_CUSTOM_2 1020 -#define IMG_CUSTOM_2_EDITOR 1021 -#define IMG_CUSTOM_3 1022 -#define IMG_CUSTOM_3_EDITOR 1023 -#define IMG_CUSTOM_4 1024 -#define IMG_CUSTOM_4_EDITOR 1025 -#define IMG_CUSTOM_5 1026 -#define IMG_CUSTOM_5_EDITOR 1027 -#define IMG_CUSTOM_6 1028 -#define IMG_CUSTOM_6_EDITOR 1029 -#define IMG_CUSTOM_7 1030 -#define IMG_CUSTOM_7_EDITOR 1031 -#define IMG_CUSTOM_8 1032 -#define IMG_CUSTOM_8_EDITOR 1033 -#define IMG_CUSTOM_9 1034 -#define IMG_CUSTOM_9_EDITOR 1035 -#define IMG_CUSTOM_10 1036 -#define IMG_CUSTOM_10_EDITOR 1037 -#define IMG_CUSTOM_11 1038 -#define IMG_CUSTOM_11_EDITOR 1039 -#define IMG_CUSTOM_12 1040 -#define IMG_CUSTOM_12_EDITOR 1041 -#define IMG_CUSTOM_13 1042 -#define IMG_CUSTOM_13_EDITOR 1043 -#define IMG_CUSTOM_14 1044 -#define IMG_CUSTOM_14_EDITOR 1045 -#define IMG_CUSTOM_15 1046 -#define IMG_CUSTOM_15_EDITOR 1047 -#define IMG_CUSTOM_16 1048 -#define IMG_CUSTOM_16_EDITOR 1049 -#define IMG_CUSTOM_17 1050 -#define IMG_CUSTOM_17_EDITOR 1051 -#define IMG_CUSTOM_18 1052 -#define IMG_CUSTOM_18_EDITOR 1053 -#define IMG_CUSTOM_19 1054 -#define IMG_CUSTOM_19_EDITOR 1055 -#define IMG_CUSTOM_20 1056 -#define IMG_CUSTOM_20_EDITOR 1057 -#define IMG_CUSTOM_21 1058 -#define IMG_CUSTOM_21_EDITOR 1059 -#define IMG_CUSTOM_22 1060 -#define IMG_CUSTOM_22_EDITOR 1061 -#define IMG_CUSTOM_23 1062 -#define IMG_CUSTOM_23_EDITOR 1063 -#define IMG_CUSTOM_24 1064 -#define IMG_CUSTOM_24_EDITOR 1065 -#define IMG_CUSTOM_25 1066 -#define IMG_CUSTOM_25_EDITOR 1067 -#define IMG_CUSTOM_26 1068 -#define IMG_CUSTOM_26_EDITOR 1069 -#define IMG_CUSTOM_27 1070 -#define IMG_CUSTOM_27_EDITOR 1071 -#define IMG_CUSTOM_28 1072 -#define IMG_CUSTOM_28_EDITOR 1073 -#define IMG_CUSTOM_29 1074 -#define IMG_CUSTOM_29_EDITOR 1075 -#define IMG_CUSTOM_30 1076 -#define IMG_CUSTOM_30_EDITOR 1077 -#define IMG_CUSTOM_31 1078 -#define IMG_CUSTOM_31_EDITOR 1079 -#define IMG_CUSTOM_32 1080 -#define IMG_CUSTOM_32_EDITOR 1081 -#define IMG_CUSTOM_33 1082 -#define IMG_CUSTOM_33_EDITOR 1083 -#define IMG_CUSTOM_34 1084 -#define IMG_CUSTOM_34_EDITOR 1085 -#define IMG_CUSTOM_35 1086 -#define IMG_CUSTOM_35_EDITOR 1087 -#define IMG_CUSTOM_36 1088 -#define IMG_CUSTOM_36_EDITOR 1089 -#define IMG_CUSTOM_37 1090 -#define IMG_CUSTOM_37_EDITOR 1091 -#define IMG_CUSTOM_38 1092 -#define IMG_CUSTOM_38_EDITOR 1093 -#define IMG_CUSTOM_39 1094 -#define IMG_CUSTOM_39_EDITOR 1095 -#define IMG_CUSTOM_40 1096 -#define IMG_CUSTOM_40_EDITOR 1097 -#define IMG_CUSTOM_41 1098 -#define IMG_CUSTOM_41_EDITOR 1099 -#define IMG_CUSTOM_42 1100 -#define IMG_CUSTOM_42_EDITOR 1101 -#define IMG_CUSTOM_43 1102 -#define IMG_CUSTOM_43_EDITOR 1103 -#define IMG_CUSTOM_44 1104 -#define IMG_CUSTOM_44_EDITOR 1105 -#define IMG_CUSTOM_45 1106 -#define IMG_CUSTOM_45_EDITOR 1107 -#define IMG_CUSTOM_46 1108 -#define IMG_CUSTOM_46_EDITOR 1109 -#define IMG_CUSTOM_47 1110 -#define IMG_CUSTOM_47_EDITOR 1111 -#define IMG_CUSTOM_48 1112 -#define IMG_CUSTOM_48_EDITOR 1113 -#define IMG_CUSTOM_49 1114 -#define IMG_CUSTOM_49_EDITOR 1115 -#define IMG_CUSTOM_50 1116 -#define IMG_CUSTOM_50_EDITOR 1117 -#define IMG_CUSTOM_51 1118 -#define IMG_CUSTOM_51_EDITOR 1119 -#define IMG_CUSTOM_52 1120 -#define IMG_CUSTOM_52_EDITOR 1121 -#define IMG_CUSTOM_53 1122 -#define IMG_CUSTOM_53_EDITOR 1123 -#define IMG_CUSTOM_54 1124 -#define IMG_CUSTOM_54_EDITOR 1125 -#define IMG_CUSTOM_55 1126 -#define IMG_CUSTOM_55_EDITOR 1127 -#define IMG_CUSTOM_56 1128 -#define IMG_CUSTOM_56_EDITOR 1129 -#define IMG_CUSTOM_57 1130 -#define IMG_CUSTOM_57_EDITOR 1131 -#define IMG_CUSTOM_58 1132 -#define IMG_CUSTOM_58_EDITOR 1133 -#define IMG_CUSTOM_59 1134 -#define IMG_CUSTOM_59_EDITOR 1135 -#define IMG_CUSTOM_60 1136 -#define IMG_CUSTOM_60_EDITOR 1137 -#define IMG_CUSTOM_61 1138 -#define IMG_CUSTOM_61_EDITOR 1139 -#define IMG_CUSTOM_62 1140 -#define IMG_CUSTOM_62_EDITOR 1141 -#define IMG_CUSTOM_63 1142 -#define IMG_CUSTOM_63_EDITOR 1143 -#define IMG_CUSTOM_64 1144 -#define IMG_CUSTOM_64_EDITOR 1145 -#define IMG_CUSTOM_65 1146 -#define IMG_CUSTOM_65_EDITOR 1147 -#define IMG_CUSTOM_66 1148 -#define IMG_CUSTOM_66_EDITOR 1149 -#define IMG_CUSTOM_67 1150 -#define IMG_CUSTOM_67_EDITOR 1151 -#define IMG_CUSTOM_68 1152 -#define IMG_CUSTOM_68_EDITOR 1153 -#define IMG_CUSTOM_69 1154 -#define IMG_CUSTOM_69_EDITOR 1155 -#define IMG_CUSTOM_70 1156 -#define IMG_CUSTOM_70_EDITOR 1157 -#define IMG_CUSTOM_71 1158 -#define IMG_CUSTOM_71_EDITOR 1159 -#define IMG_CUSTOM_72 1160 -#define IMG_CUSTOM_72_EDITOR 1161 -#define IMG_CUSTOM_73 1162 -#define IMG_CUSTOM_73_EDITOR 1163 -#define IMG_CUSTOM_74 1164 -#define IMG_CUSTOM_74_EDITOR 1165 -#define IMG_CUSTOM_75 1166 -#define IMG_CUSTOM_75_EDITOR 1167 -#define IMG_CUSTOM_76 1168 -#define IMG_CUSTOM_76_EDITOR 1169 -#define IMG_CUSTOM_77 1170 -#define IMG_CUSTOM_77_EDITOR 1171 -#define IMG_CUSTOM_78 1172 -#define IMG_CUSTOM_78_EDITOR 1173 -#define IMG_CUSTOM_79 1174 -#define IMG_CUSTOM_79_EDITOR 1175 -#define IMG_CUSTOM_80 1176 -#define IMG_CUSTOM_80_EDITOR 1177 -#define IMG_CUSTOM_81 1178 -#define IMG_CUSTOM_81_EDITOR 1179 -#define IMG_CUSTOM_82 1180 -#define IMG_CUSTOM_82_EDITOR 1181 -#define IMG_CUSTOM_83 1182 -#define IMG_CUSTOM_83_EDITOR 1183 -#define IMG_CUSTOM_84 1184 -#define IMG_CUSTOM_84_EDITOR 1185 -#define IMG_CUSTOM_85 1186 -#define IMG_CUSTOM_85_EDITOR 1187 -#define IMG_CUSTOM_86 1188 -#define IMG_CUSTOM_86_EDITOR 1189 -#define IMG_CUSTOM_87 1190 -#define IMG_CUSTOM_87_EDITOR 1191 -#define IMG_CUSTOM_88 1192 -#define IMG_CUSTOM_88_EDITOR 1193 -#define IMG_CUSTOM_89 1194 -#define IMG_CUSTOM_89_EDITOR 1195 -#define IMG_CUSTOM_90 1196 -#define IMG_CUSTOM_90_EDITOR 1197 -#define IMG_CUSTOM_91 1198 -#define IMG_CUSTOM_91_EDITOR 1199 -#define IMG_CUSTOM_92 1200 -#define IMG_CUSTOM_92_EDITOR 1201 -#define IMG_CUSTOM_93 1202 -#define IMG_CUSTOM_93_EDITOR 1203 -#define IMG_CUSTOM_94 1204 -#define IMG_CUSTOM_94_EDITOR 1205 -#define IMG_CUSTOM_95 1206 -#define IMG_CUSTOM_95_EDITOR 1207 -#define IMG_CUSTOM_96 1208 -#define IMG_CUSTOM_96_EDITOR 1209 -#define IMG_CUSTOM_97 1210 -#define IMG_CUSTOM_97_EDITOR 1211 -#define IMG_CUSTOM_98 1212 -#define IMG_CUSTOM_98_EDITOR 1213 -#define IMG_CUSTOM_99 1214 -#define IMG_CUSTOM_99_EDITOR 1215 -#define IMG_CUSTOM_100 1216 -#define IMG_CUSTOM_100_EDITOR 1217 -#define IMG_CUSTOM_101 1218 -#define IMG_CUSTOM_101_EDITOR 1219 -#define IMG_CUSTOM_102 1220 -#define IMG_CUSTOM_102_EDITOR 1221 -#define IMG_CUSTOM_103 1222 -#define IMG_CUSTOM_103_EDITOR 1223 -#define IMG_CUSTOM_104 1224 -#define IMG_CUSTOM_104_EDITOR 1225 -#define IMG_CUSTOM_105 1226 -#define IMG_CUSTOM_105_EDITOR 1227 -#define IMG_CUSTOM_106 1228 -#define IMG_CUSTOM_106_EDITOR 1229 -#define IMG_CUSTOM_107 1230 -#define IMG_CUSTOM_107_EDITOR 1231 -#define IMG_CUSTOM_108 1232 -#define IMG_CUSTOM_108_EDITOR 1233 -#define IMG_CUSTOM_109 1234 -#define IMG_CUSTOM_109_EDITOR 1235 -#define IMG_CUSTOM_110 1236 -#define IMG_CUSTOM_110_EDITOR 1237 -#define IMG_CUSTOM_111 1238 -#define IMG_CUSTOM_111_EDITOR 1239 -#define IMG_CUSTOM_112 1240 -#define IMG_CUSTOM_112_EDITOR 1241 -#define IMG_CUSTOM_113 1242 -#define IMG_CUSTOM_113_EDITOR 1243 -#define IMG_CUSTOM_114 1244 -#define IMG_CUSTOM_114_EDITOR 1245 -#define IMG_CUSTOM_115 1246 -#define IMG_CUSTOM_115_EDITOR 1247 -#define IMG_CUSTOM_116 1248 -#define IMG_CUSTOM_116_EDITOR 1249 -#define IMG_CUSTOM_117 1250 -#define IMG_CUSTOM_117_EDITOR 1251 -#define IMG_CUSTOM_118 1252 -#define IMG_CUSTOM_118_EDITOR 1253 -#define IMG_CUSTOM_119 1254 -#define IMG_CUSTOM_119_EDITOR 1255 -#define IMG_CUSTOM_120 1256 -#define IMG_CUSTOM_120_EDITOR 1257 -#define IMG_CUSTOM_121 1258 -#define IMG_CUSTOM_121_EDITOR 1259 -#define IMG_CUSTOM_122 1260 -#define IMG_CUSTOM_122_EDITOR 1261 -#define IMG_CUSTOM_123 1262 -#define IMG_CUSTOM_123_EDITOR 1263 -#define IMG_CUSTOM_124 1264 -#define IMG_CUSTOM_124_EDITOR 1265 -#define IMG_CUSTOM_125 1266 -#define IMG_CUSTOM_125_EDITOR 1267 -#define IMG_CUSTOM_126 1268 -#define IMG_CUSTOM_126_EDITOR 1269 -#define IMG_CUSTOM_127 1270 -#define IMG_CUSTOM_127_EDITOR 1271 -#define IMG_CUSTOM_128 1272 -#define IMG_CUSTOM_128_EDITOR 1273 -#define IMG_CUSTOM_129 1274 -#define IMG_CUSTOM_129_EDITOR 1275 -#define IMG_CUSTOM_130 1276 -#define IMG_CUSTOM_130_EDITOR 1277 -#define IMG_CUSTOM_131 1278 -#define IMG_CUSTOM_131_EDITOR 1279 -#define IMG_CUSTOM_132 1280 -#define IMG_CUSTOM_132_EDITOR 1281 -#define IMG_CUSTOM_133 1282 -#define IMG_CUSTOM_133_EDITOR 1283 -#define IMG_CUSTOM_134 1284 -#define IMG_CUSTOM_134_EDITOR 1285 -#define IMG_CUSTOM_135 1286 -#define IMG_CUSTOM_135_EDITOR 1287 -#define IMG_CUSTOM_136 1288 -#define IMG_CUSTOM_136_EDITOR 1289 -#define IMG_CUSTOM_137 1290 -#define IMG_CUSTOM_137_EDITOR 1291 -#define IMG_CUSTOM_138 1292 -#define IMG_CUSTOM_138_EDITOR 1293 -#define IMG_CUSTOM_139 1294 -#define IMG_CUSTOM_139_EDITOR 1295 -#define IMG_CUSTOM_140 1296 -#define IMG_CUSTOM_140_EDITOR 1297 -#define IMG_CUSTOM_141 1298 -#define IMG_CUSTOM_141_EDITOR 1299 -#define IMG_CUSTOM_142 1300 -#define IMG_CUSTOM_142_EDITOR 1301 -#define IMG_CUSTOM_143 1302 -#define IMG_CUSTOM_143_EDITOR 1303 -#define IMG_CUSTOM_144 1304 -#define IMG_CUSTOM_144_EDITOR 1305 -#define IMG_CUSTOM_145 1306 -#define IMG_CUSTOM_145_EDITOR 1307 -#define IMG_CUSTOM_146 1308 -#define IMG_CUSTOM_146_EDITOR 1309 -#define IMG_CUSTOM_147 1310 -#define IMG_CUSTOM_147_EDITOR 1311 -#define IMG_CUSTOM_148 1312 -#define IMG_CUSTOM_148_EDITOR 1313 -#define IMG_CUSTOM_149 1314 -#define IMG_CUSTOM_149_EDITOR 1315 -#define IMG_CUSTOM_150 1316 -#define IMG_CUSTOM_150_EDITOR 1317 -#define IMG_CUSTOM_151 1318 -#define IMG_CUSTOM_151_EDITOR 1319 -#define IMG_CUSTOM_152 1320 -#define IMG_CUSTOM_152_EDITOR 1321 -#define IMG_CUSTOM_153 1322 -#define IMG_CUSTOM_153_EDITOR 1323 -#define IMG_CUSTOM_154 1324 -#define IMG_CUSTOM_154_EDITOR 1325 -#define IMG_CUSTOM_155 1326 -#define IMG_CUSTOM_155_EDITOR 1327 -#define IMG_CUSTOM_156 1328 -#define IMG_CUSTOM_156_EDITOR 1329 -#define IMG_CUSTOM_157 1330 -#define IMG_CUSTOM_157_EDITOR 1331 -#define IMG_CUSTOM_158 1332 -#define IMG_CUSTOM_158_EDITOR 1333 -#define IMG_CUSTOM_159 1334 -#define IMG_CUSTOM_159_EDITOR 1335 -#define IMG_CUSTOM_160 1336 -#define IMG_CUSTOM_160_EDITOR 1337 -#define IMG_CUSTOM_161 1338 -#define IMG_CUSTOM_161_EDITOR 1339 -#define IMG_CUSTOM_162 1340 -#define IMG_CUSTOM_162_EDITOR 1341 -#define IMG_CUSTOM_163 1342 -#define IMG_CUSTOM_163_EDITOR 1343 -#define IMG_CUSTOM_164 1344 -#define IMG_CUSTOM_164_EDITOR 1345 -#define IMG_CUSTOM_165 1346 -#define IMG_CUSTOM_165_EDITOR 1347 -#define IMG_CUSTOM_166 1348 -#define IMG_CUSTOM_166_EDITOR 1349 -#define IMG_CUSTOM_167 1350 -#define IMG_CUSTOM_167_EDITOR 1351 -#define IMG_CUSTOM_168 1352 -#define IMG_CUSTOM_168_EDITOR 1353 -#define IMG_CUSTOM_169 1354 -#define IMG_CUSTOM_169_EDITOR 1355 -#define IMG_CUSTOM_170 1356 -#define IMG_CUSTOM_170_EDITOR 1357 -#define IMG_CUSTOM_171 1358 -#define IMG_CUSTOM_171_EDITOR 1359 -#define IMG_CUSTOM_172 1360 -#define IMG_CUSTOM_172_EDITOR 1361 -#define IMG_CUSTOM_173 1362 -#define IMG_CUSTOM_173_EDITOR 1363 -#define IMG_CUSTOM_174 1364 -#define IMG_CUSTOM_174_EDITOR 1365 -#define IMG_CUSTOM_175 1366 -#define IMG_CUSTOM_175_EDITOR 1367 -#define IMG_CUSTOM_176 1368 -#define IMG_CUSTOM_176_EDITOR 1369 -#define IMG_CUSTOM_177 1370 -#define IMG_CUSTOM_177_EDITOR 1371 -#define IMG_CUSTOM_178 1372 -#define IMG_CUSTOM_178_EDITOR 1373 -#define IMG_CUSTOM_179 1374 -#define IMG_CUSTOM_179_EDITOR 1375 -#define IMG_CUSTOM_180 1376 -#define IMG_CUSTOM_180_EDITOR 1377 -#define IMG_CUSTOM_181 1378 -#define IMG_CUSTOM_181_EDITOR 1379 -#define IMG_CUSTOM_182 1380 -#define IMG_CUSTOM_182_EDITOR 1381 -#define IMG_CUSTOM_183 1382 -#define IMG_CUSTOM_183_EDITOR 1383 -#define IMG_CUSTOM_184 1384 -#define IMG_CUSTOM_184_EDITOR 1385 -#define IMG_CUSTOM_185 1386 -#define IMG_CUSTOM_185_EDITOR 1387 -#define IMG_CUSTOM_186 1388 -#define IMG_CUSTOM_186_EDITOR 1389 -#define IMG_CUSTOM_187 1390 -#define IMG_CUSTOM_187_EDITOR 1391 -#define IMG_CUSTOM_188 1392 -#define IMG_CUSTOM_188_EDITOR 1393 -#define IMG_CUSTOM_189 1394 -#define IMG_CUSTOM_189_EDITOR 1395 -#define IMG_CUSTOM_190 1396 -#define IMG_CUSTOM_190_EDITOR 1397 -#define IMG_CUSTOM_191 1398 -#define IMG_CUSTOM_191_EDITOR 1399 -#define IMG_CUSTOM_192 1400 -#define IMG_CUSTOM_192_EDITOR 1401 -#define IMG_CUSTOM_193 1402 -#define IMG_CUSTOM_193_EDITOR 1403 -#define IMG_CUSTOM_194 1404 -#define IMG_CUSTOM_194_EDITOR 1405 -#define IMG_CUSTOM_195 1406 -#define IMG_CUSTOM_195_EDITOR 1407 -#define IMG_CUSTOM_196 1408 -#define IMG_CUSTOM_196_EDITOR 1409 -#define IMG_CUSTOM_197 1410 -#define IMG_CUSTOM_197_EDITOR 1411 -#define IMG_CUSTOM_198 1412 -#define IMG_CUSTOM_198_EDITOR 1413 -#define IMG_CUSTOM_199 1414 -#define IMG_CUSTOM_199_EDITOR 1415 -#define IMG_CUSTOM_200 1416 -#define IMG_CUSTOM_200_EDITOR 1417 -#define IMG_CUSTOM_201 1418 -#define IMG_CUSTOM_201_EDITOR 1419 -#define IMG_CUSTOM_202 1420 -#define IMG_CUSTOM_202_EDITOR 1421 -#define IMG_CUSTOM_203 1422 -#define IMG_CUSTOM_203_EDITOR 1423 -#define IMG_CUSTOM_204 1424 -#define IMG_CUSTOM_204_EDITOR 1425 -#define IMG_CUSTOM_205 1426 -#define IMG_CUSTOM_205_EDITOR 1427 -#define IMG_CUSTOM_206 1428 -#define IMG_CUSTOM_206_EDITOR 1429 -#define IMG_CUSTOM_207 1430 -#define IMG_CUSTOM_207_EDITOR 1431 -#define IMG_CUSTOM_208 1432 -#define IMG_CUSTOM_208_EDITOR 1433 -#define IMG_CUSTOM_209 1434 -#define IMG_CUSTOM_209_EDITOR 1435 -#define IMG_CUSTOM_210 1436 -#define IMG_CUSTOM_210_EDITOR 1437 -#define IMG_CUSTOM_211 1438 -#define IMG_CUSTOM_211_EDITOR 1439 -#define IMG_CUSTOM_212 1440 -#define IMG_CUSTOM_212_EDITOR 1441 -#define IMG_CUSTOM_213 1442 -#define IMG_CUSTOM_213_EDITOR 1443 -#define IMG_CUSTOM_214 1444 -#define IMG_CUSTOM_214_EDITOR 1445 -#define IMG_CUSTOM_215 1446 -#define IMG_CUSTOM_215_EDITOR 1447 -#define IMG_CUSTOM_216 1448 -#define IMG_CUSTOM_216_EDITOR 1449 -#define IMG_CUSTOM_217 1450 -#define IMG_CUSTOM_217_EDITOR 1451 -#define IMG_CUSTOM_218 1452 -#define IMG_CUSTOM_218_EDITOR 1453 -#define IMG_CUSTOM_219 1454 -#define IMG_CUSTOM_219_EDITOR 1455 -#define IMG_CUSTOM_220 1456 -#define IMG_CUSTOM_220_EDITOR 1457 -#define IMG_CUSTOM_221 1458 -#define IMG_CUSTOM_221_EDITOR 1459 -#define IMG_CUSTOM_222 1460 -#define IMG_CUSTOM_222_EDITOR 1461 -#define IMG_CUSTOM_223 1462 -#define IMG_CUSTOM_223_EDITOR 1463 -#define IMG_CUSTOM_224 1464 -#define IMG_CUSTOM_224_EDITOR 1465 -#define IMG_CUSTOM_225 1466 -#define IMG_CUSTOM_225_EDITOR 1467 -#define IMG_CUSTOM_226 1468 -#define IMG_CUSTOM_226_EDITOR 1469 -#define IMG_CUSTOM_227 1470 -#define IMG_CUSTOM_227_EDITOR 1471 -#define IMG_CUSTOM_228 1472 -#define IMG_CUSTOM_228_EDITOR 1473 -#define IMG_CUSTOM_229 1474 -#define IMG_CUSTOM_229_EDITOR 1475 -#define IMG_CUSTOM_230 1476 -#define IMG_CUSTOM_230_EDITOR 1477 -#define IMG_CUSTOM_231 1478 -#define IMG_CUSTOM_231_EDITOR 1479 -#define IMG_CUSTOM_232 1480 -#define IMG_CUSTOM_232_EDITOR 1481 -#define IMG_CUSTOM_233 1482 -#define IMG_CUSTOM_233_EDITOR 1483 -#define IMG_CUSTOM_234 1484 -#define IMG_CUSTOM_234_EDITOR 1485 -#define IMG_CUSTOM_235 1486 -#define IMG_CUSTOM_235_EDITOR 1487 -#define IMG_CUSTOM_236 1488 -#define IMG_CUSTOM_236_EDITOR 1489 -#define IMG_CUSTOM_237 1490 -#define IMG_CUSTOM_237_EDITOR 1491 -#define IMG_CUSTOM_238 1492 -#define IMG_CUSTOM_238_EDITOR 1493 -#define IMG_CUSTOM_239 1494 -#define IMG_CUSTOM_239_EDITOR 1495 -#define IMG_CUSTOM_240 1496 -#define IMG_CUSTOM_240_EDITOR 1497 -#define IMG_CUSTOM_241 1498 -#define IMG_CUSTOM_241_EDITOR 1499 -#define IMG_CUSTOM_242 1500 -#define IMG_CUSTOM_242_EDITOR 1501 -#define IMG_CUSTOM_243 1502 -#define IMG_CUSTOM_243_EDITOR 1503 -#define IMG_CUSTOM_244 1504 -#define IMG_CUSTOM_244_EDITOR 1505 -#define IMG_CUSTOM_245 1506 -#define IMG_CUSTOM_245_EDITOR 1507 -#define IMG_CUSTOM_246 1508 -#define IMG_CUSTOM_246_EDITOR 1509 -#define IMG_CUSTOM_247 1510 -#define IMG_CUSTOM_247_EDITOR 1511 -#define IMG_CUSTOM_248 1512 -#define IMG_CUSTOM_248_EDITOR 1513 -#define IMG_CUSTOM_249 1514 -#define IMG_CUSTOM_249_EDITOR 1515 -#define IMG_CUSTOM_250 1516 -#define IMG_CUSTOM_250_EDITOR 1517 -#define IMG_CUSTOM_251 1518 -#define IMG_CUSTOM_251_EDITOR 1519 -#define IMG_CUSTOM_252 1520 -#define IMG_CUSTOM_252_EDITOR 1521 -#define IMG_CUSTOM_253 1522 -#define IMG_CUSTOM_253_EDITOR 1523 -#define IMG_CUSTOM_254 1524 -#define IMG_CUSTOM_254_EDITOR 1525 -#define IMG_CUSTOM_255 1526 -#define IMG_CUSTOM_255_EDITOR 1527 -#define IMG_CUSTOM_256 1528 -#define IMG_CUSTOM_256_EDITOR 1529 -#define IMG_GROUP_1 1530 -#define IMG_GROUP_1_EDITOR 1531 -#define IMG_GROUP_2 1532 -#define IMG_GROUP_2_EDITOR 1533 -#define IMG_GROUP_3 1534 -#define IMG_GROUP_3_EDITOR 1535 -#define IMG_GROUP_4 1536 -#define IMG_GROUP_4_EDITOR 1537 -#define IMG_GROUP_5 1538 -#define IMG_GROUP_5_EDITOR 1539 -#define IMG_GROUP_6 1540 -#define IMG_GROUP_6_EDITOR 1541 -#define IMG_GROUP_7 1542 -#define IMG_GROUP_7_EDITOR 1543 -#define IMG_GROUP_8 1544 -#define IMG_GROUP_8_EDITOR 1545 -#define IMG_GROUP_9 1546 -#define IMG_GROUP_9_EDITOR 1547 -#define IMG_GROUP_10 1548 -#define IMG_GROUP_10_EDITOR 1549 -#define IMG_GROUP_11 1550 -#define IMG_GROUP_11_EDITOR 1551 -#define IMG_GROUP_12 1552 -#define IMG_GROUP_12_EDITOR 1553 -#define IMG_GROUP_13 1554 -#define IMG_GROUP_13_EDITOR 1555 -#define IMG_GROUP_14 1556 -#define IMG_GROUP_14_EDITOR 1557 -#define IMG_GROUP_15 1558 -#define IMG_GROUP_15_EDITOR 1559 -#define IMG_GROUP_16 1560 -#define IMG_GROUP_16_EDITOR 1561 -#define IMG_GROUP_17 1562 -#define IMG_GROUP_17_EDITOR 1563 -#define IMG_GROUP_18 1564 -#define IMG_GROUP_18_EDITOR 1565 -#define IMG_GROUP_19 1566 -#define IMG_GROUP_19_EDITOR 1567 -#define IMG_GROUP_20 1568 -#define IMG_GROUP_20_EDITOR 1569 -#define IMG_GROUP_21 1570 -#define IMG_GROUP_21_EDITOR 1571 -#define IMG_GROUP_22 1572 -#define IMG_GROUP_22_EDITOR 1573 -#define IMG_GROUP_23 1574 -#define IMG_GROUP_23_EDITOR 1575 -#define IMG_GROUP_24 1576 -#define IMG_GROUP_24_EDITOR 1577 -#define IMG_GROUP_25 1578 -#define IMG_GROUP_25_EDITOR 1579 -#define IMG_GROUP_26 1580 -#define IMG_GROUP_26_EDITOR 1581 -#define IMG_GROUP_27 1582 -#define IMG_GROUP_27_EDITOR 1583 -#define IMG_GROUP_28 1584 -#define IMG_GROUP_28_EDITOR 1585 -#define IMG_GROUP_29 1586 -#define IMG_GROUP_29_EDITOR 1587 -#define IMG_GROUP_30 1588 -#define IMG_GROUP_30_EDITOR 1589 -#define IMG_GROUP_31 1590 -#define IMG_GROUP_31_EDITOR 1591 -#define IMG_GROUP_32 1592 -#define IMG_GROUP_32_EDITOR 1593 -#define IMG_EMC_OBJECT 1594 -#define IMG_EMC_SPRITE 1595 -#define IMG_TOON_1 1596 -#define IMG_TOON_2 1597 -#define IMG_TOON_3 1598 -#define IMG_TOON_4 1599 -#define IMG_TOON_5 1600 -#define IMG_TOON_6 1601 -#define IMG_TOON_7 1602 -#define IMG_TOON_8 1603 -#define IMG_TOON_9 1604 -#define IMG_TOON_10 1605 -#define IMG_TOON_11 1606 -#define IMG_TOON_12 1607 -#define IMG_TOON_13 1608 -#define IMG_TOON_14 1609 -#define IMG_TOON_15 1610 -#define IMG_TOON_16 1611 -#define IMG_TOON_17 1612 -#define IMG_TOON_18 1613 -#define IMG_TOON_19 1614 -#define IMG_TOON_20 1615 -#define IMG_MENU_CALIBRATE_RED 1616 -#define IMG_MENU_CALIBRATE_BLUE 1617 -#define IMG_MENU_CALIBRATE_YELLOW 1618 -#define IMG_MENU_BUTTON 1619 -#define IMG_MENU_BUTTON_ACTIVE 1620 -#define IMG_MENU_BUTTON_LEFT 1621 -#define IMG_MENU_BUTTON_LEFT_ACTIVE 1622 -#define IMG_MENU_BUTTON_RIGHT 1623 -#define IMG_MENU_BUTTON_RIGHT_ACTIVE 1624 -#define IMG_MENU_BUTTON_UP 1625 -#define IMG_MENU_BUTTON_UP_ACTIVE 1626 -#define IMG_MENU_BUTTON_DOWN 1627 -#define IMG_MENU_BUTTON_DOWN_ACTIVE 1628 -#define IMG_MENU_BUTTON_ENTER_MENU 1629 -#define IMG_MENU_BUTTON_ENTER_MENU_ACTIVE 1630 -#define IMG_MENU_BUTTON_LEAVE_MENU 1631 -#define IMG_MENU_BUTTON_LEAVE_MENU_ACTIVE 1632 -#define IMG_MENU_BUTTON_NEXT_LEVEL 1633 -#define IMG_MENU_BUTTON_NEXT_LEVEL_ACTIVE 1634 -#define IMG_MENU_BUTTON_PREV_LEVEL 1635 -#define IMG_MENU_BUTTON_PREV_LEVEL_ACTIVE 1636 -#define IMG_MENU_SCROLLBAR 1637 -#define IMG_MENU_SCROLLBAR_ACTIVE 1638 -#define IMG_FONT_INITIAL_1 1639 -#define IMG_FONT_INITIAL_2 1640 -#define IMG_FONT_INITIAL_3 1641 -#define IMG_FONT_INITIAL_4 1642 -#define IMG_FONT_TITLE_1 1643 -#define IMG_FONT_TITLE_2 1644 -#define IMG_FONT_MENU_1 1645 -#define IMG_FONT_MENU_1_ACTIVE 1646 -#define IMG_FONT_MENU_2 1647 -#define IMG_FONT_MENU_2_ACTIVE 1648 -#define IMG_FONT_TEXT_1 1649 -#define IMG_FONT_TEXT_1_LEVELS 1650 -#define IMG_FONT_TEXT_1_PREVIEW 1651 -#define IMG_FONT_TEXT_1_SCORES 1652 -#define IMG_FONT_TEXT_1_ACTIVE_SCORES 1653 -#define IMG_FONT_TEXT_2 1654 -#define IMG_FONT_TEXT_2_LEVELS 1655 -#define IMG_FONT_TEXT_2_PREVIEW 1656 -#define IMG_FONT_TEXT_2_SCORES 1657 -#define IMG_FONT_TEXT_2_ACTIVE_SCORES 1658 -#define IMG_FONT_TEXT_3 1659 -#define IMG_FONT_TEXT_3_LEVELS 1660 -#define IMG_FONT_TEXT_3_PREVIEW 1661 -#define IMG_FONT_TEXT_3_SCORES 1662 -#define IMG_FONT_TEXT_3_ACTIVE_SCORES 1663 -#define IMG_FONT_TEXT_4 1664 -#define IMG_FONT_TEXT_4_LEVELS 1665 -#define IMG_FONT_TEXT_4_SCORES 1666 -#define IMG_FONT_TEXT_4_ACTIVE_SCORES 1667 -#define IMG_FONT_ENVELOPE_1 1668 -#define IMG_FONT_ENVELOPE_2 1669 -#define IMG_FONT_ENVELOPE_3 1670 -#define IMG_FONT_ENVELOPE_4 1671 -#define IMG_FONT_INPUT_1 1672 -#define IMG_FONT_INPUT_1_MAIN 1673 -#define IMG_FONT_INPUT_1_ACTIVE 1674 -#define IMG_FONT_INPUT_1_ACTIVE_MAIN 1675 -#define IMG_FONT_INPUT_1_ACTIVE_SETUP 1676 -#define IMG_FONT_INPUT_2 1677 -#define IMG_FONT_INPUT_2_ACTIVE 1678 -#define IMG_FONT_OPTION_OFF 1679 -#define IMG_FONT_OPTION_ON 1680 -#define IMG_FONT_VALUE_1 1681 -#define IMG_FONT_VALUE_2 1682 -#define IMG_FONT_VALUE_OLD 1683 -#define IMG_FONT_LEVEL_NUMBER 1684 -#define IMG_FONT_TAPE_RECORDER 1685 -#define IMG_FONT_GAME_INFO 1686 -#define IMG_GLOBAL_BORDER 1687 -#define IMG_GLOBAL_DOOR 1688 -#define IMG_EDITOR_ELEMENT_BORDER 1689 -#define IMG_EDITOR_ELEMENT_BORDER_INPUT 1690 -#define IMG_EDITOR_CASCADE_LIST 1691 -#define IMG_EDITOR_CASCADE_LIST_ACTIVE 1692 -#define IMG_BACKGROUND_ENVELOPE_1 1693 -#define IMG_BACKGROUND_ENVELOPE_2 1694 -#define IMG_BACKGROUND_ENVELOPE_3 1695 -#define IMG_BACKGROUND_ENVELOPE_4 1696 -#define IMG_BACKGROUND 1697 -#define IMG_BACKGROUND_TITLE 1698 -#define IMG_BACKGROUND_MESSAGE 1699 -#define IMG_BACKGROUND_MAIN 1700 -#define IMG_BACKGROUND_LEVELS 1701 -#define IMG_BACKGROUND_SCORES 1702 -#define IMG_BACKGROUND_EDITOR 1703 -#define IMG_BACKGROUND_INFO 1704 -#define IMG_BACKGROUND_INFO_ELEMENTS 1705 -#define IMG_BACKGROUND_INFO_MUSIC 1706 -#define IMG_BACKGROUND_INFO_CREDITS 1707 -#define IMG_BACKGROUND_INFO_PROGRAM 1708 -#define IMG_BACKGROUND_INFO_LEVELSET 1709 -#define IMG_BACKGROUND_SETUP 1710 -#define IMG_BACKGROUND_DOOR 1711 -#define IMG_TITLESCREEN_INITIAL_1 1712 -#define IMG_TITLESCREEN_INITIAL_2 1713 -#define IMG_TITLESCREEN_INITIAL_3 1714 -#define IMG_TITLESCREEN_INITIAL_4 1715 -#define IMG_TITLESCREEN_INITIAL_5 1716 -#define IMG_TITLESCREEN_1 1717 -#define IMG_TITLESCREEN_2 1718 -#define IMG_TITLESCREEN_3 1719 -#define IMG_TITLESCREEN_4 1720 -#define IMG_TITLESCREEN_5 1721 +#define IMG_DC_MAGIC_WALL 245 +#define IMG_DC_MAGIC_WALL_ACTIVE 246 +#define IMG_DC_MAGIC_WALL_FILLING 247 +#define IMG_DC_MAGIC_WALL_FULL 248 +#define IMG_DC_MAGIC_WALL_EMPTYING 249 +#define IMG_DC_MAGIC_WALL_DEAD 250 +#define IMG_QUICKSAND_EMPTY 251 +#define IMG_QUICKSAND_FILLING 252 +#define IMG_QUICKSAND_FULL 253 +#define IMG_QUICKSAND_FULL_EDITOR 254 +#define IMG_QUICKSAND_EMPTYING 255 +#define IMG_QUICKSAND_FAST_EMPTY 256 +#define IMG_QUICKSAND_FAST_FILLING 257 +#define IMG_QUICKSAND_FAST_FULL 258 +#define IMG_QUICKSAND_FAST_FULL_EDITOR 259 +#define IMG_QUICKSAND_FAST_EMPTYING 260 +#define IMG_ACID_POOL_TOPLEFT 261 +#define IMG_ACID_POOL_TOPRIGHT 262 +#define IMG_ACID_POOL_BOTTOMLEFT 263 +#define IMG_ACID_POOL_BOTTOM 264 +#define IMG_ACID_POOL_BOTTOMRIGHT 265 +#define IMG_ACID 266 +#define IMG_ACID_SPLASH_LEFT 267 +#define IMG_ACID_SPLASH_RIGHT 268 +#define IMG_AMOEBA_DROP 269 +#define IMG_AMOEBA_GROWING 270 +#define IMG_AMOEBA_SHRINKING 271 +#define IMG_AMOEBA_WET 272 +#define IMG_AMOEBA_WET_EDITOR 273 +#define IMG_AMOEBA_DROPPING 274 +#define IMG_AMOEBA_DRY 275 +#define IMG_AMOEBA_FULL 276 +#define IMG_AMOEBA_FULL_EDITOR 277 +#define IMG_AMOEBA_DEAD 278 +#define IMG_AMOEBA_DEAD_EDITOR 279 +#define IMG_EM_KEY_1 280 +#define IMG_EM_KEY_2 281 +#define IMG_EM_KEY_3 282 +#define IMG_EM_KEY_4 283 +#define IMG_DC_KEY_WHITE 284 +#define IMG_EM_GATE_1 285 +#define IMG_EM_GATE_2 286 +#define IMG_EM_GATE_3 287 +#define IMG_EM_GATE_4 288 +#define IMG_DC_GATE_WHITE 289 +#define IMG_EM_GATE_1_GRAY 290 +#define IMG_EM_GATE_1_GRAY_EDITOR 291 +#define IMG_EM_GATE_1_GRAY_ACTIVE 292 +#define IMG_EM_GATE_2_GRAY 293 +#define IMG_EM_GATE_2_GRAY_EDITOR 294 +#define IMG_EM_GATE_2_GRAY_ACTIVE 295 +#define IMG_EM_GATE_3_GRAY 296 +#define IMG_EM_GATE_3_GRAY_EDITOR 297 +#define IMG_EM_GATE_3_GRAY_ACTIVE 298 +#define IMG_EM_GATE_4_GRAY 299 +#define IMG_EM_GATE_4_GRAY_EDITOR 300 +#define IMG_EM_GATE_4_GRAY_ACTIVE 301 +#define IMG_DC_GATE_WHITE_GRAY 302 +#define IMG_DC_GATE_WHITE_GRAY_EDITOR 303 +#define IMG_DC_GATE_WHITE_GRAY_ACTIVE 304 +#define IMG_DC_GATE_FAKE_GRAY 305 +#define IMG_EXIT_CLOSED 306 +#define IMG_EXIT_OPENING 307 +#define IMG_EXIT_OPEN 308 +#define IMG_EXIT_CLOSING 309 +#define IMG_STEEL_EXIT_CLOSED 310 +#define IMG_STEEL_EXIT_OPENING 311 +#define IMG_STEEL_EXIT_OPEN 312 +#define IMG_STEEL_EXIT_CLOSING 313 +#define IMG_EM_EXIT_CLOSED 314 +#define IMG_EM_EXIT_OPENING 315 +#define IMG_EM_EXIT_OPEN 316 +#define IMG_EM_EXIT_CLOSING 317 +#define IMG_EM_STEEL_EXIT_CLOSED 318 +#define IMG_EM_STEEL_EXIT_OPENING 319 +#define IMG_EM_STEEL_EXIT_OPEN 320 +#define IMG_EM_STEEL_EXIT_CLOSING 321 +#define IMG_BALLOON 322 +#define IMG_BALLOON_MOVING 323 +#define IMG_BALLOON_PUSHING 324 +#define IMG_BALLOON_SWITCH_LEFT 325 +#define IMG_BALLOON_SWITCH_RIGHT 326 +#define IMG_BALLOON_SWITCH_UP 327 +#define IMG_BALLOON_SWITCH_DOWN 328 +#define IMG_BALLOON_SWITCH_ANY 329 +#define IMG_BALLOON_SWITCH_NONE 330 +#define IMG_SPRING 331 +#define IMG_EMC_STEELWALL_1 332 +#define IMG_EMC_STEELWALL_2 333 +#define IMG_EMC_STEELWALL_3 334 +#define IMG_EMC_STEELWALL_4 335 +#define IMG_EMC_WALL_1 336 +#define IMG_EMC_WALL_2 337 +#define IMG_EMC_WALL_3 338 +#define IMG_EMC_WALL_4 339 +#define IMG_EMC_WALL_5 340 +#define IMG_EMC_WALL_6 341 +#define IMG_EMC_WALL_7 342 +#define IMG_EMC_WALL_8 343 +#define IMG_INVISIBLE_STEELWALL 344 +#define IMG_INVISIBLE_STEELWALL_EDITOR 345 +#define IMG_INVISIBLE_STEELWALL_ACTIVE 346 +#define IMG_INVISIBLE_WALL 347 +#define IMG_INVISIBLE_WALL_EDITOR 348 +#define IMG_INVISIBLE_WALL_ACTIVE 349 +#define IMG_INVISIBLE_SAND 350 +#define IMG_INVISIBLE_SAND_EDITOR 351 +#define IMG_INVISIBLE_SAND_ACTIVE 352 +#define IMG_INVISIBLE_SAND_ACTIVE_CRUMBLED 353 +#define IMG_INVISIBLE_SAND_ACTIVE_DIGGING_LEFT 354 +#define IMG_INVISIBLE_SAND_ACTIVE_DIGGING_RIGHT 355 +#define IMG_INVISIBLE_SAND_ACTIVE_DIGGING_UP 356 +#define IMG_INVISIBLE_SAND_ACTIVE_DIGGING_DOWN 357 +#define IMG_INVISIBLE_SAND_ACTIVE_DIGGING_LEFT_CRUMBLED 358 +#define IMG_INVISIBLE_SAND_ACTIVE_DIGGING_RIGHT_CRUMBLED 359 +#define IMG_INVISIBLE_SAND_ACTIVE_DIGGING_UP_CRUMBLED 360 +#define IMG_INVISIBLE_SAND_ACTIVE_DIGGING_DOWN_CRUMBLED 361 +#define IMG_CONVEYOR_BELT_1_MIDDLE 362 +#define IMG_CONVEYOR_BELT_1_MIDDLE_ACTIVE 363 +#define IMG_CONVEYOR_BELT_1_LEFT 364 +#define IMG_CONVEYOR_BELT_1_LEFT_ACTIVE 365 +#define IMG_CONVEYOR_BELT_1_RIGHT 366 +#define IMG_CONVEYOR_BELT_1_RIGHT_ACTIVE 367 +#define IMG_CONVEYOR_BELT_1_SWITCH_LEFT 368 +#define IMG_CONVEYOR_BELT_1_SWITCH_MIDDLE 369 +#define IMG_CONVEYOR_BELT_1_SWITCH_RIGHT 370 +#define IMG_CONVEYOR_BELT_2_MIDDLE 371 +#define IMG_CONVEYOR_BELT_2_MIDDLE_ACTIVE 372 +#define IMG_CONVEYOR_BELT_2_LEFT 373 +#define IMG_CONVEYOR_BELT_2_LEFT_ACTIVE 374 +#define IMG_CONVEYOR_BELT_2_RIGHT 375 +#define IMG_CONVEYOR_BELT_2_RIGHT_ACTIVE 376 +#define IMG_CONVEYOR_BELT_2_SWITCH_LEFT 377 +#define IMG_CONVEYOR_BELT_2_SWITCH_MIDDLE 378 +#define IMG_CONVEYOR_BELT_2_SWITCH_RIGHT 379 +#define IMG_CONVEYOR_BELT_3_MIDDLE 380 +#define IMG_CONVEYOR_BELT_3_MIDDLE_ACTIVE 381 +#define IMG_CONVEYOR_BELT_3_LEFT 382 +#define IMG_CONVEYOR_BELT_3_LEFT_ACTIVE 383 +#define IMG_CONVEYOR_BELT_3_RIGHT 384 +#define IMG_CONVEYOR_BELT_3_RIGHT_ACTIVE 385 +#define IMG_CONVEYOR_BELT_3_SWITCH_LEFT 386 +#define IMG_CONVEYOR_BELT_3_SWITCH_MIDDLE 387 +#define IMG_CONVEYOR_BELT_3_SWITCH_RIGHT 388 +#define IMG_CONVEYOR_BELT_4_MIDDLE 389 +#define IMG_CONVEYOR_BELT_4_MIDDLE_ACTIVE 390 +#define IMG_CONVEYOR_BELT_4_LEFT 391 +#define IMG_CONVEYOR_BELT_4_LEFT_ACTIVE 392 +#define IMG_CONVEYOR_BELT_4_RIGHT 393 +#define IMG_CONVEYOR_BELT_4_RIGHT_ACTIVE 394 +#define IMG_CONVEYOR_BELT_4_SWITCH_LEFT 395 +#define IMG_CONVEYOR_BELT_4_SWITCH_MIDDLE 396 +#define IMG_CONVEYOR_BELT_4_SWITCH_RIGHT 397 +#define IMG_SWITCHGATE_SWITCH_UP 398 +#define IMG_SWITCHGATE_SWITCH_DOWN 399 +#define IMG_DC_SWITCHGATE_SWITCH_UP 400 +#define IMG_DC_SWITCHGATE_SWITCH_DOWN 401 +#define IMG_LIGHT_SWITCH 402 +#define IMG_LIGHT_SWITCH_ACTIVE 403 +#define IMG_TIMEGATE_SWITCH 404 +#define IMG_TIMEGATE_SWITCH_ACTIVE 405 +#define IMG_DC_TIMEGATE_SWITCH 406 +#define IMG_DC_TIMEGATE_SWITCH_ACTIVE 407 +#define IMG_ENVELOPE_1 408 +#define IMG_ENVELOPE_1_COLLECTING 409 +#define IMG_ENVELOPE_2 410 +#define IMG_ENVELOPE_2_COLLECTING 411 +#define IMG_ENVELOPE_3 412 +#define IMG_ENVELOPE_3_COLLECTING 413 +#define IMG_ENVELOPE_4 414 +#define IMG_ENVELOPE_4_COLLECTING 415 +#define IMG_SIGN_RADIOACTIVITY 416 +#define IMG_SIGN_GIVE_WAY 417 +#define IMG_SIGN_NO_ENTRY 418 +#define IMG_SIGN_EMERGENCY_EXIT 419 +#define IMG_SIGN_YIN_YANG 420 +#define IMG_SIGN_EXCLAMATION 421 +#define IMG_SIGN_STOP 422 +#define IMG_SIGN_PARKING 423 +#define IMG_SIGN_WHEELCHAIR 424 +#define IMG_SIGN_ENTRY_FORBIDDEN 425 +#define IMG_SPERMS 426 +#define IMG_BULLET 427 +#define IMG_HEART 428 +#define IMG_CROSS 429 +#define IMG_FRANKIE 430 +#define IMG_SIGN_SPERMS 431 +#define IMG_SIGN_BULLET 432 +#define IMG_SIGN_HEART 433 +#define IMG_SIGN_CROSS 434 +#define IMG_SIGN_FRANKIE 435 +#define IMG_LANDMINE 436 +#define IMG_DC_LANDMINE 437 +#define IMG_STEELWALL_SLIPPERY 438 +#define IMG_EXTRA_TIME 439 +#define IMG_SHIELD_NORMAL 440 +#define IMG_SHIELD_NORMAL_ACTIVE 441 +#define IMG_SHIELD_DEADLY 442 +#define IMG_SHIELD_DEADLY_ACTIVE 443 +#define IMG_SWITCHGATE_CLOSED 444 +#define IMG_SWITCHGATE_OPENING 445 +#define IMG_SWITCHGATE_OPEN 446 +#define IMG_SWITCHGATE_CLOSING 447 +#define IMG_TIMEGATE_CLOSED 448 +#define IMG_TIMEGATE_OPENING 449 +#define IMG_TIMEGATE_OPEN 450 +#define IMG_TIMEGATE_CLOSING 451 +#define IMG_PEARL 452 +#define IMG_PEARL_BREAKING 453 +#define IMG_CRYSTAL 454 +#define IMG_WALL_PEARL 455 +#define IMG_WALL_CRYSTAL 456 +#define IMG_DC_STEELWALL_1_LEFT 457 +#define IMG_DC_STEELWALL_1_RIGHT 458 +#define IMG_DC_STEELWALL_1_TOP 459 +#define IMG_DC_STEELWALL_1_BOTTOM 460 +#define IMG_DC_STEELWALL_1_HORIZONTAL 461 +#define IMG_DC_STEELWALL_1_VERTICAL 462 +#define IMG_DC_STEELWALL_1_TOPLEFT 463 +#define IMG_DC_STEELWALL_1_TOPRIGHT 464 +#define IMG_DC_STEELWALL_1_BOTTOMLEFT 465 +#define IMG_DC_STEELWALL_1_BOTTOMRIGHT 466 +#define IMG_DC_STEELWALL_1_TOPLEFT_2 467 +#define IMG_DC_STEELWALL_1_TOPRIGHT_2 468 +#define IMG_DC_STEELWALL_1_BOTTOMLEFT_2 469 +#define IMG_DC_STEELWALL_1_BOTTOMRIGHT_2 470 +#define IMG_DC_STEELWALL_2_LEFT 471 +#define IMG_DC_STEELWALL_2_RIGHT 472 +#define IMG_DC_STEELWALL_2_TOP 473 +#define IMG_DC_STEELWALL_2_BOTTOM 474 +#define IMG_DC_STEELWALL_2_HORIZONTAL 475 +#define IMG_DC_STEELWALL_2_VERTICAL 476 +#define IMG_DC_STEELWALL_2_MIDDLE 477 +#define IMG_DC_STEELWALL_2_SINGLE 478 +#define IMG_TUBE_RIGHT_DOWN 479 +#define IMG_TUBE_HORIZONTAL_DOWN 480 +#define IMG_TUBE_LEFT_DOWN 481 +#define IMG_TUBE_HORIZONTAL 482 +#define IMG_TUBE_VERTICAL_RIGHT 483 +#define IMG_TUBE_ANY 484 +#define IMG_TUBE_VERTICAL_LEFT 485 +#define IMG_TUBE_VERTICAL 486 +#define IMG_TUBE_RIGHT_UP 487 +#define IMG_TUBE_HORIZONTAL_UP 488 +#define IMG_TUBE_LEFT_UP 489 +#define IMG_TRAP 490 +#define IMG_TRAP_ACTIVE 491 +#define IMG_DX_SUPABOMB 492 +#define IMG_KEY_1 493 +#define IMG_KEY_1_EDITOR 494 +#define IMG_KEY_2 495 +#define IMG_KEY_2_EDITOR 496 +#define IMG_KEY_3 497 +#define IMG_KEY_3_EDITOR 498 +#define IMG_KEY_4 499 +#define IMG_KEY_4_EDITOR 500 +#define IMG_GATE_1 501 +#define IMG_GATE_2 502 +#define IMG_GATE_3 503 +#define IMG_GATE_4 504 +#define IMG_GATE_1_GRAY 505 +#define IMG_GATE_1_GRAY_EDITOR 506 +#define IMG_GATE_1_GRAY_ACTIVE 507 +#define IMG_GATE_2_GRAY 508 +#define IMG_GATE_2_GRAY_EDITOR 509 +#define IMG_GATE_2_GRAY_ACTIVE 510 +#define IMG_GATE_3_GRAY 511 +#define IMG_GATE_3_GRAY_EDITOR 512 +#define IMG_GATE_3_GRAY_ACTIVE 513 +#define IMG_GATE_4_GRAY 514 +#define IMG_GATE_4_GRAY_EDITOR 515 +#define IMG_GATE_4_GRAY_ACTIVE 516 +#define IMG_GAME_OF_LIFE 517 +#define IMG_BIOMAZE 518 +#define IMG_PACMAN 519 +#define IMG_PACMAN_RIGHT 520 +#define IMG_PACMAN_UP 521 +#define IMG_PACMAN_LEFT 522 +#define IMG_PACMAN_DOWN 523 +#define IMG_PACMAN_TURNING_FROM_RIGHT 524 +#define IMG_PACMAN_TURNING_FROM_UP 525 +#define IMG_PACMAN_TURNING_FROM_LEFT 526 +#define IMG_PACMAN_TURNING_FROM_DOWN 527 +#define IMG_LAMP 528 +#define IMG_LAMP_EDITOR 529 +#define IMG_LAMP_ACTIVE 530 +#define IMG_TIME_ORB_FULL 531 +#define IMG_TIME_ORB_EMPTY 532 +#define IMG_EMERALD_YELLOW 533 +#define IMG_EMERALD_YELLOW_MOVING 534 +#define IMG_EMERALD_YELLOW_FALLING 535 +#define IMG_EMERALD_RED 536 +#define IMG_EMERALD_RED_MOVING 537 +#define IMG_EMERALD_RED_FALLING 538 +#define IMG_EMERALD_PURPLE 539 +#define IMG_EMERALD_PURPLE_MOVING 540 +#define IMG_EMERALD_PURPLE_FALLING 541 +#define IMG_WALL_EMERALD_YELLOW 542 +#define IMG_WALL_EMERALD_RED 543 +#define IMG_WALL_EMERALD_PURPLE 544 +#define IMG_WALL_BD_DIAMOND 545 +#define IMG_EXPANDABLE_WALL 546 +#define IMG_EXPANDABLE_WALL_HORIZONTAL 547 +#define IMG_EXPANDABLE_WALL_HORIZONTAL_EDITOR 548 +#define IMG_EXPANDABLE_WALL_VERTICAL 549 +#define IMG_EXPANDABLE_WALL_VERTICAL_EDITOR 550 +#define IMG_EXPANDABLE_WALL_ANY 551 +#define IMG_EXPANDABLE_WALL_ANY_EDITOR 552 +#define IMG_EXPANDABLE_STEELWALL_HORIZONTAL 553 +#define IMG_EXPANDABLE_STEELWALL_HORIZONTAL_EDITOR 554 +#define IMG_EXPANDABLE_STEELWALL_VERTICAL 555 +#define IMG_EXPANDABLE_STEELWALL_VERTICAL_EDITOR 556 +#define IMG_EXPANDABLE_STEELWALL_ANY 557 +#define IMG_EXPANDABLE_STEELWALL_ANY_EDITOR 558 +#define IMG_BD_EXPANDABLE_WALL 559 +#define IMG_BD_EXPANDABLE_WALL_EDITOR 560 +#define IMG_EXPANDABLE_WALL_GROWING_LEFT 561 +#define IMG_EXPANDABLE_WALL_GROWING_RIGHT 562 +#define IMG_EXPANDABLE_WALL_GROWING_UP 563 +#define IMG_EXPANDABLE_WALL_GROWING_DOWN 564 +#define IMG_EXPANDABLE_STEELWALL_GROWING_LEFT 565 +#define IMG_EXPANDABLE_STEELWALL_GROWING_RIGHT 566 +#define IMG_EXPANDABLE_STEELWALL_GROWING_UP 567 +#define IMG_EXPANDABLE_STEELWALL_GROWING_DOWN 568 +#define IMG_BLACK_ORB 569 +#define IMG_SPEED_PILL 570 +#define IMG_DARK_YAMYAM 571 +#define IMG_DYNABOMB 572 +#define IMG_DYNABOMB_ACTIVE 573 +#define IMG_DYNABOMB_PLAYER_1 574 +#define IMG_DYNABOMB_PLAYER_1_ACTIVE 575 +#define IMG_DYNABOMB_PLAYER_2 576 +#define IMG_DYNABOMB_PLAYER_2_ACTIVE 577 +#define IMG_DYNABOMB_PLAYER_3 578 +#define IMG_DYNABOMB_PLAYER_3_ACTIVE 579 +#define IMG_DYNABOMB_PLAYER_4 580 +#define IMG_DYNABOMB_PLAYER_4_ACTIVE 581 +#define IMG_DYNABOMB_INCREASE_NUMBER 582 +#define IMG_DYNABOMB_INCREASE_SIZE 583 +#define IMG_DYNABOMB_INCREASE_POWER 584 +#define IMG_PIG 585 +#define IMG_PIG_DOWN 586 +#define IMG_PIG_UP 587 +#define IMG_PIG_LEFT 588 +#define IMG_PIG_RIGHT 589 +#define IMG_PIG_MOVING_DOWN 590 +#define IMG_PIG_MOVING_UP 591 +#define IMG_PIG_MOVING_LEFT 592 +#define IMG_PIG_MOVING_RIGHT 593 +#define IMG_PIG_DIGGING_DOWN 594 +#define IMG_PIG_DIGGING_UP 595 +#define IMG_PIG_DIGGING_LEFT 596 +#define IMG_PIG_DIGGING_RIGHT 597 +#define IMG_DRAGON 598 +#define IMG_DRAGON_DOWN 599 +#define IMG_DRAGON_UP 600 +#define IMG_DRAGON_LEFT 601 +#define IMG_DRAGON_RIGHT 602 +#define IMG_DRAGON_MOVING_DOWN 603 +#define IMG_DRAGON_MOVING_UP 604 +#define IMG_DRAGON_MOVING_LEFT 605 +#define IMG_DRAGON_MOVING_RIGHT 606 +#define IMG_DRAGON_ATTACKING_DOWN 607 +#define IMG_DRAGON_ATTACKING_UP 608 +#define IMG_DRAGON_ATTACKING_LEFT 609 +#define IMG_DRAGON_ATTACKING_RIGHT 610 +#define IMG_MOLE 611 +#define IMG_MOLE_DOWN 612 +#define IMG_MOLE_UP 613 +#define IMG_MOLE_LEFT 614 +#define IMG_MOLE_RIGHT 615 +#define IMG_MOLE_MOVING_DOWN 616 +#define IMG_MOLE_MOVING_UP 617 +#define IMG_MOLE_MOVING_LEFT 618 +#define IMG_MOLE_MOVING_RIGHT 619 +#define IMG_MOLE_DIGGING_DOWN 620 +#define IMG_MOLE_DIGGING_UP 621 +#define IMG_MOLE_DIGGING_LEFT 622 +#define IMG_MOLE_DIGGING_RIGHT 623 +#define IMG_PENGUIN 624 +#define IMG_PENGUIN_EDITOR 625 +#define IMG_PENGUIN_DOWN 626 +#define IMG_PENGUIN_UP 627 +#define IMG_PENGUIN_LEFT 628 +#define IMG_PENGUIN_RIGHT 629 +#define IMG_PENGUIN_MOVING_DOWN 630 +#define IMG_PENGUIN_MOVING_UP 631 +#define IMG_PENGUIN_MOVING_LEFT 632 +#define IMG_PENGUIN_MOVING_RIGHT 633 +#define IMG_SATELLITE 634 +#define IMG_FLAMES_1_LEFT 635 +#define IMG_FLAMES_2_LEFT 636 +#define IMG_FLAMES_3_LEFT 637 +#define IMG_FLAMES_1_RIGHT 638 +#define IMG_FLAMES_2_RIGHT 639 +#define IMG_FLAMES_3_RIGHT 640 +#define IMG_FLAMES_1_UP 641 +#define IMG_FLAMES_2_UP 642 +#define IMG_FLAMES_3_UP 643 +#define IMG_FLAMES_1_DOWN 644 +#define IMG_FLAMES_2_DOWN 645 +#define IMG_FLAMES_3_DOWN 646 +#define IMG_STONEBLOCK 647 +#define IMG_PLAYER_1 648 +#define IMG_PLAYER_1_EDITOR 649 +#define IMG_PLAYER_1_DOWN 650 +#define IMG_PLAYER_1_UP 651 +#define IMG_PLAYER_1_LEFT 652 +#define IMG_PLAYER_1_RIGHT 653 +#define IMG_PLAYER_1_MOVING_DOWN 654 +#define IMG_PLAYER_1_MOVING_UP 655 +#define IMG_PLAYER_1_MOVING_LEFT 656 +#define IMG_PLAYER_1_MOVING_RIGHT 657 +#define IMG_PLAYER_1_DIGGING_DOWN 658 +#define IMG_PLAYER_1_DIGGING_UP 659 +#define IMG_PLAYER_1_DIGGING_LEFT 660 +#define IMG_PLAYER_1_DIGGING_RIGHT 661 +#define IMG_PLAYER_1_COLLECTING_DOWN 662 +#define IMG_PLAYER_1_COLLECTING_UP 663 +#define IMG_PLAYER_1_COLLECTING_LEFT 664 +#define IMG_PLAYER_1_COLLECTING_RIGHT 665 +#define IMG_PLAYER_1_PUSHING_DOWN 666 +#define IMG_PLAYER_1_PUSHING_UP 667 +#define IMG_PLAYER_1_PUSHING_LEFT 668 +#define IMG_PLAYER_1_PUSHING_RIGHT 669 +#define IMG_PLAYER_1_SNAPPING_DOWN 670 +#define IMG_PLAYER_1_SNAPPING_UP 671 +#define IMG_PLAYER_1_SNAPPING_LEFT 672 +#define IMG_PLAYER_1_SNAPPING_RIGHT 673 +#define IMG_PLAYER_2 674 +#define IMG_PLAYER_2_EDITOR 675 +#define IMG_PLAYER_2_DOWN 676 +#define IMG_PLAYER_2_UP 677 +#define IMG_PLAYER_2_LEFT 678 +#define IMG_PLAYER_2_RIGHT 679 +#define IMG_PLAYER_2_MOVING_DOWN 680 +#define IMG_PLAYER_2_MOVING_UP 681 +#define IMG_PLAYER_2_MOVING_LEFT 682 +#define IMG_PLAYER_2_MOVING_RIGHT 683 +#define IMG_PLAYER_2_DIGGING_DOWN 684 +#define IMG_PLAYER_2_DIGGING_UP 685 +#define IMG_PLAYER_2_DIGGING_LEFT 686 +#define IMG_PLAYER_2_DIGGING_RIGHT 687 +#define IMG_PLAYER_2_COLLECTING_DOWN 688 +#define IMG_PLAYER_2_COLLECTING_UP 689 +#define IMG_PLAYER_2_COLLECTING_LEFT 690 +#define IMG_PLAYER_2_COLLECTING_RIGHT 691 +#define IMG_PLAYER_2_PUSHING_DOWN 692 +#define IMG_PLAYER_2_PUSHING_UP 693 +#define IMG_PLAYER_2_PUSHING_LEFT 694 +#define IMG_PLAYER_2_PUSHING_RIGHT 695 +#define IMG_PLAYER_2_SNAPPING_DOWN 696 +#define IMG_PLAYER_2_SNAPPING_UP 697 +#define IMG_PLAYER_2_SNAPPING_LEFT 698 +#define IMG_PLAYER_2_SNAPPING_RIGHT 699 +#define IMG_PLAYER_3 700 +#define IMG_PLAYER_3_EDITOR 701 +#define IMG_PLAYER_3_DOWN 702 +#define IMG_PLAYER_3_UP 703 +#define IMG_PLAYER_3_LEFT 704 +#define IMG_PLAYER_3_RIGHT 705 +#define IMG_PLAYER_3_MOVING_DOWN 706 +#define IMG_PLAYER_3_MOVING_UP 707 +#define IMG_PLAYER_3_MOVING_LEFT 708 +#define IMG_PLAYER_3_MOVING_RIGHT 709 +#define IMG_PLAYER_3_DIGGING_DOWN 710 +#define IMG_PLAYER_3_DIGGING_UP 711 +#define IMG_PLAYER_3_DIGGING_LEFT 712 +#define IMG_PLAYER_3_DIGGING_RIGHT 713 +#define IMG_PLAYER_3_COLLECTING_DOWN 714 +#define IMG_PLAYER_3_COLLECTING_UP 715 +#define IMG_PLAYER_3_COLLECTING_LEFT 716 +#define IMG_PLAYER_3_COLLECTING_RIGHT 717 +#define IMG_PLAYER_3_PUSHING_DOWN 718 +#define IMG_PLAYER_3_PUSHING_UP 719 +#define IMG_PLAYER_3_PUSHING_LEFT 720 +#define IMG_PLAYER_3_PUSHING_RIGHT 721 +#define IMG_PLAYER_3_SNAPPING_DOWN 722 +#define IMG_PLAYER_3_SNAPPING_UP 723 +#define IMG_PLAYER_3_SNAPPING_LEFT 724 +#define IMG_PLAYER_3_SNAPPING_RIGHT 725 +#define IMG_PLAYER_4 726 +#define IMG_PLAYER_4_EDITOR 727 +#define IMG_PLAYER_4_DOWN 728 +#define IMG_PLAYER_4_UP 729 +#define IMG_PLAYER_4_LEFT 730 +#define IMG_PLAYER_4_RIGHT 731 +#define IMG_PLAYER_4_MOVING_DOWN 732 +#define IMG_PLAYER_4_MOVING_UP 733 +#define IMG_PLAYER_4_MOVING_LEFT 734 +#define IMG_PLAYER_4_MOVING_RIGHT 735 +#define IMG_PLAYER_4_DIGGING_DOWN 736 +#define IMG_PLAYER_4_DIGGING_UP 737 +#define IMG_PLAYER_4_DIGGING_LEFT 738 +#define IMG_PLAYER_4_DIGGING_RIGHT 739 +#define IMG_PLAYER_4_COLLECTING_DOWN 740 +#define IMG_PLAYER_4_COLLECTING_UP 741 +#define IMG_PLAYER_4_COLLECTING_LEFT 742 +#define IMG_PLAYER_4_COLLECTING_RIGHT 743 +#define IMG_PLAYER_4_PUSHING_DOWN 744 +#define IMG_PLAYER_4_PUSHING_UP 745 +#define IMG_PLAYER_4_PUSHING_LEFT 746 +#define IMG_PLAYER_4_PUSHING_RIGHT 747 +#define IMG_PLAYER_4_SNAPPING_DOWN 748 +#define IMG_PLAYER_4_SNAPPING_UP 749 +#define IMG_PLAYER_4_SNAPPING_LEFT 750 +#define IMG_PLAYER_4_SNAPPING_RIGHT 751 +#define IMG_DEFAULT_EXPLODING 752 +#define IMG_TWINKLE_BLUE 753 +#define IMG_TWINKLE_WHITE 754 +#define IMG_STEELWALL_TOPLEFT 755 +#define IMG_STEELWALL_TOPRIGHT 756 +#define IMG_STEELWALL_BOTTOMLEFT 757 +#define IMG_STEELWALL_BOTTOMRIGHT 758 +#define IMG_STEELWALL_HORIZONTAL 759 +#define IMG_STEELWALL_VERTICAL 760 +#define IMG_STEELWALL_TOPLEFT_EDITOR 761 +#define IMG_STEELWALL_TOPRIGHT_EDITOR 762 +#define IMG_STEELWALL_BOTTOMLEFT_EDITOR 763 +#define IMG_STEELWALL_BOTTOMRIGHT_EDITOR 764 +#define IMG_STEELWALL_HORIZONTAL_EDITOR 765 +#define IMG_STEELWALL_VERTICAL_EDITOR 766 +#define IMG_INVISIBLE_STEELWALL_TOPLEFT 767 +#define IMG_INVISIBLE_STEELWALL_TOPRIGHT 768 +#define IMG_INVISIBLE_STEELWALL_BOTTOMLEFT 769 +#define IMG_INVISIBLE_STEELWALL_BOTTOMRIGHT 770 +#define IMG_INVISIBLE_STEELWALL_HORIZONTAL 771 +#define IMG_INVISIBLE_STEELWALL_VERTICAL 772 +#define IMG_INVISIBLE_STEELWALL_TOPLEFT_EDITOR 773 +#define IMG_INVISIBLE_STEELWALL_TOPRIGHT_EDITOR 774 +#define IMG_INVISIBLE_STEELWALL_BOTTOMLEFT_EDITOR 775 +#define IMG_INVISIBLE_STEELWALL_BOTTOMRIGHT_EDITOR 776 +#define IMG_INVISIBLE_STEELWALL_HORIZONTAL_EDITOR 777 +#define IMG_INVISIBLE_STEELWALL_VERTICAL_EDITOR 778 +#define IMG_ARROW_LEFT 779 +#define IMG_ARROW_RIGHT 780 +#define IMG_ARROW_UP 781 +#define IMG_ARROW_DOWN 782 +#define IMG_UNKNOWN 783 +#define IMG_TRIGGER_ELEMENT 784 +#define IMG_TRIGGER_PLAYER 785 +#define IMG_TRIGGER_CE_VALUE 786 +#define IMG_TRIGGER_CE_SCORE 787 +#define IMG_CURRENT_CE_VALUE 788 +#define IMG_CURRENT_CE_SCORE 789 +#define IMG_PREV_CE_1 790 +#define IMG_PREV_CE_2 791 +#define IMG_PREV_CE_3 792 +#define IMG_PREV_CE_4 793 +#define IMG_PREV_CE_5 794 +#define IMG_PREV_CE_6 795 +#define IMG_PREV_CE_7 796 +#define IMG_PREV_CE_8 797 +#define IMG_NEXT_CE_1 798 +#define IMG_NEXT_CE_2 799 +#define IMG_NEXT_CE_3 800 +#define IMG_NEXT_CE_4 801 +#define IMG_NEXT_CE_5 802 +#define IMG_NEXT_CE_6 803 +#define IMG_NEXT_CE_7 804 +#define IMG_NEXT_CE_8 805 +#define IMG_SELF 806 +#define IMG_ANY_ELEMENT 807 +#define IMG_EMC_KEY_5 808 +#define IMG_EMC_KEY_6 809 +#define IMG_EMC_KEY_7 810 +#define IMG_EMC_KEY_8 811 +#define IMG_EMC_GATE_5 812 +#define IMG_EMC_GATE_6 813 +#define IMG_EMC_GATE_7 814 +#define IMG_EMC_GATE_8 815 +#define IMG_EMC_GATE_5_GRAY 816 +#define IMG_EMC_GATE_5_GRAY_EDITOR 817 +#define IMG_EMC_GATE_5_GRAY_ACTIVE 818 +#define IMG_EMC_GATE_6_GRAY 819 +#define IMG_EMC_GATE_6_GRAY_EDITOR 820 +#define IMG_EMC_GATE_6_GRAY_ACTIVE 821 +#define IMG_EMC_GATE_7_GRAY 822 +#define IMG_EMC_GATE_7_GRAY_EDITOR 823 +#define IMG_EMC_GATE_7_GRAY_ACTIVE 824 +#define IMG_EMC_GATE_8_GRAY 825 +#define IMG_EMC_GATE_8_GRAY_EDITOR 826 +#define IMG_EMC_GATE_8_GRAY_ACTIVE 827 +#define IMG_EMC_ANDROID 828 +#define IMG_EMC_ANDROID_SHRINKING_UPLEFT 829 +#define IMG_EMC_ANDROID_GROWING_DOWNRIGHT 830 +#define IMG_EMC_ANDROID_SHRINKING_DOWNLEFT 831 +#define IMG_EMC_ANDROID_GROWING_UPRIGHT 832 +#define IMG_EMC_ANDROID_SHRINKING_UPRIGHT 833 +#define IMG_EMC_ANDROID_GROWING_DOWNLEFT 834 +#define IMG_EMC_ANDROID_SHRINKING_DOWNRIGHT 835 +#define IMG_EMC_ANDROID_GROWING_UPLEFT 836 +#define IMG_EMC_GRASS 837 +#define IMG_EMC_GRASS_CRUMBLED 838 +#define IMG_EMC_GRASS_DIGGING_LEFT 839 +#define IMG_EMC_GRASS_DIGGING_RIGHT 840 +#define IMG_EMC_GRASS_DIGGING_UP 841 +#define IMG_EMC_GRASS_DIGGING_DOWN 842 +#define IMG_EMC_GRASS_DIGGING_LEFT_CRUMBLED 843 +#define IMG_EMC_GRASS_DIGGING_RIGHT_CRUMBLED 844 +#define IMG_EMC_GRASS_DIGGING_UP_CRUMBLED 845 +#define IMG_EMC_GRASS_DIGGING_DOWN_CRUMBLED 846 +#define IMG_EMC_MAGIC_BALL 847 +#define IMG_EMC_MAGIC_BALL_ACTIVE 848 +#define IMG_EMC_MAGIC_BALL_DROPPING 849 +#define IMG_EMC_MAGIC_BALL_SWITCH 850 +#define IMG_EMC_MAGIC_BALL_SWITCH_ACTIVE 851 +#define IMG_EMC_SPRING_BUMPER 852 +#define IMG_EMC_SPRING_BUMPER_ACTIVE 853 +#define IMG_EMC_PLANT 854 +#define IMG_EMC_PLANT_CRUMBLED 855 +#define IMG_EMC_LENSES 856 +#define IMG_EMC_MAGNIFIER 857 +#define IMG_EMC_WALL_9 858 +#define IMG_EMC_WALL_10 859 +#define IMG_EMC_WALL_11 860 +#define IMG_EMC_WALL_12 861 +#define IMG_EMC_WALL_13 862 +#define IMG_EMC_WALL_14 863 +#define IMG_EMC_WALL_15 864 +#define IMG_EMC_WALL_16 865 +#define IMG_EMC_WALL_SLIPPERY_1 866 +#define IMG_EMC_WALL_SLIPPERY_2 867 +#define IMG_EMC_WALL_SLIPPERY_3 868 +#define IMG_EMC_WALL_SLIPPERY_4 869 +#define IMG_EMC_FAKE_GRASS 870 +#define IMG_EMC_FAKE_GRASS_CRUMBLED 871 +#define IMG_EMC_FAKE_GRASS_ACTIVE 872 +#define IMG_EMC_FAKE_GRASS_ACTIVE_CRUMBLED 873 +#define IMG_EMC_FAKE_GRASS_EDITOR 874 +#define IMG_EMC_FAKE_ACID 875 +#define IMG_EMC_DRIPPER 876 +#define IMG_EMC_DRIPPER_EDITOR 877 +#define IMG_EMC_DRIPPER_ACTIVE 878 +#define IMG_CHAR_SPACE 879 +#define IMG_CHAR_SPACE_EDITOR 880 +#define IMG_CHAR_EXCLAM 881 +#define IMG_CHAR_QUOTEDBL 882 +#define IMG_CHAR_NUMBERSIGN 883 +#define IMG_CHAR_DOLLAR 884 +#define IMG_CHAR_PERCENT 885 +#define IMG_CHAR_AMPERSAND 886 +#define IMG_CHAR_APOSTROPHE 887 +#define IMG_CHAR_PARENLEFT 888 +#define IMG_CHAR_PARENRIGHT 889 +#define IMG_CHAR_ASTERISK 890 +#define IMG_CHAR_PLUS 891 +#define IMG_CHAR_COMMA 892 +#define IMG_CHAR_MINUS 893 +#define IMG_CHAR_PERIOD 894 +#define IMG_CHAR_SLASH 895 +#define IMG_CHAR_0 896 +#define IMG_CHAR_1 897 +#define IMG_CHAR_2 898 +#define IMG_CHAR_3 899 +#define IMG_CHAR_4 900 +#define IMG_CHAR_5 901 +#define IMG_CHAR_6 902 +#define IMG_CHAR_7 903 +#define IMG_CHAR_8 904 +#define IMG_CHAR_9 905 +#define IMG_CHAR_COLON 906 +#define IMG_CHAR_SEMICOLON 907 +#define IMG_CHAR_LESS 908 +#define IMG_CHAR_EQUAL 909 +#define IMG_CHAR_GREATER 910 +#define IMG_CHAR_QUESTION 911 +#define IMG_CHAR_AT 912 +#define IMG_CHAR_A 913 +#define IMG_CHAR_B 914 +#define IMG_CHAR_C 915 +#define IMG_CHAR_D 916 +#define IMG_CHAR_E 917 +#define IMG_CHAR_F 918 +#define IMG_CHAR_G 919 +#define IMG_CHAR_H 920 +#define IMG_CHAR_I 921 +#define IMG_CHAR_J 922 +#define IMG_CHAR_K 923 +#define IMG_CHAR_L 924 +#define IMG_CHAR_M 925 +#define IMG_CHAR_N 926 +#define IMG_CHAR_O 927 +#define IMG_CHAR_P 928 +#define IMG_CHAR_Q 929 +#define IMG_CHAR_R 930 +#define IMG_CHAR_S 931 +#define IMG_CHAR_T 932 +#define IMG_CHAR_U 933 +#define IMG_CHAR_V 934 +#define IMG_CHAR_W 935 +#define IMG_CHAR_X 936 +#define IMG_CHAR_Y 937 +#define IMG_CHAR_Z 938 +#define IMG_CHAR_BRACKETLEFT 939 +#define IMG_CHAR_BACKSLASH 940 +#define IMG_CHAR_BRACKETRIGHT 941 +#define IMG_CHAR_ASCIICIRCUM 942 +#define IMG_CHAR_UNDERSCORE 943 +#define IMG_CHAR_COPYRIGHT 944 +#define IMG_CHAR_AUMLAUT 945 +#define IMG_CHAR_OUMLAUT 946 +#define IMG_CHAR_UUMLAUT 947 +#define IMG_CHAR_DEGREE 948 +#define IMG_CHAR_TRADEMARK 949 +#define IMG_CHAR_CURSOR 950 +#define IMG_CHAR_BUTTON 951 +#define IMG_CHAR_UP 952 +#define IMG_CHAR_DOWN 953 +#define IMG_STEEL_CHAR_SPACE 954 +#define IMG_STEEL_CHAR_SPACE_EDITOR 955 +#define IMG_STEEL_CHAR_EXCLAM 956 +#define IMG_STEEL_CHAR_QUOTEDBL 957 +#define IMG_STEEL_CHAR_NUMBERSIGN 958 +#define IMG_STEEL_CHAR_DOLLAR 959 +#define IMG_STEEL_CHAR_PERCENT 960 +#define IMG_STEEL_CHAR_AMPERSAND 961 +#define IMG_STEEL_CHAR_APOSTROPHE 962 +#define IMG_STEEL_CHAR_PARENLEFT 963 +#define IMG_STEEL_CHAR_PARENRIGHT 964 +#define IMG_STEEL_CHAR_ASTERISK 965 +#define IMG_STEEL_CHAR_PLUS 966 +#define IMG_STEEL_CHAR_COMMA 967 +#define IMG_STEEL_CHAR_MINUS 968 +#define IMG_STEEL_CHAR_PERIOD 969 +#define IMG_STEEL_CHAR_SLASH 970 +#define IMG_STEEL_CHAR_0 971 +#define IMG_STEEL_CHAR_1 972 +#define IMG_STEEL_CHAR_2 973 +#define IMG_STEEL_CHAR_3 974 +#define IMG_STEEL_CHAR_4 975 +#define IMG_STEEL_CHAR_5 976 +#define IMG_STEEL_CHAR_6 977 +#define IMG_STEEL_CHAR_7 978 +#define IMG_STEEL_CHAR_8 979 +#define IMG_STEEL_CHAR_9 980 +#define IMG_STEEL_CHAR_COLON 981 +#define IMG_STEEL_CHAR_SEMICOLON 982 +#define IMG_STEEL_CHAR_LESS 983 +#define IMG_STEEL_CHAR_EQUAL 984 +#define IMG_STEEL_CHAR_GREATER 985 +#define IMG_STEEL_CHAR_QUESTION 986 +#define IMG_STEEL_CHAR_AT 987 +#define IMG_STEEL_CHAR_A 988 +#define IMG_STEEL_CHAR_B 989 +#define IMG_STEEL_CHAR_C 990 +#define IMG_STEEL_CHAR_D 991 +#define IMG_STEEL_CHAR_E 992 +#define IMG_STEEL_CHAR_F 993 +#define IMG_STEEL_CHAR_G 994 +#define IMG_STEEL_CHAR_H 995 +#define IMG_STEEL_CHAR_I 996 +#define IMG_STEEL_CHAR_J 997 +#define IMG_STEEL_CHAR_K 998 +#define IMG_STEEL_CHAR_L 999 +#define IMG_STEEL_CHAR_M 1000 +#define IMG_STEEL_CHAR_N 1001 +#define IMG_STEEL_CHAR_O 1002 +#define IMG_STEEL_CHAR_P 1003 +#define IMG_STEEL_CHAR_Q 1004 +#define IMG_STEEL_CHAR_R 1005 +#define IMG_STEEL_CHAR_S 1006 +#define IMG_STEEL_CHAR_T 1007 +#define IMG_STEEL_CHAR_U 1008 +#define IMG_STEEL_CHAR_V 1009 +#define IMG_STEEL_CHAR_W 1010 +#define IMG_STEEL_CHAR_X 1011 +#define IMG_STEEL_CHAR_Y 1012 +#define IMG_STEEL_CHAR_Z 1013 +#define IMG_STEEL_CHAR_BRACKETLEFT 1014 +#define IMG_STEEL_CHAR_BACKSLASH 1015 +#define IMG_STEEL_CHAR_BRACKETRIGHT 1016 +#define IMG_STEEL_CHAR_ASCIICIRCUM 1017 +#define IMG_STEEL_CHAR_UNDERSCORE 1018 +#define IMG_STEEL_CHAR_COPYRIGHT 1019 +#define IMG_STEEL_CHAR_AUMLAUT 1020 +#define IMG_STEEL_CHAR_OUMLAUT 1021 +#define IMG_STEEL_CHAR_UUMLAUT 1022 +#define IMG_STEEL_CHAR_DEGREE 1023 +#define IMG_STEEL_CHAR_TRADEMARK 1024 +#define IMG_STEEL_CHAR_CURSOR 1025 +#define IMG_STEEL_CHAR_BUTTON 1026 +#define IMG_STEEL_CHAR_UP 1027 +#define IMG_STEEL_CHAR_DOWN 1028 +#define IMG_CUSTOM_1 1029 +#define IMG_CUSTOM_1_EDITOR 1030 +#define IMG_CUSTOM_2 1031 +#define IMG_CUSTOM_2_EDITOR 1032 +#define IMG_CUSTOM_3 1033 +#define IMG_CUSTOM_3_EDITOR 1034 +#define IMG_CUSTOM_4 1035 +#define IMG_CUSTOM_4_EDITOR 1036 +#define IMG_CUSTOM_5 1037 +#define IMG_CUSTOM_5_EDITOR 1038 +#define IMG_CUSTOM_6 1039 +#define IMG_CUSTOM_6_EDITOR 1040 +#define IMG_CUSTOM_7 1041 +#define IMG_CUSTOM_7_EDITOR 1042 +#define IMG_CUSTOM_8 1043 +#define IMG_CUSTOM_8_EDITOR 1044 +#define IMG_CUSTOM_9 1045 +#define IMG_CUSTOM_9_EDITOR 1046 +#define IMG_CUSTOM_10 1047 +#define IMG_CUSTOM_10_EDITOR 1048 +#define IMG_CUSTOM_11 1049 +#define IMG_CUSTOM_11_EDITOR 1050 +#define IMG_CUSTOM_12 1051 +#define IMG_CUSTOM_12_EDITOR 1052 +#define IMG_CUSTOM_13 1053 +#define IMG_CUSTOM_13_EDITOR 1054 +#define IMG_CUSTOM_14 1055 +#define IMG_CUSTOM_14_EDITOR 1056 +#define IMG_CUSTOM_15 1057 +#define IMG_CUSTOM_15_EDITOR 1058 +#define IMG_CUSTOM_16 1059 +#define IMG_CUSTOM_16_EDITOR 1060 +#define IMG_CUSTOM_17 1061 +#define IMG_CUSTOM_17_EDITOR 1062 +#define IMG_CUSTOM_18 1063 +#define IMG_CUSTOM_18_EDITOR 1064 +#define IMG_CUSTOM_19 1065 +#define IMG_CUSTOM_19_EDITOR 1066 +#define IMG_CUSTOM_20 1067 +#define IMG_CUSTOM_20_EDITOR 1068 +#define IMG_CUSTOM_21 1069 +#define IMG_CUSTOM_21_EDITOR 1070 +#define IMG_CUSTOM_22 1071 +#define IMG_CUSTOM_22_EDITOR 1072 +#define IMG_CUSTOM_23 1073 +#define IMG_CUSTOM_23_EDITOR 1074 +#define IMG_CUSTOM_24 1075 +#define IMG_CUSTOM_24_EDITOR 1076 +#define IMG_CUSTOM_25 1077 +#define IMG_CUSTOM_25_EDITOR 1078 +#define IMG_CUSTOM_26 1079 +#define IMG_CUSTOM_26_EDITOR 1080 +#define IMG_CUSTOM_27 1081 +#define IMG_CUSTOM_27_EDITOR 1082 +#define IMG_CUSTOM_28 1083 +#define IMG_CUSTOM_28_EDITOR 1084 +#define IMG_CUSTOM_29 1085 +#define IMG_CUSTOM_29_EDITOR 1086 +#define IMG_CUSTOM_30 1087 +#define IMG_CUSTOM_30_EDITOR 1088 +#define IMG_CUSTOM_31 1089 +#define IMG_CUSTOM_31_EDITOR 1090 +#define IMG_CUSTOM_32 1091 +#define IMG_CUSTOM_32_EDITOR 1092 +#define IMG_CUSTOM_33 1093 +#define IMG_CUSTOM_33_EDITOR 1094 +#define IMG_CUSTOM_34 1095 +#define IMG_CUSTOM_34_EDITOR 1096 +#define IMG_CUSTOM_35 1097 +#define IMG_CUSTOM_35_EDITOR 1098 +#define IMG_CUSTOM_36 1099 +#define IMG_CUSTOM_36_EDITOR 1100 +#define IMG_CUSTOM_37 1101 +#define IMG_CUSTOM_37_EDITOR 1102 +#define IMG_CUSTOM_38 1103 +#define IMG_CUSTOM_38_EDITOR 1104 +#define IMG_CUSTOM_39 1105 +#define IMG_CUSTOM_39_EDITOR 1106 +#define IMG_CUSTOM_40 1107 +#define IMG_CUSTOM_40_EDITOR 1108 +#define IMG_CUSTOM_41 1109 +#define IMG_CUSTOM_41_EDITOR 1110 +#define IMG_CUSTOM_42 1111 +#define IMG_CUSTOM_42_EDITOR 1112 +#define IMG_CUSTOM_43 1113 +#define IMG_CUSTOM_43_EDITOR 1114 +#define IMG_CUSTOM_44 1115 +#define IMG_CUSTOM_44_EDITOR 1116 +#define IMG_CUSTOM_45 1117 +#define IMG_CUSTOM_45_EDITOR 1118 +#define IMG_CUSTOM_46 1119 +#define IMG_CUSTOM_46_EDITOR 1120 +#define IMG_CUSTOM_47 1121 +#define IMG_CUSTOM_47_EDITOR 1122 +#define IMG_CUSTOM_48 1123 +#define IMG_CUSTOM_48_EDITOR 1124 +#define IMG_CUSTOM_49 1125 +#define IMG_CUSTOM_49_EDITOR 1126 +#define IMG_CUSTOM_50 1127 +#define IMG_CUSTOM_50_EDITOR 1128 +#define IMG_CUSTOM_51 1129 +#define IMG_CUSTOM_51_EDITOR 1130 +#define IMG_CUSTOM_52 1131 +#define IMG_CUSTOM_52_EDITOR 1132 +#define IMG_CUSTOM_53 1133 +#define IMG_CUSTOM_53_EDITOR 1134 +#define IMG_CUSTOM_54 1135 +#define IMG_CUSTOM_54_EDITOR 1136 +#define IMG_CUSTOM_55 1137 +#define IMG_CUSTOM_55_EDITOR 1138 +#define IMG_CUSTOM_56 1139 +#define IMG_CUSTOM_56_EDITOR 1140 +#define IMG_CUSTOM_57 1141 +#define IMG_CUSTOM_57_EDITOR 1142 +#define IMG_CUSTOM_58 1143 +#define IMG_CUSTOM_58_EDITOR 1144 +#define IMG_CUSTOM_59 1145 +#define IMG_CUSTOM_59_EDITOR 1146 +#define IMG_CUSTOM_60 1147 +#define IMG_CUSTOM_60_EDITOR 1148 +#define IMG_CUSTOM_61 1149 +#define IMG_CUSTOM_61_EDITOR 1150 +#define IMG_CUSTOM_62 1151 +#define IMG_CUSTOM_62_EDITOR 1152 +#define IMG_CUSTOM_63 1153 +#define IMG_CUSTOM_63_EDITOR 1154 +#define IMG_CUSTOM_64 1155 +#define IMG_CUSTOM_64_EDITOR 1156 +#define IMG_CUSTOM_65 1157 +#define IMG_CUSTOM_65_EDITOR 1158 +#define IMG_CUSTOM_66 1159 +#define IMG_CUSTOM_66_EDITOR 1160 +#define IMG_CUSTOM_67 1161 +#define IMG_CUSTOM_67_EDITOR 1162 +#define IMG_CUSTOM_68 1163 +#define IMG_CUSTOM_68_EDITOR 1164 +#define IMG_CUSTOM_69 1165 +#define IMG_CUSTOM_69_EDITOR 1166 +#define IMG_CUSTOM_70 1167 +#define IMG_CUSTOM_70_EDITOR 1168 +#define IMG_CUSTOM_71 1169 +#define IMG_CUSTOM_71_EDITOR 1170 +#define IMG_CUSTOM_72 1171 +#define IMG_CUSTOM_72_EDITOR 1172 +#define IMG_CUSTOM_73 1173 +#define IMG_CUSTOM_73_EDITOR 1174 +#define IMG_CUSTOM_74 1175 +#define IMG_CUSTOM_74_EDITOR 1176 +#define IMG_CUSTOM_75 1177 +#define IMG_CUSTOM_75_EDITOR 1178 +#define IMG_CUSTOM_76 1179 +#define IMG_CUSTOM_76_EDITOR 1180 +#define IMG_CUSTOM_77 1181 +#define IMG_CUSTOM_77_EDITOR 1182 +#define IMG_CUSTOM_78 1183 +#define IMG_CUSTOM_78_EDITOR 1184 +#define IMG_CUSTOM_79 1185 +#define IMG_CUSTOM_79_EDITOR 1186 +#define IMG_CUSTOM_80 1187 +#define IMG_CUSTOM_80_EDITOR 1188 +#define IMG_CUSTOM_81 1189 +#define IMG_CUSTOM_81_EDITOR 1190 +#define IMG_CUSTOM_82 1191 +#define IMG_CUSTOM_82_EDITOR 1192 +#define IMG_CUSTOM_83 1193 +#define IMG_CUSTOM_83_EDITOR 1194 +#define IMG_CUSTOM_84 1195 +#define IMG_CUSTOM_84_EDITOR 1196 +#define IMG_CUSTOM_85 1197 +#define IMG_CUSTOM_85_EDITOR 1198 +#define IMG_CUSTOM_86 1199 +#define IMG_CUSTOM_86_EDITOR 1200 +#define IMG_CUSTOM_87 1201 +#define IMG_CUSTOM_87_EDITOR 1202 +#define IMG_CUSTOM_88 1203 +#define IMG_CUSTOM_88_EDITOR 1204 +#define IMG_CUSTOM_89 1205 +#define IMG_CUSTOM_89_EDITOR 1206 +#define IMG_CUSTOM_90 1207 +#define IMG_CUSTOM_90_EDITOR 1208 +#define IMG_CUSTOM_91 1209 +#define IMG_CUSTOM_91_EDITOR 1210 +#define IMG_CUSTOM_92 1211 +#define IMG_CUSTOM_92_EDITOR 1212 +#define IMG_CUSTOM_93 1213 +#define IMG_CUSTOM_93_EDITOR 1214 +#define IMG_CUSTOM_94 1215 +#define IMG_CUSTOM_94_EDITOR 1216 +#define IMG_CUSTOM_95 1217 +#define IMG_CUSTOM_95_EDITOR 1218 +#define IMG_CUSTOM_96 1219 +#define IMG_CUSTOM_96_EDITOR 1220 +#define IMG_CUSTOM_97 1221 +#define IMG_CUSTOM_97_EDITOR 1222 +#define IMG_CUSTOM_98 1223 +#define IMG_CUSTOM_98_EDITOR 1224 +#define IMG_CUSTOM_99 1225 +#define IMG_CUSTOM_99_EDITOR 1226 +#define IMG_CUSTOM_100 1227 +#define IMG_CUSTOM_100_EDITOR 1228 +#define IMG_CUSTOM_101 1229 +#define IMG_CUSTOM_101_EDITOR 1230 +#define IMG_CUSTOM_102 1231 +#define IMG_CUSTOM_102_EDITOR 1232 +#define IMG_CUSTOM_103 1233 +#define IMG_CUSTOM_103_EDITOR 1234 +#define IMG_CUSTOM_104 1235 +#define IMG_CUSTOM_104_EDITOR 1236 +#define IMG_CUSTOM_105 1237 +#define IMG_CUSTOM_105_EDITOR 1238 +#define IMG_CUSTOM_106 1239 +#define IMG_CUSTOM_106_EDITOR 1240 +#define IMG_CUSTOM_107 1241 +#define IMG_CUSTOM_107_EDITOR 1242 +#define IMG_CUSTOM_108 1243 +#define IMG_CUSTOM_108_EDITOR 1244 +#define IMG_CUSTOM_109 1245 +#define IMG_CUSTOM_109_EDITOR 1246 +#define IMG_CUSTOM_110 1247 +#define IMG_CUSTOM_110_EDITOR 1248 +#define IMG_CUSTOM_111 1249 +#define IMG_CUSTOM_111_EDITOR 1250 +#define IMG_CUSTOM_112 1251 +#define IMG_CUSTOM_112_EDITOR 1252 +#define IMG_CUSTOM_113 1253 +#define IMG_CUSTOM_113_EDITOR 1254 +#define IMG_CUSTOM_114 1255 +#define IMG_CUSTOM_114_EDITOR 1256 +#define IMG_CUSTOM_115 1257 +#define IMG_CUSTOM_115_EDITOR 1258 +#define IMG_CUSTOM_116 1259 +#define IMG_CUSTOM_116_EDITOR 1260 +#define IMG_CUSTOM_117 1261 +#define IMG_CUSTOM_117_EDITOR 1262 +#define IMG_CUSTOM_118 1263 +#define IMG_CUSTOM_118_EDITOR 1264 +#define IMG_CUSTOM_119 1265 +#define IMG_CUSTOM_119_EDITOR 1266 +#define IMG_CUSTOM_120 1267 +#define IMG_CUSTOM_120_EDITOR 1268 +#define IMG_CUSTOM_121 1269 +#define IMG_CUSTOM_121_EDITOR 1270 +#define IMG_CUSTOM_122 1271 +#define IMG_CUSTOM_122_EDITOR 1272 +#define IMG_CUSTOM_123 1273 +#define IMG_CUSTOM_123_EDITOR 1274 +#define IMG_CUSTOM_124 1275 +#define IMG_CUSTOM_124_EDITOR 1276 +#define IMG_CUSTOM_125 1277 +#define IMG_CUSTOM_125_EDITOR 1278 +#define IMG_CUSTOM_126 1279 +#define IMG_CUSTOM_126_EDITOR 1280 +#define IMG_CUSTOM_127 1281 +#define IMG_CUSTOM_127_EDITOR 1282 +#define IMG_CUSTOM_128 1283 +#define IMG_CUSTOM_128_EDITOR 1284 +#define IMG_CUSTOM_129 1285 +#define IMG_CUSTOM_129_EDITOR 1286 +#define IMG_CUSTOM_130 1287 +#define IMG_CUSTOM_130_EDITOR 1288 +#define IMG_CUSTOM_131 1289 +#define IMG_CUSTOM_131_EDITOR 1290 +#define IMG_CUSTOM_132 1291 +#define IMG_CUSTOM_132_EDITOR 1292 +#define IMG_CUSTOM_133 1293 +#define IMG_CUSTOM_133_EDITOR 1294 +#define IMG_CUSTOM_134 1295 +#define IMG_CUSTOM_134_EDITOR 1296 +#define IMG_CUSTOM_135 1297 +#define IMG_CUSTOM_135_EDITOR 1298 +#define IMG_CUSTOM_136 1299 +#define IMG_CUSTOM_136_EDITOR 1300 +#define IMG_CUSTOM_137 1301 +#define IMG_CUSTOM_137_EDITOR 1302 +#define IMG_CUSTOM_138 1303 +#define IMG_CUSTOM_138_EDITOR 1304 +#define IMG_CUSTOM_139 1305 +#define IMG_CUSTOM_139_EDITOR 1306 +#define IMG_CUSTOM_140 1307 +#define IMG_CUSTOM_140_EDITOR 1308 +#define IMG_CUSTOM_141 1309 +#define IMG_CUSTOM_141_EDITOR 1310 +#define IMG_CUSTOM_142 1311 +#define IMG_CUSTOM_142_EDITOR 1312 +#define IMG_CUSTOM_143 1313 +#define IMG_CUSTOM_143_EDITOR 1314 +#define IMG_CUSTOM_144 1315 +#define IMG_CUSTOM_144_EDITOR 1316 +#define IMG_CUSTOM_145 1317 +#define IMG_CUSTOM_145_EDITOR 1318 +#define IMG_CUSTOM_146 1319 +#define IMG_CUSTOM_146_EDITOR 1320 +#define IMG_CUSTOM_147 1321 +#define IMG_CUSTOM_147_EDITOR 1322 +#define IMG_CUSTOM_148 1323 +#define IMG_CUSTOM_148_EDITOR 1324 +#define IMG_CUSTOM_149 1325 +#define IMG_CUSTOM_149_EDITOR 1326 +#define IMG_CUSTOM_150 1327 +#define IMG_CUSTOM_150_EDITOR 1328 +#define IMG_CUSTOM_151 1329 +#define IMG_CUSTOM_151_EDITOR 1330 +#define IMG_CUSTOM_152 1331 +#define IMG_CUSTOM_152_EDITOR 1332 +#define IMG_CUSTOM_153 1333 +#define IMG_CUSTOM_153_EDITOR 1334 +#define IMG_CUSTOM_154 1335 +#define IMG_CUSTOM_154_EDITOR 1336 +#define IMG_CUSTOM_155 1337 +#define IMG_CUSTOM_155_EDITOR 1338 +#define IMG_CUSTOM_156 1339 +#define IMG_CUSTOM_156_EDITOR 1340 +#define IMG_CUSTOM_157 1341 +#define IMG_CUSTOM_157_EDITOR 1342 +#define IMG_CUSTOM_158 1343 +#define IMG_CUSTOM_158_EDITOR 1344 +#define IMG_CUSTOM_159 1345 +#define IMG_CUSTOM_159_EDITOR 1346 +#define IMG_CUSTOM_160 1347 +#define IMG_CUSTOM_160_EDITOR 1348 +#define IMG_CUSTOM_161 1349 +#define IMG_CUSTOM_161_EDITOR 1350 +#define IMG_CUSTOM_162 1351 +#define IMG_CUSTOM_162_EDITOR 1352 +#define IMG_CUSTOM_163 1353 +#define IMG_CUSTOM_163_EDITOR 1354 +#define IMG_CUSTOM_164 1355 +#define IMG_CUSTOM_164_EDITOR 1356 +#define IMG_CUSTOM_165 1357 +#define IMG_CUSTOM_165_EDITOR 1358 +#define IMG_CUSTOM_166 1359 +#define IMG_CUSTOM_166_EDITOR 1360 +#define IMG_CUSTOM_167 1361 +#define IMG_CUSTOM_167_EDITOR 1362 +#define IMG_CUSTOM_168 1363 +#define IMG_CUSTOM_168_EDITOR 1364 +#define IMG_CUSTOM_169 1365 +#define IMG_CUSTOM_169_EDITOR 1366 +#define IMG_CUSTOM_170 1367 +#define IMG_CUSTOM_170_EDITOR 1368 +#define IMG_CUSTOM_171 1369 +#define IMG_CUSTOM_171_EDITOR 1370 +#define IMG_CUSTOM_172 1371 +#define IMG_CUSTOM_172_EDITOR 1372 +#define IMG_CUSTOM_173 1373 +#define IMG_CUSTOM_173_EDITOR 1374 +#define IMG_CUSTOM_174 1375 +#define IMG_CUSTOM_174_EDITOR 1376 +#define IMG_CUSTOM_175 1377 +#define IMG_CUSTOM_175_EDITOR 1378 +#define IMG_CUSTOM_176 1379 +#define IMG_CUSTOM_176_EDITOR 1380 +#define IMG_CUSTOM_177 1381 +#define IMG_CUSTOM_177_EDITOR 1382 +#define IMG_CUSTOM_178 1383 +#define IMG_CUSTOM_178_EDITOR 1384 +#define IMG_CUSTOM_179 1385 +#define IMG_CUSTOM_179_EDITOR 1386 +#define IMG_CUSTOM_180 1387 +#define IMG_CUSTOM_180_EDITOR 1388 +#define IMG_CUSTOM_181 1389 +#define IMG_CUSTOM_181_EDITOR 1390 +#define IMG_CUSTOM_182 1391 +#define IMG_CUSTOM_182_EDITOR 1392 +#define IMG_CUSTOM_183 1393 +#define IMG_CUSTOM_183_EDITOR 1394 +#define IMG_CUSTOM_184 1395 +#define IMG_CUSTOM_184_EDITOR 1396 +#define IMG_CUSTOM_185 1397 +#define IMG_CUSTOM_185_EDITOR 1398 +#define IMG_CUSTOM_186 1399 +#define IMG_CUSTOM_186_EDITOR 1400 +#define IMG_CUSTOM_187 1401 +#define IMG_CUSTOM_187_EDITOR 1402 +#define IMG_CUSTOM_188 1403 +#define IMG_CUSTOM_188_EDITOR 1404 +#define IMG_CUSTOM_189 1405 +#define IMG_CUSTOM_189_EDITOR 1406 +#define IMG_CUSTOM_190 1407 +#define IMG_CUSTOM_190_EDITOR 1408 +#define IMG_CUSTOM_191 1409 +#define IMG_CUSTOM_191_EDITOR 1410 +#define IMG_CUSTOM_192 1411 +#define IMG_CUSTOM_192_EDITOR 1412 +#define IMG_CUSTOM_193 1413 +#define IMG_CUSTOM_193_EDITOR 1414 +#define IMG_CUSTOM_194 1415 +#define IMG_CUSTOM_194_EDITOR 1416 +#define IMG_CUSTOM_195 1417 +#define IMG_CUSTOM_195_EDITOR 1418 +#define IMG_CUSTOM_196 1419 +#define IMG_CUSTOM_196_EDITOR 1420 +#define IMG_CUSTOM_197 1421 +#define IMG_CUSTOM_197_EDITOR 1422 +#define IMG_CUSTOM_198 1423 +#define IMG_CUSTOM_198_EDITOR 1424 +#define IMG_CUSTOM_199 1425 +#define IMG_CUSTOM_199_EDITOR 1426 +#define IMG_CUSTOM_200 1427 +#define IMG_CUSTOM_200_EDITOR 1428 +#define IMG_CUSTOM_201 1429 +#define IMG_CUSTOM_201_EDITOR 1430 +#define IMG_CUSTOM_202 1431 +#define IMG_CUSTOM_202_EDITOR 1432 +#define IMG_CUSTOM_203 1433 +#define IMG_CUSTOM_203_EDITOR 1434 +#define IMG_CUSTOM_204 1435 +#define IMG_CUSTOM_204_EDITOR 1436 +#define IMG_CUSTOM_205 1437 +#define IMG_CUSTOM_205_EDITOR 1438 +#define IMG_CUSTOM_206 1439 +#define IMG_CUSTOM_206_EDITOR 1440 +#define IMG_CUSTOM_207 1441 +#define IMG_CUSTOM_207_EDITOR 1442 +#define IMG_CUSTOM_208 1443 +#define IMG_CUSTOM_208_EDITOR 1444 +#define IMG_CUSTOM_209 1445 +#define IMG_CUSTOM_209_EDITOR 1446 +#define IMG_CUSTOM_210 1447 +#define IMG_CUSTOM_210_EDITOR 1448 +#define IMG_CUSTOM_211 1449 +#define IMG_CUSTOM_211_EDITOR 1450 +#define IMG_CUSTOM_212 1451 +#define IMG_CUSTOM_212_EDITOR 1452 +#define IMG_CUSTOM_213 1453 +#define IMG_CUSTOM_213_EDITOR 1454 +#define IMG_CUSTOM_214 1455 +#define IMG_CUSTOM_214_EDITOR 1456 +#define IMG_CUSTOM_215 1457 +#define IMG_CUSTOM_215_EDITOR 1458 +#define IMG_CUSTOM_216 1459 +#define IMG_CUSTOM_216_EDITOR 1460 +#define IMG_CUSTOM_217 1461 +#define IMG_CUSTOM_217_EDITOR 1462 +#define IMG_CUSTOM_218 1463 +#define IMG_CUSTOM_218_EDITOR 1464 +#define IMG_CUSTOM_219 1465 +#define IMG_CUSTOM_219_EDITOR 1466 +#define IMG_CUSTOM_220 1467 +#define IMG_CUSTOM_220_EDITOR 1468 +#define IMG_CUSTOM_221 1469 +#define IMG_CUSTOM_221_EDITOR 1470 +#define IMG_CUSTOM_222 1471 +#define IMG_CUSTOM_222_EDITOR 1472 +#define IMG_CUSTOM_223 1473 +#define IMG_CUSTOM_223_EDITOR 1474 +#define IMG_CUSTOM_224 1475 +#define IMG_CUSTOM_224_EDITOR 1476 +#define IMG_CUSTOM_225 1477 +#define IMG_CUSTOM_225_EDITOR 1478 +#define IMG_CUSTOM_226 1479 +#define IMG_CUSTOM_226_EDITOR 1480 +#define IMG_CUSTOM_227 1481 +#define IMG_CUSTOM_227_EDITOR 1482 +#define IMG_CUSTOM_228 1483 +#define IMG_CUSTOM_228_EDITOR 1484 +#define IMG_CUSTOM_229 1485 +#define IMG_CUSTOM_229_EDITOR 1486 +#define IMG_CUSTOM_230 1487 +#define IMG_CUSTOM_230_EDITOR 1488 +#define IMG_CUSTOM_231 1489 +#define IMG_CUSTOM_231_EDITOR 1490 +#define IMG_CUSTOM_232 1491 +#define IMG_CUSTOM_232_EDITOR 1492 +#define IMG_CUSTOM_233 1493 +#define IMG_CUSTOM_233_EDITOR 1494 +#define IMG_CUSTOM_234 1495 +#define IMG_CUSTOM_234_EDITOR 1496 +#define IMG_CUSTOM_235 1497 +#define IMG_CUSTOM_235_EDITOR 1498 +#define IMG_CUSTOM_236 1499 +#define IMG_CUSTOM_236_EDITOR 1500 +#define IMG_CUSTOM_237 1501 +#define IMG_CUSTOM_237_EDITOR 1502 +#define IMG_CUSTOM_238 1503 +#define IMG_CUSTOM_238_EDITOR 1504 +#define IMG_CUSTOM_239 1505 +#define IMG_CUSTOM_239_EDITOR 1506 +#define IMG_CUSTOM_240 1507 +#define IMG_CUSTOM_240_EDITOR 1508 +#define IMG_CUSTOM_241 1509 +#define IMG_CUSTOM_241_EDITOR 1510 +#define IMG_CUSTOM_242 1511 +#define IMG_CUSTOM_242_EDITOR 1512 +#define IMG_CUSTOM_243 1513 +#define IMG_CUSTOM_243_EDITOR 1514 +#define IMG_CUSTOM_244 1515 +#define IMG_CUSTOM_244_EDITOR 1516 +#define IMG_CUSTOM_245 1517 +#define IMG_CUSTOM_245_EDITOR 1518 +#define IMG_CUSTOM_246 1519 +#define IMG_CUSTOM_246_EDITOR 1520 +#define IMG_CUSTOM_247 1521 +#define IMG_CUSTOM_247_EDITOR 1522 +#define IMG_CUSTOM_248 1523 +#define IMG_CUSTOM_248_EDITOR 1524 +#define IMG_CUSTOM_249 1525 +#define IMG_CUSTOM_249_EDITOR 1526 +#define IMG_CUSTOM_250 1527 +#define IMG_CUSTOM_250_EDITOR 1528 +#define IMG_CUSTOM_251 1529 +#define IMG_CUSTOM_251_EDITOR 1530 +#define IMG_CUSTOM_252 1531 +#define IMG_CUSTOM_252_EDITOR 1532 +#define IMG_CUSTOM_253 1533 +#define IMG_CUSTOM_253_EDITOR 1534 +#define IMG_CUSTOM_254 1535 +#define IMG_CUSTOM_254_EDITOR 1536 +#define IMG_CUSTOM_255 1537 +#define IMG_CUSTOM_255_EDITOR 1538 +#define IMG_CUSTOM_256 1539 +#define IMG_CUSTOM_256_EDITOR 1540 +#define IMG_GROUP_1 1541 +#define IMG_GROUP_1_EDITOR 1542 +#define IMG_GROUP_2 1543 +#define IMG_GROUP_2_EDITOR 1544 +#define IMG_GROUP_3 1545 +#define IMG_GROUP_3_EDITOR 1546 +#define IMG_GROUP_4 1547 +#define IMG_GROUP_4_EDITOR 1548 +#define IMG_GROUP_5 1549 +#define IMG_GROUP_5_EDITOR 1550 +#define IMG_GROUP_6 1551 +#define IMG_GROUP_6_EDITOR 1552 +#define IMG_GROUP_7 1553 +#define IMG_GROUP_7_EDITOR 1554 +#define IMG_GROUP_8 1555 +#define IMG_GROUP_8_EDITOR 1556 +#define IMG_GROUP_9 1557 +#define IMG_GROUP_9_EDITOR 1558 +#define IMG_GROUP_10 1559 +#define IMG_GROUP_10_EDITOR 1560 +#define IMG_GROUP_11 1561 +#define IMG_GROUP_11_EDITOR 1562 +#define IMG_GROUP_12 1563 +#define IMG_GROUP_12_EDITOR 1564 +#define IMG_GROUP_13 1565 +#define IMG_GROUP_13_EDITOR 1566 +#define IMG_GROUP_14 1567 +#define IMG_GROUP_14_EDITOR 1568 +#define IMG_GROUP_15 1569 +#define IMG_GROUP_15_EDITOR 1570 +#define IMG_GROUP_16 1571 +#define IMG_GROUP_16_EDITOR 1572 +#define IMG_GROUP_17 1573 +#define IMG_GROUP_17_EDITOR 1574 +#define IMG_GROUP_18 1575 +#define IMG_GROUP_18_EDITOR 1576 +#define IMG_GROUP_19 1577 +#define IMG_GROUP_19_EDITOR 1578 +#define IMG_GROUP_20 1579 +#define IMG_GROUP_20_EDITOR 1580 +#define IMG_GROUP_21 1581 +#define IMG_GROUP_21_EDITOR 1582 +#define IMG_GROUP_22 1583 +#define IMG_GROUP_22_EDITOR 1584 +#define IMG_GROUP_23 1585 +#define IMG_GROUP_23_EDITOR 1586 +#define IMG_GROUP_24 1587 +#define IMG_GROUP_24_EDITOR 1588 +#define IMG_GROUP_25 1589 +#define IMG_GROUP_25_EDITOR 1590 +#define IMG_GROUP_26 1591 +#define IMG_GROUP_26_EDITOR 1592 +#define IMG_GROUP_27 1593 +#define IMG_GROUP_27_EDITOR 1594 +#define IMG_GROUP_28 1595 +#define IMG_GROUP_28_EDITOR 1596 +#define IMG_GROUP_29 1597 +#define IMG_GROUP_29_EDITOR 1598 +#define IMG_GROUP_30 1599 +#define IMG_GROUP_30_EDITOR 1600 +#define IMG_GROUP_31 1601 +#define IMG_GROUP_31_EDITOR 1602 +#define IMG_GROUP_32 1603 +#define IMG_GROUP_32_EDITOR 1604 +#define IMG_EMC_OBJECT 1605 +#define IMG_EMC_SPRITE 1606 +#define IMG_TOON_1 1607 +#define IMG_TOON_2 1608 +#define IMG_TOON_3 1609 +#define IMG_TOON_4 1610 +#define IMG_TOON_5 1611 +#define IMG_TOON_6 1612 +#define IMG_TOON_7 1613 +#define IMG_TOON_8 1614 +#define IMG_TOON_9 1615 +#define IMG_TOON_10 1616 +#define IMG_TOON_11 1617 +#define IMG_TOON_12 1618 +#define IMG_TOON_13 1619 +#define IMG_TOON_14 1620 +#define IMG_TOON_15 1621 +#define IMG_TOON_16 1622 +#define IMG_TOON_17 1623 +#define IMG_TOON_18 1624 +#define IMG_TOON_19 1625 +#define IMG_TOON_20 1626 +#define IMG_MENU_CALIBRATE_RED 1627 +#define IMG_MENU_CALIBRATE_BLUE 1628 +#define IMG_MENU_CALIBRATE_YELLOW 1629 +#define IMG_MENU_BUTTON 1630 +#define IMG_MENU_BUTTON_ACTIVE 1631 +#define IMG_MENU_BUTTON_LEFT 1632 +#define IMG_MENU_BUTTON_LEFT_ACTIVE 1633 +#define IMG_MENU_BUTTON_RIGHT 1634 +#define IMG_MENU_BUTTON_RIGHT_ACTIVE 1635 +#define IMG_MENU_BUTTON_UP 1636 +#define IMG_MENU_BUTTON_UP_ACTIVE 1637 +#define IMG_MENU_BUTTON_DOWN 1638 +#define IMG_MENU_BUTTON_DOWN_ACTIVE 1639 +#define IMG_MENU_BUTTON_ENTER_MENU 1640 +#define IMG_MENU_BUTTON_ENTER_MENU_ACTIVE 1641 +#define IMG_MENU_BUTTON_LEAVE_MENU 1642 +#define IMG_MENU_BUTTON_LEAVE_MENU_ACTIVE 1643 +#define IMG_MENU_BUTTON_NEXT_LEVEL 1644 +#define IMG_MENU_BUTTON_NEXT_LEVEL_ACTIVE 1645 +#define IMG_MENU_BUTTON_PREV_LEVEL 1646 +#define IMG_MENU_BUTTON_PREV_LEVEL_ACTIVE 1647 +#define IMG_MENU_SCROLLBAR 1648 +#define IMG_MENU_SCROLLBAR_ACTIVE 1649 +#define IMG_FONT_INITIAL_1 1650 +#define IMG_FONT_INITIAL_2 1651 +#define IMG_FONT_INITIAL_3 1652 +#define IMG_FONT_INITIAL_4 1653 +#define IMG_FONT_TITLE_1 1654 +#define IMG_FONT_TITLE_2 1655 +#define IMG_FONT_MENU_1 1656 +#define IMG_FONT_MENU_1_ACTIVE 1657 +#define IMG_FONT_MENU_2 1658 +#define IMG_FONT_MENU_2_ACTIVE 1659 +#define IMG_FONT_TEXT_1 1660 +#define IMG_FONT_TEXT_1_LEVELS 1661 +#define IMG_FONT_TEXT_1_PREVIEW 1662 +#define IMG_FONT_TEXT_1_SCORES 1663 +#define IMG_FONT_TEXT_1_ACTIVE_SCORES 1664 +#define IMG_FONT_TEXT_2 1665 +#define IMG_FONT_TEXT_2_LEVELS 1666 +#define IMG_FONT_TEXT_2_PREVIEW 1667 +#define IMG_FONT_TEXT_2_SCORES 1668 +#define IMG_FONT_TEXT_2_ACTIVE_SCORES 1669 +#define IMG_FONT_TEXT_3 1670 +#define IMG_FONT_TEXT_3_LEVELS 1671 +#define IMG_FONT_TEXT_3_PREVIEW 1672 +#define IMG_FONT_TEXT_3_SCORES 1673 +#define IMG_FONT_TEXT_3_ACTIVE_SCORES 1674 +#define IMG_FONT_TEXT_4 1675 +#define IMG_FONT_TEXT_4_LEVELS 1676 +#define IMG_FONT_TEXT_4_SCORES 1677 +#define IMG_FONT_TEXT_4_ACTIVE_SCORES 1678 +#define IMG_FONT_ENVELOPE_1 1679 +#define IMG_FONT_ENVELOPE_2 1680 +#define IMG_FONT_ENVELOPE_3 1681 +#define IMG_FONT_ENVELOPE_4 1682 +#define IMG_FONT_INPUT_1 1683 +#define IMG_FONT_INPUT_1_MAIN 1684 +#define IMG_FONT_INPUT_1_ACTIVE 1685 +#define IMG_FONT_INPUT_1_ACTIVE_MAIN 1686 +#define IMG_FONT_INPUT_1_ACTIVE_SETUP 1687 +#define IMG_FONT_INPUT_2 1688 +#define IMG_FONT_INPUT_2_ACTIVE 1689 +#define IMG_FONT_OPTION_OFF 1690 +#define IMG_FONT_OPTION_ON 1691 +#define IMG_FONT_VALUE_1 1692 +#define IMG_FONT_VALUE_2 1693 +#define IMG_FONT_VALUE_OLD 1694 +#define IMG_FONT_LEVEL_NUMBER 1695 +#define IMG_FONT_TAPE_RECORDER 1696 +#define IMG_FONT_GAME_INFO 1697 +#define IMG_GLOBAL_BORDER 1698 +#define IMG_GLOBAL_DOOR 1699 +#define IMG_EDITOR_ELEMENT_BORDER 1700 +#define IMG_EDITOR_ELEMENT_BORDER_INPUT 1701 +#define IMG_EDITOR_CASCADE_LIST 1702 +#define IMG_EDITOR_CASCADE_LIST_ACTIVE 1703 +#define IMG_BACKGROUND_ENVELOPE_1 1704 +#define IMG_BACKGROUND_ENVELOPE_2 1705 +#define IMG_BACKGROUND_ENVELOPE_3 1706 +#define IMG_BACKGROUND_ENVELOPE_4 1707 +#define IMG_BACKGROUND 1708 +#define IMG_BACKGROUND_TITLE 1709 +#define IMG_BACKGROUND_MESSAGE 1710 +#define IMG_BACKGROUND_MAIN 1711 +#define IMG_BACKGROUND_LEVELS 1712 +#define IMG_BACKGROUND_SCORES 1713 +#define IMG_BACKGROUND_EDITOR 1714 +#define IMG_BACKGROUND_INFO 1715 +#define IMG_BACKGROUND_INFO_ELEMENTS 1716 +#define IMG_BACKGROUND_INFO_MUSIC 1717 +#define IMG_BACKGROUND_INFO_CREDITS 1718 +#define IMG_BACKGROUND_INFO_PROGRAM 1719 +#define IMG_BACKGROUND_INFO_LEVELSET 1720 +#define IMG_BACKGROUND_SETUP 1721 +#define IMG_BACKGROUND_DOOR 1722 +#define IMG_TITLESCREEN_INITIAL_1 1723 +#define IMG_TITLESCREEN_INITIAL_2 1724 +#define IMG_TITLESCREEN_INITIAL_3 1725 +#define IMG_TITLESCREEN_INITIAL_4 1726 +#define IMG_TITLESCREEN_INITIAL_5 1727 +#define IMG_TITLESCREEN_1 1728 +#define IMG_TITLESCREEN_2 1729 +#define IMG_TITLESCREEN_3 1730 +#define IMG_TITLESCREEN_4 1731 +#define IMG_TITLESCREEN_5 1732 -#define NUM_IMAGE_FILES 1722 +#define NUM_IMAGE_FILES 1733 #endif /* CONF_GFX_H */ diff --git a/src/conf_snd.c b/src/conf_snd.c index 8528cf0a..8f8d58dc 100644 --- a/src/conf_snd.c +++ b/src/conf_snd.c @@ -121,6 +121,9 @@ struct ConfigInfo sound_config[] = { "magic_wall.activating", "quirk.wav" }, { "magic_wall.active", "miep.wav" }, { "magic_wall.filling", "quirk.wav" }, + { "dc_magic_wall.activating", "quirk.wav" }, + { "dc_magic_wall.active", "miep.wav" }, + { "dc_magic_wall.filling", "quirk.wav" }, { "[amoeba].waiting", UNDEFINED_FILENAME }, { "[amoeba].growing", "amoebe.wav" }, { "[amoeba].dropping", UNDEFINED_FILENAME }, diff --git a/src/conf_snd.h b/src/conf_snd.h index fbc5d292..6691c8e0 100644 --- a/src/conf_snd.h +++ b/src/conf_snd.h @@ -98,128 +98,131 @@ #define SND_MAGIC_WALL_ACTIVATING 77 #define SND_MAGIC_WALL_ACTIVE 78 #define SND_MAGIC_WALL_FILLING 79 -#define SND_CLASS_AMOEBA_WAITING 80 -#define SND_CLASS_AMOEBA_GROWING 81 -#define SND_CLASS_AMOEBA_DROPPING 82 -#define SND_ACID_SPLASHING 83 -#define SND_CLASS_QUICKSAND_FILLING 84 -#define SND_CLASS_QUICKSAND_EMPTYING 85 -#define SND_CLASS_EXIT_OPENING 86 -#define SND_CLASS_EXIT_CLOSING 87 -#define SND_CLASS_EXIT_PASSING 88 -#define SND_CLASS_STEEL_EXIT_OPENING 89 -#define SND_CLASS_STEEL_EXIT_CLOSING 90 -#define SND_CLASS_STEEL_EXIT_PASSING 91 -#define SND_CLASS_EM_EXIT_OPENING 92 -#define SND_CLASS_EM_EXIT_CLOSING 93 -#define SND_CLASS_EM_EXIT_PASSING 94 -#define SND_CLASS_EM_STEEL_EXIT_OPENING 95 -#define SND_CLASS_EM_STEEL_EXIT_CLOSING 96 -#define SND_CLASS_EM_STEEL_EXIT_PASSING 97 -#define SND_PENGUIN_PASSING 98 -#define SND_BALLOON_MOVING 99 -#define SND_BALLOON_WAITING 100 -#define SND_BALLOON_PUSHING 101 -#define SND_CLASS_BALLOON_SWITCH_ACTIVATING 102 -#define SND_SPRING_MOVING 103 -#define SND_SPRING_PUSHING 104 -#define SND_SPRING_IMPACT 105 -#define SND_CLASS_WALL_GROWING 106 -#define SND_EMC_ANDROID_PUSHING 107 -#define SND_EMC_ANDROID_MOVING 108 -#define SND_EMC_ANDROID_DROPPING 109 -#define SND_EMC_MAGIC_BALL_DROPPING 110 -#define SND_PEARL_COLLECTING 111 -#define SND_PEARL_BREAKING 112 -#define SND_PEARL_IMPACT 113 -#define SND_CRYSTAL_COLLECTING 114 -#define SND_CRYSTAL_IMPACT 115 -#define SND_CLASS_ENVELOPE_COLLECTING 116 -#define SND_CLASS_ENVELOPE_OPENING 117 -#define SND_CLASS_ENVELOPE_CLOSING 118 -#define SND_INVISIBLE_SAND_DIGGING 119 -#define SND_INVISIBLE_SAND_ACTIVE_DIGGING 120 -#define SND_SHIELD_NORMAL_COLLECTING 121 -#define SND_SHIELD_NORMAL_ACTIVE 122 -#define SND_SHIELD_DEADLY_COLLECTING 123 -#define SND_SHIELD_DEADLY_ACTIVE 124 -#define SND_EXTRA_TIME_COLLECTING 125 -#define SND_MOLE_MOVING 126 -#define SND_MOLE_WAITING 127 -#define SND_MOLE_DIGGING 128 -#define SND_CLASS_SWITCHGATE_SWITCH_ACTIVATING 129 -#define SND_CLASS_SWITCHGATE_OPENING 130 -#define SND_CLASS_SWITCHGATE_CLOSING 131 -#define SND_CLASS_SWITCHGATE_PASSING 132 -#define SND_CLASS_TIMEGATE_SWITCH_ACTIVATING 133 -#define SND_CLASS_TIMEGATE_SWITCH_ACTIVE 134 -#define SND_CLASS_TIMEGATE_SWITCH_DEACTIVATING 135 -#define SND_CLASS_TIMEGATE_OPENING 136 -#define SND_CLASS_TIMEGATE_CLOSING 137 -#define SND_CLASS_TIMEGATE_PASSING 138 -#define SND_CLASS_CONVEYOR_BELT_SWITCH_ACTIVATING 139 -#define SND_CLASS_CONVEYOR_BELT_ACTIVE 140 -#define SND_CLASS_CONVEYOR_BELT_SWITCH_DEACTIVATING 141 -#define SND_LIGHT_SWITCH_ACTIVATING 142 -#define SND_LIGHT_SWITCH_DEACTIVATING 143 -#define SND_DX_SUPABOMB_PUSHING 144 -#define SND_TRAP_DIGGING 145 -#define SND_TRAP_ACTIVATING 146 -#define SND_CLASS_TUBE_WALKING 147 -#define SND_AMOEBA_TURNING_TO_GEM 148 -#define SND_AMOEBA_TURNING_TO_ROCK 149 -#define SND_SPEED_PILL_COLLECTING 150 -#define SND_DYNABOMB_INCREASE_NUMBER_COLLECTING 151 -#define SND_DYNABOMB_INCREASE_SIZE_COLLECTING 152 -#define SND_DYNABOMB_INCREASE_POWER_COLLECTING 153 -#define SND_CLASS_DYNABOMB_DROPPING 154 -#define SND_CLASS_DYNABOMB_ACTIVE 155 -#define SND_SATELLITE_MOVING 156 -#define SND_SATELLITE_WAITING 157 -#define SND_SATELLITE_PUSHING 158 -#define SND_LAMP_ACTIVATING 159 -#define SND_LAMP_DEACTIVATING 160 -#define SND_TIME_ORB_FULL_COLLECTING 161 -#define SND_TIME_ORB_FULL_IMPACT 162 -#define SND_TIME_ORB_EMPTY_PUSHING 163 -#define SND_TIME_ORB_EMPTY_IMPACT 164 -#define SND_GAME_OF_LIFE_WAITING 165 -#define SND_GAME_OF_LIFE_GROWING 166 -#define SND_BIOMAZE_WAITING 167 -#define SND_BIOMAZE_GROWING 168 -#define SND_PACMAN_MOVING 169 -#define SND_PACMAN_WAITING 170 -#define SND_PACMAN_DIGGING 171 -#define SND_DARK_YAMYAM_MOVING 172 -#define SND_DARK_YAMYAM_WAITING 173 -#define SND_DARK_YAMYAM_DIGGING 174 -#define SND_PENGUIN_MOVING 175 -#define SND_PENGUIN_WAITING 176 -#define SND_PIG_MOVING 177 -#define SND_PIG_WAITING 178 -#define SND_PIG_DIGGING 179 -#define SND_DRAGON_MOVING 180 -#define SND_DRAGON_WAITING 181 -#define SND_DRAGON_ATTACKING 182 -#define SND_GAME_STARTING 183 -#define SND_GAME_RUNNING_OUT_OF_TIME 184 -#define SND_GAME_LEVELTIME_BONUS 185 -#define SND_GAME_LOSING 186 -#define SND_GAME_WINNING 187 -#define SND_GAME_SOKOBAN_SOLVING 188 -#define SND_DOOR_OPENING 189 -#define SND_DOOR_CLOSING 190 -#define SND_MENU_ITEM_ACTIVATING 191 -#define SND_MENU_ITEM_SELECTING 192 -#define SND_BACKGROUND_TITLE 193 -#define SND_BACKGROUND_MESSAGE 194 -#define SND_BACKGROUND_MAIN 195 -#define SND_BACKGROUND_LEVELS 196 -#define SND_BACKGROUND_SCORES 197 -#define SND_BACKGROUND_EDITOR 198 -#define SND_BACKGROUND_INFO 199 -#define SND_BACKGROUND_SETUP 200 +#define SND_DC_MAGIC_WALL_ACTIVATING 80 +#define SND_DC_MAGIC_WALL_ACTIVE 81 +#define SND_DC_MAGIC_WALL_FILLING 82 +#define SND_CLASS_AMOEBA_WAITING 83 +#define SND_CLASS_AMOEBA_GROWING 84 +#define SND_CLASS_AMOEBA_DROPPING 85 +#define SND_ACID_SPLASHING 86 +#define SND_CLASS_QUICKSAND_FILLING 87 +#define SND_CLASS_QUICKSAND_EMPTYING 88 +#define SND_CLASS_EXIT_OPENING 89 +#define SND_CLASS_EXIT_CLOSING 90 +#define SND_CLASS_EXIT_PASSING 91 +#define SND_CLASS_STEEL_EXIT_OPENING 92 +#define SND_CLASS_STEEL_EXIT_CLOSING 93 +#define SND_CLASS_STEEL_EXIT_PASSING 94 +#define SND_CLASS_EM_EXIT_OPENING 95 +#define SND_CLASS_EM_EXIT_CLOSING 96 +#define SND_CLASS_EM_EXIT_PASSING 97 +#define SND_CLASS_EM_STEEL_EXIT_OPENING 98 +#define SND_CLASS_EM_STEEL_EXIT_CLOSING 99 +#define SND_CLASS_EM_STEEL_EXIT_PASSING 100 +#define SND_PENGUIN_PASSING 101 +#define SND_BALLOON_MOVING 102 +#define SND_BALLOON_WAITING 103 +#define SND_BALLOON_PUSHING 104 +#define SND_CLASS_BALLOON_SWITCH_ACTIVATING 105 +#define SND_SPRING_MOVING 106 +#define SND_SPRING_PUSHING 107 +#define SND_SPRING_IMPACT 108 +#define SND_CLASS_WALL_GROWING 109 +#define SND_EMC_ANDROID_PUSHING 110 +#define SND_EMC_ANDROID_MOVING 111 +#define SND_EMC_ANDROID_DROPPING 112 +#define SND_EMC_MAGIC_BALL_DROPPING 113 +#define SND_PEARL_COLLECTING 114 +#define SND_PEARL_BREAKING 115 +#define SND_PEARL_IMPACT 116 +#define SND_CRYSTAL_COLLECTING 117 +#define SND_CRYSTAL_IMPACT 118 +#define SND_CLASS_ENVELOPE_COLLECTING 119 +#define SND_CLASS_ENVELOPE_OPENING 120 +#define SND_CLASS_ENVELOPE_CLOSING 121 +#define SND_INVISIBLE_SAND_DIGGING 122 +#define SND_INVISIBLE_SAND_ACTIVE_DIGGING 123 +#define SND_SHIELD_NORMAL_COLLECTING 124 +#define SND_SHIELD_NORMAL_ACTIVE 125 +#define SND_SHIELD_DEADLY_COLLECTING 126 +#define SND_SHIELD_DEADLY_ACTIVE 127 +#define SND_EXTRA_TIME_COLLECTING 128 +#define SND_MOLE_MOVING 129 +#define SND_MOLE_WAITING 130 +#define SND_MOLE_DIGGING 131 +#define SND_CLASS_SWITCHGATE_SWITCH_ACTIVATING 132 +#define SND_CLASS_SWITCHGATE_OPENING 133 +#define SND_CLASS_SWITCHGATE_CLOSING 134 +#define SND_CLASS_SWITCHGATE_PASSING 135 +#define SND_CLASS_TIMEGATE_SWITCH_ACTIVATING 136 +#define SND_CLASS_TIMEGATE_SWITCH_ACTIVE 137 +#define SND_CLASS_TIMEGATE_SWITCH_DEACTIVATING 138 +#define SND_CLASS_TIMEGATE_OPENING 139 +#define SND_CLASS_TIMEGATE_CLOSING 140 +#define SND_CLASS_TIMEGATE_PASSING 141 +#define SND_CLASS_CONVEYOR_BELT_SWITCH_ACTIVATING 142 +#define SND_CLASS_CONVEYOR_BELT_ACTIVE 143 +#define SND_CLASS_CONVEYOR_BELT_SWITCH_DEACTIVATING 144 +#define SND_LIGHT_SWITCH_ACTIVATING 145 +#define SND_LIGHT_SWITCH_DEACTIVATING 146 +#define SND_DX_SUPABOMB_PUSHING 147 +#define SND_TRAP_DIGGING 148 +#define SND_TRAP_ACTIVATING 149 +#define SND_CLASS_TUBE_WALKING 150 +#define SND_AMOEBA_TURNING_TO_GEM 151 +#define SND_AMOEBA_TURNING_TO_ROCK 152 +#define SND_SPEED_PILL_COLLECTING 153 +#define SND_DYNABOMB_INCREASE_NUMBER_COLLECTING 154 +#define SND_DYNABOMB_INCREASE_SIZE_COLLECTING 155 +#define SND_DYNABOMB_INCREASE_POWER_COLLECTING 156 +#define SND_CLASS_DYNABOMB_DROPPING 157 +#define SND_CLASS_DYNABOMB_ACTIVE 158 +#define SND_SATELLITE_MOVING 159 +#define SND_SATELLITE_WAITING 160 +#define SND_SATELLITE_PUSHING 161 +#define SND_LAMP_ACTIVATING 162 +#define SND_LAMP_DEACTIVATING 163 +#define SND_TIME_ORB_FULL_COLLECTING 164 +#define SND_TIME_ORB_FULL_IMPACT 165 +#define SND_TIME_ORB_EMPTY_PUSHING 166 +#define SND_TIME_ORB_EMPTY_IMPACT 167 +#define SND_GAME_OF_LIFE_WAITING 168 +#define SND_GAME_OF_LIFE_GROWING 169 +#define SND_BIOMAZE_WAITING 170 +#define SND_BIOMAZE_GROWING 171 +#define SND_PACMAN_MOVING 172 +#define SND_PACMAN_WAITING 173 +#define SND_PACMAN_DIGGING 174 +#define SND_DARK_YAMYAM_MOVING 175 +#define SND_DARK_YAMYAM_WAITING 176 +#define SND_DARK_YAMYAM_DIGGING 177 +#define SND_PENGUIN_MOVING 178 +#define SND_PENGUIN_WAITING 179 +#define SND_PIG_MOVING 180 +#define SND_PIG_WAITING 181 +#define SND_PIG_DIGGING 182 +#define SND_DRAGON_MOVING 183 +#define SND_DRAGON_WAITING 184 +#define SND_DRAGON_ATTACKING 185 +#define SND_GAME_STARTING 186 +#define SND_GAME_RUNNING_OUT_OF_TIME 187 +#define SND_GAME_LEVELTIME_BONUS 188 +#define SND_GAME_LOSING 189 +#define SND_GAME_WINNING 190 +#define SND_GAME_SOKOBAN_SOLVING 191 +#define SND_DOOR_OPENING 192 +#define SND_DOOR_CLOSING 193 +#define SND_MENU_ITEM_ACTIVATING 194 +#define SND_MENU_ITEM_SELECTING 195 +#define SND_BACKGROUND_TITLE 196 +#define SND_BACKGROUND_MESSAGE 197 +#define SND_BACKGROUND_MAIN 198 +#define SND_BACKGROUND_LEVELS 199 +#define SND_BACKGROUND_SCORES 200 +#define SND_BACKGROUND_EDITOR 201 +#define SND_BACKGROUND_INFO 202 +#define SND_BACKGROUND_SETUP 203 -#define NUM_SOUND_FILES 201 +#define NUM_SOUND_FILES 204 #endif /* CONF_SND_H */ diff --git a/src/conftime.h b/src/conftime.h index d93612d1..ce246528 100644 --- a/src/conftime.h +++ b/src/conftime.h @@ -1 +1 @@ -#define COMPILE_DATE_STRING "[2007-01-21 00:32]" +#define COMPILE_DATE_STRING "[2007-01-21 02:52]" diff --git a/src/editor.c b/src/editor.c index b4b6d78e..0f09e1b8 100644 --- a/src/editor.c +++ b/src/editor.c @@ -3693,6 +3693,11 @@ static int editor_el_diamond_caves[] = EL_DC_GATE_WHITE, EL_DC_GATE_WHITE_GRAY, EL_DC_GATE_FAKE_GRAY, + + EL_DC_MAGIC_WALL, + EL_QUICKSAND_FAST_EMPTY, + EL_QUICKSAND_FAST_FULL, + EL_EMPTY, }; static int *editor_hl_diamond_caves_ptr = editor_hl_diamond_caves; static int *editor_el_diamond_caves_ptr = editor_el_diamond_caves; @@ -7610,6 +7615,7 @@ static void DrawPropertiesInfo() /* pre-defined properties */ { EP_CAN_PASS_MAGIC_WALL, "- can pass magic walls" }, + { EP_CAN_PASS_DC_MAGIC_WALL,"- can pass magic walls (DC style)" }, { EP_SWITCHABLE, "- can be switched" }, #if 0 { EP_HAS_EDITOR_CONTENT, "- can contain other elements" }, @@ -7777,6 +7783,7 @@ static struct { EL_EMC_DRIPPER, &level.amoeba_speed, TEXT_AMOEBA_SPEED }, { EL_MAGIC_WALL, &level.time_magic_wall, TEXT_DURATION }, { EL_BD_MAGIC_WALL, &level.time_magic_wall, TEXT_DURATION }, + { EL_DC_MAGIC_WALL, &level.time_magic_wall, TEXT_DURATION }, { EL_ROBOT_WHEEL, &level.time_wheel, TEXT_DURATION }, { EL_TIMEGATE_SWITCH, &level.time_timegate, TEXT_DURATION }, diff --git a/src/files.c b/src/files.c index 9f7a1d7d..3d900932 100644 --- a/src/files.c +++ b/src/files.c @@ -4133,7 +4133,7 @@ int getMappedElement_DC(int element) break; case 0x0e77: /* quicksand (boulder) */ - element = EL_QUICKSAND_FULL; + element = EL_QUICKSAND_FAST_FULL; break; case 0x0e99: /* slow quicksand (boulder) */ @@ -4184,7 +4184,7 @@ int getMappedElement_DC(int element) break; case 0x0fb9: - element = EL_MAGIC_WALL; + element = EL_DC_MAGIC_WALL; break; case 0x0fd0: @@ -4348,7 +4348,7 @@ int getMappedElement_DC(int element) break; case 0x1578: /* quicksand (empty) */ - element = EL_QUICKSAND_EMPTY; + element = EL_QUICKSAND_FAST_EMPTY; break; case 0x1579: /* slow quicksand (empty) */ diff --git a/src/game.c b/src/game.c index 12d3753c..be311d80 100644 --- a/src/game.c +++ b/src/game.c @@ -734,10 +734,14 @@ move_stepsize_list[] = { EL_AMOEBA_DROPPING, 2 }, { EL_QUICKSAND_FILLING, 1 }, { EL_QUICKSAND_EMPTYING, 1 }, + { EL_QUICKSAND_FAST_FILLING, 2 }, + { EL_QUICKSAND_FAST_EMPTYING, 2 }, { EL_MAGIC_WALL_FILLING, 2 }, - { EL_BD_MAGIC_WALL_FILLING, 2 }, { EL_MAGIC_WALL_EMPTYING, 2 }, + { EL_BD_MAGIC_WALL_FILLING, 2 }, { EL_BD_MAGIC_WALL_EMPTYING, 2 }, + { EL_DC_MAGIC_WALL_FILLING, 2 }, + { EL_DC_MAGIC_WALL_EMPTYING, 2 }, { EL_UNDEFINED, 0 }, }; @@ -3339,8 +3343,10 @@ void RemoveMovingField(int x, int y) if (element == EL_BLOCKED && (Feld[oldx][oldy] == EL_QUICKSAND_EMPTYING || + Feld[oldx][oldy] == EL_QUICKSAND_FAST_EMPTYING || Feld[oldx][oldy] == EL_MAGIC_WALL_EMPTYING || Feld[oldx][oldy] == EL_BD_MAGIC_WALL_EMPTYING || + Feld[oldx][oldy] == EL_DC_MAGIC_WALL_EMPTYING || Feld[oldx][oldy] == EL_AMOEBA_DROPPING)) next_element = get_next_element(Feld[oldx][oldy]); @@ -4619,6 +4625,16 @@ void Impact(int x, int y) object_hit = TRUE; } + + if (Feld[x][y + 1] == EL_QUICKSAND_FAST_EMPTYING && object_hit == FALSE) + { + RemoveMovingField(x, y + 1); + Feld[x][y + 1] = EL_QUICKSAND_FAST_EMPTY; + Feld[x][y + 2] = EL_ROCK; + DrawLevelField(x, y + 2); + + object_hit = TRUE; + } #endif if (object_hit) @@ -4647,7 +4663,8 @@ void Impact(int x, int y) Bang(x, y); return; } - else if (impact && element == EL_PEARL) + else if (impact && element == EL_PEARL && + smashed != EL_DC_MAGIC_WALL && smashed != EL_DC_MAGIC_WALL_ACTIVE) { ResetGfxAnimation(x, y); @@ -4680,26 +4697,33 @@ void Impact(int x, int y) if (object_hit) /* check which object was hit */ { - if (CAN_PASS_MAGIC_WALL(element) && - (smashed == EL_MAGIC_WALL || - smashed == EL_BD_MAGIC_WALL)) + if ((CAN_PASS_MAGIC_WALL(element) && + (smashed == EL_MAGIC_WALL || + smashed == EL_BD_MAGIC_WALL)) || + (CAN_PASS_DC_MAGIC_WALL(element) && + smashed == EL_DC_MAGIC_WALL)) { int xx, yy; int activated_magic_wall = (smashed == EL_MAGIC_WALL ? EL_MAGIC_WALL_ACTIVE : - EL_BD_MAGIC_WALL_ACTIVE); + smashed == EL_BD_MAGIC_WALL ? EL_BD_MAGIC_WALL_ACTIVE : + EL_DC_MAGIC_WALL_ACTIVE); /* activate magic wall / mill */ SCAN_PLAYFIELD(xx, yy) + { if (Feld[xx][yy] == smashed) Feld[xx][yy] = activated_magic_wall; + } game.magic_wall_time_left = level.time_magic_wall * FRAMES_PER_SECOND; game.magic_wall_active = TRUE; PlayLevelSound(x, y, (smashed == EL_MAGIC_WALL ? SND_MAGIC_WALL_ACTIVATING : - SND_BD_MAGIC_WALL_ACTIVATING)); + smashed == EL_BD_MAGIC_WALL ? + SND_BD_MAGIC_WALL_ACTIVATING : + SND_DC_MAGIC_WALL_ACTIVATING)); } if (IS_PLAYER(x, y + 1)) @@ -4814,12 +4838,15 @@ void Impact(int x, int y) /* play sound of magic wall / mill */ if (!last_line && (Feld[x][y + 1] == EL_MAGIC_WALL_ACTIVE || - Feld[x][y + 1] == EL_BD_MAGIC_WALL_ACTIVE)) + Feld[x][y + 1] == EL_BD_MAGIC_WALL_ACTIVE || + Feld[x][y + 1] == EL_DC_MAGIC_WALL_ACTIVE)) { if (Feld[x][y + 1] == EL_MAGIC_WALL_ACTIVE) PlayLevelSound(x, y, SND_MAGIC_WALL_FILLING); else if (Feld[x][y + 1] == EL_BD_MAGIC_WALL_ACTIVE) PlayLevelSound(x, y, SND_BD_MAGIC_WALL_FILLING); + else if (Feld[x][y + 1] == EL_DC_MAGIC_WALL_ACTIVE) + PlayLevelSound(x, y, SND_DC_MAGIC_WALL_FILLING); return; } @@ -5736,6 +5763,43 @@ void StartMoving(int x, int y) PlayLevelSoundAction(x, y, ACTION_FILLING); } } + else if (element == EL_QUICKSAND_FAST_FULL) + { + if (IS_FREE(x, y + 1)) + { + InitMovingField(x, y, MV_DOWN); + started_moving = TRUE; + + Feld[x][y] = EL_QUICKSAND_FAST_EMPTYING; +#if USE_QUICKSAND_BD_ROCK_BUGFIX + if (Store[x][y] != EL_ROCK && Store[x][y] != EL_BD_ROCK) + Store[x][y] = EL_ROCK; +#else + Store[x][y] = EL_ROCK; +#endif + + PlayLevelSoundAction(x, y, ACTION_EMPTYING); + } + else if (Feld[x][y + 1] == EL_QUICKSAND_FAST_EMPTY) + { + if (!MovDelay[x][y]) + MovDelay[x][y] = TILEY + 1; + + if (MovDelay[x][y]) + { + MovDelay[x][y]--; + if (MovDelay[x][y]) + return; + } + + Feld[x][y] = EL_QUICKSAND_FAST_EMPTY; + Feld[x][y + 1] = EL_QUICKSAND_FAST_FULL; + Store[x][y + 1] = Store[x][y]; + Store[x][y] = 0; + + PlayLevelSoundAction(x, y, ACTION_FILLING); + } + } else if ((element == EL_ROCK || element == EL_BD_ROCK) && Feld[x][y + 1] == EL_QUICKSAND_EMPTY) { @@ -5747,6 +5811,17 @@ void StartMoving(int x, int y) PlayLevelSoundAction(x, y, ACTION_FILLING); } + else if ((element == EL_ROCK || element == EL_BD_ROCK) && + Feld[x][y + 1] == EL_QUICKSAND_FAST_EMPTY) + { + InitMovingField(x, y, MV_DOWN); + started_moving = TRUE; + + Feld[x][y] = EL_QUICKSAND_FAST_FILLING; + Store[x][y] = element; + + PlayLevelSoundAction(x, y, ACTION_FILLING); + } else if (element == EL_MAGIC_WALL_FULL) { if (IS_FREE(x, y + 1)) @@ -5783,7 +5858,7 @@ void StartMoving(int x, int y) started_moving = TRUE; Feld[x][y] = EL_BD_MAGIC_WALL_EMPTYING; - Store[x][y] = EL_CHANGED2(Store[x][y]); + Store[x][y] = EL_CHANGED_BD(Store[x][y]); } else if (Feld[x][y + 1] == EL_BD_MAGIC_WALL_ACTIVE) { @@ -5799,20 +5874,52 @@ void StartMoving(int x, int y) Feld[x][y] = EL_BD_MAGIC_WALL_ACTIVE; Feld[x][y + 1] = EL_BD_MAGIC_WALL_FULL; - Store[x][y + 1] = EL_CHANGED2(Store[x][y]); + Store[x][y + 1] = EL_CHANGED_BD(Store[x][y]); Store[x][y] = 0; } } - else if (CAN_PASS_MAGIC_WALL(element) && - (Feld[x][y + 1] == EL_MAGIC_WALL_ACTIVE || - Feld[x][y + 1] == EL_BD_MAGIC_WALL_ACTIVE)) + else if (element == EL_DC_MAGIC_WALL_FULL) + { + if (IS_FREE(x, y + 1)) + { + InitMovingField(x, y, MV_DOWN); + started_moving = TRUE; + + Feld[x][y] = EL_DC_MAGIC_WALL_EMPTYING; + Store[x][y] = EL_CHANGED_DC(Store[x][y]); + } + else if (Feld[x][y + 1] == EL_DC_MAGIC_WALL_ACTIVE) + { + if (!MovDelay[x][y]) + MovDelay[x][y] = TILEY/4 + 1; + + if (MovDelay[x][y]) + { + MovDelay[x][y]--; + if (MovDelay[x][y]) + return; + } + + Feld[x][y] = EL_DC_MAGIC_WALL_ACTIVE; + Feld[x][y + 1] = EL_DC_MAGIC_WALL_FULL; + Store[x][y + 1] = EL_CHANGED_DC(Store[x][y]); + Store[x][y] = 0; + } + } + else if ((CAN_PASS_MAGIC_WALL(element) && + (Feld[x][y + 1] == EL_MAGIC_WALL_ACTIVE || + Feld[x][y + 1] == EL_BD_MAGIC_WALL_ACTIVE)) || + (CAN_PASS_DC_MAGIC_WALL(element) && + (Feld[x][y + 1] == EL_DC_MAGIC_WALL_ACTIVE))) + { InitMovingField(x, y, MV_DOWN); started_moving = TRUE; Feld[x][y] = (Feld[x][y + 1] == EL_MAGIC_WALL_ACTIVE ? EL_MAGIC_WALL_FILLING : - EL_BD_MAGIC_WALL_FILLING); + Feld[x][y + 1] == EL_BD_MAGIC_WALL_ACTIVE ? EL_BD_MAGIC_WALL_FILLING : + EL_DC_MAGIC_WALL_FILLING); Store[x][y] = element; } else if (CAN_FALL(element) && Feld[x][y + 1] == EL_ACID) @@ -6628,6 +6735,16 @@ void ContinueMoving(int x, int y) Feld[x][y] = get_next_element(element); element = Feld[newx][newy] = Store[x][y]; } + else if (element == EL_QUICKSAND_FAST_FILLING) + { + element = Feld[newx][newy] = get_next_element(element); + Store[newx][newy] = Store[x][y]; + } + else if (element == EL_QUICKSAND_FAST_EMPTYING) + { + Feld[x][y] = get_next_element(element); + element = Feld[newx][newy] = Store[x][y]; + } else if (element == EL_MAGIC_WALL_FILLING) { element = Feld[newx][newy] = get_next_element(element); @@ -6660,6 +6777,24 @@ void ContinueMoving(int x, int y) Feld[x][y] = EL_BD_MAGIC_WALL_DEAD; element = Feld[newx][newy] = Store[x][y]; +#if USE_NEW_CUSTOM_VALUE + InitField(newx, newy, FALSE); +#endif + } + else if (element == EL_DC_MAGIC_WALL_FILLING) + { + element = Feld[newx][newy] = get_next_element(element); + if (!game.magic_wall_active) + element = Feld[newx][newy] = EL_DC_MAGIC_WALL_DEAD; + Store[newx][newy] = Store[x][y]; + } + else if (element == EL_DC_MAGIC_WALL_EMPTYING) + { + Feld[x][y] = get_next_element(element); + if (!game.magic_wall_active) + Feld[x][y] = EL_DC_MAGIC_WALL_DEAD; + element = Feld[newx][newy] = Store[x][y]; + #if USE_NEW_CUSTOM_VALUE InitField(newx, newy, FALSE); #endif @@ -7163,7 +7298,8 @@ void AmoebeAbleger(int ax, int ay) if (IS_FREE(x, y) || CAN_GROW_INTO(Feld[x][y]) || - Feld[x][y] == EL_QUICKSAND_EMPTY) + Feld[x][y] == EL_QUICKSAND_EMPTY || + Feld[x][y] == EL_QUICKSAND_FAST_EMPTY) { newax = x; neway = y; @@ -7188,7 +7324,8 @@ void AmoebeAbleger(int ax, int ay) if (IS_FREE(x, y) || CAN_GROW_INTO(Feld[x][y]) || - Feld[x][y] == EL_QUICKSAND_EMPTY) + Feld[x][y] == EL_QUICKSAND_EMPTY || + Feld[x][y] == EL_QUICKSAND_FAST_EMPTY) { newax = x; neway = y; @@ -10011,7 +10148,10 @@ void GameActions_RND() element == EL_MAGIC_WALL_EMPTYING || element == EL_BD_MAGIC_WALL_FULL || element == EL_BD_MAGIC_WALL_ACTIVE || - element == EL_BD_MAGIC_WALL_EMPTYING) && + element == EL_BD_MAGIC_WALL_EMPTYING || + element == EL_DC_MAGIC_WALL_FULL || + element == EL_DC_MAGIC_WALL_ACTIVE || + element == EL_DC_MAGIC_WALL_EMPTYING) && ABS(x-jx) + ABS(y-jy) < ABS(magic_wall_x-jx) + ABS(magic_wall_y-jy)) { magic_wall_x = x; @@ -10036,6 +10176,7 @@ void GameActions_RND() (element == EL_EMPTY || CAN_GROW_INTO(element) || element == EL_QUICKSAND_EMPTY || + element == EL_QUICKSAND_FAST_EMPTY || element == EL_ACID_SPLASH_LEFT || element == EL_ACID_SPLASH_RIGHT)) { @@ -10082,6 +10223,10 @@ void GameActions_RND() element == EL_BD_MAGIC_WALL_ACTIVE || element == EL_BD_MAGIC_WALL_EMPTYING) PlayLevelSound(magic_wall_x, magic_wall_y, SND_BD_MAGIC_WALL_ACTIVE); + else if (element == EL_DC_MAGIC_WALL_FULL || + element == EL_DC_MAGIC_WALL_ACTIVE || + element == EL_DC_MAGIC_WALL_EMPTYING) + PlayLevelSound(magic_wall_x, magic_wall_y, SND_DC_MAGIC_WALL_ACTIVE); else PlayLevelSound(magic_wall_x, magic_wall_y, SND_MAGIC_WALL_ACTIVE); } @@ -10107,6 +10252,12 @@ void GameActions_RND() Feld[x][y] = EL_BD_MAGIC_WALL_DEAD; DrawLevelField(x, y); } + else if (element == EL_DC_MAGIC_WALL_ACTIVE || + element == EL_DC_MAGIC_WALL_FULL) + { + Feld[x][y] = EL_DC_MAGIC_WALL_DEAD; + DrawLevelField(x, y); + } } game.magic_wall_active = FALSE; diff --git a/src/init.c b/src/init.c index d4fd58a5..49006fa1 100644 --- a/src/init.c +++ b/src/init.c @@ -2389,8 +2389,10 @@ void InitElementPropertiesStatic() EL_NUT, EL_AMOEBA_DROP, EL_QUICKSAND_FULL, + EL_QUICKSAND_FAST_FULL, EL_MAGIC_WALL_FULL, EL_BD_MAGIC_WALL_FULL, + EL_DC_MAGIC_WALL_FULL, EL_TIME_ORB_FULL, EL_TIME_ORB_EMPTY, EL_SP_ZONK, @@ -2837,6 +2839,22 @@ void InitElementPropertiesStatic() -1 }; + static int ep_can_pass_dc_magic_wall[] = + { + EL_ROCK, + EL_BD_ROCK, + EL_EMERALD, + EL_BD_DIAMOND, + EL_EMERALD_YELLOW, + EL_EMERALD_RED, + EL_EMERALD_PURPLE, + EL_DIAMOND, + EL_PEARL, + EL_CRYSTAL, + + -1 + }; + static int ep_switchable[] = { EL_ROBOT_WHEEL, @@ -3566,6 +3584,7 @@ void InitElementPropertiesStatic() EL_STEELWALL, EL_AMOEBA_DEAD, EL_QUICKSAND_EMPTY, + EL_QUICKSAND_FAST_EMPTY, EL_STONEBLOCK, EL_ROBOT_WHEEL, EL_KEY_1, @@ -3650,6 +3669,8 @@ void InitElementPropertiesStatic() EL_MAGIC_WALL_DEAD, EL_BD_MAGIC_WALL, EL_BD_MAGIC_WALL_DEAD, + EL_DC_MAGIC_WALL, + EL_DC_MAGIC_WALL_DEAD, EL_AMOEBA_TO_DIAMOND, EL_BLOCKED, EL_SP_EMPTY, @@ -3883,6 +3904,7 @@ void InitElementPropertiesStatic() { ep_player, EP_PLAYER }, { ep_can_pass_magic_wall, EP_CAN_PASS_MAGIC_WALL }, + { ep_can_pass_dc_magic_wall, EP_CAN_PASS_DC_MAGIC_WALL }, { ep_switchable, EP_SWITCHABLE }, { ep_bd_element, EP_BD_ELEMENT }, { ep_sp_element, EP_SP_ELEMENT }, diff --git a/src/main.c b/src/main.c index 1560d6c2..5abc0ae1 100644 --- a/src/main.c +++ b/src/main.c @@ -216,12 +216,12 @@ struct ElementNameInfo element_name_info[MAX_NUM_ELEMENTS + 1] = { "quicksand_empty", "quicksand", - "empty quicksand" + "quicksand (empty)" }, { "quicksand_full", "quicksand", - "quicksand with rock" + "quicksand (with rock)" }, { "amoeba_drop", @@ -4427,6 +4427,21 @@ struct ElementNameInfo element_name_info[MAX_NUM_ELEMENTS + 1] = "gate", "gray door (opened by no key)" }, + { + "dc_magic_wall", + "dc_magic_wall", + "magic wall (DC style)" + }, + { + "quicksand_fast_empty", + "quicksand", + "fast quicksand (empty)" + }, + { + "quicksand_fast_full", + "quicksand", + "fast quicksand (with rock)" + }, /* ----------------------------------------------------------------------- */ /* "real" (and therefore drawable) runtime elements */ @@ -4647,6 +4662,11 @@ struct ElementNameInfo element_name_info[MAX_NUM_ELEMENTS + 1] = "quicksand", "-" }, + { + "quicksand_fast.emptying", + "quicksand", + "-" + }, { "magic_wall.active", "magic_wall", @@ -4657,6 +4677,11 @@ struct ElementNameInfo element_name_info[MAX_NUM_ELEMENTS + 1] = "magic_wall", "-" }, + { + "dc_magic_wall.active", + "magic_wall", + "-" + }, { "magic_wall_full", "magic_wall", @@ -4667,6 +4692,11 @@ struct ElementNameInfo element_name_info[MAX_NUM_ELEMENTS + 1] = "magic_wall", "-" }, + { + "dc_magic_wall_full", + "magic_wall", + "-" + }, { "magic_wall.emptying", "magic_wall", @@ -4677,6 +4707,11 @@ struct ElementNameInfo element_name_info[MAX_NUM_ELEMENTS + 1] = "magic_wall", "-" }, + { + "dc_magic_wall.emptying", + "magic_wall", + "-" + }, { "magic_wall_dead", "magic_wall", @@ -4687,6 +4722,11 @@ struct ElementNameInfo element_name_info[MAX_NUM_ELEMENTS + 1] = "magic_wall", "-" }, + { + "dc_magic_wall_dead", + "magic_wall", + "-" + }, { "emc_fake_grass.active", @@ -4858,6 +4898,11 @@ struct ElementNameInfo element_name_info[MAX_NUM_ELEMENTS + 1] = "quicksand", "-" }, + { + "quicksand_fast.filling", + "quicksand", + "-" + }, { "magic_wall.filling", "-", @@ -4868,6 +4913,11 @@ struct ElementNameInfo element_name_info[MAX_NUM_ELEMENTS + 1] = "-", "-" }, + { + "dc_magic_wall.filling", + "-", + "-" + }, { "element.snapping", "-", diff --git a/src/main.h b/src/main.h index 62764d59..28b4574a 100644 --- a/src/main.h +++ b/src/main.h @@ -72,6 +72,7 @@ #define IN_SCR_FIELD(x, y) IN_FIELD_MINMAX(x,y, BX1,BY1, BX2,BY2) /* values for configurable properties (custom elem's only, else pre-defined) */ +/* (never change these values, as they are stored in level files!) */ #define EP_DIGGABLE 0 #define EP_COLLECTIBLE_ONLY 1 #define EP_DONT_RUN_INTO 2 @@ -105,78 +106,80 @@ #define EP_GRAVITY_REACHABLE 30 /* values for pre-defined properties */ +/* (from here on, values can be changed by inserting new values) */ #define EP_PLAYER 32 #define EP_CAN_PASS_MAGIC_WALL 33 -#define EP_SWITCHABLE 34 -#define EP_BD_ELEMENT 35 -#define EP_SP_ELEMENT 36 -#define EP_SB_ELEMENT 37 -#define EP_GEM 38 -#define EP_FOOD_DARK_YAMYAM 39 -#define EP_FOOD_PENGUIN 40 -#define EP_FOOD_PIG 41 -#define EP_HISTORIC_WALL 42 -#define EP_HISTORIC_SOLID 43 -#define EP_CLASSIC_ENEMY 44 -#define EP_BELT 45 -#define EP_BELT_ACTIVE 46 -#define EP_BELT_SWITCH 47 -#define EP_TUBE 48 -#define EP_KEYGATE 49 -#define EP_AMOEBOID 50 -#define EP_AMOEBALIVE 51 -#define EP_HAS_EDITOR_CONTENT 52 -#define EP_CAN_TURN_EACH_MOVE 53 -#define EP_CAN_GROW 54 -#define EP_ACTIVE_BOMB 55 -#define EP_INACTIVE 56 +#define EP_CAN_PASS_DC_MAGIC_WALL 34 +#define EP_SWITCHABLE 35 +#define EP_BD_ELEMENT 36 +#define EP_SP_ELEMENT 37 +#define EP_SB_ELEMENT 38 +#define EP_GEM 39 +#define EP_FOOD_DARK_YAMYAM 40 +#define EP_FOOD_PENGUIN 41 +#define EP_FOOD_PIG 42 +#define EP_HISTORIC_WALL 43 +#define EP_HISTORIC_SOLID 44 +#define EP_CLASSIC_ENEMY 45 +#define EP_BELT 46 +#define EP_BELT_ACTIVE 47 +#define EP_BELT_SWITCH 48 +#define EP_TUBE 49 +#define EP_KEYGATE 50 +#define EP_AMOEBOID 51 +#define EP_AMOEBALIVE 52 +#define EP_HAS_EDITOR_CONTENT 53 +#define EP_CAN_TURN_EACH_MOVE 54 +#define EP_CAN_GROW 55 +#define EP_ACTIVE_BOMB 56 +#define EP_INACTIVE 57 /* values for special configurable properties (depending on level settings) */ -#define EP_EM_SLIPPERY_WALL 57 +#define EP_EM_SLIPPERY_WALL 58 /* values for special graphics properties (no effect on game engine) */ -#define EP_GFX_CRUMBLED 58 +#define EP_GFX_CRUMBLED 59 /* values for derived properties (determined from properties above) */ -#define EP_ACCESSIBLE_OVER 59 -#define EP_ACCESSIBLE_INSIDE 60 -#define EP_ACCESSIBLE_UNDER 61 -#define EP_WALKABLE 62 -#define EP_PASSABLE 63 -#define EP_ACCESSIBLE 64 -#define EP_COLLECTIBLE 65 -#define EP_SNAPPABLE 66 -#define EP_WALL 67 -#define EP_SOLID_FOR_PUSHING 68 -#define EP_DRAGONFIRE_PROOF 69 -#define EP_EXPLOSION_PROOF 70 -#define EP_CAN_SMASH 71 -#define EP_EXPLODES_3X3_OLD 72 -#define EP_CAN_EXPLODE_BY_FIRE 73 -#define EP_CAN_EXPLODE_SMASHED 74 -#define EP_CAN_EXPLODE_IMPACT 75 -#define EP_SP_PORT 76 -#define EP_CAN_EXPLODE_BY_DRAGONFIRE 77 -#define EP_CAN_EXPLODE_BY_EXPLOSION 78 -#define EP_COULD_MOVE_INTO_ACID 79 -#define EP_MAYBE_DONT_COLLIDE_WITH 80 -#define EP_CAN_BE_CLONED_BY_ANDROID 81 +#define EP_ACCESSIBLE_OVER 60 +#define EP_ACCESSIBLE_INSIDE 61 +#define EP_ACCESSIBLE_UNDER 62 +#define EP_WALKABLE 63 +#define EP_PASSABLE 64 +#define EP_ACCESSIBLE 65 +#define EP_COLLECTIBLE 66 +#define EP_SNAPPABLE 67 +#define EP_WALL 68 +#define EP_SOLID_FOR_PUSHING 69 +#define EP_DRAGONFIRE_PROOF 70 +#define EP_EXPLOSION_PROOF 71 +#define EP_CAN_SMASH 72 +#define EP_EXPLODES_3X3_OLD 73 +#define EP_CAN_EXPLODE_BY_FIRE 74 +#define EP_CAN_EXPLODE_SMASHED 75 +#define EP_CAN_EXPLODE_IMPACT 76 +#define EP_SP_PORT 77 +#define EP_CAN_EXPLODE_BY_DRAGONFIRE 78 +#define EP_CAN_EXPLODE_BY_EXPLOSION 79 +#define EP_COULD_MOVE_INTO_ACID 80 +#define EP_MAYBE_DONT_COLLIDE_WITH 81 +#define EP_CAN_BE_CLONED_BY_ANDROID 82 /* values for internal purpose only (level editor) */ -#define EP_WALK_TO_OBJECT 82 -#define EP_DEADLY 83 -#define EP_EDITOR_CASCADE 84 -#define EP_EDITOR_CASCADE_ACTIVE 85 -#define EP_EDITOR_CASCADE_INACTIVE 86 +#define EP_WALK_TO_OBJECT 83 +#define EP_DEADLY 84 +#define EP_EDITOR_CASCADE 85 +#define EP_EDITOR_CASCADE_ACTIVE 86 +#define EP_EDITOR_CASCADE_INACTIVE 87 /* values for internal purpose only (game engine) */ -#define EP_HAS_ACTION 87 -#define EP_CAN_CHANGE_OR_HAS_ACTION 88 +#define EP_HAS_ACTION 88 +#define EP_CAN_CHANGE_OR_HAS_ACTION 89 /* values for internal purpose only (other) */ -#define EP_OBSOLETE 89 +#define EP_OBSOLETE 90 -#define NUM_ELEMENT_PROPERTIES 90 +#define NUM_ELEMENT_PROPERTIES 91 #define NUM_EP_BITFIELDS ((NUM_ELEMENT_PROPERTIES + 31) / 32) #define EP_BITFIELD_BASE_NR 0 @@ -550,6 +553,7 @@ /* macros for pre-defined properties */ #define ELEM_IS_PLAYER(e) HAS_PROPERTY(e, EP_PLAYER) #define CAN_PASS_MAGIC_WALL(e) HAS_PROPERTY(e, EP_CAN_PASS_MAGIC_WALL) +#define CAN_PASS_DC_MAGIC_WALL(e) HAS_PROPERTY(e, EP_CAN_PASS_DC_MAGIC_WALL) #define IS_SWITCHABLE(e) HAS_PROPERTY(e, EP_SWITCHABLE) #define IS_BD_ELEMENT(e) HAS_PROPERTY(e, EP_BD_ELEMENT) #define IS_SP_ELEMENT(e) HAS_PROPERTY(e, EP_SP_ELEMENT) @@ -740,9 +744,18 @@ (e) == EL_EMERALD_RED ? EL_DIAMOND : \ (e) == EL_EMERALD_PURPLE ? EL_DIAMOND : \ EL_ROCK) -#define EL_CHANGED2(e) ((e) == EL_ROCK ? EL_BD_DIAMOND : \ +#define EL_CHANGED_BD(e) ((e) == EL_ROCK ? EL_BD_DIAMOND : \ (e) == EL_BD_ROCK ? EL_BD_DIAMOND : \ EL_BD_ROCK) +#define EL_CHANGED_DC(e) ((e) == EL_ROCK ? EL_EMERALD : \ + (e) == EL_BD_ROCK ? EL_BD_DIAMOND : \ + (e) == EL_EMERALD ? EL_DIAMOND : \ + (e) == EL_EMERALD_YELLOW ? EL_DIAMOND : \ + (e) == EL_EMERALD_RED ? EL_DIAMOND : \ + (e) == EL_EMERALD_PURPLE ? EL_DIAMOND : \ + (e) == EL_PEARL ? EL_BOMB : \ + (e) == EL_CRYSTAL ? EL_CRYSTAL : \ + EL_ROCK) #define IS_DRAWABLE(e) ((e) < EL_BLOCKED) #define IS_NOT_DRAWABLE(e) ((e) >= EL_BLOCKED) #define TAPE_IS_EMPTY(x) ((x).length == 0) @@ -1398,7 +1411,12 @@ #define EL_DC_GATE_FAKE_GRAY 859 -#define NUM_FILE_ELEMENTS 860 +#define EL_DC_MAGIC_WALL 860 + +#define EL_QUICKSAND_FAST_EMPTY 861 +#define EL_QUICKSAND_FAST_FULL 862 + +#define NUM_FILE_ELEMENTS 863 /* "real" (and therefore drawable) runtime elements */ @@ -1447,33 +1465,38 @@ #define EL_SP_MURPHY_CLONE (EL_FIRST_RUNTIME_REAL + 40) #define EL_AMOEBA_DROPPING (EL_FIRST_RUNTIME_REAL + 41) #define EL_QUICKSAND_EMPTYING (EL_FIRST_RUNTIME_REAL + 42) -#define EL_MAGIC_WALL_ACTIVE (EL_FIRST_RUNTIME_REAL + 43) -#define EL_BD_MAGIC_WALL_ACTIVE (EL_FIRST_RUNTIME_REAL + 44) -#define EL_MAGIC_WALL_FULL (EL_FIRST_RUNTIME_REAL + 45) -#define EL_BD_MAGIC_WALL_FULL (EL_FIRST_RUNTIME_REAL + 46) -#define EL_MAGIC_WALL_EMPTYING (EL_FIRST_RUNTIME_REAL + 47) -#define EL_BD_MAGIC_WALL_EMPTYING (EL_FIRST_RUNTIME_REAL + 48) -#define EL_MAGIC_WALL_DEAD (EL_FIRST_RUNTIME_REAL + 49) -#define EL_BD_MAGIC_WALL_DEAD (EL_FIRST_RUNTIME_REAL + 50) -#define EL_EMC_FAKE_GRASS_ACTIVE (EL_FIRST_RUNTIME_REAL + 51) -#define EL_GATE_1_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 52) -#define EL_GATE_2_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 53) -#define EL_GATE_3_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 54) -#define EL_GATE_4_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 55) -#define EL_EM_GATE_1_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 56) -#define EL_EM_GATE_2_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 57) -#define EL_EM_GATE_3_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 58) -#define EL_EM_GATE_4_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 59) -#define EL_EMC_GATE_5_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 60) -#define EL_EMC_GATE_6_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 61) -#define EL_EMC_GATE_7_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 62) -#define EL_EMC_GATE_8_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 63) -#define EL_DC_GATE_WHITE_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 64) -#define EL_EMC_DRIPPER_ACTIVE (EL_FIRST_RUNTIME_REAL + 65) -#define EL_EMC_SPRING_BUMPER_ACTIVE (EL_FIRST_RUNTIME_REAL + 66) +#define EL_QUICKSAND_FAST_EMPTYING (EL_FIRST_RUNTIME_REAL + 43) +#define EL_MAGIC_WALL_ACTIVE (EL_FIRST_RUNTIME_REAL + 44) +#define EL_BD_MAGIC_WALL_ACTIVE (EL_FIRST_RUNTIME_REAL + 45) +#define EL_DC_MAGIC_WALL_ACTIVE (EL_FIRST_RUNTIME_REAL + 46) +#define EL_MAGIC_WALL_FULL (EL_FIRST_RUNTIME_REAL + 47) +#define EL_BD_MAGIC_WALL_FULL (EL_FIRST_RUNTIME_REAL + 48) +#define EL_DC_MAGIC_WALL_FULL (EL_FIRST_RUNTIME_REAL + 49) +#define EL_MAGIC_WALL_EMPTYING (EL_FIRST_RUNTIME_REAL + 50) +#define EL_BD_MAGIC_WALL_EMPTYING (EL_FIRST_RUNTIME_REAL + 51) +#define EL_DC_MAGIC_WALL_EMPTYING (EL_FIRST_RUNTIME_REAL + 52) +#define EL_MAGIC_WALL_DEAD (EL_FIRST_RUNTIME_REAL + 53) +#define EL_BD_MAGIC_WALL_DEAD (EL_FIRST_RUNTIME_REAL + 54) +#define EL_DC_MAGIC_WALL_DEAD (EL_FIRST_RUNTIME_REAL + 55) +#define EL_EMC_FAKE_GRASS_ACTIVE (EL_FIRST_RUNTIME_REAL + 56) +#define EL_GATE_1_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 57) +#define EL_GATE_2_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 58) +#define EL_GATE_3_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 59) +#define EL_GATE_4_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 60) +#define EL_EM_GATE_1_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 61) +#define EL_EM_GATE_2_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 62) +#define EL_EM_GATE_3_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 63) +#define EL_EM_GATE_4_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 64) +#define EL_EMC_GATE_5_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 65) +#define EL_EMC_GATE_6_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 66) +#define EL_EMC_GATE_7_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 67) +#define EL_EMC_GATE_8_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 68) +#define EL_DC_GATE_WHITE_GRAY_ACTIVE (EL_FIRST_RUNTIME_REAL + 69) +#define EL_EMC_DRIPPER_ACTIVE (EL_FIRST_RUNTIME_REAL + 70) +#define EL_EMC_SPRING_BUMPER_ACTIVE (EL_FIRST_RUNTIME_REAL + 71) /* "unreal" (and therefore not drawable) runtime elements */ -#define EL_FIRST_RUNTIME_UNREAL (EL_FIRST_RUNTIME_REAL + 67) +#define EL_FIRST_RUNTIME_UNREAL (EL_FIRST_RUNTIME_REAL + 72) #define EL_BLOCKED (EL_FIRST_RUNTIME_UNREAL + 0) #define EL_EXPLOSION (EL_FIRST_RUNTIME_UNREAL + 1) @@ -1492,13 +1515,15 @@ #define EL_PLAYER_IS_EXPLODING_3 (EL_FIRST_RUNTIME_UNREAL + 14) #define EL_PLAYER_IS_EXPLODING_4 (EL_FIRST_RUNTIME_UNREAL + 15) #define EL_QUICKSAND_FILLING (EL_FIRST_RUNTIME_UNREAL + 16) -#define EL_MAGIC_WALL_FILLING (EL_FIRST_RUNTIME_UNREAL + 17) -#define EL_BD_MAGIC_WALL_FILLING (EL_FIRST_RUNTIME_UNREAL + 18) -#define EL_ELEMENT_SNAPPING (EL_FIRST_RUNTIME_UNREAL + 19) -#define EL_DIAGONAL_SHRINKING (EL_FIRST_RUNTIME_UNREAL + 20) -#define EL_DIAGONAL_GROWING (EL_FIRST_RUNTIME_UNREAL + 21) - -#define NUM_RUNTIME_ELEMENTS (EL_FIRST_RUNTIME_UNREAL + 22) +#define EL_QUICKSAND_FAST_FILLING (EL_FIRST_RUNTIME_UNREAL + 17) +#define EL_MAGIC_WALL_FILLING (EL_FIRST_RUNTIME_UNREAL + 18) +#define EL_BD_MAGIC_WALL_FILLING (EL_FIRST_RUNTIME_UNREAL + 19) +#define EL_DC_MAGIC_WALL_FILLING (EL_FIRST_RUNTIME_UNREAL + 20) +#define EL_ELEMENT_SNAPPING (EL_FIRST_RUNTIME_UNREAL + 21) +#define EL_DIAGONAL_SHRINKING (EL_FIRST_RUNTIME_UNREAL + 22) +#define EL_DIAGONAL_GROWING (EL_FIRST_RUNTIME_UNREAL + 23) + +#define NUM_RUNTIME_ELEMENTS (EL_FIRST_RUNTIME_UNREAL + 24) /* dummy elements (never used as game elements, only used as graphics) */ #define EL_FIRST_DUMMY NUM_RUNTIME_ELEMENTS diff --git a/src/tools.c b/src/tools.c index bed28cee..3d9416e3 100644 --- a/src/tools.c +++ b/src/tools.c @@ -1410,13 +1410,17 @@ void DrawScreenField(int x, int y) boolean cut_mode = NO_CUTTING; if (element == EL_QUICKSAND_EMPTYING || + element == EL_QUICKSAND_FAST_EMPTYING || element == EL_MAGIC_WALL_EMPTYING || element == EL_BD_MAGIC_WALL_EMPTYING || + element == EL_DC_MAGIC_WALL_EMPTYING || element == EL_AMOEBA_DROPPING) cut_mode = CUT_ABOVE; else if (element == EL_QUICKSAND_FILLING || + element == EL_QUICKSAND_FAST_FILLING || element == EL_MAGIC_WALL_FILLING || - element == EL_BD_MAGIC_WALL_FILLING) + element == EL_BD_MAGIC_WALL_FILLING || + element == EL_DC_MAGIC_WALL_FILLING) cut_mode = CUT_BELOW; if (cut_mode == CUT_ABOVE) @@ -1458,8 +1462,10 @@ void DrawScreenField(int x, int y) content_old = Store[oldx][oldy]; if (element_old == EL_QUICKSAND_EMPTYING || + element_old == EL_QUICKSAND_FAST_EMPTYING || element_old == EL_MAGIC_WALL_EMPTYING || element_old == EL_BD_MAGIC_WALL_EMPTYING || + element_old == EL_DC_MAGIC_WALL_EMPTYING || element_old == EL_AMOEBA_DROPPING) cut_mode = CUT_ABOVE; @@ -5405,10 +5411,14 @@ int get_next_element(int element) { case EL_QUICKSAND_FILLING: return EL_QUICKSAND_FULL; case EL_QUICKSAND_EMPTYING: return EL_QUICKSAND_EMPTY; + case EL_QUICKSAND_FAST_FILLING: return EL_QUICKSAND_FAST_FULL; + case EL_QUICKSAND_FAST_EMPTYING: return EL_QUICKSAND_FAST_EMPTY; case EL_MAGIC_WALL_FILLING: return EL_MAGIC_WALL_FULL; case EL_MAGIC_WALL_EMPTYING: return EL_MAGIC_WALL_ACTIVE; case EL_BD_MAGIC_WALL_FILLING: return EL_BD_MAGIC_WALL_FULL; case EL_BD_MAGIC_WALL_EMPTYING: return EL_BD_MAGIC_WALL_ACTIVE; + case EL_DC_MAGIC_WALL_FILLING: return EL_DC_MAGIC_WALL_FULL; + case EL_DC_MAGIC_WALL_EMPTYING: return EL_DC_MAGIC_WALL_ACTIVE; case EL_AMOEBA_DROPPING: return EL_AMOEBA_WET; default: return element;