Re: NEW CLIMATES MODEL (was: The Equatorial Wind)
Reply #66 –
THis is simple:
The climate is given by simworld::get_climate, found in simworld.h line 609 or so.
/**
* returns the current climate for a given height
* uses as private lookup table for speed
* @author prissi
*/
climate get_climate(sint16 height) const
{
const sint16 h=(height-grundw****er)/Z_TILE_STEP;
if(h<0) {
return water_climate;
} else if(h>=32) {
return arctic_climate;
}
return (climate)height_to_climate[h];
}
Unfourtunately for non-height dependent climate, you need to change all calls to this function (And probably make climate instead a property of the ground).