Skip to content

Instantly share code, notes, and snippets.

@tsubaki
Last active August 29, 2015 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsubaki/288dc78533e635cc16f3 to your computer and use it in GitHub Desktop.
Save tsubaki/288dc78533e635cc16f3 to your computer and use it in GitHub Desktop.
超簡単なテキスト制御5
using System.Text.RegularExpressions;
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
// コマンド制御
public class CommandController : SingletonMonoBehaviourFast<CommandController>
{
// 文字を解析しながら呼び出すコマンド
private readonly List<ICommand> m_commandList = new List<ICommand>()
{
new CommandUpdateImage(), // name=オブジェクト名 image=イメージ名
new CommandJumpNextScenario(), // fileName=シナリオ名
};
// 文字の表示が完了したタイミングで呼ばれる処理
private List<IPreCommand> m_preCommandList = new List<IPreCommand>();
public void PreloadCommand(string line)
{
var dic = CommandAnalytics(line);
foreach( var command in m_preCommandList )
if( command.Tag == dic["tag"] )
command.PreCommand(dic);
}
public bool LoadCommand(string line)
{
var dic = CommandAnalytics(line);
foreach( var command in m_commandList )
{
if( command.Tag == dic["tag"] ){
command.Command(dic);
return true;
}
}
return false;
}
// コマンドを解析
private Dictionary<string, string> CommandAnalytics(string line )
{
Dictionary<string, string> command = new Dictionary<string, string>();
// コマンド名を取得
var tag = Regex.Match(line, "@(\\S+)\\s");
command.Add("tag", tag.Groups[1].ToString());
// コマンドのパラメータを取得
Regex regex = new Regex("(\\S+)=(\\S+)");
var matches = regex.Matches(line);
foreach( Match match in matches )
{
command.Add(match.Groups[1].ToString(), match.Groups[2].ToString());
}
return command;
}
#region UNITY_CALLBACK
new void Awake()
{
base.Awake();
// PreCommandを取得
foreach( var command in m_commandList ){
if( command is IPreCommand ){
m_preCommandList.Add((IPreCommand)command);
}
}
}
#endregion
}
using UnityEngine;
using System.Collections;
using System.Collections.Generic;
// コマンド
public interface ICommand
{
string Tag{get;}
void Command(Dictionary<string, string> command);
}
// 事前に呼ばれるコマンド
public interface IPreCommand
{
string Tag{get;}
void PreCommand(Dictionary<string, string> command);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment