2006-02-24 04:48:15 +00:00
|
|
|
// Emacs style mode select -*- C++ -*-
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// $Id:$
|
|
|
|
//
|
|
|
|
// Copyright (C) 1993-1996 by id Software, Inc.
|
|
|
|
//
|
|
|
|
// This source is available for distribution and/or modification
|
|
|
|
// only under the terms of the DOOM Source Code License as
|
|
|
|
// published by id Software. All rights reserved.
|
|
|
|
//
|
|
|
|
// The source is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
|
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
// DESCRIPTION:
|
|
|
|
// Menu widget stuff, episode selection and such.
|
|
|
|
//
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __M_MENU_H__
|
|
|
|
#define __M_MENU_H__
|
|
|
|
|
|
|
|
#include "c_cvars.h"
|
|
|
|
|
2008-09-14 23:54:38 +00:00
|
|
|
struct event_t;
|
|
|
|
struct menu_t;
|
2006-02-24 04:48:15 +00:00
|
|
|
//
|
|
|
|
// MENUS
|
|
|
|
//
|
|
|
|
// Called by main loop,
|
|
|
|
// saves config file and calls I_Quit when user exits.
|
|
|
|
// Even when the menu is not displayed,
|
|
|
|
// this can resize the view and change game parameters.
|
|
|
|
// Does all the real work of the menu interaction.
|
2006-09-14 00:02:31 +00:00
|
|
|
bool M_Responder (event_t *ev);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
// Called by main loop,
|
|
|
|
// only used for menu (skull cursor) animation.
|
|
|
|
void M_Ticker (void);
|
|
|
|
|
|
|
|
// Called by main loop,
|
|
|
|
// draws the menus directly into the screen buffer.
|
|
|
|
void M_Drawer (void);
|
|
|
|
|
2006-05-12 03:14:40 +00:00
|
|
|
// Called by D_DoomMain, loads the config file.
|
2006-02-24 04:48:15 +00:00
|
|
|
void M_Init (void);
|
|
|
|
|
2006-05-12 03:14:40 +00:00
|
|
|
void M_Deinit ();
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
// Called by intro code to force menu up upon a keypress,
|
|
|
|
// does nothing if menu is already up.
|
|
|
|
void M_StartControlPanel (bool makeSound);
|
|
|
|
|
|
|
|
// Turns off the menu
|
|
|
|
void M_ClearMenus ();
|
|
|
|
|
|
|
|
// [RH] Setup options menu
|
|
|
|
bool M_StartOptionsMenu (void);
|
|
|
|
|
|
|
|
// [RH] Handle keys for options menu
|
|
|
|
void M_OptResponder (event_t *ev);
|
|
|
|
|
|
|
|
// [RH] Draw options menu
|
|
|
|
void M_OptDrawer (void);
|
|
|
|
|
|
|
|
// [RH] Initialize options menu
|
|
|
|
void M_OptInit (void);
|
|
|
|
|
Note: I have not tried compiling these recent changes under Linux. I wouldn't
be surprised if it doesn't work.
- Reorganized the network startup loops so now they are event driven. There is
a single function that gets called to drive it, and it uses callbacks to
perform the different stages of the synchronization. This lets me have a nice,
responsive abort button instead of the previous unannounced hit-escape-to-
abort behavior, and I think the rearranged code is slightly easier to
understand too.
- Increased the number of bytes for version info during D_ArbitrateNetStart(),
in preparation for the day when NETGAMEVERSION requires more than one byte.
- I noticed an issue with Vista RC1 and the new fatal error setup. Even after
releasing a DirectDraw or Direct3D interface, the DWM can still use the
last image drawn using them when it composites the window. It doesn't always
do it but it does often enough that it is a real problem. At this point, I
don't know if it's a problem with the release version of Vista or not.
After messing around, I discovered the problem was caused by ~Win32Video()
hiding the window and then having it immediately shown soon after. The DWM
kept an image of the window to do the transition effect with, and then when
it didn't get a chance to do the transition, it didn't properly forget about
its saved image and kept plastering it on top of everything else
underneath.
- Added a network synchronization panel to the window during netgame startup.
- Fixed: PClass::CreateDerivedClass() must initialize StateList to NULL.
Otherwise, classic DECORATE definitions generate a big, fat crash.
- Resurrected the R_Init progress bar, now as a standard Windows control.
- Removed the sound failure dialog. The FMOD setup already defaulted to no
sound if initialization failed, so this only applies when snd_output is set
to "alternate" which now also falls back to no sound. In addition, it wasn't
working right, and I didn't feel like fixing it for the probably 0% of users
it affected.
- Fixed: The edit control used for logging output added text in reverse order
on Win9x.
- Went back to the roots and made graphics initialization one of the last
things to happen during setup. Now the startup text is visible again. More
importantly, the main window is no longer created invisible, which seems
to cause trouble with it not always appearing in the taskbar. The fatal
error dialog is now also embedded in the main window instead of being a
separate modal dialog, so you can play with the log window to see any
problems that might be reported there.
Rather than completely restoring the original startup order, I tried to
keep things as close to the way they were with early graphics startup. In
particular, V_Init() now creates a dummy screen so that things that need
screen dimensions can get them. It gets replaced by the real screen later
in I_InitGraphics(). Will need to check this under Linux to make sure it
didn't cause any problems there.
- Removed the following stubs that just called functions in Video:
- I_StartModeIterator()
- I_NextMode()
- I_DisplayType()
I_FullscreenChanged() was also removed, and a new fullscreen parameter
was added to IVideo::StartModeIterator(), since that's all it controlled.
- Renamed I_InitHardware() back to I_InitGraphics(), since that's all it's
initialized post-1.22.
SVN r416 (trunk)
2006-12-19 04:09:10 +00:00
|
|
|
// [RH] Initialize the video modes menu
|
|
|
|
void M_InitVideoModesMenu (void);
|
|
|
|
|
- The garbage collector is now run one last time just before exiting the game.
- Removed movie volume from the sound menu and renamed some of the other
options to give the MIDI device name more room to display itself.
- Moved the midi device selection into the main sound menu.
- Added FMOD as MIDI device -1, to replace the MIDI mapper. This is still the
default device. By default, it uses exactly the same DLS instruments as the
Microsoft GS Wavetable Synth. If you have another set DLS level 1 patch set
you want to use, set the snd_midipatchfile cvar to specify where it should
load the instruments from.
- Changed the ProduceMIDI function to store its output into a TArray<BYTE>.
An overloaded version wraps around it to continue to supply file-writing
support for external Timidity++ usage.
- Added an FMOD credits banner to comply with their non-commercial license.
- Reimplemented the snd_buffersize cvar for the FMOD Ex sound system. Rather
than a time in ms, this is now the length in samples of the DSP buffer.
Also added the snd_buffercount cvar to offer complete control over the
call to FMOD::System::setDSPBufferSize(). Note that with any snd_samplerate
below about 44kHz, you will need to set snd_buffersize to avoid long
latencies.
- Reimplemented the snd_output cvar for the FMOD Ex sound system.
- Changed snd_samplerate default to 0. This now means to use the default
sample rate.
- Made snd_output, snd_output_format, snd_speakermode, snd_resampler, and
snd_hrtf available through the menu.
- Split the HRTF effect selection into its own cvar: snd_hrtf.
- Removed 96000 Hz option from the menu. It's still available through the
cvar, if desired.
- Fixed: If Windows sound init failed, retry with DirectSound. (Apparently,
WASAPI doesn't work with more than two speakers and PCM-Float output at the
same time.)
- Fixed: Area sounds only played from the front speakers once you got within
the 2D panning area.
SVN r854 (trunk)
2008-03-26 04:27:07 +00:00
|
|
|
void M_SwitchMenu (struct menu_t *menu);
|
2006-02-24 04:48:15 +00:00
|
|
|
|
|
|
|
void M_PopMenuStack (void);
|
|
|
|
|
|
|
|
// [RH] Called whenever the display mode changes
|
|
|
|
void M_RefreshModesList ();
|
|
|
|
|
|
|
|
void M_ActivateMenuInput ();
|
|
|
|
void M_DeactivateMenuInput ();
|
|
|
|
|
|
|
|
void M_NotifyNewSave (const char *file, const char *title, bool okForQuicksave);
|
|
|
|
|
|
|
|
//
|
|
|
|
// MENU TYPEDEFS
|
|
|
|
//
|
|
|
|
typedef enum {
|
|
|
|
whitetext,
|
|
|
|
redtext,
|
|
|
|
more,
|
|
|
|
rightmore,
|
|
|
|
safemore,
|
|
|
|
rsafemore,
|
|
|
|
slider,
|
|
|
|
absslider,
|
|
|
|
inverter,
|
|
|
|
discrete,
|
2008-01-08 04:00:43 +00:00
|
|
|
discretes,
|
2006-02-24 04:48:15 +00:00
|
|
|
cdiscrete,
|
- The garbage collector is now run one last time just before exiting the game.
- Removed movie volume from the sound menu and renamed some of the other
options to give the MIDI device name more room to display itself.
- Moved the midi device selection into the main sound menu.
- Added FMOD as MIDI device -1, to replace the MIDI mapper. This is still the
default device. By default, it uses exactly the same DLS instruments as the
Microsoft GS Wavetable Synth. If you have another set DLS level 1 patch set
you want to use, set the snd_midipatchfile cvar to specify where it should
load the instruments from.
- Changed the ProduceMIDI function to store its output into a TArray<BYTE>.
An overloaded version wraps around it to continue to supply file-writing
support for external Timidity++ usage.
- Added an FMOD credits banner to comply with their non-commercial license.
- Reimplemented the snd_buffersize cvar for the FMOD Ex sound system. Rather
than a time in ms, this is now the length in samples of the DSP buffer.
Also added the snd_buffercount cvar to offer complete control over the
call to FMOD::System::setDSPBufferSize(). Note that with any snd_samplerate
below about 44kHz, you will need to set snd_buffersize to avoid long
latencies.
- Reimplemented the snd_output cvar for the FMOD Ex sound system.
- Changed snd_samplerate default to 0. This now means to use the default
sample rate.
- Made snd_output, snd_output_format, snd_speakermode, snd_resampler, and
snd_hrtf available through the menu.
- Split the HRTF effect selection into its own cvar: snd_hrtf.
- Removed 96000 Hz option from the menu. It's still available through the
cvar, if desired.
- Fixed: If Windows sound init failed, retry with DirectSound. (Apparently,
WASAPI doesn't work with more than two speakers and PCM-Float output at the
same time.)
- Fixed: Area sounds only played from the front speakers once you got within
the 2D panning area.
SVN r854 (trunk)
2008-03-26 04:27:07 +00:00
|
|
|
ediscrete,
|
2006-02-24 04:48:15 +00:00
|
|
|
discrete_guid,
|
|
|
|
control,
|
|
|
|
screenres,
|
|
|
|
bitflag,
|
2006-12-16 11:49:48 +00:00
|
|
|
bitmask,
|
2006-02-24 04:48:15 +00:00
|
|
|
listelement,
|
|
|
|
nochoice,
|
|
|
|
numberedmore,
|
|
|
|
colorpicker,
|
|
|
|
intslider,
|
|
|
|
palettegrid,
|
|
|
|
} itemtype;
|
|
|
|
|
|
|
|
struct GUIDName;
|
|
|
|
|
|
|
|
typedef struct menuitem_s {
|
|
|
|
itemtype type;
|
2006-12-29 03:38:37 +00:00
|
|
|
const char *label;
|
2006-02-24 04:48:15 +00:00
|
|
|
union {
|
|
|
|
FBaseCVar *cvar;
|
|
|
|
FIntCVar *intcvar;
|
|
|
|
FGUIDCVar *guidcvar;
|
|
|
|
FColorCVar *colorcvar;
|
|
|
|
int selmode;
|
|
|
|
float fval;
|
|
|
|
} a;
|
|
|
|
union {
|
|
|
|
float min; /* aka numvalues aka invflag */
|
|
|
|
float numvalues;
|
|
|
|
float invflag;
|
|
|
|
int key1;
|
|
|
|
char *res1;
|
|
|
|
int position;
|
|
|
|
} b;
|
|
|
|
union {
|
|
|
|
float max;
|
|
|
|
int key2;
|
|
|
|
char *res2;
|
|
|
|
void *extra;
|
|
|
|
} c;
|
|
|
|
union {
|
|
|
|
float step;
|
|
|
|
char *res3;
|
2008-05-29 23:33:07 +00:00
|
|
|
FBoolCVar *graycheck; // for drawing discrete items
|
2006-02-24 04:48:15 +00:00
|
|
|
} d;
|
|
|
|
union {
|
- The garbage collector is now run one last time just before exiting the game.
- Removed movie volume from the sound menu and renamed some of the other
options to give the MIDI device name more room to display itself.
- Moved the midi device selection into the main sound menu.
- Added FMOD as MIDI device -1, to replace the MIDI mapper. This is still the
default device. By default, it uses exactly the same DLS instruments as the
Microsoft GS Wavetable Synth. If you have another set DLS level 1 patch set
you want to use, set the snd_midipatchfile cvar to specify where it should
load the instruments from.
- Changed the ProduceMIDI function to store its output into a TArray<BYTE>.
An overloaded version wraps around it to continue to supply file-writing
support for external Timidity++ usage.
- Added an FMOD credits banner to comply with their non-commercial license.
- Reimplemented the snd_buffersize cvar for the FMOD Ex sound system. Rather
than a time in ms, this is now the length in samples of the DSP buffer.
Also added the snd_buffercount cvar to offer complete control over the
call to FMOD::System::setDSPBufferSize(). Note that with any snd_samplerate
below about 44kHz, you will need to set snd_buffersize to avoid long
latencies.
- Reimplemented the snd_output cvar for the FMOD Ex sound system.
- Changed snd_samplerate default to 0. This now means to use the default
sample rate.
- Made snd_output, snd_output_format, snd_speakermode, snd_resampler, and
snd_hrtf available through the menu.
- Split the HRTF effect selection into its own cvar: snd_hrtf.
- Removed 96000 Hz option from the menu. It's still available through the
cvar, if desired.
- Fixed: If Windows sound init failed, retry with DirectSound. (Apparently,
WASAPI doesn't work with more than two speakers and PCM-Float output at the
same time.)
- Fixed: Area sounds only played from the front speakers once you got within
the 2D panning area.
SVN r854 (trunk)
2008-03-26 04:27:07 +00:00
|
|
|
struct value_t *values;
|
2008-01-08 04:00:43 +00:00
|
|
|
struct valuestring_t *valuestrings;
|
- The garbage collector is now run one last time just before exiting the game.
- Removed movie volume from the sound menu and renamed some of the other
options to give the MIDI device name more room to display itself.
- Moved the midi device selection into the main sound menu.
- Added FMOD as MIDI device -1, to replace the MIDI mapper. This is still the
default device. By default, it uses exactly the same DLS instruments as the
Microsoft GS Wavetable Synth. If you have another set DLS level 1 patch set
you want to use, set the snd_midipatchfile cvar to specify where it should
load the instruments from.
- Changed the ProduceMIDI function to store its output into a TArray<BYTE>.
An overloaded version wraps around it to continue to supply file-writing
support for external Timidity++ usage.
- Added an FMOD credits banner to comply with their non-commercial license.
- Reimplemented the snd_buffersize cvar for the FMOD Ex sound system. Rather
than a time in ms, this is now the length in samples of the DSP buffer.
Also added the snd_buffercount cvar to offer complete control over the
call to FMOD::System::setDSPBufferSize(). Note that with any snd_samplerate
below about 44kHz, you will need to set snd_buffersize to avoid long
latencies.
- Reimplemented the snd_output cvar for the FMOD Ex sound system.
- Changed snd_samplerate default to 0. This now means to use the default
sample rate.
- Made snd_output, snd_output_format, snd_speakermode, snd_resampler, and
snd_hrtf available through the menu.
- Split the HRTF effect selection into its own cvar: snd_hrtf.
- Removed 96000 Hz option from the menu. It's still available through the
cvar, if desired.
- Fixed: If Windows sound init failed, retry with DirectSound. (Apparently,
WASAPI doesn't work with more than two speakers and PCM-Float output at the
same time.)
- Fixed: Area sounds only played from the front speakers once you got within
the 2D panning area.
SVN r854 (trunk)
2008-03-26 04:27:07 +00:00
|
|
|
struct valueenum_t *enumvalues;
|
2006-02-24 04:48:15 +00:00
|
|
|
GUIDName *guidvalues;
|
|
|
|
char *command;
|
|
|
|
void (*cfunc)(FBaseCVar *cvar, float newval);
|
|
|
|
void (*mfunc)(void);
|
|
|
|
void (*lfunc)(int);
|
|
|
|
int highlight;
|
|
|
|
int flagmask;
|
|
|
|
} e;
|
|
|
|
} menuitem_t;
|
|
|
|
|
- The garbage collector is now run one last time just before exiting the game.
- Removed movie volume from the sound menu and renamed some of the other
options to give the MIDI device name more room to display itself.
- Moved the midi device selection into the main sound menu.
- Added FMOD as MIDI device -1, to replace the MIDI mapper. This is still the
default device. By default, it uses exactly the same DLS instruments as the
Microsoft GS Wavetable Synth. If you have another set DLS level 1 patch set
you want to use, set the snd_midipatchfile cvar to specify where it should
load the instruments from.
- Changed the ProduceMIDI function to store its output into a TArray<BYTE>.
An overloaded version wraps around it to continue to supply file-writing
support for external Timidity++ usage.
- Added an FMOD credits banner to comply with their non-commercial license.
- Reimplemented the snd_buffersize cvar for the FMOD Ex sound system. Rather
than a time in ms, this is now the length in samples of the DSP buffer.
Also added the snd_buffercount cvar to offer complete control over the
call to FMOD::System::setDSPBufferSize(). Note that with any snd_samplerate
below about 44kHz, you will need to set snd_buffersize to avoid long
latencies.
- Reimplemented the snd_output cvar for the FMOD Ex sound system.
- Changed snd_samplerate default to 0. This now means to use the default
sample rate.
- Made snd_output, snd_output_format, snd_speakermode, snd_resampler, and
snd_hrtf available through the menu.
- Split the HRTF effect selection into its own cvar: snd_hrtf.
- Removed 96000 Hz option from the menu. It's still available through the
cvar, if desired.
- Fixed: If Windows sound init failed, retry with DirectSound. (Apparently,
WASAPI doesn't work with more than two speakers and PCM-Float output at the
same time.)
- Fixed: Area sounds only played from the front speakers once you got within
the 2D panning area.
SVN r854 (trunk)
2008-03-26 04:27:07 +00:00
|
|
|
struct menu_t {
|
2006-12-29 03:38:37 +00:00
|
|
|
const char *texttitle;
|
2006-02-24 04:48:15 +00:00
|
|
|
int lastOn;
|
|
|
|
int numitems;
|
|
|
|
int indent;
|
|
|
|
menuitem_t *items;
|
|
|
|
int scrolltop;
|
|
|
|
int scrollpos;
|
|
|
|
int y;
|
|
|
|
void (*PreDraw)(void);
|
|
|
|
bool DontDim;
|
|
|
|
void (*EscapeHandler)(void);
|
- The garbage collector is now run one last time just before exiting the game.
- Removed movie volume from the sound menu and renamed some of the other
options to give the MIDI device name more room to display itself.
- Moved the midi device selection into the main sound menu.
- Added FMOD as MIDI device -1, to replace the MIDI mapper. This is still the
default device. By default, it uses exactly the same DLS instruments as the
Microsoft GS Wavetable Synth. If you have another set DLS level 1 patch set
you want to use, set the snd_midipatchfile cvar to specify where it should
load the instruments from.
- Changed the ProduceMIDI function to store its output into a TArray<BYTE>.
An overloaded version wraps around it to continue to supply file-writing
support for external Timidity++ usage.
- Added an FMOD credits banner to comply with their non-commercial license.
- Reimplemented the snd_buffersize cvar for the FMOD Ex sound system. Rather
than a time in ms, this is now the length in samples of the DSP buffer.
Also added the snd_buffercount cvar to offer complete control over the
call to FMOD::System::setDSPBufferSize(). Note that with any snd_samplerate
below about 44kHz, you will need to set snd_buffersize to avoid long
latencies.
- Reimplemented the snd_output cvar for the FMOD Ex sound system.
- Changed snd_samplerate default to 0. This now means to use the default
sample rate.
- Made snd_output, snd_output_format, snd_speakermode, snd_resampler, and
snd_hrtf available through the menu.
- Split the HRTF effect selection into its own cvar: snd_hrtf.
- Removed 96000 Hz option from the menu. It's still available through the
cvar, if desired.
- Fixed: If Windows sound init failed, retry with DirectSound. (Apparently,
WASAPI doesn't work with more than two speakers and PCM-Float output at the
same time.)
- Fixed: Area sounds only played from the front speakers once you got within
the 2D panning area.
SVN r854 (trunk)
2008-03-26 04:27:07 +00:00
|
|
|
};
|
2006-02-24 04:48:15 +00:00
|
|
|
|
- The garbage collector is now run one last time just before exiting the game.
- Removed movie volume from the sound menu and renamed some of the other
options to give the MIDI device name more room to display itself.
- Moved the midi device selection into the main sound menu.
- Added FMOD as MIDI device -1, to replace the MIDI mapper. This is still the
default device. By default, it uses exactly the same DLS instruments as the
Microsoft GS Wavetable Synth. If you have another set DLS level 1 patch set
you want to use, set the snd_midipatchfile cvar to specify where it should
load the instruments from.
- Changed the ProduceMIDI function to store its output into a TArray<BYTE>.
An overloaded version wraps around it to continue to supply file-writing
support for external Timidity++ usage.
- Added an FMOD credits banner to comply with their non-commercial license.
- Reimplemented the snd_buffersize cvar for the FMOD Ex sound system. Rather
than a time in ms, this is now the length in samples of the DSP buffer.
Also added the snd_buffercount cvar to offer complete control over the
call to FMOD::System::setDSPBufferSize(). Note that with any snd_samplerate
below about 44kHz, you will need to set snd_buffersize to avoid long
latencies.
- Reimplemented the snd_output cvar for the FMOD Ex sound system.
- Changed snd_samplerate default to 0. This now means to use the default
sample rate.
- Made snd_output, snd_output_format, snd_speakermode, snd_resampler, and
snd_hrtf available through the menu.
- Split the HRTF effect selection into its own cvar: snd_hrtf.
- Removed 96000 Hz option from the menu. It's still available through the
cvar, if desired.
- Fixed: If Windows sound init failed, retry with DirectSound. (Apparently,
WASAPI doesn't work with more than two speakers and PCM-Float output at the
same time.)
- Fixed: Area sounds only played from the front speakers once you got within
the 2D panning area.
SVN r854 (trunk)
2008-03-26 04:27:07 +00:00
|
|
|
struct value_t {
|
2006-02-24 04:48:15 +00:00
|
|
|
float value;
|
2006-12-29 03:38:37 +00:00
|
|
|
const char *name;
|
- The garbage collector is now run one last time just before exiting the game.
- Removed movie volume from the sound menu and renamed some of the other
options to give the MIDI device name more room to display itself.
- Moved the midi device selection into the main sound menu.
- Added FMOD as MIDI device -1, to replace the MIDI mapper. This is still the
default device. By default, it uses exactly the same DLS instruments as the
Microsoft GS Wavetable Synth. If you have another set DLS level 1 patch set
you want to use, set the snd_midipatchfile cvar to specify where it should
load the instruments from.
- Changed the ProduceMIDI function to store its output into a TArray<BYTE>.
An overloaded version wraps around it to continue to supply file-writing
support for external Timidity++ usage.
- Added an FMOD credits banner to comply with their non-commercial license.
- Reimplemented the snd_buffersize cvar for the FMOD Ex sound system. Rather
than a time in ms, this is now the length in samples of the DSP buffer.
Also added the snd_buffercount cvar to offer complete control over the
call to FMOD::System::setDSPBufferSize(). Note that with any snd_samplerate
below about 44kHz, you will need to set snd_buffersize to avoid long
latencies.
- Reimplemented the snd_output cvar for the FMOD Ex sound system.
- Changed snd_samplerate default to 0. This now means to use the default
sample rate.
- Made snd_output, snd_output_format, snd_speakermode, snd_resampler, and
snd_hrtf available through the menu.
- Split the HRTF effect selection into its own cvar: snd_hrtf.
- Removed 96000 Hz option from the menu. It's still available through the
cvar, if desired.
- Fixed: If Windows sound init failed, retry with DirectSound. (Apparently,
WASAPI doesn't work with more than two speakers and PCM-Float output at the
same time.)
- Fixed: Area sounds only played from the front speakers once you got within
the 2D panning area.
SVN r854 (trunk)
2008-03-26 04:27:07 +00:00
|
|
|
};
|
2006-02-24 04:48:15 +00:00
|
|
|
|
2008-01-08 04:00:43 +00:00
|
|
|
struct valuestring_t {
|
|
|
|
float value;
|
|
|
|
FString name;
|
|
|
|
};
|
|
|
|
|
- The garbage collector is now run one last time just before exiting the game.
- Removed movie volume from the sound menu and renamed some of the other
options to give the MIDI device name more room to display itself.
- Moved the midi device selection into the main sound menu.
- Added FMOD as MIDI device -1, to replace the MIDI mapper. This is still the
default device. By default, it uses exactly the same DLS instruments as the
Microsoft GS Wavetable Synth. If you have another set DLS level 1 patch set
you want to use, set the snd_midipatchfile cvar to specify where it should
load the instruments from.
- Changed the ProduceMIDI function to store its output into a TArray<BYTE>.
An overloaded version wraps around it to continue to supply file-writing
support for external Timidity++ usage.
- Added an FMOD credits banner to comply with their non-commercial license.
- Reimplemented the snd_buffersize cvar for the FMOD Ex sound system. Rather
than a time in ms, this is now the length in samples of the DSP buffer.
Also added the snd_buffercount cvar to offer complete control over the
call to FMOD::System::setDSPBufferSize(). Note that with any snd_samplerate
below about 44kHz, you will need to set snd_buffersize to avoid long
latencies.
- Reimplemented the snd_output cvar for the FMOD Ex sound system.
- Changed snd_samplerate default to 0. This now means to use the default
sample rate.
- Made snd_output, snd_output_format, snd_speakermode, snd_resampler, and
snd_hrtf available through the menu.
- Split the HRTF effect selection into its own cvar: snd_hrtf.
- Removed 96000 Hz option from the menu. It's still available through the
cvar, if desired.
- Fixed: If Windows sound init failed, retry with DirectSound. (Apparently,
WASAPI doesn't work with more than two speakers and PCM-Float output at the
same time.)
- Fixed: Area sounds only played from the front speakers once you got within
the 2D panning area.
SVN r854 (trunk)
2008-03-26 04:27:07 +00:00
|
|
|
struct valueenum_t {
|
|
|
|
const char *value; // Value of cvar
|
|
|
|
const char *name; // Name on menu
|
|
|
|
};
|
|
|
|
|
2006-02-24 04:48:15 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
// -1 = no cursor here, 1 = ok, 2 = arrows ok
|
|
|
|
SBYTE status;
|
|
|
|
BYTE fulltext; // [RH] Menu name is text, not a graphic
|
|
|
|
|
|
|
|
// hotkey in menu
|
|
|
|
char alphaKey;
|
|
|
|
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
// choice = menu item #.
|
|
|
|
// if status = 2,
|
|
|
|
// choice=0:leftarrow,1:rightarrow
|
|
|
|
void (*routine)(int choice);
|
2007-11-03 11:41:42 +00:00
|
|
|
int textcolor;
|
2006-02-24 04:48:15 +00:00
|
|
|
} oldmenuitem_t;
|
|
|
|
|
|
|
|
typedef struct oldmenu_s
|
|
|
|
{
|
|
|
|
short numitems; // # of menu items
|
|
|
|
oldmenuitem_t *menuitems; // menu items
|
|
|
|
void (*routine)(void); // draw routine
|
|
|
|
short x;
|
|
|
|
short y; // x,y of menu
|
|
|
|
short lastOn; // last item user was on in menu
|
|
|
|
} oldmenu_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
union {
|
|
|
|
menu_t *newmenu;
|
|
|
|
oldmenu_t *old;
|
|
|
|
} menu;
|
|
|
|
bool isNewStyle;
|
|
|
|
bool drawSkull;
|
|
|
|
} menustack_t;
|
|
|
|
|
|
|
|
extern value_t YesNo[2];
|
|
|
|
extern value_t NoYes[2];
|
|
|
|
extern value_t OnOff[2];
|
|
|
|
|
|
|
|
extern menustack_t MenuStack[16];
|
|
|
|
extern int MenuStackDepth;
|
|
|
|
|
|
|
|
extern bool OptionsActive;
|
|
|
|
|
|
|
|
extern menu_t *CurrentMenu;
|
|
|
|
extern int CurrentItem;
|
|
|
|
|
|
|
|
#define MAX_EPISODES 8
|
|
|
|
|
|
|
|
extern oldmenuitem_t EpisodeMenu[MAX_EPISODES];
|
2006-05-13 12:41:15 +00:00
|
|
|
extern bool EpisodeNoSkill[MAX_EPISODES];
|
2006-02-24 04:48:15 +00:00
|
|
|
extern char EpisodeMaps[MAX_EPISODES][8];
|
|
|
|
extern oldmenu_t EpiDef;
|
|
|
|
|
|
|
|
#endif
|