@ -5,30 +5,50 @@ using System;
using System.Collections ;
using System.Collections ;
using System.Collections.Generic ;
using System.Collections.Generic ;
public class DialogController : MonoBehaviour
namespace Fungus.Script
{
{
public Sprite testCharacter ;
public class DialogController : MonoBehaviour
{
public enum DialogSide
{
Left ,
Right
} ;
public class Option
{
public string text ;
public Action onSelect ;
}
public Canvas dialogCanvas ;
public Canvas dialogCanvas ;
public List < Button > optionButtons = new List < Button > ( ) ;
public List < UnityEngine . UI . Button > optionButtons = new List < UnityEngine . UI . Button > ( ) ;
public Text nameText ;
public Text nameText ;
public Text storyText ;
public Text storyText ;
public Image continueImage ;
public Image continueImage ;
public Image leftImage ;
public Image leftImage ;
public Image rightImage ;
public Image rightImage ;
public enum ImageSide
List < Action > optionActions = new List < Action > ( ) ;
public void SetCharacter ( Character character )
{
{
Left ,
if ( character = = null )
Right
{
} ;
return ;
}
SetCharacterImage ( character . characterImage , character . dialogSide ) ;
SetCharacterName ( character . name , character . characterColor ) ;
}
public void SetCharacterImage ( Sprite image , ImageSide side )
public void SetCharacterImage ( Sprite image , Dialog Side side )
{
{
if ( leftImage ! = null )
if ( leftImage ! = null )
{
{
if ( image ! = null & &
if ( image ! = null & &
side = = Image Side. Left )
side = = Dialog Side. Left )
{
{
leftImage . sprite = image ;
leftImage . sprite = image ;
leftImage . enabled = true ;
leftImage . enabled = true ;
@ -43,7 +63,7 @@ public class DialogController : MonoBehaviour
{
{
rightImage . sprite = null ;
rightImage . sprite = null ;
if ( image ! = null & &
if ( image ! = null & &
side = = Image Side. Right )
side = = Dialog Side. Right )
{
{
rightImage . sprite = image ;
rightImage . sprite = image ;
rightImage . enabled = true ;
rightImage . enabled = true ;
@ -65,15 +85,55 @@ public class DialogController : MonoBehaviour
}
}
}
}
public void SetStoryText ( string text )
public void Say ( string text , Action onComplete )
{
{
Clear ( ) ;
if ( storyText ! = null )
if ( storyText ! = null )
{
{
storyText . text = text ;
storyText . text = text ;
}
}
// TODO: Wait for text to finish writing
ShowContinueIcon ( true ) ;
StartCoroutine ( WaitForInput ( onComplete ) ) ;
}
}
public void ShowContinueIcon ( bool visible )
public void Say ( string text , List < Option > options )
{
Clear ( ) ;
if ( storyText ! = null )
{
storyText . text = text ;
}
ShowContinueIcon ( false ) ;
foreach ( Option option in options )
{
AddOption ( option . text , option . onSelect ) ;
}
}
IEnumerator WaitForInput ( Action onComplete )
{
// TODO: Handle touch input
while ( ! Input . GetMouseButtonDown ( 0 ) )
{
yield return null ;
}
Clear ( ) ;
if ( onComplete ! = null )
{
onComplete ( ) ;
}
}
void ShowContinueIcon ( bool visible )
{
{
if ( continueImage ! = null )
if ( continueImage ! = null )
{
{
@ -81,27 +141,47 @@ public class DialogController : MonoBehaviour
}
}
}
}
public void ClearOptions ( )
void Clear ( )
{
ClearStoryText ( ) ;
ClearOptions ( ) ;
}
void ClearStoryText ( )
{
if ( storyText ! = null )
{
storyText . text = "" ;
}
}
void ClearOptions ( )
{
{
if ( optionButtons = = null )
if ( optionButtons = = null )
{
{
return ;
return ;
}
}
foreach ( Button button in optionButtons )
optionActions . Clear ( ) ;
foreach ( UnityEngine . UI . Button button in optionButtons )
{
if ( button ! = null )
{
{
button . gameObject . SetActive ( false ) ;
button . gameObject . SetActive ( false ) ;
}
}
}
}
}
public void AddOption ( string text , Action action )
bool AddOption ( string text , Action action )
{
{
if ( optionButtons = = null )
if ( optionButtons = = null )
{
{
return ;
return false ;
}
}
foreach ( Button button in optionButtons )
bool addedOption = false ;
foreach ( UnityEngine . UI . Button button in optionButtons )
{
{
if ( ! button . gameObject . activeSelf )
if ( ! button . gameObject . activeSelf )
{
{
@ -113,37 +193,28 @@ public class DialogController : MonoBehaviour
textComponent . text = text ;
textComponent . text = text ;
}
}
// TODO: Connect action
optionActions . Add ( action ) ;
addedOption = true ;
break ;
break ;
}
}
}
}
}
public void Start ( )
{
SetCharacterImage ( testCharacter , ImageSide . Left ) ;
SetCharacterName ( "Podrick" , Color . red ) ;
SetStoryText ( "Simple story text" ) ;
ShowContinueIcon ( false ) ;
ClearOptions ( ) ;
return addedOption ;
AddOption ( "Something 1" , Callback ) ;
AddOption ( "Something 2" , Callback ) ;
}
}
void Callback ( )
public void SelectOption ( int index )
{
if ( index < optionActions . Count )
{
{
Debug . Log ( "Callback" ) ;
Action optionAction = optionActions [ index ] ;
if ( optionAction ! = null )
{
Clear ( ) ;
optionAction ( ) ;
}
}
}
}
}
//public UnityEvent testEvent;
// Write story text over time
// Show character image (with side, fade in?)
// Hide / Show canvas
// Show continue image
// Show one button
// Show button grid
}
}