2007-10-31 20:34:09 +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.ComponentModel;
|
|
|
|
using System.Drawing;
|
|
|
|
using System.Text;
|
|
|
|
using System.Windows.Forms;
|
|
|
|
using Microsoft.Win32;
|
|
|
|
using System.Diagnostics;
|
2008-05-29 11:34:01 +00:00
|
|
|
using CodeImp.DoomBuilder.Actions;
|
2007-10-31 20:34:09 +00:00
|
|
|
using CodeImp.DoomBuilder.Data;
|
|
|
|
using CodeImp.DoomBuilder.Config;
|
2007-11-04 22:19:30 +00:00
|
|
|
using CodeImp.DoomBuilder.Map;
|
2008-05-29 11:54:45 +00:00
|
|
|
using CodeImp.DoomBuilder.Controls;
|
2007-10-31 20:34:09 +00:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
2008-05-29 11:54:45 +00:00
|
|
|
namespace CodeImp.DoomBuilder.Windows
|
2007-10-31 20:34:09 +00:00
|
|
|
{
|
2008-01-02 21:49:43 +00:00
|
|
|
internal partial class TextureBrowserForm : DelayedForm
|
2007-10-31 20:34:09 +00:00
|
|
|
{
|
2007-11-04 23:09:21 +00:00
|
|
|
// Variables
|
|
|
|
private string selectedname;
|
|
|
|
private Point lastposition;
|
|
|
|
private Size lastsize;
|
2008-10-01 14:17:52 +00:00
|
|
|
private ListViewGroup usedgroup;
|
|
|
|
private ListViewGroup availgroup;
|
2007-11-04 23:09:21 +00:00
|
|
|
|
|
|
|
// Properties
|
|
|
|
public string SelectedName { get { return selectedname; } }
|
|
|
|
|
2007-10-31 20:34:09 +00:00
|
|
|
// Constructor
|
|
|
|
public TextureBrowserForm()
|
|
|
|
{
|
2008-09-28 21:20:56 +00:00
|
|
|
Cursor.Current = Cursors.WaitCursor;
|
2008-10-01 14:17:52 +00:00
|
|
|
ListViewItem item;
|
2007-11-04 22:19:30 +00:00
|
|
|
|
2007-10-31 20:34:09 +00:00
|
|
|
// Initialize
|
|
|
|
InitializeComponent();
|
2007-11-07 21:14:27 +00:00
|
|
|
browser.ApplyColorSettings();
|
|
|
|
|
2008-09-28 21:20:56 +00:00
|
|
|
// Update the used textures
|
|
|
|
General.Map.Data.UpdateUsedTextures();
|
2008-05-05 14:22:36 +00:00
|
|
|
|
2008-10-01 14:17:52 +00:00
|
|
|
// Fill texture sets list with normal texture sets
|
|
|
|
foreach(IFilledTextureSet ts in General.Map.Data.TextureSets)
|
2008-05-05 14:22:36 +00:00
|
|
|
{
|
2008-10-01 14:17:52 +00:00
|
|
|
item = texturesets.Items.Add(ts.Name);
|
|
|
|
item.Tag = ts;
|
2008-10-01 20:04:50 +00:00
|
|
|
item.ImageIndex = 0;
|
2008-05-05 14:22:36 +00:00
|
|
|
}
|
2008-09-28 21:20:56 +00:00
|
|
|
|
2008-10-02 18:53:07 +00:00
|
|
|
// Add other textures set
|
2008-10-01 14:17:52 +00:00
|
|
|
item = texturesets.Items.Add(General.Map.Data.OthersTextureSet.Name);
|
|
|
|
item.Tag = General.Map.Data.OthersTextureSet;
|
2008-10-01 20:04:50 +00:00
|
|
|
item.ImageIndex = 1;
|
2007-11-04 23:09:21 +00:00
|
|
|
|
2008-10-01 15:06:46 +00:00
|
|
|
// Select the last one that was selected
|
|
|
|
string selectname = General.Settings.ReadSetting("browserwindow.texturestextureset", "");
|
|
|
|
foreach(ListViewItem i in texturesets.Items) if(i.Text == selectname) i.Selected = true;
|
|
|
|
|
|
|
|
// None selected? Then select the first
|
|
|
|
if(texturesets.SelectedItems.Count == 0)
|
|
|
|
texturesets.Items[0].Selected = true;
|
2008-10-01 14:17:52 +00:00
|
|
|
|
|
|
|
// Make groups
|
|
|
|
usedgroup = browser.AddGroup("Used Textures");
|
|
|
|
availgroup = browser.AddGroup("Available Textures");
|
|
|
|
|
2007-11-04 23:09:21 +00:00
|
|
|
// Keep last position and size
|
|
|
|
lastposition = this.Location;
|
|
|
|
lastsize = this.Size;
|
2007-11-04 22:19:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Selection changed
|
|
|
|
private void browser_SelectedItemChanged()
|
|
|
|
{
|
|
|
|
apply.Enabled = (browser.SelectedItem != null);
|
2007-10-31 20:34:09 +00:00
|
|
|
}
|
2007-11-04 23:09:21 +00:00
|
|
|
|
|
|
|
// OK clicked
|
|
|
|
private void apply_Click(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
// Set selected name and close
|
|
|
|
selectedname = browser.SelectedItem.Text;
|
2007-11-10 19:24:52 +00:00
|
|
|
DialogResult = DialogResult.OK;
|
2007-11-04 23:09:21 +00:00
|
|
|
this.Close();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cancel clicked
|
|
|
|
private void cancel_Click(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
// No selection, close
|
|
|
|
selectedname = "";
|
2007-11-10 19:24:52 +00:00
|
|
|
DialogResult = DialogResult.Cancel;
|
2007-11-04 23:09:21 +00:00
|
|
|
this.Close();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Activated
|
|
|
|
private void TextureBrowserForm_Activated(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
// Focus the textbox
|
|
|
|
browser.FocusTextbox();
|
2008-09-28 21:20:56 +00:00
|
|
|
Cursor.Current = Cursors.Default;
|
2007-11-04 23:09:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Loading
|
|
|
|
private void TextureBrowserForm_Load(object sender, EventArgs e)
|
|
|
|
{
|
2008-10-01 12:42:30 +00:00
|
|
|
/*
|
2007-11-04 23:09:21 +00:00
|
|
|
// Position window from configuration settings
|
|
|
|
this.SuspendLayout();
|
|
|
|
this.Location = new Point(General.Settings.ReadSetting("browserwindow.positionx", this.Location.X),
|
|
|
|
General.Settings.ReadSetting("browserwindow.positiony", this.Location.Y));
|
|
|
|
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);
|
|
|
|
this.ResumeLayout(true);
|
2008-10-01 12:42:30 +00:00
|
|
|
*/
|
|
|
|
|
2007-11-04 23:09:21 +00:00
|
|
|
// 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);
|
2008-05-05 14:22:36 +00:00
|
|
|
|
2008-10-01 15:06:46 +00:00
|
|
|
// Save last selected texture set
|
|
|
|
if((texturesets.SelectedItems.Count > 0) && (texturesets.SelectedItems[0].Tag is MatchingTextureSet))
|
|
|
|
General.Settings.WriteSetting("browserwindow.texturestextureset", texturesets.SelectedItems[0].Text);
|
|
|
|
|
2008-05-05 14:22:36 +00:00
|
|
|
// Clean up
|
|
|
|
browser.CleanUp();
|
2007-11-04 23:09:21 +00:00
|
|
|
}
|
2007-11-10 19:24:52 +00:00
|
|
|
|
|
|
|
// Static method to browse for texture
|
|
|
|
// Returns null when cancelled.
|
|
|
|
public static string Browse(IWin32Window parent, string select)
|
|
|
|
{
|
|
|
|
TextureBrowserForm browser = new TextureBrowserForm();
|
|
|
|
if(browser.ShowDialog(parent) == DialogResult.OK)
|
|
|
|
{
|
|
|
|
// Return result
|
|
|
|
return browser.SelectedName;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Cancelled
|
2008-10-17 09:39:07 +00:00
|
|
|
return select;
|
2007-11-10 19:24:52 +00:00
|
|
|
}
|
|
|
|
}
|
2008-10-01 14:17:52 +00:00
|
|
|
|
|
|
|
// Texture set selected
|
|
|
|
private void texturesets_SelectedIndexChanged(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
// Anything slected?
|
|
|
|
if(texturesets.SelectedItems.Count > 0)
|
|
|
|
{
|
|
|
|
// Get the selected texture set
|
|
|
|
IFilledTextureSet set = (texturesets.SelectedItems[0].Tag as IFilledTextureSet);
|
|
|
|
|
|
|
|
// Start adding
|
|
|
|
browser.BeginAdding(false);
|
|
|
|
|
|
|
|
// Add all available textures and mark the images for temporary loading
|
|
|
|
foreach(ImageData img in set.Textures)
|
|
|
|
browser.Add(img.Name, img, img, availgroup);
|
|
|
|
|
|
|
|
// Add all used textures and mark the images for permanent loading
|
|
|
|
foreach(ImageData img in set.Textures)
|
|
|
|
if(img.UsedInMap) browser.Add(img.Name, img, img, usedgroup);
|
|
|
|
|
|
|
|
// Done adding
|
|
|
|
browser.EndAdding();
|
|
|
|
}
|
|
|
|
}
|
2007-10-31 20:34:09 +00:00
|
|
|
}
|
|
|
|
}
|