--- SIDPlayer/src/prefs_items.cpp 2001/01/04 19:54:13 1.1 +++ SIDPlayer/src/prefs_items.cpp 2003/10/21 16:56:19 1.7 @@ -1,7 +1,7 @@ /* * prefs.cpp - Preferences items * - * SIDPlayer (C) Copyright 1996-2000 Christian Bauer + * SIDPlayer (C) Copyright 1996-2003 Christian Bauer * * 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 @@ -24,27 +24,31 @@ // List of preferences items prefs_desc common_prefs_items[] = { - {"victype", TYPE_STRING, false}, // Type number of VIC-II to emulate ("6569", "6567" or "6567R5") - {"sidtype", TYPE_STRING, false}, // Type number of SID to emulate ("6581" or "8580") - {"samplerate", TYPE_INT32, false}, // Audio sample rate in Hz - {"audio16bit", TYPE_BOOLEAN, false}, // 16-bit audio output? - {"stereo", TYPE_BOOLEAN, false}, // Stereo audio output? - {"filters", TYPE_BOOLEAN, false}, // Emulate SID filters? - {"dualsid", TYPE_BOOLEAN, false}, // Emulate 2 SID chips? - {"audioeffect", TYPE_INT32, false}, // Audio effect type (0 = none, 1 = reverb, 2 = spatial) - {"revdelay", TYPE_INT32, false}, // Reverb delay in ms - {"revfeedback", TYPE_INT32, false}, // Reverb feedback (0..0x100 = 0..100%) - {"volume", TYPE_INT32, false}, // Master volume (0..0x100 = 0..100%) - {"v1volume", TYPE_INT32, false}, // Volume voice 1 (0..0x100 = 0..100%) - {"v2volume", TYPE_INT32, false}, // Volume voice 2 (0..0x100 = 0..100%) - {"v3volume", TYPE_INT32, false}, // Volume voice 3 (0..0x100 = 0..100%) - {"v4volume", TYPE_INT32, false}, // Volume sampled voice (0..0x100 = 0..100%) - {"v1pan", TYPE_INT32, false}, // Panning voice 1 (-0x100..0x100 = left..right) - {"v2pan", TYPE_INT32, false}, // Panning voice 2 (-0x100..0x100 = left..right) - {"v3pan", TYPE_INT32, false}, // Panning voice 3 (-0x100..0x100 = left..right) - {"v4pan", TYPE_INT32, false}, // Panning sampled voice (-0x100..0x100 = left..right) - {"dualsep", TYPE_INT32, false}, // Dual-SID stereo separation (0..0x100 = 0..100%) - {"replayfreq", TYPE_INT32, false}, // Frequency at which 6510 replay routine is called in Hz + {"victype", TYPE_STRING, false, "type number of VIC-II to emulate (6569, 6567 or 6567R5)"}, + {"sidtype", TYPE_STRING, false, "type number of SID to emulate (6581 or 8580)"}, + {"samplerate", TYPE_INT32, false, "output sample rate in Hz"}, + {"audio16bit", TYPE_BOOLEAN, false, "16-bit audio output"}, + {"stereo", TYPE_BOOLEAN, false, "stereo audio output"}, + {"filters", TYPE_BOOLEAN, false, "emulate SID filters"}, + {"dualsid", TYPE_BOOLEAN, false, "emulate dual SID chips"}, + {"audioeffect", TYPE_INT32, false, "audio effect type (0 = none, 1 = reverb, 2 = spatial)"}, + {"revdelay", TYPE_INT32, false, "effect delay in ms"}, + {"revfeedback", TYPE_INT32, false, "effect feedback (0..256 = 0..100%)"}, + {"volume", TYPE_INT32, false, "master volume (0..256 = 0..100%)"}, + {"v1volume", TYPE_INT32, false, "volume voice 1 (0..256 = 0..100%)"}, + {"v2volume", TYPE_INT32, false, "volume voice 2 (0..256 = 0..100%)"}, + {"v3volume", TYPE_INT32, false, "volume voice 3 (0..256 = 0..100%)"}, + {"v4volume", TYPE_INT32, false, "volume sampled voice (0..256 = 0..100%)"}, + {"v1pan", TYPE_INT32, false, "panning voice 1 (-256..256 = left..right)"}, + {"v2pan", TYPE_INT32, false, "panning voice 2 (-256..256 = left..right)"}, + {"v3pan", TYPE_INT32, false, "panning voice 3 (-256..256 = left..right)"}, + {"v4pan", TYPE_INT32, false, "panning sampled voice (-256..256 = left..right)"}, + {"dualsep", TYPE_INT32, false, "dual SID stereo separation (0..256 = 0..100%)"}, + {"cwsid", TYPE_BOOLEAN, false, "output to Catweasel SID"}, + {"siddev", TYPE_STRING, false, "Catweasel device name"}, + {"speed", TYPE_INT32, false, "replay speed adjustment (percent)"}, + {"outfile", TYPE_STRING, false, "write output to WAV file"}, + {"time", TYPE_INT32, false, "playing time in second when writing to file"}, {NULL, TYPE_END, false} // End of list }; @@ -53,7 +57,7 @@ prefs_desc common_prefs_items[] = { * Set default values for preferences items */ -void AddPrefsDefaults(void) +void AddPrefsDefaults() { PrefsAddString("victype", "6569"); PrefsAddString("sidtype", "6581"); @@ -75,5 +79,7 @@ void AddPrefsDefaults(void) PrefsAddInt32("v4volume", 0x100); PrefsAddInt32("v4pan", 0); PrefsAddInt32("dualsep", 0x80); - PrefsAddInt32("replayfreq", 50); + PrefsAddBool("cwsid", false); + PrefsAddString("siddev", "/dev/sid"); + PrefsAddInt32("speed", 100); }