Browse Source

Added GetVariable methods on FungusScript

master
chrisgregan 10 years ago
parent
commit
be8e7bacc6
  1. 84
      Assets/Fungus/FungusScript/Scripts/FungusScript.cs

84
Assets/Fungus/FungusScript/Scripts/FungusScript.cs

@ -184,6 +184,27 @@ namespace Fungus
} }
} }
/**
* Gets the value of a boolean variable.
* Returns false if the variable key does not exist.
*/
public bool GetBooleanVariable(string key)
{
foreach (Variable v in variables)
{
if (v.key == key)
{
BooleanVariable variable = v as BooleanVariable;
if (variable != null)
{
return variable.Value;
}
}
}
Debug.LogWarning("Boolean variable " + key + " not found.");
return false;
}
/** /**
* Sets the value of a boolean variable. * Sets the value of a boolean variable.
* The variable must already be added to the list of variables for this Fungus Script. * The variable must already be added to the list of variables for this Fungus Script.
@ -205,6 +226,27 @@ namespace Fungus
Debug.LogWarning("Boolean variable " + key + " not found."); Debug.LogWarning("Boolean variable " + key + " not found.");
} }
/**
* Gets the value of an integer variable.
* Returns false if the variable key does not exist.
*/
public int GetIntegerVariable(string key)
{
foreach (Variable v in variables)
{
if (v.key == key)
{
IntegerVariable variable = v as IntegerVariable;
if (variable != null)
{
return variable.Value;
}
}
}
Debug.LogWarning("Integer variable " + key + " not found.");
return 0;
}
/** /**
* Sets the value of an integer variable. * Sets the value of an integer variable.
* The variable must already be added to the list of variables for this Fungus Script. * The variable must already be added to the list of variables for this Fungus Script.
@ -226,6 +268,27 @@ namespace Fungus
Debug.LogWarning("Integer variable " + key + " not found."); Debug.LogWarning("Integer variable " + key + " not found.");
} }
/**
* Gets the value of a float variable.
* Returns false if the variable key does not exist.
*/
public float GetFloatVariable(string key)
{
foreach (Variable v in variables)
{
if (v.key == key)
{
FloatVariable variable = v as FloatVariable;
if (variable != null)
{
return variable.Value;
}
}
}
Debug.LogWarning("Float variable " + key + " not found.");
return 0f;
}
/** /**
* Sets the value of a float variable. * Sets the value of a float variable.
* The variable must already be added to the list of variables for this Fungus Script. * The variable must already be added to the list of variables for this Fungus Script.
@ -247,6 +310,27 @@ namespace Fungus
Debug.LogWarning("Float variable " + key + " not found."); Debug.LogWarning("Float variable " + key + " not found.");
} }
/**
* Gets the value of a string variable.
* Returns false if the variable key does not exist.
*/
public string GetStringVariable(string key)
{
foreach (Variable v in variables)
{
if (v.key == key)
{
StringVariable variable = v as StringVariable;
if (variable != null)
{
return variable.Value;
}
}
}
Debug.LogWarning("String variable " + key + " not found.");
return "";
}
/** /**
* Sets the value of a string variable. * Sets the value of a string variable.
* The variable must already be added to the list of variables for this Fungus Script. * The variable must already be added to the list of variables for this Fungus Script.

Loading…
Cancel
Save