1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
/* OpenCP Module Player
* copyright (c) '94-'10 Niklas Beisert <nbeisert@physik.tu-muenchen.de>
*
* Sound settings module
*
* 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, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*
* revision history: (please note changes here)
* -nb980510 Niklas Beisert <nbeisert@physik.tu-muenchen.de>
* -first release
*/
#include "config.h"
#include <stdio.h>
#include "types.h"
#include "boot/plinkman.h"
#include "boot/psetting.h"
#include "stuff/sets.h"
#include "stuff/err.h"
struct settings set;
static int ssInit(void)
{
int per;
per=cfGetProfileInt2(cfSoundSec, "sound", "amplify", 100, 10);
per=cfGetProfileInt("commandline_v", "a", per, 10);
set.amp=(per>=800)?511:(per*64/100);
per=cfGetProfileInt2(cfSoundSec, "sound", "volume", 100, 10);
per=cfGetProfileInt("commandline_v", "v", per, 10);
set.vol=(per>=100)?64:(per*64/100);
per=cfGetProfileInt2(cfSoundSec, "sound", "balance", 0, 10);
per=cfGetProfileInt("commandline_v", "b", per, 10);
set.bal=(per>=100)?64:(per<=-100)?-64:(per*64/100);
per=cfGetProfileInt2(cfSoundSec, "sound", "panning", 100, 10);
per=cfGetProfileInt("commandline_v", "p", per, 10);
set.pan=(per>=100)?64:(per<=-100)?-64:(per*64/100);
set.srnd=cfGetProfileBool2(cfSoundSec, "sound", "surround", 0, 0);
set.srnd=cfGetProfileBool("commandline_v", "s", set.srnd, 1);
set.filter=cfGetProfileInt2(cfSoundSec, "sound", "filter", 1, 10)%3;
set.filter=cfGetProfileInt("commandline_v", "f", set.filter, 10)%3;
per=cfGetProfileInt2(cfSoundSec, "sound", "reverb", 0, 10);
per=cfGetProfileInt("commandline_v", "r", per, 10);
set.reverb=(per>=100)?64:(per<=-100)?-64:(per*64/100);
per=cfGetProfileInt2(cfSoundSec, "sound", "chorus", 0, 10);
per=cfGetProfileInt("commandline_v", "c", per, 10);
set.chorus=(per>=100)?64:(per<=-100)?-64:(per*64/100);
set.speed=256;
set.pitch=256;
return errOk;
}
#ifndef SUPPORT_STATIC_PLUGINS
char *dllinfo = "";
#endif
DLLEXTINFO_PREFIX struct linkinfostruct dllextinfo = {"sets", "OpenCP Sound Settings Auxiliary Routines (c) 1994-09 Niklas Beisert, Tammo Hinrichs", DLLVERSION, 0, Init: ssInit};
|