2014-04-21 09:30:00 +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 ;
2015-02-24 13:38:35 +00:00
using CodeImp.DoomBuilder.Controls ;
2014-04-21 09:30:00 +00:00
using CodeImp.DoomBuilder.Map ;
using CodeImp.DoomBuilder.Config ;
using CodeImp.DoomBuilder.Geometry ;
using CodeImp.DoomBuilder.GZBuilder.Data ;
using CodeImp.DoomBuilder.GZBuilder.Tools ;
using CodeImp.DoomBuilder.Types ;
#endregion
namespace CodeImp.DoomBuilder.Windows
{
/// <summary>
/// Dialog window that allows viewing and editing of Thing properties.
/// </summary>
internal partial class ThingEditFormUDMF : DelayedForm
{
#region = = = = = = = = = = = = = = = = = = Events
public event EventHandler OnValuesChanged ; //mxd
#endregion
#region = = = = = = = = = = = = = = = = = = Variables
private ICollection < Thing > things ;
private ThingTypeInfo thinginfo ;
private bool preventchanges ;
2015-01-26 08:53:05 +00:00
private bool preventmapchange ; //mxd
private bool undocreated ; //mxd
2015-04-15 12:49:28 +00:00
private static bool useabsoluteheight ; //mxd
2014-04-21 09:30:00 +00:00
private string arg0str ;
private bool haveArg0Str ;
2015-01-26 08:53:05 +00:00
private List < ThingProperties > thingprops ; //mxd
2014-12-04 10:06:44 +00:00
private readonly string [ ] renderstyles ; //mxd
2014-04-21 09:30:00 +00:00
//mxd. Window setup stuff
private static Point location = Point . Empty ;
2015-04-15 07:41:18 +00:00
private static int activetab ;
2014-04-21 09:30:00 +00:00
2015-06-14 19:29:44 +00:00
//mxd. Persistent settings
private static bool linkscale ;
2014-04-21 09:30:00 +00:00
private struct ThingProperties //mxd
{
2014-09-03 14:07:08 +00:00
//public readonly int Type;
2014-04-21 09:30:00 +00:00
public readonly int AngleDoom ;
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
public readonly int Pitch ;
public readonly int Roll ;
public readonly float ScaleX ;
public readonly float ScaleY ;
2014-04-21 09:30:00 +00:00
public readonly float X ;
public readonly float Y ;
public readonly float Z ;
2014-05-02 11:37:37 +00:00
public ThingProperties ( Thing t )
{
2014-04-21 09:30:00 +00:00
X = t . Position . x ;
Y = t . Position . y ;
Z = t . Position . z ;
2014-09-03 14:07:08 +00:00
//Type = t.Type;
2014-04-21 09:30:00 +00:00
AngleDoom = t . AngleDoom ;
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
Pitch = t . Pitch ;
Roll = t . Roll ;
ScaleX = t . ScaleX ;
ScaleY = t . ScaleY ;
2014-04-21 09:30:00 +00:00
}
}
#endregion
#region = = = = = = = = = = = = = = = = = = Constructor
// Constructor
2014-05-02 11:37:37 +00:00
public ThingEditFormUDMF ( )
{
2014-04-21 09:30:00 +00:00
// Initialize
InitializeComponent ( ) ;
//mxd. Widow setup
2014-12-03 23:15:26 +00:00
if ( location ! = Point . Empty )
{
2014-04-21 09:30:00 +00:00
this . StartPosition = FormStartPosition . Manual ;
this . Location = location ;
2015-04-15 07:41:18 +00:00
if ( General . Settings . StoreSelectedEditTab & & activetab > 0 ) tabs . SelectTab ( activetab ) ;
2014-04-21 09:30:00 +00:00
}
// Fill flags list
foreach ( KeyValuePair < string , string > tf in General . Map . Config . ThingFlags )
flags . Add ( tf . Value , tf . Key ) ;
2014-12-04 10:06:44 +00:00
flags . Enabled = ( General . Map . Config . ThingFlags . Count > 0 ) ;
2014-05-05 14:24:57 +00:00
2014-04-21 09:30:00 +00:00
// Fill actions list
action . GeneralizedCategories = General . Map . Config . GenActionCategories ;
action . AddInfo ( General . Map . Config . SortedLinedefActions . ToArray ( ) ) ;
2014-12-04 10:06:44 +00:00
// Setup renderstyles
renderstyles = new string [ General . Map . Config . ThingRenderStyles . Count ] ;
General . Map . Config . ThingRenderStyles . Keys . CopyTo ( renderstyles , 0 ) ;
2014-04-21 09:30:00 +00:00
2014-12-04 10:06:44 +00:00
// Fill renderstyles
foreach ( KeyValuePair < string , string > lf in General . Map . Config . ThingRenderStyles )
renderStyle . Items . Add ( lf . Value ) ;
renderStyle . Enabled = ( General . Map . Config . ThingRenderStyles . Count > 0 ) ;
labelrenderstyle . Enabled = ( General . Map . Config . ThingRenderStyles . Count > 0 ) ;
// Initialize custom fields editor
fieldslist . Setup ( "thing" ) ;
// Fill universal fields list
fieldslist . ListFixedFields ( General . Map . Config . ThingFields ) ;
2014-04-21 09:30:00 +00:00
// Tag/Effects
2015-01-26 09:45:27 +00:00
scriptNumbers . Location = new Point ( arg0 . Location . X , arg0 . Location . Y + 2 ) ;
scriptNames . Location = scriptNumbers . Location ;
2014-04-21 09:30:00 +00:00
2014-12-04 10:06:44 +00:00
// Setup script names
2015-02-24 13:38:35 +00:00
foreach ( ScriptItem nsi in General . Map . NamedScripts )
scriptNames . Items . Add ( new ColoredComboBoxItem ( nsi , nsi . IsInclude ? SystemColors . HotTrack : SystemColors . WindowText ) ) ;
foreach ( ScriptItem si in General . Map . NumberedScripts )
scriptNumbers . Items . Add ( new ColoredComboBoxItem ( si , si . IsInclude ? SystemColors . HotTrack : SystemColors . WindowText ) ) ;
2014-04-21 09:30:00 +00:00
scriptNames . DropDownWidth = Tools . GetDropDownWidth ( scriptNames ) ;
scriptNumbers . DropDownWidth = Tools . GetDropDownWidth ( scriptNumbers ) ;
// Thing height?
posZ . Visible = General . Map . FormatInterface . HasThingHeight ;
zlabel . Visible = General . Map . FormatInterface . HasThingHeight ;
cbAbsoluteHeight . Visible = General . Map . FormatInterface . HasThingHeight ; //mxd
//mxd. Decimals allowed?
2014-12-03 23:15:26 +00:00
if ( General . Map . FormatInterface . VertexDecimals > 0 )
{
2014-04-21 09:30:00 +00:00
posX . AllowDecimal = true ;
posY . AllowDecimal = true ;
posZ . AllowDecimal = true ;
}
2015-06-14 19:29:44 +00:00
// Value linking
scale . LinkValues = linkscale ;
2014-04-21 09:30:00 +00:00
// Setup types list
thingtype . Setup ( ) ;
}
2015-05-23 21:01:44 +00:00
#endregion
#region = = = = = = = = = = = = = = = = = = Methods
2014-04-21 09:30:00 +00:00
// This sets up the form to edit the given things
2014-05-02 11:37:37 +00:00
public void Setup ( ICollection < Thing > things )
{
2014-04-21 09:30:00 +00:00
preventchanges = true ;
// Keep this list
this . things = things ;
if ( things . Count > 1 ) this . Text = "Edit Things (" + things . Count + ")" ;
hint . Visible = things . Count > 1 ; //mxd
hintlabel . Visible = things . Count > 1 ; //mxd
2014-10-29 11:35:27 +00:00
thingtype . UseMultiSelection = things . Count > 1 ; //mxd
2014-04-21 09:30:00 +00:00
////////////////////////////////////////////////////////////////////////
// Set all options to the first thing properties
////////////////////////////////////////////////////////////////////////
Thing ft = General . GetByIndex ( things , 0 ) ;
// Set type
thingtype . SelectType ( ft . Type ) ;
// Flags
2014-12-03 23:15:26 +00:00
foreach ( CheckBox c in flags . Checkboxes )
{
if ( ft . Flags . ContainsKey ( c . Tag . ToString ( ) ) ) c . Checked = ft . Flags [ c . Tag . ToString ( ) ] ;
2014-04-21 09:30:00 +00:00
}
// Coordination
angle . Text = ft . AngleDoom . ToString ( ) ;
2015-04-15 12:49:28 +00:00
cbAbsoluteHeight . Checked = useabsoluteheight ; //mxd
2014-04-21 09:30:00 +00:00
//mxd
2014-09-03 14:07:08 +00:00
ft . DetermineSector ( ) ;
2015-04-15 12:49:28 +00:00
float floorheight = ( ft . Sector ! = null ? Sector . GetFloorPlane ( ft . Sector ) . GetZ ( ft . Position ) : 0 ) ;
2014-09-03 14:07:08 +00:00
posX . Text = ( ft . Position . x ) . ToString ( ) ;
posY . Text = ( ft . Position . y ) . ToString ( ) ;
2015-04-15 12:49:28 +00:00
posZ . Text = ( useabsoluteheight ? ( ( float ) Math . Round ( ft . Position . z + floorheight , General . Map . FormatInterface . VertexDecimals ) ) . ToString ( ) : ( ft . Position . z ) . ToString ( ) ) ;
2014-04-21 09:30:00 +00:00
posX . ButtonStep = General . Map . Grid . GridSize ;
posY . ButtonStep = General . Map . Grid . GridSize ;
posZ . ButtonStep = General . Map . Grid . GridSize ;
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
// Custom fields
2014-12-04 10:06:44 +00:00
fieldslist . SetValues ( ft . Fields , true ) ;
conversationID . Text = ft . Fields . GetValue ( "conversation" , 0 ) . ToString ( ) ;
gravity . Text = ft . Fields . GetValue ( "gravity" , 1.0f ) . ToString ( ) ;
score . Text = ft . Fields . GetValue ( "score" , 0 ) . ToString ( ) ;
health . Text = ft . Fields . GetValue ( "health" , 1 ) . ToString ( ) ;
alpha . Text = ft . Fields . GetValue ( "alpha" , 1.0f ) . ToString ( ) ;
color . SetValueFrom ( ft . Fields ) ;
arg0str = ft . Fields . GetValue ( "arg0str" , string . Empty ) ;
haveArg0Str = ! string . IsNullOrEmpty ( arg0str ) ;
scale . SetValues ( ft . ScaleX , ft . ScaleY , true ) ;
pitch . Text = ft . Pitch . ToString ( ) ;
roll . Text = ft . Roll . ToString ( ) ;
renderStyle . SelectedIndex = Array . IndexOf ( renderstyles , ft . Fields . GetValue ( "renderstyle" , "normal" ) ) ;
2014-04-21 09:30:00 +00:00
// Action/tags
action . Value = ft . Action ;
tagSelector . Setup ( UniversalType . ThingTag ) ;
tagSelector . SetTag ( ft . Tag ) ;
arg0 . SetValue ( ft . Args [ 0 ] ) ;
arg1 . SetValue ( ft . Args [ 1 ] ) ;
arg2 . SetValue ( ft . Args [ 2 ] ) ;
arg3 . SetValue ( ft . Args [ 3 ] ) ;
arg4 . SetValue ( ft . Args [ 4 ] ) ;
////////////////////////////////////////////////////////////////////////
// Now go for all lines and change the options when a setting is different
////////////////////////////////////////////////////////////////////////
2015-01-26 08:53:05 +00:00
thingprops = new List < ThingProperties > ( ) ;
2014-04-21 09:30:00 +00:00
// Go for all things
2014-12-03 23:15:26 +00:00
foreach ( Thing t in things )
{
2014-09-03 14:07:08 +00:00
//mxd. Update sector info
t . DetermineSector ( ) ;
2014-04-21 09:30:00 +00:00
// Type does not match?
ThingTypeInfo info = thingtype . GetSelectedInfo ( ) ; //mxd
if ( info ! = null & & info . Index ! = t . Type ) thingtype . ClearSelectedType ( ) ;
// Flags
2014-12-03 23:15:26 +00:00
foreach ( CheckBox c in flags . Checkboxes )
{
2014-08-05 08:22:49 +00:00
if ( c . CheckState = = CheckState . Indeterminate ) continue ; //mxd
if ( t . IsFlagSet ( c . Tag . ToString ( ) ) ! = c . Checked )
{
c . ThreeState = true ;
c . CheckState = CheckState . Indeterminate ;
2014-04-21 09:30:00 +00:00
}
}
// Coordination
if ( t . AngleDoom . ToString ( ) ! = angle . Text ) angle . Text = "" ;
2014-09-03 14:07:08 +00:00
//mxd. Position
if ( ( t . Position . x ) . ToString ( ) ! = posX . Text ) posX . Text = "" ;
if ( ( t . Position . y ) . ToString ( ) ! = posY . Text ) posY . Text = "" ;
2015-04-15 12:49:28 +00:00
if ( useabsoluteheight & & t . Sector ! = null )
2014-12-03 23:15:26 +00:00
{
2015-04-15 12:49:28 +00:00
if ( ( ( float ) Math . Round ( Sector . GetFloorPlane ( t . Sector ) . GetZ ( t . Position ) + t . Position . z , General . Map . FormatInterface . VertexDecimals ) ) . ToString ( ) ! = posZ . Text )
posZ . Text = "" ;
2014-12-03 23:15:26 +00:00
}
else if ( ( t . Position . z ) . ToString ( ) ! = posZ . Text )
{
2014-04-21 09:30:00 +00:00
posZ . Text = "" ;
}
// Action/tags
if ( t . Action ! = action . Value ) action . Empty = true ;
if ( t . Tag ! = ft . Tag ) tagSelector . ClearTag ( ) ; //mxd
if ( t . Args [ 0 ] ! = arg0 . GetResult ( - 1 ) ) arg0 . ClearValue ( ) ;
if ( t . Args [ 1 ] ! = arg1 . GetResult ( - 1 ) ) arg1 . ClearValue ( ) ;
if ( t . Args [ 2 ] ! = arg2 . GetResult ( - 1 ) ) arg2 . ClearValue ( ) ;
if ( t . Args [ 3 ] ! = arg3 . GetResult ( - 1 ) ) arg3 . ClearValue ( ) ;
if ( t . Args [ 4 ] ! = arg4 . GetResult ( - 1 ) ) arg4 . ClearValue ( ) ;
//mxd. Custom fields
2014-12-04 10:06:44 +00:00
fieldslist . SetValues ( t . Fields , false ) ;
if ( t . Fields . GetValue ( "conversation" , 0 ) . ToString ( ) ! = conversationID . Text ) conversationID . Text = "" ;
if ( t . Fields . GetValue ( "gravity" , 1.0f ) . ToString ( ) ! = gravity . Text ) gravity . Text = "" ;
if ( t . Fields . GetValue ( "score" , 0 ) . ToString ( ) ! = score . Text ) score . Text = "" ;
if ( t . Fields . GetValue ( "health" , 1 ) . ToString ( ) ! = health . Text ) health . Text = "" ;
if ( t . Fields . GetValue ( "alpha" , 1.0f ) . ToString ( ) ! = alpha . Text ) alpha . Text = "" ;
2014-04-21 09:30:00 +00:00
2014-12-04 10:06:44 +00:00
scale . SetValues ( t . ScaleX , t . ScaleY , false ) ;
color . SetValueFrom ( t . Fields ) ;
2014-04-21 09:30:00 +00:00
2014-12-04 10:06:44 +00:00
if ( t . Pitch . ToString ( ) ! = pitch . Text ) pitch . Text = "" ;
if ( t . Roll . ToString ( ) ! = roll . Text ) roll . Text = "" ;
2014-04-21 09:30:00 +00:00
2014-12-04 10:06:44 +00:00
//Render style
if ( renderStyle . SelectedIndex > - 1 & & renderStyle . SelectedIndex ! = Array . IndexOf ( renderstyles , t . Fields . GetValue ( "renderstyle" , "normal" ) ) )
renderStyle . SelectedIndex = - 1 ;
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
2014-12-04 10:06:44 +00:00
if ( arg0str ! = t . Fields . GetValue ( "arg0str" , string . Empty ) )
{
haveArg0Str = true ;
arg0str = string . Empty ;
2014-04-21 09:30:00 +00:00
}
//mxd. Store initial properties
2015-01-26 08:53:05 +00:00
thingprops . Add ( new ThingProperties ( t ) ) ;
2014-04-21 09:30:00 +00:00
//mxd. add user vars
2014-12-03 23:15:26 +00:00
/ * if ( info ! = null & & info . Actor ! = null & & info . Actor . UserVars . Count > 0 )
{
foreach ( string s in info . Actor . UserVars )
{
2014-04-21 09:30:00 +00:00
if ( ! t . Fields . ContainsKey ( s ) )
fieldslist . SetValue ( s , 0 , CodeImp . DoomBuilder . Types . UniversalType . Integer ) ;
}
} * /
}
preventchanges = false ;
2014-11-03 13:02:59 +00:00
//mxd. Trigger updates manually...
2015-01-26 08:53:05 +00:00
preventmapchange = true ;
2014-05-02 11:37:37 +00:00
angle_WhenTextChanged ( angle , EventArgs . Empty ) ;
pitch_WhenTextChanged ( pitch , EventArgs . Empty ) ;
roll_WhenTextChanged ( roll , EventArgs . Empty ) ;
2014-11-03 13:02:59 +00:00
flags_OnValueChanged ( flags , EventArgs . Empty ) ;
2015-01-26 08:53:05 +00:00
preventmapchange = false ;
2014-05-02 11:37:37 +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
2015-01-05 14:56:44 +00:00
labelScale . Enabled = scale . NonDefaultValue ; //mxd
2014-04-21 09:30:00 +00:00
//mxd. Set intial script-related values, if required
2014-12-03 23:15:26 +00:00
if ( Array . IndexOf ( GZBuilder . GZGeneral . ACS_SPECIALS , action . Value ) ! = - 1 )
{
if ( haveArg0Str )
{
2014-04-21 09:30:00 +00:00
scriptNames . Text = arg0str ;
arg0label . Text = "Script Name:" ;
2014-12-03 23:15:26 +00:00
}
else
{
2014-04-21 09:30:00 +00:00
int a0 = arg0 . GetResult ( 0 ) ;
2014-12-03 23:15:26 +00:00
if ( a0 > 0 )
{
for ( int i = 0 ; i < General . Map . NumberedScripts . Count ; i + + )
{
if ( General . Map . NumberedScripts [ i ] . Index = = a0 )
{
2014-04-21 09:30:00 +00:00
scriptNumbers . SelectedIndex = i ;
break ;
}
}
2014-12-03 23:15:26 +00:00
}
2015-02-24 13:38:35 +00:00
if ( scriptNumbers . SelectedIndex = = - 1 )
2014-12-03 23:15:26 +00:00
{
2015-02-24 13:38:35 +00:00
scriptNumbers . Text = a0 . ToString ( ) ;
2014-04-21 09:30:00 +00:00
}
}
2014-12-03 23:15:26 +00:00
}
else
{
2014-04-21 09:30:00 +00:00
scriptNumbers . Text = "0" ;
}
}
2015-01-26 08:53:05 +00:00
//mxd
private void MakeUndo ( )
{
if ( undocreated ) return ;
undocreated = true ;
//mxd. Make undo
General . Map . UndoRedo . CreateUndo ( "Edit " + ( things . Count > 1 ? things . Count + " things" : "thing" ) ) ;
foreach ( Thing t in things ) t . Fields . BeforeFieldsChange ( ) ;
}
2014-04-21 09:30:00 +00:00
//mxd
2014-12-03 23:15:26 +00:00
private void UpdateScriptControls ( )
2014-05-02 11:37:37 +00:00
{
2014-12-03 23:15:26 +00:00
if ( Array . IndexOf ( GZBuilder . GZGeneral . ACS_SPECIALS , action . Value ) ! = - 1 )
{
2014-04-21 09:30:00 +00:00
bool showNamedScripts = haveArg0Str ;
cbArgStr . Visible = true ;
cbArgStr . Checked = showNamedScripts ;
scriptNames . Visible = showNamedScripts ;
scriptNumbers . Visible = ! showNamedScripts ;
2014-12-03 23:15:26 +00:00
}
else
{
2014-04-21 09:30:00 +00:00
cbArgStr . Visible = false ;
scriptNames . Visible = false ;
scriptNumbers . Visible = false ;
cbArgStr . Checked = false ;
}
2015-01-26 09:45:27 +00:00
arg0 . Visible = ( ! scriptNames . Visible & & ! scriptNumbers . Visible ) ;
2014-04-21 09:30:00 +00:00
}
2015-05-23 21:01:44 +00:00
//mxd
private void UpdateArgument ( ArgumentBox arg , Label label , ArgumentInfo info )
{
label . Text = info . Title + ":" ;
label . Enabled = info . Used ;
arg . ForeColor = ( label . Enabled ? SystemColors . WindowText : SystemColors . GrayText ) ;
arg . Setup ( info ) ;
// Update tooltip
if ( info . Used & & ! string . IsNullOrEmpty ( info . ToolTip ) )
{
tooltip . SetToolTip ( label , info . ToolTip ) ;
label . Font = new Font ( label . Font , FontStyle . Underline ) ;
label . ForeColor = SystemColors . HotTrack ;
}
else
{
tooltip . SetToolTip ( label , null ) ;
label . Font = new Font ( label . Font , FontStyle . Regular ) ;
label . ForeColor = SystemColors . WindowText ;
}
}
2014-04-21 09:30:00 +00:00
#endregion
#region = = = = = = = = = = = = = = = = = = Events
//mxd
2014-05-02 11:37:37 +00:00
private void thingtype_OnTypeDoubleClicked ( )
{
2014-04-21 09:30:00 +00:00
apply_Click ( this , EventArgs . Empty ) ;
}
// Action changes
2014-05-02 11:37:37 +00:00
private void action_ValueChanges ( object sender , EventArgs e )
{
2014-04-21 09:30:00 +00:00
int showaction = 0 ;
ArgumentInfo [ ] arginfo ;
// Only when line type is known, otherwise use the thing arguments
if ( General . Map . Config . LinedefActions . ContainsKey ( action . Value ) ) showaction = action . Value ;
if ( ( showaction = = 0 ) & & ( thinginfo ! = null ) ) arginfo = thinginfo . Args ;
else arginfo = General . Map . Config . LinedefActions [ showaction ] . Args ;
// Change the argument descriptions
2015-05-23 21:01:44 +00:00
UpdateArgument ( arg0 , arg0label , arginfo [ 0 ] ) ; //mxd
UpdateArgument ( arg1 , arg1label , arginfo [ 1 ] ) ; //mxd
UpdateArgument ( arg2 , arg2label , arginfo [ 2 ] ) ; //mxd
UpdateArgument ( arg3 , arg3label , arginfo [ 3 ] ) ; //mxd
UpdateArgument ( arg4 , arg4label , arginfo [ 4 ] ) ; //mxd
2014-04-21 09:30:00 +00:00
2014-12-05 21:34:16 +00:00
if ( ! preventchanges )
2014-12-03 23:15:26 +00:00
{
2015-01-26 08:53:05 +00:00
MakeUndo ( ) ; //mxd
2014-12-05 21:34:16 +00:00
// mxd. Apply action's or thing's default arguments
if ( showaction ! = 0 | | thinginfo ! = null )
{
arg0 . SetDefaultValue ( ) ;
arg1 . SetDefaultValue ( ) ;
arg2 . SetDefaultValue ( ) ;
arg3 . SetDefaultValue ( ) ;
arg4 . SetDefaultValue ( ) ;
}
else //or set them to 0
{
arg0 . SetValue ( 0 ) ;
arg1 . SetValue ( 0 ) ;
arg2 . SetValue ( 0 ) ;
arg3 . SetValue ( 0 ) ;
arg4 . SetValue ( 0 ) ;
}
2014-04-21 09:30:00 +00:00
2014-12-05 21:34:16 +00:00
//mxd. Update what must be updated
UpdateScriptControls ( ) ;
actionhelp . UpdateAction ( showaction ) ;
2014-12-05 14:33:31 +00:00
}
2014-04-21 09:30:00 +00:00
}
// Browse Action clicked
2014-05-02 11:37:37 +00:00
private void browseaction_Click ( object sender , EventArgs e )
{
2014-04-21 09:30:00 +00:00
action . Value = ActionBrowserForm . BrowseAction ( this , action . Value ) ;
}
// Angle text changes
2014-05-02 11:37:37 +00:00
private void angle_WhenTextChanged ( object sender , EventArgs e )
{
if ( preventchanges ) return ;
preventchanges = true ;
2014-10-17 11:55:08 +00:00
anglecontrol . Angle = angle . GetResult ( GZBuilder . Controls . AngleControl . NO_ANGLE ) ;
2014-05-02 11:37:37 +00:00
preventchanges = false ;
2015-01-26 08:53:05 +00:00
if ( ! preventmapchange ) ApplyAngleChange ( ) ; //mxd
2014-04-21 09:30:00 +00:00
}
//mxd. Angle control clicked
2014-12-24 18:32:24 +00:00
private void anglecontrol_AngleChanged ( object sender , EventArgs e )
2014-05-02 11:37:37 +00:00
{
if ( preventchanges ) return ;
2014-04-21 09:30:00 +00:00
angle . Text = anglecontrol . Angle . ToString ( ) ;
2015-01-26 08:53:05 +00:00
if ( ! preventmapchange ) ApplyAngleChange ( ) ;
2014-04-21 09:30:00 +00:00
}
2014-05-02 11:37:37 +00:00
private void pitch_WhenTextChanged ( object sender , EventArgs e )
{
if ( preventchanges ) return ;
2014-10-17 11:55:08 +00:00
int p = pitch . GetResult ( GZBuilder . Controls . AngleControl . NO_ANGLE ) ;
2014-05-02 11:37:37 +00:00
preventchanges = true ;
2014-10-17 11:55:08 +00:00
pitchControl . Angle = ( p = = GZBuilder . Controls . AngleControl . NO_ANGLE ? p : p + 90 ) ;
2014-05-02 11:37:37 +00:00
preventchanges = false ;
2015-01-26 08:53:05 +00:00
if ( ! preventmapchange ) ApplyPitchChange ( ) ;
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
}
2014-12-24 18:32:24 +00:00
private void pitchControl_AngleChanged ( object sender , EventArgs e )
2014-05-02 11:37:37 +00:00
{
if ( preventchanges ) return ;
pitch . Text = ( General . ClampAngle ( pitchControl . Angle - 90 ) ) . ToString ( ) ;
2015-01-26 08:53:05 +00:00
if ( ! preventmapchange ) ApplyPitchChange ( ) ;
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
}
2014-05-02 11:37:37 +00:00
private void roll_WhenTextChanged ( object sender , EventArgs e )
{
if ( preventchanges ) return ;
2014-10-17 11:55:08 +00:00
int r = roll . GetResult ( GZBuilder . Controls . AngleControl . NO_ANGLE ) ;
2014-05-02 11:37:37 +00:00
preventchanges = true ;
2014-10-17 11:55:08 +00:00
rollControl . Angle = ( r = = GZBuilder . Controls . AngleControl . NO_ANGLE ? r : r + 90 ) ;
2014-05-02 11:37:37 +00:00
preventchanges = false ;
2015-01-26 08:53:05 +00:00
if ( ! preventmapchange ) ApplyRollChange ( ) ;
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
}
2014-12-24 18:32:24 +00:00
private void rollControl_AngleChanged ( object sender , EventArgs e )
2014-05-02 11:37:37 +00:00
{
if ( preventchanges ) return ;
roll . Text = ( General . ClampAngle ( rollControl . Angle - 90 ) ) . ToString ( ) ;
2015-01-26 08:53:05 +00:00
if ( ! preventmapchange ) ApplyRollChange ( ) ;
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
}
2014-04-21 09:30:00 +00:00
// Apply clicked
2014-05-02 11:37:37 +00:00
private void apply_Click ( object sender , EventArgs e )
{
2015-01-26 08:53:05 +00:00
// Make Undo
MakeUndo ( ) ; //mxd
2014-04-21 09:30:00 +00:00
List < string > defaultflags = new List < string > ( ) ;
// Verify the tag
if ( General . Map . FormatInterface . HasThingTag ) //mxd
{
tagSelector . ValidateTag ( ) ; //mxd
2014-12-03 23:15:26 +00:00
if ( ( ( tagSelector . GetTag ( 0 ) < General . Map . FormatInterface . MinTag ) | | ( tagSelector . GetTag ( 0 ) > General . Map . FormatInterface . MaxTag ) ) )
{
2014-04-21 09:30:00 +00:00
General . ShowWarningMessage ( "Thing tag must be between " + General . Map . FormatInterface . MinTag + " and " + General . Map . FormatInterface . MaxTag + "." , MessageBoxButtons . OK ) ;
return ;
}
}
// Verify the type
2014-12-03 23:15:26 +00:00
if ( ( ( thingtype . GetResult ( 0 ) < General . Map . FormatInterface . MinThingType ) | | ( thingtype . GetResult ( 0 ) > General . Map . FormatInterface . MaxThingType ) ) )
{
2014-04-21 09:30:00 +00:00
General . ShowWarningMessage ( "Thing type must be between " + General . Map . FormatInterface . MinThingType + " and " + General . Map . FormatInterface . MaxThingType + "." , MessageBoxButtons . OK ) ;
return ;
}
// Verify the action
2014-12-03 23:15:26 +00:00
if ( General . Map . FormatInterface . HasThingAction & & ( ( action . Value < General . Map . FormatInterface . MinAction ) | | ( action . Value > General . Map . FormatInterface . MaxAction ) ) )
{
2014-04-21 09:30:00 +00:00
General . ShowWarningMessage ( "Thing action must be between " + General . Map . FormatInterface . MinAction + " and " + General . Map . FormatInterface . MaxAction + "." , MessageBoxButtons . OK ) ;
return ;
}
bool hasAcs = ! action . Empty & & Array . IndexOf ( GZBuilder . GZGeneral . ACS_SPECIALS , action . Value ) ! = - 1 ; //mxd
2014-05-05 14:24:57 +00:00
//mxd
string [ ] rskeys = null ;
2014-12-03 23:15:26 +00:00
if ( General . Map . Config . ThingRenderStyles . Count > 0 )
{
2014-05-05 14:24:57 +00:00
rskeys = new string [ General . Map . Config . ThingRenderStyles . Count ] ;
General . Map . Config . ThingRenderStyles . Keys . CopyTo ( rskeys , 0 ) ;
}
2014-04-21 09:30:00 +00:00
// Go for all the things
2014-08-05 11:03:55 +00:00
int tagoffset = 0 ; //mxd
2014-12-03 23:15:26 +00:00
foreach ( Thing t in things )
{
2014-04-21 09:30:00 +00:00
// Coordination
2015-02-27 10:55:18 +00:00
//mxd. Randomize rotations?
if ( cbrandomangle . Checked ) t . Rotate ( General . Random ( 0 , 359 ) ) ;
if ( cbrandompitch . Checked ) t . SetPitch ( General . Random ( 0 , 359 ) ) ;
if ( cbrandomroll . Checked ) t . SetRoll ( General . Random ( 0 , 359 ) ) ;
2014-04-21 09:30:00 +00:00
//mxd. Check position
float px = General . Clamp ( t . Position . x , General . Map . Config . LeftBoundary , General . Map . Config . RightBoundary ) ;
float py = General . Clamp ( t . Position . y , General . Map . Config . BottomBoundary , General . Map . Config . TopBoundary ) ;
if ( t . Position . x ! = px | | t . Position . y ! = py ) t . Move ( new Vector2D ( px , py ) ) ;
// Apply all flags
2014-12-03 23:15:26 +00:00
foreach ( CheckBox c in flags . Checkboxes )
{
2014-04-21 09:30:00 +00:00
if ( c . CheckState = = CheckState . Checked )
t . SetFlag ( c . Tag . ToString ( ) , true ) ;
else if ( c . CheckState = = CheckState . Unchecked )
t . SetFlag ( c . Tag . ToString ( ) , false ) ;
}
// Action/tags
2014-08-11 08:35:39 +00:00
t . Tag = General . Clamp ( tagSelector . GetSmartTag ( t . Tag , tagoffset + + ) , General . Map . FormatInterface . MinTag , General . Map . FormatInterface . MaxTag ) ; //mxd
2014-12-03 23:15:26 +00:00
if ( ! action . Empty )
{
2014-04-21 09:30:00 +00:00
t . Action = action . Value ;
//mxd. Script name/number handling
2014-12-03 23:15:26 +00:00
if ( hasAcs )
{
if ( ! cbArgStr . Checked ) //apply script number
{
if ( ! string . IsNullOrEmpty ( scriptNumbers . Text ) )
{
2014-04-21 09:30:00 +00:00
if ( scriptNumbers . SelectedItem ! = null )
2015-02-24 13:38:35 +00:00
t . Args [ 0 ] = ( ( ScriptItem ) ( ( ColoredComboBoxItem ) scriptNumbers . SelectedItem ) . Value ) . Index ;
2014-04-21 09:30:00 +00:00
else if ( ! int . TryParse ( scriptNumbers . Text . Trim ( ) , out t . Args [ 0 ] ) )
t . Args [ 0 ] = 0 ;
2014-12-04 10:06:44 +00:00
if ( t . Fields . ContainsKey ( "arg0str" ) ) t . Fields . Remove ( "arg0str" ) ;
2014-04-21 09:30:00 +00:00
}
2014-12-03 23:15:26 +00:00
}
else //apply arg0str
{
2014-04-21 09:30:00 +00:00
if ( ! string . IsNullOrEmpty ( scriptNames . Text ) )
t . Fields [ "arg0str" ] = new UniValue ( UniversalType . String , scriptNames . Text ) ;
}
2014-12-03 23:15:26 +00:00
}
else
{
2014-04-21 09:30:00 +00:00
t . Args [ 0 ] = arg0 . GetResult ( t . Args [ 0 ] ) ;
2014-12-04 10:06:44 +00:00
if ( t . Fields . ContainsKey ( "arg0str" ) ) t . Fields . Remove ( "arg0str" ) ;
2014-04-21 09:30:00 +00:00
}
2014-12-03 23:15:26 +00:00
}
else
{
2014-04-21 09:30:00 +00:00
t . Args [ 0 ] = arg0 . GetResult ( t . Args [ 0 ] ) ;
}
t . Args [ 1 ] = arg1 . GetResult ( t . Args [ 1 ] ) ;
t . Args [ 2 ] = arg2 . GetResult ( t . Args [ 2 ] ) ;
t . Args [ 3 ] = arg3 . GetResult ( t . Args [ 3 ] ) ;
t . Args [ 4 ] = arg4 . GetResult ( t . Args [ 4 ] ) ;
//mxd. Custom fields
2014-12-04 10:06:44 +00:00
fieldslist . Apply ( t . Fields ) ;
if ( ! string . IsNullOrEmpty ( conversationID . Text ) )
UDMFTools . SetInteger ( t . Fields , "conversation" , conversationID . GetResult ( t . Fields . GetValue ( "conversation" , 0 ) ) , 0 ) ;
if ( ! string . IsNullOrEmpty ( gravity . Text ) )
UDMFTools . SetFloat ( t . Fields , "gravity" , gravity . GetResultFloat ( t . Fields . GetValue ( "gravity" , 1.0f ) ) , 1.0f ) ;
if ( ! string . IsNullOrEmpty ( health . Text ) )
UDMFTools . SetInteger ( t . Fields , "health" , health . GetResult ( t . Fields . GetValue ( "health" , 1 ) ) , 1 ) ;
if ( ! string . IsNullOrEmpty ( score . Text ) )
UDMFTools . SetInteger ( t . Fields , "score" , score . GetResult ( t . Fields . GetValue ( "score" , 0 ) ) , 0 ) ;
if ( ! string . IsNullOrEmpty ( alpha . Text ) )
UDMFTools . SetFloat ( t . Fields , "alpha" , alpha . GetResultFloat ( t . Fields . GetValue ( "alpha" , 1.0f ) ) , 1.0f ) ;
if ( rskeys ! = null & & renderStyle . SelectedIndex > - 1 )
UDMFTools . SetString ( t . Fields , "renderstyle" , rskeys [ renderStyle . SelectedIndex ] , "normal" ) ;
color . ApplyTo ( t . Fields , t . Fields . GetValue ( "fillcolor" , 0 ) ) ;
2014-04-21 09:30:00 +00:00
// Update settings
t . UpdateConfiguration ( ) ;
}
// Set as defaults
2014-12-03 23:15:26 +00:00
foreach ( CheckBox c in flags . Checkboxes )
{
if ( c . CheckState = = CheckState . Checked ) defaultflags . Add ( c . Tag . ToString ( ) ) ;
2014-04-21 09:30:00 +00:00
}
General . Settings . DefaultThingType = thingtype . GetResult ( General . Settings . DefaultThingType ) ;
General . Settings . DefaultThingAngle = Angle2D . DegToRad ( ( float ) angle . GetResult ( ( int ) Angle2D . RadToDeg ( General . Settings . DefaultThingAngle ) - 90 ) + 90 ) ;
General . Settings . SetDefaultThingFlags ( defaultflags ) ;
2015-06-14 19:29:44 +00:00
// Store value linking
linkscale = scale . LinkValues ;
2014-04-21 09:30:00 +00:00
// Done
General . Map . IsChanged = true ;
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ; //mxd
this . DialogResult = DialogResult . OK ;
this . Close ( ) ;
}
// Cancel clicked
2014-05-02 11:37:37 +00:00
private void cancel_Click ( object sender , EventArgs e )
{
2015-01-26 08:53:05 +00:00
//mxd. Perform undo?
if ( undocreated ) General . Map . UndoRedo . WithdrawUndo ( ) ;
2014-04-21 09:30:00 +00:00
// Be gone
this . DialogResult = DialogResult . Cancel ;
this . Close ( ) ;
}
//mxd
2014-05-02 11:37:37 +00:00
private void cbArgStr_CheckedChanged ( object sender , EventArgs e )
{
2014-04-21 09:30:00 +00:00
if ( ! cbArgStr . Visible ) return ;
scriptNames . Visible = cbArgStr . Checked ;
scriptNumbers . Visible = ! cbArgStr . Checked ;
arg0label . Text = cbArgStr . Checked ? "Script Name:" : "Script Number:" ;
}
//mxd
2014-05-02 11:37:37 +00:00
private void cbAbsoluteHeight_CheckedChanged ( object sender , EventArgs e )
{
2014-09-03 14:07:08 +00:00
if ( preventchanges ) return ;
2015-04-15 12:49:28 +00:00
MakeUndo ( ) ;
2015-01-26 08:53:05 +00:00
2015-04-15 12:49:28 +00:00
useabsoluteheight = cbAbsoluteHeight . Checked ;
2014-09-03 14:07:08 +00:00
preventchanges = true ;
//update label text
Thing ft = General . GetByIndex ( things , 0 ) ;
float z = ft . Position . z ;
2015-04-15 12:49:28 +00:00
if ( useabsoluteheight & & ft . Sector ! = null ) z + = Sector . GetFloorPlane ( ft . Sector ) . GetZ ( ft . Position ) ;
posZ . Text = ( ( float ) Math . Round ( z , General . Map . FormatInterface . VertexDecimals ) ) . ToString ( ) ;
2014-09-03 14:07:08 +00:00
2014-12-03 23:15:26 +00:00
foreach ( Thing t in things )
{
2014-09-03 14:07:08 +00:00
z = t . Position . z ;
2015-04-15 12:49:28 +00:00
if ( useabsoluteheight & & t . Sector ! = null ) z + = Sector . GetFloorPlane ( t . Sector ) . GetZ ( t . Position ) ;
string ztext = ( ( float ) Math . Round ( z , General . Map . FormatInterface . VertexDecimals ) ) . ToString ( ) ;
if ( posZ . Text ! = ztext )
2014-12-03 23:15:26 +00:00
{
2014-09-03 14:07:08 +00:00
posZ . Text = "" ;
break ;
}
}
preventchanges = false ;
2014-04-21 09:30:00 +00:00
}
//mxd
2014-05-02 11:37:37 +00:00
private void tabcustom_MouseEnter ( object sender , EventArgs e )
{
2014-04-21 09:30:00 +00:00
fieldslist . Focus ( ) ;
}
//mxd
2014-12-03 23:15:26 +00:00
private void ThingEditForm_FormClosing ( object sender , FormClosingEventArgs e )
{
2014-04-21 09:30:00 +00:00
location = this . Location ;
2015-04-15 07:41:18 +00:00
activetab = tabs . SelectedIndex ;
2014-04-21 09:30:00 +00:00
}
// Help
2014-05-02 11:37:37 +00:00
private void ThingEditForm_HelpRequested ( object sender , HelpEventArgs hlpevent )
{
2015-06-01 21:46:28 +00:00
General . ShowHelp ( "w_thingedit.html" ) ;
2014-04-21 09:30:00 +00:00
hlpevent . Handled = true ;
}
#endregion
#region = = = = = = = = = = = = = = = = = = mxd . Realtime events
2014-05-02 11:37:37 +00:00
private void posX_WhenTextChanged ( object sender , EventArgs e )
{
2014-04-21 09:30:00 +00:00
if ( preventchanges ) return ;
2015-01-26 08:53:05 +00:00
MakeUndo ( ) ; //mxd
2014-04-21 09:30:00 +00:00
int i = 0 ;
2014-09-03 14:07:08 +00:00
// Update values
foreach ( Thing t in things )
2015-01-26 08:53:05 +00:00
t . Move ( new Vector2D ( posX . GetResultFloat ( thingprops [ i + + ] . X ) , t . Position . y ) ) ;
2014-04-21 09:30:00 +00:00
General . Map . IsChanged = true ;
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ;
}
2014-05-02 11:37:37 +00:00
private void posY_WhenTextChanged ( object sender , EventArgs e )
{
2014-04-21 09:30:00 +00:00
if ( preventchanges ) return ;
2015-01-26 08:53:05 +00:00
MakeUndo ( ) ; //mxd
2014-04-21 09:30:00 +00:00
int i = 0 ;
2014-09-03 14:07:08 +00:00
// Update values
foreach ( Thing t in things )
2015-01-26 08:53:05 +00:00
t . Move ( new Vector2D ( t . Position . x , posY . GetResultFloat ( thingprops [ i + + ] . Y ) ) ) ;
2014-04-21 09:30:00 +00:00
General . Map . IsChanged = true ;
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ;
}
2014-05-02 11:37:37 +00:00
private void posZ_WhenTextChanged ( object sender , EventArgs e )
{
2014-04-21 09:30:00 +00:00
if ( preventchanges ) return ;
2015-01-26 08:53:05 +00:00
MakeUndo ( ) ; //mxd
2014-09-03 14:07:08 +00:00
int i = 0 ;
2014-04-21 09:30:00 +00:00
2014-12-03 23:15:26 +00:00
if ( string . IsNullOrEmpty ( posZ . Text ) )
{
2014-09-03 14:07:08 +00:00
// Restore values
2014-04-21 09:30:00 +00:00
foreach ( Thing t in things )
2015-01-26 08:53:05 +00:00
t . Move ( new Vector3D ( t . Position . x , t . Position . y , thingprops [ i + + ] . Z ) ) ;
2014-12-03 23:15:26 +00:00
}
else
{
2014-09-03 14:07:08 +00:00
// Update values
2014-12-03 23:15:26 +00:00
foreach ( Thing t in things )
{
2015-01-26 08:53:05 +00:00
float z = posZ . GetResultFloat ( thingprops [ i + + ] . Z ) ;
2015-04-15 12:49:28 +00:00
if ( useabsoluteheight & & ! posZ . CheckIsRelative ( ) & & t . Sector ! = null )
z - = ( float ) Math . Round ( Sector . GetFloorPlane ( t . Sector ) . GetZ ( t . Position . x , t . Position . y ) , General . Map . FormatInterface . VertexDecimals ) ;
2014-04-21 09:30:00 +00:00
t . Move ( new Vector3D ( t . Position . x , t . Position . y , z ) ) ;
}
}
General . Map . IsChanged = true ;
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ;
}
2014-05-02 11:37:37 +00:00
private void scale_OnValuesChanged ( object sender , EventArgs e )
{
2015-01-26 08:53:05 +00:00
if ( preventchanges ) return ;
MakeUndo ( ) ; //mxd
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
int i = 0 ;
2014-12-03 23:15:26 +00:00
foreach ( Thing t in things )
{
2015-01-26 08:53:05 +00:00
float sx = scale . GetValue1 ( thingprops [ i ] . ScaleX ) ;
float sy = scale . GetValue2 ( thingprops [ i ] . ScaleY ) ;
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
t . SetScale ( ( sx = = 0 ? 1.0f : sx ) , ( sy = = 0 ? 1.0f : sy ) ) ;
i + + ;
}
General . Map . IsChanged = true ;
2015-01-05 14:56:44 +00:00
labelScale . Enabled = scale . NonDefaultValue ;
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ;
}
2014-04-21 09:30:00 +00:00
// Selected type changes
2014-05-02 11:37:37 +00:00
private void thingtype_OnTypeChanged ( ThingTypeInfo value )
{
2014-04-21 09:30:00 +00:00
thinginfo = value ;
// Update arguments
action_ValueChanges ( this , EventArgs . Empty ) ;
//mxd. Update things
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
if ( preventchanges
| | ( thingtype . GetResult ( 0 ) < General . Map . FormatInterface . MinThingType )
| | ( thingtype . GetResult ( 0 ) > General . Map . FormatInterface . MaxThingType ) )
2014-04-21 09:30:00 +00:00
return ;
2015-01-26 08:53:05 +00:00
MakeUndo ( ) ; //mxd
2014-12-03 23:15:26 +00:00
foreach ( Thing t in things )
{
2014-04-21 09:30:00 +00:00
//Set type
t . Type = thingtype . GetResult ( t . Type ) ;
// Update settings
t . UpdateConfiguration ( ) ;
}
General . Map . IsChanged = true ;
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ;
}
//mxd
2015-01-26 08:53:05 +00:00
private void ApplyAngleChange ( )
2014-05-02 11:37:37 +00:00
{
2014-04-21 09:30:00 +00:00
if ( preventchanges ) return ;
2015-01-26 08:53:05 +00:00
MakeUndo ( ) ; //mxd
2014-04-21 09:30:00 +00:00
int i = 0 ;
//restore values
2014-12-03 23:15:26 +00:00
if ( string . IsNullOrEmpty ( angle . Text ) )
{
2015-01-26 08:53:05 +00:00
foreach ( Thing t in things ) t . Rotate ( thingprops [ i + + ] . AngleDoom ) ;
2014-12-03 23:15:26 +00:00
}
else //update values
{
2014-04-21 09:30:00 +00:00
foreach ( Thing t in things )
2015-01-26 08:53:05 +00:00
t . Rotate ( angle . GetResult ( thingprops [ i + + ] . AngleDoom ) ) ;
2014-04-21 09:30:00 +00:00
}
General . Map . IsChanged = true ;
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ;
}
2015-01-26 08:53:05 +00:00
private void ApplyPitchChange ( )
2014-05-02 11:37:37 +00:00
{
2015-01-26 08:53:05 +00:00
if ( preventchanges ) return ;
MakeUndo ( ) ; //mxd
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
int i = 0 ;
//restore values
2014-12-03 23:15:26 +00:00
if ( string . IsNullOrEmpty ( pitch . Text ) )
{
2015-01-26 08:53:05 +00:00
foreach ( Thing t in things ) t . SetPitch ( thingprops [ i + + ] . Pitch ) ;
2014-12-03 23:15:26 +00:00
}
else //update values
{
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
foreach ( Thing t in things )
2015-01-26 08:53:05 +00:00
t . SetPitch ( pitch . GetResult ( thingprops [ i + + ] . Pitch ) ) ;
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
}
General . Map . IsChanged = true ;
2015-01-26 08:53:05 +00:00
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ;
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
}
2014-12-03 23:15:26 +00:00
//mxd
2015-01-26 08:53:05 +00:00
private void ApplyRollChange ( )
2014-05-02 11:37:37 +00:00
{
2015-01-26 08:53:05 +00:00
if ( preventchanges ) return ;
MakeUndo ( ) ; //mxd
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
int i = 0 ;
//restore values
2014-12-03 23:15:26 +00:00
if ( string . IsNullOrEmpty ( roll . Text ) )
{
2015-01-26 08:53:05 +00:00
foreach ( Thing t in things ) t . SetRoll ( thingprops [ i + + ] . Roll ) ;
2014-12-03 23:15:26 +00:00
}
else //update values
{
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
foreach ( Thing t in things )
2015-01-26 08:53:05 +00:00
t . SetRoll ( roll . GetResult ( thingprops [ i + + ] . Roll ) ) ;
Model rendering (all modes): UDMF scale, pitch and roll are now displayed.
Thing Edit Form, UDMF: added controls for setting pitch, roll, scale, render style, fill color, alpha, health and score.
Visual mode, UDMF: UDMF scale is now applied when rendering sprites.
Added Thing Statistics form (Edit -> View Thing Types...), which shows all loaded thing types with some additional info.
Visual mode: sprites with negative ScaleX and positive ScaleY were not rendered properly.
Classic modes: display was not updated after loading a sprite.
Current testing engine change was not saved on closing the program when no other game configuration settings were changed.
2014-04-30 10:01:22 +00:00
}
General . Map . IsChanged = true ;
if ( OnValuesChanged ! = null ) OnValuesChanged ( this , EventArgs . Empty ) ;
}
2014-09-29 20:49:41 +00:00
private void flags_OnValueChanged ( object sender , EventArgs e )
{
if ( preventchanges ) return ;
2014-11-03 13:02:59 +00:00
string warn = ThingFlagsCompare . CheckThingEditFormFlags ( flags . Checkboxes ) ;
if ( ! string . IsNullOrEmpty ( warn ) )
2014-09-29 20:49:41 +00:00
{
2014-11-03 13:02:59 +00:00
//got missing flags
tooltip . SetToolTip ( missingflags , warn ) ;
missingflags . Visible = true ;
settingsgroup . ForeColor = Color . DarkRed ;
return ;
2014-09-29 20:49:41 +00:00
}
2014-11-03 13:02:59 +00:00
//everything is OK
2014-09-29 20:49:41 +00:00
missingflags . Visible = false ;
settingsgroup . ForeColor = SystemColors . ControlText ;
}
2015-02-27 10:55:18 +00:00
private void cbrandomangle_CheckedChanged ( object sender , EventArgs e )
{
angle . Enabled = ! cbrandomangle . Checked ;
groupangle . Enabled = ! cbrandomangle . Checked ;
}
private void cbrandompitch_CheckedChanged ( object sender , EventArgs e )
{
pitch . Enabled = ! cbrandompitch . Checked ;
grouppitch . Enabled = ! cbrandompitch . Checked ;
}
private void cbrandomroll_CheckedChanged ( object sender , EventArgs e )
{
roll . Enabled = ! cbrandomroll . Checked ;
grouproll . Enabled = ! cbrandomroll . Checked ;
}
2014-04-21 09:30:00 +00:00
#endregion
}
}