Newer
Older
using System.Collections;
using System.Collections.Generic;
using Newtonsoft.Json;
using static CommunicationEvents;
public class ScrollDetails : MonoBehaviour
{
public GameObject parameterDisplayPrefab;
private static List<Scroll.ScrollAssignment> LatestCompletions;
private static List<Fact> LatestRenderedHints;
John Schihada
committed
public string currentMmtAnswer;
public bool dynamicScrollDescriptionsActive = true;
public bool automaticHintGenerationActive = true;
// Start is called before the first frame update
void Start()
{
if (cursor == null) cursor = GameObject.FindObjectOfType<WorldCursor>();
ScrollFactHintEvent.AddListener(animateHint);
NewAssignmentEvent.AddListener(newAssignmentTrigger);
John Schihada
committed
Transform originalScroll = gameObject.transform.GetChild(1).transform;
Transform originalScrollView = originalScroll.GetChild(1);
Transform originalViewport = originalScrollView.GetChild(0);
John Schihada
committed
originalScroll.GetChild(0).GetComponent<TextMeshProUGUI>().text = s.description;
originalViewport.GetChild(0).gameObject.DestroyAllChildren();
ParameterDisplays = new List<GameObject>();
for (int i = 0; i < s.requiredFacts.Count; i++)
var originalObj = Instantiate(parameterDisplayPrefab, parent: originalViewport.GetChild(0));
John Schihada
committed
var originalScrollFact = originalObj.transform.GetChild(0).GetComponent<RenderedScrollFact>();
originalScrollFact.ID = i;
originalScrollFact.Label = s.requiredFacts[i].label;
originalScrollFact.factUri = s.requiredFacts[i].@ref.uri;
John Schihada
committed
ParameterDisplays.Add(originalObj);
John Schihada
committed
public void magicButtonTrigger() {
StartCoroutine(magicButton());
}
IEnumerator magicButton()
John Schihada
committed
//Non blocking wait till sendView() is finished
yield return sendView("/scroll/apply");
John Schihada
committed
if (currentMmtAnswer == null)
John Schihada
committed
Debug.Log("DAS HAT NICHT GEKLAPPT");
//TODO: hier ne Art PopUp, wo drin steht, dass das nicht geklappt hat
PushoutFactFailEvent.Invoke(null);
}
else
{
Scroll.ScrollApplicationInfo pushout = JsonConvert.DeserializeObject<Scroll.ScrollApplicationInfo>(currentMmtAnswer);
readPushout(pushout.acquiredFacts);
public void newAssignmentTrigger() {
if(this.automaticHintGenerationActive || this.dynamicScrollDescriptionsActive)
StartCoroutine(newAssignment());
IEnumerator newAssignment()
John Schihada
committed
//Non blocking wait till sendView() is finished
yield return sendView("/scroll/dynamic");
John Schihada
committed
if (currentMmtAnswer == null)
John Schihada
committed
Debug.Log("DAS HAT NICHT GEKLAPPT");
}
else
{
Scroll.ScrollDynamicInfo scrollDynamicInfo = JsonConvert.DeserializeObject<Scroll.ScrollDynamicInfo>(currentMmtAnswer);
processScrollDynamicInfo(scrollDynamicInfo);
John Schihada
committed
IEnumerator sendView(string endpoint)
string body = prepareScrollAssignments();
Marco Zimmer
committed
using UnityWebRequest www = UnityWebRequest.Put(ServerAdress + endpoint, body);
www.SetRequestHeader("Content-Type", "application/json");
yield return www.SendWebRequest();
if (www.result == UnityWebRequest.Result.ConnectionError
|| www.result == UnityWebRequest.Result.ProtocolError)
John Schihada
committed
currentMmtAnswer = null;
Debug.Log(answer);
John Schihada
committed
currentMmtAnswer = answer;
private string prepareScrollAssignments()
{
Fact tempFact;
List<Scroll.ScrollAssignment> assignmentList = new();
for (int i = 0; i < ParameterDisplays.Count; i++)
{
tempFact = ParameterDisplays[i].GetComponentInChildren<DropHandling>().currentFact;
if (tempFact != null)
{
Scroll.ScrollAssignment listEntry = new()
{
fact = new Scroll.UriReference(ActiveScroll.requiredFacts[i].@ref.uri),
assignment = new JSONManager.OMS(tempFact.Id)
};
}
}
Scroll.FilledScroll filledScroll = new(ActiveScroll.@ref, assignmentList);
return JsonConvert.SerializeObject(filledScroll);
private void readPushout(List<Scroll.ScrollFact> pushoutFacts)
{
if(pushoutFacts.Count == 0)
PushoutFactFailEvent.Invoke(null);
bool samestep = false;
for (int i = 0; i < pushoutFacts.Count; i++, samestep = true)
{
Fact newFact = ParsingDictionary.parseFactDictionary[pushoutFacts[i].getType()].Invoke(pushoutFacts[i]);
PushoutFactEvent.Invoke(FactManager.AddFactIfNotFound(newFact, out _, samestep, null, ActiveScroll.label)
, FactObject.FactMaterials.Solution);
}
else {
Debug.Log("Parsing on pushout-fact returned null -> One of the dependent facts does not exist");
}
}
}
public void processScrollDynamicInfo(Scroll.ScrollDynamicInfo scrollDynamicInfo) {
if (scrollDynamicInfo.completions.Count != 0)
LatestCompletions = scrollDynamicInfo.completions[0];
else
LatestCompletions = new List<Scroll.ScrollAssignment>();
LatestRenderedHints = new List<Fact>();
List<string> hintUris = new();
foreach (Scroll.ScrollAssignment currentCompletion in LatestCompletions) {
hintUris.Add(currentCompletion.fact.uri);
//Update Scroll, process data for later hints and update Uri-List for which hints are available
hintUris = processRenderedScroll(scrollDynamicInfo.rendered, hintUris);
if (this.automaticHintGenerationActive)
{
//Show that Hint is available for ScrollParameter
HintAvailableEvent.Invoke(hintUris);
}
public List<string> processRenderedScroll(Scroll rendered, List<string> hintUris)
{
Transform scroll = gameObject.transform.GetChild(1).transform;
if (this.dynamicScrollDescriptionsActive)
{
//Update scroll-description
scroll.GetChild(0).GetComponent<TextMeshProUGUI>().text = rendered.description;
}
for (int i = 0; i < rendered.requiredFacts.Count; i++)
{
var obj = ParameterDisplays.Find(x => x.transform.GetChild(0).GetComponent<RenderedScrollFact>().factUri.Equals(rendered.requiredFacts[i].@ref.uri));
if (this.dynamicScrollDescriptionsActive)
obj.transform.GetChild(0).GetComponent<RenderedScrollFact>().Label = rendered.requiredFacts[i].label;
}
//Check Hint Informations
//If ScrollFact is assigned -> No Hint
if (obj.transform.GetChild(0).GetComponent<DropHandling>().currentFact == null) {
Fact currentFact = ParsingDictionary.parseFactDictionary[rendered.requiredFacts[i].getType()].Invoke(rendered.requiredFacts[i]);
//If currentFact could be parsed: this fact maybe not yet exists in the global fact-list but there must be a fact
// of the same type and the same dependent facts in the fact-list, otherwise currentFact could not have been parsed
//If the fact could not be parsed -> Therefore not all dependent Facts exist -> No Hint
//AND if fact has no dependent facts -> No Hint
if (currentFact != null && currentFact.hasDependentFacts())
{
//Hint available for abstract-problem uri
Marco Zimmer
committed
hintUris.Add(currentFact.Id);
LatestRenderedHints.Add(currentFact);
}
}
public void animateHint(GameObject scrollParameter, string scrollParameterUri) {
Scroll.ScrollAssignment suitableCompletion = LatestCompletions.Find(x => x.fact.uri.Equals(scrollParameterUri) );
if (suitableCompletion != null)
{
Marco Zimmer
committed
if (StageStatic.stage.factState.ContainsKey(suitableCompletion.assignment.uri))
Marco Zimmer
committed
fact = StageStatic.stage.factState[suitableCompletion.assignment.uri];
//Animate ScrollParameter
scrollParameter.GetComponentInChildren<ImageHintAnimation>().AnimationTrigger();
//Animate Fact in FactPanel
AnimateExistingFactEvent.Invoke(fact);
}
}
Marco Zimmer
committed
else if (LatestRenderedHints.Exists(x => x.Id.Equals(scrollParameterUri)))
Marco Zimmer
committed
fact = LatestRenderedHints.Find(x => x.Id.Equals(scrollParameterUri));
var factId = fact.Id;
//Animate ScrollParameter
scrollParameter.GetComponentInChildren<ImageHintAnimation>().AnimationTrigger();
//If there is an equal existing fact -> Animate that fact AND ScrollParameter
Marco Zimmer
committed
if (StageStatic.stage.factState.ContainsKey(factId))
{ //Animate Fact in FactPanel
AnimateExistingFactEvent.Invoke(StageStatic.stage.factState[factId]);
else { //Generate new FactRepresentation and animate it
AnimateNonExistingFactEvent.Invoke(fact);
}
}