コード例 #1
0
        private void UpdateObjectComboBox()
        {
            ComboBoxObject.Items.Clear();
            ComboBoxObject.Items.AddRange(LayoutEditorSystem.GetActiveObjectEntries());

            UpdateList();
        }
コード例 #2
0
        private void UpdateObjectComboBox()
        {
            ComboBoxObject.Items.Clear();
            ComboBoxObject.Items.AddRange(layoutSystem.GetActiveObjectEntries());

            UpdateEntireObjectList();
        }
コード例 #3
0
        public SetObjectHeroes()
        {
            FindObjectEntry(LayoutEditorSystem.GetActiveObjectEntries());

            UnkBytes = new byte[8];

            objectManager = FindObjectManager();
            objectManager.MiscSettings = new byte[36];
        }
コード例 #4
0
        public SetObjectShadow(byte List, byte Type, Vector3 Position, Vector3 Rotation, byte Link, byte Rend, int MiscSettingCount, byte[] UnkBytes = null)
        {
            this.List = List;
            this.Type = Type;
            FindObjectEntry(LayoutEditorSystem.GetActiveObjectEntries());
            this.Position = Position;
            this.Rotation = Rotation;
            this.Link     = Link;
            this.Rend     = Rend;

            this.UnkBytes         = UnkBytes ?? new byte[8];
            this.MiscSettingCount = MiscSettingCount;

            isSelected = false;

            objectManager = FindObjectManager();
            objectManager.MiscSettings = new byte[MiscSettingCount];
        }
コード例 #5
0
        public SetObjectHeroes(byte List, byte Type, Vector3 Position, Vector3 Rotation, byte Link, byte Rend, byte[] UnkBytes = null)
        {
            this.List = List;
            this.Type = Type;
            FindObjectEntry(LayoutEditorSystem.GetActiveObjectEntries());
            this.Position = Position;
            this.Rotation = Rotation;
            this.Link     = Link;
            this.Rend     = Rend;

            this.UnkBytes = UnkBytes ?? new byte[8];

            isSelected = false;

            objectManager = FindObjectManager();
            objectManager.MiscSettings = new byte[36];
            CreateTransformMatrix();
        }
コード例 #6
0
        private void UpdateDisplayData()
        {
            if (listBoxObjects.SelectedIndices.Count == 1)
            {
                if (displayDataDisabled)
                {
                    EnableDisplayData();
                }

                ProgramIsChangingStuff = true;

                NumericPosX.Value = layoutSystem.GetPosX(listBoxObjects.SelectedIndex);
                NumericPosY.Value = layoutSystem.GetPosY(listBoxObjects.SelectedIndex);
                NumericPosZ.Value = layoutSystem.GetPosZ(listBoxObjects.SelectedIndex);
                NumericRotX.Value = layoutSystem.GetRotX(listBoxObjects.SelectedIndex);
                NumericRotY.Value = layoutSystem.GetRotY(listBoxObjects.SelectedIndex);
                NumericRotZ.Value = layoutSystem.GetRotZ(listBoxObjects.SelectedIndex);

                foreach (ObjectEntry o in LayoutEditorSystem.GetActiveObjectEntries())
                {
                    if (o.List == layoutSystem.GetSetObjectAt(listBoxObjects.SelectedIndex).List&& o.Type == layoutSystem.GetSetObjectAt(listBoxObjects.SelectedIndex).Type)
                    {
                        ComboBoxObject.SelectedItem = o;
                    }
                }

                NumericObjLink.Value = layoutSystem.GetObjectLink(listBoxObjects.SelectedIndex);
                NumericObjRend.Value = layoutSystem.GetObjectRend(listBoxObjects.SelectedIndex);

                numericUnkB1.Value = layoutSystem.GetUnkBytes(listBoxObjects.SelectedIndex)[0];
                numericUnkB2.Value = layoutSystem.GetUnkBytes(listBoxObjects.SelectedIndex)[1];
                numericUnkB3.Value = layoutSystem.GetUnkBytes(listBoxObjects.SelectedIndex)[2];
                numericUnkB4.Value = layoutSystem.GetUnkBytes(listBoxObjects.SelectedIndex)[3];
                numericUnkB5.Value = layoutSystem.GetUnkBytes(listBoxObjects.SelectedIndex)[4];
                numericUnkB6.Value = layoutSystem.GetUnkBytes(listBoxObjects.SelectedIndex)[5];
                numericUnkB7.Value = layoutSystem.GetUnkBytes(listBoxObjects.SelectedIndex)[6];
                numericUnkB8.Value = layoutSystem.GetUnkBytes(listBoxObjects.SelectedIndex)[7];

                PropertyGridMisc.SelectedObject = layoutSystem.GetSetObjectAt(listBoxObjects.SelectedIndex);
                ProgramIsChangingStuff          = false;
            }

            UpdateObjectAmountLabel();
        }