Ejemplo n.º 1
0
 private void ReadControlLocation(MemoryInputStream stream, ref JORControlLocation location)
 {
     location.X      = stream.ReadS16();
     location.Y      = stream.ReadS16();
     location.Width  = stream.ReadS16();
     location.Height = stream.ReadS16();
 }
Ejemplo n.º 2
0
        public override void Update(uint updateMode, MemoryInputStream stream)
        {
            base.Update(updateMode, stream);

            if ((updateMode & 0x08) != 0)
            {
                // Modifying items
                var cmd   = stream.ReadU32();
                var style = stream.ReadU32();
                var name  = stream.ReadSJIS();
                var value = stream.ReadU32();

                if (cmd == 1)
                {
                    // Add new item to end.
                    var newItem = new JORControlSelectorItem();
                    newItem.Name  = name;
                    newItem.Value = value;
                    newItem.Unk3  = style;
                    Items.Add(newItem);
                }
                else if (cmd == 5)
                {
                    // Remove all items.
                    Items.Clear();
                }
            }

            if ((updateMode & 0x02) != 0)
            {
                CurrentValue = stream.ReadU32();
            }

            AfterUpdate();
        }
Ejemplo n.º 3
0
 public virtual void Update(uint updateMode, MemoryInputStream stream)
 {
     if ((updateMode & 0x01) != 0)
     {
         Style = stream.ReadU32();
     }
 }
Ejemplo n.º 4
0
        public override void Update(uint updateMode, MemoryInputStream stream)
        {
            base.Update(updateMode, stream);

            if ((updateMode & 0x02) != 0)
            {
                SelectedIndex = stream.ReadU32();
            }

            AfterUpdate();
        }
Ejemplo n.º 5
0
        public override void Update(uint updateMode, MemoryInputStream stream)
        {
            base.Update(updateMode, stream);

            if ((updateMode & 0x02) != 0)
            {
                Name = stream.ReadSJIS();
            }

            AfterUpdate();
        }
Ejemplo n.º 6
0
        public override void Update(uint updateMode, MemoryInputStream stream)
        {
            base.Update(updateMode, stream);

            if ((updateMode & 0x02) != 0)
            {
                Mask  = stream.ReadU16();
                Value = (stream.ReadU16() & Mask) != 0;
            }

            AfterUpdate();
        }
Ejemplo n.º 7
0
        public override void Update(uint updateMode, MemoryInputStream stream)
        {
            base.Update(updateMode, stream);

            if ((updateMode & 0x02) != 0)
            {
                Text = stream.ReadSJIS();
            }
            if ((updateMode & 0x10) != 0)
            {
                MaxChars = stream.ReadU16();
            }

            AfterUpdate();
        }
Ejemplo n.º 8
0
        public override void Update(uint updateMode, MemoryInputStream stream)
        {
            // ???
            uint maskAgain = stream.ReadU32();

            base.Update(updateMode, stream);

            if ((updateMode & 0x02) != 0)
            {
                Mask  = stream.ReadU16();
                Value = stream.ReadU16() != 0x00;
            }

            AfterUpdate();
        }
Ejemplo n.º 9
0
        public override void Update(uint updateMode, MemoryInputStream stream)
        {
            base.Update(updateMode, stream);

            if ((updateMode & 0x02) != 0)
            {
                Value = stream.ReadF32();
            }

            if ((updateMode & 0x04) != 0)
            {
                RangeMin = stream.ReadF32();
                RangeMax = stream.ReadF32();
            }

            AfterUpdate();
        }
Ejemplo n.º 10
0
        public JORNode ReadGenNodeSub(MemoryInputStream stream, bool create = false, JORNode node = null)
        {
            string name = stream.ReadSJIS();

            uint nodePtr = stream.ReadU32();

            // Debug.WriteLine("<- ORef GenNodeSub {0} 0x{1:X8}", name, nodePtr);

            if (node == null)
            {
                if (nodePtr != 0)
                {
                    node = this.Root.GetByPtr(nodePtr);
                }
                if (node == null && create)
                {
                    node = new JORNode();
                }
            }

            uint flag1 = stream.ReadU32();
            uint flag2 = 0;

            if ((flag1 & 0x04) != 0)
            {
                flag2 = stream.ReadU32();
            }

            if (node != null)
            {
                if (name != String.Empty)
                {
                    node.Name  = name;
                    node.flag1 = flag1;
                    node.flag2 = flag2;
                }
                node.NodePtr = nodePtr;
            }

            return(node);
        }
