mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-12 16:15:20 +02:00
Lua get_biome_data: calc heat and humidity only once (#15715)
This commit is contained in:
@@ -552,24 +552,33 @@ int ModApiMapgen::l_get_biome_data(lua_State *L)
|
||||
if (!biomegen)
|
||||
return 0;
|
||||
|
||||
const Biome *biome = biomegen->calcBiomeAtPoint(pos);
|
||||
if (!biome || biome->index == OBJDEF_INVALID_INDEX)
|
||||
return 0;
|
||||
|
||||
lua_newtable(L);
|
||||
|
||||
lua_pushinteger(L, biome->index);
|
||||
lua_setfield(L, -2, "biome");
|
||||
|
||||
if (biomegen->getType() == BIOMEGEN_ORIGINAL) {
|
||||
float heat = ((BiomeGenOriginal*) biomegen)->calcHeatAtPoint(pos);
|
||||
float humidity = ((BiomeGenOriginal*) biomegen)->calcHumidityAtPoint(pos);
|
||||
const Biome *biome = ((BiomeGenOriginal*) biomegen)->calcBiomeFromNoise(heat, humidity, pos);
|
||||
if (!biome || biome->index == OBJDEF_INVALID_INDEX)
|
||||
return 0;
|
||||
|
||||
lua_newtable(L);
|
||||
|
||||
lua_pushinteger(L, biome->index);
|
||||
lua_setfield(L, -2, "biome");
|
||||
|
||||
lua_pushnumber(L, heat);
|
||||
lua_setfield(L, -2, "heat");
|
||||
|
||||
lua_pushnumber(L, humidity);
|
||||
lua_setfield(L, -2, "humidity");
|
||||
|
||||
} else {
|
||||
const Biome *biome = biomegen->calcBiomeAtPoint(pos);
|
||||
if (!biome || biome->index == OBJDEF_INVALID_INDEX)
|
||||
return 0;
|
||||
|
||||
lua_newtable(L);
|
||||
|
||||
lua_pushinteger(L, biome->index);
|
||||
lua_setfield(L, -2, "biome");
|
||||
}
|
||||
|
||||
return 1;
|
||||
|
Reference in New Issue
Block a user