|
|||||||
![]() |
|
|
Thread Tools |
|
|
#1 |
|
DriverHeaven Newbie
Join Date: Aug 2005
Posts: 17
Rep Power: 0 ![]() |
deleting default presets
I'm stuck on an 800x600 display for a while, and find that scrolling down the Surrounder preset list is painfully tedious as I need to do it frequently, to get to my custom presets.
How could I go about deleting all those built in presets (which I never use)? |
|
|
|
|
|
#2 |
|
DH Senior Member
Join Date: Jan 2003
Location: The Netherlands
Posts: 1,932
Rep Power: 64 ![]() ![]() ![]() ![]() |
Sry you can't.
Those presets are 'hard coded' in the Plugin(s) itself by the author of the plugin. /LeMury |
|
|
|
|
|
#3 |
|
Tail Razer
Join Date: Jun 2005
Location: Bernyurass, AZ - USA
Posts: 4,027
Rep Power: 0 ![]() ![]() |
It would be easy to load/save settings - which saves the plugins preset selected.
|
|
|
|
|
|
#4 | |
|
S-3D enthusiast
|
Quote:
The file name of the source code files contain surrounder2 (in e.g. C:\Program Files\kX Project\SDK 3538\fx_lib). In the file surrounder2.cpp, change Code:
static kxparam_t presets[] =
{
P"2.0 - Stereo only", SPM_21, SUM_OFF, 100, 100, 50, 0, SBM_NOSUB, 2000,
P"2.0 - Simple Mix", SPM_21, SUM_COPY, 100, 100, 50, 0, SBM_NOSUB, 2000,
P"2.0 - Surround mix", SPM_21, SUM_ON, 100, 100, 66, 0, SBM_NOSUB, 2000,
P"4.0 - Quadro", SPM_41, SUM_OFF, 100, 100, 50, 0, SBM_NOSUB, 2000,
P"4.0 - Rear=Front", SPM_41, SUM_COPY, 100, 100, 50, 0, SBM_NOSUB, 2000,
P"4.0 - Movie Mode", SPM_41, SUM_ON, 100, 100, 66, 120, SBM_NOSUB, 2000,
P"5.0 - Direct Path", SPM_51, SUM_OFF, 100, 100, 50, 0, SBM_NOSUB, 2000,
P"5.0 - Rear=Front", SPM_51, SUM_COPY, 100, 100, 50, 0, SBM_NOSUB, 2000,
P"5.0 - Movie Mode", SPM_51, SUM_ON, 100, 100, 66, 120, SBM_NOSUB, 2000,
P"4.1 - Quadro", SPM_41, SUM_OFF, 100, 100, 50, 0, SBM_DEFAULT, 2000,
P"4.1 - Rear=Front", SPM_41, SUM_COPY, 100, 100, 50, 0, SBM_DEFAULT, 2000,
P"4.1 - Movie Mode", SPM_41, SUM_ON, 100, 100, 66, 120, SBM_DEFAULT, 2000,
P"5.1 - Direct Path", SPM_51, SUM_OFF, 100, 100, 50, 0, SBM_DEFAULT, 2000,
P"5.1 - Rear=Front", SPM_51, SUM_COPY, 100, 100, 50, 0, SBM_DEFAULT, 2000,
P"5.1 - Movie Mode", SPM_51, SUM_ON, 100, 100, 66, 120, SBM_DEFAULT, 2000,
P"6.1 - Direct Path", SPM_61, SUM_OFF, 100, 100, 50, 0, SBM_DEFAULT, 2000,
P"6.1 - Rear=Front", SPM_61, SUM_COPY, 100, 100, 50, 0, SBM_DEFAULT, 2000,
P"6.1 - Movie Mode", SPM_61, SUM_ON, 100, 100, 66, 120, SBM_DEFAULT, 2000,
P"7.1 - Direct Path", SPM_71, SUM_OFF, 100, 100, 50, 0, SBM_DEFAULT, 2000,
P"7.1 - Rear=Front", SPM_71, SUM_COPY, 100, 100, 50, 0, SBM_DEFAULT, 2000,
P"7.1 - Movie Mode", SPM_71, SUM_ON, 100, 100, 66, 120, SBM_DEFAULT, 2000,
P"Headphones Lite", SPM_HEADPHONES_LITE, SUM_OFF, 100, 100, 50, 0, SBM_NOSUB, 2000,
P"Headphones", SPM_HEADPHONES_HARD, SUM_OFF, 100, 100, 50, 0, SBM_NOSUB, 2000,
NULL,
};
Code:
static kxparam_t presets[] =
{
//P"2.0 - Stereo only", SPM_21, SUM_OFF, 100, 100, 50, 0, SBM_NOSUB, 2000,
//P"2.0 - Simple Mix", SPM_21, SUM_COPY, 100, 100, 50, 0, SBM_NOSUB, 2000,
//P"2.0 - Surround mix", SPM_21, SUM_ON, 100, 100, 66, 0, SBM_NOSUB, 2000,
//P"4.0 - Quadro", SPM_41, SUM_OFF, 100, 100, 50, 0, SBM_NOSUB, 2000,
//P"4.0 - Rear=Front", SPM_41, SUM_COPY, 100, 100, 50, 0, SBM_NOSUB, 2000,
//P"4.0 - Movie Mode", SPM_41, SUM_ON, 100, 100, 66, 120, SBM_NOSUB, 2000,
//P"5.0 - Direct Path", SPM_51, SUM_OFF, 100, 100, 50, 0, SBM_NOSUB, 2000,
//P"5.0 - Rear=Front", SPM_51, SUM_COPY, 100, 100, 50, 0, SBM_NOSUB, 2000,
//P"5.0 - Movie Mode", SPM_51, SUM_ON, 100, 100, 66, 120, SBM_NOSUB, 2000,
//P"4.1 - Quadro", SPM_41, SUM_OFF, 100, 100, 50, 0, SBM_DEFAULT, 2000,
//P"4.1 - Rear=Front", SPM_41, SUM_COPY, 100, 100, 50, 0, SBM_DEFAULT, 2000,
//P"4.1 - Movie Mode", SPM_41, SUM_ON, 100, 100, 66, 120, SBM_DEFAULT, 2000,
//P"5.1 - Direct Path", SPM_51, SUM_OFF, 100, 100, 50, 0, SBM_DEFAULT, 2000,
//P"5.1 - Rear=Front", SPM_51, SUM_COPY, 100, 100, 50, 0, SBM_DEFAULT, 2000,
//P"5.1 - Movie Mode", SPM_51, SUM_ON, 100, 100, 66, 120, SBM_DEFAULT, 2000,
//P"6.1 - Direct Path", SPM_61, SUM_OFF, 100, 100, 50, 0, SBM_DEFAULT, 2000,
//P"6.1 - Rear=Front", SPM_61, SUM_COPY, 100, 100, 50, 0, SBM_DEFAULT, 2000,
//P"6.1 - Movie Mode", SPM_61, SUM_ON, 100, 100, 66, 120, SBM_DEFAULT, 2000,
//P"7.1 - Direct Path", SPM_71, SUM_OFF, 100, 100, 50, 0, SBM_DEFAULT, 2000,
//P"7.1 - Rear=Front", SPM_71, SUM_COPY, 100, 100, 50, 0, SBM_DEFAULT, 2000,
//P"7.1 - Movie Mode", SPM_71, SUM_ON, 100, 100, 66, 120, SBM_DEFAULT, 2000,
//P"Headphones Lite", SPM_HEADPHONES_LITE, SUM_OFF, 100, 100, 50, 0, SBM_NOSUB, 2000,
//P"Headphones", SPM_HEADPHONES_HARD, SUM_OFF, 100, 100, 50, 0, SBM_NOSUB, 2000,
NULL,
};
|
|
|
|
|
|
|
#5 |
|
DH Senior Member
Join Date: Jan 2003
Location: The Netherlands
Posts: 1,932
Rep Power: 64 ![]() ![]() ![]() ![]() |
I doubt if the OP had that in mind
, but who knows.
|
|
|
|
|
|
|
|
|
DriverHeaven Newbie
Join Date: Aug 2005
Posts: 17
Rep Power: 0 ![]() |
OK I couldn't resist Tril!
![]() Here is what I see when I double click 'surrounder2.cpp'. As far as I can tell there are no such lines to comment out. Now I know I'm doing something wrong... Quote:
|
|
|
|
|
|
|
#7 |
|
DH Senior Member
Join Date: Jan 2003
Location: The Netherlands
Posts: 1,932
Rep Power: 64 ![]() ![]() ![]() ![]() |
Looks like you opened da_surrounder2.cpp which is the microcode part of the plugin.
(no presets in there) |
|
|
|
|
|
|
|
DriverHeaven Newbie
Join Date: Aug 2005
Posts: 17
Rep Power: 0 ![]() |
Mmm indeed. Not a good start at becoming a kX recompiler. Hopefully it will be the last time I misread someone's generous assistance.
Excuse me whilst I RT one mother of a FM, perchance to later ask meaningful questions.
|
|
|
|
![]() |
| Thread Tools | |
|
|