Ejemplo n.º 11
0
        private void ProcessUpdateNode(MemoryInputStream stream, JORNode node)
        {
            Debug.WriteLine("<- ORef ProcessUpdate CMD {0}", JHI.HexDump(stream.data));

            while (stream.HasData())
            {
                JORMessageCommand command = (JORMessageCommand)stream.ReadU32();

                Debug.WriteLine("<- ORef ProcessUpdate {0}", command);

                if (command == JORMessageCommand.UpdateControl)
                {
                    uint updateMode = stream.ReadU32();
                    uint id         = stream.ReadU32();
                    var  control    = node.FindControlByID(id, 0);

                    if (control == null)
                    {
                        // No clue about this control; can't parse.
                        return;
                    }

                    if (control is JORControlCheckBox)
                    {
                        // Checkboxes can have multiple controls with the same ID.
                        uint subID = stream.ReadU32();
                        control = node.FindControlByID(id, subID);

                        if (control == null)
                        {
                            // Shouldn't happen, but just in case...
                            return;
                        }
                    }

                    control.Update(updateMode, stream);
                }
            }
        }
Ejemplo n.º 12
0
        private void ProcessUpdateNode(MemoryInputStream stream, JORNode node)
        {
            while (stream.HasData())
            {
                JORMessageCommand command = (JORMessageCommand)stream.ReadU32();

                // Debug.WriteLine("<- ORef ProcessUpdate {0}", command);

                if (command == JORMessageCommand.UpdateControl)
                {
                    uint updateMode = stream.ReadU32();
                    uint id         = stream.ReadU32();
                    var  control    = node.FindControlByID(id);

                    if (control == null)
                    {
                        // No clue about this control; can't parse.
                        return;
                    }

                    control.Update(updateMode, stream);
                }
            }
        }
Ejemplo n.º 13
0
        public void ProcessTag(JHITag tag)
        {
            var            stream      = new MemoryInputStream(tag.Data);
            JORMessageType messageType = (JORMessageType)stream.ReadS32();

            // Debug.WriteLine("<- ORef {1}  {0}", tag.Dump(), messageType);

            if (messageType == JORMessageType.Reset)
            {
                this.Root.Reset();
                SendGetRootObjectRef();
            }
            else if (messageType == JORMessageType.InvalidNode)
            {
                Assert(stream.ReadU32() == 0x07u);
                JORNode node = ReadNodeID(stream);
                // Debug.WriteLine("<- InvalidNode {0}", node);
                if (node != null)
                {
                    node.Invalidate();
                }
                Assert(stream.ReadU32() == 0x03u);
            }
            else if (messageType == JORMessageType.GetRootObjectRef)
            {
                // Reply from GetRootObjectRef request
                JORNode node = ReadGenNodeSub(stream, false, this.Root.TreeRoot);
                SendGenObjectInfo(node);
            }
            else if (messageType == JORMessageType.GenObjectInfo)
            {
                // Reply from GenObjectInfo request
                ProcessObjectInfo(stream);
            }
            else if (messageType == JORMessageType.StartNode)
            {
                uint mode = stream.ReadU32();
                // startNode = 0, genNode = 3
                Assert(mode == 0u || mode == 3u || mode == 11u);

                if (mode == 0u || mode == 3u)
                {
                    uint    unk1       = stream.ReadU32();
                    JORNode parentNode = ReadNodeID(stream);
                    JORNode node       = ReadGenNodeSub(stream, true);
                    // Debug.WriteLine("<- StartNode {0} Parent = 0x{1:X8}", node?.Name, parentNode);
                }
                else if (mode == 11u)
                {
                    JORNode node = ReadNodeID(stream);
                }
            }
            else if (messageType == JORMessageType.StartUpdateNode)
            {
                JORNode node = ReadNodeID(stream);
                if (node == null)
                {
                    return;
                }

                ProcessUpdateNode(stream, node);
            }
            else if (messageType == JORMessageType.OpenMessageBox)
            {
                uint   retPtr = stream.ReadU32();
                uint   style  = stream.ReadU32();
                string msg    = stream.ReadSJIS();
                string title  = stream.ReadSJIS();
                MessageBox.Show(msg, title);
                SendResultU32(retPtr);
            }
            else if (messageType == JORMessageType.ShellExecute)
            {
                uint   retPtr = stream.ReadU32();
                string str0   = stream.ReadSJIS();
                string str1   = stream.ReadSJIS();
                string str2   = stream.ReadSJIS();
                string str3   = stream.ReadSJIS();
                int    unk4   = stream.ReadS32();
                // not actually gonna ShellExecute lol
                Debug.WriteLine("<- ShellExecute {0} {1} {2} {3} {4}", str0, str1, str2, str3, unk4);
                SendResultU32(retPtr);
            }
            else
            {
                Debug.WriteLine("<- JOR UNKNOWN!!!");
            }
        }
