@fboes/aerofly-custom-missions 1.2.1 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.2.2
4
+
5
+ - Added altitude constraint property
6
+ - Improved handling of cloud layers
7
+
3
8
  ## 1.2.1
4
9
 
5
10
  - Changed handling of checkpoints, as it is obviously possible to have missions without checkpoints
package/dist/index.js CHANGED
@@ -417,24 +417,23 @@ export class AeroflyMissionConditionsCloud {
417
417
  * @returns {string} to use in Aerofly FS4's `custom_missions_user.tmc`
418
418
  */
419
419
  toString(index = 0) {
420
- let indexString = "";
421
- switch (index) {
422
- case 0:
423
- indexString = "cloud";
424
- break;
425
- case 1:
426
- indexString = "cirrus";
427
- break;
428
- case 2:
429
- indexString = "cumulus_mediocris";
430
- break;
431
- default:
432
- return "";
433
- }
434
- // TODO
420
+ const getIndexString = (index) => {
421
+ switch (index) {
422
+ case 0:
423
+ return "cloud";
424
+ case 1:
425
+ return "cirrus";
426
+ case 2:
427
+ return "cumulus_mediocris";
428
+ default:
429
+ return "more_clouds";
430
+ }
431
+ };
432
+ const indexString = getIndexString(index);
433
+ const comment = index > 1 ? '//' : '';
435
434
  return `\
436
- <[float64][${indexString}_cover][${this.cover ?? 0}]> // ${this.cover_code}
437
- <[float64][${indexString}_base][${this.base}]> // ${this.base_feet} ft AGL`;
435
+ ${comment}<[float64][${indexString}_cover][${this.cover ?? 0}]> // ${this.cover_code}
436
+ ${comment}<[float64][${indexString}_base][${this.base}]> // ${this.base_feet} ft AGL`;
438
437
  }
439
438
  }
440
439
  /**
@@ -461,19 +460,23 @@ export class AeroflyMissionCheckpoint {
461
460
  * 84 reference ellipsoid
462
461
  * @param {?number} [additionalAttributes.altitude_feet] The height in feet above or below the WGS
463
462
  * 84 reference ellipsoid. Will overwrite altitude
464
- * @param {number} [additionalAttributes.direction] of runway, in degree
463
+ * @param {number} [additionalAttributes.altitudeConstraint] The altitude given in `altitude`
464
+ * will be interpreted as mandatory flight plan altitude instead of
465
+ * suggestion.
466
+ * @param {boolean} [additionalAttributes.direction] of runway, in degree
465
467
  * @param {?number} [additionalAttributes.slope] of runway
466
468
  * @param {?number} [additionalAttributes.length] of runway, in meters
467
469
  * @param {?number} [additionalAttributes.length_feet] of runway, in feet. Will overwrite length
468
470
  * @param {?number} [additionalAttributes.frequency] of runways or navigational aids, in Hz; multiply by 1000 for kHz, 1_000_000 for MHz
469
471
  * @param {?boolean} [additionalAttributes.flyOver] if waypoint is meant to be flown over
470
472
  */
