Exemplo n.º 1
0
    void Start()
    {
        // Check whether we are in the editor or a cloud simulation run.
        // Read the local app_params.json from the Assets directory if we are in the editor.
        if (!Configuration.Instance.IsSimulationRunningInCloud())
        {
            Configuration.Instance.SimulationConfig.app_param_uri = "file://" + Application.dataPath + "/StreamingAssets/app_params.json";
        }

        // Retrieve the app params using the DataCapture SDK.
        appParams = Configuration.Instance.GetAppParams <RollABallAppParams>();

        // For this example we want to make sure app params were actually read.
        if (dieIfNoAppParams && (appParams == null || RollABallAppParams.AreAllDefault(appParams)))
        {
            Utils.ForceCrash(ForcedCrashCategory.Abort);
        }

        if (appParams != null)
        {
            // Use the retrieved app params to set our values accordingly.
            float screenCaptureInterval = Mathf.Min(Mathf.Max(0, appParams.screenCaptureInterval), 100.0f);

            GameObject.FindGameObjectsWithTag("Environment Spawner")[0].GetComponent <EnvSpawner>().scale           = appParams.scale;
            GameObject.FindGameObjectsWithTag("Player Spawner")[0].GetComponent <PlayerSpawner>().extraPlayers      = appParams.extraPlayers;
            GameObject.FindGameObjectsWithTag("Player Spawner")[0].GetComponent <PlayerSpawner>().extraCameras      = appParams.extraCameras;
            GameObject.FindGameObjectsWithTag("Pickup Spawner")[0].GetComponent <PickupSpawner>().numPickups        = appParams.numPickups;
            GameObject.FindGameObjectsWithTag("Data Capture")[0].GetComponent <CameraGrab>()._screenCaptureInterval = screenCaptureInterval;
            PickupStats.quitAfterSeconds       = appParams.quitAfterSeconds;
            PickupStats.forceCrashAfterSeconds = appParams.forceCrashAfterSeconds;
        }
    }
 public static bool AreAllDefault(RollABallAppParams rabParams)
 {
     if (rabParams.extraPlayers == 0 &&
         rabParams.scale == 0 &&
         rabParams.numPickups == 0 &&
         rabParams.extraCameras == 0 &&
         rabParams.quitAfterSeconds == 0 &&
         rabParams.forceCrashAfterSeconds == 0 &&
         rabParams.screenCaptureInterval == 0)
     {
         return(true);
     }
     return(false);
 }