Browse Source

Refactored DoWords method

master
chrisgregan 9 years ago
parent
commit
34c33575c8
  1. 79
      Assets/Fungus/UI/Scripts/Writer.cs

79
Assets/Fungus/UI/Scripts/Writer.cs

@ -392,51 +392,22 @@ namespace Fungus
float timeAccumulator = Time.deltaTime; float timeAccumulator = Time.deltaTime;
Color32 c = hiddenTextColor;
string hiddenColor = String.Format("#{0:X2}{1:X2}{2:X2}{3:X2}", c.r, c.g, c.b, c.a);
for (int i = 0; i < param.Length; ++i) for (int i = 0; i < param.Length; ++i)
{ {
string left = ""; string left = "";
string right = ""; string right = "";
if (writeWholeWords) PartitionString(writeWholeWords, param, i, out left, out right);
{ text = ConcatenateString(startText, openText, closeText, left, right);
// Look ahead to find next whitespace or end of string
for (int j = i; j < param.Length; ++j)
{
if (Char.IsWhiteSpace(param[j]) ||
j == param.Length - 1)
{
left = param.Substring(0, j + 1);
right = param.Substring(j + 1, param.Length - j - 1);
break;
}
}
}
else
{
left = param.Substring(0, i + 1);
right = param.Substring(i + 1);
}
string tempText = startText + openText + left + closeText;
// Make right hand side text invisible
if (right.Length > 0)
{
tempText += "<color=" + hiddenColor + ">" + right + "</color>";
}
text = tempText;
// Punctuation pause
if (left.Length > 0 && if (left.Length > 0 &&
IsPunctuation(left.Substring(left.Length - 1)[0])) IsPunctuation(left.Substring(left.Length - 1)[0]))
{ {
yield return new WaitForSeconds(currentPunctuationPause); yield return new WaitForSeconds(currentPunctuationPause);
} }
// Delay between characters
if (currentWritingSpeed > 0f) if (currentWritingSpeed > 0f)
{ {
if (timeAccumulator > 0f) if (timeAccumulator > 0f)
@ -451,6 +422,48 @@ namespace Fungus
} }
} }
protected void PartitionString(bool wholeWords, string inputString, int i, out string left, out string right)
{
left = "";
right = "";
if (wholeWords)
{
// Look ahead to find next whitespace or end of string
for (int j = i; j < inputString.Length; ++j)
{
if (Char.IsWhiteSpace(inputString[j]) ||
j == inputString.Length - 1)
{
left = inputString.Substring(0, j + 1);
right = inputString.Substring(j + 1, inputString.Length - j - 1);
break;
}
}
}
else
{
left = inputString.Substring(0, i + 1);
right = inputString.Substring(i + 1);
}
}
protected string ConcatenateString(string startText, string openText, string closeText, string leftText, string rightText)
{
string tempText = startText + openText + leftText + closeText;
Color32 c = hiddenTextColor;
string hiddenColor = String.Format("#{0:X2}{1:X2}{2:X2}{3:X2}", c.r, c.g, c.b, c.a);
// Make right hand side text hidden
if (rightText.Length > 0)
{
tempText += "<color=" + hiddenColor + ">" + rightText + "</color>";
}
return tempText;
}
public virtual void SetInputFlag() public virtual void SetInputFlag()
{ {
inputFlag = true; inputFlag = true;

Loading…
Cancel
Save