Skip to content

e-ucm/simva-infra

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SIMple VAlidation (SIMVA)

SIMVA

SIMVA is a tool that helps Serious Games (SGs) developers / researchers to validate the efectiveness of SGs and to facilitate the application of Serious Games Learning Analytics in SGs.

Like any other educational tool, the traditional way of evaluating the effectiveness of the tool is through experiments that require a pre-post tests. Usually this is is done on paper or, in the best case scenario, electronically, but in the end these tests are disconected from the experiments themselves.

Moreover, SGs open new oportunities of applying a stealth assessment approach to evaluate players' performance. Usually this approach is implemented based on analytics that are gathered during the gameplay.

To be precise, SIMVA tool aims to simplify the possible issues:

  • Before the experiments:
    • Managing users & surveys
    • Providing anonymous identifiers to users
  • During the experiments:
  • Pretest-Game-Postest
    • Collecting and storing surveys and traces data (xAPI-SG)
    • Relating different data from users (GLA, tests)
  • After the experiments:
    • Simplifying downloading and analysis of all data collected

This respository allows you to to launch a complete SIMVA environment.

Instructions

  1. Clone this repository
  2. Verify that you have latest Vagrant and VirtualBox (tested with 6.0)
  3. Open a terminal in the cloned directory and run vagrant up

Note: The first time you run this command it will take a long time because Vagrant needs to download, aprovision and install the base required software.

  1. run vagrant ssh to get inside VM
  2. run cd docker-stacks
  3. run ./simva install

Note: The first time you run this command it will take a long time because it is required to download all docker images required for SIMVA.

  1. run ./simva start to start all containers.

Note: The first time you run this command it will take a long time because all componentes need to initialize.

Acknowledgements

Authors of this project were supported by:

Universidad Complutense de Madrid logo IMPRESS Logo Erasmus+ Program Logo

License

This project is licensed under the Apache 2.0 License - see the LICENSE file for details.

Notes

By default Vagrant maps the following ports:

  • 8080 (host) -> 80 (guest)
  • 8443 (host) -> 443 (guest)

To simplify things you may want to apply the following instructions in order to map to regular ports using the OS firewall / capabilities.

(Linux) redirect ports using iptables

sudo iptables -I INPUT 1 -p tcp --dport 8443 -j ACCEPT
sudo iptables -I INPUT 1 -p tcp --dport 8080 -j ACCEPT
sudo iptables -I INPUT 1 -p tcp --dport 443 -j ACCEPT
sudo iptables -I INPUT 1 -p tcp --dport 80 -j ACCEPT
sudo iptables -t nat -I PREROUTING 1 -p tcp --dport 443 -d 127.0.0.1 -j REDIRECT --to-ports 8443
sudo iptables -t nat -I PREROUTING 1 -p tcp --dport 80  -d 127.0.0.1 -j REDIRECT --to-ports 8080
# https://serverfault.com/questions/211536/iptables-port-redirect-not-working-for-localhost
# PREROUTING isn't used by the loopback interface, you need to also add an OUTPUT rule:
sudo iptables -t nat -I OUTPUT -p tcp -o lo -d 127.0.0.1 --dport 80 -j REDIRECT --to-ports 8080
sudo iptables -t nat -I OUTPUT -p tcp -o lo -d 127.0.0.1 --dport 443 -j REDIRECT --to-ports 8443

(Windows) redirect ports using netsh

See: