2009-04-19 18:07:22 +00:00
#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.Drawing ;
using System.Windows.Forms ;
2013-08-13 09:49:29 +00:00
using CodeImp.DoomBuilder.Geometry ;
2009-04-19 18:07:22 +00:00
using CodeImp.DoomBuilder.Map ;
using CodeImp.DoomBuilder.Config ;
2013-04-11 11:04:16 +00:00
using CodeImp.DoomBuilder.GZBuilder.Data ; //mxd
2013-06-10 14:04:23 +00:00
using CodeImp.DoomBuilder.Types ;
2009-04-19 18:07:22 +00:00
#endregion
namespace CodeImp.DoomBuilder.Windows
{
internal partial class LinedefEditForm : DelayedForm
{
2013-07-19 15:30:58 +00:00
#region = = = = = = = = = = = = = = = = = = Events
public event EventHandler OnValuesChanged ; //mxd
#endregion
#region = = = = = = = = = = = = = = = = = = Constants
#endregion
#region = = = = = = = = = = = = = = = = = = Variables
2009-04-19 18:07:22 +00:00
private ICollection < Linedef > lines ;
2013-07-19 15:30:58 +00:00
private List < LinedefProperties > linedefProps ; //mxd
2013-12-20 13:41:57 +00:00
private bool preventchanges ;
2013-07-19 15:30:58 +00:00
2013-11-21 10:53:11 +00:00
//mxd. Window setup stuff
private static Point location = Point . Empty ;
2013-07-19 15:30:58 +00:00
private struct LinedefProperties //mxd
{
2014-05-05 14:24:57 +00:00
public readonly Dictionary < string , bool > Flags ;
public readonly SidedefProperties Front ;
public readonly SidedefProperties Back ;
2013-07-19 15:30:58 +00:00
2014-09-15 14:12:31 +00:00
public LinedefProperties ( Linedef line )
{
2013-07-19 15:30:58 +00:00
Front = ( line . Front ! = null ? new SidedefProperties ( line . Front ) : null ) ;
Back = ( line . Back ! = null ? new SidedefProperties ( line . Back ) : null ) ;
Flags = line . GetFlags ( ) ;
}
}
private class SidedefProperties //mxd
{
2014-05-05 14:24:57 +00:00
public readonly int OffsetX ;
public readonly int OffsetY ;
2013-07-19 15:30:58 +00:00
2014-05-05 14:24:57 +00:00
public readonly string TextureTop ;
public readonly string TextureMid ;
public readonly string TextureLow ;
2013-07-19 15:30:58 +00:00
2014-09-15 14:12:31 +00:00
public SidedefProperties ( Sidedef side )
{
2013-07-19 15:30:58 +00:00
//offset
OffsetX = side . OffsetX ;
OffsetY = side . OffsetY ;
//textures
TextureTop = side . HighTexture ;
TextureMid = side . MiddleTexture ;
TextureLow = side . LowTexture ;
}
}
#endregion
#region = = = = = = = = = = = = = = = = = = Constructor
2009-04-19 18:07:22 +00:00
public LinedefEditForm ( )
{
// Initialize
InitializeComponent ( ) ;
2013-11-21 10:53:11 +00:00
//mxd. Widow setup
2014-09-15 14:12:31 +00:00
if ( location ! = Point . Empty )
{
2013-11-21 10:53:11 +00:00
this . StartPosition = FormStartPosition . Manual ;
this . Location = location ;
}
2009-04-19 18:07:22 +00:00
2013-07-19 15:30:58 +00:00
// Fill flags lists
2009-04-19 18:07:22 +00:00
foreach ( KeyValuePair < string , string > lf in General . Map . Config . LinedefFlags )
flags . Add ( lf . Value , lf . Key ) ;
// Fill actions list
action . GeneralizedCategories = General . Map . Config . GenActionCategories ;
action . AddInfo ( General . Map . Config . SortedLinedefActions . ToArray ( ) ) ;
// Fill activations list
activation . Items . AddRange ( General . Map . Config . LinedefActivates . ToArray ( ) ) ;
// Initialize image selectors
fronthigh . Initialize ( ) ;
frontmid . Initialize ( ) ;
frontlow . Initialize ( ) ;
backhigh . Initialize ( ) ;
backmid . Initialize ( ) ;
backlow . Initialize ( ) ;
2013-08-08 11:04:13 +00:00
//mxd. Setup script numbers
scriptNumbers . Location = arg0 . Location ;
foreach ( ScriptItem si in General . Map . NumberedScripts )
scriptNumbers . Items . Add ( si ) ;
2013-08-13 09:49:29 +00:00
scriptNumbers . DropDownWidth = Tools . GetDropDownWidth ( scriptNumbers ) ;
2009-04-19 18:07:22 +00:00
2014-09-15 14:12:31 +00:00
// Mixed activations?
if ( General . Map . FormatInterface . HasPresetActivations )
2009-04-19 18:07:22 +00:00
hexenpanel . Visible = true ;
// Action arguments?
if ( General . Map . FormatInterface . HasActionArgs )
argspanel . Visible = true ;
// Arrange panels
2014-09-15 14:12:31 +00:00
if ( ! General . Map . FormatInterface . HasMixedActivations & &
2013-09-11 09:47:53 +00:00
! General . Map . FormatInterface . HasActionArgs & &
! General . Map . FormatInterface . HasPresetActivations )
2009-04-19 18:07:22 +00:00
{
2014-09-15 14:12:31 +00:00
actiongroup . Height = argspanel . Top + argspanel . Margin . Top ; //mxd
2009-04-19 18:07:22 +00:00
}
2015-01-05 10:30:32 +00:00
// Arrange or hide Identification panel
2009-04-19 18:07:22 +00:00
if ( General . Map . FormatInterface . HasLinedefTag )
{
// Match position after the action group
idgroup . Top = actiongroup . Bottom + actiongroup . Margin . Bottom + idgroup . Margin . Top ;
2015-01-05 10:30:32 +00:00
panel . Height = idgroup . Bottom + idgroup . Margin . Bottom * 2 ;
2009-04-19 18:07:22 +00:00
}
else
{
idgroup . Visible = false ;
2015-01-05 10:30:32 +00:00
panel . Height = actiongroup . Bottom + actiongroup . Margin . Bottom * 2 ;
2009-04-19 18:07:22 +00:00
}
2015-01-05 10:30:32 +00:00
// Arrange Apply/Cancel buttons
apply . Top = panel . Bottom + panel . Margin . Bottom + apply . Margin . Top ;
cancel . Top = apply . Top ;
// Update window height
this . Height = apply . Bottom + apply . Margin . Bottom * 2 + ( this . Height - this . ClientRectangle . Height ) + 1 ;
2009-04-19 18:07:22 +00:00
}
2013-07-19 15:30:58 +00:00
#endregion
#region = = = = = = = = = = = = = = = = = = Methods
2009-04-19 18:07:22 +00:00
// This sets up the form to edit the given lines
public void Setup ( ICollection < Linedef > lines )
{
2010-10-03 13:31:29 +00:00
preventchanges = true ;
2009-04-19 18:07:22 +00:00
// Keep this list
this . lines = lines ;
if ( lines . Count > 1 ) this . Text = "Edit Linedefs (" + lines . Count + ")" ;
2013-07-19 15:30:58 +00:00
linedefProps = new List < LinedefProperties > ( ) ;
//mxd. Make undo
string undodesc = "linedef" ;
if ( lines . Count > 1 ) undodesc = lines . Count + " linedefs" ;
General . Map . UndoRedo . CreateUndo ( "Edit " + undodesc ) ;
2009-04-19 18:07:22 +00:00
////////////////////////////////////////////////////////////////////////
// Set all options to the first linedef properties
////////////////////////////////////////////////////////////////////////
// Get first line
2014-09-15 14:12:31 +00:00
Linedef fl = General . GetByIndex ( lines , 0 ) ;
2009-04-19 18:07:22 +00:00
// Flags
foreach ( CheckBox c in flags . Checkboxes )
if ( fl . Flags . ContainsKey ( c . Tag . ToString ( ) ) ) c . Checked = fl . Flags [ c . Tag . ToString ( ) ] ;
// Activations
foreach ( LinedefActivateInfo ai in activation . Items )
if ( ( fl . Activate & ai . Index ) = = ai . Index ) activation . SelectedItem = ai ;
// Action/tags
action . Value = fl . Action ;
2013-06-10 14:04:23 +00:00
2014-09-15 14:12:31 +00:00
if ( General . Map . FormatInterface . HasLinedefTag ) //mxd
{
2013-08-28 08:29:06 +00:00
tagSelector . Setup ( UniversalType . LinedefTag ) ;
2013-03-18 13:52:27 +00:00
tagSelector . SetTag ( fl . Tag ) ;
}
2013-06-10 14:04:23 +00:00
2009-04-19 18:07:22 +00:00
arg0 . SetValue ( fl . Args [ 0 ] ) ;
arg1 . SetValue ( fl . Args [ 1 ] ) ;
arg2 . SetValue ( fl . Args [ 2 ] ) ;
arg3 . SetValue ( fl . Args [ 3 ] ) ;
arg4 . SetValue ( fl . Args [ 4 ] ) ;
// Front side and back side checkboxes
frontside . Checked = ( fl . Front ! = null ) ;
backside . Checked = ( fl . Back ! = null ) ;
// Front settings
if ( fl . Front ! = null )
{
fronthigh . TextureName = fl . Front . HighTexture ;
frontmid . TextureName = fl . Front . MiddleTexture ;
frontlow . TextureName = fl . Front . LowTexture ;
fronthigh . Required = fl . Front . HighRequired ( ) ;
frontmid . Required = fl . Front . MiddleRequired ( ) ;
frontlow . Required = fl . Front . LowRequired ( ) ;
2009-06-05 19:03:56 +00:00
frontsector . Text = fl . Front . Sector . Index . ToString ( ) ;
2014-01-20 08:47:49 +00:00
frontTextureOffset . SetValues ( fl . Front . OffsetX , fl . Front . OffsetY , true ) ; //mxd
2009-04-19 18:07:22 +00:00
}
// Back settings
if ( fl . Back ! = null )
{
backhigh . TextureName = fl . Back . HighTexture ;
backmid . TextureName = fl . Back . MiddleTexture ;
backlow . TextureName = fl . Back . LowTexture ;
backhigh . Required = fl . Back . HighRequired ( ) ;
backmid . Required = fl . Back . MiddleRequired ( ) ;
backlow . Required = fl . Back . LowRequired ( ) ;
2009-06-05 19:03:56 +00:00
backsector . Text = fl . Back . Sector . Index . ToString ( ) ;
2014-01-20 08:47:49 +00:00
backTextureOffset . SetValues ( fl . Back . OffsetX , fl . Back . OffsetY , true ) ; //mxd
2009-04-19 18:07:22 +00:00
}
////////////////////////////////////////////////////////////////////////
// Now go for all lines and change the options when a setting is different
////////////////////////////////////////////////////////////////////////
// Go for all lines
foreach ( Linedef l in lines )
{
// Flags
foreach ( CheckBox c in flags . Checkboxes )
{
2014-08-05 08:22:49 +00:00
if ( c . CheckState = = CheckState . Indeterminate ) continue ; //mxd
if ( l . IsFlagSet ( c . Tag . ToString ( ) ) ! = c . Checked )
2009-04-19 18:07:22 +00:00
{
2014-08-05 08:22:49 +00:00
c . ThreeState = true ;
c . CheckState = CheckState . Indeterminate ;
2009-04-19 18:07:22 +00:00
}
}
// Activations
if ( activation . Items . Count > 0 )
{
2014-09-15 14:12:31 +00:00
LinedefActivateInfo sai = ( activation . Items [ 0 ] as LinedefActivateInfo ) ;
2009-04-19 18:07:22 +00:00
foreach ( LinedefActivateInfo ai in activation . Items )
if ( ( l . Activate & ai . Index ) = = ai . Index ) sai = ai ;
if ( sai ! = activation . SelectedItem ) activation . SelectedIndex = - 1 ;
}
// Action/tags
if ( l . Action ! = action . Value ) action . Empty = true ;
2013-03-18 13:52:27 +00:00
if ( General . Map . FormatInterface . HasLinedefTag & & l . Tag ! = fl . Tag ) tagSelector . ClearTag ( ) ; //mxd
2009-04-19 18:07:22 +00:00
if ( l . Args [ 0 ] ! = arg0 . GetResult ( - 1 ) ) arg0 . ClearValue ( ) ;
if ( l . Args [ 1 ] ! = arg1 . GetResult ( - 1 ) ) arg1 . ClearValue ( ) ;
if ( l . Args [ 2 ] ! = arg2 . GetResult ( - 1 ) ) arg2 . ClearValue ( ) ;
if ( l . Args [ 3 ] ! = arg3 . GetResult ( - 1 ) ) arg3 . ClearValue ( ) ;
if ( l . Args [ 4 ] ! = arg4 . GetResult ( - 1 ) ) arg4 . ClearValue ( ) ;
// Front side checkbox
if ( ( l . Front ! = null ) ! = frontside . Checked )
{
frontside . ThreeState = true ;
frontside . CheckState = CheckState . Indeterminate ;
frontside . AutoCheck = false ;
}
// Back side checkbox
if ( ( l . Back ! = null ) ! = backside . Checked )
{
backside . ThreeState = true ;
backside . CheckState = CheckState . Indeterminate ;
backside . AutoCheck = false ;
}
// Front settings
if ( l . Front ! = null )
{
2014-03-05 09:21:28 +00:00
//mxd
2014-09-15 14:12:31 +00:00
if ( fronthigh . TextureName ! = l . Front . HighTexture )
{
2014-03-05 09:21:28 +00:00
if ( ! fronthigh . Required & & l . Front . HighRequired ( ) ) fronthigh . Required = true ;
fronthigh . MultipleTextures = true ; //mxd
fronthigh . TextureName = string . Empty ;
}
2014-09-15 14:12:31 +00:00
if ( frontmid . TextureName ! = l . Front . MiddleTexture )
{
2014-03-05 09:21:28 +00:00
if ( ! frontmid . Required & & l . Front . MiddleRequired ( ) ) frontmid . Required = true ;
frontmid . MultipleTextures = true ; //mxd
frontmid . TextureName = string . Empty ;
}
2014-09-15 14:12:31 +00:00
if ( frontlow . TextureName ! = l . Front . LowTexture )
{
2014-03-05 09:21:28 +00:00
if ( ! frontlow . Required & & l . Front . LowRequired ( ) ) frontlow . Required = true ;
frontlow . MultipleTextures = true ; //mxd
frontlow . TextureName = string . Empty ;
}
2014-01-20 08:47:49 +00:00
if ( frontsector . Text ! = l . Front . Sector . Index . ToString ( ) ) frontsector . Text = string . Empty ;
2012-11-05 12:31:24 +00:00
2014-01-20 08:47:49 +00:00
frontTextureOffset . SetValues ( l . Front . OffsetX , l . Front . OffsetY , false ) ; //mxd
2009-04-19 18:07:22 +00:00
}
// Back settings
if ( l . Back ! = null )
{
2014-03-05 09:21:28 +00:00
//mxd
2014-09-15 14:12:31 +00:00
if ( backhigh . TextureName ! = l . Back . HighTexture )
{
2014-03-05 09:21:28 +00:00
if ( ! backhigh . Required & & l . Back . HighRequired ( ) ) backhigh . Required = true ;
backhigh . MultipleTextures = true ; //mxd
backhigh . TextureName = string . Empty ;
}
2014-09-15 14:12:31 +00:00
if ( backmid . TextureName ! = l . Back . MiddleTexture )
{
2014-03-05 09:21:28 +00:00
if ( ! backmid . Required & & l . Back . MiddleRequired ( ) ) backmid . Required = true ;
backmid . MultipleTextures = true ; //mxd
backmid . TextureName = string . Empty ;
}
2014-09-15 14:12:31 +00:00
if ( backlow . TextureName ! = l . Back . LowTexture )
{
2014-03-05 09:21:28 +00:00
if ( ! backlow . Required & & l . Back . LowRequired ( ) ) backlow . Required = true ;
backlow . MultipleTextures = true ; //mxd
backlow . TextureName = string . Empty ;
}
2014-01-20 08:47:49 +00:00
if ( backsector . Text ! = l . Back . Sector . Index . ToString ( ) ) backsector . Text = string . Empty ;
2012-11-05 12:31:24 +00:00
2014-01-20 08:47:49 +00:00
backTextureOffset . SetValues ( l . Back . OffsetX , l . Back . OffsetY , false ) ; //mxd
2009-04-19 18:07:22 +00:00
}
2013-07-19 15:30:58 +00:00
//mxd
linedefProps . Add ( new LinedefProperties ( l ) ) ;
2009-04-19 18:07:22 +00:00
}
// Refresh controls so that they show their image
backhigh . Refresh ( ) ;
backmid . Refresh ( ) ;
backlow . Refresh ( ) ;
fronthigh . Refresh ( ) ;
frontmid . Refresh ( ) ;
frontlow . Refresh ( ) ;
2010-10-03 13:31:29 +00:00
preventchanges = false ;
2012-07-10 10:20:45 +00:00
2014-12-03 23:15:26 +00:00
UpdateScriptControls ( ) ; //mxd
2014-12-05 14:33:31 +00:00
actionhelp . UpdateAction ( action . GetValue ( ) ) ; //mxd
2013-08-08 11:04:13 +00:00
//mxd. Set intial script-related values, if required
2014-09-15 14:12:31 +00:00
if ( Array . IndexOf ( GZBuilder . GZGeneral . ACS_SPECIALS , action . Value ) ! = - 1 )
{
int a0 = arg0 . GetResult ( 0 ) ;
if ( a0 > 0 )
{
for ( int i = 0 ; i < General . Map . NumberedScripts . Count ; i + + )
{
if ( General . Map . NumberedScripts [ i ] . Index = = a0 )
{
scriptNumbers . SelectedIndex = i ;
break ;
2013-08-08 11:04:13 +00:00
}
2014-09-15 14:12:31 +00:00
}
2012-07-10 10:20:45 +00:00
2014-09-15 14:12:31 +00:00
if ( scriptNumbers . SelectedIndex = = - 1 )
{
scriptNumbers . Items . Add ( new ScriptItem ( a0 , "Script " + a0 ) ) ;
scriptNumbers . SelectedIndex = scriptNumbers . Items . Count - 1 ;
2013-08-08 11:04:13 +00:00
}
2014-09-15 14:12:31 +00:00
}
else
{
scriptNumbers . Text = arg0 . Text ;
2013-08-08 11:04:13 +00:00
}
2014-09-15 14:12:31 +00:00
}
else
{
2013-08-08 11:04:13 +00:00
scriptNumbers . Text = "0" ;
}
}
2012-07-10 10:20:45 +00:00
2013-08-08 11:04:13 +00:00
//mxd
2014-12-03 23:15:26 +00:00
private void UpdateScriptControls ( )
2014-09-15 14:12:31 +00:00
{
scriptNumbers . Visible = ( Array . IndexOf ( GZBuilder . GZGeneral . ACS_SPECIALS , action . Value ) ! = - 1 ) ;
2009-04-19 18:07:22 +00:00
}
2013-07-19 15:30:58 +00:00
#endregion
2009-04-19 18:07:22 +00:00
2013-08-08 11:04:13 +00:00
#region = = = = = = = = = = = = = = = = = = Events
2009-04-19 18:07:22 +00:00
// Apply clicked
private void apply_Click ( object sender , EventArgs e )
{
Sector s ;
int index ;
// Verify the tag
2013-03-18 13:52:27 +00:00
if ( General . Map . FormatInterface . HasLinedefTag )
2009-04-19 18:07:22 +00:00
{
2013-03-18 13:52:27 +00:00
tagSelector . ValidateTag ( ) ; //mxd
2014-09-15 14:12:31 +00:00
if ( ( ( tagSelector . GetTag ( 0 ) < General . Map . FormatInterface . MinTag ) | | ( tagSelector . GetTag ( 0 ) > General . Map . FormatInterface . MaxTag ) ) )
{
2013-03-18 13:52:27 +00:00
General . ShowWarningMessage ( "Linedef tag must be between " + General . Map . FormatInterface . MinTag + " and " + General . Map . FormatInterface . MaxTag + "." , MessageBoxButtons . OK ) ;
return ;
}
2009-04-19 18:07:22 +00:00
}
// Verify the action
if ( ( action . Value < General . Map . FormatInterface . MinAction ) | | ( action . Value > General . Map . FormatInterface . MaxAction ) )
{
General . ShowWarningMessage ( "Linedef action must be between " + General . Map . FormatInterface . MinAction + " and " + General . Map . FormatInterface . MaxAction + "." , MessageBoxButtons . OK ) ;
return ;
}
2012-07-10 10:20:45 +00:00
2013-09-11 09:47:53 +00:00
//mxd
bool hasAcs = ! action . Empty & & Array . IndexOf ( GZBuilder . GZGeneral . ACS_SPECIALS , action . Value ) ! = - 1 ;
2009-04-19 18:07:22 +00:00
// Go for all the lines
2014-08-05 11:03:55 +00:00
int tagoffset = 0 ; //mxd
2009-04-19 18:07:22 +00:00
foreach ( Linedef l in lines )
{
// Apply chosen activation flag
if ( activation . SelectedIndex > - 1 )
l . Activate = ( activation . SelectedItem as LinedefActivateInfo ) . Index ;
// Action/tags
2014-08-11 08:35:39 +00:00
l . Tag = General . Clamp ( tagSelector . GetSmartTag ( l . Tag , tagoffset + + ) , General . Map . FormatInterface . MinTag , General . Map . FormatInterface . MaxTag ) ; //mxd
2014-09-15 14:12:31 +00:00
if ( ! action . Empty )
{
2013-08-08 11:04:13 +00:00
l . Action = action . Value ;
//mxd. Script name/number handling
2014-09-15 14:12:31 +00:00
if ( hasAcs )
{
if ( ! string . IsNullOrEmpty ( scriptNumbers . Text ) )
{
if ( scriptNumbers . SelectedItem ! = null )
l . Args [ 0 ] = ( ( ScriptItem ) scriptNumbers . SelectedItem ) . Index ;
else if ( ! int . TryParse ( scriptNumbers . Text . Trim ( ) , out l . Args [ 0 ] ) )
l . Args [ 0 ] = 0 ;
2013-08-08 11:04:13 +00:00
}
2014-09-15 14:12:31 +00:00
}
else
{
2013-08-08 11:04:13 +00:00
l . Args [ 0 ] = arg0 . GetResult ( l . Args [ 0 ] ) ;
}
2014-09-15 14:12:31 +00:00
}
else
{
2013-08-08 11:04:13 +00:00
l . Args [ 0 ] = arg0 . GetResult ( l . Args [ 0 ] ) ;
}
2010-08-13 14:04:42 +00:00
l . Args [ 1 ] = arg1 . GetResult ( l . Args [ 1 ] ) ;
l . Args [ 2 ] = arg2 . GetResult ( l . Args [ 2 ] ) ;
l . Args [ 3 ] = arg3 . GetResult ( l . Args [ 3 ] ) ;
l . Args [ 4 ] = arg4 . GetResult ( l . Args [ 4 ] ) ;
2009-04-19 18:07:22 +00:00
// Remove front side?
if ( ( l . Front ! = null ) & & ( frontside . CheckState = = CheckState . Unchecked ) )
{
l . Front . Dispose ( ) ;
}
// Create or modify front side?
else if ( frontside . CheckState = = CheckState . Checked )
{
// Make sure we have a valid sector (make a new one if needed)
2009-06-05 19:03:56 +00:00
if ( l . Front ! = null ) index = l . Front . Sector . Index ; else index = - 1 ;
2010-08-15 19:43:00 +00:00
index = frontsector . GetResult ( index ) ;
if ( ( index > - 1 ) & & ( index < General . Map . Map . Sectors . Count ) )
{
s = General . Map . Map . GetSectorByIndex ( index ) ;
if ( s = = null ) s = General . Map . Map . CreateSector ( ) ;
2013-07-19 15:30:58 +00:00
2010-08-15 19:43:00 +00:00
if ( s ! = null )
{
// Create new sidedef?
if ( l . Front = = null ) General . Map . Map . CreateSidedef ( l , true , s ) ;
2012-11-05 12:31:24 +00:00
2013-07-19 15:30:58 +00:00
// Change sector?
if ( l . Front ! = null & & l . Front . Sector ! = s ) l . Front . SetSector ( s ) ;
2010-08-15 19:43:00 +00:00
}
}
2009-04-19 18:07:22 +00:00
}
// Remove back side?
if ( ( l . Back ! = null ) & & ( backside . CheckState = = CheckState . Unchecked ) )
{
l . Back . Dispose ( ) ;
}
// Create or modify back side?
else if ( backside . CheckState = = CheckState . Checked )
{
// Make sure we have a valid sector (make a new one if needed)
2009-06-05 19:03:56 +00:00
if ( l . Back ! = null ) index = l . Back . Sector . Index ; else index = - 1 ;
2010-08-15 19:43:00 +00:00
index = backsector . GetResult ( index ) ;
if ( ( index > - 1 ) & & ( index < General . Map . Map . Sectors . Count ) )
{
2014-09-15 14:12:31 +00:00
s = General . Map . Map . GetSectorByIndex ( index ) ? ? General . Map . Map . CreateSector ( ) ;
2010-08-15 19:43:00 +00:00
if ( s ! = null )
{
// Create new sidedef?
if ( l . Back = = null ) General . Map . Map . CreateSidedef ( l , false , s ) ;
2013-07-19 15:30:58 +00:00
// Change sector?
if ( l . Back ! = null & & l . Back . Sector ! = s ) l . Back . SetSector ( s ) ;
2010-08-15 19:43:00 +00:00
}
}
2009-04-19 18:07:22 +00:00
}
}
// Update the used textures
General . Map . Data . UpdateUsedTextures ( ) ;
// Done
General . Map . IsChanged = true ;
2013-07-19 15:30:58 +00:00
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ; //mxd
2009-04-19 18:07:22 +00:00
this . DialogResult = DialogResult . OK ;
this . Close ( ) ;
}
// Cancel clicked
private void cancel_Click ( object sender , EventArgs e )
{
2013-07-19 15:30:58 +00:00
//mxd. Let's pretend nothing of this really happened...
General . Map . UndoRedo . WithdrawUndo ( ) ;
2009-04-19 18:07:22 +00:00
// Be gone
this . DialogResult = DialogResult . Cancel ;
this . Close ( ) ;
}
2013-07-19 15:30:58 +00:00
// Front side (un)checked
private void frontside_CheckStateChanged ( object sender , EventArgs e )
{
// Enable/disable panel
// NOTE: Also enabled when checkbox is grayed!
frontgroup . Enabled = ( frontside . CheckState ! = CheckState . Unchecked ) ;
}
// Back side (un)checked
private void backside_CheckStateChanged ( object sender , EventArgs e )
{
// Enable/disable panel
// NOTE: Also enabled when checkbox is grayed!
backgroup . Enabled = ( backside . CheckState ! = CheckState . Unchecked ) ;
}
2009-04-19 18:07:22 +00:00
// Action changes
private void action_ValueChanges ( object sender , EventArgs e )
{
int showaction = 0 ;
// Only when line type is known
if ( General . Map . Config . LinedefActions . ContainsKey ( action . Value ) ) showaction = action . Value ;
// Change the argument descriptions
arg0label . Text = General . Map . Config . LinedefActions [ showaction ] . Args [ 0 ] . Title + ":" ;
arg1label . Text = General . Map . Config . LinedefActions [ showaction ] . Args [ 1 ] . Title + ":" ;
arg2label . Text = General . Map . Config . LinedefActions [ showaction ] . Args [ 2 ] . Title + ":" ;
arg3label . Text = General . Map . Config . LinedefActions [ showaction ] . Args [ 3 ] . Title + ":" ;
arg4label . Text = General . Map . Config . LinedefActions [ showaction ] . Args [ 4 ] . Title + ":" ;
arg0label . Enabled = General . Map . Config . LinedefActions [ showaction ] . Args [ 0 ] . Used ;
arg1label . Enabled = General . Map . Config . LinedefActions [ showaction ] . Args [ 1 ] . Used ;
arg2label . Enabled = General . Map . Config . LinedefActions [ showaction ] . Args [ 2 ] . Used ;
arg3label . Enabled = General . Map . Config . LinedefActions [ showaction ] . Args [ 3 ] . Used ;
arg4label . Enabled = General . Map . Config . LinedefActions [ showaction ] . Args [ 4 ] . Used ;
2014-09-15 14:12:31 +00:00
arg0 . ForeColor = ( arg0label . Enabled ? SystemColors . WindowText : SystemColors . GrayText ) ;
arg1 . ForeColor = ( arg1label . Enabled ? SystemColors . WindowText : SystemColors . GrayText ) ;
arg2 . ForeColor = ( arg2label . Enabled ? SystemColors . WindowText : SystemColors . GrayText ) ;
arg3 . ForeColor = ( arg3label . Enabled ? SystemColors . WindowText : SystemColors . GrayText ) ;
arg4 . ForeColor = ( arg4label . Enabled ? SystemColors . WindowText : SystemColors . GrayText ) ;
2009-04-19 18:07:22 +00:00
arg0 . Setup ( General . Map . Config . LinedefActions [ showaction ] . Args [ 0 ] ) ;
arg1 . Setup ( General . Map . Config . LinedefActions [ showaction ] . Args [ 1 ] ) ;
arg2 . Setup ( General . Map . Config . LinedefActions [ showaction ] . Args [ 2 ] ) ;
arg3 . Setup ( General . Map . Config . LinedefActions [ showaction ] . Args [ 3 ] ) ;
arg4 . Setup ( General . Map . Config . LinedefActions [ showaction ] . Args [ 4 ] ) ;
2010-10-03 13:31:29 +00:00
2014-09-15 14:12:31 +00:00
if ( ! preventchanges )
{
2014-12-05 21:34:16 +00:00
// mxd. Apply action's default arguments
if ( showaction ! = 0 )
2014-09-15 14:12:31 +00:00
{
2013-06-12 11:36:51 +00:00
arg0 . SetDefaultValue ( ) ;
arg1 . SetDefaultValue ( ) ;
arg2 . SetDefaultValue ( ) ;
arg3 . SetDefaultValue ( ) ;
arg4 . SetDefaultValue ( ) ;
2014-09-15 14:12:31 +00:00
}
else //or set them to 0
{
2013-06-12 11:36:51 +00:00
arg0 . SetValue ( 0 ) ;
arg1 . SetValue ( 0 ) ;
arg2 . SetValue ( 0 ) ;
arg3 . SetValue ( 0 ) ;
arg4 . SetValue ( 0 ) ;
}
2012-07-10 10:20:45 +00:00
2014-12-05 21:34:16 +00:00
//mxd. Update what must be updated
UpdateScriptControls ( ) ;
actionhelp . UpdateAction ( showaction ) ;
}
2009-04-19 18:07:22 +00:00
}
// Browse Action clicked
private void browseaction_Click ( object sender , EventArgs e )
{
action . Value = ActionBrowserForm . BrowseAction ( this , action . Value ) ;
}
2013-11-21 10:53:11 +00:00
//mxd. Store window location
2014-09-15 14:12:31 +00:00
private void LinedefEditForm_FormClosing ( object sender , FormClosingEventArgs e )
{
2013-11-21 10:53:11 +00:00
location = this . Location ;
}
2009-04-19 18:07:22 +00:00
// Help!
private void LinedefEditForm_HelpRequested ( object sender , HelpEventArgs hlpevent )
{
General . ShowHelp ( "w_linedefedit.html" ) ;
hlpevent . Handled = true ;
}
2013-07-19 15:30:58 +00:00
#endregion
2014-09-15 14:12:31 +00:00
#region = = = = = = = = = = = = = = = = = = Linedef realtime events ( mxd )
2013-07-19 15:30:58 +00:00
2014-12-03 23:15:26 +00:00
private void flags_OnValueChanged ( object sender , EventArgs e )
{
2013-07-19 15:30:58 +00:00
if ( preventchanges ) return ;
int i = 0 ;
2014-09-15 14:12:31 +00:00
foreach ( Linedef l in lines )
{
2013-07-19 15:30:58 +00:00
// Apply all flags
2014-09-15 14:12:31 +00:00
foreach ( CheckBox c in flags . Checkboxes )
{
2013-07-19 15:30:58 +00:00
if ( c . CheckState = = CheckState . Checked )
l . SetFlag ( c . Tag . ToString ( ) , true ) ;
else if ( c . CheckState = = CheckState . Unchecked )
l . SetFlag ( c . Tag . ToString ( ) , false ) ;
2014-08-06 10:21:12 +00:00
else if ( linedefProps [ i ] . Flags . ContainsKey ( c . Tag . ToString ( ) ) )
2013-07-19 15:30:58 +00:00
l . SetFlag ( c . Tag . ToString ( ) , linedefProps [ i ] . Flags [ c . Tag . ToString ( ) ] ) ;
2014-08-06 10:21:12 +00:00
else //linedefs created in the editor have empty Flags by default
l . SetFlag ( c . Tag . ToString ( ) , false ) ;
2013-07-19 15:30:58 +00:00
}
i + + ;
}
General . Map . IsChanged = true ;
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ;
}
#endregion
2014-09-15 14:12:31 +00:00
#region = = = = = = = = = = = = = = = = = = Sidedef reltime events ( mxd )
2013-07-19 15:30:58 +00:00
2014-09-15 14:12:31 +00:00
private void fronthigh_OnValueChanged ( object sender , EventArgs e )
{
2013-07-19 15:30:58 +00:00
if ( preventchanges ) return ;
//restore values
2014-09-15 14:12:31 +00:00
if ( string . IsNullOrEmpty ( fronthigh . TextureName ) )
{
2013-07-19 15:30:58 +00:00
int i = 0 ;
2014-09-15 14:12:31 +00:00
foreach ( Linedef l in lines )
{
2013-08-08 11:04:13 +00:00
if ( l . Front ! = null ) l . Front . SetTextureHigh ( linedefProps [ i ] . Front ! = null ? linedefProps [ i ] . Front . TextureTop : "-" ) ;
2013-07-19 15:30:58 +00:00
i + + ;
}
2014-09-15 14:12:31 +00:00
}
else //update values
{
2013-07-19 15:30:58 +00:00
foreach ( Linedef l in lines )
if ( l . Front ! = null ) l . Front . SetTextureHigh ( fronthigh . GetResult ( l . Front . HighTexture ) ) ;
}
// Update the used textures
General . Map . Data . UpdateUsedTextures ( ) ;
General . Map . IsChanged = true ;
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ;
}
2014-09-15 14:12:31 +00:00
private void frontmid_OnValueChanged ( object sender , EventArgs e )
{
2013-07-19 15:30:58 +00:00
if ( preventchanges ) return ;
//restore values
2014-09-15 14:12:31 +00:00
if ( string . IsNullOrEmpty ( frontmid . TextureName ) )
{
2013-07-19 15:30:58 +00:00
int i = 0 ;
2014-09-15 14:12:31 +00:00
foreach ( Linedef l in lines )
{
2013-08-08 11:04:13 +00:00
if ( l . Front ! = null ) l . Front . SetTextureMid ( linedefProps [ i ] . Front ! = null ? linedefProps [ i ] . Front . TextureMid : "-" ) ;
2013-07-19 15:30:58 +00:00
i + + ;
}
2014-09-15 14:12:31 +00:00
}
else //update values
{
2013-07-19 15:30:58 +00:00
foreach ( Linedef l in lines )
if ( l . Front ! = null ) l . Front . SetTextureMid ( frontmid . GetResult ( l . Front . MiddleTexture ) ) ;
}
// Update the used textures
General . Map . Data . UpdateUsedTextures ( ) ;
General . Map . IsChanged = true ;
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ;
}
2014-09-15 14:12:31 +00:00
private void frontlow_OnValueChanged ( object sender , EventArgs e )
{
2013-07-19 15:30:58 +00:00
if ( preventchanges ) return ;
//restore values
2014-09-15 14:12:31 +00:00
if ( string . IsNullOrEmpty ( frontlow . TextureName ) )
{
2013-07-19 15:30:58 +00:00
int i = 0 ;
2014-09-15 14:12:31 +00:00
foreach ( Linedef l in lines )
{
2013-08-08 11:04:13 +00:00
if ( l . Front ! = null ) l . Front . SetTextureLow ( linedefProps [ i ] . Front ! = null ? linedefProps [ i ] . Front . TextureLow : "-" ) ;
2013-07-19 15:30:58 +00:00
i + + ;
}
2014-09-15 14:12:31 +00:00
}
else //update values
{
2013-07-19 15:30:58 +00:00
foreach ( Linedef l in lines )
if ( l . Front ! = null ) l . Front . SetTextureLow ( frontlow . GetResult ( l . Front . LowTexture ) ) ;
}
// Update the used textures
General . Map . Data . UpdateUsedTextures ( ) ;
General . Map . IsChanged = true ;
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ;
}
2014-09-15 14:12:31 +00:00
private void backhigh_OnValueChanged ( object sender , EventArgs e )
{
2013-07-19 15:30:58 +00:00
if ( preventchanges ) return ;
//restore values
2014-09-15 14:12:31 +00:00
if ( string . IsNullOrEmpty ( backhigh . TextureName ) )
{
2013-07-19 15:30:58 +00:00
int i = 0 ;
2014-09-15 14:12:31 +00:00
foreach ( Linedef l in lines )
{
2013-08-08 11:04:13 +00:00
if ( l . Back ! = null ) l . Back . SetTextureHigh ( linedefProps [ i ] . Back ! = null ? linedefProps [ i ] . Back . TextureTop : "-" ) ;
2013-07-19 15:30:58 +00:00
i + + ;
}
2014-09-15 14:12:31 +00:00
}
else //update values
{
2013-07-19 15:30:58 +00:00
foreach ( Linedef l in lines )
if ( l . Back ! = null ) l . Back . SetTextureHigh ( backhigh . GetResult ( l . Back . HighTexture ) ) ;
}
// Update the used textures
General . Map . Data . UpdateUsedTextures ( ) ;
General . Map . IsChanged = true ;
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ;
}
2014-09-15 14:12:31 +00:00
private void backmid_OnValueChanged ( object sender , EventArgs e )
{
2013-07-19 15:30:58 +00:00
if ( preventchanges ) return ;
//restore values
2014-09-15 14:12:31 +00:00
if ( string . IsNullOrEmpty ( backmid . TextureName ) )
{
2013-07-19 15:30:58 +00:00
int i = 0 ;
2014-09-15 14:12:31 +00:00
foreach ( Linedef l in lines )
{
2013-08-08 11:04:13 +00:00
if ( l . Back ! = null ) l . Back . SetTextureMid ( linedefProps [ i ] . Back ! = null ? linedefProps [ i ] . Back . TextureMid : "-" ) ;
2013-07-19 15:30:58 +00:00
i + + ;
}
2014-09-15 14:12:31 +00:00
}
else //update values
{
2013-07-19 15:30:58 +00:00
foreach ( Linedef l in lines )
if ( l . Back ! = null ) l . Back . SetTextureMid ( backmid . GetResult ( l . Back . MiddleTexture ) ) ;
}
// Update the used textures
General . Map . Data . UpdateUsedTextures ( ) ;
General . Map . IsChanged = true ;
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ;
}
2014-09-15 14:12:31 +00:00
private void backlow_OnValueChanged ( object sender , EventArgs e )
{
2013-07-19 15:30:58 +00:00
if ( preventchanges ) return ;
//restore values
2014-09-15 14:12:31 +00:00
if ( string . IsNullOrEmpty ( backlow . TextureName ) )
{
2013-07-19 15:30:58 +00:00
int i = 0 ;
2014-09-15 14:12:31 +00:00
foreach ( Linedef l in lines )
{
2013-08-08 11:04:13 +00:00
if ( l . Back ! = null ) l . Back . SetTextureLow ( linedefProps [ i ] . Back ! = null ? linedefProps [ i ] . Back . TextureLow : "-" ) ;
2013-07-19 15:30:58 +00:00
i + + ;
}
2014-09-15 14:12:31 +00:00
}
else //update values
{
2013-07-19 15:30:58 +00:00
foreach ( Linedef l in lines )
if ( l . Back ! = null ) l . Back . SetTextureLow ( backlow . GetResult ( l . Back . LowTexture ) ) ;
}
// Update the used textures
General . Map . Data . UpdateUsedTextures ( ) ;
General . Map . IsChanged = true ;
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ;
}
2014-09-15 14:12:31 +00:00
private void frontTextureOffset_OnValuesChanged ( object sender , EventArgs e )
{
2013-07-19 15:30:58 +00:00
if ( preventchanges ) return ;
int i = 0 ;
2014-09-15 14:12:31 +00:00
foreach ( Linedef l in lines )
{
if ( l . Front ! = null )
{
if ( linedefProps [ i ] . Front ! = null )
{
2013-07-19 15:30:58 +00:00
l . Front . OffsetX = frontTextureOffset . GetValue1 ( linedefProps [ i ] . Front . OffsetX ) ;
l . Front . OffsetY = frontTextureOffset . GetValue2 ( linedefProps [ i ] . Front . OffsetY ) ;
2014-09-15 14:12:31 +00:00
}
else
{
2013-07-19 15:30:58 +00:00
l . Front . OffsetX = frontTextureOffset . GetValue1 ( 0 ) ;
l . Front . OffsetY = frontTextureOffset . GetValue2 ( 0 ) ;
}
}
i + + ;
}
General . Map . IsChanged = true ;
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ;
}
2014-09-15 14:12:31 +00:00
private void backTextureOffset_OnValuesChanged ( object sender , EventArgs e )
{
2013-07-19 15:30:58 +00:00
if ( preventchanges ) return ;
int i = 0 ;
2014-09-15 14:12:31 +00:00
foreach ( Linedef l in lines )
{
if ( l . Back ! = null )
{
if ( linedefProps [ i ] . Back ! = null )
{
2013-07-19 15:30:58 +00:00
l . Back . OffsetX = backTextureOffset . GetValue1 ( linedefProps [ i ] . Back . OffsetX ) ;
l . Back . OffsetY = backTextureOffset . GetValue2 ( linedefProps [ i ] . Back . OffsetY ) ;
2014-09-15 14:12:31 +00:00
}
else
{
2013-07-19 15:30:58 +00:00
l . Back . OffsetX = backTextureOffset . GetValue1 ( 0 ) ;
l . Back . OffsetY = backTextureOffset . GetValue2 ( 0 ) ;
}
}
i + + ;
}
General . Map . IsChanged = true ;
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ;
}
#endregion
2009-04-19 18:07:22 +00:00
}
}