mirror of
https://github.com/waynebian01/Shigure.git
synced 2026-09-03 07:15:24 +08:00
2094 lines
67 KiB
C#
2094 lines
67 KiB
C#
using System.Drawing;
|
||
|
||
namespace Shigure;
|
||
|
||
public sealed class ModuleEditorControl : UserControl
|
||
{
|
||
private readonly ModuleStore _moduleStore;
|
||
private readonly Action _runtimeRestartRequested;
|
||
private readonly ConditionFieldCatalog _fieldCatalog;
|
||
private readonly KeymapCatalog _keymapCatalog;
|
||
private readonly ListBox _moduleList = new();
|
||
private readonly TextBox _nameBox = new();
|
||
private readonly ComboBox _classBox = new();
|
||
private readonly ComboBox _specBox = new();
|
||
private readonly ComboBox _partyTypeBox = new();
|
||
private readonly ComboBox _heroTalentBox = new();
|
||
private readonly DataGridView _rulesGrid = new();
|
||
private readonly DataGridView _adjustmentsGrid = new();
|
||
private readonly DataGridViewComboBoxColumn _spellColumn = new();
|
||
private readonly DataGridViewComboBoxColumn _unitColumn = new();
|
||
private readonly DataGridViewComboBoxColumn _adjustmentFieldColumn = new();
|
||
private readonly ListView _unitsList = new();
|
||
private readonly Label _pathLabel = new();
|
||
private readonly ToolTip _rulesGridToolTip = new()
|
||
{
|
||
InitialDelay = 300,
|
||
ReshowDelay = 100,
|
||
AutoPopDelay = 4000,
|
||
ShowAlways = true
|
||
};
|
||
private List<ModuleDefinition> _modules = new();
|
||
private ModuleDefinition? _selectedModule;
|
||
// 当前编辑中模块的动态单位/数量字段(含未保存的新增), 供目标下拉与条件字段使用。
|
||
private readonly List<ModuleUnit> _units = new();
|
||
private readonly List<ModuleCountField> _counts = new();
|
||
private readonly List<ModuleValueAdjustment> _valueAdjustments = new();
|
||
// 程序化恢复列宽时置真, 避免 ColumnWidthChanged 把默认值回写覆盖用户保存的宽度。
|
||
private bool _suppressColumnSave;
|
||
private bool _suppressUnitsColumnResize;
|
||
private static readonly PartyTypeOption[] PartyTypeOptions =
|
||
[
|
||
new("任意 (*)", null),
|
||
new("单人 (0)", "0"),
|
||
new("团队 (1-40)", "1-40"),
|
||
new("队伍 (46)", "46")
|
||
];
|
||
private static readonly MatchOption[] ClassOptions = BuildClassOptions();
|
||
// 这三列固定宽度并缓存; "条件"列为 Fill, 图标列固定且不缓存。
|
||
private static readonly string[] FixedWidthColumns = ["Enabled", "Spell", "Unit"];
|
||
private static readonly HashSet<string> NonAuraGroupFields = new(StringComparer.OrdinalIgnoreCase)
|
||
{
|
||
"生命值",
|
||
"职责",
|
||
"驱散"
|
||
};
|
||
|
||
public ModuleEditorControl(ModuleStore moduleStore, Action runtimeRestartRequested, string baseDirectory)
|
||
{
|
||
_moduleStore = moduleStore;
|
||
_runtimeRestartRequested = runtimeRestartRequested;
|
||
_fieldCatalog = ConditionFieldCatalog.Load(baseDirectory);
|
||
_keymapCatalog = KeymapCatalog.Load(baseDirectory);
|
||
InitializeComponent();
|
||
LoadModules();
|
||
}
|
||
|
||
private void InitializeComponent()
|
||
{
|
||
Dock = DockStyle.Fill;
|
||
BackColor = UiTheme.Surface;
|
||
ForeColor = UiTheme.Text;
|
||
Font = new Font("Microsoft YaHei UI", 9F, FontStyle.Regular, GraphicsUnit.Point);
|
||
|
||
var root = new TableLayoutPanel
|
||
{
|
||
Dock = DockStyle.Fill,
|
||
BackColor = UiTheme.Surface,
|
||
ColumnCount = 2,
|
||
RowCount = 1,
|
||
Margin = new Padding(0)
|
||
};
|
||
root.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 230));
|
||
root.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100));
|
||
Controls.Add(root);
|
||
|
||
root.Controls.Add(BuildSidebar(), 0, 0);
|
||
root.Controls.Add(BuildEditor(), 1, 0);
|
||
}
|
||
|
||
private Control BuildSidebar()
|
||
{
|
||
var sidebar = new TableLayoutPanel
|
||
{
|
||
Dock = DockStyle.Fill,
|
||
BackColor = UiTheme.Background,
|
||
Padding = new Padding(0, 0, 10, 0),
|
||
ColumnCount = 1,
|
||
RowCount = 2
|
||
};
|
||
sidebar.RowStyles.Add(new RowStyle(SizeType.Percent, 100));
|
||
sidebar.RowStyles.Add(new RowStyle(SizeType.Absolute, 38));
|
||
|
||
_moduleList.Dock = DockStyle.Fill;
|
||
UiTheme.StyleListBox(_moduleList, Font);
|
||
_moduleList.BackColor = UiTheme.Background;
|
||
_moduleList.SelectedIndexChanged += (_, _) => SelectModule(_moduleList.SelectedIndex);
|
||
sidebar.Controls.Add(_moduleList, 0, 0);
|
||
|
||
var buttons = new FlowLayoutPanel
|
||
{
|
||
Dock = DockStyle.Fill,
|
||
FlowDirection = FlowDirection.LeftToRight,
|
||
WrapContents = false,
|
||
BackColor = UiTheme.Background,
|
||
Margin = new Padding(0)
|
||
};
|
||
|
||
var addButton = UiTheme.CreateButton("新建", UiTheme.Field, UiTheme.Text);
|
||
addButton.Width = 72;
|
||
addButton.Height = 30;
|
||
addButton.Click += (_, _) => AddModule();
|
||
|
||
var reloadButton = UiTheme.CreateButton("刷新", UiTheme.Field, UiTheme.Text);
|
||
reloadButton.Width = 72;
|
||
reloadButton.Height = 30;
|
||
reloadButton.Click += (_, _) => LoadModules();
|
||
|
||
buttons.Controls.Add(addButton);
|
||
buttons.Controls.Add(reloadButton);
|
||
sidebar.Controls.Add(buttons, 0, 1);
|
||
|
||
return sidebar;
|
||
}
|
||
|
||
private Control BuildEditor()
|
||
{
|
||
var editor = new TableLayoutPanel
|
||
{
|
||
Dock = DockStyle.Fill,
|
||
BackColor = UiTheme.Surface,
|
||
Padding = new Padding(8, 0, 0, 4),
|
||
ColumnCount = 1,
|
||
RowCount = 4
|
||
};
|
||
editor.RowStyles.Add(new RowStyle(SizeType.Absolute, 74));
|
||
editor.RowStyles.Add(new RowStyle(SizeType.Absolute, 74));
|
||
editor.RowStyles.Add(new RowStyle(SizeType.Percent, 100));
|
||
editor.RowStyles.Add(new RowStyle(SizeType.Absolute, 48));
|
||
|
||
editor.Controls.Add(BuildNameRow(), 0, 0);
|
||
editor.Controls.Add(BuildMatchRow(), 0, 1);
|
||
editor.Controls.Add(BuildEditorTabs(), 0, 2);
|
||
editor.Controls.Add(BuildActionRow(), 0, 3);
|
||
return editor;
|
||
}
|
||
|
||
private Control BuildEditorTabs()
|
||
{
|
||
var root = new TableLayoutPanel
|
||
{
|
||
Dock = DockStyle.Fill,
|
||
Margin = new Padding(0, 8, 0, 6),
|
||
Padding = new Padding(0),
|
||
BackColor = UiTheme.Surface,
|
||
ColumnCount = 1,
|
||
RowCount = 2
|
||
};
|
||
root.RowStyles.Add(new RowStyle(SizeType.Absolute, 34));
|
||
root.RowStyles.Add(new RowStyle(SizeType.Percent, 100));
|
||
|
||
var tabBar = new TableLayoutPanel
|
||
{
|
||
Dock = DockStyle.Fill,
|
||
BackColor = UiTheme.Surface,
|
||
ColumnCount = 3,
|
||
RowCount = 1,
|
||
Margin = new Padding(0),
|
||
Padding = new Padding(0)
|
||
};
|
||
tabBar.RowStyles.Add(new RowStyle(SizeType.Percent, 100));
|
||
for (var i = 0; i < 3; i++)
|
||
{
|
||
tabBar.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100F / 3F));
|
||
}
|
||
|
||
var contentHost = new Panel
|
||
{
|
||
Dock = DockStyle.Fill,
|
||
BackColor = UiTheme.SurfaceRaised,
|
||
Margin = new Padding(0)
|
||
};
|
||
|
||
var pages = new[]
|
||
{
|
||
BuildUnitsPanel(showTitle: false),
|
||
BuildAdjustmentsPanel(showTitle: false),
|
||
BuildRulesPanel(showTitle: false)
|
||
};
|
||
foreach (var page in pages)
|
||
{
|
||
page.Dock = DockStyle.Fill;
|
||
page.Visible = false;
|
||
contentHost.Controls.Add(page);
|
||
}
|
||
|
||
var labels = new Label[3];
|
||
var selectedIndex = -1;
|
||
|
||
void SelectTab(int index)
|
||
{
|
||
if (selectedIndex == index)
|
||
{
|
||
return;
|
||
}
|
||
|
||
selectedIndex = index;
|
||
for (var i = 0; i < labels.Length; i++)
|
||
{
|
||
var selected = i == index;
|
||
labels[i].BackColor = selected ? UiTheme.Field : UiTheme.Surface;
|
||
labels[i].ForeColor = selected ? UiTheme.Text : UiTheme.Muted;
|
||
labels[i].Invalidate();
|
||
pages[i].Visible = selected;
|
||
if (selected)
|
||
{
|
||
pages[i].BringToFront();
|
||
}
|
||
}
|
||
}
|
||
|
||
var titles = new[] { "动态单位", "动态数值", "逻辑编辑" };
|
||
for (var i = 0; i < titles.Length; i++)
|
||
{
|
||
var index = i;
|
||
var label = new Label
|
||
{
|
||
Text = titles[i],
|
||
Dock = DockStyle.Fill,
|
||
TextAlign = ContentAlignment.MiddleCenter,
|
||
AutoSize = false,
|
||
BackColor = UiTheme.Surface,
|
||
ForeColor = UiTheme.Muted,
|
||
Cursor = Cursors.Hand,
|
||
Margin = new Padding(i == 0 ? 0 : 1, 0, 0, 0)
|
||
};
|
||
label.Click += (_, _) => SelectTab(index);
|
||
label.MouseEnter += (_, _) =>
|
||
{
|
||
if (selectedIndex != index)
|
||
{
|
||
label.BackColor = UiTheme.Hover;
|
||
}
|
||
};
|
||
label.MouseLeave += (_, _) =>
|
||
{
|
||
if (selectedIndex != index)
|
||
{
|
||
label.BackColor = UiTheme.Surface;
|
||
}
|
||
};
|
||
label.Paint += (_, e) =>
|
||
{
|
||
if (selectedIndex != index)
|
||
{
|
||
return;
|
||
}
|
||
|
||
using var accent = new SolidBrush(UiTheme.Accent);
|
||
e.Graphics.FillRectangle(accent, 8, label.Height - 3, Math.Max(0, label.Width - 16), 2);
|
||
};
|
||
|
||
labels[i] = label;
|
||
tabBar.Controls.Add(label, i, 0);
|
||
}
|
||
|
||
root.Controls.Add(tabBar, 0, 0);
|
||
root.Controls.Add(contentHost, 0, 1);
|
||
SelectTab(0);
|
||
return root;
|
||
}
|
||
|
||
private Control BuildAdjustmentsPanel(bool showTitle = true)
|
||
{
|
||
var panel = new TableLayoutPanel
|
||
{
|
||
Dock = DockStyle.Fill,
|
||
BackColor = UiTheme.SurfaceRaised,
|
||
ColumnCount = 1,
|
||
RowCount = showTitle ? 2 : 1,
|
||
Padding = new Padding(10),
|
||
Margin = showTitle ? new Padding(0, 2, 0, 4) : new Padding(0)
|
||
};
|
||
|
||
if (showTitle)
|
||
{
|
||
panel.RowStyles.Add(new RowStyle(SizeType.Absolute, 24));
|
||
panel.RowStyles.Add(new RowStyle(SizeType.Percent, 100));
|
||
panel.Controls.Add(new Label
|
||
{
|
||
Text = "动态数值编辑器",
|
||
Dock = DockStyle.Fill,
|
||
ForeColor = UiTheme.Muted,
|
||
TextAlign = ContentAlignment.MiddleLeft,
|
||
AutoEllipsis = true
|
||
}, 0, 0);
|
||
panel.Controls.Add(BuildAdjustmentsGrid(), 0, 1);
|
||
}
|
||
else
|
||
{
|
||
panel.RowStyles.Add(new RowStyle(SizeType.Percent, 100));
|
||
panel.Controls.Add(BuildAdjustmentsGrid(), 0, 0);
|
||
}
|
||
|
||
return panel;
|
||
}
|
||
|
||
private Control BuildRulesPanel(bool showTitle = true)
|
||
{
|
||
var panel = new TableLayoutPanel
|
||
{
|
||
Dock = DockStyle.Fill,
|
||
BackColor = UiTheme.SurfaceRaised,
|
||
ColumnCount = 1,
|
||
RowCount = showTitle ? 2 : 1,
|
||
Padding = new Padding(10),
|
||
Margin = showTitle ? new Padding(0, 2, 0, 0) : new Padding(0)
|
||
};
|
||
|
||
if (showTitle)
|
||
{
|
||
panel.RowStyles.Add(new RowStyle(SizeType.Absolute, 24));
|
||
panel.RowStyles.Add(new RowStyle(SizeType.Percent, 100));
|
||
panel.Controls.Add(new Label
|
||
{
|
||
Text = "逻辑编辑器",
|
||
Dock = DockStyle.Fill,
|
||
ForeColor = UiTheme.Muted,
|
||
TextAlign = ContentAlignment.MiddleLeft,
|
||
AutoEllipsis = true
|
||
}, 0, 0);
|
||
panel.Controls.Add(BuildRulesGrid(), 0, 1);
|
||
}
|
||
else
|
||
{
|
||
panel.RowStyles.Add(new RowStyle(SizeType.Percent, 100));
|
||
panel.Controls.Add(BuildRulesGrid(), 0, 0);
|
||
}
|
||
|
||
return panel;
|
||
}
|
||
|
||
private Control BuildUnitsPanel(bool showTitle = true)
|
||
{
|
||
var panel = new TableLayoutPanel
|
||
{
|
||
Dock = DockStyle.Fill,
|
||
BackColor = UiTheme.SurfaceRaised,
|
||
ColumnCount = 2,
|
||
RowCount = showTitle ? 2 : 1,
|
||
Padding = new Padding(10),
|
||
Margin = showTitle ? new Padding(0, 2, 0, 4) : new Padding(0)
|
||
};
|
||
panel.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100));
|
||
panel.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 92));
|
||
|
||
var contentRow = 0;
|
||
if (showTitle)
|
||
{
|
||
panel.RowStyles.Add(new RowStyle(SizeType.Absolute, 22));
|
||
panel.RowStyles.Add(new RowStyle(SizeType.Percent, 100));
|
||
|
||
var title = new Label
|
||
{
|
||
Text = "动态单位 / 单位数量",
|
||
Dock = DockStyle.Fill,
|
||
ForeColor = UiTheme.Muted,
|
||
TextAlign = ContentAlignment.MiddleLeft,
|
||
AutoEllipsis = true
|
||
};
|
||
panel.Controls.Add(title, 0, 0);
|
||
panel.SetColumnSpan(title, 2);
|
||
contentRow = 1;
|
||
}
|
||
else
|
||
{
|
||
panel.RowStyles.Add(new RowStyle(SizeType.Percent, 100));
|
||
}
|
||
|
||
foreach (var column in new[] { ("名称", 210), ("类型", 50), ("摘要", 160) })
|
||
{
|
||
_unitsList.Columns.Add(column.Item1, column.Item2);
|
||
}
|
||
|
||
_unitsList.MultiSelect = false;
|
||
UiTheme.StyleListView(_unitsList, Font);
|
||
_unitsList.DoubleClick += (_, _) => EditSelectedUnit();
|
||
_unitsList.Resize += (_, _) => StretchUnitsSummaryColumn();
|
||
_unitsList.HandleCreated += (_, _) => StretchUnitsSummaryColumn();
|
||
_unitsList.ColumnWidthChanged += (_, _) =>
|
||
{
|
||
if (!_suppressUnitsColumnResize)
|
||
{
|
||
StretchUnitsSummaryColumn();
|
||
}
|
||
};
|
||
panel.Controls.Add(_unitsList, 0, contentRow);
|
||
|
||
var buttons = new FlowLayoutPanel
|
||
{
|
||
Dock = DockStyle.Fill,
|
||
FlowDirection = FlowDirection.TopDown,
|
||
WrapContents = false,
|
||
BackColor = UiTheme.SurfaceRaised,
|
||
Margin = new Padding(6, 0, 0, 0),
|
||
Padding = new Padding(0)
|
||
};
|
||
buttons.Resize += (_, _) => LayoutUnitActionButtons(buttons);
|
||
|
||
var addButton = CreateUnitActionButton("添加", UiTheme.Field, UiTheme.Text, bottomGap: true);
|
||
addButton.Click += (_, _) => AddUnit();
|
||
|
||
var editButton = CreateUnitActionButton("编辑", UiTheme.Field, UiTheme.Text, bottomGap: true);
|
||
editButton.Click += (_, _) => EditSelectedUnit();
|
||
|
||
var deleteButton = CreateUnitActionButton("删除", UiTheme.Field, UiTheme.Danger, bottomGap: false);
|
||
deleteButton.Click += (_, _) => DeleteSelectedUnit();
|
||
|
||
buttons.Controls.Add(addButton);
|
||
buttons.Controls.Add(editButton);
|
||
buttons.Controls.Add(deleteButton);
|
||
panel.Controls.Add(buttons, 1, contentRow);
|
||
|
||
return panel;
|
||
}
|
||
|
||
private Control BuildNameRow()
|
||
{
|
||
var row = new TableLayoutPanel
|
||
{
|
||
Dock = DockStyle.Fill,
|
||
BackColor = UiTheme.SurfaceRaised,
|
||
ColumnCount = 2,
|
||
RowCount = 2,
|
||
Padding = new Padding(10, 8, 10, 2),
|
||
Margin = new Padding(0, 0, 0, 8)
|
||
};
|
||
row.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, 58));
|
||
row.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 100));
|
||
row.RowStyles.Add(new RowStyle(SizeType.Absolute, 30));
|
||
row.RowStyles.Add(new RowStyle(SizeType.Absolute, 24));
|
||
|
||
row.Controls.Add(CreateLabel("名称"), 0, 0);
|
||
StyleTextBox(_nameBox);
|
||
_nameBox.Dock = DockStyle.Fill;
|
||
row.Controls.Add(_nameBox, 1, 0);
|
||
|
||
_pathLabel.Dock = DockStyle.Fill;
|
||
_pathLabel.ForeColor = UiTheme.Muted;
|
||
_pathLabel.TextAlign = ContentAlignment.MiddleLeft;
|
||
_pathLabel.AutoEllipsis = true;
|
||
row.Controls.Add(_pathLabel, 0, 1);
|
||
row.SetColumnSpan(_pathLabel, 2);
|
||
|
||
return row;
|
||
}
|
||
|
||
private Control BuildMatchRow()
|
||
{
|
||
var matchLabels = new[] { "职业", "专精", "英雄天赋", "队伍类型" };
|
||
|
||
var row = new TableLayoutPanel
|
||
{
|
||
Dock = DockStyle.Fill,
|
||
BackColor = UiTheme.SurfaceRaised,
|
||
ColumnCount = 8,
|
||
RowCount = 2,
|
||
Padding = new Padding(10, 8, 10, 8),
|
||
Margin = new Padding(0)
|
||
};
|
||
foreach (var label in matchLabels)
|
||
{
|
||
row.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, MeasureLabelColumnWidth(label, Font)));
|
||
row.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 25));
|
||
}
|
||
|
||
ResetClassOptions(_classBox);
|
||
ResetSpecOptions(_specBox, null);
|
||
ResetHeroTalentOptions(_heroTalentBox, null, null);
|
||
_classBox.SelectedIndexChanged += (_, _) =>
|
||
{
|
||
ResetSpecOptions(_specBox, ReadMatchCombo(_classBox));
|
||
ResetHeroTalentOptions(_heroTalentBox, ReadMatchCombo(_classBox), ReadMatchCombo(_specBox));
|
||
RefreshKeymapColumns();
|
||
RefreshAdjustmentFieldColumn();
|
||
};
|
||
_specBox.SelectedIndexChanged += (_, _) =>
|
||
{
|
||
ResetHeroTalentOptions(_heroTalentBox, ReadMatchCombo(_classBox), ReadMatchCombo(_specBox));
|
||
RefreshAdjustmentFieldColumn();
|
||
};
|
||
|
||
AddMatchField(row, "职业:", _classBox, 0);
|
||
AddMatchField(row, "专精:", _specBox, 2);
|
||
AddMatchField(row, "英雄天赋:", _heroTalentBox, 4);
|
||
AddMatchField(row, "队伍类型:", _partyTypeBox, 6);
|
||
return row;
|
||
}
|
||
|
||
private Control BuildAdjustmentsGrid()
|
||
{
|
||
UiTheme.StyleDataGridView(_adjustmentsGrid);
|
||
_adjustmentsGrid.AllowUserToAddRows = true;
|
||
_adjustmentsGrid.AllowUserToDeleteRows = true;
|
||
_adjustmentsGrid.AllowUserToResizeColumns = true;
|
||
_adjustmentsGrid.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.None;
|
||
|
||
_adjustmentsGrid.Columns.Add(new DataGridViewCheckBoxColumn
|
||
{
|
||
Name = "Enabled",
|
||
HeaderText = "启用",
|
||
Width = 70,
|
||
AutoSizeMode = DataGridViewAutoSizeColumnMode.None
|
||
});
|
||
|
||
_adjustmentFieldColumn.Name = "Field";
|
||
_adjustmentFieldColumn.HeaderText = "数值";
|
||
_adjustmentFieldColumn.Width = 190;
|
||
_adjustmentFieldColumn.AutoSizeMode = DataGridViewAutoSizeColumnMode.None;
|
||
_adjustmentFieldColumn.FlatStyle = FlatStyle.Flat;
|
||
_adjustmentsGrid.Columns.Add(_adjustmentFieldColumn);
|
||
|
||
_adjustmentsGrid.Columns.Add(new DataGridViewTextBoxColumn
|
||
{
|
||
Name = "Delta",
|
||
HeaderText = "调整",
|
||
Width = 80,
|
||
AutoSizeMode = DataGridViewAutoSizeColumnMode.None
|
||
});
|
||
_adjustmentsGrid.Columns.Add(new DataGridViewTextBoxColumn
|
||
{
|
||
Name = "Condition",
|
||
HeaderText = "条件 (点击编辑)",
|
||
AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill,
|
||
ReadOnly = true
|
||
});
|
||
_adjustmentsGrid.Columns.Add(new DataGridViewButtonColumn
|
||
{
|
||
Name = "Delete",
|
||
HeaderText = string.Empty,
|
||
Text = "×",
|
||
ToolTipText = "删除",
|
||
UseColumnTextForButtonValue = true,
|
||
Width = 32,
|
||
MinimumWidth = 32,
|
||
AutoSizeMode = DataGridViewAutoSizeColumnMode.None,
|
||
Resizable = DataGridViewTriState.False,
|
||
FlatStyle = FlatStyle.Flat
|
||
});
|
||
|
||
_adjustmentsGrid.Columns["Delete"]!.DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
|
||
_adjustmentsGrid.Columns["Delete"]!.DefaultCellStyle.ForeColor = UiTheme.Danger;
|
||
_adjustmentsGrid.CellClick += OnAdjustmentsGridCellClick;
|
||
_adjustmentsGrid.CellPainting += OnAdjustmentsGridCellPainting;
|
||
_adjustmentsGrid.DataError += (_, e) => e.ThrowException = false;
|
||
_adjustmentsGrid.CurrentCellDirtyStateChanged += (_, _) =>
|
||
{
|
||
if (_adjustmentsGrid.IsCurrentCellDirty && _adjustmentsGrid.CurrentCell is DataGridViewComboBoxCell or DataGridViewCheckBoxCell)
|
||
{
|
||
_adjustmentsGrid.CommitEdit(DataGridViewDataErrorContexts.Commit);
|
||
}
|
||
};
|
||
RefreshAdjustmentFieldColumn();
|
||
return _adjustmentsGrid;
|
||
}
|
||
|
||
private Control BuildRulesGrid()
|
||
{
|
||
UiTheme.StyleDataGridView(_rulesGrid);
|
||
_rulesGrid.AllowUserToAddRows = true;
|
||
_rulesGrid.AllowUserToDeleteRows = true;
|
||
_rulesGrid.AllowUserToResizeColumns = true;
|
||
_rulesGrid.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.None;
|
||
_rulesGrid.ShowCellToolTips = false;
|
||
|
||
// 启用/技能/目标 三列宽度固定可调并缓存; 条件列用 Fill 自动充满剩余窗口。
|
||
_rulesGrid.Columns.Add(new DataGridViewCheckBoxColumn
|
||
{
|
||
Name = "Enabled",
|
||
HeaderText = "启用",
|
||
Width = 100,
|
||
AutoSizeMode = DataGridViewAutoSizeColumnMode.None
|
||
});
|
||
_spellColumn.Name = "Spell";
|
||
_spellColumn.HeaderText = "技能";
|
||
_spellColumn.Width = 150;
|
||
_spellColumn.AutoSizeMode = DataGridViewAutoSizeColumnMode.None;
|
||
_spellColumn.FlatStyle = FlatStyle.Flat;
|
||
_rulesGrid.Columns.Add(_spellColumn);
|
||
_unitColumn.Name = "Unit";
|
||
_unitColumn.HeaderText = "目标";
|
||
_unitColumn.Width = 150;
|
||
_unitColumn.AutoSizeMode = DataGridViewAutoSizeColumnMode.None;
|
||
_unitColumn.FlatStyle = FlatStyle.Flat;
|
||
_rulesGrid.Columns.Add(_unitColumn);
|
||
_rulesGrid.Columns.Add(new DataGridViewTextBoxColumn
|
||
{
|
||
Name = "Condition",
|
||
HeaderText = "条件 (点击编辑)",
|
||
AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill,
|
||
ReadOnly = true
|
||
});
|
||
AddRuleIconColumn("MoveUp", "▲", "上移");
|
||
AddRuleIconColumn("MoveDown", "▼", "下移");
|
||
AddRuleIconColumn("Copy", "⧉", "复制到下一行");
|
||
AddRuleIconColumn("InsertBlank", "+", "在下一行添加空白条件");
|
||
AddRuleIconColumn("Delete", "×", "删除", UiTheme.Danger);
|
||
_rulesGrid.CellClick += OnRulesGridCellClick;
|
||
_rulesGrid.CellPainting += OnRulesGridCellPainting;
|
||
_rulesGrid.CellMouseEnter += OnRulesGridCellMouseEnter;
|
||
_rulesGrid.CellMouseLeave += OnRulesGridCellMouseLeave;
|
||
_rulesGrid.MouseLeave += (_, _) => _rulesGridToolTip.Hide(_rulesGrid);
|
||
_rulesGrid.DataError += (_, e) => e.ThrowException = false;
|
||
_rulesGrid.ColumnWidthChanged += OnColumnWidthChanged;
|
||
_rulesGrid.CellValueChanged += OnRulesGridCellValueChanged;
|
||
// 组合框改值默认要等失焦才提交; 立即提交以便"目标"随"技能"实时联动。
|
||
_rulesGrid.CurrentCellDirtyStateChanged += (_, _) =>
|
||
{
|
||
if (_rulesGrid.IsCurrentCellDirty && _rulesGrid.CurrentCell is DataGridViewComboBoxCell)
|
||
{
|
||
_rulesGrid.CommitEdit(DataGridViewDataErrorContexts.Commit);
|
||
}
|
||
};
|
||
RefreshKeymapColumns();
|
||
ApplyColumnWidths(UiCacheStore.Load().ModuleRulesGridColumns);
|
||
|
||
return _rulesGrid;
|
||
}
|
||
|
||
private void AddRuleIconColumn(string name, string icon, string tooltip, Color? foreColor = null)
|
||
{
|
||
var column = new DataGridViewButtonColumn
|
||
{
|
||
Name = name,
|
||
HeaderText = string.Empty,
|
||
Text = icon,
|
||
UseColumnTextForButtonValue = true,
|
||
Width = 32,
|
||
MinimumWidth = 32,
|
||
AutoSizeMode = DataGridViewAutoSizeColumnMode.None,
|
||
Resizable = DataGridViewTriState.False,
|
||
FlatStyle = FlatStyle.Flat
|
||
};
|
||
column.DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
|
||
column.DefaultCellStyle.ForeColor = foreColor ?? UiTheme.Muted;
|
||
column.DefaultCellStyle.SelectionForeColor = foreColor ?? UiTheme.Text;
|
||
_rulesGrid.Columns.Add(column);
|
||
}
|
||
|
||
/// <summary>
|
||
/// 按当前选中职业的 keymap 重建“技能/目标”下拉选项。
|
||
/// 技能去重(同名技能只出现一次), unit 去重升序; 首项留空表示不填。
|
||
/// 已有行里不在 keymap 中的旧值会补录为额外选项, 避免数据丢失。
|
||
/// </summary>
|
||
private void RefreshKeymapColumns()
|
||
{
|
||
var classId = ReadMatchCombo(_classBox);
|
||
|
||
_spellColumn.Items.Clear();
|
||
_spellColumn.Items.Add(string.Empty);
|
||
_spellColumn.Items.Add(ModuleSpecialActions.PauseSpell);
|
||
_spellColumn.Items.Add(ModuleSpecialActions.FailedSpell);
|
||
foreach (var spell in _keymapCatalog.GetSpells(classId))
|
||
{
|
||
if (!_spellColumn.Items.Contains(spell))
|
||
{
|
||
_spellColumn.Items.Add(spell);
|
||
}
|
||
}
|
||
|
||
// 列级 unit 选项作为新行(尚未选技能)的默认全集; 已有行用单元格级选项按技能联动。
|
||
_unitColumn.Items.Clear();
|
||
_unitColumn.Items.Add(string.Empty);
|
||
foreach (var unit in _keymapCatalog.GetUnits(classId))
|
||
{
|
||
_unitColumn.Items.Add(unit.ToString());
|
||
}
|
||
|
||
foreach (DataGridViewRow row in _rulesGrid.Rows)
|
||
{
|
||
if (row.IsNewRow)
|
||
{
|
||
continue;
|
||
}
|
||
|
||
EnsureComboItem(_spellColumn, row.Cells["Spell"].Value);
|
||
UpdateUnitCellItems(row);
|
||
}
|
||
}
|
||
|
||
/// <summary>
|
||
/// 按该行当前选中的技能, 把"目标"单元格的可选 unit 重建为该技能在 keymap 中实际配置过的值。
|
||
/// 旧值若不在新选项内则补录保留; 若是技能切换导致的非法值则清空。
|
||
/// </summary>
|
||
private void UpdateUnitCellItems(DataGridViewRow row)
|
||
{
|
||
if (row.IsNewRow || row.Cells["Unit"] is not DataGridViewComboBoxCell cell)
|
||
{
|
||
return;
|
||
}
|
||
|
||
RebuildUnitCell(row, cell.Value?.ToString());
|
||
}
|
||
|
||
/// <summary>
|
||
/// 重建"目标"单元格选项并写入目标值。选项 = 当前技能在 keymap 中的 unit 集合。
|
||
/// desiredValue 合法则保留; 自定义技能(keymap 无该技能)保留旧值; 否则清空。
|
||
/// </summary>
|
||
private void RebuildUnitCell(DataGridViewRow row, string? desiredValue)
|
||
{
|
||
if (row.IsNewRow || row.Cells["Unit"] is not DataGridViewComboBoxCell cell)
|
||
{
|
||
return;
|
||
}
|
||
|
||
var spell = row.Cells["Spell"].Value?.ToString();
|
||
cell.Items.Clear();
|
||
cell.Items.Add(string.Empty);
|
||
|
||
if (ModuleSpecialActions.IsPauseSpell(spell))
|
||
{
|
||
cell.Value = string.Empty;
|
||
return;
|
||
}
|
||
|
||
var classId = ReadMatchCombo(_classBox);
|
||
var allowed = ModuleSpecialActions.IsFailedSpell(spell)
|
||
? _keymapCatalog.GetUnitsForSpells(classId, ModuleSpecialActions.FailedSpellNames)
|
||
: _keymapCatalog.GetUnitsForSpell(classId, spell);
|
||
|
||
foreach (var unit in allowed)
|
||
{
|
||
cell.Items.Add(unit.ToString());
|
||
}
|
||
|
||
// 动态单位与技能无关, 始终可选; 放在 keymap 编号之后。
|
||
foreach (var unit in _units)
|
||
{
|
||
if (!string.IsNullOrWhiteSpace(unit.Name) && !cell.Items.Contains(unit.Name))
|
||
{
|
||
cell.Items.Add(unit.Name);
|
||
}
|
||
}
|
||
|
||
if (string.IsNullOrEmpty(desiredValue))
|
||
{
|
||
cell.Value = string.Empty;
|
||
}
|
||
else if (cell.Items.Contains(desiredValue))
|
||
{
|
||
// keymap 编号或动态单位名(已在上面加入), 直接保留。
|
||
cell.Value = desiredValue;
|
||
}
|
||
else if (allowed.Count == 0)
|
||
{
|
||
// 该技能不在 keymap(自定义技能), 保留旧值不强制清空。
|
||
cell.Items.Add(desiredValue);
|
||
cell.Value = desiredValue;
|
||
}
|
||
else
|
||
{
|
||
// 技能切换导致旧的数字目标非法, 清空。
|
||
cell.Value = string.Empty;
|
||
}
|
||
}
|
||
|
||
private void OnRulesGridCellValueChanged(object? sender, DataGridViewCellEventArgs e)
|
||
{
|
||
if (e.RowIndex < 0 || e.ColumnIndex < 0)
|
||
{
|
||
return;
|
||
}
|
||
|
||
// 技能改变时联动刷新该行"目标"的可选值。
|
||
if (_rulesGrid.Columns[e.ColumnIndex].Name == "Spell")
|
||
{
|
||
UpdateUnitCellItems(_rulesGrid.Rows[e.RowIndex]);
|
||
}
|
||
}
|
||
|
||
private static void EnsureComboItem(DataGridViewComboBoxColumn column, object? value)
|
||
{
|
||
var text = value?.ToString();
|
||
if (!string.IsNullOrEmpty(text) && !column.Items.Contains(text))
|
||
{
|
||
column.Items.Add(text);
|
||
}
|
||
}
|
||
|
||
private void RefreshAdjustmentFieldColumn()
|
||
{
|
||
_adjustmentFieldColumn.Items.Clear();
|
||
_adjustmentFieldColumn.Items.Add(string.Empty);
|
||
foreach (var field in BuildAdjustmentFields())
|
||
{
|
||
if (!_adjustmentFieldColumn.Items.Contains(field.Name))
|
||
{
|
||
_adjustmentFieldColumn.Items.Add(field.Name);
|
||
}
|
||
}
|
||
|
||
foreach (DataGridViewRow row in _adjustmentsGrid.Rows)
|
||
{
|
||
if (!row.IsNewRow)
|
||
{
|
||
EnsureComboItem(_adjustmentFieldColumn, row.Cells["Field"].Value);
|
||
}
|
||
}
|
||
}
|
||
|
||
private IReadOnlyList<ConditionField> BuildAdjustmentFields()
|
||
{
|
||
var fields = new List<ConditionField>();
|
||
var seen = new HashSet<string>(StringComparer.Ordinal);
|
||
foreach (var field in _fieldCatalog.GetFields(ReadMatchCombo(_classBox), ReadMatchCombo(_specBox)))
|
||
{
|
||
if (field.Category == ConditionFieldCategory.State && field.Type == ConditionFieldType.Int)
|
||
{
|
||
AddAdjustmentField(fields, seen, field.Name, field.DisplayName, ConditionFieldCategory.State);
|
||
}
|
||
}
|
||
|
||
foreach (var unit in _units)
|
||
{
|
||
if (!string.IsNullOrWhiteSpace(unit.HealthName))
|
||
{
|
||
AddAdjustmentField(fields, seen, unit.HealthName, $"{unit.HealthName} (生命值)", ConditionFieldCategory.DynamicUnit);
|
||
}
|
||
}
|
||
|
||
foreach (var count in _counts)
|
||
{
|
||
if (!string.IsNullOrWhiteSpace(count.Name))
|
||
{
|
||
AddAdjustmentField(fields, seen, count.Name, $"人数: {count.Name}", ConditionFieldCategory.DynamicUnit);
|
||
}
|
||
}
|
||
|
||
return fields;
|
||
}
|
||
|
||
private static void AddAdjustmentField(
|
||
List<ConditionField> fields,
|
||
HashSet<string> seen,
|
||
string name,
|
||
string displayName,
|
||
ConditionFieldCategory category)
|
||
{
|
||
if (string.IsNullOrWhiteSpace(name) || !seen.Add(name))
|
||
{
|
||
return;
|
||
}
|
||
|
||
fields.Add(new ConditionField(name, displayName, ConditionFieldType.Int, category));
|
||
}
|
||
|
||
private void AddUnit()
|
||
{
|
||
using var editor = new UnitEditorForm(GetAuraFields(), CollectTakenNames(), null, null);
|
||
if (editor.ShowDialog(FindForm()) != DialogResult.OK)
|
||
{
|
||
return;
|
||
}
|
||
|
||
if (editor.ResultUnit is { } unit)
|
||
{
|
||
_units.Add(unit);
|
||
}
|
||
else if (editor.ResultCount is { } count)
|
||
{
|
||
_counts.Add(count);
|
||
}
|
||
|
||
RefreshUnitsList();
|
||
RefreshUnitDependentUi();
|
||
RefreshAdjustmentFieldColumn();
|
||
}
|
||
|
||
private void EditSelectedUnit()
|
||
{
|
||
var (kind, index) = GetSelectedUnitRef();
|
||
if (kind == UnitRowKind.None)
|
||
{
|
||
return;
|
||
}
|
||
|
||
var existingUnit = kind == UnitRowKind.Unit ? _units[index] : null;
|
||
var existingCount = kind == UnitRowKind.Count ? _counts[index] : null;
|
||
var ownName = existingUnit?.Name ?? existingCount?.Name;
|
||
var ownHealthName = existingUnit?.HealthName;
|
||
|
||
using var editor = new UnitEditorForm(GetAuraFields(), CollectTakenNames(ownName, ownHealthName), existingUnit, existingCount);
|
||
if (editor.ShowDialog(FindForm()) != DialogResult.OK)
|
||
{
|
||
return;
|
||
}
|
||
|
||
// 类别可能在编辑中改变(单位↔数量), 先移除原项再按结果加入。
|
||
if (kind == UnitRowKind.Unit)
|
||
{
|
||
_units.RemoveAt(index);
|
||
}
|
||
else
|
||
{
|
||
_counts.RemoveAt(index);
|
||
}
|
||
|
||
if (editor.ResultUnit is { } unit)
|
||
{
|
||
_units.Add(unit);
|
||
}
|
||
else if (editor.ResultCount is { } count)
|
||
{
|
||
_counts.Add(count);
|
||
}
|
||
|
||
RefreshUnitsList();
|
||
RefreshUnitDependentUi();
|
||
RefreshAdjustmentFieldColumn();
|
||
}
|
||
|
||
private void DeleteSelectedUnit()
|
||
{
|
||
var (kind, index) = GetSelectedUnitRef();
|
||
if (kind == UnitRowKind.None)
|
||
{
|
||
return;
|
||
}
|
||
|
||
if (kind == UnitRowKind.Unit)
|
||
{
|
||
_units.RemoveAt(index);
|
||
}
|
||
else
|
||
{
|
||
_counts.RemoveAt(index);
|
||
}
|
||
|
||
RefreshUnitsList();
|
||
RefreshUnitDependentUi();
|
||
RefreshAdjustmentFieldColumn();
|
||
}
|
||
|
||
// ListView 行顺序: 先全部单位, 再全部数量。把选中行映射回对应列表索引。
|
||
private (UnitRowKind Kind, int Index) GetSelectedUnitRef()
|
||
{
|
||
if (_unitsList.SelectedIndices.Count == 0)
|
||
{
|
||
return (UnitRowKind.None, -1);
|
||
}
|
||
|
||
var row = _unitsList.SelectedIndices[0];
|
||
if (row < _units.Count)
|
||
{
|
||
return (UnitRowKind.Unit, row);
|
||
}
|
||
|
||
var countIndex = row - _units.Count;
|
||
return countIndex < _counts.Count ? (UnitRowKind.Count, countIndex) : (UnitRowKind.None, -1);
|
||
}
|
||
|
||
private void RefreshUnitsList()
|
||
{
|
||
_unitsList.BeginUpdate();
|
||
_unitsList.Items.Clear();
|
||
foreach (var unit in _units)
|
||
{
|
||
var name = string.IsNullOrWhiteSpace(unit.HealthName) ? unit.Name : $"{unit.Name} / {unit.HealthName}";
|
||
_unitsList.Items.Add(new ListViewItem([name, "单位", DescribeUnit(unit)]));
|
||
}
|
||
|
||
foreach (var count in _counts)
|
||
{
|
||
_unitsList.Items.Add(new ListViewItem([count.Name, "数量", DescribeCount(count)]));
|
||
}
|
||
|
||
_unitsList.EndUpdate();
|
||
}
|
||
|
||
// 单位/数量增删改后, 刷新各规则行"目标"下拉以反映最新的动态单位名。
|
||
private void RefreshUnitDependentUi()
|
||
{
|
||
foreach (DataGridViewRow row in _rulesGrid.Rows)
|
||
{
|
||
if (!row.IsNewRow)
|
||
{
|
||
UpdateUnitCellItems(row);
|
||
}
|
||
}
|
||
}
|
||
|
||
private IReadOnlyList<string> GetAuraFields()
|
||
{
|
||
return _fieldCatalog
|
||
.GetGroupFields(ReadMatchCombo(_classBox), ReadMatchCombo(_specBox))
|
||
.Select(field => field.Name)
|
||
.Where(name => !NonAuraGroupFields.Contains(name))
|
||
.ToList();
|
||
}
|
||
|
||
// 名称查重集合: 其它单位/数量(含生命值名) + 当前职业/专精的状态字段与 group 字段; 排除正在编辑项自身的名称。
|
||
private IReadOnlyCollection<string> CollectTakenNames(params string?[] ownNames)
|
||
{
|
||
var classId = ReadMatchCombo(_classBox);
|
||
var specId = ReadMatchCombo(_specBox);
|
||
var taken = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
|
||
|
||
foreach (var unit in _units)
|
||
{
|
||
taken.Add(unit.Name);
|
||
if (!string.IsNullOrWhiteSpace(unit.HealthName))
|
||
{
|
||
taken.Add(unit.HealthName);
|
||
}
|
||
}
|
||
|
||
foreach (var count in _counts)
|
||
{
|
||
taken.Add(count.Name);
|
||
}
|
||
|
||
foreach (var field in _fieldCatalog.GetFields(classId, specId))
|
||
{
|
||
taken.Add(field.Name);
|
||
}
|
||
|
||
foreach (var field in _fieldCatalog.GetGroupFields(classId, specId))
|
||
{
|
||
taken.Add(field.Name);
|
||
}
|
||
|
||
foreach (var ownName in ownNames)
|
||
{
|
||
if (!string.IsNullOrEmpty(ownName))
|
||
{
|
||
taken.Remove(ownName);
|
||
}
|
||
}
|
||
|
||
return taken;
|
||
}
|
||
|
||
private static string DescribeUnit(ModuleUnit unit)
|
||
{
|
||
var threshold = unit.HealthThreshold ?? 100;
|
||
var aura = unit.AuraNames is { Count: > 0 } ? unit.AuraNames[0] : "?";
|
||
var auras = unit.AuraNames is { Count: > 0 } ? string.Join("/", unit.AuraNames) : "?";
|
||
var dir = unit.Reverse ? "逆序" : "正序";
|
||
return unit.Kind switch
|
||
{
|
||
UnitSelectorKind.LowestHealth => $"血量最低 (<{threshold})",
|
||
UnitSelectorKind.LowestHealthWithAnyAura => $"带任一[{auras}]且血最低 (<{threshold})",
|
||
UnitSelectorKind.LowestHealthWithoutAura => $"不带[{aura}]且血最低 (<{threshold})",
|
||
UnitSelectorKind.LowestHealthWithAura => $"带[{aura}]且血最低 (<{threshold})",
|
||
UnitSelectorKind.LowestHealthWithAuraCount => $"[{aura}]={unit.AuraCount}且血最低 (<{threshold})",
|
||
UnitSelectorKind.UnitWithRole => $"职责={unit.Role} {dir}首个",
|
||
UnitSelectorKind.UnitWithRoleWithoutAura => $"职责={unit.Role}且不带[{aura}] {dir}",
|
||
UnitSelectorKind.UnitWithAura => $"带[{aura}] 持续最久",
|
||
UnitSelectorKind.UnitWithDispelType => $"驱散类型={unit.DispelType}",
|
||
_ => unit.Kind.ToString()
|
||
};
|
||
}
|
||
|
||
private static string DescribeCount(ModuleCountField count)
|
||
{
|
||
var threshold = count.HealthThreshold ?? 100;
|
||
return count.Kind switch
|
||
{
|
||
CountKind.UnitsBelowHealth => $"血量<{threshold} 的人数",
|
||
CountKind.UnitsWithoutAuraBelowHealth => $"不带[{count.AuraName}]且血<{threshold} 的人数",
|
||
CountKind.UnitsWithAura => $"带[{count.AuraName}] 的人数",
|
||
_ => count.Kind.ToString()
|
||
};
|
||
}
|
||
|
||
private enum UnitRowKind
|
||
{
|
||
None,
|
||
Unit,
|
||
Count
|
||
}
|
||
|
||
private sealed record RuleRowValues(bool Enabled, string Spell, string UnitText, string Condition);
|
||
|
||
private void ApplyColumnWidths(Dictionary<string, int>? widths)
|
||
{
|
||
if (widths is null || widths.Count == 0)
|
||
{
|
||
return;
|
||
}
|
||
|
||
_suppressColumnSave = true;
|
||
try
|
||
{
|
||
foreach (var name in FixedWidthColumns)
|
||
{
|
||
if (widths.TryGetValue(name, out var width) && width > 0)
|
||
{
|
||
_rulesGrid.Columns[name]!.Width = width;
|
||
}
|
||
}
|
||
}
|
||
finally
|
||
{
|
||
_suppressColumnSave = false;
|
||
}
|
||
}
|
||
|
||
private void OnColumnWidthChanged(object? sender, DataGridViewColumnEventArgs e)
|
||
{
|
||
// Fill 列(条件)宽度随窗口/其它列变化, 不参与保存; 程序化恢复期间也跳过。
|
||
if (_suppressColumnSave || e.Column.Name == "Condition")
|
||
{
|
||
return;
|
||
}
|
||
|
||
SaveColumnWidths();
|
||
}
|
||
|
||
private void SaveColumnWidths()
|
||
{
|
||
var cache = UiCacheStore.Load();
|
||
cache.ModuleRulesGridColumns ??= new();
|
||
|
||
foreach (var name in FixedWidthColumns)
|
||
{
|
||
cache.ModuleRulesGridColumns[name] = _rulesGrid.Columns[name]!.Width;
|
||
}
|
||
|
||
UiCacheStore.Save(cache);
|
||
}
|
||
|
||
private void OnRulesGridCellClick(object? sender, DataGridViewCellEventArgs e)
|
||
{
|
||
if (e.RowIndex < 0 || e.ColumnIndex < 0)
|
||
{
|
||
return;
|
||
}
|
||
|
||
var columnName = _rulesGrid.Columns[e.ColumnIndex].Name;
|
||
if (columnName == "MoveUp")
|
||
{
|
||
MoveRule(e.RowIndex, -1);
|
||
return;
|
||
}
|
||
|
||
if (columnName == "MoveDown")
|
||
{
|
||
MoveRule(e.RowIndex, 1);
|
||
return;
|
||
}
|
||
|
||
if (columnName == "Copy")
|
||
{
|
||
CopyRule(e.RowIndex);
|
||
return;
|
||
}
|
||
|
||
if (columnName == "InsertBlank")
|
||
{
|
||
InsertBlankRule(e.RowIndex);
|
||
return;
|
||
}
|
||
|
||
if (columnName == "Delete")
|
||
{
|
||
DeleteRule(e.RowIndex);
|
||
return;
|
||
}
|
||
|
||
if (columnName == "Condition")
|
||
{
|
||
OpenConditionEditor(e.RowIndex);
|
||
}
|
||
}
|
||
|
||
private void OnRulesGridCellPainting(object? sender, DataGridViewCellPaintingEventArgs e)
|
||
{
|
||
if (e.RowIndex < 0 || e.ColumnIndex < 0)
|
||
{
|
||
return;
|
||
}
|
||
|
||
var columnName = _rulesGrid.Columns[e.ColumnIndex].Name;
|
||
if (columnName is not ("MoveUp" or "MoveDown" or "Copy" or "InsertBlank" or "Delete"))
|
||
{
|
||
return;
|
||
}
|
||
|
||
var icon = columnName switch
|
||
{
|
||
"MoveUp" => "▲",
|
||
"MoveDown" => "▼",
|
||
"Copy" => "⧉",
|
||
"InsertBlank" => "+",
|
||
_ => "×"
|
||
};
|
||
var enabled = IsRuleIconEnabled(columnName, e.RowIndex);
|
||
var color = columnName == "Delete" ? UiTheme.Danger : UiTheme.Muted;
|
||
if (!enabled)
|
||
{
|
||
color = Color.FromArgb(70, color);
|
||
}
|
||
|
||
PaintGridIconCell(_rulesGrid, e, icon, color);
|
||
}
|
||
|
||
private void OnRulesGridCellMouseEnter(object? sender, DataGridViewCellEventArgs e)
|
||
{
|
||
if (e.RowIndex < 0 || e.ColumnIndex < 0)
|
||
{
|
||
return;
|
||
}
|
||
|
||
var columnName = _rulesGrid.Columns[e.ColumnIndex].Name;
|
||
var text = GetRuleIconToolTip(columnName, e.RowIndex);
|
||
if (string.IsNullOrEmpty(text))
|
||
{
|
||
return;
|
||
}
|
||
|
||
var cellBounds = _rulesGrid.GetCellDisplayRectangle(e.ColumnIndex, e.RowIndex, cutOverflow: true);
|
||
_rulesGridToolTip.Show(text, _rulesGrid, cellBounds.Left + cellBounds.Width / 2, cellBounds.Bottom + 4);
|
||
}
|
||
|
||
private void OnRulesGridCellMouseLeave(object? sender, DataGridViewCellEventArgs e)
|
||
{
|
||
_rulesGridToolTip.Hide(_rulesGrid);
|
||
}
|
||
|
||
private string GetRuleIconToolTip(string columnName, int rowIndex)
|
||
{
|
||
if (!IsRuleIconEnabled(columnName, rowIndex))
|
||
{
|
||
return string.Empty;
|
||
}
|
||
|
||
return columnName switch
|
||
{
|
||
"MoveUp" => "上移",
|
||
"MoveDown" => "下移",
|
||
"Copy" => "复制到下一行",
|
||
"InsertBlank" => "在下一行添加空白条件",
|
||
"Delete" => "删除",
|
||
_ => string.Empty
|
||
};
|
||
}
|
||
|
||
private void OnAdjustmentsGridCellPainting(object? sender, DataGridViewCellPaintingEventArgs e)
|
||
{
|
||
if (e.RowIndex < 0 || e.ColumnIndex < 0)
|
||
{
|
||
return;
|
||
}
|
||
|
||
if (_adjustmentsGrid.Columns[e.ColumnIndex].Name != "Delete")
|
||
{
|
||
return;
|
||
}
|
||
|
||
PaintGridIconCell(_adjustmentsGrid, e, "×", UiTheme.Danger);
|
||
}
|
||
|
||
private static void PaintGridIconCell(DataGridView grid, DataGridViewCellPaintingEventArgs e, string icon, Color color)
|
||
{
|
||
e.Paint(e.CellBounds, DataGridViewPaintParts.Background | DataGridViewPaintParts.Border);
|
||
if (e.Graphics is null)
|
||
{
|
||
e.Handled = true;
|
||
return;
|
||
}
|
||
|
||
TextRenderer.DrawText(
|
||
e.Graphics,
|
||
icon,
|
||
grid.Font,
|
||
e.CellBounds,
|
||
color,
|
||
TextFormatFlags.HorizontalCenter | TextFormatFlags.VerticalCenter | TextFormatFlags.NoPadding);
|
||
e.Handled = true;
|
||
}
|
||
|
||
private bool IsRuleIconEnabled(string columnName, int rowIndex)
|
||
{
|
||
if (rowIndex < 0 || rowIndex >= _rulesGrid.Rows.Count || _rulesGrid.Rows[rowIndex].IsNewRow)
|
||
{
|
||
return false;
|
||
}
|
||
|
||
return columnName switch
|
||
{
|
||
"MoveUp" => rowIndex > 0,
|
||
"MoveDown" => rowIndex < LastRuleRowIndex(),
|
||
"Copy" => true,
|
||
"InsertBlank" => true,
|
||
"Delete" => true,
|
||
_ => false
|
||
};
|
||
}
|
||
|
||
private void OnAdjustmentsGridCellClick(object? sender, DataGridViewCellEventArgs e)
|
||
{
|
||
if (e.RowIndex < 0 || e.ColumnIndex < 0)
|
||
{
|
||
return;
|
||
}
|
||
|
||
var columnName = _adjustmentsGrid.Columns[e.ColumnIndex].Name;
|
||
if (columnName == "Delete")
|
||
{
|
||
var row = _adjustmentsGrid.Rows[e.RowIndex];
|
||
if (!row.IsNewRow)
|
||
{
|
||
_adjustmentsGrid.Rows.RemoveAt(e.RowIndex);
|
||
}
|
||
|
||
return;
|
||
}
|
||
|
||
if (columnName == "Condition")
|
||
{
|
||
OpenAdjustmentConditionEditor(e.RowIndex);
|
||
}
|
||
}
|
||
|
||
private void OpenAdjustmentConditionEditor(int rowIndex)
|
||
{
|
||
var row = _adjustmentsGrid.Rows[rowIndex];
|
||
var current = row.IsNewRow ? string.Empty : CellText(row, "Condition");
|
||
|
||
using var editor = new ConditionEditorForm(BuildConditionFields(), current);
|
||
if (editor.ShowDialog(FindForm()) != DialogResult.OK)
|
||
{
|
||
return;
|
||
}
|
||
|
||
if (row.IsNewRow)
|
||
{
|
||
if (!string.IsNullOrWhiteSpace(editor.ConditionText))
|
||
{
|
||
_adjustmentsGrid.Rows.Add(true, string.Empty, 0, editor.ConditionText);
|
||
}
|
||
|
||
return;
|
||
}
|
||
|
||
row.Cells["Condition"].Value = editor.ConditionText;
|
||
}
|
||
|
||
private void DeleteRule(int rowIndex)
|
||
{
|
||
_rulesGrid.EndEdit();
|
||
var row = _rulesGrid.Rows[rowIndex];
|
||
// 新行占位符无需删除。
|
||
if (!row.IsNewRow)
|
||
{
|
||
_rulesGrid.Rows.RemoveAt(rowIndex);
|
||
}
|
||
}
|
||
|
||
private void CopyRule(int rowIndex)
|
||
{
|
||
_rulesGrid.EndEdit();
|
||
if (!IsExistingRuleRow(rowIndex))
|
||
{
|
||
return;
|
||
}
|
||
|
||
InsertRuleAfter(rowIndex, ReadRuleRow(_rulesGrid.Rows[rowIndex]));
|
||
}
|
||
|
||
private void InsertBlankRule(int rowIndex)
|
||
{
|
||
_rulesGrid.EndEdit();
|
||
if (!IsExistingRuleRow(rowIndex))
|
||
{
|
||
return;
|
||
}
|
||
|
||
InsertRuleAfter(rowIndex, new RuleRowValues(true, string.Empty, string.Empty, string.Empty));
|
||
}
|
||
|
||
private void InsertRuleAfter(int rowIndex, RuleRowValues values)
|
||
{
|
||
var insertIndex = rowIndex + 1;
|
||
_rulesGrid.Rows.Insert(insertIndex, 1);
|
||
var inserted = _rulesGrid.Rows[insertIndex];
|
||
WriteRuleRow(inserted, values);
|
||
_rulesGrid.CurrentCell = inserted.Cells["Condition"];
|
||
inserted.Selected = true;
|
||
_rulesGrid.Invalidate();
|
||
}
|
||
|
||
private void MoveRule(int rowIndex, int direction)
|
||
{
|
||
_rulesGrid.EndEdit();
|
||
if (!IsExistingRuleRow(rowIndex))
|
||
{
|
||
return;
|
||
}
|
||
|
||
var targetIndex = rowIndex + direction;
|
||
if (targetIndex < 0 || targetIndex > LastRuleRowIndex())
|
||
{
|
||
return;
|
||
}
|
||
|
||
var current = ReadRuleRow(_rulesGrid.Rows[rowIndex]);
|
||
var target = ReadRuleRow(_rulesGrid.Rows[targetIndex]);
|
||
WriteRuleRow(_rulesGrid.Rows[rowIndex], target);
|
||
WriteRuleRow(_rulesGrid.Rows[targetIndex], current);
|
||
_rulesGrid.CurrentCell = _rulesGrid.Rows[targetIndex].Cells["Condition"];
|
||
_rulesGrid.Rows[targetIndex].Selected = true;
|
||
_rulesGrid.Invalidate();
|
||
}
|
||
|
||
private int LastRuleRowIndex()
|
||
{
|
||
var last = _rulesGrid.Rows.Count - 1;
|
||
if (_rulesGrid.AllowUserToAddRows)
|
||
{
|
||
last--;
|
||
}
|
||
|
||
return last;
|
||
}
|
||
|
||
private bool IsExistingRuleRow(int rowIndex)
|
||
{
|
||
return rowIndex >= 0 && rowIndex <= LastRuleRowIndex() && !_rulesGrid.Rows[rowIndex].IsNewRow;
|
||
}
|
||
|
||
private RuleRowValues ReadRuleRow(DataGridViewRow row)
|
||
{
|
||
return new RuleRowValues(
|
||
CellBool(row, "Enabled", defaultValue: true),
|
||
CellText(row, "Spell"),
|
||
CellText(row, "Unit"),
|
||
CellText(row, "Condition"));
|
||
}
|
||
|
||
private void WriteRuleRow(DataGridViewRow row, RuleRowValues values)
|
||
{
|
||
row.Cells["Enabled"].Value = values.Enabled;
|
||
EnsureComboItem(_spellColumn, values.Spell);
|
||
row.Cells["Spell"].Value = values.Spell;
|
||
row.Cells["Condition"].Value = values.Condition;
|
||
RebuildUnitCell(row, values.UnitText);
|
||
}
|
||
|
||
private void OpenConditionEditor(int rowIndex)
|
||
{
|
||
var row = _rulesGrid.Rows[rowIndex];
|
||
var current = row.IsNewRow ? string.Empty : CellText(row, "Condition");
|
||
var fields = BuildConditionFields();
|
||
|
||
using var editor = new ConditionEditorForm(fields, current);
|
||
if (editor.ShowDialog(FindForm()) != DialogResult.OK)
|
||
{
|
||
return;
|
||
}
|
||
|
||
if (row.IsNewRow)
|
||
{
|
||
// 新行占位符不能直接赋值, 改为追加一行。
|
||
if (!string.IsNullOrWhiteSpace(editor.ConditionText))
|
||
{
|
||
_rulesGrid.Rows.Add(true, string.Empty, string.Empty, editor.ConditionText);
|
||
}
|
||
|
||
return;
|
||
}
|
||
|
||
row.Cells["Condition"].Value = editor.ConditionText;
|
||
}
|
||
|
||
// 条件字段 = 状态/技能字段 + 每个动态单位的裸名(存在)和值名称 + 每个数量名。
|
||
private IReadOnlyList<ConditionField> BuildConditionFields()
|
||
{
|
||
var classId = ReadMatchCombo(_classBox);
|
||
var specId = ReadMatchCombo(_specBox);
|
||
var fields = new List<ConditionField>(_fieldCatalog.GetFields(classId, specId));
|
||
|
||
foreach (var unit in _units)
|
||
{
|
||
if (string.IsNullOrWhiteSpace(unit.Name))
|
||
{
|
||
continue;
|
||
}
|
||
|
||
// 裸单位名作为存在性布尔。
|
||
fields.Add(new ConditionField(unit.Name, $"{unit.Name} (存在)", ConditionFieldType.Bool, ConditionFieldCategory.DynamicUnit));
|
||
|
||
// 值名称: 该单位 生命值 的直接命名数值字段。
|
||
if (!string.IsNullOrWhiteSpace(unit.HealthName))
|
||
{
|
||
fields.Add(new ConditionField(unit.HealthName, $"{unit.HealthName} (生命值)", ConditionFieldType.Int, ConditionFieldCategory.DynamicUnit));
|
||
}
|
||
}
|
||
|
||
foreach (var count in _counts)
|
||
{
|
||
if (!string.IsNullOrWhiteSpace(count.Name))
|
||
{
|
||
fields.Add(new ConditionField(count.Name, $"人数: {count.Name}", ConditionFieldType.Int, ConditionFieldCategory.DynamicUnit));
|
||
}
|
||
}
|
||
|
||
return fields;
|
||
}
|
||
|
||
private Control BuildActionRow()
|
||
{
|
||
var row = new Panel
|
||
{
|
||
Dock = DockStyle.Fill,
|
||
BackColor = UiTheme.SurfaceRaised,
|
||
Margin = new Padding(0),
|
||
Padding = new Padding(10, 0, 10, 0)
|
||
};
|
||
|
||
var hint = new Label
|
||
{
|
||
Text = "目标可选 keymap 编号或上方定义的动态单位;点击“条件”列打开可视化编辑器",
|
||
Dock = DockStyle.Fill,
|
||
ForeColor = UiTheme.Muted,
|
||
TextAlign = ContentAlignment.MiddleLeft,
|
||
AutoEllipsis = true,
|
||
Margin = new Padding(0)
|
||
};
|
||
|
||
var buttons = new FlowLayoutPanel
|
||
{
|
||
AutoSize = true,
|
||
AutoSizeMode = AutoSizeMode.GrowAndShrink,
|
||
Dock = DockStyle.Right,
|
||
FlowDirection = FlowDirection.RightToLeft,
|
||
WrapContents = false,
|
||
BackColor = UiTheme.SurfaceRaised,
|
||
Margin = new Padding(0),
|
||
Padding = new Padding(0, 6, 0, 6)
|
||
};
|
||
|
||
var saveButton = UiTheme.CreateButton("保存", UiTheme.Accent, Color.Black);
|
||
saveButton.Margin = new Padding(8, 0, 0, 0);
|
||
saveButton.Click += (_, _) => SaveSelectedModule();
|
||
|
||
var deleteButton = UiTheme.CreateButton("删除", UiTheme.Field, UiTheme.Danger);
|
||
deleteButton.Margin = new Padding(8, 0, 0, 0);
|
||
deleteButton.Click += (_, _) => DeleteSelectedModule();
|
||
|
||
buttons.Controls.Add(saveButton);
|
||
buttons.Controls.Add(deleteButton);
|
||
row.Controls.Add(hint);
|
||
row.Controls.Add(buttons);
|
||
return row;
|
||
}
|
||
|
||
private void LoadModules()
|
||
{
|
||
_moduleStore.Reload();
|
||
_modules = _moduleStore.GetModules().ToList();
|
||
_moduleList.Items.Clear();
|
||
foreach (var module in _modules)
|
||
{
|
||
_moduleList.Items.Add(ModuleDisplay.FormatListItem(module));
|
||
}
|
||
|
||
if (_modules.Count > 0)
|
||
{
|
||
_moduleList.SelectedIndex = 0;
|
||
}
|
||
else
|
||
{
|
||
ClearEditor();
|
||
}
|
||
}
|
||
|
||
private void SelectModule(int index)
|
||
{
|
||
if (index < 0 || index >= _modules.Count)
|
||
{
|
||
ClearEditor();
|
||
return;
|
||
}
|
||
|
||
_selectedModule = _modules[index].Clone();
|
||
FillEditor(_selectedModule);
|
||
}
|
||
|
||
private void FillEditor(ModuleDefinition module)
|
||
{
|
||
_nameBox.Text = module.Name;
|
||
// 先填充动态单位/数量, 后续目标下拉与条件字段都依赖它们。
|
||
_units.Clear();
|
||
_units.AddRange(module.Units.Select(unit => unit.Clone()));
|
||
_counts.Clear();
|
||
_counts.AddRange(module.Counts.Select(count => count.Clone()));
|
||
_valueAdjustments.Clear();
|
||
_valueAdjustments.AddRange(module.ValueAdjustments.Select(adjustment => adjustment.Clone()));
|
||
RefreshUnitsList();
|
||
SelectClass(module.Match.ClassId);
|
||
SelectSpec(module.Match.SpecId);
|
||
SelectPartyType(module.Match.PartyType);
|
||
SelectHeroTalent(module.Match.HeroTalent);
|
||
_pathLabel.Text = module.FilePath ?? "尚未保存";
|
||
_adjustmentsGrid.Rows.Clear();
|
||
RefreshAdjustmentFieldColumn();
|
||
foreach (var adjustment in _valueAdjustments)
|
||
{
|
||
EnsureComboItem(_adjustmentFieldColumn, adjustment.Field);
|
||
_adjustmentsGrid.Rows.Add(adjustment.Enabled, adjustment.Field, adjustment.Delta, adjustment.Condition);
|
||
}
|
||
|
||
_rulesGrid.Rows.Clear();
|
||
RefreshKeymapColumns();
|
||
ApplyColumnWidths(UiCacheStore.Load().ModuleRulesGridColumns);
|
||
|
||
foreach (var rule in module.Rules)
|
||
{
|
||
// 动态目标优先显示单位名, 否则显示数字单位。
|
||
var unitText = !string.IsNullOrWhiteSpace(rule.UnitName)
|
||
? rule.UnitName!
|
||
: rule.Unit?.ToString() ?? string.Empty;
|
||
EnsureComboItem(_spellColumn, rule.Spell);
|
||
// 先加行(目标先留空), 再按技能重建目标选项并写回目标值, 避免值不在选项内被吞掉。
|
||
var index = _rulesGrid.Rows.Add(rule.Enabled, rule.Spell, string.Empty, rule.Condition);
|
||
RebuildUnitCell(_rulesGrid.Rows[index], unitText);
|
||
}
|
||
}
|
||
|
||
private void ClearEditor()
|
||
{
|
||
_selectedModule = null;
|
||
_nameBox.Clear();
|
||
_units.Clear();
|
||
_counts.Clear();
|
||
_valueAdjustments.Clear();
|
||
RefreshUnitsList();
|
||
SelectClass(null);
|
||
SelectSpec(null);
|
||
SelectPartyType(null);
|
||
SelectHeroTalent(null);
|
||
_pathLabel.Text = "无模块";
|
||
_adjustmentsGrid.Rows.Clear();
|
||
RefreshAdjustmentFieldColumn();
|
||
_rulesGrid.Rows.Clear();
|
||
}
|
||
|
||
private void AddModule()
|
||
{
|
||
var module = ModuleDefinition.CreateDefault(_moduleStore.CreateNextModuleName());
|
||
try
|
||
{
|
||
_moduleStore.Save(module);
|
||
}
|
||
catch (InvalidOperationException ex)
|
||
{
|
||
MessageBox.Show(ex.Message, "Shigure", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
||
return;
|
||
}
|
||
|
||
LoadModules();
|
||
var index = _modules.FindIndex(existing => string.Equals(existing.Id, module.Id, StringComparison.OrdinalIgnoreCase));
|
||
if (index >= 0)
|
||
{
|
||
_moduleList.SelectedIndex = index;
|
||
}
|
||
|
||
_runtimeRestartRequested();
|
||
}
|
||
|
||
private void SaveSelectedModule()
|
||
{
|
||
if (_selectedModule is null)
|
||
{
|
||
return;
|
||
}
|
||
|
||
if (!TryReadModule(out var module))
|
||
{
|
||
return;
|
||
}
|
||
|
||
ModuleDefinition saved;
|
||
try
|
||
{
|
||
saved = _moduleStore.Save(module);
|
||
}
|
||
catch (InvalidOperationException ex)
|
||
{
|
||
MessageBox.Show(ex.Message, "Shigure", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
||
return;
|
||
}
|
||
|
||
LoadModules();
|
||
var index = _modules.FindIndex(existing => string.Equals(existing.Id, saved.Id, StringComparison.OrdinalIgnoreCase));
|
||
if (index >= 0)
|
||
{
|
||
_moduleList.SelectedIndex = index;
|
||
}
|
||
|
||
_runtimeRestartRequested();
|
||
}
|
||
|
||
private void DeleteSelectedModule()
|
||
{
|
||
if (_selectedModule is null)
|
||
{
|
||
return;
|
||
}
|
||
|
||
var result = MessageBox.Show(
|
||
$"删除模块“{_selectedModule.Name}”?",
|
||
"Shigure",
|
||
MessageBoxButtons.YesNo,
|
||
MessageBoxIcon.Warning);
|
||
if (result != DialogResult.Yes)
|
||
{
|
||
return;
|
||
}
|
||
|
||
_moduleStore.Delete(_selectedModule);
|
||
LoadModules();
|
||
_runtimeRestartRequested();
|
||
}
|
||
|
||
private bool TryReadModule(out ModuleDefinition module)
|
||
{
|
||
module = _selectedModule!.Clone();
|
||
module.Name = string.IsNullOrWhiteSpace(_nameBox.Text) ? "新模块" : _nameBox.Text.Trim();
|
||
module.Match = new ModuleMatch
|
||
{
|
||
ClassId = ReadMatchCombo(_classBox),
|
||
SpecId = ReadMatchCombo(_specBox),
|
||
PartyType = ReadPartyTypeCombo(),
|
||
HeroTalent = ReadMatchCombo(_heroTalentBox)
|
||
};
|
||
|
||
module.Units = _units.Select(unit => unit.Clone()).ToList();
|
||
module.Counts = _counts.Select(count => count.Clone()).ToList();
|
||
module.ValueAdjustments = ReadValueAdjustments();
|
||
module.Rules = ReadRules();
|
||
return true;
|
||
}
|
||
|
||
private List<ModuleValueAdjustment> ReadValueAdjustments()
|
||
{
|
||
var adjustments = new List<ModuleValueAdjustment>();
|
||
foreach (DataGridViewRow row in _adjustmentsGrid.Rows)
|
||
{
|
||
if (row.IsNewRow)
|
||
{
|
||
continue;
|
||
}
|
||
|
||
var field = CellText(row, "Field");
|
||
var condition = CellText(row, "Condition");
|
||
var delta = ParseNullableInt(CellText(row, "Delta")) ?? 0;
|
||
if (string.IsNullOrWhiteSpace(field)
|
||
&& string.IsNullOrWhiteSpace(condition)
|
||
&& delta == 0)
|
||
{
|
||
continue;
|
||
}
|
||
|
||
if (string.IsNullOrWhiteSpace(field))
|
||
{
|
||
continue;
|
||
}
|
||
|
||
adjustments.Add(new ModuleValueAdjustment
|
||
{
|
||
Enabled = CellBool(row, "Enabled", defaultValue: true),
|
||
Field = field,
|
||
Delta = delta,
|
||
Condition = condition
|
||
});
|
||
}
|
||
|
||
return adjustments;
|
||
}
|
||
|
||
private List<ModuleRule> ReadRules()
|
||
{
|
||
var unitNames = new HashSet<string>(
|
||
_units.Where(unit => !string.IsNullOrWhiteSpace(unit.Name)).Select(unit => unit.Name),
|
||
StringComparer.Ordinal);
|
||
var rules = new List<ModuleRule>();
|
||
foreach (DataGridViewRow row in _rulesGrid.Rows)
|
||
{
|
||
if (row.IsNewRow)
|
||
{
|
||
continue;
|
||
}
|
||
|
||
var condition = CellText(row, "Condition");
|
||
var spell = CellText(row, "Spell");
|
||
var unitText = CellText(row, "Unit");
|
||
if (string.IsNullOrWhiteSpace(condition)
|
||
&& string.IsNullOrWhiteSpace(spell)
|
||
&& string.IsNullOrWhiteSpace(unitText))
|
||
{
|
||
continue;
|
||
}
|
||
|
||
// 目标文本命中已定义动态单位名 → UnitName; 否则按数字 → Unit; 都不是则留空。
|
||
var isDynamic = unitNames.Contains(unitText);
|
||
rules.Add(new ModuleRule
|
||
{
|
||
Enabled = CellBool(row, "Enabled", defaultValue: true),
|
||
Condition = condition,
|
||
Unit = isDynamic ? null : ParseNullableInt(unitText),
|
||
UnitName = isDynamic ? unitText : null,
|
||
Spell = spell,
|
||
Hotkey = string.Empty,
|
||
Step = string.Empty
|
||
});
|
||
}
|
||
|
||
return rules;
|
||
}
|
||
|
||
private static void AddMatchField(TableLayoutPanel row, string label, TextBox box, int column)
|
||
{
|
||
row.Controls.Add(CreateLabel(label), column, 0);
|
||
StyleTextBox(box);
|
||
box.Dock = DockStyle.Fill;
|
||
row.Controls.Add(box, column + 1, 0);
|
||
}
|
||
|
||
private static void AddMatchField(TableLayoutPanel row, string label, ComboBox box, int column)
|
||
{
|
||
row.Controls.Add(CreateLabel(label), column, 0);
|
||
UiTheme.StyleComboBox(box);
|
||
box.Dock = DockStyle.Fill;
|
||
row.Controls.Add(box, column + 1, 0);
|
||
}
|
||
|
||
private static Label CreateLabel(string text)
|
||
{
|
||
return new Label
|
||
{
|
||
Text = text,
|
||
Dock = DockStyle.Fill,
|
||
ForeColor = UiTheme.Muted,
|
||
TextAlign = ContentAlignment.MiddleLeft,
|
||
AutoEllipsis = true
|
||
};
|
||
}
|
||
|
||
private static int MeasureLabelColumnWidth(string text, Font font)
|
||
{
|
||
return TextRenderer.MeasureText(text, font).Width + 18;
|
||
}
|
||
|
||
private static Button CreateUnitActionButton(string text, Color backColor, Color foreColor, bool bottomGap)
|
||
{
|
||
var button = UiTheme.CreateButton(text, backColor, foreColor);
|
||
button.AutoSize = false;
|
||
button.AutoEllipsis = true;
|
||
button.Height = 32;
|
||
button.Margin = new Padding(0, 0, 0, bottomGap ? 6 : 0);
|
||
button.Padding = new Padding(0);
|
||
button.TextAlign = ContentAlignment.MiddleCenter;
|
||
return button;
|
||
}
|
||
|
||
private static void LayoutUnitActionButtons(FlowLayoutPanel panel)
|
||
{
|
||
var width = Math.Max(0, panel.ClientSize.Width);
|
||
foreach (Control control in panel.Controls)
|
||
{
|
||
if (control is Button button)
|
||
{
|
||
button.Width = width;
|
||
}
|
||
}
|
||
}
|
||
|
||
private void StretchUnitsSummaryColumn()
|
||
{
|
||
if (_unitsList.Columns.Count < 3 || _suppressUnitsColumnResize)
|
||
{
|
||
return;
|
||
}
|
||
|
||
_suppressUnitsColumnResize = true;
|
||
try
|
||
{
|
||
var summaryWidth = _unitsList.ClientSize.Width
|
||
- _unitsList.Columns[0].Width
|
||
- _unitsList.Columns[1].Width;
|
||
_unitsList.Columns[2].Width = Math.Max(120, summaryWidth);
|
||
}
|
||
finally
|
||
{
|
||
_suppressUnitsColumnResize = false;
|
||
}
|
||
}
|
||
|
||
private static void StyleTextBox(TextBox textBox)
|
||
{
|
||
UiTheme.StyleTextBox(textBox);
|
||
}
|
||
|
||
private void SelectClass(int? value)
|
||
{
|
||
var index = FindMatchOption(_classBox, value);
|
||
if (index < 0 && value is not null)
|
||
{
|
||
_classBox.Items.Add(new MatchOption($"职业{value} ({value})", value));
|
||
index = _classBox.Items.Count - 1;
|
||
}
|
||
|
||
_classBox.SelectedIndex = index >= 0 ? index : 0;
|
||
ResetSpecOptions(_specBox, ReadMatchCombo(_classBox));
|
||
}
|
||
|
||
private void SelectSpec(int? value)
|
||
{
|
||
var index = FindMatchOption(_specBox, value);
|
||
if (index < 0 && value is not null)
|
||
{
|
||
_specBox.Items.Add(new MatchOption($"专精{value} ({value})", value));
|
||
index = _specBox.Items.Count - 1;
|
||
}
|
||
|
||
_specBox.SelectedIndex = index >= 0 ? index : 0;
|
||
ResetHeroTalentOptions(_heroTalentBox, ReadMatchCombo(_classBox), ReadMatchCombo(_specBox));
|
||
}
|
||
|
||
private void SelectHeroTalent(int? value)
|
||
{
|
||
var index = FindMatchOption(_heroTalentBox, value);
|
||
if (index < 0 && value is not null)
|
||
{
|
||
_heroTalentBox.Items.Add(new MatchOption($"英雄天赋{value} ({value})", value));
|
||
index = _heroTalentBox.Items.Count - 1;
|
||
}
|
||
|
||
_heroTalentBox.SelectedIndex = index >= 0 ? index : 0;
|
||
}
|
||
|
||
private static int? ReadMatchCombo(ComboBox comboBox)
|
||
{
|
||
return comboBox.SelectedItem is MatchOption option ? option.Value : null;
|
||
}
|
||
|
||
private static void ResetClassOptions(ComboBox comboBox)
|
||
{
|
||
comboBox.Items.Clear();
|
||
comboBox.Items.AddRange(ClassOptions);
|
||
comboBox.SelectedIndex = 0;
|
||
}
|
||
|
||
private static void ResetSpecOptions(ComboBox comboBox, int? classId)
|
||
{
|
||
comboBox.Items.Clear();
|
||
comboBox.Items.Add(new MatchOption("任意 (*)", null));
|
||
if (classId is not null)
|
||
{
|
||
foreach (var spec in ClassNames.GetSpecs(classId.Value))
|
||
{
|
||
comboBox.Items.Add(new MatchOption($"{spec.Name} ({spec.Id})", spec.Id));
|
||
}
|
||
}
|
||
|
||
comboBox.SelectedIndex = 0;
|
||
}
|
||
|
||
private static void ResetHeroTalentOptions(ComboBox comboBox, int? classId, int? specId)
|
||
{
|
||
comboBox.Items.Clear();
|
||
comboBox.Items.Add(new MatchOption("任意 (*)", null));
|
||
if (classId is not null && specId is not null)
|
||
{
|
||
foreach (var heroTalent in ClassNames.GetHeroTalents(classId.Value, specId.Value))
|
||
{
|
||
comboBox.Items.Add(new MatchOption($"{heroTalent.Name} ({heroTalent.Id})", heroTalent.Id));
|
||
}
|
||
}
|
||
|
||
comboBox.SelectedIndex = 0;
|
||
}
|
||
|
||
private static int FindMatchOption(ComboBox comboBox, int? value)
|
||
{
|
||
for (var i = 0; i < comboBox.Items.Count; i++)
|
||
{
|
||
if (comboBox.Items[i] is MatchOption option && option.Value == value)
|
||
{
|
||
return i;
|
||
}
|
||
}
|
||
|
||
return -1;
|
||
}
|
||
|
||
private static MatchOption[] BuildClassOptions()
|
||
{
|
||
return ClassNames.GetClasses()
|
||
.Select(item => new MatchOption($"{item.Name} ({item.Id})", item.Id))
|
||
.Prepend(new MatchOption("任意 (*)", null))
|
||
.ToArray();
|
||
}
|
||
|
||
private void SelectPartyType(string? value)
|
||
{
|
||
ResetPartyTypeOptions(_partyTypeBox);
|
||
var normalized = ModuleMatch.NormalizePartyTypeValue(value);
|
||
var index = FindPartyTypeOption(normalized);
|
||
if (index < 0 && !string.IsNullOrWhiteSpace(normalized))
|
||
{
|
||
_partyTypeBox.Items.Add(new PartyTypeOption($"自定义 ({normalized})", normalized));
|
||
index = _partyTypeBox.Items.Count - 1;
|
||
}
|
||
|
||
_partyTypeBox.SelectedIndex = index >= 0 ? index : 0;
|
||
}
|
||
|
||
private string? ReadPartyTypeCombo()
|
||
{
|
||
return _partyTypeBox.SelectedItem is PartyTypeOption option ? option.Value : null;
|
||
}
|
||
|
||
private static void ResetPartyTypeOptions(ComboBox comboBox)
|
||
{
|
||
comboBox.Items.Clear();
|
||
comboBox.Items.AddRange(PartyTypeOptions);
|
||
comboBox.SelectedIndex = 0;
|
||
}
|
||
|
||
private static int FindPartyTypeOption(string? value)
|
||
{
|
||
for (var i = 0; i < PartyTypeOptions.Length; i++)
|
||
{
|
||
if (string.Equals(PartyTypeOptions[i].Value, value, StringComparison.OrdinalIgnoreCase))
|
||
{
|
||
return i;
|
||
}
|
||
}
|
||
|
||
return -1;
|
||
}
|
||
|
||
private static string CellText(DataGridViewRow row, string columnName)
|
||
{
|
||
return row.Cells[columnName].Value?.ToString()?.Trim() ?? string.Empty;
|
||
}
|
||
|
||
private static bool CellBool(DataGridViewRow row, string columnName, bool defaultValue)
|
||
{
|
||
var value = row.Cells[columnName].Value;
|
||
return value switch
|
||
{
|
||
bool b => b,
|
||
string s when bool.TryParse(s, out var parsed) => parsed,
|
||
null => defaultValue,
|
||
_ => defaultValue
|
||
};
|
||
}
|
||
|
||
private static int? ParseNullableInt(string text)
|
||
{
|
||
return int.TryParse(text, out var value) ? value : null;
|
||
}
|
||
|
||
private sealed record PartyTypeOption(string Text, string? Value)
|
||
{
|
||
public override string ToString()
|
||
{
|
||
return Text;
|
||
}
|
||
}
|
||
|
||
private sealed record MatchOption(string Text, int? Value)
|
||
{
|
||
public override string ToString()
|
||
{
|
||
return Text;
|
||
}
|
||
}
|
||
}
|