mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-24 04:41:10 +00:00
16b97e1c83
Dynamic lights defined in GLDEFS are now rendered in Visual modes (currently only one light per Thing is supported). Several values from (Z)MAPINFO are now used in Visual modes. Added "Reload GLDEFS", "Reload (Z)MAPINFO" and "Reload MODELDEF" menu options (in "Tools" section). MODELDEF parser now checks which model(s) is/are used in first frame. Dynamic lights are now created with more meaningful default parameters. Added errors and warnings indicator to main window.
150 lines
No EOL
3.7 KiB
C#
150 lines
No EOL
3.7 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.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using Microsoft.Win32;
|
|
using System.Diagnostics;
|
|
using CodeImp.DoomBuilder.Actions;
|
|
using CodeImp.DoomBuilder.Data;
|
|
using CodeImp.DoomBuilder.Config;
|
|
using CodeImp.DoomBuilder.Map;
|
|
using CodeImp.DoomBuilder.Controls;
|
|
|
|
#endregion
|
|
|
|
namespace CodeImp.DoomBuilder.Windows
|
|
{
|
|
public partial class ErrorsForm : Form
|
|
{
|
|
#region ================== Variables
|
|
|
|
#endregion
|
|
|
|
#region ================== Constructor / Disposer
|
|
|
|
// Constructor
|
|
public ErrorsForm()
|
|
{
|
|
InitializeComponent();
|
|
FillList();
|
|
checkerrors.Start();
|
|
checkshow.Checked = General.Settings.ShowErrorsWindow;
|
|
//mxd
|
|
grid.Focus();
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region ================== Methods
|
|
|
|
// This sets up the list
|
|
private void FillList()
|
|
{
|
|
// Fill the list with the items we don't have yet
|
|
General.ErrorLogger.HasChanged = false;
|
|
List<ErrorItem> errors = General.ErrorLogger.GetErrors();
|
|
int startindex = grid.Rows.Count;
|
|
for(int i = startindex; i < errors.Count; i++)
|
|
{
|
|
ErrorItem e = errors[i];
|
|
Image icon = (e.type == ErrorType.Error) ? Properties.Resources.ErrorLarge : Properties.Resources.WarningLarge;
|
|
int index = grid.Rows.Add();
|
|
DataGridViewRow row = grid.Rows[index];
|
|
row.Cells[0].Value = icon;
|
|
row.Cells[0].Style.Alignment = DataGridViewContentAlignment.TopCenter;
|
|
row.Cells[0].Style.Padding = new Padding(0, 5, 0, 0);
|
|
row.Cells[1].Value = e.message;
|
|
row.Cells[1].Style.WrapMode = DataGridViewTriState.True;
|
|
}
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region ================== Events
|
|
|
|
// Close clicked
|
|
private void close_Click(object sender, EventArgs e)
|
|
{
|
|
this.Close();
|
|
}
|
|
|
|
// Closing
|
|
private void ErrorsForm_FormClosing(object sender, FormClosingEventArgs e)
|
|
{
|
|
checkerrors.Stop();
|
|
General.Settings.ShowErrorsWindow = checkshow.Checked;
|
|
}
|
|
|
|
// Checking for more errors
|
|
private void checkerrors_Tick(object sender, EventArgs e)
|
|
{
|
|
// If errors have been added, update the list
|
|
if(General.ErrorLogger.HasChanged)
|
|
{
|
|
FillList();
|
|
}
|
|
}
|
|
|
|
// This clears all errors
|
|
private void clearlist_Click(object sender, EventArgs e)
|
|
{
|
|
General.ErrorLogger.Clear();
|
|
grid.Rows.Clear();
|
|
}
|
|
|
|
// Copy selection
|
|
private void copyselected_Click(object sender, EventArgs e)
|
|
{
|
|
StringBuilder str = new StringBuilder("");
|
|
if(grid.SelectedCells.Count > 0)
|
|
{
|
|
Clipboard.Clear();
|
|
foreach(DataGridViewCell c in grid.SelectedCells)
|
|
{
|
|
if(c.ValueType != typeof(Image))
|
|
{
|
|
if(str.Length > 0) str.Append("\r\n");
|
|
str.Append(c.Value.ToString());
|
|
}
|
|
}
|
|
Clipboard.SetText(str.ToString());
|
|
}
|
|
}
|
|
|
|
// Help requested
|
|
private void ErrorsForm_HelpRequested(object sender, HelpEventArgs hlpevent)
|
|
{
|
|
General.ShowHelp("w_errorsandwarnings.html");
|
|
hlpevent.Handled = true;
|
|
}
|
|
|
|
#endregion
|
|
|
|
private void ErrorsForm_Shown(object sender, EventArgs e)
|
|
{
|
|
if(grid.Rows.Count > 0)
|
|
grid.Rows[0].Selected = false;
|
|
|
|
}
|
|
}
|
|
} |