using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides 8 items of the xAPI_Activities of the context seriousGames as public properties. /// public sealed class xAPI_Activities_SeriousGames : xAPI_Activities { /// /// Additional explanation or information that serves the understanding of the game content. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/seriousGames/activities/explanation /// public readonly xAPI_Activity explanation = new xAPI_Activity( context: "seriousGames", key: "explanation", names: new Dictionary { ["en-US"] = "Explanation", ["de-DE"] = "Erklärung" }, descriptions: new Dictionary { ["en-US"] = "Additional explanation or information that serves the understanding of the game content.", ["de-DE"] = "Zusätzliche Erklärung oder Informationen, die dem Verständis der Spielinhalte dienen." }); /// /// Represents a game or competition of any kind. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/seriousGames/activities/game /// public readonly xAPI_Activity game = new xAPI_Activity( context: "seriousGames", key: "game", names: new Dictionary { ["en-US"] = "game", ["de-DE"] = "Spiel" }, descriptions: new Dictionary { ["en-US"] = "Represents a game or competition of any kind.", ["de-DE"] = "Repräsentiert jede Art von Spiel." }); /// /// The gamemode in which a game is played (e.g. competitive or cooperative). /// URI: https://xapi.elearn.rwth-aachen.de/definitions/seriousGames/activities/gamemode /// public readonly xAPI_Activity gamemode = new xAPI_Activity( context: "seriousGames", key: "gamemode", names: new Dictionary { ["en-US"] = "gamemode", ["de-DE"] = "Spielmodus" }, descriptions: new Dictionary { ["en-US"] = "The gamemode in which a game is played (e.g. competitive or cooperative).", ["de-DE"] = "Der Spielmodus in dem ein Spiel gespielt wird (z.B. kompetetiv oder kooperativ)." }); /// /// A level is some, in itself closed, part of the game which the game itself calls level. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/seriousGames/activities/level /// public readonly xAPI_Activity level = new xAPI_Activity( context: "seriousGames", key: "level", names: new Dictionary { ["en-US"] = "level", ["de-DE"] = "Level" }, descriptions: new Dictionary { ["en-US"] = "A level is some, in itself closed, part of the game which the game itself calls level.", ["de-DE"] = "Ein Level ist ein in sich selbst geschlossener Teil eines Spiels, den das Spiel selber Level nennt." }); /// /// An actor which plays the game and interacts with it. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/seriousGames/activities/player /// public readonly xAPI_Activity player = new xAPI_Activity( context: "seriousGames", key: "player", names: new Dictionary { ["en-US"] = "player", ["de-DE"] = "Spieler" }, descriptions: new Dictionary { ["en-US"] = "An actor which plays the game and interacts with it.", ["de-DE"] = "Ein Agierender der das Spiel spielt und mit ihm interagiert." }); /// /// A representation of something, e.g. the player ingame. Could also be an object the player can interact with. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/seriousGames/activities/playstone /// public readonly xAPI_Activity playstone = new xAPI_Activity( context: "seriousGames", key: "playstone", names: new Dictionary { ["en-US"] = "playstone", ["de-DE"] = "Spielstein" }, descriptions: new Dictionary { ["en-US"] = "A representation of something, e.g. the player ingame. Could also be an object the player can interact with.", ["de-DE"] = "Eine Representation von etwas, z.B. des Spielers im Spiel. Könnte auch ein Objekt sein mit welchem der Spieler im Spiel interagieren kann." }); /// /// A session is one execution of a game from booting the game to exiting it. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/seriousGames/activities/session /// public readonly xAPI_Activity session = new xAPI_Activity( context: "seriousGames", key: "session", names: new Dictionary { ["en-US"] = "session", ["de-DE"] = "Spiel Instanz" }, descriptions: new Dictionary { ["en-US"] = "A session is one execution of a game from booting the game to exiting it.", ["de-DE"] = "Eine Spiel Instanz ist ein Durchlauf eines Spiels vom Initalisieren des Spiels bis zum Beenden." }); /// /// A stage is a part of a level. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/seriousGames/activities/stage /// public readonly xAPI_Activity stage = new xAPI_Activity( context: "seriousGames", key: "stage", names: new Dictionary { ["en-US"] = "stage", ["de-DE"] = "Spielabschnitt" }, descriptions: new Dictionary { ["en-US"] = "A stage is a part of a level.", ["de-DE"] = "Ein Spielabschnitt ist ein Teil eines Levels." }); public xAPI_Activities_SeriousGames() : base("seriousGames") { } } }