Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/*
 *
 *	Adventure Creator
 *	by Chris Burton, 2013-2014
 *	
 *	"ActionConversation.cs"
 * 
 *	This action turns on a conversation.
 * 
 */

using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using AC;

#if UNITY_EDITOR
using UnityEditor;
#endif

[System.Serializable]
public class ActionConversation : Action
{

	public int constantID = 0;
	public Conversation conversation;
	
	
	public ActionConversation ()
	{
		this.isDisplayed = true;
		title = "Dialogue: Start conversation";
		numSockets = 0;
	}
	
	
	override public float Run ()
	{
		if (isAssetFile && constantID != 0)
		{
			// Attempt to find the correct scene object
			ConstantID idObject = Serializer.returnComponent <ConstantID> (constantID);
			if (idObject != null && idObject.GetComponent <Conversation>())
			{
				conversation = idObject.GetComponent <Conversation>();
			}
			else
			{
				conversation = null;
			}
		}

		if (conversation)
		{
			conversation.Interact ();
		}
		
		return 0f;
	}
	
	
	override public int End (List<AC.Action> actions)
	{
		return -1;
	}
	
	
	#if UNITY_EDITOR

	override public void ShowGUI ()
	{
		if (isAssetFile)
		{
			constantID = EditorGUILayout.IntField ("Conversation (ID):", constantID);
		}
		else
		{
			conversation = (Conversation) EditorGUILayout.ObjectField ("Conversation:", conversation, typeof (Conversation), true);
		}
	}
	
	override public string SetLabel ()
	{
		string labelAdd = "";
		
		if (conversation)
		{
			labelAdd = " (" + conversation + ")";
		}
		
		return labelAdd;
	}

	#endif
	
}

Commits for Nextrek/SpaceCrew/SpaceCrew/Assets/AdventureCreator/Scripts/Actions/ActionConversation.cs

Diff revisions: vs.
Revision Author Commited Message
83 FMMortaroli picture FMMortaroli Tue 13 May, 2014 11:32:51 +0000