mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-05 06:37:29 +08:00
462e464c2f
* - Add ability to edit/add ytyp files to project. - Add ability to edit/add ytyp archetype files to ytyp. - Add ability to add/remove entities from mlo archetype defs. - Add ability to save ytyp files. - Add dialog popup before optimizing grass batches. - Fix grass batches not being selected when chaning selection in project explorer. - Merged with upstream/master. - Squashed last 4 commits for PR cleanliness. * Fixed windows forms reference error. * - Added error checking to deleting mlo entities. - Fixed various bugs with deleting mlo entities. - Fixed edit archetype panel Asset Type box. - Removed redundant/unnecessary. - Removed backwards references between MCEntityDef and YmapEntityDef. All ymap entity to mcentity references are grabbed using indecies in the MloInstanceData class. - Fixed "YmapMenu" not showing when selecting entities/mlo entities in project form. Current bugs: - Loading a ytyp file -- mlo entities are not editiable, and are created in the world. - entitysets are not editable (properly). - Removing an mloinstancedef from a ymap does not delete the mlo instance's gizmo from the world, and it's still selectable. (Although all references are lost, and I believe collected by the GC?) * - Moved archetype initialization methods YmapFile.InitYmapEntityArchetypes(GameFileCache gfc) and MloInstanceData.InitYmapEntityArchetypes(GameFileCache gfc) - Added ability to load mlo instance defs through ymap files. - Fixed add method for mlo archetypes. * - Removed SetOrientationInv. - Removed unreachable code + updated comment. - Renamed CreateEntity to CreateYmapEntity, and renamed params for consistency. * Split calls to CreateYmapEntity() and MloArchetype.AddEntity(). * Fixed redundant rotation inversions. * - Added ability to select rooms. - Changed tree view grouping for mlo entities. - Fixed projectexplorer selection bugs. - Added ability to toggle mlo entity sets. - Fixed some change events when editing archetypes.
138 lines
4.4 KiB
C#
138 lines
4.4 KiB
C#
using System;
|
|
using System.Windows.Forms;
|
|
using CodeWalker.GameFiles;
|
|
using SharpDX;
|
|
|
|
namespace CodeWalker.Project.Panels
|
|
{
|
|
public partial class EditYtypArchetypeMloRoomPanel : ProjectPanel
|
|
{
|
|
public ProjectForm ProjectForm;
|
|
public MCMloRoomDef CurrentRoom { get; set; }
|
|
|
|
public EditYtypArchetypeMloRoomPanel(ProjectForm owner)
|
|
{
|
|
ProjectForm = owner;
|
|
InitializeComponent();
|
|
}
|
|
|
|
public void SetRoom(MCMloRoomDef room)
|
|
{
|
|
CurrentRoom = room;
|
|
Tag = room;
|
|
UpdateFormTitle();
|
|
MloInstanceData instance = ProjectForm.TryGetMloInstance(room?.Archetype);
|
|
ProjectForm.WorldForm?.SelectMloRoom(room, instance);
|
|
UpdateControls();
|
|
}
|
|
|
|
private void UpdateControls()
|
|
{
|
|
if (CurrentRoom != null)
|
|
{
|
|
RoomNameTextBox.Text = CurrentRoom.RoomName;
|
|
MinBoundsTextBox.Text = FloatUtil.GetVector3String(CurrentRoom.BBMin);
|
|
MaxBoundsTextBox.Text = FloatUtil.GetVector3String(CurrentRoom.BBMax);
|
|
RoomFlagsTextBox.Text = CurrentRoom._Data.flags.ToString();
|
|
}
|
|
}
|
|
|
|
private void UpdateFormTitle()
|
|
{
|
|
Text = CurrentRoom?.RoomName ?? "Room";
|
|
}
|
|
|
|
private void RoomNameTextBox_TextChanged(object sender, EventArgs e)
|
|
{
|
|
if (CurrentRoom == null) return;
|
|
|
|
if (CurrentRoom.RoomName != RoomNameTextBox.Text)
|
|
{
|
|
CurrentRoom.RoomName = RoomNameTextBox.Text;
|
|
|
|
TreeNode tn = ProjectForm.ProjectExplorer?.FindMloRoomTreeNode(CurrentRoom);
|
|
if (tn != null)
|
|
{
|
|
tn.Text = CurrentRoom.RoomName;
|
|
}
|
|
|
|
UpdateFormTitle();
|
|
ProjectForm.SetYtypHasChanged(true);
|
|
}
|
|
}
|
|
|
|
private void MinBoundsTextBox_TextChanged(object sender, EventArgs e)
|
|
{
|
|
if (CurrentRoom == null) return;
|
|
Vector3 bb = FloatUtil.ParseVector3String(MinBoundsTextBox.Text);
|
|
if (CurrentRoom._Data.bbMin != bb)
|
|
{
|
|
CurrentRoom._Data.bbMin = bb;
|
|
ProjectForm.SetYtypHasChanged(true);
|
|
}
|
|
}
|
|
|
|
private void MaxBoundsTextBox_TextChanged(object sender, EventArgs e)
|
|
{
|
|
if (CurrentRoom == null) return;
|
|
Vector3 bb = FloatUtil.ParseVector3String(MaxBoundsTextBox.Text);
|
|
if (CurrentRoom._Data.bbMax != bb)
|
|
{
|
|
CurrentRoom._Data.bbMax = bb;
|
|
ProjectForm.SetYtypHasChanged(true);
|
|
}
|
|
}
|
|
|
|
private void RoomFlagsTextBox_TextChanged(object sender, EventArgs e)
|
|
{
|
|
if (CurrentRoom == null) return;
|
|
uint.TryParse(RoomFlagsTextBox.Text, out uint flags);
|
|
for (int i = 0; i < RoomFlagsCheckedListBox.Items.Count; i++)
|
|
{
|
|
var c = ((flags & (1u << i)) > 0);
|
|
RoomFlagsCheckedListBox.SetItemCheckState(i, c ? CheckState.Checked : CheckState.Unchecked);
|
|
}
|
|
lock (ProjectForm.ProjectSyncRoot)
|
|
{
|
|
if (CurrentRoom._Data.flags != flags)
|
|
{
|
|
CurrentRoom._Data.flags = flags;
|
|
ProjectForm.SetYtypHasChanged(true);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void RoomFlagsCheckedListBox_ItemCheck(object sender, ItemCheckEventArgs e)
|
|
{
|
|
if (CurrentRoom == null) return;
|
|
uint flags = 0;
|
|
for (int i = 0; i < RoomFlagsCheckedListBox.Items.Count; i++)
|
|
{
|
|
if (e.Index == i)
|
|
{
|
|
if (e.NewValue == CheckState.Checked)
|
|
{
|
|
flags += (uint)(1 << i);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (RoomFlagsCheckedListBox.GetItemChecked(i))
|
|
{
|
|
flags += (uint)(1 << i);
|
|
}
|
|
}
|
|
}
|
|
RoomFlagsTextBox.Text = flags.ToString();
|
|
lock (ProjectForm.ProjectSyncRoot)
|
|
{
|
|
if (CurrentRoom._Data.flags != flags)
|
|
{
|
|
CurrentRoom._Data.flags = flags;
|
|
ProjectForm.SetYtypHasChanged(true);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|