1 /*
2  Copyright (C) 2009-2013 wxLauncher Team
3 
4  This program is free software; you can redistribute it and/or
5  modify it under the terms of the GNU General Public License
6  as published by the Free Software Foundation; either version 2
7  of the License, or (at your option) any later version.
8 
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  GNU General Public License for more details.
13 
14  You should have received a copy of the GNU General Public License
15  along with this program; if not, write to the Free Software
16  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */
18 
19 #include "RegistryKeys.h"
20 
21 const wxString REG_KEY_FOLDER_LOCATION				(L"Software\\Volition\\Freespace2");
22 
23 const wxString REG_KEY_VIDEO_RESOLUTION_DEPTH		(L"VideocardFs2open");
24 const wxString REG_KEY_VIDEO_TEXTURE_FILTER			(L"TextureFilter");
25 const wxString REG_KEY_VIDEO_ANISOTROPIC			(L"OGL_AnisotropicFilter");
26 const wxString REG_KEY_VIDEO_ANTI_ALIAS				(L"OGL_AntiAliasSamples");
27 
28 const wxString REG_KEY_AUDIO_OPENAL_DEVICE			(L"SoundDeviceOAL");
29 const wxString REG_KEY_AUDIO_FOLDER_CFG				(L"/Sound"); // FileProfileManager
30 const wxString REG_KEY_AUDIO_FOLDER_REGISTRY		(L"Sound"); // RegistryProfileManager
31 const wxString REG_KEY_AUDIO_OPENAL_PLAYBACK_DEVICE	(L"PlaybackDevice");
32 const wxString REG_KEY_AUDIO_OPENAL_CAPTURE_DEVICE	(L"CaptureDevice");
33 const wxString REG_KEY_AUDIO_OPENAL_EFX				(L"EnableEFX");
34 const wxString REG_KEY_AUDIO_OPENAL_SAMPLE_RATE		(L"SampleRate");
35 
36 const wxString REG_KEY_SPEECH_VOICE					(L"SpeechVoice");
37 const wxString REG_KEY_SPEECH_VOLUME				(L"SpeechVolume");
38 const wxString REG_KEY_SPEECH_IN_TECHROOM			(L"SpeechTechroom");
39 const wxString REG_KEY_SPEECH_IN_BRIEFINGS			(L"SpeechBriefings");
40 const wxString REG_KEY_SPEECH_IN_GAME				(L"SpeechIngame");
41 const wxString REG_KEY_SPEECH_IN_MULTI				(L"SpeechMulti");
42 
43 const wxString REG_KEY_JOYSTICK_ID					(L"CurrentJoystick");
44 const wxString REG_KEY_JOYSTICK_GUID				(L"CurrentJoystickGUID");
45 const wxString REG_KEY_JOYSTICK_FORCE_FEEDBACK		(L"EnableJoystickFF");
46 const wxString REG_KEY_JOYSTICK_DIRECTIONAL			(L"EnableHitEffect");
47 
48 const wxString REG_KEY_NETWORK_TYPE					(L"NetworkConnection");
49 const wxString REG_KEY_NETWORK_SPEED				(L"ConnectionSpeed");
50 const wxString REG_KEY_NETWORK_PORT					(L"ForcePort");
51 const wxString REG_KEY_NETWORK_FOLDER_CFG			(L"/Network"); // FileProfileManager
52 const wxString REG_KEY_DEFAULT_FOLDER_CFG			(L"/Default"); // FileProfileManager
53 const wxString REG_KEY_NETWORK_FOLDER_REGISTRY		(L"Network"); // RegistryProfileManager
54 const wxString REG_KEY_NETWORK_IP					(L"CustomIP");
55