@fboes/aerofly-custom-missions 1.2.0 → 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 +15 -1
- package/README.md +2 -7
- package/dist/index.js +184 -111
- package/dist/index.test.js +99 -39
- package/docs/custom_missions_user.tmc +49 -1234
- package/package.json +1 -1
- package/src/index.test.ts +109 -34
- package/src/index.ts +244 -138
- package/types/index.d.ts +96 -108
- package/types/index.d.ts.map +1 -1
- package/types/index.test.d.ts +1 -1
package/types/index.d.ts
CHANGED
|
@@ -21,19 +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 = "taxi" | "takeoff" | "cruise" | "approach" | "landing" | "winch_launch" | "aerotow";
|
|
24
|
+
export type AeroflyMissionSetting = "cold_and_dark" | "before_start" | "taxi" | "takeoff" | "cruise" | "approach" | "landing" | "winch_launch" | "aerotow" | "pushback";
|
|
25
25
|
/**
|
|
26
26
|
* Types of checkpoints. Required are usually "origin", "departure_runway" at the start and "destination_runway", "destination" at the end.
|
|
27
27
|
*/
|
|
28
|
-
export type AeroflyMissionCheckpointType =
|
|
29
|
-
| "origin"
|
|
30
|
-
| "departure_runway"
|
|
31
|
-
| "departure"
|
|
32
|
-
| "waypoint"
|
|
33
|
-
| "arrival"
|
|
34
|
-
| "approach"
|
|
35
|
-
| "destination_runway"
|
|
36
|
-
| "destination";
|
|
28
|
+
export type AeroflyMissionCheckpointType = "origin" | "departure_runway" | "departure" | "waypoint" | "arrival" | "approach" | "destination_runway" | "destination";
|
|
37
29
|
/**
|
|
38
30
|
* Data for the aircraft to use on this mission
|
|
39
31
|
* @property name lowercase Aerofly aircraft ID
|
|
@@ -60,6 +52,15 @@ export type AeroflyMissionConditionsWind = {
|
|
|
60
52
|
* Cloud coverage codes
|
|
61
53
|
*/
|
|
62
54
|
export type AeroflyMissionConditionsCloudCoverCode = "CLR" | "FEW" | "SCT" | "BKN" | "OVC";
|
|
55
|
+
export declare class AeroflyConfigFileSet {
|
|
56
|
+
#private;
|
|
57
|
+
elements: string[];
|
|
58
|
+
constructor(indent: number, type: string, name: string, value?: string);
|
|
59
|
+
get indent(): string;
|
|
60
|
+
push(type: string, name: string, value: string | number | string[] | number[] | boolean, comment?: string): this;
|
|
61
|
+
pushRaw(s: string): this;
|
|
62
|
+
toString(): string;
|
|
63
|
+
}
|
|
63
64
|
/**
|
|
64
65
|
* @class
|
|
65
66
|
* A list of flight plans.
|
|
@@ -91,6 +92,10 @@ export declare class AeroflyMissionsList {
|
|
|
91
92
|
* for this file via the `toString()` method.
|
|
92
93
|
*/
|
|
93
94
|
export declare class AeroflyMission {
|
|
95
|
+
/**
|
|
96
|
+
* @property {?string} tutorialName will create a link to a tutorial page at https://www.aerofly.com/aircraft-tutorials/
|
|
97
|
+
*/
|
|
98
|
+
tutorialName: string | null;
|
|
94
99
|
/**
|
|
95
100
|
* @property {string} title of this flight plan
|
|
96
101
|
*/
|
|
@@ -108,15 +113,15 @@ export declare class AeroflyMission {
|
|
|
108
113
|
*/
|
|
109
114
|
tags: string[];
|
|
110
115
|
/**
|
|
111
|
-
* @property {boolean} isFeatured makes this mission pop up in "Challenges"
|
|
116
|
+
* @property {?boolean} isFeatured makes this mission pop up in "Challenges"
|
|
112
117
|
*/
|
|
113
|
-
isFeatured: boolean;
|
|
118
|
+
isFeatured: boolean | null;
|
|
114
119
|
/**
|
|
115
|
-
* @property {number
|
|
120
|
+
* @property {?number} difficulty values between 0.00 and 2.00 have been encountered, but they seem to be without limit
|
|
116
121
|
*/
|
|
117
|
-
difficulty: number |
|
|
122
|
+
difficulty: number | null;
|
|
118
123
|
/**
|
|
119
|
-
* @property {"taxi"|"takeoff"|"cruise"|"approach"|"landing"|"winch_launch"|"aerotow"} flightSetting of aircraft, like "taxi", "cruise"
|
|
124
|
+
* @property {"cold_and_dark"|"before_start"|"taxi"|"takeoff"|"cruise"|"approach"|"landing"|"winch_launch"|"aerotow"|"pushback"} flightSetting of aircraft, like "taxi", "cruise"
|
|
120
125
|
*/
|
|
121
126
|
flightSetting: AeroflyMissionSetting;
|
|
122
127
|
/**
|
|
@@ -136,13 +141,17 @@ export declare class AeroflyMission {
|
|
|
136
141
|
*/
|
|
137
142
|
destination: AeroflyMissionPosition;
|
|
138
143
|
/**
|
|
139
|
-
* @property {number} in meters
|
|
144
|
+
* @property {?number} distance in meters
|
|
140
145
|
*/
|
|
141
|
-
distance: number;
|
|
146
|
+
distance: number | null;
|
|
142
147
|
/**
|
|
143
|
-
* @property {number} in seconds
|
|
148
|
+
* @property {?number} duration in seconds
|
|
144
149
|
*/
|
|
145
|
-
duration: number;
|
|
150
|
+
duration: number | null;
|
|
151
|
+
/**
|
|
152
|
+
* @property {?boolean} isScheduled marks this flight as "Scheduled flight".
|
|
153
|
+
*/
|
|
154
|
+
isScheduled: boolean | null;
|
|
146
155
|
/**
|
|
147
156
|
* @property {?AeroflyMissionTargetPlane} finish as finish condition
|
|
148
157
|
*/
|
|
@@ -160,56 +169,41 @@ export declare class AeroflyMission {
|
|
|
160
169
|
* @param {object} [additionalAttributes] allows to set additional attributes on creation
|
|
161
170
|
* @param {string} [additionalAttributes.description] text, mission briefing, etc
|
|
162
171
|
* @param {AeroflyLocalizedText[]} [additionalAttributes.localizedTexts] translations for title and description
|
|
172
|
+
* @param {?string} [additionalAttributes.tutorialName] will create a link to a tutorial page at https://www.aerofly.com/aircraft-tutorials/
|
|
163
173
|
* @param {string[]} [additionalAttributes.tags]
|
|
164
|
-
* @param {boolean} [additionalAttributes.isFeatured] makes this mission pop up in "Challenges"
|
|
165
|
-
* @param {number
|
|
166
|
-
* @param {"taxi"|"takeoff"|"cruise"|"approach"|"landing"|"winch_launch"|"aerotow"} [additionalAttributes.flightSetting] of aircraft, like "taxi", "cruise"
|
|
174
|
+
* @param {?boolean} [additionalAttributes.isFeatured] makes this mission pop up in "Challenges"
|
|
175
|
+
* @param {?number} [additionalAttributes.difficulty] values between 0.00 and 2.00 have been encountered, but they seem to be without limit
|
|
176
|
+
* @param {"cold_and_dark"|"before_start"|"taxi"|"takeoff"|"cruise"|"approach"|"landing"|"winch_launch"|"aerotow"|"pushback"} [additionalAttributes.flightSetting] of aircraft, like "taxi", "cruise"
|
|
167
177
|
* @param {{name:string,livery:string,icao:string}} [additionalAttributes.aircraft] for this mission
|
|
168
178
|
* @param {string} [additionalAttributes.callsign] of aircraft, uppercased
|
|
169
179
|
* @param {object} [additionalAttributes.origin] position of aircraft, as well as name of starting airport. Position does not have match airport.
|
|
170
180
|
* @param {object} [additionalAttributes.destination] position of aircraft, as well as name of destination airport. Position does not have match airport.
|
|
171
|
-
* @param {number} [additionalAttributes.distance] in meters
|
|
172
|
-
* @param {number} [additionalAttributes.duration] in seconds
|
|
181
|
+
* @param {?number} [additionalAttributes.distance] in meters
|
|
182
|
+
* @param {?number} [additionalAttributes.duration] in seconds
|
|
183
|
+
* @param {?boolean} [additionalAttributes.isScheduled] marks this flight as "Scheduled flight".
|
|
173
184
|
* @param {?AeroflyMissionTargetPlane} [additionalAttributes.finish] as finish condition
|
|
174
185
|
* @param {AeroflyMissionConditions} [additionalAttributes.conditions] like time and weather for mission
|
|
175
186
|
* @param {AeroflyMissionCheckpoint[]} [additionalAttributes.checkpoints] form the actual flight plan
|
|
176
187
|
*/
|
|
177
|
-
constructor(
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
description?: string;
|
|
197
|
-
localizedTexts?: AeroflyLocalizedText[];
|
|
198
|
-
tags?: string[];
|
|
199
|
-
isFeatured?: boolean;
|
|
200
|
-
difficulty?: number | undefined;
|
|
201
|
-
flightSetting?: AeroflyMissionSetting;
|
|
202
|
-
aircraft?: AeroflyMissionAircraft;
|
|
203
|
-
callsign?: string;
|
|
204
|
-
origin?: AeroflyMissionPosition;
|
|
205
|
-
destination?: AeroflyMissionPosition;
|
|
206
|
-
distance?: number;
|
|
207
|
-
duration?: number;
|
|
208
|
-
finish?: AeroflyMissionTargetPlane | null;
|
|
209
|
-
conditions?: AeroflyMissionConditions;
|
|
210
|
-
checkpoints?: AeroflyMissionCheckpoint[];
|
|
211
|
-
},
|
|
212
|
-
);
|
|
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
|
+
});
|
|
213
207
|
/**
|
|
214
208
|
* @returns {string} indexed checkpoints
|
|
215
209
|
*/
|
|
@@ -266,20 +260,11 @@ export declare class AeroflyMissionConditions {
|
|
|
266
260
|
* @param {number} [additionalAttributes.turbulenceStrength] 0..1, percentage
|
|
267
261
|
* @param {number} [additionalAttributes.thermalStrength] 0..1, percentage
|
|
268
262
|
* @param {number} [additionalAttributes.visibility] in meters
|
|
269
|
-
* @param {number
|
|
270
|
-
* @param {number
|
|
263
|
+
* @param {?number} [additionalAttributes.visibility_sm] in statute miles, will overwrite visibility
|
|
264
|
+
* @param {?number} [additionalAttributes.temperature] in °C, will overwrite thermalStrength
|
|
271
265
|
* @param {AeroflyMissionConditionsCloud[]} [additionalAttributes.clouds] for the whole flight
|
|
272
266
|
*/
|
|
273
|
-
constructor({
|
|
274
|
-
time,
|
|
275
|
-
wind,
|
|
276
|
-
turbulenceStrength,
|
|
277
|
-
thermalStrength,
|
|
278
|
-
visibility,
|
|
279
|
-
visibility_sm,
|
|
280
|
-
temperature,
|
|
281
|
-
clouds,
|
|
282
|
-
}?: {
|
|
267
|
+
constructor({ time, wind, turbulenceStrength, thermalStrength, visibility, visibility_sm, temperature, clouds, }?: {
|
|
283
268
|
time?: Date;
|
|
284
269
|
wind?: {
|
|
285
270
|
direction: number;
|
|
@@ -408,6 +393,12 @@ export declare class AeroflyMissionCheckpoint {
|
|
|
408
393
|
* 84 reference ellipsoid
|
|
409
394
|
*/
|
|
410
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;
|
|
411
402
|
/**
|
|
412
403
|
* @property {?number} direction of runway, in degree
|
|
413
404
|
*/
|
|
@@ -425,9 +416,9 @@ export declare class AeroflyMissionCheckpoint {
|
|
|
425
416
|
*/
|
|
426
417
|
frequency: number | null;
|
|
427
418
|
/**
|
|
428
|
-
* @property {boolean
|
|
419
|
+
* @property {?boolean} flyOver if waypoint is meant to be flown over
|
|
429
420
|
*/
|
|
430
|
-
flyOver: boolean |
|
|
421
|
+
flyOver: boolean | null;
|
|
431
422
|
/**
|
|
432
423
|
* @param {string} name ICAO code for airport, runway designator, navaid
|
|
433
424
|
* designator, fix name, or custom name
|
|
@@ -441,40 +432,29 @@ export declare class AeroflyMissionCheckpoint {
|
|
|
441
432
|
* @param {object} additionalAttributes allows to set additional attributes on creation
|
|
442
433
|
* @param {number} [additionalAttributes.altitude] The height in meters above or below the WGS
|
|
443
434
|
* 84 reference ellipsoid
|
|
444
|
-
* @param {number
|
|
435
|
+
* @param {?number} [additionalAttributes.altitude_feet] The height in feet above or below the WGS
|
|
445
436
|
* 84 reference ellipsoid. Will overwrite altitude
|
|
446
|
-
* @param {number} [additionalAttributes.
|
|
447
|
-
*
|
|
448
|
-
*
|
|
449
|
-
* @param {
|
|
450
|
-
* @param {number
|
|
451
|
-
* @param {
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
}?: {
|
|
468
|
-
altitude?: number;
|
|
469
|
-
altitude_feet?: number | null;
|
|
470
|
-
direction?: number | null;
|
|
471
|
-
slope?: number | null;
|
|
472
|
-
length?: number | null;
|
|
473
|
-
length_feet?: number | null;
|
|
474
|
-
frequency?: number | null;
|
|
475
|
-
flyOver?: boolean | undefined;
|
|
476
|
-
},
|
|
477
|
-
);
|
|
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
|
|
441
|
+
* @param {?number} [additionalAttributes.slope] of runway
|
|
442
|
+
* @param {?number} [additionalAttributes.length] of runway, in meters
|
|
443
|
+
* @param {?number} [additionalAttributes.length_feet] of runway, in feet. Will overwrite length
|
|
444
|
+
* @param {?number} [additionalAttributes.frequency] of runways or navigational aids, in Hz; multiply by 1000 for kHz, 1_000_000 for MHz
|
|
445
|
+
* @param {?boolean} [additionalAttributes.flyOver] if waypoint is meant to be flown over
|
|
446
|
+
*/
|
|
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
|
+
});
|
|
478
458
|
/**
|
|
479
459
|
* @param {number} altitude_feet
|
|
480
460
|
*/
|
|
@@ -501,6 +481,10 @@ export declare class AeroflyMissionCheckpoint {
|
|
|
501
481
|
*/
|
|
502
482
|
toString(index?: number): string;
|
|
503
483
|
}
|
|
484
|
+
/**
|
|
485
|
+
* @class
|
|
486
|
+
* A translation for the mission title and description.
|
|
487
|
+
*/
|
|
504
488
|
export declare class AeroflyLocalizedText {
|
|
505
489
|
/**
|
|
506
490
|
* @property {string} language ISO 639-1 like
|
|
@@ -550,6 +534,10 @@ export declare class AeroflyLocalizedText {
|
|
|
550
534
|
*/
|
|
551
535
|
toString(index?: number): string;
|
|
552
536
|
}
|
|
537
|
+
/**
|
|
538
|
+
* @class
|
|
539
|
+
* A target plane which the aircraft needs to cross.
|
|
540
|
+
*/
|
|
553
541
|
export declare class AeroflyMissionTargetPlane {
|
|
554
542
|
/**
|
|
555
543
|
* @property {number} longitude easting, using the World Geodetic
|
|
@@ -595,4 +583,4 @@ declare const _default: {
|
|
|
595
583
|
AeroflyMissionTargetPlane: typeof AeroflyMissionTargetPlane;
|
|
596
584
|
};
|
|
597
585
|
export default _default;
|
|
598
|
-
//# sourceMappingURL=index.d.ts.map
|
|
586
|
+
//# sourceMappingURL=index.d.ts.map
|
package/types/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;;;GAYG;AACH,MAAM,MAAM,sBAAsB,GAAG;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;CACf,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,qBAAqB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
package/types/index.test.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export {};
|
|
2
|
-
//# sourceMappingURL=index.test.d.ts.map
|
|
2
|
+
//# sourceMappingURL=index.test.d.ts.map
|