Click here to Skip to main content
15,886,578 members
Articles / Programming Languages / C#

Handsfree with Cortana!

Rate me:
Please Sign up or sign in to vote.
4.95/5 (8 votes)
21 Dec 2015CPOL4 min read 16.4K   259   13   2
Integrating Cortana in Windows Apps (Foreground & Background interaction)

Intro (Skip If You Already Know Who Cortana Is)

Getting your work done by not launching the desired app is more common these days. Since every platform has its own personal assistant to get your work done as quickly as possible, why not leverage it. If you are not sure yet about what kind of personal assistant I’m talking about. Well they are Cortana, Siri and Google Now. They are available in Windows, iOS and Android devices respectively. Let me talk about Cortana today and show you how you can integrate her in your own app. Cortana was introduced initially with Windows Phone 8.1 and now she is also available in Windows 10 devices (devices runs on Windows 10 OS). In Windows 10 devices, you can ask Cortana to do stuff for you. She will do the specific task and return the outcome in Cortana canvas. By the way, you can also type in the canvas to get your work done if you want to maintain privacy and of course you don’t want to shout to Cortana in public every single time. You can interact with Cortana in Windows simply by saying “Hey Cortana”. And you will be presented with the Cortana canvas.

Image 1

How Can I Integrate Cortana In My App?

You can use Cortana to run an app in foreground. Then you can do your stuff with the app. There is nothing much you can do with Cortana if you use it to run a foreground app. Again, what else do you need from Cortana if your app is up and running in front of you. The actual fun begins when you use Cortana to run your app in background and interact with your app from Cortana canvas. So buckle up and let’s do that. I’ve created this simplest Todo application. You can get the source code of the app from the link I provided at the bottom of this post. Here is the sneak peak of the app,

Image 2

You can add todo items, check them if they are done and can also permanently delete them from the app. How about we use Cortana to get the pending tasks without running the app just by saying “Hey Cortana, My Simple Todo, show pending tasks.”

Image 3

Cool! You can tweak the source code and can add functionalities like adding, checking and deleting todo items directly from the Cortana canvas. For the time being, let me show you how we can achieve this simple scenario. To be able to run our app in the background, we need a Windows Runtime Component.

Add a class of your own and implement the IBackgroundTask in it. It has a Run method which will eventually run when your app is activated in background. Here is my VoiceCommandService class which implements the IBackgroundTask interface.

Image 4

C#
public sealed class VoiceCommandService : IBackgroundTask
{
    private BackgroundTaskDeferral _deferral;
    VoiceCommandServiceConnection _voiceServiceConnection;

    public async void Run(IBackgroundTaskInstance taskInstance)
    {
        var triggerDetails = taskInstance.TriggerDetails as AppServiceTriggerDetails;
        if (triggerDetails?.Name == "SimpleTodoVoiceCommandService")
        {
            _deferral = taskInstance.GetDeferral();
            var cancelledTokenSource = new CancellationTokenSource();
            _voiceServiceConnection = 
		VoiceCommandServiceConnection.FromAppServiceTriggerDetails(triggerDetails);
            var voiceCommand = await _voiceServiceConnection.GetVoiceCommandAsync();

            switch (voiceCommand.CommandName)
            {
                case "todoBackgroundCommandList":
                    var command = 
			voiceCommand.SpeechRecognitionResult.SemanticInterpretation.Properties["command"][0];
                    if (command == "pending")
                        await ShowPendingTasks();
                    break;

                default:
                    LaunchAppInForeground();
                    break;
            }

            taskInstance.Canceled += (s, e) =>
            {
                cancelledTokenSource.Cancel();
                _deferral.Complete();
            };

            _voiceServiceConnection.VoiceCommandCompleted += (sender, args) =>
            {
                cancelledTokenSource.Cancel();
                _deferral.Complete();
            };

            _voiceServiceConnection.VoiceCommandCompleted += (sender, args) =>
            {
                cancelledTokenSource.Cancel();
            };
        }
    }
}

The source code contains the rest of the code (download it from the links above). All I did here is get the voice command which activated the background task. Then, we are matching it to our PhraseList defined in the voice command definition file. Since my app is able to show just the pending tasks, the command should match the first command in my PhraseList. Here is my VCD file:

XML
<?xml version="1.0" encoding="utf-8"?>
<VoiceCommands xmlns="http://schemas.microsoft.com/voicecommands/1.2">
  <CommandSet xml:lang="en-us" Name="MySimpleTodoCommandSet_en-us">
    <CommandPrefix> My Simple To do </CommandPrefix>
    <Example> My Simple To do, show pending tasks </Example>

    <Command Name="todoBackgroundCommandList">
      <Example> show pending tasks </Example>
      <ListenFor> {command} task[s] </ListenFor>
      <Feedback> Executing specific command  </Feedback>
      <VoiceCommandService Target="SimpleTodoVoiceCommandService"/>
    </Command>

    <PhraseList Label="command">
      <Item>pending</Item>
    </PhraseList>
  </CommandSet>
</VoiceCommands>

Here, in the command prefix node, we define the app identifier by which Cortana will recognize our app. For example, “Hey Cortana, open my simple to do” will open our app in the foreground. Again, you can have multiple Command node in a VCD file each of which will have a ListenFor node. In this node, you place a placeholder for your desired commands. These placeholders will be replaced by the matched value from the PhraseList. You can also define a similar CommandSet and set the language of the CommandSet in which a user can interact with Cortana. Remember that Cortana doesn’t support all the languages yet. So if you set to a language that isn’t supported, your app may not give you the exact result you are looking for.

Now, add reference of the component library project to the main Windows application project.

Image 5

Next, you will need to register your voice command definition in App.xaml.cs class with this simple code. You will need to override the OnActivated method if you need deep linking in your app. It's all available in the source code.

C#
private async Task RegisterVoiceCommands()
{
    var storageFile =
        await StorageFile.GetFileFromApplicationUriAsync(
            new Uri("ms-appx:///MySimpleTodoCommands.xml"));
    await
        VoiceCommandDefinitionManager
            .InstallCommandDefinitionsFromStorageFileAsync(storageFile);
}

Not done yet. Open up the Package.appxmanifest file, go to Declarations node and add an App Service from available declarations dropdown. Add the app service identifier and entry point of your background task. Now run the app and add some todos. Next you can query for pending tasks directly from Cortana canvas just by saying, “Hey Cortana, my simple to do, show pending tasks.” Here is a video of the working app for you. Thank you very much for reading.

This article was originally posted at http://www.fiyazhasan.me/handsfree-with-cortana

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Geek Hour
Bangladesh Bangladesh
Tech Enthusiast | Contributing Author on Microsoft Docs | Github Country Leader (C# and Typescript)

A .NET and JavaScript enthusiast. Likes to work with different technologies on different platforms. Loves the logic and structure of coding and always strives to write more elegant and efficient code. Passionate about design patterns and applying Software Engineering best practices.

I'm a young coder who did exceedingly well in my education and was offered an internship by Microsoft. I've tried a range of things and realized that what I need is a super creative challenge. I'm hungry for a real role in a challenging startup, something I can stick with for years

Comments and Discussions

 
GeneralMy vote of 5 Pin
Mitchell J.27-Dec-15 20:08
professionalMitchell J.27-Dec-15 20:08 
GeneralMy vote of 5 Pin
Santhakumar M22-Dec-15 4:06
professionalSanthakumar M22-Dec-15 4:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.