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.Drawing ;
using System.Windows.Forms ;
2014-11-25 11:52:01 +00:00
using CodeImp.DoomBuilder.Controls ;
2009-04-19 18:07:22 +00:00
using CodeImp.DoomBuilder.IO ;
using CodeImp.DoomBuilder.Data ;
using CodeImp.DoomBuilder.Config ;
2012-07-23 21:28:23 +00:00
using System.IO ;
2009-04-19 18:07:22 +00:00
#endregion
namespace CodeImp.DoomBuilder.Windows
{
2014-10-22 13:07:17 +00:00
internal partial class TextureBrowserForm : DelayedForm
2009-04-19 18:07:22 +00:00
{
// Variables
private string selectedname ;
private Point lastposition ;
private Size lastsize ;
2014-11-25 11:52:01 +00:00
private readonly ListViewGroup usedgroup ;
private readonly ListViewGroup availgroup ;
2013-09-11 09:47:53 +00:00
private TreeNode selectedset ; //mxd
2015-07-07 18:37:54 +00:00
private long selecttextureonfill ; //mxd. Was string, which wasn't reliable whem dealing with long texture names
2015-03-16 08:54:31 +00:00
private readonly bool usedgroupcollapsed ; //mxd
2015-01-16 21:38:42 +00:00
private readonly bool browseflats ; //mxd
2009-04-19 18:07:22 +00:00
// Properties
public string SelectedName { get { return selectedname ; } }
// Constructor
2015-01-16 21:38:42 +00:00
public TextureBrowserForm ( string selecttexture , bool browseflats )
2009-04-19 18:07:22 +00:00
{
Cursor . Current = Cursors . WaitCursor ;
Fixed(?), Texture Browser: possibly fixed Texture Browser not showing up / locking edit forms when current map has a ton of textures (like 2000 or more) in a single texture group.
Changed, cosmetic, Sector Info panel, Visual mode: info about currently highlighted surface is now shown using different color.
Changed, cosmetic, Linedef Info panel, Visual mode, non-UDMF: texture offset labels for currently highlighted sidedef are now shown using different color.
Changed, cosmetic, Vertex Info panel, UDMF: floor and ceiling offset labels are now grayed out when they have default values.
2015-03-23 22:39:31 +00:00
General . Interface . DisableProcessing ( ) ; //mxd
Textures Browser form: empty texture sets are no longer shown when mixed textures & flats is disabled in the current game configuration.
Textures Browser form: PK3/Directory TEXTURES images are now shown in a separate folder in the resources tree.
Fixed, Textures Browser form: fixed a logic error when trying to select initial flat when mix textures & flats was disabled in the current game configuration (this resulted in the blank textures list after opening the form).
Fixed, Textures Browser form: resources tree showed textures count even when browsing flats.
Fixed, Textures Browser form: PK3/Directory textures took precedence even when browsing flats (this means when there were a flat and a texture with the same name, a texture was displayed when browsing flats).
Fixed, Classic modes: actor's scale set in DECORATE was ignored when rendering models.
Fixed, MODELDEF parser: in some cases, several model definitions were skipped when trying to skip the current one.
Fixed, resource management: flat and sprite TEXTURES definitions were loaded only from TEXTURES files named "TEXTURES".
Fixed/added, PK3/folder resource management: patch locations for sprites defined in TEXTURES are now checked the same way as in ZDoom (previously only the "sprites" folder was checked).
Fixed/added, PK3/folder resource management: patch locations for textures defined in TEXTURES are now checked the same way as in ZDoom (previously only the "textures" folder was checked).
Fixed, PK3/folder resource management: flats defined in TEXTURES were not added to the global Flats image list.
Fixed, PK3/folder resource management: in some cases, the image search algorithm could find flats, textures, patches or sprites in incorrect folders (for example, it could find a flat in "flats_backup" folder).
2014-10-07 00:23:02 +00:00
TreeNode item ; //mxd
2009-05-17 15:02:03 +00:00
long longname = Lump . MakeLongName ( selecttexture ? ? "" ) ;
2015-01-16 21:38:42 +00:00
longname = ( browseflats ? General . Map . Data . GetFullLongFlatName ( longname ) : General . Map . Data . GetFullLongTextureName ( longname ) ) ; //mxd
Textures Browser form: empty texture sets are no longer shown when mixed textures & flats is disabled in the current game configuration.
Textures Browser form: PK3/Directory TEXTURES images are now shown in a separate folder in the resources tree.
Fixed, Textures Browser form: fixed a logic error when trying to select initial flat when mix textures & flats was disabled in the current game configuration (this resulted in the blank textures list after opening the form).
Fixed, Textures Browser form: resources tree showed textures count even when browsing flats.
Fixed, Textures Browser form: PK3/Directory textures took precedence even when browsing flats (this means when there were a flat and a texture with the same name, a texture was displayed when browsing flats).
Fixed, Classic modes: actor's scale set in DECORATE was ignored when rendering models.
Fixed, MODELDEF parser: in some cases, several model definitions were skipped when trying to skip the current one.
Fixed, resource management: flat and sprite TEXTURES definitions were loaded only from TEXTURES files named "TEXTURES".
Fixed/added, PK3/folder resource management: patch locations for sprites defined in TEXTURES are now checked the same way as in ZDoom (previously only the "sprites" folder was checked).
Fixed/added, PK3/folder resource management: patch locations for textures defined in TEXTURES are now checked the same way as in ZDoom (previously only the "textures" folder was checked).
Fixed, PK3/folder resource management: flats defined in TEXTURES were not added to the global Flats image list.
Fixed, PK3/folder resource management: in some cases, the image search algorithm could find flats, textures, patches or sprites in incorrect folders (for example, it could find a flat in "flats_backup" folder).
2014-10-07 00:23:02 +00:00
int count ; //mxd
selectedset = null ; //mxd
2015-01-16 21:38:42 +00:00
this . browseflats = browseflats ; //mxd
2009-04-19 18:07:22 +00:00
// Initialize
InitializeComponent ( ) ;
2012-09-05 10:31:32 +00:00
2013-09-11 09:47:53 +00:00
//mxd. Set title
2015-01-16 21:38:42 +00:00
string imagetype = ( browseflats ? "flats" : "textures" ) ;
this . Text = "Browse " + imagetype ;
2012-09-05 10:31:32 +00:00
2014-12-03 23:30:58 +00:00
// Setup texture browser
2015-09-16 12:10:43 +00:00
ImageBrowserControl . ShowTexturesFromSubDirectories = General . Settings . ReadSetting ( "browserwindow.showtexturesfromsubdirs" , true ) ;
2015-02-19 13:00:19 +00:00
ImageBrowserControl . UseLongTextureNames = General . Map . Options . UseLongTextureNames ;
2015-01-16 21:38:42 +00:00
browser . BrowseFlats = browseflats ;
2009-04-19 18:07:22 +00:00
browser . ApplySettings ( ) ;
// Update the used textures
General . Map . Data . UpdateUsedTextures ( ) ;
2012-07-23 21:28:23 +00:00
2015-01-16 21:38:42 +00:00
tvTextureSets . BeginUpdate ( ) ; //mxd
2012-07-23 21:28:23 +00:00
2015-07-07 18:37:54 +00:00
//mxd. Texture longname to select when list is filled
selecttextureonfill = longname ;
2012-09-05 10:31:32 +00:00
2013-09-11 09:47:53 +00:00
// Make groups
2015-01-16 21:38:42 +00:00
usedgroup = browser . AddGroup ( "Used " + imagetype + ":" ) ;
availgroup = browser . AddGroup ( "Available " + imagetype + ":" ) ;
2012-07-23 21:28:23 +00:00
2015-03-16 08:54:31 +00:00
//mxd. Make "Used" group collapsible
usedgroupcollapsed = General . Settings . ReadSetting ( "browserwindow.usedgroupcollapsed" , false ) ;
browser . SetGroupCollapsed ( usedgroup , usedgroupcollapsed ) ;
2013-09-11 09:47:53 +00:00
//mxd. Fill texture sets list with normal texture sets
Textures Browser form: empty texture sets are no longer shown when mixed textures & flats is disabled in the current game configuration.
Textures Browser form: PK3/Directory TEXTURES images are now shown in a separate folder in the resources tree.
Fixed, Textures Browser form: fixed a logic error when trying to select initial flat when mix textures & flats was disabled in the current game configuration (this resulted in the blank textures list after opening the form).
Fixed, Textures Browser form: resources tree showed textures count even when browsing flats.
Fixed, Textures Browser form: PK3/Directory textures took precedence even when browsing flats (this means when there were a flat and a texture with the same name, a texture was displayed when browsing flats).
Fixed, Classic modes: actor's scale set in DECORATE was ignored when rendering models.
Fixed, MODELDEF parser: in some cases, several model definitions were skipped when trying to skip the current one.
Fixed, resource management: flat and sprite TEXTURES definitions were loaded only from TEXTURES files named "TEXTURES".
Fixed/added, PK3/folder resource management: patch locations for sprites defined in TEXTURES are now checked the same way as in ZDoom (previously only the "sprites" folder was checked).
Fixed/added, PK3/folder resource management: patch locations for textures defined in TEXTURES are now checked the same way as in ZDoom (previously only the "textures" folder was checked).
Fixed, PK3/folder resource management: flats defined in TEXTURES were not added to the global Flats image list.
Fixed, PK3/folder resource management: in some cases, the image search algorithm could find flats, textures, patches or sprites in incorrect folders (for example, it could find a flat in "flats_backup" folder).
2014-10-07 00:23:02 +00:00
foreach ( IFilledTextureSet ts in General . Map . Data . TextureSets )
2009-04-19 18:07:22 +00:00
{
2015-01-16 21:38:42 +00:00
count = ( browseflats ? ts . Flats . Count : ts . Textures . Count ) ;
2014-10-07 08:56:21 +00:00
if ( ( count = = 0 & & ! General . Map . Config . MixTexturesFlats ) | | ( ts . Flats . Count = = 0 & & ts . Textures . Count = = 0 ) )
continue ;
Textures Browser form: empty texture sets are no longer shown when mixed textures & flats is disabled in the current game configuration.
Textures Browser form: PK3/Directory TEXTURES images are now shown in a separate folder in the resources tree.
Fixed, Textures Browser form: fixed a logic error when trying to select initial flat when mix textures & flats was disabled in the current game configuration (this resulted in the blank textures list after opening the form).
Fixed, Textures Browser form: resources tree showed textures count even when browsing flats.
Fixed, Textures Browser form: PK3/Directory textures took precedence even when browsing flats (this means when there were a flat and a texture with the same name, a texture was displayed when browsing flats).
Fixed, Classic modes: actor's scale set in DECORATE was ignored when rendering models.
Fixed, MODELDEF parser: in some cases, several model definitions were skipped when trying to skip the current one.
Fixed, resource management: flat and sprite TEXTURES definitions were loaded only from TEXTURES files named "TEXTURES".
Fixed/added, PK3/folder resource management: patch locations for sprites defined in TEXTURES are now checked the same way as in ZDoom (previously only the "sprites" folder was checked).
Fixed/added, PK3/folder resource management: patch locations for textures defined in TEXTURES are now checked the same way as in ZDoom (previously only the "textures" folder was checked).
Fixed, PK3/folder resource management: flats defined in TEXTURES were not added to the global Flats image list.
Fixed, PK3/folder resource management: in some cases, the image search algorithm could find flats, textures, patches or sprites in incorrect folders (for example, it could find a flat in "flats_backup" folder).
2014-10-07 00:23:02 +00:00
item = tvTextureSets . Nodes . Add ( ts . Name + " [" + count + "]" ) ;
2013-09-11 09:47:53 +00:00
item . Name = ts . Name ;
item . Tag = ts ;
item . ImageIndex = 0 ;
2009-04-19 18:07:22 +00:00
}
2013-09-11 09:47:53 +00:00
//mxd. Add container-specific texture sets
2009-04-19 18:07:22 +00:00
foreach ( ResourceTextureSet ts in General . Map . Data . ResourceTextureSets )
{
2015-01-16 21:38:42 +00:00
count = ( browseflats ? ts . Flats . Count : ts . Textures . Count ) ;
2014-10-07 08:56:21 +00:00
if ( ( count = = 0 & & ! General . Map . Config . MixTexturesFlats ) | | ( ts . Flats . Count = = 0 & & ts . Textures . Count = = 0 ) )
continue ;
Textures Browser form: empty texture sets are no longer shown when mixed textures & flats is disabled in the current game configuration.
Textures Browser form: PK3/Directory TEXTURES images are now shown in a separate folder in the resources tree.
Fixed, Textures Browser form: fixed a logic error when trying to select initial flat when mix textures & flats was disabled in the current game configuration (this resulted in the blank textures list after opening the form).
Fixed, Textures Browser form: resources tree showed textures count even when browsing flats.
Fixed, Textures Browser form: PK3/Directory textures took precedence even when browsing flats (this means when there were a flat and a texture with the same name, a texture was displayed when browsing flats).
Fixed, Classic modes: actor's scale set in DECORATE was ignored when rendering models.
Fixed, MODELDEF parser: in some cases, several model definitions were skipped when trying to skip the current one.
Fixed, resource management: flat and sprite TEXTURES definitions were loaded only from TEXTURES files named "TEXTURES".
Fixed/added, PK3/folder resource management: patch locations for sprites defined in TEXTURES are now checked the same way as in ZDoom (previously only the "sprites" folder was checked).
Fixed/added, PK3/folder resource management: patch locations for textures defined in TEXTURES are now checked the same way as in ZDoom (previously only the "textures" folder was checked).
Fixed, PK3/folder resource management: flats defined in TEXTURES were not added to the global Flats image list.
Fixed, PK3/folder resource management: in some cases, the image search algorithm could find flats, textures, patches or sprites in incorrect folders (for example, it could find a flat in "flats_backup" folder).
2014-10-07 00:23:02 +00:00
item = tvTextureSets . Nodes . Add ( ts . Name + " [" + count + "]" ) ;
2013-09-11 09:47:53 +00:00
item . Name = ts . Name ;
item . Tag = ts ;
item . ImageIndex = 2 + ts . Location . type ;
item . SelectedImageIndex = item . ImageIndex ;
2015-03-21 20:08:47 +00:00
CreateNodes ( item ) ;
item . Expand ( ) ;
2009-04-19 18:07:22 +00:00
}
2012-07-23 21:28:23 +00:00
2015-01-16 21:38:42 +00:00
//mxd. Add "All" texture set
count = ( browseflats ? General . Map . Data . AllTextureSet . Flats . Count : General . Map . Data . AllTextureSet . Textures . Count ) ;
Textures Browser form: empty texture sets are no longer shown when mixed textures & flats is disabled in the current game configuration.
Textures Browser form: PK3/Directory TEXTURES images are now shown in a separate folder in the resources tree.
Fixed, Textures Browser form: fixed a logic error when trying to select initial flat when mix textures & flats was disabled in the current game configuration (this resulted in the blank textures list after opening the form).
Fixed, Textures Browser form: resources tree showed textures count even when browsing flats.
Fixed, Textures Browser form: PK3/Directory textures took precedence even when browsing flats (this means when there were a flat and a texture with the same name, a texture was displayed when browsing flats).
Fixed, Classic modes: actor's scale set in DECORATE was ignored when rendering models.
Fixed, MODELDEF parser: in some cases, several model definitions were skipped when trying to skip the current one.
Fixed, resource management: flat and sprite TEXTURES definitions were loaded only from TEXTURES files named "TEXTURES".
Fixed/added, PK3/folder resource management: patch locations for sprites defined in TEXTURES are now checked the same way as in ZDoom (previously only the "sprites" folder was checked).
Fixed/added, PK3/folder resource management: patch locations for textures defined in TEXTURES are now checked the same way as in ZDoom (previously only the "textures" folder was checked).
Fixed, PK3/folder resource management: flats defined in TEXTURES were not added to the global Flats image list.
Fixed, PK3/folder resource management: in some cases, the image search algorithm could find flats, textures, patches or sprites in incorrect folders (for example, it could find a flat in "flats_backup" folder).
2014-10-07 00:23:02 +00:00
item = tvTextureSets . Nodes . Add ( General . Map . Data . AllTextureSet . Name + " [" + count + "]" ) ;
2013-09-11 09:47:53 +00:00
item . Name = General . Map . Data . AllTextureSet . Name ;
item . Tag = General . Map . Data . AllTextureSet ;
item . ImageIndex = 1 ;
item . SelectedImageIndex = item . ImageIndex ;
2012-07-23 21:28:23 +00:00
2015-03-06 19:12:12 +00:00
//mxd. Should we bother finding the correct texture set?
if ( General . Settings . LocateTextureGroup )
2014-11-25 11:52:01 +00:00
{
2015-03-06 19:12:12 +00:00
//mxd. Get the previously selected texture set
string selectname = General . Settings . ReadSetting ( "browserwindow.textureset" , "" ) ;
TreeNode match ;
2009-04-19 18:07:22 +00:00
2015-03-06 19:12:12 +00:00
// When texture name is empty, select "All" texture set
if ( string . IsNullOrEmpty ( selectname ) | | selectname = = "-" )
{
match = tvTextureSets . Nodes [ tvTextureSets . Nodes . Count - 1 ] ;
}
else
{
match = FindNodeByName ( tvTextureSets . Nodes , selectname ) ;
}
if ( match ! = null )
2014-11-25 11:52:01 +00:00
{
2015-03-06 19:12:12 +00:00
IFilledTextureSet set = ( match . Tag as IFilledTextureSet ) ;
2015-07-07 18:37:54 +00:00
foreach ( ImageData img in ( browseflats ? set . Flats : set . Textures ) )
2014-11-25 11:52:01 +00:00
{
2015-03-06 19:12:12 +00:00
if ( img . LongName = = longname )
{
selectedset = match ;
break ;
}
2013-09-11 09:47:53 +00:00
}
}
2015-03-06 19:12:12 +00:00
//mxd. If the selected texture was not found in the last-selected set, try finding it in the other sets
if ( selectedset = = null & & selecttexture ! = "-" )
2014-11-25 11:52:01 +00:00
{
2015-03-06 19:12:12 +00:00
foreach ( TreeNode n in tvTextureSets . Nodes )
{
selectedset = FindTextureByLongName ( n , longname ) ;
if ( selectedset ! = null ) break ;
}
2013-09-11 09:47:53 +00:00
}
2015-03-06 19:12:12 +00:00
//mxd. Texture still not found? Then just select the last used set
if ( selectedset = = null & & match ! = null ) selectedset = match ;
}
2012-07-23 21:28:23 +00:00
2015-01-16 21:38:42 +00:00
//mxd. Select the found set or "All", if none were found
2015-12-28 15:01:53 +00:00
if ( tvTextureSets . Nodes . Count > 0 )
2014-10-07 08:56:21 +00:00
{
2015-12-28 15:01:53 +00:00
if ( selectedset = = null ) selectedset = tvTextureSets . Nodes [ tvTextureSets . Nodes . Count - 1 ] ;
2015-03-07 21:38:58 +00:00
tvTextureSets . SelectedNodes . Clear ( ) ;
tvTextureSets . SelectedNodes . Add ( selectedset ) ;
selectedset . EnsureVisible ( ) ;
2014-10-07 08:56:21 +00:00
}
2012-07-23 21:28:23 +00:00
2014-09-08 13:09:14 +00:00
tvTextureSets . EndUpdate ( ) ; //mxd
2009-04-19 18:07:22 +00:00
// Keep last position and size
lastposition = this . Location ;
lastsize = this . Size ;
2012-09-05 10:31:32 +00:00
2013-09-11 09:47:53 +00:00
this . SuspendLayout ( ) ;
2012-09-05 10:31:32 +00:00
2009-04-19 18:07:22 +00:00
// Position window from configuration settings
this . Size = new Size ( General . Settings . ReadSetting ( "browserwindow.sizewidth" , this . Size . Width ) ,
General . Settings . ReadSetting ( "browserwindow.sizeheight" , this . Size . Height ) ) ;
this . WindowState = ( FormWindowState ) General . Settings . ReadSetting ( "browserwindow.windowstate" , ( int ) FormWindowState . Normal ) ;
2013-11-08 10:51:35 +00:00
//mxd
2015-12-28 15:01:53 +00:00
if ( this . WindowState = = FormWindowState . Normal )
2014-11-25 11:52:01 +00:00
{
2013-11-08 10:51:35 +00:00
Point location = new Point ( General . Settings . ReadSetting ( "browserwindow.positionx" , int . MaxValue ) , General . Settings . ReadSetting ( "browserwindow.positiony" , int . MaxValue ) ) ;
2015-12-28 15:01:53 +00:00
if ( location . X < int . MaxValue & & location . Y < int . MaxValue )
2014-11-25 11:52:01 +00:00
{
2013-11-08 10:51:35 +00:00
this . Location = location ;
2014-11-25 11:52:01 +00:00
}
else
{
2013-11-08 10:51:35 +00:00
this . StartPosition = FormStartPosition . CenterParent ;
}
}
2009-04-19 18:07:22 +00:00
this . ResumeLayout ( true ) ;
2015-03-13 11:06:00 +00:00
//mxd. Set splitter position and state (doesn't work when layout is suspended)
if ( General . Settings . ReadSetting ( "browserwindow.splittercollapsed" , false ) ) splitter . IsCollapsed = true ;
2015-04-03 12:05:37 +00:00
//mxd. Looks like SplitterDistance is unaffected by DPI scaling. Let's fix that...
int splitterdistance = General . Settings . ReadSetting ( "browserwindow.splitterdistance" , int . MinValue ) ;
if ( splitterdistance = = int . MinValue )
{
splitterdistance = 210 ;
if ( MainForm . DPIScaler . Width ! = 1.0f )
{
splitterdistance = ( int ) Math . Round ( splitterdistance * MainForm . DPIScaler . Width ) ;
}
}
splitter . SplitPosition = splitterdistance ;
2009-04-19 18:07:22 +00:00
}
2013-09-11 09:47:53 +00:00
//mxd
2014-12-03 23:15:26 +00:00
private static int SortImageData ( ImageData img1 , ImageData img2 )
2014-05-20 09:09:28 +00:00
{
2015-11-17 17:50:56 +00:00
return String . Compare ( img1 . FilePathName , img2 . FilePathName , StringComparison . Ordinal ) ;
2013-09-11 09:47:53 +00:00
}
//mxd
2014-12-03 23:15:26 +00:00
private TreeNode FindTextureByLongName ( TreeNode node , long longname )
2014-05-20 09:09:28 +00:00
{
2013-09-11 09:47:53 +00:00
//first search in child nodes
2015-12-28 15:01:53 +00:00
foreach ( TreeNode n in node . Nodes )
2014-11-25 11:52:01 +00:00
{
2015-12-28 15:01:53 +00:00
TreeNode match = FindTextureByLongName ( n , longname ) ;
2013-11-08 10:51:35 +00:00
if ( match ! = null ) return match ;
2013-09-11 09:47:53 +00:00
}
//then - in current node
IFilledTextureSet set = ( node . Tag as IFilledTextureSet ) ;
2015-09-16 12:10:43 +00:00
foreach ( ImageData img in ( browseflats ? set . Flats : set . Textures ) )
if ( img . LongName = = longname ) return node ;
2013-09-11 09:47:53 +00:00
return null ;
}
//mxd
2014-12-03 23:15:26 +00:00
private static TreeNode FindNodeByName ( TreeNodeCollection nodes , string selectname )
2014-05-20 09:09:28 +00:00
{
2015-12-28 15:01:53 +00:00
foreach ( TreeNode n in nodes )
2014-11-25 11:52:01 +00:00
{
2015-12-28 15:01:53 +00:00
if ( n . Name = = selectname ) return n ;
2013-09-11 09:47:53 +00:00
2014-12-03 23:15:26 +00:00
TreeNode match = FindNodeByName ( n . Nodes , selectname ) ;
2013-11-08 10:51:35 +00:00
if ( match ! = null ) return match ;
2013-09-11 09:47:53 +00:00
}
return null ;
}
//mxd
2014-12-03 23:15:26 +00:00
private void CreateNodes ( TreeNode root )
2014-05-20 09:09:28 +00:00
{
2013-09-11 09:47:53 +00:00
ResourceTextureSet set = root . Tag as ResourceTextureSet ;
2015-12-28 15:01:53 +00:00
if ( set = = null )
2014-11-25 11:52:01 +00:00
{
2013-09-11 09:47:53 +00:00
General . ErrorLogger . Add ( ErrorType . Error , "Resource " + root . Name + " doesn't have TextureSet!" ) ;
return ;
}
2015-03-22 20:43:05 +00:00
int imageIndex = set . Location . type + 5 ;
2014-11-25 11:52:01 +00:00
char [ ] separator = new [ ] { Path . AltDirectorySeparatorChar } ;
2013-09-11 09:47:53 +00:00
2014-11-25 11:52:01 +00:00
ImageData [ ] images ;
2015-12-28 15:01:53 +00:00
if ( browseflats )
Textures Browser form: empty texture sets are no longer shown when mixed textures & flats is disabled in the current game configuration.
Textures Browser form: PK3/Directory TEXTURES images are now shown in a separate folder in the resources tree.
Fixed, Textures Browser form: fixed a logic error when trying to select initial flat when mix textures & flats was disabled in the current game configuration (this resulted in the blank textures list after opening the form).
Fixed, Textures Browser form: resources tree showed textures count even when browsing flats.
Fixed, Textures Browser form: PK3/Directory textures took precedence even when browsing flats (this means when there were a flat and a texture with the same name, a texture was displayed when browsing flats).
Fixed, Classic modes: actor's scale set in DECORATE was ignored when rendering models.
Fixed, MODELDEF parser: in some cases, several model definitions were skipped when trying to skip the current one.
Fixed, resource management: flat and sprite TEXTURES definitions were loaded only from TEXTURES files named "TEXTURES".
Fixed/added, PK3/folder resource management: patch locations for sprites defined in TEXTURES are now checked the same way as in ZDoom (previously only the "sprites" folder was checked).
Fixed/added, PK3/folder resource management: patch locations for textures defined in TEXTURES are now checked the same way as in ZDoom (previously only the "textures" folder was checked).
Fixed, PK3/folder resource management: flats defined in TEXTURES were not added to the global Flats image list.
Fixed, PK3/folder resource management: in some cases, the image search algorithm could find flats, textures, patches or sprites in incorrect folders (for example, it could find a flat in "flats_backup" folder).
2014-10-07 00:23:02 +00:00
{
2014-11-25 11:52:01 +00:00
images = new ImageData [ set . Flats . Count ] ;
set . Flats . CopyTo ( images , 0 ) ;
Textures Browser form: empty texture sets are no longer shown when mixed textures & flats is disabled in the current game configuration.
Textures Browser form: PK3/Directory TEXTURES images are now shown in a separate folder in the resources tree.
Fixed, Textures Browser form: fixed a logic error when trying to select initial flat when mix textures & flats was disabled in the current game configuration (this resulted in the blank textures list after opening the form).
Fixed, Textures Browser form: resources tree showed textures count even when browsing flats.
Fixed, Textures Browser form: PK3/Directory textures took precedence even when browsing flats (this means when there were a flat and a texture with the same name, a texture was displayed when browsing flats).
Fixed, Classic modes: actor's scale set in DECORATE was ignored when rendering models.
Fixed, MODELDEF parser: in some cases, several model definitions were skipped when trying to skip the current one.
Fixed, resource management: flat and sprite TEXTURES definitions were loaded only from TEXTURES files named "TEXTURES".
Fixed/added, PK3/folder resource management: patch locations for sprites defined in TEXTURES are now checked the same way as in ZDoom (previously only the "sprites" folder was checked).
Fixed/added, PK3/folder resource management: patch locations for textures defined in TEXTURES are now checked the same way as in ZDoom (previously only the "textures" folder was checked).
Fixed, PK3/folder resource management: flats defined in TEXTURES were not added to the global Flats image list.
Fixed, PK3/folder resource management: in some cases, the image search algorithm could find flats, textures, patches or sprites in incorrect folders (for example, it could find a flat in "flats_backup" folder).
2014-10-07 00:23:02 +00:00
}
else
{
2014-11-25 11:52:01 +00:00
images = new ImageData [ set . Textures . Count ] ;
set . Textures . CopyTo ( images , 0 ) ;
Textures Browser form: empty texture sets are no longer shown when mixed textures & flats is disabled in the current game configuration.
Textures Browser form: PK3/Directory TEXTURES images are now shown in a separate folder in the resources tree.
Fixed, Textures Browser form: fixed a logic error when trying to select initial flat when mix textures & flats was disabled in the current game configuration (this resulted in the blank textures list after opening the form).
Fixed, Textures Browser form: resources tree showed textures count even when browsing flats.
Fixed, Textures Browser form: PK3/Directory textures took precedence even when browsing flats (this means when there were a flat and a texture with the same name, a texture was displayed when browsing flats).
Fixed, Classic modes: actor's scale set in DECORATE was ignored when rendering models.
Fixed, MODELDEF parser: in some cases, several model definitions were skipped when trying to skip the current one.
Fixed, resource management: flat and sprite TEXTURES definitions were loaded only from TEXTURES files named "TEXTURES".
Fixed/added, PK3/folder resource management: patch locations for sprites defined in TEXTURES are now checked the same way as in ZDoom (previously only the "sprites" folder was checked).
Fixed/added, PK3/folder resource management: patch locations for textures defined in TEXTURES are now checked the same way as in ZDoom (previously only the "textures" folder was checked).
Fixed, PK3/folder resource management: flats defined in TEXTURES were not added to the global Flats image list.
Fixed, PK3/folder resource management: in some cases, the image search algorithm could find flats, textures, patches or sprites in incorrect folders (for example, it could find a flat in "flats_backup" folder).
2014-10-07 00:23:02 +00:00
}
2014-12-03 23:15:26 +00:00
Array . Sort ( images , SortImageData ) ;
2013-09-11 09:47:53 +00:00
2014-11-25 11:52:01 +00:00
foreach ( ImageData image in images )
{
string [ ] parts = image . VirtualName . Split ( separator , StringSplitOptions . RemoveEmptyEntries ) ;
2013-09-11 09:47:53 +00:00
TreeNode curNode = root ;
2015-12-28 15:01:53 +00:00
if ( parts . Length = = 1 ) continue ;
2015-03-22 20:43:05 +00:00
int localindex = ( parts [ 0 ] = = "[TEXTURES]" ? 8 : imageIndex ) ;
2013-09-11 09:47:53 +00:00
2015-09-16 12:10:43 +00:00
string category = set . Name ;
for ( int i = 0 ; i < parts . Length - 1 ; i + + )
2014-11-25 11:52:01 +00:00
{
2015-09-16 12:10:43 +00:00
//string category = parts[i];
category + = ( Path . DirectorySeparatorChar + parts [ i ] ) ;
2013-09-11 09:47:53 +00:00
//already got such category?
2015-12-28 15:01:53 +00:00
if ( curNode . Nodes . Count > 0 & & curNode . Nodes . ContainsKey ( category ) )
2014-11-25 11:52:01 +00:00
{
2013-09-11 09:47:53 +00:00
curNode = curNode . Nodes [ category ] ;
2014-11-25 11:52:01 +00:00
}
else //create a new one
2015-09-16 12:10:43 +00:00
{
TreeNode n = new TreeNode ( parts [ i ] ) { Name = category , ImageIndex = localindex , SelectedImageIndex = localindex } ;
2013-09-11 09:47:53 +00:00
curNode . Nodes . Add ( n ) ;
curNode = n ;
ResourceTextureSet ts = new ResourceTextureSet ( category , set . Location ) ;
2015-09-16 12:10:43 +00:00
ts . Level = i + 1 ;
2013-09-11 09:47:53 +00:00
curNode . Tag = ts ;
}
//add to current and parent nodes
2015-09-16 12:10:43 +00:00
if ( i = = parts . Length - 2 )
2014-11-25 11:52:01 +00:00
{
2013-09-11 09:47:53 +00:00
TreeNode cn = curNode ;
2015-12-28 15:01:53 +00:00
while ( cn ! = root )
2014-11-25 11:52:01 +00:00
{
2013-09-11 09:47:53 +00:00
ResourceTextureSet curTs = cn . Tag as ResourceTextureSet ;
2015-12-28 15:01:53 +00:00
if ( image . IsFlat )
Textures Browser form: empty texture sets are no longer shown when mixed textures & flats is disabled in the current game configuration.
Textures Browser form: PK3/Directory TEXTURES images are now shown in a separate folder in the resources tree.
Fixed, Textures Browser form: fixed a logic error when trying to select initial flat when mix textures & flats was disabled in the current game configuration (this resulted in the blank textures list after opening the form).
Fixed, Textures Browser form: resources tree showed textures count even when browsing flats.
Fixed, Textures Browser form: PK3/Directory textures took precedence even when browsing flats (this means when there were a flat and a texture with the same name, a texture was displayed when browsing flats).
Fixed, Classic modes: actor's scale set in DECORATE was ignored when rendering models.
Fixed, MODELDEF parser: in some cases, several model definitions were skipped when trying to skip the current one.
Fixed, resource management: flat and sprite TEXTURES definitions were loaded only from TEXTURES files named "TEXTURES".
Fixed/added, PK3/folder resource management: patch locations for sprites defined in TEXTURES are now checked the same way as in ZDoom (previously only the "sprites" folder was checked).
Fixed/added, PK3/folder resource management: patch locations for textures defined in TEXTURES are now checked the same way as in ZDoom (previously only the "textures" folder was checked).
Fixed, PK3/folder resource management: flats defined in TEXTURES were not added to the global Flats image list.
Fixed, PK3/folder resource management: in some cases, the image search algorithm could find flats, textures, patches or sprites in incorrect folders (for example, it could find a flat in "flats_backup" folder).
2014-10-07 00:23:02 +00:00
curTs . AddFlat ( image ) ;
else
curTs . AddTexture ( image ) ;
2013-09-11 09:47:53 +00:00
cn = cn . Parent ;
}
}
}
}
2015-09-16 12:10:43 +00:00
if ( root . Nodes . Count = = 1 & & root . Nodes [ 0 ] . Nodes . Count > 0 )
2014-11-25 11:52:01 +00:00
{
2013-09-11 09:47:53 +00:00
TreeNode [ ] children = new TreeNode [ root . Nodes [ 0 ] . Nodes . Count ] ;
root . Nodes [ 0 ] . Nodes . CopyTo ( children , 0 ) ;
root . Nodes . Clear ( ) ;
root . Nodes . AddRange ( children ) ;
2015-09-16 12:10:43 +00:00
( ( ResourceTextureSet ) root . Tag ) . Level + + ;
2013-09-11 09:47:53 +00:00
}
2015-12-28 15:01:53 +00:00
foreach ( TreeNode n in root . Nodes ) SetItemsCount ( n ) ;
2013-09-11 09:47:53 +00:00
}
//mxd
Textures Browser form: empty texture sets are no longer shown when mixed textures & flats is disabled in the current game configuration.
Textures Browser form: PK3/Directory TEXTURES images are now shown in a separate folder in the resources tree.
Fixed, Textures Browser form: fixed a logic error when trying to select initial flat when mix textures & flats was disabled in the current game configuration (this resulted in the blank textures list after opening the form).
Fixed, Textures Browser form: resources tree showed textures count even when browsing flats.
Fixed, Textures Browser form: PK3/Directory textures took precedence even when browsing flats (this means when there were a flat and a texture with the same name, a texture was displayed when browsing flats).
Fixed, Classic modes: actor's scale set in DECORATE was ignored when rendering models.
Fixed, MODELDEF parser: in some cases, several model definitions were skipped when trying to skip the current one.
Fixed, resource management: flat and sprite TEXTURES definitions were loaded only from TEXTURES files named "TEXTURES".
Fixed/added, PK3/folder resource management: patch locations for sprites defined in TEXTURES are now checked the same way as in ZDoom (previously only the "sprites" folder was checked).
Fixed/added, PK3/folder resource management: patch locations for textures defined in TEXTURES are now checked the same way as in ZDoom (previously only the "textures" folder was checked).
Fixed, PK3/folder resource management: flats defined in TEXTURES were not added to the global Flats image list.
Fixed, PK3/folder resource management: in some cases, the image search algorithm could find flats, textures, patches or sprites in incorrect folders (for example, it could find a flat in "flats_backup" folder).
2014-10-07 00:23:02 +00:00
private void SetItemsCount ( TreeNode node )
2014-05-20 09:09:28 +00:00
{
2013-09-11 09:47:53 +00:00
ResourceTextureSet ts = node . Tag as ResourceTextureSet ;
2015-12-28 15:01:53 +00:00
if ( ts = = null ) throw new Exception ( "Expected IFilledTextureSet, but got null..." ) ;
Textures Browser form: empty texture sets are no longer shown when mixed textures & flats is disabled in the current game configuration.
Textures Browser form: PK3/Directory TEXTURES images are now shown in a separate folder in the resources tree.
Fixed, Textures Browser form: fixed a logic error when trying to select initial flat when mix textures & flats was disabled in the current game configuration (this resulted in the blank textures list after opening the form).
Fixed, Textures Browser form: resources tree showed textures count even when browsing flats.
Fixed, Textures Browser form: PK3/Directory textures took precedence even when browsing flats (this means when there were a flat and a texture with the same name, a texture was displayed when browsing flats).
Fixed, Classic modes: actor's scale set in DECORATE was ignored when rendering models.
Fixed, MODELDEF parser: in some cases, several model definitions were skipped when trying to skip the current one.
Fixed, resource management: flat and sprite TEXTURES definitions were loaded only from TEXTURES files named "TEXTURES".
Fixed/added, PK3/folder resource management: patch locations for sprites defined in TEXTURES are now checked the same way as in ZDoom (previously only the "sprites" folder was checked).
Fixed/added, PK3/folder resource management: patch locations for textures defined in TEXTURES are now checked the same way as in ZDoom (previously only the "textures" folder was checked).
Fixed, PK3/folder resource management: flats defined in TEXTURES were not added to the global Flats image list.
Fixed, PK3/folder resource management: in some cases, the image search algorithm could find flats, textures, patches or sprites in incorrect folders (for example, it could find a flat in "flats_backup" folder).
2014-10-07 00:23:02 +00:00
2013-09-11 09:47:53 +00:00
2015-12-28 15:01:53 +00:00
if ( node . Parent ! = null & & General . Map . Config . MixTexturesFlats )
Textures Browser form: empty texture sets are no longer shown when mixed textures & flats is disabled in the current game configuration.
Textures Browser form: PK3/Directory TEXTURES images are now shown in a separate folder in the resources tree.
Fixed, Textures Browser form: fixed a logic error when trying to select initial flat when mix textures & flats was disabled in the current game configuration (this resulted in the blank textures list after opening the form).
Fixed, Textures Browser form: resources tree showed textures count even when browsing flats.
Fixed, Textures Browser form: PK3/Directory textures took precedence even when browsing flats (this means when there were a flat and a texture with the same name, a texture was displayed when browsing flats).
Fixed, Classic modes: actor's scale set in DECORATE was ignored when rendering models.
Fixed, MODELDEF parser: in some cases, several model definitions were skipped when trying to skip the current one.
Fixed, resource management: flat and sprite TEXTURES definitions were loaded only from TEXTURES files named "TEXTURES".
Fixed/added, PK3/folder resource management: patch locations for sprites defined in TEXTURES are now checked the same way as in ZDoom (previously only the "sprites" folder was checked).
Fixed/added, PK3/folder resource management: patch locations for textures defined in TEXTURES are now checked the same way as in ZDoom (previously only the "textures" folder was checked).
Fixed, PK3/folder resource management: flats defined in TEXTURES were not added to the global Flats image list.
Fixed, PK3/folder resource management: in some cases, the image search algorithm could find flats, textures, patches or sprites in incorrect folders (for example, it could find a flat in "flats_backup" folder).
2014-10-07 00:23:02 +00:00
{
2013-09-11 09:47:53 +00:00
ts . MixTexturesAndFlats ( ) ;
Textures Browser form: empty texture sets are no longer shown when mixed textures & flats is disabled in the current game configuration.
Textures Browser form: PK3/Directory TEXTURES images are now shown in a separate folder in the resources tree.
Fixed, Textures Browser form: fixed a logic error when trying to select initial flat when mix textures & flats was disabled in the current game configuration (this resulted in the blank textures list after opening the form).
Fixed, Textures Browser form: resources tree showed textures count even when browsing flats.
Fixed, Textures Browser form: PK3/Directory textures took precedence even when browsing flats (this means when there were a flat and a texture with the same name, a texture was displayed when browsing flats).
Fixed, Classic modes: actor's scale set in DECORATE was ignored when rendering models.
Fixed, MODELDEF parser: in some cases, several model definitions were skipped when trying to skip the current one.
Fixed, resource management: flat and sprite TEXTURES definitions were loaded only from TEXTURES files named "TEXTURES".
Fixed/added, PK3/folder resource management: patch locations for sprites defined in TEXTURES are now checked the same way as in ZDoom (previously only the "sprites" folder was checked).
Fixed/added, PK3/folder resource management: patch locations for textures defined in TEXTURES are now checked the same way as in ZDoom (previously only the "textures" folder was checked).
Fixed, PK3/folder resource management: flats defined in TEXTURES were not added to the global Flats image list.
Fixed, PK3/folder resource management: in some cases, the image search algorithm could find flats, textures, patches or sprites in incorrect folders (for example, it could find a flat in "flats_backup" folder).
2014-10-07 00:23:02 +00:00
node . Text + = " [" + ts . Textures . Count + "]" ;
}
else
{
2015-01-16 21:38:42 +00:00
node . Text + = " [" + ( browseflats ? ts . Flats . Count : ts . Textures . Count ) + "]" ;
Textures Browser form: empty texture sets are no longer shown when mixed textures & flats is disabled in the current game configuration.
Textures Browser form: PK3/Directory TEXTURES images are now shown in a separate folder in the resources tree.
Fixed, Textures Browser form: fixed a logic error when trying to select initial flat when mix textures & flats was disabled in the current game configuration (this resulted in the blank textures list after opening the form).
Fixed, Textures Browser form: resources tree showed textures count even when browsing flats.
Fixed, Textures Browser form: PK3/Directory textures took precedence even when browsing flats (this means when there were a flat and a texture with the same name, a texture was displayed when browsing flats).
Fixed, Classic modes: actor's scale set in DECORATE was ignored when rendering models.
Fixed, MODELDEF parser: in some cases, several model definitions were skipped when trying to skip the current one.
Fixed, resource management: flat and sprite TEXTURES definitions were loaded only from TEXTURES files named "TEXTURES".
Fixed/added, PK3/folder resource management: patch locations for sprites defined in TEXTURES are now checked the same way as in ZDoom (previously only the "sprites" folder was checked).
Fixed/added, PK3/folder resource management: patch locations for textures defined in TEXTURES are now checked the same way as in ZDoom (previously only the "textures" folder was checked).
Fixed, PK3/folder resource management: flats defined in TEXTURES were not added to the global Flats image list.
Fixed, PK3/folder resource management: in some cases, the image search algorithm could find flats, textures, patches or sprites in incorrect folders (for example, it could find a flat in "flats_backup" folder).
2014-10-07 00:23:02 +00:00
}
2013-09-11 09:47:53 +00:00
2015-12-28 15:01:53 +00:00
foreach ( TreeNode child in node . Nodes ) SetItemsCount ( child ) ;
2013-09-11 09:47:53 +00:00
}
2012-07-23 21:28:23 +00:00
2009-04-19 18:07:22 +00:00
// Selection changed
private void browser_SelectedItemChanged ( )
{
apply . Enabled = ( browser . SelectedItem ! = null ) ;
}
// OK clicked
private void apply_Click ( object sender , EventArgs e )
{
// Set selected name and close
if ( browser . SelectedItem ! = null )
{
2014-11-25 11:52:01 +00:00
ImageBrowserItem item = browser . SelectedItem as ImageBrowserItem ;
2014-12-03 09:06:05 +00:00
selectedname = item . TextureName ;
2009-04-19 18:07:22 +00:00
DialogResult = DialogResult . OK ;
}
else
{
selectedname = "" ;
DialogResult = DialogResult . Cancel ;
}
this . Close ( ) ;
}
// Cancel clicked
private void cancel_Click ( object sender , EventArgs e )
{
// No selection, close
selectedname = "" ;
DialogResult = DialogResult . Cancel ;
this . Close ( ) ;
}
// Activated
private void TextureBrowserForm_Activated ( object sender , EventArgs e )
{
Cursor . Current = Cursors . Default ;
Fixed(?), Texture Browser: possibly fixed Texture Browser not showing up / locking edit forms when current map has a ton of textures (like 2000 or more) in a single texture group.
Changed, cosmetic, Sector Info panel, Visual mode: info about currently highlighted surface is now shown using different color.
Changed, cosmetic, Linedef Info panel, Visual mode, non-UDMF: texture offset labels for currently highlighted sidedef are now shown using different color.
Changed, cosmetic, Vertex Info panel, UDMF: floor and ceiling offset labels are now grayed out when they have default values.
2015-03-23 22:39:31 +00:00
General . Interface . EnableProcessing ( ) ; //mxd
2009-04-19 18:07:22 +00:00
}
// Loading
private void TextureBrowserForm_Load ( object sender , EventArgs e )
{
// Normal windowstate?
if ( this . WindowState = = FormWindowState . Normal )
{
// Keep last position and size
lastposition = this . Location ;
lastsize = this . Size ;
}
}
// Resized
private void TextureBrowserForm_ResizeEnd ( object sender , EventArgs e )
{
// Normal windowstate?
if ( this . WindowState = = FormWindowState . Normal )
{
// Keep last position and size
lastposition = this . Location ;
lastsize = this . Size ;
}
}
// Moved
private void TextureBrowserForm_Move ( object sender , EventArgs e )
{
// Normal windowstate?
if ( this . WindowState = = FormWindowState . Normal )
{
// Keep last position and size
lastposition = this . Location ;
lastsize = this . Size ;
}
}
// Closing
private void TextureBrowserForm_FormClosing ( object sender , FormClosingEventArgs e )
{
int windowstate ;
// Determine window state to save
if ( this . WindowState ! = FormWindowState . Minimized )
windowstate = ( int ) this . WindowState ;
else
windowstate = ( int ) FormWindowState . Normal ;
// Save window settings
General . Settings . WriteSetting ( "browserwindow.positionx" , lastposition . X ) ;
General . Settings . WriteSetting ( "browserwindow.positiony" , lastposition . Y ) ;
General . Settings . WriteSetting ( "browserwindow.sizewidth" , lastsize . Width ) ;
General . Settings . WriteSetting ( "browserwindow.sizeheight" , lastsize . Height ) ;
General . Settings . WriteSetting ( "browserwindow.windowstate" , windowstate ) ;
2015-03-25 21:17:12 +00:00
General . Settings . WriteSetting ( "browserwindow.splitterdistance" , splitter . SplitPosition ) ; //mxd
2015-03-13 11:06:00 +00:00
General . Settings . WriteSetting ( "browserwindow.splittercollapsed" , splitter . IsCollapsed ) ; //mxd
2015-03-16 08:54:31 +00:00
General . Settings . WriteSetting ( "browserwindow.usedgroupcollapsed" , browser . IsGroupCollapsed ( usedgroup ) ) ; //mxd
2012-07-23 21:28:23 +00:00
2015-03-07 21:38:58 +00:00
//mxd. Save last selected texture set, if it's not "All" (it will be selected anyway if search for initial texture set fails)
if ( this . DialogResult = = DialogResult . OK & & tvTextureSets . SelectedNodes . Count > 0 & & ! ( tvTextureSets . SelectedNodes [ 0 ] . Tag is AllTextureSet ) )
General . Settings . WriteSetting ( "browserwindow.textureset" , tvTextureSets . SelectedNodes [ 0 ] . Name ) ;
2014-12-03 23:30:58 +00:00
//mxd. Save ImageBrowserControl settings
2015-09-16 12:10:43 +00:00
General . Settings . WriteSetting ( "browserwindow.showtexturesfromsubdirs" , ImageBrowserControl . ShowTexturesFromSubDirectories ) ;
2015-02-19 13:00:19 +00:00
if ( General . Map . Config . UseLongTextureNames ) General . Map . Options . UseLongTextureNames = ImageBrowserControl . UseLongTextureNames ;
2009-04-19 18:07:22 +00:00
// Clean up
browser . CleanUp ( ) ;
}
2012-07-23 21:28:23 +00:00
// Static method to browse for texture or flat
2009-04-19 18:07:22 +00:00
// Returns null when cancelled.
2012-07-23 21:28:23 +00:00
public static string Browse ( IWin32Window parent , string select , bool browseFlats )
2009-04-19 18:07:22 +00:00
{
2013-09-11 09:47:53 +00:00
TextureBrowserForm browser = new TextureBrowserForm ( select , browseFlats ) ;
2014-12-03 23:30:58 +00:00
if ( browser . ShowDialog ( parent ) = = DialogResult . OK ) return browser . SelectedName ; // Return result
2013-11-08 10:51:35 +00:00
// Cancelled
return select ;
2009-04-19 18:07:22 +00:00
}
// Item double clicked
private void browser_SelectedItemDoubleClicked ( )
{
if ( apply . Enabled ) apply_Click ( this , EventArgs . Empty ) ;
}
// This fills the list of textures, depending on the selected texture set
private void FillImagesList ( )
{
// Get the selected texture set
IFilledTextureSet set = ( selectedset . Tag as IFilledTextureSet ) ;
2012-07-23 21:28:23 +00:00
2013-09-11 09:47:53 +00:00
// Start adding
2015-09-16 12:10:43 +00:00
browser . BeginAdding ( set . Level , false ) ; //mxd. Pass current folder level
2012-07-23 21:28:23 +00:00
2015-12-28 15:01:53 +00:00
if ( browseflats )
2014-11-25 11:52:01 +00:00
{
2013-08-08 11:04:13 +00:00
// Add all available flats
foreach ( ImageData img in set . Flats )
2014-12-03 09:06:05 +00:00
browser . Add ( img , img , availgroup ) ;
2012-07-23 21:28:23 +00:00
2013-08-08 11:04:13 +00:00
// Add all used flats
foreach ( ImageData img in set . Flats )
2014-12-03 09:06:05 +00:00
if ( img . UsedInMap ) browser . Add ( img , img , usedgroup ) ;
2014-11-25 11:52:01 +00:00
}
else
{
2013-09-11 09:47:53 +00:00
// Add all available textures and mark the images for temporary loading
2015-12-28 15:01:53 +00:00
foreach ( ImageData img in set . Textures )
2014-12-03 09:06:05 +00:00
browser . Add ( img , img , availgroup ) ;
2013-09-11 09:47:53 +00:00
// Add all used textures and mark the images for permanent loading
2015-12-28 15:01:53 +00:00
foreach ( ImageData img in set . Textures )
2014-12-03 09:06:05 +00:00
if ( img . UsedInMap ) browser . Add ( img , img , usedgroup ) ;
2013-09-11 09:47:53 +00:00
}
2009-04-19 18:07:22 +00:00
// Done adding
browser . EndAdding ( ) ;
}
// Help
private void TextureBrowserForm_HelpRequested ( object sender , HelpEventArgs hlpevent )
{
General . ShowHelp ( "w_imagesbrowser.html" ) ;
hlpevent . Handled = true ;
}
private void TextureBrowserForm_Shown ( object sender , EventArgs e )
{
2015-12-28 15:01:53 +00:00
if ( selectedset ! = null ) //mxd. Calling FillImagesList() from constructor leads to TERRIBLE load times. Why? I have no sodding idea...
2013-09-11 09:47:53 +00:00
FillImagesList ( ) ;
// Select texture
2015-07-07 18:37:54 +00:00
if ( selecttextureonfill ! = 0 )
2009-04-19 18:07:22 +00:00
{
2015-03-16 08:54:31 +00:00
browser . SelectItem ( selecttextureonfill , ( usedgroupcollapsed ? availgroup : usedgroup ) ) ; //mxd. availgroup/usedgroup switch.
2015-07-07 18:37:54 +00:00
selecttextureonfill = 0 ;
2009-04-19 18:07:22 +00:00
}
2013-11-08 10:51:35 +00:00
//mxd. Focus the textbox. Calling this from TextureBrowserForm_Activated (like it's done in DB2) fails when the form is maximized. Again, I've no idea why...
browser . FocusTextbox ( ) ;
2009-04-19 18:07:22 +00:00
}
2012-07-23 21:28:23 +00:00
2013-09-11 09:47:53 +00:00
//mxd
2014-11-25 11:52:01 +00:00
private void tvTextureSets_NodeMouseClick ( object sender , TreeNodeMouseClickEventArgs e )
{
2013-09-11 09:47:53 +00:00
selectedset = e . Node ;
FillImagesList ( ) ;
}
2013-11-21 10:53:11 +00:00
//mxd
2014-11-25 11:52:01 +00:00
private void tvTextureSets_KeyUp ( object sender , KeyEventArgs e )
{
2015-03-07 21:38:58 +00:00
if ( tvTextureSets . SelectedNodes . Count > 0 & & tvTextureSets . SelectedNodes [ 0 ] ! = selectedset )
2014-11-25 11:52:01 +00:00
{
2015-03-07 21:38:58 +00:00
selectedset = tvTextureSets . SelectedNodes [ 0 ] ;
2013-11-21 10:53:11 +00:00
FillImagesList ( ) ;
}
}
2009-04-19 18:07:22 +00:00
}
}