X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fmain.c;h=4ef296f299673572ab459559f0eafef3e1fe057f;hb=d781e40cf5aade94d6f4e80b98b0bf04cc880766;hp=a3a1e6b61d885187847ceec6f00a95962fbc0bda;hpb=60616073708fbb623db3408620aca220e871e696;p=rocksndiamonds.git diff --git a/src/main.c b/src/main.c index a3a1e6b6..4ef296f2 100644 --- a/src/main.c +++ b/src/main.c @@ -67,6 +67,7 @@ int PlayerVisit[MAX_LEV_FIELDX][MAX_LEV_FIELDY]; int GfxFrame[MAX_LEV_FIELDX][MAX_LEV_FIELDY]; int GfxRandom[MAX_LEV_FIELDX][MAX_LEV_FIELDY]; +int GfxRandomStatic[MAX_LEV_FIELDX][MAX_LEV_FIELDY]; int GfxElement[MAX_LEV_FIELDX][MAX_LEV_FIELDY]; int GfxAction[MAX_LEV_FIELDX][MAX_LEV_FIELDY]; int GfxDir[MAX_LEV_FIELDX][MAX_LEV_FIELDY]; @@ -6277,6 +6278,86 @@ struct ElementNameInfo element_name_info[MAX_NUM_ELEMENTS + 1] = "spring", "spring (starts moving right)" }, + { + "empty_space_1", + "empty_space", + "empty space 1" + }, + { + "empty_space_2", + "empty_space", + "empty space 2" + }, + { + "empty_space_3", + "empty_space", + "empty space 3" + }, + { + "empty_space_4", + "empty_space", + "empty space 4" + }, + { + "empty_space_5", + "empty_space", + "empty space 5" + }, + { + "empty_space_6", + "empty_space", + "empty space 6" + }, + { + "empty_space_7", + "empty_space", + "empty space 7" + }, + { + "empty_space_8", + "empty_space", + "empty space 8" + }, + { + "empty_space_9", + "empty_space", + "empty space 9" + }, + { + "empty_space_10", + "empty_space", + "empty space 10" + }, + { + "empty_space_11", + "empty_space", + "empty space 11" + }, + { + "empty_space_12", + "empty_space", + "empty space 12" + }, + { + "empty_space_13", + "empty_space", + "empty space 13" + }, + { + "empty_space_14", + "empty_space", + "empty space 14" + }, + { + "empty_space_15", + "empty_space", + "empty space 15" + }, + { + "empty_space_16", + "empty_space", + "empty space 16" + }, // -------------------------------------------------------------------------- // "real" (and therefore drawable) runtime elements @@ -7213,6 +7294,16 @@ struct ElementNameInfo element_name_info[MAX_NUM_ELEMENTS + 1] = "internal", "hide group elements" }, + { + "internal_cascade_es", + "internal", + "show empty space elements" + }, + { + "internal_cascade_es.active", + "internal", + "hide empty space elements" + }, { "internal_cascade_ref", "internal", @@ -7643,7 +7734,6 @@ static void print_usage(void) " \"convert LEVELDIR [NR]\" convert levels in LEVELDIR\n" " \"create sketch images DIRECTORY\" write BMP images to DIRECTORY\n" " \"create collect image DIRECTORY\" write BMP image to DIRECTORY\n" - " \"create CE image DIRECTORY\" write BMP image to DIRECTORY\n" "\n", program.command_basename); } @@ -7782,11 +7872,6 @@ int main(int argc, char *argv[]) GetOptions(argc, argv, print_usage, print_version); OpenAll(); -#if 0 - // test generating UUIDs and exit - TestGeneratingUUIDs(); -#endif - EventLoop(); CloseAllAndExit(0);