Cortana Windows 10 UWP集成 - 在VCD中使用{*}

时间:2016-04-02 16:24:12

标签: c# win-universal-app cortana vcd

specification for vcd files中,它表示{*}用于匹配任何内容。但是对于他的示例命令:

<Command Name="addFoodLog">
      <Example> I had a burger for lunch </Example>
      <!--Recording a drink-->
      <ListenFor RequireAppName="BeforeOrAfterPhrase"> [I] drank [a] {*} with [my] {mealtime} </ListenFor>
      <!--Recording a meal-->
      <ListenFor RequireAppName="BeforeOrAfterPhrase"> [I] ate [a] {*} for [my] {mealtime} </ListenFor>
      <ListenFor RequireAppName="BeforeOrAfterPhrase"> [I'm] having {*} for [my] {mealtime} </ListenFor>
      <ListenFor RequireAppName="BeforeOrAfterPhrase"> [I] [just] had [a] {*} for {mealtime} </ListenFor>
      <Feedback> Recording your {mealtime}</Feedback>
      <Navigate />
</Command>

打印此输入的结果将为I drank a ... with my dinner

有没有办法从文本中获得实际所说的内容?或许这是一个错误?

2 个答案:

答案 0 :(得分:1)

如果您使用短语主题,那么您将解决您的问题,因为它会获得更大的词汇量。

以下是一个例子:

<PhraseTopic Label="food">
  <Subject>Food</Subject>
  <Subject>Drink</Subject>
  <Subject>Meal</Subject>
  <Subject>Food</Subject>
</PhraseTopic>

查看Voice Command Definition elements and attributes以获取更多信息

答案 1 :(得分:1)

以下是如何获取搜索字词,而不是从值列表中获取搜索字词。这是针对HTML / JS,而不是XAML,但应该给你一个好主意。

XML

<?xml version="1.0" encoding="utf-8" ?>
<VoiceCommands xmlns="http://schemas.microsoft.com/voicecommands/1.2">
    <CommandSet xml:lang="en-us" Name="FNOW_en-us">
        <AppName> YourAppName </AppName>
        <Example> Search books </Example>

        <Command Name="SearchFor">
            <Example> Search for Harry Potter </Example>
            <ListenFor RequireAppName="BeforeOrAfterPhrase"> find book {SearchTerm} </ListenFor>
            <Feedback> Searching books </Feedback>
            <Navigate />
        </Command>

        <PhraseTopic Label="SearchTerm" Scenario="Search"/>
    </CommandSet>
</VoiceCommands>

JavaScript

function handleVoiceCommand(args) {
    var command,
        commandResult,
        commandName = '',
        commandProperties = {};

    if (args.detail && args.detail.detail) {
        command = args.detail.detail[0];

        if (command) {
            commandResult = command.result;

            if (commandResult) {
                if (commandResult.rulePath) {
                    commandName = commandResult.rulePath[0];
                }
                if (commandResult.semanticInterpretation) {
                    commandProperties = commandResult.semanticInterpretation.properties;
                }

                // Act on the different commands.
                // Command Names are defined within VoiceCommands.xml.
                switch(commandName) {
                    case 'SearchFor':
                        console.log('Cortana Command: SearchFor');
                        console.log('Search Term: ' + commandProperties.SearchTerm[0]);
                        break;
                }
            }
        }
    }
}

WinJS.Application.addEventListener('activated', function (args) {
    var appLaunchVoiceCommand;

    appLaunchVoiceCommand = Windows.ApplicationModel.Activation.ActivationKind.voiceCommand || 16;
    if (args.detail.kind === appLaunchVoiceCommand) {
        return handleVoiceCommand(args);
    }
});

WinJS.Application.start();