Esempio n. 1
0
    public void ExitPortConversation()
    {
        bool city = ds.Storage.GetValue("$entering_city").AsBool;

        Debug.Log($"Exiting the conversation. Entering the city {city}");

        string intentText = ds.Storage.GetValue("$intent").AsString;

        script_GUI.Intention intent;
        switch (intentText)
        {
        case ("water"):
            intent = script_GUI.Intention.Water;
            break;

        case ("trading"):
            intent = script_GUI.Intention.Trading;
            break;

        case ("tavern"):
            intent = script_GUI.Intention.Tavern;
            break;

        case ("all"):
            intent = script_GUI.Intention.All;
            break;

        default:
            intent = script_GUI.Intention.Water;
            break;
        }

        if (city)
        {
            ds.gui.GUI_EnterPort(intent);
        }
        else
        {
            ds.gui.GUI_ExitPortNotification();
        }

        StartCoroutine(ds.DeactivateSelf());
    }