ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/prefs_items.cpp
Revision: 1.2
Committed: 2000-07-25T16:25:04Z (23 years, 10 months ago) by cebix
Branch: MAIN
Changes since 1.1: +3 -0 lines
Log Message:
- fixed compilation problems

File Contents

# Content
1 /*
2 * prefs_items.cpp - Common preferences items
3 *
4 * Basilisk II (C) 1997-2000 Christian Bauer
5 *
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 #include "sys.h"
24 #include "prefs.h"
25
26
27 // Common preferences items (those which exist on all platforms)
28 // Except for "disk", "floppy", "cdrom", "scsiX", "screen", "rom" and "ether",
29 // these are guaranteed to be in the prefs; "disk", "floppy" and "cdrom" can
30 // occur multiple times
31 prefs_desc common_prefs_items[] = {
32 {"disk", TYPE_STRING, true}, // Device/file names of Mac volumes (disk.cpp)
33 {"floppy", TYPE_STRING, true}, // Device/file names of Mac floppy drives (sony.cpp)
34 {"cdrom", TYPE_STRING, true}, // Device/file names of Mac CD-ROM drives (cdrom.cpp)
35 {"extfs", TYPE_STRING, false}, // Root path of ExtFS (extfs.cpp)
36 {"scsi0", TYPE_STRING, false}, // SCSI targets for Mac SCSI ID 0..6 (scsi_*.cpp)
37 {"scsi1", TYPE_STRING, false},
38 {"scsi2", TYPE_STRING, false},
39 {"scsi3", TYPE_STRING, false},
40 {"scsi4", TYPE_STRING, false},
41 {"scsi5", TYPE_STRING, false},
42 {"scsi6", TYPE_STRING, false},
43 {"screen", TYPE_STRING, false}, // Video mode (video.cpp)
44 {"seriala", TYPE_STRING, false}, // Device name of Mac serial port A (serial_*.cpp)
45 {"serialb", TYPE_STRING, false}, // Device name of Mac serial port B (serial_*.cpp)
46 {"ether", TYPE_STRING, false}, // Device name of Mac ethernet adapter (ether_*.cpp)
47 {"rom", TYPE_STRING, false}, // Path of ROM file (main_*.cpp)
48 {"bootdrive", TYPE_INT16, false}, // Boot drive number (main.cpp)
49 {"bootdriver", TYPE_INT16, false}, // Boot driver number (main.cpp)
50 {"ramsize", TYPE_INT32, false}, // Size of Mac RAM in bytes (main_*.cpp)
51 {"frameskip", TYPE_INT32, false}, // Number of frames to skip in refreshed video modes (video_*.cpp)
52 {"modelid", TYPE_INT32, false}, // Mac Model ID (Gestalt Model ID minus 6) (rom_patches.cpp)
53 {"cpu", TYPE_INT32, false}, // CPU type (0 = 68000, 1 = 68010 etc.) (main.cpp)
54 {"fpu", TYPE_BOOLEAN, false}, // Enable FPU emulation (main.cpp)
55 {"nocdrom", TYPE_BOOLEAN, false}, // Don't install CD-ROM driver (cdrom.cpp/rom_patches.cpp)
56 {"nosound", TYPE_BOOLEAN, false}, // Don't enable sound output (audio_*.cpp)
57 {"noclipconversion", TYPE_BOOLEAN, false}, // Don't convert clipboard contents (clip_*.cpp)
58 {"nogui", TYPE_BOOLEAN, false}, // Disable GUI (main_*.cpp)
59 {NULL, TYPE_END, false} // End of list
60 };
61
62
63 /*
64 * Set default values for preferences items
65 */
66
67 void AddPrefsDefaults(void)
68 {
69 SysAddSerialPrefs();
70 PrefsAddInt16("bootdriver", 0);
71 PrefsAddInt16("bootdrive", 0);
72 PrefsAddInt32("ramsize", 8 * 1024 * 1024);
73 PrefsAddInt32("frameskip", 6);
74 PrefsAddInt32("modelid", 5); // Mac IIci
75 PrefsAddInt32("cpu", 3); // 68030
76 PrefsAddBool("fpu", false);
77 PrefsAddBool("nocdrom", false);
78 PrefsAddBool("nosound", false);
79 PrefsAddBool("noclipconversion", false);
80 PrefsAddBool("nogui", false);
81 }