1 |
gbeauche |
1.1 |
/* |
2 |
gbeauche |
1.2 |
* prefs_windows.cpp - Preferences handling, Windows specific stuff |
3 |
gbeauche |
1.1 |
* |
4 |
gbeauche |
1.7 |
* Basilisk II (C) 1997-2005 Christian Bauer |
5 |
gbeauche |
1.1 |
* |
6 |
|
|
* This program is free software; you can redistribute it and/or modify |
7 |
|
|
* it under the terms of the GNU General Public License as published by |
8 |
|
|
* the Free Software Foundation; either version 2 of the License, or |
9 |
|
|
* (at your option) any later version. |
10 |
|
|
* |
11 |
|
|
* This program is distributed in the hope that it will be useful, |
12 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 |
|
|
* GNU General Public License for more details. |
15 |
|
|
* |
16 |
|
|
* You should have received a copy of the GNU General Public License |
17 |
|
|
* along with this program; if not, write to the Free Software |
18 |
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
19 |
|
|
*/ |
20 |
|
|
|
21 |
|
|
#include "sysdeps.h" |
22 |
|
|
|
23 |
|
|
#define WIN32_LEAN_AND_MEAN |
24 |
|
|
#include <windows.h> |
25 |
|
|
|
26 |
|
|
#include <stdio.h> |
27 |
|
|
#include <stdlib.h> |
28 |
|
|
|
29 |
|
|
#include <string> |
30 |
|
|
using std::string; |
31 |
|
|
|
32 |
|
|
#include "prefs.h" |
33 |
|
|
|
34 |
|
|
|
35 |
|
|
// Platform-specific preferences items |
36 |
|
|
prefs_desc platform_prefs_items[] = { |
37 |
|
|
{"keycodes", TYPE_BOOLEAN, false, "use keycodes rather than keysyms to decode keyboard"}, |
38 |
|
|
{"keycodefile", TYPE_STRING, false, "path of keycode translation file"}, |
39 |
|
|
{"mousewheelmode", TYPE_INT32, false, "mouse wheel support mode (0=page up/down, 1=cursor up/down)"}, |
40 |
|
|
{"mousewheellines", TYPE_INT32, false, "number of lines to scroll in mouse wheel mode 1"}, |
41 |
|
|
#ifdef HAVE_SIGSEGV_SKIP_INSTRUCTION |
42 |
|
|
{"ignoresegv", TYPE_BOOLEAN, false, "ignore illegal memory accesses"}, |
43 |
|
|
#endif |
44 |
gbeauche |
1.3 |
{"enableextfs", TYPE_BOOLEAN, false, "enable extfs system"}, |
45 |
gbeauche |
1.4 |
{"debugextfs", TYPE_BOOLEAN, false, "debug extfs system"}, |
46 |
|
|
{"extdrives", TYPE_STRING, false, "define allowed extfs drives"}, |
47 |
gbeauche |
1.5 |
{"pollmedia", TYPE_BOOLEAN, false, "poll for new media (e.g. cd, floppy)"}, |
48 |
gbeauche |
1.6 |
{"etherpermanentaddress", TYPE_BOOLEAN, false, "use permanent NIC address to identify itself"}, |
49 |
|
|
{"ethermulticastmode", TYPE_INT32, false, "how to multicast packets"}, |
50 |
|
|
{"etherfakeaddress", TYPE_STRING, false, "optional fake hardware address"}, |
51 |
|
|
{"routerenabled", TYPE_BOOLEAN, false, "enable NAT/Router module"}, |
52 |
|
|
{"ftp_port_list", TYPE_STRING, false, "FTP ports list"}, |
53 |
|
|
{"tcp_port", TYPE_STRING, false, "TCP ports list"}, |
54 |
gbeauche |
1.8 |
{"portfile0", TYPE_STRING, false, "output file for serial port 0"}, |
55 |
|
|
{"portfile1", TYPE_STRING, false, "output file for serial port 1"}, |
56 |
gbeauche |
1.5 |
|
57 |
gbeauche |
1.1 |
{NULL, TYPE_END, false, NULL} // End of list |
58 |
|
|
}; |
59 |
|
|
|
60 |
|
|
|
61 |
|
|
// Prefs file name and path |
62 |
|
|
const char PREFS_FILE_NAME[] = "BasiliskII_prefs"; |
63 |
|
|
string UserPrefsPath; |
64 |
|
|
static string prefs_path; |
65 |
|
|
|
66 |
|
|
|
67 |
|
|
/* |
68 |
|
|
* Load preferences from settings file |
69 |
|
|
*/ |
70 |
|
|
|
71 |
|
|
void LoadPrefs(void) |
72 |
|
|
{ |
73 |
|
|
// Construct prefs path |
74 |
|
|
if (UserPrefsPath.empty()) { |
75 |
|
|
int pwd_len = GetCurrentDirectory(0, NULL); |
76 |
|
|
char *pwd = new char[pwd_len]; |
77 |
|
|
if (GetCurrentDirectory(pwd_len, pwd) == pwd_len - 1) |
78 |
|
|
prefs_path = string(pwd) + '\\'; |
79 |
|
|
delete[] pwd; |
80 |
|
|
prefs_path += PREFS_FILE_NAME; |
81 |
|
|
} else |
82 |
|
|
prefs_path = UserPrefsPath; |
83 |
|
|
|
84 |
|
|
// Read preferences from settings file |
85 |
|
|
FILE *f = fopen(prefs_path.c_str(), "r"); |
86 |
|
|
if (f != NULL) { |
87 |
|
|
|
88 |
|
|
// Prefs file found, load settings |
89 |
|
|
LoadPrefsFromStream(f); |
90 |
|
|
fclose(f); |
91 |
|
|
|
92 |
|
|
} else { |
93 |
|
|
|
94 |
|
|
// No prefs file, save defaults |
95 |
|
|
SavePrefs(); |
96 |
|
|
} |
97 |
|
|
} |
98 |
|
|
|
99 |
|
|
|
100 |
|
|
/* |
101 |
|
|
* Save preferences to settings file |
102 |
|
|
*/ |
103 |
|
|
|
104 |
|
|
void SavePrefs(void) |
105 |
|
|
{ |
106 |
|
|
FILE *f; |
107 |
|
|
if ((f = fopen(prefs_path.c_str(), "w")) != NULL) { |
108 |
|
|
SavePrefsToStream(f); |
109 |
|
|
fclose(f); |
110 |
|
|
} |
111 |
|
|
} |
112 |
|
|
|
113 |
|
|
|
114 |
|
|
/* |
115 |
|
|
* Add defaults of platform-specific prefs items |
116 |
|
|
* You may also override the defaults set in PrefsInit() |
117 |
|
|
*/ |
118 |
|
|
|
119 |
|
|
void AddPlatformPrefsDefaults(void) |
120 |
|
|
{ |
121 |
|
|
PrefsAddBool("keycodes", false); |
122 |
gbeauche |
1.5 |
PrefsReplaceBool("pollmedia", true); |
123 |
gbeauche |
1.4 |
PrefsReplaceBool("enableextfs", false); |
124 |
gbeauche |
1.1 |
PrefsReplaceString("extfs", ""); |
125 |
gbeauche |
1.4 |
PrefsReplaceString("extdrives", "CDEFGHIJKLMNOPQRSTUVWXYZ"); |
126 |
gbeauche |
1.1 |
PrefsReplaceInt32("mousewheelmode", 1); |
127 |
|
|
PrefsReplaceInt32("mousewheellines", 3); |
128 |
|
|
#ifdef HAVE_SIGSEGV_SKIP_INSTRUCTION |
129 |
|
|
PrefsAddBool("ignoresegv", false); |
130 |
|
|
#endif |
131 |
gbeauche |
1.6 |
PrefsReplaceBool("etherpermanentaddress", true); |
132 |
|
|
PrefsReplaceInt32("ethermulticastmode", 0); |
133 |
|
|
PrefsReplaceBool("routerenabled", false); |
134 |
|
|
PrefsReplaceString("ftp_port_list", "21"); |
135 |
gbeauche |
1.8 |
PrefsReplaceString("portfile0", "C:\\B2TEMP0.OUT"); |
136 |
|
|
PrefsReplaceString("portfile1", "C:\\B2TEMP1.OUT"); |
137 |
gbeauche |
1.1 |
} |