Ejemplo n.º 14
0
        private void ProcessObjectInfo(MemoryInputStream stream)
        {
            JORControlSelector currentSelector = null;
            Stack <JORNode>    nodeStack       = new Stack <JORNode>();
            JORNode            node            = null;

            while (stream.HasData())
            {
                JORMessageCommand command = (JORMessageCommand)stream.ReadU32();

                // Debug.WriteLine("<- ORef MessageCommand {0}", command);

                if (command == JORMessageCommand.StartNode)
                {
                    nodeStack.Push(node);
                    node = ReadGenNodeSub(stream, true);
                    Debug.WriteLine("<- GenObjectInfo Stack {2} Ptr 0x{1:X8} {0}", node.Name, node.NodePtr, nodeStack.Count);

                    JORNode parentNode = nodeStack.Peek();
                    if (parentNode != null)
                    {
                        parentNode.AddChild(node);
                    }

                    // Debug.WriteLine("StartNodeClear  {0}", node);

                    node.Invalidate();
                }
                else if (command == JORMessageCommand.EndNode)
                {
                    node.Status = JORNodeStatus.Valid;
                    if (NodeUpdated != null)
                    {
                        NodeUpdated(node);
                    }
                    node = nodeStack.Pop();
                }
                else if (command == JORMessageCommand.GenNode)
                {
                    JORNode child = ReadGenNodeSub(stream, true);
                    child.Invalidate();
                    node.AddChild(child);
                }
                else if (command == JORMessageCommand.GenControl)
                {
                    var control = ReadControlSub(stream, node);
                }
                else if (command == JORMessageCommand.StartSelector)
                {
                    var control = ReadControlSub(stream, node);
                    Debug.Assert(control is JORControlSelector);
                    currentSelector = control as JORControlSelector;
                }
                else if (command == JORMessageCommand.EndSelector)
                {
                    currentSelector = null;
                }
                else if (command == JORMessageCommand.SelectorItem)
                {
                    var selection = new JORControlSelectorItem();
                    selection.Name  = stream.ReadSJIS();
                    selection.Value = stream.ReadU32();
                    selection.Unk3  = stream.ReadU32();
                    ReadControlLocation(stream, ref selection.Location);

                    if (currentSelector != null)
                    {
                        currentSelector.Items.Add(selection);
                    }
                }
                else
                {
                    throw new Exception("Unknown message type");
                }
            }

            Debug.Assert(nodeStack.Count == 0);
            Debug.Assert(node == null);
        }
Ejemplo n.º 15
0
        private JORControl ReadControlSub(MemoryInputStream stream, JORNode node)
        {
            string controlType = stream.ReadMagic();

            JORControl control;

            if (controlType == "LABL")
            {
                control = new JORControlLabel();
            }
            else if (controlType == "BUTN")
            {
                control = new JORControlButton();
            }
            else if (controlType == "CHBX")
            {
                control = new JORControlCheckBox();
            }
            else if (controlType == "RNGi")
            {
                control = new JORControlRangeInt();
            }
            else if (controlType == "RNGf")
            {
                control = new JORControlRangeFloat();
            }
            else if (controlType == "CMBX" || controlType == "RBTN")
            {
                control = new JORControlSelector();
            }
            else if (controlType == "EDBX")
            {
                control = new JORControlEditBox();
            }
            else
            {
                control = new JORControlImmutable();
            }

            control.Node  = node;
            control.Type  = controlType;
            control.Kind  = (EKind)stream.ReadU32();
            control.Name  = stream.ReadSJIS();
            control.Style = stream.ReadU32();
            control.ID    = stream.ReadU32();
            // Debug.WriteLine("<- Control {0} {1} {2}", control.Type, control.Kind, control.Name);

            if ((control.Kind & EKind.HasListener) != 0)
            {
                control.ListenerPtr = stream.ReadU32();
            }

            if (((control.Kind & EKind.ValueID) != 0) && control.Type != "EDBX")
            {
                control.Kind |= (EKind)0x20;
            }

            float valueF = 0.0f;
            uint  valueU = 0xFFFFFFFF;

            uint kindSize = (uint)(control.Kind & EKind.SizeMask);

            if (kindSize != 0)
            {
                if ((control.Kind & EKind.FloatValue) != 0)
                {
                    valueF = stream.ReadF32();
                }
                else
                {
                    valueU = stream.ReadU32();
                }
            }

            if (control is JORControlCheckBox)
            {
                var cb = control as JORControlCheckBox;
                cb.Mask  = valueU >> 16;
                cb.Value = (valueU & 0xFF) != 0;
            }
            else if (control is JORControlRangeInt)
            {
                var range = control as JORControlRangeInt;
                range.RangeMin = stream.ReadS32();
                range.RangeMax = stream.ReadS32();
                range.Value    = (int)valueU;
            }
            else if (control is JORControlRangeFloat)
            {
                var range = control as JORControlRangeFloat;
                range.RangeMin = stream.ReadF32();
                range.RangeMax = stream.ReadF32();
                range.Value    = valueF;
            }
            else if (control is JORControlEditBox)
            {
                var editBox = control as JORControlEditBox;
                editBox.MaxChars = stream.ReadU16();
                editBox.Text     = stream.ReadSJIS();
            }

            ReadControlLocation(stream, ref control.Location);

            node.Controls.Add(control);
            return(control);
        }
Ejemplo n.º 16
0
        public JORNode ReadNodeID(MemoryInputStream stream)
        {
            uint nodePtr = stream.ReadU32();

            return(this.Root.GetByPtr(nodePtr));
        }