using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides 10 items of the xAPI_Activities of the context vrRfidChamber as public properties. /// public sealed class xAPI_Activities_VrRfidChamber : xAPI_Activities { /// /// Something an actor can press, which then triggers an action in the lab. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/vrRfidChamber/activities/button /// public readonly xAPI_Activity button = new xAPI_Activity( context: "vrRfidChamber", key: "button", names: new Dictionary { ["en-US"] = "button" }, descriptions: new Dictionary { ["en-US"] = "Something an actor can press, which then triggers an action in the lab." }); /// /// Some kind of written text to explain an action /// URI: https://xapi.elearn.rwth-aachen.de/definitions/vrRfidChamber/activities/comment /// public readonly xAPI_Activity comment = new xAPI_Activity( context: "vrRfidChamber", key: "comment", names: new Dictionary { ["en-US"] = "comment" }, descriptions: new Dictionary { ["en-US"] = "Some kind of written text to explain an action" }); /// /// Represents the RFID chamber. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/vrRfidChamber/activities/device /// public readonly xAPI_Activity device = new xAPI_Activity( context: "vrRfidChamber", key: "device", names: new Dictionary { ["en-US"] = "device " }, descriptions: new Dictionary { ["en-US"] = "Represents the RFID chamber." }); /// /// An actor opened or closed the door /// URI: https://xapi.elearn.rwth-aachen.de/definitions/vrRfidChamber/activities/door /// public readonly xAPI_Activity door = new xAPI_Activity( context: "vrRfidChamber", key: "door", names: new Dictionary { ["en-US"] = "door" }, descriptions: new Dictionary { ["en-US"] = "An actor opened or closed the door" }); /// /// Clicking an item, holding the click and moving it around the lab. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/vrRfidChamber/activities/draggable /// public readonly xAPI_Activity draggable = new xAPI_Activity( context: "vrRfidChamber", key: "draggable", names: new Dictionary { ["en-US"] = "drag" }, descriptions: new Dictionary { ["en-US"] = "Clicking an item, holding the click and moving it around the lab." }); /// /// A keyboard used to input text or interact with the lab. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/vrRfidChamber/activities/keyboard /// public readonly xAPI_Activity keyboard = new xAPI_Activity( context: "vrRfidChamber", key: "keyboard", names: new Dictionary { ["en-US"] = "keyboard" }, descriptions: new Dictionary { ["en-US"] = "A keyboard used to input text or interact with the lab." }); /// /// Some audio content to feel the rela atmosphere of the lab. This can be switched on or off /// URI: https://xapi.elearn.rwth-aachen.de/definitions/vrRfidChamber/activities/labAudio /// public readonly xAPI_Activity labAudio = new xAPI_Activity( context: "vrRfidChamber", key: "labAudio", names: new Dictionary { ["en-US"] = "lab audio" }, descriptions: new Dictionary { ["en-US"] = "Some audio content to feel the rela atmosphere of the lab. This can be switched on or off" }); /// /// A mouse used to click on buttons or drag items in the lab. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/vrRfidChamber/activities/mouse /// public readonly xAPI_Activity mouse = new xAPI_Activity( context: "vrRfidChamber", key: "mouse", names: new Dictionary { ["en-US"] = "mouse" }, descriptions: new Dictionary { ["en-US"] = "A mouse used to click on buttons or drag items in the lab." }); /// /// The screen showing the virtual lab and can be clicked or touched on for interaction with the game. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/vrRfidChamber/activities/screen /// public readonly xAPI_Activity screen = new xAPI_Activity( context: "vrRfidChamber", key: "screen", names: new Dictionary { ["en-US"] = "screen" }, descriptions: new Dictionary { ["en-US"] = "The screen showing the virtual lab and can be clicked or touched on for interaction with the game." }); /// /// Some kind of selection is represented by this. It is given by user. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/vrRfidChamber/activities/selection /// public readonly xAPI_Activity selection = new xAPI_Activity( context: "vrRfidChamber", key: "selection", names: new Dictionary { ["en-US"] = "Select" }, descriptions: new Dictionary { ["en-US"] = "Some kind of selection is represented by this. It is given by user." }); public xAPI_Activities_VrRfidChamber() : base("vrRfidChamber") { } } }