Exemple #1
0
        public void Respond(string organizationObjectId, AcceptanceType acceptType)
        {
            ORC.PlacerOrderNumber.UniversalID.Value = organizationObjectId;
            ORC.OrderControlCodeReason.Text.Value   = acceptType.ToString();
            switch (acceptType)
            {
            case AcceptanceType.Accepted:
                ORC.OrderControl.Value = OrderControlCode.OK.ToString();
                ORC.OrderStatus.Value  = OrderStatus.IP.ToString();
                break;

            case AcceptanceType.Declined:
                ORC.OrderControl.Value = OrderControlCode.UA.ToString();
                ORC.OrderStatus.Value  = OrderStatus.CA.ToString();
                break;
            }

            var theDateTime = DateTime.UtcNow;

            ORC.DateTimeOfTransaction.Time.SetLongDate(theDateTime);
            MSH.DateTimeOfMessage.Time.SetLongDate(theDateTime);
        }
Exemple #2
0
        public GameObject GetShapeGameObject(ShapeType shapeType, AcceptanceType acceptanceType)
        {
            var key = shapeType + acceptanceType.ToString();

            if (shapes.ContainsKey(key))
            {
                List <GameObject> shapeList = shapes[key];
                if (shapeList.Count == 0)
                {
                    return(InstantiateShape(shapeType, acceptanceType));
                }
                else
                {
                    GameObject willReturn = shapeList[shapeList.Count - 1];
                    shapeList.RemoveAt(shapeList.Count - 1);
                    willReturn.gameObject.SetActive(true);
                    return(willReturn);
                }
            }
            else
            {
                return(InstantiateShape(shapeType, acceptanceType));
            }
        }