DOSBox-X
|
00001 // Reverb model tuning values 00002 // 00003 // Written by Jezar at Dreampoint, June 2000 00004 // http://www.dreampoint.co.uk 00005 // This code is public domain 00006 00007 #ifndef _tuning_ 00008 #define _tuning_ 00009 00010 const int numcombs = 8; 00011 const int numallpasses = 4; 00012 const float muted = 0; 00013 const float fixedgain = 0.015f; 00014 const float scalewet = 3; 00015 const float scaledry = 2; 00016 const float scaledamp = 0.4f; 00017 const float scaleroom = 0.28f; 00018 const float offsetroom = 0.7f; 00019 const float initialroom = 0.5f; 00020 const float initialdamp = 0.5f; 00021 const float initialwet = 1/scalewet; 00022 const float initialdry = 0; 00023 const float initialwidth = 1; 00024 const float initialmode = 0; 00025 const float freezemode = 0.5f; 00026 const int stereospread = 23; 00027 00028 const int combtuning[] = {1116, 1188, 1277, 1356, 1422, 1491, 1557, 1617}; 00029 const int allpasstuning[] = {556, 441, 341, 225}; 00030 00031 #endif//_tuning_