471
- constructor(name, type, longitude, latitude, { altitude = 0, altitude_feet = null, direction = null, slope = null, length = null, length_feet = null, frequency = null, flyOver = null, } = {}) {
473
+ constructor(name, type, longitude, latitude, { altitude = 0, altitude_feet = null, altitudeConstraint = null, direction = null, slope = null, length = null, length_feet = null, frequency = null, flyOver = null, } = {}) {
472
474
  this.type = type;
473
475
  this.name = name;
474
476
  this.longitude = longitude;
475
477
  this.latitude = latitude;
476
478
  this.altitude = altitude;
479
+ this.altitudeConstraint = altitudeConstraint;
477
480
  this.direction = direction;
478
481
  this.slope = slope;
479
482
  this.length = length;
@@ -537,6 +540,9 @@ export class AeroflyMissionCheckpoint {
537
540
  .push("float64", "altitude", this.altitude, `${Math.ceil(this.altitude_feet)} ft`)
538
541
  .push("float64", "direction", this.direction ?? (index === 0 ? -1 : 0))
539
542
  .push("float64", "slope", this.slope ?? 0);
543
+ if (this.altitudeConstraint !== null) {
544
+ fileSet.push("bool", "alt_cst", this.altitudeConstraint);
545
+ }
540
546
  if (this.length) {
541
547
  fileSet.push("float64", "length", this.length ?? 0, `${Math.floor(this.length_feet)} ft`);
542
548
  }
@@ -79,6 +79,10 @@ const assertIncludes = (string, includes) => {
79
79
  assert.deepStrictEqual(cloud.cover, 0);
80
80
  assert.deepStrictEqual(cloud.base, 0);
81
81
  assertValidAeroflyStructure(cloud.toString());
82
+ assertValidAeroflyStructure(cloud.toString(0));
83
+ assertValidAeroflyStructure(cloud.toString(1));
84
+ assertValidAeroflyStructure(cloud.toString(2));
85
+ assertValidAeroflyStructure(cloud.toString(3));
82
86
  console.log("✅ AeroflyMissionConditionsCloud test successful");
83
87
  }
84
88
  {
@@ -108,6 +112,23 @@ const assertIncludes = (string, includes) => {
108
112
  assertValidAeroflyStructure(targetPlane.toString());
109
113
  console.log("✅ AeroflyMissionTargetPlane test successful");
110
114
  }
115
+ {
116
+ const checkpoint = new AeroflyMissionCheckpoint("TEST", "waypoint", 15, 20);
117
+ let checkpointString = checkpoint.toString();
118
+ assertIncludes(checkpointString, "[type]");
119
+ assertIncludes(checkpointString, "[name]");
120
+ assertIncludes(checkpointString, "[lon_lat]");
121
+ assertIncludes(checkpointString, "15 20");
122
+ assertIncludes(checkpointString, "[altitude]");
123
+ assert.ok(!checkpointString.includes("[fly_over]"));
124
+ assert.ok(!checkpointString.includes("[alt_cst]"));
125
+ checkpoint.altitudeConstraint = false;
126
+ checkpoint.flyOver = false;
127
+ checkpointString = checkpoint.toString();
128
+ assertIncludes(checkpointString, "[fly_over]");
129
+ assertIncludes(checkpointString, "[alt_cst]");
130
+ console.log("✅ AeroflyMissionCheckpoint test successful");
131
+ }
111
132
  {
112
133
  const conditions = new AeroflyMissionConditions({
113
134
  time: new Date(Date.UTC(2024, 5, 14, 13, 15, 38)),
@@ -199,6 +220,7 @@ const assertIncludes = (string, includes) => {
199
220
  assert.ok(!missionListString.includes("[tmmission_definition_localized]"));
200
221
  assert.ok(!missionListString.includes("[distance]"));
201
222
  assert.ok(!missionListString.includes("[duration]"));
223
+ assert.ok(!missionListString.includes("[alt_cst]"));
202
224
  assertValidAeroflyStructure(missionListString);
203
225
  //console.log(missionListString);
204
226
  mission.difficulty = 1.0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fboes/aerofly-custom-missions",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Builder for Aerofly FS4 Custom Missions Files",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
package/src/index.test.ts CHANGED
@@ -104,6 +104,11 @@ const assertIncludes = (string: string, includes: string): void => {
104
104
  assert.deepStrictEqual(cloud.cover, 0);
105
105
  assert.deepStrictEqual(cloud.base, 0);
106
106
  assertValidAeroflyStructure(cloud.toString());
107
+ assertValidAeroflyStructure(cloud.toString(0));
108
+ assertValidAeroflyStructure(cloud.toString(1));
109
+ assertValidAeroflyStructure(cloud.toString(2));
110
+ assertValidAeroflyStructure(cloud.toString(3));
111
+
107
112
  console.log("✅ AeroflyMissionConditionsCloud test successful");
108
113
  }
109
114
 
@@ -138,6 +143,28 @@ const assertIncludes = (string: string, includes: string): void => {
138
143
  console.log("✅ AeroflyMissionTargetPlane test successful");
139
144
  }
140
145
 
146
+ {
147
+ const checkpoint = new AeroflyMissionCheckpoint("TEST", "waypoint", 15, 20);
148
+ let checkpointString = checkpoint.toString();
149
+
150
+ assertIncludes(checkpointString, "[type]");
151
+ assertIncludes(checkpointString, "[name]");
152
+ assertIncludes(checkpointString, "[lon_lat]");
153
+ assertIncludes(checkpointString, "15 20");
154
+ assertIncludes(checkpointString, "[altitude]");
155
+ assert.ok(!checkpointString.includes("[fly_over]"));
156
+ assert.ok(!checkpointString.includes("[alt_cst]"));
157
+
158
+ checkpoint.altitudeConstraint = false;
159
+ checkpoint.flyOver = false;
160
+ checkpointString = checkpoint.toString();
161
+
162
+ assertIncludes(checkpointString, "[fly_over]");
163
+ assertIncludes(checkpointString, "[alt_cst]");
164
+
165
+ console.log("✅ AeroflyMissionCheckpoint test successful");
166
+ }
167
+
141
168
  {
142
169
  const conditions = new AeroflyMissionConditions({
143
170
  time: new Date(Date.UTC(2024, 5, 14, 13, 15, 38)),
@@ -236,6 +263,7 @@ const assertIncludes = (string: string, includes: string): void => {
236
263
  assert.ok(!missionListString.includes("[tmmission_definition_localized]"));
237
264
  assert.ok(!missionListString.includes("[distance]"));
238
265
  assert.ok(!missionListString.includes("[duration]"));
266
+ assert.ok(!missionListString.includes("[alt_cst]"));
239
267
  assertValidAeroflyStructure(missionListString);
240
268
 
241
269
  //console.log(missionListString);
package/src/index.ts CHANGED
@@ -724,26 +724,25 @@ export class AeroflyMissionConditionsCloud {
724
724
  * @returns {string} to use in Aerofly FS4's `custom_missions_user.tmc`
725
725
  */
726
726
  toString(index: number = 0): string {
727
- let indexString = "";
728
-
729
- switch (index) {
730
- case 0:
731
- indexString = "cloud";
732
- break;
733
- case 1:
734
- indexString = "cirrus";
735
- break;
736
- case 2:
737
- indexString = "cumulus_mediocris";
738
- break;
739
- default:
740
- return "";
741
- }
727
+ const getIndexString = (index: number) => {
728
+ switch (index) {
729
+ case 0:
730
+ return "cloud";
731
+ case 1:
732
+ return "cirrus";
733
+ case 2:
734
+ return "cumulus_mediocris";
735
+ default:
736
+ return "more_clouds";
737
+ }
738
+ };
739
+
740
+ const indexString = getIndexString(index);
741
+ const comment = index > 1 ? '//' : '';
742
742
 
743
- // TODO
744
743
  return `\
745
- <[float64][${indexString}_cover][${this.cover ?? 0}]> // ${this.cover_code}
746
- <[float64][${indexString}_base][${this.base}]> // ${this.base_feet} ft AGL`;
744
+ ${comment}<[float64][${indexString}_cover][${this.cover ?? 0}]> // ${this.cover_code}
745
+ ${comment}<[float64][${indexString}_base][${this.base}]> // ${this.base_feet} ft AGL`;
747
746
  }
748
747
  }
749
748
 
@@ -787,6 +786,13 @@ export class AeroflyMissionCheckpoint {
787
786
  */
788
787
  altitude: number;
789
788
 
789
+ /**
790
+ * @property {?boolean} altitudeConstraint The altitude given in `altitude`
791
+ * will be interpreted as mandatory flight plan altitude instead of
792
+ * suggestion.
793
+ */
794
+ altitudeConstraint: boolean | null;
795
+
790
796
  /**
791
797
  * @property {?number} direction of runway, in degree
792
798
  */
@@ -827,7 +833,10 @@ export class AeroflyMissionCheckpoint {
827
833
  * 84 reference ellipsoid
828
834
  * @param {?number} [additionalAttributes.altitude_feet] The height in feet above or below the WGS
829
835
  * 84 reference ellipsoid. Will overwrite altitude
830
- * @param {number} [additionalAttributes.direction] of runway, in degree
836
+ * @param {number} [additionalAttributes.altitudeConstraint] The altitude given in `altitude`
837
+ * will be interpreted as mandatory flight plan altitude instead of
838
+ * suggestion.
839
+ * @param {boolean} [additionalAttributes.direction] of runway, in degree
831
840
  * @param {?number} [additionalAttributes.slope] of runway
832
841
  * @param {?number} [additionalAttributes.length] of runway, in meters
833
842
  * @param {?number} [additionalAttributes.length_feet] of runway, in feet. Will overwrite length
@@ -842,6 +851,7 @@ export class AeroflyMissionCheckpoint {
842
851
  {
843
852
  altitude = 0,
844
853
  altitude_feet = null,
854
+ altitudeConstraint = null,
845
855
  direction = null,
846
856
  slope = null,
847
857
  length = null,
@@ -851,6 +861,7 @@ export class AeroflyMissionCheckpoint {
851
861
  }: {
852
862
  altitude?: number;
853
863
  altitude_feet?: number | null;
864
+ altitudeConstraint?: boolean | null;
854
865
  direction?: number | null;
855
866
  slope?: number | null;
856
867
  length?: number | null;
@@ -864,6 +875,7 @@ export class AeroflyMissionCheckpoint {
864
875
  this.longitude = longitude;
865
876
  this.latitude = latitude;
866
877
  this.altitude = altitude;
878
+ this.altitudeConstraint = altitudeConstraint;
867
879
  this.direction = direction;
868
880
  this.slope = slope;
869
881
  this.length = length;
@@ -936,6 +948,9 @@ export class AeroflyMissionCheckpoint {
936
948
  .push("float64", "direction", this.direction ?? (index === 0 ? -1 : 0))
937
949
  .push("float64", "slope", this.slope ?? 0);
938
950
 
951
+ if (this.altitudeConstraint !== null) {
952
+ fileSet.push("bool", "alt_cst", this.altitudeConstraint);
953
+ }
939
954
  if (this.length) {
940
955
  fileSet.push("float64", "length", this.length ?? 0, `${Math.floor(this.length_feet)} ft`);
941
956
  }
package/types/index.d.ts CHANGED
@@ -21,29 +21,11 @@ export type AeroflyMissionPosition = {
21
21
  /**
22
22
  * State of aircraft systems. Configures power settings, flap positions etc
23
23
  */
24
- export type AeroflyMissionSetting =
25
- | "cold_and_dark"
26
- | "before_start"
27
- | "taxi"
28
- | "takeoff"
29
- | "cruise"
30
- | "approach"
31
- | "landing"
32
- | "winch_launch"
33
- | "aerotow"
34
- | "pushback";
24
+ export type AeroflyMissionSetting = "cold_and_dark" | "before_start" | "taxi" | "takeoff" | "cruise" | "approach" | "landing" | "winch_launch" | "aerotow" | "pushback";
35
25
  /**
36
26
  * Types of checkpoints. Required are usually "origin", "departure_runway" at the start and "destination_runway", "destination" at the end.
37
27
  */
38
- export type AeroflyMissionCheckpointType =
39
- | "origin"
40
- | "departure_runway"
41
- | "departure"
42
- | "waypoint"
43
- | "arrival"
44
- | "approach"
45
- | "destination_runway"
46
- | "destination";
28
+ export type AeroflyMissionCheckpointType = "origin" | "departure_runway" | "departure" | "waypoint" | "arrival" | "approach" | "destination_runway" | "destination";
47
29
  /**
48
30
  * Data for the aircraft to use on this mission
49
31
  * @property name lowercase Aerofly aircraft ID
@@ -203,46 +185,25 @@ export declare class AeroflyMission {
203
185
  * @param {AeroflyMissionConditions} [additionalAttributes.conditions] like time and weather for mission
204
186
  * @param {AeroflyMissionCheckpoint[]} [additionalAttributes.checkpoints] form the actual flight plan
205
187
  */
206
- constructor(
207
- title: string,
208
- {
209
- tutorialName,
210
- description,
211
- localizedTexts,
212
- tags,
213
- isFeatured,
214
- difficulty,
215
- flightSetting,
216
- aircraft,
217
- callsign,
218
- origin,
219
- destination,
220
- distance,
221
- duration,
222
- isScheduled,
223
- finish,
224
- conditions,
225
- checkpoints,
226
- }?: {
227
- tutorialName?: string | null;
228
- description?: string;
229
- localizedTexts?: AeroflyLocalizedText[];
230
- tags?: string[];
231
- isFeatured?: boolean | null;
232
- difficulty?: number | null;
233
- flightSetting?: AeroflyMissionSetting;
234
- aircraft?: AeroflyMissionAircraft;
235
- callsign?: string;
236
- origin?: AeroflyMissionPosition;
237
- destination?: AeroflyMissionPosition;
238
- distance?: number | null;
239
- duration?: number | null;
240
- isScheduled?: boolean | null;
241
- finish?: AeroflyMissionTargetPlane | null;
242
- conditions?: AeroflyMissionConditions;
243
- checkpoints?: AeroflyMissionCheckpoint[];
244
- },
245
- );
188
+ constructor(title: string, { tutorialName, description, localizedTexts, tags, isFeatured, difficulty, flightSetting, aircraft, callsign, origin, destination, distance, duration, isScheduled, finish, conditions, checkpoints, }?: {
189
+ tutorialName?: string | null;
190
+ description?: string;
191
+ localizedTexts?: AeroflyLocalizedText[];
192
+ tags?: string[];
193
+ isFeatured?: boolean | null;
194
+ difficulty?: number | null;
195
+ flightSetting?: AeroflyMissionSetting;
196
+ aircraft?: AeroflyMissionAircraft;
197
+ callsign?: string;
198
+ origin?: AeroflyMissionPosition;
199
+ destination?: AeroflyMissionPosition;
200
+ distance?: number | null;
201
+ duration?: number | null;
202
+ isScheduled?: boolean | null;
203
+ finish?: AeroflyMissionTargetPlane | null;
204
+ conditions?: AeroflyMissionConditions;
205
+ checkpoints?: AeroflyMissionCheckpoint[];
206
+ });
246
207
  /**
247
208
  * @returns {string} indexed checkpoints
248
209
  */
@@ -303,16 +264,7 @@ export declare class AeroflyMissionConditions {
303
264
  * @param {?number} [additionalAttributes.temperature] in °C, will overwrite thermalStrength
304
265
  * @param {AeroflyMissionConditionsCloud[]} [additionalAttributes.clouds] for the whole flight
305
266
  */
306
- constructor({
307
- time,
308
- wind,
309
- turbulenceStrength,
310
- thermalStrength,
311
- visibility,
312
- visibility_sm,
313
- temperature,
314
- clouds,
315
- }?: {
267
+ constructor({ time, wind, turbulenceStrength, thermalStrength, visibility, visibility_sm, temperature, clouds, }?: {
316
268
  time?: Date;
317
269
  wind?: {
318
270
  direction: number;
@@ -441,6 +393,12 @@ export declare class AeroflyMissionCheckpoint {
441
393
  * 84 reference ellipsoid
442
394
  */
443
395
  altitude: number;
396
+ /**
397
+ * @property {?boolean} altitudeConstraint The altitude given in `altitude`
398
+ * will be interpreted as mandatory flight plan altitude instead of
399
+ * suggestion.
400
+ */
401
+ altitudeConstraint: boolean | null;
444
402
  /**
445
403
  * @property {?number} direction of runway, in degree
446
404
  */
@@ -476,38 +434,27 @@ export declare class AeroflyMissionCheckpoint {
476
434
  * 84 reference ellipsoid
477
435
  * @param {?number} [additionalAttributes.altitude_feet] The height in feet above or below the WGS
478
436
  * 84 reference ellipsoid. Will overwrite altitude
479
- * @param {number} [additionalAttributes.direction] of runway, in degree
437
+ * @param {number} [additionalAttributes.altitudeConstraint] The altitude given in `altitude`
438
+ * will be interpreted as mandatory flight plan altitude instead of
439
+ * suggestion.
440
+ * @param {boolean} [additionalAttributes.direction] of runway, in degree
480
441
  * @param {?number} [additionalAttributes.slope] of runway
481
442
  * @param {?number} [additionalAttributes.length] of runway, in meters
482
443
  * @param {?number} [additionalAttributes.length_feet] of runway, in feet. Will overwrite length
483
444
  * @param {?number} [additionalAttributes.frequency] of runways or navigational aids, in Hz; multiply by 1000 for kHz, 1_000_000 for MHz
484
445
  * @param {?boolean} [additionalAttributes.flyOver] if waypoint is meant to be flown over
485
446
  */
486
- constructor(
487
- name: string,
488
- type: AeroflyMissionCheckpointType,
489
- longitude: number,
490
- latitude: number,
491
- {
492
- altitude,
493
- altitude_feet,
494
- direction,
495
- slope,
496
- length,
497
- length_feet,
498
- frequency,
499
- flyOver,
500
- }?: {
501
- altitude?: number;
502
- altitude_feet?: number | null;
503
- direction?: number | null;
504
- slope?: number | null;
505
- length?: number | null;
506
- length_feet?: number | null;
507
- frequency?: number | null;
508
- flyOver?: boolean | null;
509
- },
510
- );
447
+ constructor(name: string, type: AeroflyMissionCheckpointType, longitude: number, latitude: number, { altitude, altitude_feet, altitudeConstraint, direction, slope, length, length_feet, frequency, flyOver, }?: {
448
+ altitude?: number;
449
+ altitude_feet?: number | null;
450
+ altitudeConstraint?: boolean | null;
451
+ direction?: number | null;
452
+ slope?: number | null;
453
+ length?: number | null;
454
+ length_feet?: number | null;
455
+ frequency?: number | null;
456
+ flyOver?: boolean | null;
457
+ });
511
458
  /**
512
459
  * @param {number} altitude_feet
513
460
  */
@@ -636,4 +583,4 @@ declare const _default: {
636
583
  AeroflyMissionTargetPlane: typeof AeroflyMissionTargetPlane;
637
584
  };
638
585
  export default _default;
639
- //# sourceMappingURL=index.d.ts.map
586
+ //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
@@ -1,2 +1,2 @@
1
1
  export {};
2
- //# sourceMappingURL=index.test.d.ts.map
2
+ //# sourceMappingURL=index.test.d.ts.map