Ejemplo n.º 1
0
        public static Widget CreateFromPrototype(ContentManager content, WidgetPrototype prototype, ref Dictionary <string, WeakReference <Widget> > widgetIdDict)
        {
            Widget widget = null;

            AbstractValue width  = ValueFromString(prototype.Width);
            AbstractValue height = ValueFromString(prototype.Height);

            AbstractValue horizontal = ValueFromString(prototype.Horizontal);
            AbstractValue vertical   = ValueFromString(prototype.Vertical);

            HorizontalAlignment halign;

            switch (prototype.Halign.ToLower()[0])
            {
            case 'r':
                halign = HorizontalAlignment.Right;
                break;

            case 'l':
                halign = HorizontalAlignment.Left;
                break;

            case 'c':
            default:
                halign = HorizontalAlignment.Center;
                break;
            }
            VerticalAlignment valign;

            switch (prototype.Valign.ToLower()[0])
            {
            case 't':
                valign = VerticalAlignment.Top;
                break;

            case 'b':
                valign = VerticalAlignment.Bottom;
                break;

            case 'c':
            default:
                valign = VerticalAlignment.Center;
                break;
            }

            /** WIDGET SPECIALIZATIONS **/
            if (prototype is LabelWidgetPrototype)
            {
                FieldFont font         = content.Load <FieldFont>(((LabelWidgetPrototype)prototype).Font);
                string    labelContent = ((LabelWidgetPrototype)prototype).Content;

                widget = new Label(font, labelContent, halign, horizontal, valign, vertical, width, height);
            }
            if (prototype is ImageWidgetPrototype)
            {
                TextureRegion2D texture = content.Load <TextureAtlas>("complete_texture_atlas")
                                          .GetRegion((((ImageWidgetPrototype)prototype).Image));

                widget = new Image(texture, halign, horizontal, valign, vertical, width, height);
            }
            if (prototype is NinePatchImageWidgetPrototype)
            {
                TextureRegion2D texture = content.Load <TextureAtlas>("complete_texture_atlas")
                                          .GetRegion((((NinePatchImageWidgetPrototype)prototype).Image));

                string[] rawThickness = ((NinePatchImageWidgetPrototype)prototype).Thickness.Trim().Split(',');
                if (rawThickness.Length != 4)
                {
                    throw new Exception("NinePatchImage thickness must be integers in the for `left,top,right,bottom`.");
                }

                widget = new NinePatchImage(new NinePatchRegion2D(texture,
                                                                  int.Parse(rawThickness[0]),
                                                                  int.Parse(rawThickness[1]),
                                                                  int.Parse(rawThickness[2]),
                                                                  int.Parse(rawThickness[3])),
                                            halign, horizontal, valign, vertical, width, height);
            }
            if (prototype is PanelWidgetPrototype || prototype is ExternalWidgetPrototype)
            {
                widget = new Panel(halign, horizontal, valign, vertical, width, height);
            }
            if (prototype is ButtonWidgetPrototype)
            {
                TextureRegion2D releasedTexture = content.Load <TextureAtlas>("complete_texture_atlas")
                                                  .GetRegion((((ButtonWidgetPrototype)prototype).ReleasedImage));
                string[] releasedRawThickness = ((ButtonWidgetPrototype)prototype).ReleasedThickness.Trim().Split(',');
                if (releasedRawThickness.Length != 4)
                {
                    throw new Exception("NinePatchImage thickness must be integers in the for `left,top,right,bottom`.");
                }

                TextureRegion2D hoverTexture = content.Load <TextureAtlas>("complete_texture_atlas")
                                               .GetRegion((((ButtonWidgetPrototype)prototype).HoverImage));
                string[] hoverRawThickness = ((ButtonWidgetPrototype)prototype).HoverThickness.Trim().Split(',');
                if (hoverRawThickness.Length != 4)
                {
                    throw new Exception("NinePatchImage thickness must be integers in the for `left,top,right,bottom`.");
                }

                TextureRegion2D pressedTexture = content.Load <TextureAtlas>("complete_texture_atlas")
                                                 .GetRegion((((ButtonWidgetPrototype)prototype).PressedImage));
                string[] pressedRawThickness = ((ButtonWidgetPrototype)prototype).PressedThickness.Trim().Split(',');
                if (pressedRawThickness.Length != 4)
                {
                    throw new Exception("NinePatchImage thickness must be integers in the for `left,top,right,bottom`.");
                }

                widget = new Button(new NinePatchRegion2D(releasedTexture,
                                                          int.Parse(releasedRawThickness[0]),
                                                          int.Parse(releasedRawThickness[1]),
                                                          int.Parse(releasedRawThickness[2]),
                                                          int.Parse(releasedRawThickness[3])),
                                    new NinePatchRegion2D(hoverTexture,
                                                          int.Parse(hoverRawThickness[0]),
                                                          int.Parse(hoverRawThickness[1]),
                                                          int.Parse(hoverRawThickness[2]),
                                                          int.Parse(hoverRawThickness[3])),
                                    new NinePatchRegion2D(pressedTexture,
                                                          int.Parse(pressedRawThickness[0]),
                                                          int.Parse(pressedRawThickness[1]),
                                                          int.Parse(pressedRawThickness[2]),
                                                          int.Parse(pressedRawThickness[3])),
                                    halign, horizontal, valign, vertical, width, height);
                if (((ButtonWidgetPrototype)prototype).OnClick.Length > 0)
                {
                    string[] onclickParts = ((ButtonWidgetPrototype)prototype).OnClick.Trim().Split(':');
                    switch (onclickParts[0].ToLower())
                    {
                    case "queue":
                        ((Button)widget).Action = () =>
                        {
                            string assemblyQualifiedName = string.Format("GameJam.Events.{0}, GameJam", onclickParts[1]);
                            IEvent evt = (IEvent)Activator.CreateInstance(Type.GetType(assemblyQualifiedName));
                            EventManager.Instance.QueueEvent(evt);
                        };
                        break;

                    default:
                        throw new Exception(string.Format("Unkown action type: `{0}`", onclickParts[0]));
                    }
                }
                ((Button)widget).rightID    = ((ButtonWidgetPrototype)prototype).RightID;
                ((Button)widget).leftID     = ((ButtonWidgetPrototype)prototype).LeftID;
                ((Button)widget).aboveID    = ((ButtonWidgetPrototype)prototype).AboveID;
                ((Button)widget).belowID    = ((ButtonWidgetPrototype)prototype).BelowID;
                ((Button)widget).isSelected = ((ButtonWidgetPrototype)prototype).IsSelected;
            }
            if (prototype is SliderWidgetPrototype)
            {
                TextureRegion2D releasedTexture = content.Load <TextureAtlas>("complete_texture_atlas")
                                                  .GetRegion((((SliderWidgetPrototype)prototype).ReleasedImage));
                string[] releasedRawThickness = ((SliderWidgetPrototype)prototype).ReleasedThickness.Trim().Split(',');
                if (releasedRawThickness.Length != 4)
                {
                    throw new Exception("NinePatchImage thickness must be integers in the for `left,top,right,bottom`.");
                }

                TextureRegion2D hoverTexture = content.Load <TextureAtlas>("complete_texture_atlas")
                                               .GetRegion((((SliderWidgetPrototype)prototype).HoverImage));
                string[] hoverRawThickness = ((SliderWidgetPrototype)prototype).HoverThickness.Trim().Split(',');
                if (hoverRawThickness.Length != 4)
                {
                    throw new Exception("NinePatchImage thickness must be integers in the for `left,top,right,bottom`.");
                }

                TextureRegion2D pressedTexture = content.Load <TextureAtlas>("complete_texture_atlas")
                                                 .GetRegion((((SliderWidgetPrototype)prototype).PressedImage));
                string[] pressedRawThickness = ((SliderWidgetPrototype)prototype).PressedThickness.Trim().Split(',');
                if (pressedRawThickness.Length != 4)
                {
                    throw new Exception("NinePatchImage thickness must be integers in the for `left,top,right,bottom`.");
                }

                widget = new Slider(new NinePatchRegion2D(releasedTexture,
                                                          int.Parse(releasedRawThickness[0]),
                                                          int.Parse(releasedRawThickness[1]),
                                                          int.Parse(releasedRawThickness[2]),
                                                          int.Parse(releasedRawThickness[3])),
                                    new NinePatchRegion2D(hoverTexture,
                                                          int.Parse(hoverRawThickness[0]),
                                                          int.Parse(hoverRawThickness[1]),
                                                          int.Parse(hoverRawThickness[2]),
                                                          int.Parse(hoverRawThickness[3])),
                                    new NinePatchRegion2D(pressedTexture,
                                                          int.Parse(pressedRawThickness[0]),
                                                          int.Parse(pressedRawThickness[1]),
                                                          int.Parse(pressedRawThickness[2]),
                                                          int.Parse(pressedRawThickness[3])),
                                    halign, horizontal, valign, vertical, width, height, ((SliderWidgetPrototype)prototype).isVertical, ((SliderWidgetPrototype)prototype).isHorizontal, ((SliderWidgetPrototype)prototype).divisions, ((SliderWidgetPrototype)prototype).cvar);
                ((Slider)widget).rightID    = ((SliderWidgetPrototype)prototype).RightID;
                ((Slider)widget).leftID     = ((SliderWidgetPrototype)prototype).LeftID;
                ((Slider)widget).aboveID    = ((SliderWidgetPrototype)prototype).AboveID;
                ((Slider)widget).belowID    = ((SliderWidgetPrototype)prototype).BelowID;
                ((Slider)widget).isSelected = ((SliderWidgetPrototype)prototype).IsSelected;
            }
            if (prototype is DropDownPanelWidgetPrototype)
            {
                TextureRegion2D releasedTexture = content.Load <TextureAtlas>("complete_texture_atlas")
                                                  .GetRegion((((DropDownPanelWidgetPrototype)prototype).ReleasedImage));
                string[] releasedRawThickness = ((DropDownPanelWidgetPrototype)prototype).ReleasedThickness.Trim().Split(',');
                if (releasedRawThickness.Length != 4)
                {
                    throw new Exception("NinePatchImage thickness must be integers in the for `left,top,right,bottom`.");
                }

                TextureRegion2D hoverTexture = content.Load <TextureAtlas>("complete_texture_atlas")
                                               .GetRegion((((DropDownPanelWidgetPrototype)prototype).HoverImage));
                string[] hoverRawThickness = ((DropDownPanelWidgetPrototype)prototype).HoverThickness.Trim().Split(',');
                if (hoverRawThickness.Length != 4)
                {
                    throw new Exception("NinePatchImage thickness must be integers in the for `left,top,right,bottom`.");
                }

                TextureRegion2D pressedTexture = content.Load <TextureAtlas>("complete_texture_atlas")
                                                 .GetRegion((((DropDownPanelWidgetPrototype)prototype).PressedImage));
                string[] pressedRawThickness = ((DropDownPanelWidgetPrototype)prototype).PressedThickness.Trim().Split(',');
                if (pressedRawThickness.Length != 4)
                {
                    throw new Exception("NinePatchImage thickness must be integers in the for `left,top,right,bottom`.");
                }

                AbstractValue contentsWidth  = ValueFromString(((DropDownPanelWidgetPrototype)prototype).ContentsInfo.Width);
                AbstractValue contentsHeight = ValueFromString(((DropDownPanelWidgetPrototype)prototype).ContentsInfo.Height);

                string[] rawEventTypes = ((DropDownPanelWidgetPrototype)prototype).CloseOn.Split(',');
                Type[]   eventTypes    = new Type[rawEventTypes.Length];
                for (int i = 0; i < rawEventTypes.Length; i++)
                {
                    string rawEventType          = rawEventTypes[i];
                    string assemblyQualifiedName = string.Format("GameJam.Events.{0}, GameJam", rawEventType);
                    eventTypes[i] = Type.GetType(assemblyQualifiedName);
                }

                widget = new DropDownPanel(new NinePatchRegion2D(releasedTexture,
                                                                 int.Parse(releasedRawThickness[0]),
                                                                 int.Parse(releasedRawThickness[1]),
                                                                 int.Parse(releasedRawThickness[2]),
                                                                 int.Parse(releasedRawThickness[3])),
                                           new NinePatchRegion2D(hoverTexture,
                                                                 int.Parse(hoverRawThickness[0]),
                                                                 int.Parse(hoverRawThickness[1]),
                                                                 int.Parse(hoverRawThickness[2]),
                                                                 int.Parse(hoverRawThickness[3])),
                                           new NinePatchRegion2D(pressedTexture,
                                                                 int.Parse(pressedRawThickness[0]),
                                                                 int.Parse(pressedRawThickness[1]),
                                                                 int.Parse(pressedRawThickness[2]),
                                                                 int.Parse(pressedRawThickness[3])),
                                           halign, horizontal, valign, vertical, width, height,
                                           contentsWidth, contentsHeight,
                                           eventTypes);

                ((DropDownPanel)widget).rightID    = ((DropDownPanelWidgetPrototype)prototype).RightID;
                ((DropDownPanel)widget).leftID     = ((DropDownPanelWidgetPrototype)prototype).LeftID;
                ((DropDownPanel)widget).aboveID    = ((DropDownPanelWidgetPrototype)prototype).AboveID;
                ((DropDownPanel)widget).belowID    = ((DropDownPanelWidgetPrototype)prototype).BelowID;
                ((DropDownPanel)widget).isSelected = ((DropDownPanelWidgetPrototype)prototype).IsSelected;

                foreach (WidgetPrototype childPrototype in ((DropDownPanelWidgetPrototype)prototype).ContentsInfo.Children)
                {
                    ((DropDownPanel)widget).AddContent(CreateFromPrototype(content, childPrototype, ref widgetIdDict));
                }
            }

            if (widget is IParentWidget)
            {
                List <WidgetPrototype> children = prototype.Children;
                if (prototype is ExternalWidgetPrototype)
                {
                    string src = ((ExternalWidgetPrototype)prototype).Source;
                    children = content.Load <List <WidgetPrototype> >(src);
                }
                foreach (WidgetPrototype childPrototype in children)
                {
                    ((IParentWidget)widget).Add(CreateFromPrototype(content, childPrototype, ref widgetIdDict));
                }
            }

            widget.Hidden = prototype.Hidden;
            widget.Alpha  = prototype.Alpha;

            if (prototype.AspectRatio.Length > 0)
            {
                string[] aspectRatioParts = prototype.AspectRatio.Split(new[] { ':', '/' });
                float    aspectRatio      = 0;
                if (aspectRatioParts.Length == 1)
                {
                    aspectRatio = float.Parse(aspectRatioParts[0]);
                }
                if (aspectRatioParts.Length == 2)
                {
                    aspectRatio = float.Parse(aspectRatioParts[0]) / float.Parse(aspectRatioParts[1]);
                }
                widget.AspectRatio         = aspectRatio;
                widget.MaintainAspectRatio = true;
            }

            if (prototype.ID.Trim().Length > 0)
            {
                if (widgetIdDict.ContainsKey(prototype.ID))
                {
                    throw new Exception(string.Format("Duplicate Widget ID: '{0}'", prototype.ID));
                }
                widgetIdDict.Add(prototype.ID, new WeakReference <Widget>(widget));
            }

            if (prototype.Class.Trim().Length > 0)
            {
                string[] classes = prototype.Class.Trim().ToLower().Split(',');
                widget.Classes.AddRange(classes);
            }

            return(widget);
        }
Ejemplo n.º 2
0
 public static Widget CreateFromPrototype(ContentManager content, WidgetPrototype prototype, Root root)
 {
     return(CreateFromPrototype(content, prototype, ref root._widgetIdDict));
 }