cubiomes/find_compactbiomes.c

122 lines
3.0 KiB
C
Raw Normal View History

2018-03-05 21:20:54 +00:00
#include "finders.h"
#include "generator.h"
2018-08-01 17:51:17 +02:00
2018-03-05 21:20:54 +00:00
struct compactinfo_t
{
2018-07-04 16:48:05 +01:00
int64_t seedStart, seedEnd;
unsigned int range;
BiomeFilter filter;
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;
int64_t s;
2018-03-05 21:20:54 +00:00
LayerStack g = setupGenerator(MC_1_13);
int *cache = allocCache(&g.layers[L_VORONOI_ZOOM_1], info.range, info.range);
2018-03-05 21:20:54 +00:00
for (s = info.seedStart; s < info.seedEnd; s++)
2018-03-05 21:20:54 +00:00
{
if(checkForBiomes(&g, cache, s,
-info.range, -info.range, 2*info.range, 2*info.range,
2018-08-03 01:26:16 +02:00
info.filter, 1))
2018-03-05 21:20:54 +00:00
{
printf("%ld\n", s);
fflush(stdout);
2018-03-05 21:20:54 +00:00
}
}
freeGenerator(g);
free(cache);
2018-03-05 21:20:54 +00:00
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;
unsigned int threads, t, range;
BiomeFilter filter;
2018-03-05 21:20:54 +00:00
// arguments
if (argc <= 0)
{
printf( "find_compactbiomes [seed_start] [seed_end] [threads] [range]\n"
"\n"
" seed_start starting seed for search [long, default=0]\n"
" end_start end seed for search [long, default=1e8]\n"
" threads number of threads to use [uint, default=1]\n"
" range search range (in blocks) [uint, default=1024]\n");
exit(1);
}
if (argc <= 1 || sscanf(argv[1], "%" PRId64, &seedStart) != 1) seedStart = 0;
if (argc <= 2 || sscanf(argv[2], "%" PRId64, &seedEnd) != 1) seedEnd = 100000000LL;
2018-08-01 17:51:17 +02:00
if (argc <= 3 || sscanf(argv[3], "%u", &threads) != 1) threads = 1;
if (argc <= 4 || sscanf(argv[4], "%u", &range) != 1) range = 1024;
// TODO: set up a customisable biome filter
filter = setupBiomeFilter(BIOMES_L13_OCEAN_MIX_4,
sizeof(BIOMES_L13_OCEAN_MIX_4)/sizeof(int));
2018-03-17 16:53:16 +00:00
printf("Starting search through seeds %" PRId64 " to %" PRId64", using %u threads.\n"
"Search radius = %u.\n", seedStart, seedEnd, threads, range);
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];
// store thread information
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[t].range = range;
info[t].filter = filter;
2018-03-05 21:20:54 +00:00
}
info[threads-1].seedEnd = seedEnd;
// start threads
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;
}