cubiomes/find_compactbiomes.c

124 lines
2.8 KiB
C
Raw Normal View History

2018-03-05 21:20:54 +00:00
/**
* This example program finds seeds that contain all major biomes within 1024
* blocks of the origin. These seeds are very rare, with only about 1 in every
* 100 million. For a speed reference: on my 4GHz CPU it takes about 9 minutes
* to check 1E9 seeds using a single thread.
*/
#include "finders.h"
#include "generator.h"
2018-08-01 17:51:17 +02:00
2018-03-05 21:20:54 +00:00
#define SEED_BUF_LEN 0x10000
struct compactinfo_t
{
2018-07-04 16:48:05 +01:00
int64_t seedStart, seedEnd;
2018-03-05 21:20:54 +00:00
};
2018-08-01 17:51:17 +02:00
#ifdef USE_PTHREAD
static void *searchCompactBiomesThread(void *data)
#else
static DWORD WINAPI searchCompactBiomesThread(LPVOID data)
#endif
2018-03-05 21:20:54 +00:00
{
struct compactinfo_t info = *(struct compactinfo_t *)data;
2018-07-04 16:48:05 +01:00
int64_t *seeds = (int64_t *) malloc(sizeof(*seeds)*SEED_BUF_LEN);
int64_t i, s, scnt;
2018-03-05 21:20:54 +00:00
2018-07-28 16:36:41 +02:00
LayerStack g = setupGenerator(MC_1_7);
2018-03-17 16:53:16 +00:00
int *cache = allocCache(&g.layers[L_BIOME_256], 8, 8);
2018-08-01 17:51:17 +02:00
for (s = info.seedStart; s < info.seedEnd; s += SEED_BUF_LEN)
2018-03-05 21:20:54 +00:00
{
2018-08-01 17:51:17 +02:00
if (s + SEED_BUF_LEN > info.seedEnd)
2018-03-05 21:20:54 +00:00
scnt = info.seedEnd - s;
else
scnt = SEED_BUF_LEN;
2018-08-01 17:51:17 +02:00
for (i = 0; i < scnt; i++)
2018-03-05 21:20:54 +00:00
{
seeds[i] = s + i;
}
2018-03-17 16:53:16 +00:00
scnt = filterAllTempCats(&g, cache, seeds, seeds, scnt, 0, 0);
2018-03-05 21:20:54 +00:00
// The biomes really shouldn't be further out than 1024 blocks.
2018-03-17 16:53:16 +00:00
scnt = filterAllMajorBiomes(&g, cache, seeds, seeds, scnt, -4, -4, 8, 8);
2018-03-05 21:20:54 +00:00
2018-08-01 17:51:17 +02:00
for (i = 0; i < scnt; i++)
2018-03-05 21:20:54 +00:00
{
2018-07-04 17:28:27 +01:00
printf("%"PRId64"\n", seeds[i]);
2018-03-05 21:20:54 +00:00
}
fflush(stdout);
}
free(seeds);
2018-08-01 17:51:17 +02:00
#ifdef USE_PTHREAD
pthread_exit(NULL);
#endif
return 0;
2018-03-05 21:20:54 +00:00
}
int main(int argc, char *argv[])
{
initBiomes();
2018-07-04 16:48:05 +01:00
int64_t seedStart, seedEnd;
2018-07-04 17:27:45 +01:00
unsigned int threads, t;
2018-03-05 21:20:54 +00:00
2018-08-01 17:51:17 +02:00
if (argc <= 1 || sscanf(argv[1], "%"PRId64, &seedStart) != 1) seedStart = 0;
if (argc <= 2 || sscanf(argv[2], "%"PRId64, &seedEnd) != 1) seedEnd = 100000000LL;
if (argc <= 3 || sscanf(argv[3], "%u", &threads) != 1) threads = 1;
2018-03-17 16:53:16 +00:00
2018-07-04 17:28:27 +01:00
printf("Starting search through seeds %"PRId64 " to %"PRId64", using %u threads.\n", seedStart, seedEnd, threads);
2018-03-05 21:20:54 +00:00
2018-08-01 17:51:17 +02:00
thread_id_t threadID[threads];
2018-03-05 21:20:54 +00:00
struct compactinfo_t info[threads];
2018-08-01 17:51:17 +02:00
for (t = 0; t < threads; t++)
2018-03-05 21:20:54 +00:00
{
2018-07-04 16:48:05 +01:00
int64_t seedCnt = (seedEnd - seedStart) / threads;
2018-03-05 21:20:54 +00:00
info[t].seedStart = seedStart + seedCnt * t;
info[t].seedEnd = seedStart + seedCnt * (t+1) + 1;
}
info[threads-1].seedEnd = seedEnd;
2018-08-01 17:51:17 +02:00
#ifdef USE_PTHREAD
for (t = 0; t < threads; t++)
2018-03-05 21:20:54 +00:00
{
pthread_create(&threadID[t], NULL, searchCompactBiomesThread, (void*)&info[t]);
}
2018-08-01 17:51:17 +02:00
for (t = 0; t < threads; t++)
2018-03-05 21:20:54 +00:00
{
pthread_join(threadID[t], NULL);
}
2018-08-01 17:51:17 +02:00
#else
for (t = 0; t < threads; t++)
{
threadID[t] = CreateThread(NULL, 0, searchCompactBiomesThread, (LPVOID)&info[t], 0, NULL);
}
WaitForMultipleObjects(threads, threadID, TRUE, INFINITE);
#endif
2018-03-05 21:20:54 +00:00
return 0;
}