mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
25b3bf2287
Removed, Texture Browser: removed "Show image sizes" checkbox. "Show texture and flat sizes in browsers" preferences setting is now used instead. Fixed, Things mode: event line between pre-last and the last PatrolPoint was not drawn. Fixed, Things mode: highlight range for sizeless things (things with "fixedsize" game configuration property) was calculated incorrectly. Fixed: fixed a crash when opening Script Editor after using "Open map in current wad" command to switch to UDMF map with SCRIPTS lump when current script configuration was not saved in the wad's .dbs file. Fixed: map closing events were not triggered when using "Open map in current wad" command, which could potentially result in plugin crashes/incorrect behavior. Fixed: Sector Drawing overrides panel could trigger an exception when closing the map during resource loading. Internal: added "Debug + Profiler" solution configuration, added 2 profiling methods to DebugConsole. Internal: rewrote MainForm.DisplayStatus() / StatusInfo to handle selection info in a more structured way. Fixed, internal: some destructors could potentially be executed more than once potentially leading to exceptions. Other destructors were not called at all. Updated ZDoom_DECORATE.cfg.
284 lines
6.9 KiB
C#
284 lines
6.9 KiB
C#
#region ================== Namespaces
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Globalization;
|
|
using System.Windows.Forms;
|
|
|
|
#if PROFILE
|
|
using JetBrains.Profiler.Core.Api;
|
|
#endif
|
|
|
|
#endregion
|
|
|
|
namespace CodeImp.DoomBuilder
|
|
{
|
|
#region ================== Enums
|
|
|
|
[Flags]
|
|
public enum DebugMessageType
|
|
{
|
|
LOG = 1,
|
|
INFO = 2,
|
|
WARNING = 4,
|
|
ERROR = 8,
|
|
SPECIAL = 16,
|
|
}
|
|
|
|
#endregion
|
|
|
|
public partial class DebugConsole : UserControl
|
|
{
|
|
#region ================== Variables
|
|
|
|
private const int MAX_MESSAGES = 1024;
|
|
private static readonly List<KeyValuePair<DebugMessageType, string>> messages = new List<KeyValuePair<DebugMessageType, string>>(MAX_MESSAGES);
|
|
|
|
//Colors
|
|
private readonly Dictionary<DebugMessageType, Color> textcolors;
|
|
private readonly Dictionary<DebugMessageType, string> textheaders;
|
|
|
|
private DebugMessageType filters;
|
|
private static long starttime = -1;
|
|
private static DebugConsole me;
|
|
|
|
#endregion
|
|
|
|
#region ================== Properties
|
|
|
|
public bool AlwaysOnTop { get { return alwaysontop.Checked; } }
|
|
|
|
#endregion
|
|
|
|
#region ================== Constructor
|
|
|
|
public DebugConsole()
|
|
{
|
|
InitializeComponent();
|
|
me = this;
|
|
|
|
// Setup filters
|
|
foreach (ToolStripMenuItem item in filterselector.DropDownItems)
|
|
{
|
|
UpdateFilters(item);
|
|
}
|
|
|
|
// Setup colors
|
|
textcolors = new Dictionary<DebugMessageType, Color> {
|
|
{ DebugMessageType.LOG, SystemColors.WindowText },
|
|
{ DebugMessageType.INFO, Color.DarkGreen },
|
|
{ DebugMessageType.WARNING, Color.DarkOrange },
|
|
{ DebugMessageType.ERROR, Color.DarkRed },
|
|
{ DebugMessageType.SPECIAL, Color.DarkMagenta }
|
|
};
|
|
|
|
// Setup headers
|
|
textheaders = new Dictionary<DebugMessageType, string> {
|
|
{ DebugMessageType.LOG, string.Empty},
|
|
{ DebugMessageType.INFO, string.Empty},
|
|
{ DebugMessageType.WARNING, "Warning: "},
|
|
{ DebugMessageType.ERROR, "ERROR: "},
|
|
{ DebugMessageType.SPECIAL, string.Empty}
|
|
};
|
|
|
|
// Word wrap?
|
|
wordwrap.Checked = console.WordWrap;
|
|
|
|
// Pending messages?
|
|
if (messages.Count > 0) UpdateMessages();
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region ================== Methods
|
|
|
|
public static void Write(string text)
|
|
{
|
|
Write(DebugMessageType.INFO, text);
|
|
}
|
|
|
|
public static void WriteLine(string text)
|
|
{
|
|
Write(DebugMessageType.INFO, text + Environment.NewLine);
|
|
}
|
|
|
|
public static void Write(DebugMessageType type, string text)
|
|
{
|
|
if(me != null && me.InvokeRequired)
|
|
{
|
|
me.Invoke(new Action<DebugMessageType, string>(Write), new object[] { type, text });
|
|
}
|
|
else
|
|
{
|
|
if (messages.Count + 1 > MAX_MESSAGES) lock (messages) { messages.RemoveAt(0); }
|
|
messages.Add(new KeyValuePair<DebugMessageType, string>(type, text));
|
|
if(me != null && (me.filters & type) == type)
|
|
{
|
|
me.AddMessage(type, text, true);
|
|
}
|
|
}
|
|
}
|
|
|
|
public static void WriteLine(DebugMessageType type, string text)
|
|
{
|
|
Write(type, text + Environment.NewLine);
|
|
}
|
|
|
|
public static void Clear()
|
|
{
|
|
if (me != null && me.InvokeRequired)
|
|
{
|
|
me.Invoke(new Action(Clear));
|
|
}
|
|
else
|
|
{
|
|
if (me != null) me.console.Clear();
|
|
messages.Clear();
|
|
}
|
|
}
|
|
|
|
public static void StartTimer()
|
|
{
|
|
starttime = SlimDX.Configuration.Timer.ElapsedMilliseconds;
|
|
}
|
|
|
|
public static void StopTimer(string message)
|
|
{
|
|
if(starttime == -1) throw new InvalidOperationException("DebugConsole.StartTimer() must be called before DebugConsole.StopTimer()!");
|
|
|
|
long duration = SlimDX.Configuration.Timer.ElapsedMilliseconds - starttime;
|
|
|
|
if (message.Contains("%"))
|
|
message = message.Replace("%", duration.ToString(CultureInfo.InvariantCulture));
|
|
else
|
|
message = message.TrimEnd() + " " + duration + " ms.";
|
|
|
|
WriteLine(DebugMessageType.SPECIAL, message);
|
|
|
|
starttime = -1;
|
|
}
|
|
|
|
public static void StartProfiler()
|
|
{
|
|
#if PROFILE
|
|
if(PerformanceProfiler.IsActive)
|
|
{
|
|
WriteLine(DebugMessageType.SPECIAL, "Starting the Profiler...");
|
|
PerformanceProfiler.Begin();
|
|
PerformanceProfiler.Start();
|
|
}
|
|
else
|
|
{
|
|
WriteLine(DebugMessageType.SPECIAL, "Unable to start the Profiler...");
|
|
}
|
|
#else
|
|
WriteLine(DebugMessageType.SPECIAL, "Unable to start the Profiler: incorrect build configuration selected!");
|
|
#endif
|
|
}
|
|
|
|
public static void StopProfiler() { StopProfiler(true); }
|
|
public static void StopProfiler(bool savesnapshot)
|
|
{
|
|
#if PROFILE
|
|
if(PerformanceProfiler.IsActive)
|
|
{
|
|
PerformanceProfiler.Stop();
|
|
if(savesnapshot) PerformanceProfiler.EndSave();
|
|
else PerformanceProfiler.EndDrop();
|
|
|
|
WriteLine(DebugMessageType.SPECIAL, "Profiler Stopped...");
|
|
}
|
|
else
|
|
{
|
|
WriteLine(DebugMessageType.SPECIAL, "Unable to stop the Profiler...");
|
|
}
|
|
#else
|
|
WriteLine(DebugMessageType.SPECIAL, "Unable to stop the Profiler: incorrect build configuration selected!");
|
|
#endif
|
|
}
|
|
|
|
private void AddMessage(DebugMessageType type, string text, bool scroll)
|
|
{
|
|
text = textheaders[type] + text;
|
|
console.SelectionStart = console.TextLength;
|
|
console.SelectionColor = textcolors[type];
|
|
console.AppendText(text);
|
|
if(scroll && autoscroll.Checked) console.ScrollToCaret();
|
|
}
|
|
|
|
private void UpdateFilters(ToolStripMenuItem item)
|
|
{
|
|
DebugMessageType flag = (DebugMessageType)(int)item.Tag;
|
|
if(item.Checked)
|
|
{
|
|
filters |= flag;
|
|
}
|
|
else
|
|
{
|
|
filters &= ~flag;
|
|
}
|
|
}
|
|
|
|
private void UpdateMessages()
|
|
{
|
|
console.Clear();
|
|
|
|
console.SuspendLayout();
|
|
foreach (KeyValuePair<DebugMessageType, string> pair in messages)
|
|
{
|
|
if((filters & pair.Key) == pair.Key && CheckTextFilter(pair.Value, searchbox.Text))
|
|
{
|
|
AddMessage(pair.Key, pair.Value, false);
|
|
}
|
|
}
|
|
|
|
console.ResumeLayout();
|
|
console.ScrollToCaret();
|
|
}
|
|
|
|
// Should we display this message?
|
|
private static bool CheckTextFilter(string text, string filter)
|
|
{
|
|
if (string.IsNullOrEmpty(filter) || filter.Length < 3) return true;
|
|
return text.ToUpperInvariant().Contains(filter.ToUpperInvariant());
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region ================== Events
|
|
|
|
private void clearall_Click(object sender, EventArgs e)
|
|
{
|
|
Clear();
|
|
}
|
|
|
|
private void filters_Click(object sender, EventArgs e)
|
|
{
|
|
UpdateFilters(sender as ToolStripMenuItem);
|
|
UpdateMessages();
|
|
}
|
|
|
|
private void wordwrap_Click(object sender, EventArgs e)
|
|
{
|
|
console.WordWrap = wordwrap.Checked;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region ================== Search events
|
|
|
|
private void searchclear_Click(object sender, EventArgs e)
|
|
{
|
|
searchbox.Clear();
|
|
}
|
|
|
|
private void searchbox_TextChanged(object sender, EventArgs e)
|
|
{
|
|
if(string.IsNullOrEmpty(searchbox.Text) || searchbox.Text.Length > 2) UpdateMessages();
|
|
}
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|