Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: APmodes #526

Merged
merged 6 commits into from
Aug 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Changelog

Update <small>_ August 2024</small>

- feat: New .APModes command (08/08/2024)

Update <small>_ July 2024</small>

- fix: update takeoff calculator and flex temp command to highlight new improvements (01/07/2024)
85 changes: 43 additions & 42 deletions .github/command-docs.md

Large diffs are not rendered by default.

Binary file added assets/images/support/apmodes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/commands/index.ts
Original file line number Diff line number Diff line change
@@ -138,6 +138,7 @@ import { spad } from './general/spad';
import { devLanguages } from './general/devLanguages';
import { simbridgeDebug } from './support/simbridgeDebug';
import { migratedCommand } from './general/migratedCommand';
import { apmodes } from './support/apmodes';
//import { avatar } from './utils/avatar';
//import { ban } from './moderation/ban';
//import { birthday } from './utils/birthday';
@@ -310,6 +311,7 @@ const commands: BaseCommandDefinition[] = [
devLanguages,
simbridgeDebug,
migratedCommand,
apmodes,
//avatar,
//ban,
//birthday,
19 changes: 19 additions & 0 deletions src/commands/support/apmodes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { MessageCommandDefinition } from '../../lib/command';
import { CommandCategory, imageBaseUrl } from '../../constants';
import { makeEmbed } from '../../lib/embed';

const MANAGED_SELECTED_IMAGE = `${imageBaseUrl}/support/apmodes.png`;

export const apModesEmbed = makeEmbed({
title: 'Auto Pilot Modes',
description: 'For a detailed explanation of the different guidance modes visit our [documentation](https://docs.flybywiresim.com/pilots-corner/advanced-guides/flight-guidance/overview/#autopilot-and-flight-director-modes).',
image: { url: MANAGED_SELECTED_IMAGE },
footer: { text: 'Tip: Click the image to view in full size' },
});

export const apmodes: MessageCommandDefinition = {
name: ['apmodes', 'APmodes'],
description: 'Provides information about the Managed and Selected autopilot modes.',
category: CommandCategory.SUPPORT,
genericEmbed: apModesEmbed,
};