Ejemplo n.º 1
0
    public void Open(CraftingStation pStation)
    {
        InventoryUI.CurrentStorage = GameManager.Instance.Player.GetComponent <PlayerInventory>();
        IsOpen  = true;
        Station = pStation;
        Station.OnOutputChanged += Draw;

        Draw(Station);

        Window.Open();
    }
Ejemplo n.º 2
0
 public void Open(string pTitle, string pPrompt, int pMinAmount, int pMaxAmount, int pCurrentValue, string pTextToAdd = "")
 {
     Title.text              = pTitle;
     PromptText.text         = pPrompt;
     ValueInput.Minvalue     = pMinAmount;
     ValueInput.MaxValue     = pMaxAmount;
     ValueInput.CurrentValue = pCurrentValue;
     ValueInput.TextToAdd    = pTextToAdd;
     ValueInput.UpdateText();
     Window.Open();
 }
Ejemplo n.º 3
0
 public virtual void Open(string pTitle = "", string pPrompt = "")
 {
     if (Title != null)
     {
         Title.text = pTitle;
     }
     if (PromptText != null)
     {
         PromptText.text = pPrompt;
     }
     Window.Open();
 }
Ejemplo n.º 4
0
        public void Open(string pBlossom, int pFee)
        {
            BlossomController blossom = BlossomManager.Instance.GetSpawnedBlossom(pBlossom).GetComponent <BlossomController>();

            float AgilityPotential     = blossom.GetTruePotential(Stat.StatName.Agility);         // DialogueLua.GetVariable(pBlossom + "AgilityPotential").asFloat;
            float AgilityLearningSpeed = blossom.GetTrueLearningSpeed(Stat.StatName.Agility);     //DialogueLua.GetVariable(pBlossom + "AgilityLearningSpeed").asFloat;

            float StrengthPotential     = blossom.GetTruePotential(Stat.StatName.Strength);       //DialogueLua.GetVariable(pBlossom + "StrengthPotential").asFloat;
            float StrengthLearningSpeed = blossom.GetTrueLearningSpeed(Stat.StatName.Strength);   //DialogueLua.GetVariable(pBlossom + "StrengthLearningSpeed").asFloat;

            float IntellectPotential     = blossom.GetTruePotential(Stat.StatName.Intellect);     //DialogueLua.GetVariable(pBlossom + "IntellectPotential").asFloat;
            float IntellectLearningSpeed = blossom.GetTrueLearningSpeed(Stat.StatName.Intellect); // DialogueLua.GetVariable(pBlossom + "IntellectLearningSpeed").asFloat;

            float CharmPotential     = blossom.GetTruePotential(Stat.StatName.Charm);             //DialogueLua.GetVariable(pBlossom + "CharmPotential").asFloat;
            float CharmLearningSpeed = blossom.GetTrueLearningSpeed(Stat.StatName.Charm);         //DialogueLua.GetVariable(pBlossom + "CharmLearningSpeed").asFloat;

            AgilityText.text   = "Agility: Potential: " + AgilityPotential.ToString("F2") + " Learning Speed: " + AgilityLearningSpeed.ToString("F2");
            StrengthText.text  = "Strength: Potential: " + StrengthPotential.ToString("F2") + " Learning Speed: " + StrengthLearningSpeed.ToString("F2");
            IntellectText.text = "Intellect: Potential: " + IntellectPotential.ToString("F2") + " Learning Speed: " + IntellectLearningSpeed.ToString("F2");
            CharmText.text     = "Charm: Potential: " + CharmPotential.ToString("F2") + " Learning Speed: " + CharmLearningSpeed.ToString("F2");

            FeeText.text = "Adoption Fee: " + pFee.ToString("F2");

            FeeText.color             = new Color(0, 0.5f, 0);
            AcceptButton.interactable = true;

            if (GameManager.Instance.Player.GetComponent <PlayerInventory>().Gold < pFee)
            {
                FeeText.color             = Color.red;
                AcceptButton.interactable = false;
            }
            if (BlossomManager.Instance.GetEmptyHut() == null)
            {
                DialogueManager.ShowAlert("No empty hut");
                AcceptButton.interactable = false;
            }



            Window.Open();
        }
Ejemplo n.º 5
0
 public void Open(string pTitle, string pPrompt)
 {
     Title.text      = pTitle;
     PromptText.text = pPrompt;
     Window.Open();
 }
Ejemplo n.º 6
0
 public void Open(CraftingStation pStation, string pTitle)
 {
     Station    = pStation;
     Title.text = pTitle;
     Window.Open();
 }