Exemplo n.º 1
0
 public string GetFlightMapFilename()
 {
     return(LaunchDB.GetBaseFilePath(this.GetType(), string.Format("gt_vessel_{0}_{1}.png", LaunchName, LaunchBody.name)));
 }
Exemplo n.º 2
0
 string ConfigFilename(Vessel vessel)
 {
     return(LaunchDB.GetBaseFilePath(this.GetType(), string.Format("gt_vessel_{0}_{1}.cfg", vessel.id.ToString(), vessel.mainBody.name)));
 }
Exemplo n.º 3
0
 string DefaultConfigFilename(Vessel vessel)
 {
     return(LaunchDB.GetBaseFilePath(this.GetType(), string.Format("gt_vessel_default_{0}.cfg", vessel.mainBody.name)));
 }
Exemplo n.º 4
0
 public string GetFilename()
 {
     return(LaunchDB.GetBaseFilePath(turner.GetType(), string.Format("gt_launchdb_{0}_{1}.cfg", turner.LaunchName, turner.LaunchBody.name)));
 }
Exemplo n.º 5
0
        string DefaultConfigFilename(Vessel vessel)
        {
            string name = vessel.mainBody.name.Replace('"', '_');

            return(LaunchDB.GetBaseFilePath(this.GetType(), string.Format("gt_vessel_default_{0}.cfg", name)));
        }
Exemplo n.º 6
0
        internal static string ConfigFilename(Vessel vessel)
        {
            string name = vessel.mainBody.name.Replace('"', '_');

            return(LaunchDB.GetBaseFilePath(instance.GetType(), string.Format("gt_vessel_{0}_{1}.cfg", vessel.id.ToString(), name)));
        }