mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-06 00:40:04 +00:00
Make framerate limit configurable in the launcher
This commit is contained in:
parent
49c691d00a
commit
b87b29eeb0
@ -44,6 +44,7 @@ Launcher::GraphicsPage::GraphicsPage(Files::ConfigurationManager &cfg, Settings:
|
|||||||
connect(fullScreenCheckBox, SIGNAL(stateChanged(int)), this, SLOT(slotFullScreenChanged(int)));
|
connect(fullScreenCheckBox, SIGNAL(stateChanged(int)), this, SLOT(slotFullScreenChanged(int)));
|
||||||
connect(standardRadioButton, SIGNAL(toggled(bool)), this, SLOT(slotStandardToggled(bool)));
|
connect(standardRadioButton, SIGNAL(toggled(bool)), this, SLOT(slotStandardToggled(bool)));
|
||||||
connect(screenComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(screenChanged(int)));
|
connect(screenComboBox, SIGNAL(currentIndexChanged(int)), this, SLOT(screenChanged(int)));
|
||||||
|
connect(framerateLimitCheckBox, SIGNAL(toggled(bool)), this, SLOT(slotFramerateLimitToggled(bool)));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -121,6 +122,17 @@ bool Launcher::GraphicsPage::loadSettings()
|
|||||||
customHeightSpinBox->setValue(height);
|
customHeightSpinBox->setValue(height);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
float fpsLimit = mEngineSettings.getFloat("framerate limit", "Video");
|
||||||
|
if (fpsLimit != 0)
|
||||||
|
{
|
||||||
|
framerateLimitCheckBox->setCheckState(Qt::Checked);
|
||||||
|
framerateLimitSpinBox->setValue(fpsLimit);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
framerateLimitSpinBox->setEnabled(false);
|
||||||
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -166,6 +178,17 @@ void Launcher::GraphicsPage::saveSettings()
|
|||||||
int cScreen = screenComboBox->currentIndex();
|
int cScreen = screenComboBox->currentIndex();
|
||||||
if (cScreen != mEngineSettings.getInt("screen", "Video"))
|
if (cScreen != mEngineSettings.getInt("screen", "Video"))
|
||||||
mEngineSettings.setInt("screen", "Video", cScreen);
|
mEngineSettings.setInt("screen", "Video", cScreen);
|
||||||
|
|
||||||
|
if (framerateLimitCheckBox->checkState())
|
||||||
|
{
|
||||||
|
float cFpsLimit = framerateLimitSpinBox->value();
|
||||||
|
if (cFpsLimit != mEngineSettings.getFloat("framerate limit", "Video"))
|
||||||
|
mEngineSettings.setFloat("framerate limit", "Video", cFpsLimit);
|
||||||
|
}
|
||||||
|
else if (mEngineSettings.getFloat("framerate limit", "Video") != 0)
|
||||||
|
{
|
||||||
|
mEngineSettings.setFloat("framerate limit", "Video", 0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
QStringList Launcher::GraphicsPage::getAvailableResolutions(int screen)
|
QStringList Launcher::GraphicsPage::getAvailableResolutions(int screen)
|
||||||
@ -266,3 +289,8 @@ void Launcher::GraphicsPage::slotStandardToggled(bool checked)
|
|||||||
customHeightSpinBox->setEnabled(true);
|
customHeightSpinBox->setEnabled(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Launcher::GraphicsPage::slotFramerateLimitToggled(bool checked)
|
||||||
|
{
|
||||||
|
framerateLimitSpinBox->setEnabled(checked);
|
||||||
|
}
|
||||||
|
@ -31,6 +31,7 @@ namespace Launcher
|
|||||||
private slots:
|
private slots:
|
||||||
void slotFullScreenChanged(int state);
|
void slotFullScreenChanged(int state);
|
||||||
void slotStandardToggled(bool checked);
|
void slotStandardToggled(bool checked);
|
||||||
|
void slotFramerateLimitToggled(bool checked);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
Files::ConfigurationManager &mCfgMgr;
|
Files::ConfigurationManager &mCfgMgr;
|
||||||
|
@ -62,6 +62,13 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
<item row="6" column="0">
|
||||||
|
<widget class="QCheckBox" name="framerateLimitCheckBox">
|
||||||
|
<property name="text">
|
||||||
|
<string>Framerate limit</string>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
<item row="3" column="1">
|
<item row="3" column="1">
|
||||||
<widget class="QComboBox" name="antiAliasingComboBox">
|
<widget class="QComboBox" name="antiAliasingComboBox">
|
||||||
<item>
|
<item>
|
||||||
@ -143,6 +150,28 @@
|
|||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</item>
|
</item>
|
||||||
|
<item row="6" column="1">
|
||||||
|
<widget class="QDoubleSpinBox" name="framerateLimitSpinBox">
|
||||||
|
<property name="suffix">
|
||||||
|
<string> FPS</string>
|
||||||
|
</property>
|
||||||
|
<property name="decimals">
|
||||||
|
<number>1</number>
|
||||||
|
</property>
|
||||||
|
<property name="minimum">
|
||||||
|
<double>1</double>
|
||||||
|
</property>
|
||||||
|
<property name="maximum">
|
||||||
|
<double>999</double>
|
||||||
|
</property>
|
||||||
|
<property name="singleStep">
|
||||||
|
<double>15</double>
|
||||||
|
</property>
|
||||||
|
<property name="value">
|
||||||
|
<double>300</double>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user