mirror of
https://git.do.srb2.org/STJr/ZoneBuilder.git
synced 2024-11-15 00:51:39 +00:00
272 lines
9.4 KiB
C#
272 lines
9.4 KiB
C#
|
|
#region ================== Copyright (c) 2007 Pascal vd Heiden
|
|
|
|
/*
|
|
* Copyright (c) 2007 Pascal vd Heiden, www.codeimp.com
|
|
* This program is released under GNU General Public License
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
|
|
#endregion
|
|
|
|
#region ================== Namespaces
|
|
|
|
using System;
|
|
using System.Globalization;
|
|
using System.Windows.Forms;
|
|
using CodeImp.DoomBuilder.Data;
|
|
using CodeImp.DoomBuilder.GZBuilder.Data;
|
|
using CodeImp.DoomBuilder.Map;
|
|
using CodeImp.DoomBuilder.Config;
|
|
using CodeImp.DoomBuilder.Types;
|
|
using CodeImp.DoomBuilder.GZBuilder; //mxd
|
|
using System.Collections.Generic;
|
|
|
|
#endregion
|
|
|
|
namespace CodeImp.DoomBuilder.Controls
|
|
{
|
|
internal partial class ThingInfoPanel : UserControl
|
|
{
|
|
private readonly int hexenformatwidth;
|
|
private readonly int doomformatwidth;
|
|
|
|
// Constructor
|
|
public ThingInfoPanel()
|
|
{
|
|
// Initialize
|
|
InitializeComponent();
|
|
|
|
// Hide stuff when in Doom format
|
|
hexenformatwidth = infopanel.Width;
|
|
doomformatwidth = infopanel.Width - 180;
|
|
}
|
|
|
|
// This shows the info
|
|
public void ShowInfo(Thing t)
|
|
{
|
|
// Show/hide stuff depending on format
|
|
bool hasArgs = General.Map.FormatInterface.HasActionArgs;
|
|
arglbl1.Visible = hasArgs;
|
|
arglbl2.Visible = hasArgs;
|
|
arglbl3.Visible = hasArgs;
|
|
arglbl4.Visible = hasArgs;
|
|
arglbl5.Visible = hasArgs;
|
|
arg1.Visible = hasArgs;
|
|
arg2.Visible = hasArgs;
|
|
arg3.Visible = hasArgs;
|
|
arg4.Visible = hasArgs;
|
|
arg5.Visible = hasArgs;
|
|
infopanel.Width = (hasArgs ? hexenformatwidth : doomformatwidth);
|
|
|
|
//mxd
|
|
action.Visible = !General.Map.SRB2 && General.Map.FormatInterface.HasThingAction;
|
|
labelaction.Visible = !General.Map.SRB2 && General.Map.FormatInterface.HasThingAction;
|
|
fulltype.Visible = General.Map.SRB2 && !General.Map.FormatInterface.HasThingAction;
|
|
labelfulltype.Visible = General.Map.SRB2 && !General.Map.FormatInterface.HasThingAction;
|
|
|
|
// Move panel
|
|
spritepanel.Left = infopanel.Left + infopanel.Width + infopanel.Margin.Right + spritepanel.Margin.Left;
|
|
flagsPanel.Left = spritepanel.Left + spritepanel.Width + spritepanel.Margin.Right + flagsPanel.Margin.Left; //mxd
|
|
|
|
// Lookup thing info
|
|
ThingTypeInfo ti = General.Map.Data.GetThingInfo(t.SRB2Type);
|
|
|
|
// Get thing action information
|
|
LinedefActionInfo act;
|
|
if(General.Map.Config.LinedefActions.ContainsKey(t.Action)) act = General.Map.Config.LinedefActions[t.Action];
|
|
else if(t.Action == 0) act = new LinedefActionInfo(0, "None", true, false);
|
|
else act = new LinedefActionInfo(t.Action, "Unknown", false, false);
|
|
string actioninfo = act.ToString();
|
|
|
|
// Determine z info to show
|
|
t.DetermineSector();
|
|
string zinfo;
|
|
if(ti.AbsoluteZ || t.Sector == null)
|
|
{
|
|
zinfo = t.Position.z.ToString(CultureInfo.InvariantCulture) + " (abs.)"; //mxd
|
|
}
|
|
else
|
|
{
|
|
// Hangs from ceiling? (MascaraSnake: Or flipped?)
|
|
if(t.IsFlipped)
|
|
zinfo = t.Position.z + " (" + ((float)Math.Round(Sector.GetCeilingPlane(t.Sector).GetZ(t.Position) - t.Position.z - ti.Height, General.Map.FormatInterface.VertexDecimals)).ToString(CultureInfo.InvariantCulture) + ")"; //mxd
|
|
else
|
|
zinfo = t.Position.z + " (" + ((float)Math.Round(Sector.GetFloorPlane(t.Sector).GetZ(t.Position) + t.Position.z, General.Map.FormatInterface.VertexDecimals)).ToString(CultureInfo.InvariantCulture) + ")"; //mxd
|
|
}
|
|
|
|
// Thing info
|
|
infopanel.Text = " Thing " + t.Index + " ";
|
|
type.Text = t.SRB2Type + " - " + ti.Title;
|
|
if(ti.IsObsolete) type.Text += " - OBSOLETE"; //mxd
|
|
action.Text = actioninfo;
|
|
|
|
classname.Visible = labelclass.Visible = !General.Map.SRB2;
|
|
parameter.Enabled = labelparameter.Enabled = General.Map.SRB2;
|
|
parameter.Visible = labelparameter.Visible = General.Map.SRB2;
|
|
parameter.Text = t.Parameter.ToString(CultureInfo.InvariantCulture);
|
|
|
|
bool displayclassname = !General.Map.SRB2 && !string.IsNullOrEmpty(ti.ClassName) && !ti.ClassName.StartsWith("$"); //mxd
|
|
labelclass.Enabled = classname.Enabled = displayclassname; //mxd
|
|
classname.Text = (displayclassname ? ti.ClassName : "--"); //mxd
|
|
|
|
fulltype.Text = t.FullType.ToString(CultureInfo.InvariantCulture);
|
|
position.Text = t.Position.x.ToString(CultureInfo.InvariantCulture) + ", " + t.Position.y.ToString(CultureInfo.InvariantCulture) + ", " + zinfo;
|
|
|
|
tag.Text = t.Tag + (General.Map.Options.TagLabels.ContainsKey(t.Tag) ? " - " + General.Map.Options.TagLabels[t.Tag] : string.Empty);
|
|
tag.Enabled = tag.Visible = labeltag.Enabled = labeltag.Visible = !General.Map.SRB2;
|
|
|
|
if (General.Map.SRB2)
|
|
{
|
|
labelangle.Text = ((ti == null) ? "Angle" : ti.AngleText) + ":";
|
|
labelparameter.Text = ((ti == null) ? "Parameter" : ti.ParameterText) + ":";
|
|
var g = CreateGraphics();
|
|
int offset = Math.Max(40, (int)g.MeasureString(labelangle.Text, labelangle.Font).Width);
|
|
labelangle.Location = new System.Drawing.Point(205 - offset, 79);
|
|
labelangle.Size = new System.Drawing.Size(offset, 13);
|
|
offset = 2 + (int)g.MeasureString(labelparameter.Text, labelparameter.Font).Width;
|
|
labelparameter.Location = new System.Drawing.Point(Math.Max(60 - offset, 0), 34);
|
|
labelparameter.Size = new System.Drawing.Size(offset, 34);
|
|
}
|
|
|
|
angle.Text = t.AngleDoom + "\u00B0";
|
|
anglecontrol.Angle = t.AngleDoom;
|
|
anglecontrol.Left = angle.Right + 1;
|
|
|
|
// Sprite
|
|
if(ti.Sprite.ToLowerInvariant().StartsWith(DataManager.INTERNAL_PREFIX) && (ti.Sprite.Length > DataManager.INTERNAL_PREFIX.Length))
|
|
{
|
|
spritename.Text = "";
|
|
spritetex.Image = General.Map.Data.GetSpriteImage(ti.Sprite).GetBitmap();
|
|
}
|
|
else if((ti.Sprite.Length <= 8) && (ti.Sprite.Length > 0))
|
|
{
|
|
spritename.Text = ti.Sprite;
|
|
spritetex.Image = General.Map.Data.GetSpriteImage(ti.Sprite).GetPreview();
|
|
}
|
|
else
|
|
{
|
|
spritename.Text = "";
|
|
spritetex.Image = null;
|
|
}
|
|
|
|
// Arguments
|
|
ArgumentInfo[] arginfo = ((t.Action == 0 && ti.Args[0] != null) ? ti.Args : act.Args); //mxd
|
|
|
|
//mxd. ACS script argument names
|
|
bool isacsscript = (Array.IndexOf(GZGeneral.ACS_SPECIALS, t.Action) != -1);
|
|
bool isnamedacsscript = (isacsscript && General.Map.UDMF && t.Fields.ContainsKey("arg0str"));
|
|
string scriptname = (isnamedacsscript ? t.Fields.GetValue("arg0str", string.Empty) : string.Empty);
|
|
ScriptItem scriptitem = null;
|
|
|
|
// Named script?
|
|
if(isnamedacsscript && General.Map.NamedScripts.ContainsKey(scriptname.ToLowerInvariant()))
|
|
{
|
|
scriptitem = General.Map.NamedScripts[scriptname.ToLowerInvariant()];
|
|
}
|
|
// Script number?
|
|
else if(isacsscript && General.Map.NumberedScripts.ContainsKey(t.Args[0]))
|
|
{
|
|
scriptitem = General.Map.NumberedScripts[t.Args[0]];
|
|
scriptname = (scriptitem.HasCustomName ? scriptitem.Name : scriptitem.Index.ToString());
|
|
}
|
|
|
|
// Apply script args?
|
|
Label[] arglabels = new[] { arglbl1, arglbl2, arglbl3, arglbl4, arglbl5 };
|
|
Label[] args = new[] { arg1, arg2, arg3, arg4, arg5 };
|
|
|
|
if(scriptitem != null)
|
|
{
|
|
string[] argnames = scriptitem.GetArgumentsDescriptions(t.Action);
|
|
for(int i = 0; i < argnames.Length; i++)
|
|
{
|
|
if(!string.IsNullOrEmpty(argnames[i]))
|
|
{
|
|
arglabels[i].Text = argnames[i] + ":";
|
|
arglabels[i].Enabled = true;
|
|
args[i].Enabled = true;
|
|
}
|
|
else
|
|
{
|
|
arglabels[i].Text = arginfo[i].Title + ":";
|
|
arglabels[i].Enabled = arginfo[i].Used;
|
|
args[i].Enabled = arginfo[i].Used;
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
for(int i = 0; i < arginfo.Length; i++)
|
|
{
|
|
arglabels[i].Text = arginfo[i].Title + ":";
|
|
arglabels[i].Enabled = arginfo[i].Used;
|
|
args[i].Enabled = arginfo[i].Used;
|
|
}
|
|
}
|
|
|
|
//mxd. Set argument value and label
|
|
if(!string.IsNullOrEmpty(scriptname)) arg1.Text = scriptname;
|
|
else SetArgumentText(arginfo[0], arg1, t.Args[0]);
|
|
SetArgumentText(arginfo[1], arg2, t.Args[1]);
|
|
SetArgumentText(arginfo[2], arg3, t.Args[2]);
|
|
SetArgumentText(arginfo[3], arg4, t.Args[3]);
|
|
SetArgumentText(arginfo[4], arg5, t.Args[4]);
|
|
|
|
//mxd. Flags
|
|
flags.Items.Clear();
|
|
IDictionary<string, string> flagList = (ti == null || ti.Flags.Count == 0) ? General.Map.Config.ThingFlags : ti.Flags;
|
|
foreach (KeyValuePair<string, string> group in flagList)
|
|
{
|
|
if(t.Flags.ContainsKey(group.Key) && t.Flags[group.Key])
|
|
flags.Items.Add(new ListViewItem(group.Value) { Checked = true });
|
|
}
|
|
|
|
// Display flags value
|
|
if (General.Map.SRB2)
|
|
{
|
|
flagsvaluelabel.Text = (ti == null) ? "Flags value:" : ti.FlagsValueText + ":";
|
|
flagsvaluelabel.BringToFront();
|
|
flagsvalue.Text = t.GetFlagsValue().ToString();
|
|
flagsvalue.BringToFront();
|
|
flagsvalue.Enabled = flagsvaluelabel.Enabled = !(flagsvaluelabel.Text == "Flags value:");
|
|
}
|
|
|
|
//mxd. Flags panel visibility and size
|
|
if (flags.Items.Count > 0)
|
|
{
|
|
flags.Width = flags.GetItemRect(0).Width * (int)Math.Ceiling(flags.Items.Count / 4.0f);
|
|
flagsPanel.Width = flags.Width + flags.Left * 2;
|
|
}
|
|
|
|
// Show the whole thing
|
|
this.Show();
|
|
this.Update();
|
|
}
|
|
|
|
//mxd
|
|
private static void SetArgumentText(ArgumentInfo info, Label label, int value)
|
|
{
|
|
TypeHandler th = General.Types.GetArgumentHandler(info);
|
|
th.SetValue(value);
|
|
label.Text = th.GetStringValue();
|
|
}
|
|
|
|
// When visible changed
|
|
protected override void OnVisibleChanged(EventArgs e)
|
|
{
|
|
// Hiding panels
|
|
if(!this.Visible)
|
|
{
|
|
spritetex.Image = null;
|
|
}
|
|
|
|
// Call base
|
|
base.OnVisibleChanged(e);
|
|
}
|
|
}
|
|
}
|