12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- /*
- * Seven Kingdoms: Ancient Adversaries
- *
- * Copyright 1997,1998 Enlight Software Ltd.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- // Filename : OW_SOUND.CPP
- // Description: Ambient Sound Functions
- #include <OSYS.h>
- #include <OAUDIO.h>
- #include <OSE.h>
- #include <OVOLUME.h>
- #include <OWEATHER.h>
- #include <OWORLD.h>
- // ------- define constant -------//
- #define MAX_BIRD 17
- //------- Begin of function World::process_ambient_sound -------//
- //
- void World::process_ambient_sound()
- {
- int temp = weather.temp_c();
- if( weather.rain_scale() == 0 && temp >= 15 && m.random(temp) >= 12)
- {
- int bird = m.random(MAX_BIRD) + 1;
- char sndFile[] = "BIRDS00";
- err_when( bird > 99 );
- sndFile[5] = (bird / 10) + '0';
- sndFile[6] = (bird % 10) + '0';
- int xLoc = m.random(max_x_loc) - (zoom_matrix->top_x_loc + zoom_matrix->disp_x_loc/2);
- int yLoc = m.random(max_y_loc) - (zoom_matrix->top_y_loc + zoom_matrix->disp_y_loc/2);
- PosVolume p(PosVolume(xLoc, yLoc));
- RelVolume relVolume(p, 200, MAX_MAP_WIDTH);
- if( relVolume.rel_vol < 80)
- relVolume.rel_vol = 80;
- se_ctrl.request(sndFile, relVolume);
- }
- }
- //-------- End of function World::process_ambient_sound --------//
|