summaryrefslogtreecommitdiff
path: root/src/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/options.h')
-rw-r--r--src/options.h94
1 files changed, 94 insertions, 0 deletions
diff --git a/src/options.h b/src/options.h
new file mode 100644
index 0000000..67480a4
--- /dev/null
+++ b/src/options.h
@@ -0,0 +1,94 @@
+/*
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+/*
+ * Eventually this should include all configuration stuff,
+ * for now there's few options which indicate 3do/pc flavors.
+ */
+
+#ifndef OPTIONS_H
+#define OPTIONS_H
+
+#include "port.h"
+#include "libs/compiler.h"
+#include "libs/uio.h"
+
+#if defined(__cplusplus)
+extern "C" {
+#endif
+
+#define OPT_3DO 0x01
+#define OPT_PC 0x02
+#define OPT_ALL 0xFF
+
+extern int optWhichCoarseScan;
+extern int optWhichMenu;
+extern int optWhichFonts;
+extern int optWhichIntro;
+extern int optWhichShield;
+extern int optSmoothScroll;
+extern int optMeleeScale;
+
+extern BOOLEAN opt3doMusic;
+extern BOOLEAN optRemixMusic;
+extern BOOLEAN optSpeech;
+extern BOOLEAN optSubtitles;
+extern BOOLEAN optStereoSFX;
+extern BOOLEAN optKeepAspectRatio;
+
+#define GAMMA_SCALE 1000
+extern float optGamma;
+
+extern uio_DirHandle *contentDir;
+extern uio_DirHandle *configDir;
+extern uio_DirHandle *saveDir;
+extern uio_DirHandle *meleeDir;
+extern char baseContentPath[PATH_MAX];
+
+extern const char **optAddons;
+
+/* These get edited by TEXTENTRY widgets, so they should have room to
+ * hold as much as one of them allows by default. */
+typedef struct _input_template {
+ char name[30];
+
+ /* This should eventually also hold things like Joystick Port
+ * and whether or not joysticks are enabled at all, and
+ * possibly the whole configuration scheme. If we do that, we
+ * can actually ditch much of VControl. */
+} INPUT_TEMPLATE;
+
+extern INPUT_TEMPLATE input_templates[6];
+
+void prepareContentDir (const char *contentDirName, const char *addonDirName, const char *execFile);
+void prepareConfigDir (const char *configDirName);
+void prepareMeleeDir (void);
+void prepareSaveDir (void);
+void prepareAddons (const char **addons);
+void prepareShadowAddons (const char **addons);
+void unprepareAllDirs (void);
+
+BOOLEAN loadAddon (const char *addon);
+int loadIndices (uio_DirHandle *baseDir);
+
+bool setGammaCorrection (float gamma);
+
+#if defined(__cplusplus)
+}
+#endif
+
+#endif
+