version 1.150 | | version 1.151 |
---|
| | |
int cftimer_find_free_id(void); | | int cftimer_find_free_id(void); |
/* weather.c */ | | /* weather.c */ |
void set_darkness_map(mapstruct *m); | | void set_darkness_map(mapstruct *m); |
void dawn_to_dusk(timeofday_t *tod); | | |
void tick_the_clock(void); | | void tick_the_clock(void); |
void write_skymap(void); | | |
void write_pressuremap(void); | | |
void read_pressuremap(void); | | |
void init_pressure(void); | | |
void write_winddirmap(void); | | |
void read_winddirmap(void); | | |
void write_windspeedmap(void); | | |
void read_windspeedmap(void); | | |
void init_wind(void); | | |
void write_gulfstreammap(void); | | |
void read_gulfstreammap(void); | | |
void init_gulfstreammap(void); | | |
void write_humidmap(void); | | |
void read_humidmap(void); | | |
void write_elevmap(void); | | |
void read_elevmap(void); | | |
void write_watermap(void); | | |
void read_watermap(void); | | |
void init_humid_elev(void); | | |
void write_temperaturemap(void); | | |
void read_temperaturemap(void); | | |
void init_temperature(void); | | |
void write_rainfallmap(void); | | |
void read_rainfallmap(void); | | |
void init_rainfall(void); | | |
void init_weatheravoid(weather_avoids_t wa[]); | | |
void init_weather(void); | | void init_weather(void); |
void perform_weather(void); | | |
void weather_effect(const char *filename); | | void weather_effect(const char *filename); |
object *avoid_weather(int *av, mapstruct *m, int x, int y, int *gs, int grow); | | |
void calculate_temperature(mapstruct *m, int wx, int wy); | | |
void let_it_snow(mapstruct *m, int wx, int wy); | | |
void singing_in_the_rain(mapstruct *m, int wx, int wy); | | |
void plant_a_garden(mapstruct *m, int wx, int wy); | | |
void change_the_world(mapstruct *m, int wx, int wy); | | |
void feather_map(mapstruct *m, int wx, int wy); | | |
int worldmap_to_weathermap(int x, int y, int *wx, int *wy, mapstruct *m); | | int worldmap_to_weathermap(int x, int y, int *wx, int *wy, mapstruct *m); |
const char *weathermap_to_worldmap_corner(int wx, int wy, int *x, int *y, int dir); | | |
int polar_distance(int x, int y, int equator); | | |
void update_humid(void); | | |
int humid_tile(int x, int y); | | |
void temperature_calc(int x, int y, timeofday_t *tod); | | |
int real_temperature(int x, int y); | | |
int real_world_temperature(int x, int y, mapstruct *m); | | int real_world_temperature(int x, int y, mapstruct *m); |
void smooth_pressure(void); | | |
void perform_pressure(void); | | |
int similar_direction(int a, int b); | | int similar_direction(int a, int b); |
void smooth_wind(void); | | |
void plot_gulfstream(void); | | |
void compute_sky(void); | | |
void process_rain(void); | | |
void spin_globe(void); | | |
void write_weather_images(void); | | |