2018-10-14 19:55:46 -04:00
|
|
|
|
using System;
|
2018-10-14 23:33:23 -04:00
|
|
|
|
using System.Collections.Generic;
|
2018-10-14 19:55:46 -04:00
|
|
|
|
using System.Text;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
|
|
public class ExperimentController : MonoBehaviour {
|
|
|
|
|
|
|
|
|
|
GameObject startDot;
|
|
|
|
|
GameObject nextDot;
|
|
|
|
|
int trialIndex;
|
|
|
|
|
int trialDotIndex;
|
|
|
|
|
Participant participant;
|
2018-10-14 23:33:23 -04:00
|
|
|
|
List<GameObject> dots = new List<GameObject>();
|
2018-10-14 19:55:46 -04:00
|
|
|
|
// Use this for initialization
|
|
|
|
|
void Start () {
|
|
|
|
|
//FOR THE LOVE OF GOD FUCKING DELETE THIS, SERIOUSLY CHRIS DON'T YOU DARE FORGET
|
|
|
|
|
string fuck = "ewoidHJpYWxzIiA6IFsKICBbIkxlZnRMb25nIiwiUmlnaHRNZWRpdW0iLCJMZWZ0U2hvcnQiLCJVcE1lZGl1bSIsIlVwTG9uZyIsIlJpZ2h0U2hvcnQiXSwKICBbIlVwU2hvcnQiLCJSaWdodExvbmciLCJMZWZ0TWVkaXVtIiwiUmlnaHRNZWRpdW0iLCJMZWZ0TG9uZyIsIlVwTG9uZyJdLAogIFsiUmlnaHRTaG9ydCIsIlVwTWVkaXVtIiwiTGVmdE1lZGl1bSIsIkxlZnRTaG9ydCIsIlJpZ2h0TG9uZyIsIlVwU2hvcnQiXSwKICBbIkxlZnRMb25nIiwiUmlnaHRNZWRpdW0iLCJMZWZ0U2hvcnQiLCJVcE1lZGl1bSIsIlVwTG9uZyIsIlJpZ2h0U2hvcnQiXSwKICBbIlVwU2hvcnQiLCJSaWdodExvbmciLCJMZWZ0TWVkaXVtIiwiUmlnaHRNZWRpdW0iLCJMZWZ0TG9uZyIsIlVwTG9uZyJdLAogIFsiUmlnaHRTaG9ydCIsIlVwTWVkaXVtIiwiTGVmdE1lZGl1bSIsIkxlZnRTaG9ydCIsIlJpZ2h0TG9uZyIsIlVwU2hvcnQiXSwKICBbIkxlZnRMb25nIiwiUmlnaHRNZWRpdW0iLCJMZWZ0U2hvcnQiLCJVcE1lZGl1bSIsIlVwTG9uZyIsIlJpZ2h0U2hvcnQiXSwKICBbIlVwU2hvcnQiLCJSaWdodExvbmciLCJMZWZ0TWVkaXVtIiwiUmlnaHRNZWRpdW0iLCJMZWZ0TG9uZyIsIlVwTG9uZyJdLAogIFsiUmlnaHRTaG9ydCIsIlVwTWVkaXVtIiwiTGVmdE1lZGl1bSIsIkxlZnRTaG9ydCIsIlJpZ2h0TG9uZyIsIlVwU2hvcnQiXQpdLAoicGFydGljaXBhbnRJZCIgOiAxLAoiaW5wdXRNZXRob2QiIDogImNhcmRib2FyZCIKfQo=";
|
|
|
|
|
byte[] decodedBytes = Convert.FromBase64String(fuck);
|
|
|
|
|
string decodedText = Encoding.UTF8.GetString(decodedBytes);
|
|
|
|
|
UnityEngine.Debug.Log(decodedText);
|
|
|
|
|
participant = new Participant(decodedText);
|
|
|
|
|
startDot = GameObject.Find("StartButton");
|
|
|
|
|
trialIndex = 0;
|
|
|
|
|
trialDotIndex = 0;
|
|
|
|
|
foreach (GameObject go in GameObject.FindGameObjectsWithTag("Dot"))
|
|
|
|
|
{
|
2018-10-14 23:33:23 -04:00
|
|
|
|
dots.Add(go);
|
2018-10-14 19:55:46 -04:00
|
|
|
|
Hide(go);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Hide(GameObject dot)
|
|
|
|
|
{
|
2018-10-14 23:33:23 -04:00
|
|
|
|
dot.SetActive(false);
|
2018-10-14 19:55:46 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Show(GameObject dot)
|
|
|
|
|
{
|
2018-10-14 23:33:23 -04:00
|
|
|
|
dot.SetActive(true);
|
2018-10-14 19:55:46 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void NextDot()
|
|
|
|
|
{
|
2018-10-14 23:33:23 -04:00
|
|
|
|
nextDot = FindDot(participant.trials[trialIndex][trialDotIndex]);
|
2018-10-14 19:55:46 -04:00
|
|
|
|
trialDotIndex++;
|
|
|
|
|
Show(nextDot);
|
|
|
|
|
Hide(startDot);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void BackToStart()
|
|
|
|
|
{
|
|
|
|
|
Hide(nextDot);
|
|
|
|
|
Show(startDot);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Update is called once per frame
|
|
|
|
|
void Update () {
|
|
|
|
|
|
|
|
|
|
}
|
2018-10-14 23:33:23 -04:00
|
|
|
|
|
|
|
|
|
GameObject FindDot(string name)
|
|
|
|
|
{
|
|
|
|
|
foreach(GameObject dot in dots)
|
|
|
|
|
{
|
|
|
|
|
if (dot.name == name) return dot;
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2018-10-14 19:55:46 -04:00
|
|
|
|
}
|