< Summary

Class:ConfigLoader
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Config/ConfigLoader.cs
Covered lines:31
Uncovered lines:77
Coverable lines:108
Total lines:156
Line coverage:28.7% (31 of 108)
Covered branches:0
Total branches:0
Covered methods:4
Total methods:13
Method coverage:30.7% (4 of 13)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
LoadFromStreamingAssets(...)0%4.094082.35%
LoadSimulationConfig(...)0%2.082072.73%
LoadStaticAgentConfig(...)0%2.152066.67%
LoadSimulatorConfig()0%110100%
PrintSimulationConfig(...)0%20400%
PrintSwarmConfig(...)0%2100%
PrintDynamicAgentConfig(...)0%2100%
PrintInitialState(...)0%2100%
PrintStandardDeviation(...)0%2100%
PrintDynamicConfig(...)0%2100%
PrintPlottingConfig(...)0%2100%
PrintSubmunitionsConfig(...)0%6200%
PrintSubmunitionDynamicAgentConfig(...)0%2100%

File(s)

/github/workspace/Assets/Scripts/Config/ConfigLoader.cs

#LineLine coverage
 1using System.IO;
 2using UnityEngine;
 3using UnityEngine.Networking;
 4using Newtonsoft.Json;
 5
 6public static class ConfigLoader {
 22857  public static string LoadFromStreamingAssets(string relativePath) {
 22858    string filePath = Path.Combine(Application.streamingAssetsPath, relativePath);
 9
 10#if UNITY_STANDALONE_OSX || UNITY_EDITOR_OSX || UNITY_STANDALONE_LINUX || UNITY_EDITOR_LINUX || UNITY_IOS
 457011    if (!filePath.StartsWith("file://")) {
 228512      filePath = "file://" + filePath;
 228513    }
 14#endif
 15
 228516    UnityWebRequest www = UnityWebRequest.Get(filePath);
 228517    www.SendWebRequest();
 18
 19    // Wait for the request to complete
 767547520    while (!www.isDone) {
 21      // You might want to yield return null here if this is called from a coroutine
 383659522    }
 23
 228524    if (www.result != UnityWebRequest.Result.Success) {
 025      Debug.LogError($"Error loading file at {filePath}: {www.error}");
 026      return null;
 27    }
 28
 228529    return www.downloadHandler.text;
 228530  }
 31
 1032  public static SimulationConfig LoadSimulationConfig(string configFileName) {
 1033    string relativePath = Path.Combine("Configs", configFileName);
 1034    string fileContent = LoadFromStreamingAssets(relativePath);
 35
 1036    if (string.IsNullOrEmpty(fileContent)) {
 037      Debug.LogError($"Failed to load SimulationConfig from {relativePath}");
 038      return null;
 39    }
 40
 1041    SimulationConfig config =
 42        JsonConvert.DeserializeObject<SimulationConfig>(fileContent, new JsonSerializerSettings {
 43          Converters = { new Newtonsoft.Json.Converters.StringEnumConverter() }
 44        });
 1045    UIManager.Instance.LogActionMessage($"[SIM] Loaded SimulationConfig: {configFileName}.");
 1046    return config;
 1047  }
 48
 75549  public static StaticAgentConfig LoadStaticAgentConfig(string configFileName) {
 75550    string relativePath = Path.Combine("Configs/Models", configFileName);
 75551    string fileContent = LoadFromStreamingAssets(relativePath);
 52
 75553    if (string.IsNullOrEmpty(fileContent)) {
 054      Debug.LogError($"Failed to load StaticAgentConfig from {relativePath}");
 055      return null;
 56    }
 57
 75558    return JsonConvert.DeserializeObject<StaticAgentConfig>(
 59        fileContent, new JsonSerializerSettings {
 60          Converters = { new Newtonsoft.Json.Converters.StringEnumConverter() }
 61        });
 75562  }
 63
 1064  public static SimulatorConfig LoadSimulatorConfig() {
 1065    string relativePath = "simulator.json";  // Path relative to StreamingAssets
 1066    string fileContent = LoadFromStreamingAssets(relativePath);
 1067    return JsonConvert.DeserializeObject<SimulatorConfig>(fileContent);
 1068  }
 69
 070  public static void PrintSimulationConfig(SimulationConfig config) {
 071    if (config == null) {
 072      Debug.Log("SimulationConfig is null");
 073      return;
 74    }
 75
 076    Debug.Log("SimulationConfig:");
 077    Debug.Log($"Time Scale: {config.timeScale}");
 78
 079    Debug.Log("Interceptor Swarm Configurations:");
 080    for (int i = 0; i < config.interceptor_swarm_configs.Count; ++i) {
 081      PrintSwarmConfig(config.interceptor_swarm_configs[i], $"Interceptor Swarm {i + 1}");
 082    }
 83
 084    Debug.Log("Threat Swarm Configurations:");
 085    for (int i = 0; i < config.threat_swarm_configs.Count; ++i) {
 086      PrintSwarmConfig(config.threat_swarm_configs[i], $"Threat Swarm {i + 1}");
 087    }
 088  }
 89
 090  private static void PrintSwarmConfig(SwarmConfig swarmConfig, string swarmName) {
 091    Debug.Log($"{swarmName}:");
 092    Debug.Log($"  Number of Agents: {swarmConfig.num_agents}");
 093    PrintDynamicAgentConfig(swarmConfig.dynamic_agent_config);
 094  }
 95
 096  private static void PrintDynamicAgentConfig(DynamicAgentConfig dynamicAgentConfig) {
 097    Debug.Log("  Agent Configuration:");
 098    Debug.Log($"    Interceptor Model: {dynamicAgentConfig.agent_model}");
 099    Debug.Log($"    Threat Model: {dynamicAgentConfig.agent_model}");
 0100    PrintInitialState(dynamicAgentConfig.initial_state);
 0101    PrintStandardDeviation(dynamicAgentConfig.standard_deviation);
 0102    PrintDynamicConfig(dynamicAgentConfig.dynamic_config);
 0103    PrintPlottingConfig(dynamicAgentConfig.plotting_config);
 0104    PrintSubmunitionsConfig(dynamicAgentConfig.submunitions_config);
 0105  }
 106
 0107  private static void PrintInitialState(InitialState initialState) {
 0108    Debug.Log("    Initial State:");
 0109    Debug.Log($"      Position: {initialState.position}");
 0110    Debug.Log($"      Rotation: {initialState.rotation}");
 0111    Debug.Log($"      Velocity: {initialState.velocity}");
 0112  }
 113
 0114  private static void PrintStandardDeviation(StandardDeviation standardDeviation) {
 0115    Debug.Log("    Standard Deviation:");
 0116    Debug.Log($"      Position: {standardDeviation.position}");
 0117    Debug.Log($"      Velocity: {standardDeviation.velocity}");
 0118  }
 119
 0120  private static void PrintDynamicConfig(DynamicConfig dynamicConfig) {
 0121    Debug.Log("    Dynamic Configuration:");
 0122    Debug.Log($"      Launch Time: {dynamicConfig.launch_config.launch_time}");
 0123    Debug.Log($"      Sensor Type: {dynamicConfig.sensor_config.type}");
 0124    Debug.Log($"      Sensor Frequency: {dynamicConfig.sensor_config.frequency}");
 0125  }
 126
 0127  private static void PrintPlottingConfig(PlottingConfig plottingConfig) {
 0128    Debug.Log("    Plotting Configuration:");
 0129    Debug.Log($"      Color: {plottingConfig.color}");
 0130    Debug.Log($"      Line Style: {plottingConfig.linestyle}");
 0131    Debug.Log($"      Marker: {plottingConfig.marker}");
 0132  }
 133
 0134  private static void PrintSubmunitionsConfig(SubmunitionsConfig submunitionsConfig) {
 0135    if (submunitionsConfig == null) {
 0136      Debug.Log("    Submunitions Configuration: None");
 0137      return;
 138    }
 139
 0140    Debug.Log("    Submunitions Configuration:");
 0141    Debug.Log($"      Number of Submunitions: {submunitionsConfig.num_submunitions}");
 0142    Debug.Log($"      Dispense Time: {submunitionsConfig.dispense_time}");
 0143    PrintSubmunitionDynamicAgentConfig(submunitionsConfig.dynamic_agent_config);
 0144  }
 145
 146  private static void PrintSubmunitionDynamicAgentConfig(
 0147      SubmunitionDynamicAgentConfig agentConfig) {
 0148    Debug.Log("      Submunition Agent Configuration:");
 0149    Debug.Log($"        Interceptor Model: {agentConfig.agent_model}");
 0150    Debug.Log($"        Threat Model: {agentConfig.agent_model}");
 0151    PrintInitialState(agentConfig.initial_state);
 0152    PrintStandardDeviation(agentConfig.standard_deviation);
 0153    PrintDynamicConfig(agentConfig.dynamic_config);
 0154    PrintPlottingConfig(agentConfig.plotting_config);
 0155  }
 156}