This code belongs to RAGE project and sends analytics information to a server; or, if the server is currently unavailable, stores them locally until it becomes available again.
After a game is developed, a common need is to know how the players play, what interactions they follow within the game and how much time they spend in a game session; collectively, these are known as game analytics. Analytics are used to locate gameplay bottlenecks and assess game effectiveness and learning outcomes, among other tasks.
- Clone the repository with
git clone --recursive -j8 git://github.com/e-ucm/dotnet-tracker.git
- Include projects into your solution or open the existing solution found in the root of the repository:
- If you already have the AssetManager project, ignore it, if not, include it into your solution.
- Include TrackerAsset and make sure you reference AssetManager from TrackerAsset
- Reference AssetManager and TrackerAsset into your main project.
- Create a new TrackerAsset instance and start configuring it by creating a new instance of
TrackerAssetSettings()
: - Host: If storage type is set to
TrackerAsset.StorageTypes.net
, this should have the host for the analytics server - Secure: If the server uses a secure connection set it to true.
- Port: This should have the port of the analytics server. By default, port 80 is used.
- BasePath: Lets you set the route for the api path of the analytics server. Usually set it to "/api".
- StorageType: can be
TrackerAsset.StorageTypes.net
, to send traces to a server, oTrackerAsset.StorageTypes.local
, to store them locally. - TraceFormat: the format of the traces. Can be
TrackerAsset.TraceFormats.xapi
(Recommended),TrackerAsset.TraceFormats.csv
orTrackerAsset.TraceFormats.json
(Deprecated). - TrackingCode: If storage type is set to
TrackerAsset.StorageTypes.net
, this is the tracking code identifying the game - BackupStorage: If true, creates a traces backup file into the filesystem, formated in CSV
- Set up a bridge for creating the connections with the server.
- Send traces
Note: The traces file are saved in the path specified by the Bridge.
Using the tracker is a really simple proccess. For expanding the Installation guide here you can found some examples of how to setup and use the tracker.
First, you need to create and manage an instance. You have two ways for doing this.
- TrackerAsset has an singleton instance if you want to use it.
- Or either you can create your own instance via
new TrackerAsset()
.
// You can use Tracker via Singleton:
TrackerAsset.Instance.Settings = new TrackerAssetSettings();
TrackerASset.Instance.Bridge = new Bridge();
TrackerAsset.Instance.Start ();
TrackerAsset.Instance.Alternative.Selected("AlternativeID", "SelectedAnswer");
TrackerAsset.Instance.Flush();
//You can create your own Tracker instance and manage it yourself.
TrackerAsset player2tracker = new TrackerAsset();
player2tracker.Settings = new TrackerAssetSettings();
player2tracker.Bridge = new Bridge();
player2tracker.Start ();
player2tracker.Alternative.Selected("AlternativeID", "SelectedAnswer2");
player2tracker.Flush();
As previously explained in installation, tracker needs to be configured. There are some specific parameters that are needed to set up as Host and TrackingCode, and the rest of them are optional.
String domain = "https://rage.e-ucm.es/";
TrackerAssetSettings tracker_settings = new TrackerAssetSettings()
{
Host = domain,
TrackingCode = "OBTAINED_FROM_SERVER",
BasePath = "/api",
Port = 334,
Secure = domain.Split('/')[0] == "https:",
StorageType = TrackerAsset.StorageTypes.net,
TraceFormat = TrackerAsset.TraceFormats.xapi,
BackupStorage = true
};
TrackerAsset.Instance.Settings = tracker_settings
As in the rest of the assets of the RAGE projects, communication is made using a repository of interfaces called Bridge. This Bridge implements interfaces for managing the File System, or for sending Web Requests, and it's made this way to provide a platform independant system. If you want your tracker to be able to connect to the Analytics server, you have to use or implement a bridge for your platform that implements the interface IWebServiceRequest
, for being able to make Logs implement ILog
, and for accessing File System use IDataStorage
. For more information see https://github.com/rageappliedgame/AssetManager
Once you have a Bridge, you just need to add it to the Tracker.
//Setting the Bridge into the Tracker
TrackerAsset.Instance.Bridge = new Bridge();
Tracker Login and Start are the only two methods that are used syncronously to the server, so make sure don't do it while something important happens into the game, because probably is going to freeze, for a really small amount of time, but is going to freeze.
Tracker Login is not really necesary. If you are a developer, and you're logged into the Analytics server as a developer, you're going to receive traces either the player has logged or not. If you're a teacher, and you want to see traces in your activities, you can configure the activity to allow anonymous users.
If you are a teacher and you want to use logged students, you have to add the students to the class and then ask them for credentials into your game and log them into the system using TrackerAsset.Instance.Login(String username, String password)
function.
//Log in the student BEFORE starting the tracker
String username = "student", password = "123456";
TrackerAsset.Instance.Login(username, password);
For requesting the actor to the server you have to start the tracker. This way actor is appended to the traces when generated. For starting the tracker you just have to call the TrackerAsset.Instance.Start()
function.
//Start the tracker before sending traces.
TrackerAsset.Instance.Start();
- Different storage types:
net
: sends data to a trace-server, such as the rage-analytics Backend. If set, a hostname should be specified via thehost
property.local
, to store them locally for later retrieval. Un-sent traces are always persisted locally before being sent through the net, to support intermittent internet access.
- Different trace formats:
2.
csv
: allow processing in MS Excel or other spreadsheets. Also supported by many analytics environments. 3.json
: especially intended for programmatic analysis, for instance using python or java/javascript or 4.xapi
: an upcoming standard for student activity. Note that, if the tracker's storage type isnet
it is required to use thexapi
trace format since the rage-analytics Backend expects xAPI Statements. The [xAPI tracking model] (https://github.com/e-ucm/xapi-seriousgames) that the backend expects is composed of Completables, Reachables, Variables and Alternatives. - Tracker messages can be displayed in the Unity console by setting the
Debug
property - Uses Unity's in-built facilities to handle connections, files and timing.
The tracker requires (if net
mode is on) the RAGE Analytics infrastructure up and running. Check out the Quickstart guide and follow the developer
and teacher
steps in order to create a game and setup a class. It also requires a:
- Host: where the server is at. This value usually looks like
<rage_server_hostmane>/api/proxy/gleaner/collector/
. The collector is an endpoint designed to retrieve traces and send them to the analysis pipeline. - Tracking code: an unique tracking code identifying the game. This code is created in the frontend, when creating a new game.
The tracker exposes an API designed to collect, analyze and visualize the data. The API consists on defining a set of game objects. A game object represents an element of the game on which players can perform one or several types of interactions. Some examples of player's interactions are:
- start or complete (interaction) a level (game object)
- increase or decrease (interaction) the number of coins (game object)
- select or unlock (interaction) a power-up (game object)
A gameplay is the flow of interactions that a player performs over these game objects in a sequential order.
The main typed of game objects supported are:
- Completable - for Game, Session, Level, Quest, Stage, Combat, StoryNode, Race or any other generic Completable. Methods:
Initialized
,Progressed
andCompleted
. - Accessible - for Screen, Area, Zone, Cutscene or any other generic Accessible. Methods:
Accessed
andSkipped
. - Alternative - for Question, Menu, Dialog, Path, Arena or any other generic Alternative. Methods:
Selected
andUnlocked
. - TrackedGameObject for Enemy, Npc, Item or any other generic GameObject. Methods:
Interacted
andUsed
.
Usage example for the tracking of an in-game quest. We decided to use a Completable game object for this use-case as the most suitable option:
// Completable
// Initialized
TrackerAsset.Instance.Completable.Initialized("MyGameQuestId", Completable.Quest);
//...
// Progressed
TrackerAsset.Instance.Completable.Progressed("MyGameQuestId", Completable.Quest, 0.8);
//...
// Progressed
bool success = true;
TrackerAsset.Instance.Completable.Completed("MyGameQuestId", Completed, success);
Usage example for the tracking the player's movement through some in-game screens and skipping the Intro
cutscene:
// Accessible
// The player accessed the 'MainMenu' screen
TrackerAsset.Instance.Accessible.Accessed("MainMenu", Accessible.Screen);
//...
// The player skipped a cutscene
TrackerAsset.Instance.Accessible.Skipped("Intro", Accessible.Cutscene);
Usage example for the tracking the player's choices during a conversation:
// Alternative
// The player selected the 'Dan' answer for the question 'What's his name?'
TrackerAsset.Instance.Alternative.Selected("What's his name?", "Dan", Alternative.Question);
//...
// The player selected 'OK' for the question 'Do you want it?'
TrackerAsset.Instance.Alternative.Selected("Do you want to start right now?", "OK", Alternative.Question);
//...
// The player unlocked 'Combat Mode' for the menu 'Menues/Start'
TrackerAsset.Instance.Alternative.Unlocked("Menues/Start", "Combat Mode", Alternative.Menu);
Usage example for the tracking the player's with a NPC villager and using a health potion (item):
// Tracked Game Object
// The player interacted with a Non Playable Character
TrackerAsset.Instance.GameObject.Interacted("NPC/Villager", TrackedGameObject.Npc);
//...
// The player used a health potion
TrackerAsset.Instance.GameObject.Used("Item/HealthPotion", TrackedGameObject.Item);
Note that in order to track other type of user interactions it is required to perform a previous analysis to identify the most suitable game objects (Completable, Accessible, Alternative, GameObject) for the given case. For instance, in order to track conversations Alternative is the best choice
If the storage type is net
, the tracker will try to connect to a Collector
endpoint, exposed by the rage-analytics Backend.
More information about the tracker can be found in the [official documentation of rage-analytics] (https://github.com/e-ucm/rage-analytics/wiki/Tracker).