Example #1
0
        /**
         * Konstruktor, für die AccessorySample Projekt
         */
        public AccessoryItem(AccessoryPositon position, String path)
        {
            Position = position;
            String imagePath = PATH + path;

            Image = new BitmapImage(new Uri(@imagePath, UriKind.RelativeOrAbsolute));
            Width = 0.2;
        }
Example #2
0
        /**
         * Konstruktor
         */
        public AccessoryItem(AccessoryPositon position, int category, bool female)
        {
            Position = position;
            String imagePath = PATH;
            double width;

            switch (category)
            {
            // Beach
            case 1:
                imagePath += "Hat_Beach.png";
                width      = 0.24;
                break;

            // Ski
            case 2:
                switch (new Random().Next(0, 2))
                {
                case 1:
                    imagePath += "Hat_Ski2.png";
                    width      = 0.17;
                    break;

                default:
                    imagePath += "Hat_Ski.png";
                    width      = 0.255;
                    break;
                }
                break;

            // City
            case 3:
                if (female)
                {
                    imagePath += "Hat_City_Female.png";
                    width      = 0.225;
                }
                else
                {
                    imagePath += "Hat_City_Male.png";
                    width      = 0.215;
                }
                break;

            // Wander
            case 4:
                switch (new Random().Next(0, 2))
                {
                case 1:
                    imagePath += "Hat_Wander2.png";
                    width      = 0.3;
                    break;

                default:
                    imagePath += "Hat_Wander.png";
                    width      = 0.27;
                    break;
                }
                break;

            default:
                imagePath += "Hat_Default.png";
                width      = 0.225;
                break;
            }
            Image = new BitmapImage(new Uri(@imagePath, UriKind.RelativeOrAbsolute));
            Width = width;
        }
Example #3
0
 /**
  	 * Konstruktor
  */
 public AccessoryItem(AccessoryPositon position, int category, bool female)
 {
     Position = position;
     String imagePath = PATH;
     double width;
     switch (category)
     {
         // Beach
         case 1:
             imagePath += "Hat_Beach.png";
             width = 0.24;
             break;
         // Ski
         case 2:
             switch (new Random().Next(0, 2))
             {
                 case 1:
                     imagePath += "Hat_Ski2.png";
                     width = 0.17;
                     break;
                 default:
                     imagePath += "Hat_Ski.png";
                     width = 0.255;
                     break;
             }
             break;
         // City
         case 3:
             if (female)
             {
                 imagePath += "Hat_City_Female.png";
                 width = 0.225;
             }
             else
             {
                 imagePath += "Hat_City_Male.png";
                 width = 0.215;
             }
             break;
         // Wander
         case 4:
             switch (new Random().Next(0, 2))
             {
                 case 1:
                     imagePath += "Hat_Wander2.png";
                     width = 0.3;
                     break;
                 default:
                     imagePath += "Hat_Wander.png";
                     width = 0.27;
                     break;
             }
             break;
         default:
             imagePath += "Hat_Default.png";
             width = 0.225;
             break;
     }
     Image = new BitmapImage(new Uri(@imagePath, UriKind.RelativeOrAbsolute));
     Width = width;
 }
Example #4
0
 /**
  	 * Konstruktor, für die AccessorySample Projekt
  */
 public AccessoryItem(AccessoryPositon position, String path)
 {
     Position = position;
     String imagePath = PATH + path;
     Image = new BitmapImage(new Uri(@imagePath, UriKind.RelativeOrAbsolute));
     Width = 0.2;
 }