Files
renderdoc/renderdocui/Windows/Dialogs/SettingsDialog.cs
T
baldurk 9460fbd970 Add feature to globally hook processes to inject indirectly.
* This allows you to hook into processes that are difficult to launch
  directly with the existing functionality in RenderDoc.
* This is rather risky, as it modifies the AppInit_DLLs registry key to
  inject a small shim dll that checks for the desired process and injects
  the full renderdoc.dll. If that registry key got left, or if there was
  some incompatibility with the shim dll, you could have problems. It
  should only ever be used as a last resort if there's no other way to
  capture.
2014-10-05 13:57:11 +01:00

194 lines
6.8 KiB
C#

/******************************************************************************
* The MIT License (MIT)
*
* Copyright (c) 2014 Crytek
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
******************************************************************************/
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.IO;
using System.Text;
using System.Windows.Forms;
using renderdocui.Code;
namespace renderdocui.Windows.Dialogs
{
public partial class SettingsDialog : Form
{
Core m_Core = null;
bool initialising = false;
public SettingsDialog(Core c)
{
m_Core = c;
InitializeComponent();
Icon = global::renderdocui.Properties.Resources.icon;
pagesTree.BeginUpdate();
foreach (TabPage t in settingsTabs.TabPages)
{
pagesTree.Nodes.Add(new object[] { t.Text }).Tag = t;
}
pagesTree.EndUpdate();
pagesTree.FocusedNode = pagesTree.Nodes[0];
TextureViewer_ResetRange.Checked = m_Core.Config.TextureViewer_ResetRange;
ShaderViewer_FriendlyNaming.Checked = m_Core.Config.ShaderViewer_FriendlyNaming;
CheckUpdate_AllowChecks.Checked = m_Core.Config.CheckUpdate_AllowChecks;
AllowGlobalHook.Checked = m_Core.Config.AllowGlobalHook;
{
Type type = m_Core.Config.EventBrowser_TimeUnit.GetType();
EventBrowser_TimeUnit.Items.Clear();
foreach (int v in type.GetEnumValues())
{
EventBrowser_TimeUnit.Items.Add(PersistantConfig.UnitPrefix((PersistantConfig.TimeUnit)v));
}
}
EventBrowser_TimeUnit.SelectedIndex = (int)m_Core.Config.EventBrowser_TimeUnit;
EventBrowser_HideEmpty.Checked = m_Core.Config.EventBrowser_HideEmpty;
initialising = true;
Formatter_MinFigures.Value = m_Core.Config.Formatter_MinFigures;
Formatter_MaxFigures.Value = m_Core.Config.Formatter_MaxFigures;
Formatter_NegExp.Value = m_Core.Config.Formatter_NegExp;
Formatter_PosExp.Value = m_Core.Config.Formatter_PosExp;
initialising = false;
}
private void ok_Click(object sender, EventArgs e)
{
Close();
}
private void rdcAssoc_Click(object sender, EventArgs e)
{
Helpers.InstallRDCAssociation();
}
private void capAssoc_Click(object sender, EventArgs e)
{
Helpers.InstallCAPAssociation();
}
private void TextureViewer_ResetRange_CheckedChanged(object sender, EventArgs e)
{
m_Core.Config.TextureViewer_ResetRange = TextureViewer_ResetRange.Checked;
m_Core.Config.Serialize(Core.ConfigFilename);
}
private void friendlyRegName_CheckedChanged(object sender, EventArgs e)
{
m_Core.Config.ShaderViewer_FriendlyNaming = ShaderViewer_FriendlyNaming.Checked;
m_Core.Config.Serialize(Core.ConfigFilename);
}
private void pagesTree_AfterSelect(object sender, TreeViewEventArgs e)
{
if(pagesTree.FocusedNode != null)
settingsTabs.SelectedTab = (pagesTree.FocusedNode.Tag as TabPage);
}
private void formatter_ValueChanged(object sender, EventArgs e)
{
if(initialising)
return;
m_Core.Config.Formatter_MinFigures = (int)Formatter_MinFigures.Value;
m_Core.Config.Formatter_MaxFigures = (int)Formatter_MaxFigures.Value;
m_Core.Config.Formatter_NegExp = (int)Formatter_NegExp.Value;
m_Core.Config.Formatter_PosExp = (int)Formatter_PosExp.Value;
m_Core.Config.SetupFormatter();
m_Core.Config.Serialize(Core.ConfigFilename);
}
private void CheckUpdate_AllowChecks_CheckedChanged(object sender, EventArgs e)
{
m_Core.Config.CheckUpdate_AllowChecks = CheckUpdate_AllowChecks.Checked;
m_Core.Config.Serialize(Core.ConfigFilename);
}
private void AllowGlobalHook_CheckedChanged(object sender, EventArgs e)
{
m_Core.Config.AllowGlobalHook = AllowGlobalHook.Checked;
m_Core.Config.Serialize(Core.ConfigFilename);
if (m_Core.CaptureDialog != null)
m_Core.CaptureDialog.UpdateGlobalHook();
}
private void EventBrowser_TimeUnit_SelectionChangeCommitted(object sender, EventArgs e)
{
m_Core.Config.EventBrowser_TimeUnit = (PersistantConfig.TimeUnit)EventBrowser_TimeUnit.SelectedIndex;
m_Core.Config.Serialize(Core.ConfigFilename);
}
private void EventBrowser_HideEmpty_CheckedChanged(object sender, EventArgs e)
{
m_Core.Config.EventBrowser_HideEmpty = EventBrowser_HideEmpty.Checked;
m_Core.Config.Serialize(Core.ConfigFilename);
}
private void browseCaptureDirectory_Click(object sender, EventArgs e)
{
try
{
if (Directory.Exists(m_Core.Config.CaptureSavePath))
browserCaptureDialog.SelectedPath = m_Core.Config.CaptureSavePath;
else
browserCaptureDialog.SelectedPath = Path.GetTempPath();
}
catch (ArgumentException)
{
// invalid path or similar
}
var res = browserCaptureDialog.ShowDialog();
if (res == DialogResult.Yes || res == DialogResult.OK)
{
m_Core.Config.CaptureSavePath = browserCaptureDialog.SelectedPath;
}
}
}
}