-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
639 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
//detector template | ||
|
||
//add output variable name below | ||
var variableName = "critical_struggle" | ||
|
||
//initializations (do not touch) | ||
var detector_output = {name: variableName, | ||
category: "Dashboard", | ||
value: "0, none", | ||
history: "", | ||
skill_names: "", | ||
step_id: "", | ||
transaction_id: "", | ||
time: "" | ||
}; | ||
var mailer; | ||
|
||
//initialize any custom global variables for this detector here | ||
var prevStep = "" | ||
|
||
function receive_transaction( e ){ | ||
//e is the data of the transaction from mailer from transaction assembler | ||
|
||
//set conditions under which transaction should be processed | ||
//(i.e., to update internal state and history, without | ||
//necessarily updating external state and history) | ||
if(e.data.actor == 'student' && e.data.tool_data.action != "UpdateVariable"){ | ||
//do not touch | ||
rawSkills = e.data.tutor_data.skills | ||
var currSkills = [] | ||
for (var property in rawSkills) { | ||
if (rawSkills.hasOwnProperty(property)) { | ||
currSkills.push(rawSkills[property].name + "/" + rawSkills[property].category) | ||
} | ||
} | ||
detector_output.skill_names = currSkills; | ||
detector_output.step_id = e.data.tutor_data.step_id; | ||
|
||
//custom processing (insert code here) | ||
// | ||
// | ||
var booleanValues = [0, 1]; | ||
var timeValues = ["> 25 s" "> 45 s", "> 1 min", "> 2 min", "> 5 min"]; | ||
detector_output.value = str(booleanValues[Math.floor(Math.random() * booleanValues.length)]) + "," + str(timeValues[Math.floor(Math.random() * timeValues.length)]) ; | ||
|
||
} | ||
|
||
//set conditions under which detector should update | ||
//external state and history | ||
if(e.data.actor == 'student' && e.data.tool_data.action != "UpdateVariable"){ | ||
detector_output.time = new Date(); | ||
detector_output.transaction_id = e.data.transaction_id; | ||
|
||
//custom processing (insert code here) | ||
// | ||
// | ||
// | ||
// | ||
// | ||
|
||
mailer.postMessage(detector_output); | ||
postMessage(detector_output); | ||
console.log("output_data = ", detector_output); | ||
} | ||
} | ||
|
||
|
||
self.onmessage = function ( e ) { | ||
console.log(variableName, " self.onmessage:", e, e.data, (e.data?e.data.commmand:null), (e.data?e.data.transaction:null), e.ports); | ||
switch( e.data.command ) | ||
{ | ||
case "connectMailer": | ||
mailer = e.ports[0]; | ||
mailer.onmessage = receive_transaction; | ||
break; | ||
case "initialize": | ||
for (initItem in e.data.initializer){ | ||
if (e.data.initializer[initItem].name == variableName){ | ||
detector_output.history = e.data.initializer[initItem].history; | ||
detector_output.value = e.data.initializer[initItem].value; | ||
} | ||
} | ||
|
||
//optional: Below, specify conditions under which a detector | ||
//should NOT remember their most recent value and history (using the variable "detectorForget"). | ||
//(e.g., setting the condition to "true" will mean that the detector | ||
// will always be reset between problems... and setting the condition to "false" | ||
// means that the detector will never be reset between problems) | ||
// | ||
// | ||
// | ||
detectorForget = true; | ||
|
||
if (detectorForget){ | ||
detector_output.history = ""; | ||
detector_output.value = 0; | ||
} | ||
break; | ||
default: | ||
break; | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
//detector template | ||
|
||
//add output variable name below | ||
var variableName = "idle" | ||
|
||
//initializations (do not touch) | ||
var detector_output = {name: variableName, | ||
category: "Dashboard", | ||
value: "0, none", | ||
history: "", | ||
skill_names: "", | ||
step_id: "", | ||
transaction_id: "", | ||
time: "" | ||
}; | ||
var mailer; | ||
|
||
//initialize any custom global variables for this detector here | ||
var prevStep = "" | ||
|
||
function receive_transaction( e ){ | ||
//e is the data of the transaction from mailer from transaction assembler | ||
|
||
//set conditions under which transaction should be processed | ||
//(i.e., to update internal state and history, without | ||
//necessarily updating external state and history) | ||
if(e.data.actor == 'student' && e.data.tool_data.action != "UpdateVariable"){ | ||
//do not touch | ||
rawSkills = e.data.tutor_data.skills | ||
var currSkills = [] | ||
for (var property in rawSkills) { | ||
if (rawSkills.hasOwnProperty(property)) { | ||
currSkills.push(rawSkills[property].name + "/" + rawSkills[property].category) | ||
} | ||
} | ||
detector_output.skill_names = currSkills; | ||
detector_output.step_id = e.data.tutor_data.step_id; | ||
|
||
//custom processing (insert code here) | ||
// | ||
// | ||
// | ||
// | ||
// | ||
var booleanValues = [0, 1]; | ||
var timeValues = ["> 25 s" "> 45 s", "> 1 min", "> 2 min", "> 5 min"]; | ||
detector_output.value = str(booleanValues[Math.floor(Math.random() * booleanValues.length)]) + "," + str(timeValues[Math.floor(Math.random() * timeValues.length)]) ; | ||
|
||
} | ||
|
||
//set conditions under which detector should update | ||
//external state and history | ||
if(e.data.actor == 'student' && e.data.tool_data.action != "UpdateVariable"){ | ||
detector_output.time = new Date(); | ||
detector_output.transaction_id = e.data.transaction_id; | ||
|
||
//custom processing (insert code here) | ||
// | ||
// | ||
// | ||
// | ||
// | ||
|
||
mailer.postMessage(detector_output); | ||
postMessage(detector_output); | ||
console.log("output_data = ", detector_output); | ||
} | ||
} | ||
|
||
|
||
self.onmessage = function ( e ) { | ||
console.log(variableName, " self.onmessage:", e, e.data, (e.data?e.data.commmand:null), (e.data?e.data.transaction:null), e.ports); | ||
switch( e.data.command ) | ||
{ | ||
case "connectMailer": | ||
mailer = e.ports[0]; | ||
mailer.onmessage = receive_transaction; | ||
break; | ||
case "initialize": | ||
for (initItem in e.data.initializer){ | ||
if (e.data.initializer[initItem].name == variableName){ | ||
detector_output.history = e.data.initializer[initItem].history; | ||
detector_output.value = e.data.initializer[initItem].value; | ||
} | ||
} | ||
|
||
//optional: Below, specify conditions under which a detector | ||
//should NOT remember their most recent value and history (using the variable "detectorForget"). | ||
//(e.g., setting the condition to "true" will mean that the detector | ||
// will always be reset between problems... and setting the condition to "false" | ||
// means that the detector will never be reset between problems) | ||
// | ||
// | ||
// | ||
detectorForget = true; | ||
|
||
if (detectorForget){ | ||
detector_output.history = ""; | ||
detector_output.value = 0; | ||
} | ||
break; | ||
default: | ||
break; | ||
|
||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
//detector template | ||
|
||
//add output variable name below | ||
var variableName = "invisible_hand_raise" | ||
|
||
//initializations (do not touch) | ||
var detector_output = {name: variableName, | ||
category: "Dashboard", | ||
value: "0, none", | ||
history: "", | ||
skill_names: "", | ||
step_id: "", | ||
transaction_id: "", | ||
time: "" | ||
}; | ||
var mailer; | ||
|
||
//initialize any custom global variables for this detector here | ||
var prevStep = "" | ||
|
||
function receive_transaction( e ){ | ||
//e is the data of the transaction from mailer from transaction assembler | ||
|
||
//set conditions under which transaction should be processed | ||
//(i.e., to update internal state and history, without | ||
//necessarily updating external state and history) | ||
if(e.data.actor == 'student' && e.data.tool_data.action != "UpdateVariable"){ | ||
//do not touch | ||
rawSkills = e.data.tutor_data.skills | ||
var currSkills = [] | ||
for (var property in rawSkills) { | ||
if (rawSkills.hasOwnProperty(property)) { | ||
currSkills.push(rawSkills[property].name + "/" + rawSkills[property].category) | ||
} | ||
} | ||
detector_output.skill_names = currSkills; | ||
detector_output.step_id = e.data.tutor_data.step_id; | ||
|
||
//custom processing (insert code here) | ||
// | ||
// | ||
// | ||
// | ||
// | ||
var booleanValues = [0, 1]; | ||
var timeValues = ["> 25 s" "> 45 s", "> 1 min", "> 2 min", "> 5 min"]; | ||
detector_output.value = str(booleanValues[Math.floor(Math.random() * booleanValues.length)]) + "," + str(timeValues[Math.floor(Math.random() * timeValues.length)]) ; | ||
|
||
|
||
} | ||
|
||
//set conditions under which detector should update | ||
//external state and history | ||
if(e.data.actor == 'student' && e.data.tool_data.action != "UpdateVariable"){ | ||
detector_output.time = new Date(); | ||
detector_output.transaction_id = e.data.transaction_id; | ||
|
||
//custom processing (insert code here) | ||
// | ||
// | ||
// | ||
// | ||
// | ||
|
||
mailer.postMessage(detector_output); | ||
postMessage(detector_output); | ||
console.log("output_data = ", detector_output); | ||
} | ||
} | ||
|
||
|
||
self.onmessage = function ( e ) { | ||
console.log(variableName, " self.onmessage:", e, e.data, (e.data?e.data.commmand:null), (e.data?e.data.transaction:null), e.ports); | ||
switch( e.data.command ) | ||
{ | ||
case "connectMailer": | ||
mailer = e.ports[0]; | ||
mailer.onmessage = receive_transaction; | ||
break; | ||
case "initialize": | ||
for (initItem in e.data.initializer){ | ||
if (e.data.initializer[initItem].name == variableName){ | ||
detector_output.history = e.data.initializer[initItem].history; | ||
detector_output.value = e.data.initializer[initItem].value; | ||
} | ||
} | ||
|
||
//optional: Below, specify conditions under which a detector | ||
//should NOT remember their most recent value and history (using the variable "detectorForget"). | ||
//(e.g., setting the condition to "true" will mean that the detector | ||
// will always be reset between problems... and setting the condition to "false" | ||
// means that the detector will never be reset between problems) | ||
// | ||
// | ||
// | ||
detectorForget = true; | ||
|
||
if (detectorForget){ | ||
detector_output.history = ""; | ||
detector_output.value = 0; | ||
} | ||
break; | ||
default: | ||
break; | ||
|
||
} | ||
|
||
} |
Oops, something went wrong.