Click here to Skip to main content
15,860,972 members
Articles / Web Development / ASP.NET
Article

Speech Tic-Tac-Toe

Rate me:
Please Sign up or sign in to vote.
3.42/5 (14 votes)
5 May 20044 min read 120.7K   2.9K   48   15
A speech recognition demonstration program.

Click here to play the demo (User need to install Microsoft Internet Explorer Speech Add-in 1.0 to play the demo).

Introduction

This demonstration program enables you to use the Microsoft Speech Application SDK to create a voice recognition-enabled web application. I used a tic-tac-toe game (modified from a JavaScript version). This game can be played by using speech controls and a mike, without keyboard and mouse input. This is a very simple program, but it will give you an idea on how to let your web applications interact with speech controls.

How to play:

  1. User plays the X's and the computer plays the O's.
  2. User selects a square by saying the number-name of the square into the mike.

Image 1

How it works:

This is a multimodal application (a web application that uses speech in conjunction with a graphical interface to interact with the user). In the program, I use three kinds of Speech objects. They are grammar, prompt and listen:

Speech ObjectsObject names
Grammar objects
  1. toplevel
  2. position
Prompt objects
  1. welcomePrompt
  2. tiedPrompt
  3. losePrompt
  4. winPrompt
Listen objects
  1. askPostionListen

Speech associations:

  1. When the program opens, welcomePrompt plays the instructions, using the text-to-speech engine. (The prompt object is associated with the TTS engine.)
  2. When the text reading is complete, askPositionListen turns on the speech recording function. (The listenprompt object is associated with the speech recognition engine.)
  3. When a word is recorded and it matches a rule of the grammar, the program will call a function yourChoice() such as OnClientReco=yourChoice(), and displays an "X" into the selected square. (In the original JavaScript version of tic-tac-toe, the function yourChoice() is an onClick function such as onClick = yourChoice().)

The following picture shows how an object prompt is associated with the speech recognition engine:

Image 2

Using the code

Included in the program files are: Microsoft.Speech.Web.dll and source JavaScript file Function.js. All the functions that are needed to play the game are in the files. The following namespace and schemas will be added to the program automatically if you are using Microsoft SASDK.

ASP.NET
<%@ Register TagPrefix="speech" Namespace="Microsoft.Speech.Web.UI" 
        Assembly="Microsoft.Speech.Web, Version=1.0.3200.0, Culture=neutral, 
        PublicKeyToken=31bf3856ad364e35" %>
HTML
<body onload="OnLoad()" xmlns:speech="http://schemas.microsoft.com/speech/WebControls"
        MS_POSITIONING="GridLayout">

First, let's create the rules of the grammar.

Rule 1 - toplevel:

Image 3

Add a RuleRef and name it Position as seen above and set its script tag. Use the example image below.

Image 4

Rule 2 - position

Add a list and some phrases and name them. The following chart shows the tic-tac-toe script tags. The one...nine represents the name of the squares. Also, select the Constant and type the name in the "Enter value" text box for each Script tag.

Image 5

The code will be automatically generated, and will look like the box below.

We can find the rules for toplevel and Position in the code.

  • The toplevel rule uses the ruleref element to reference the Position rule.
  • The <item> represents a phrase. Each phrase can only have one word in this grammar.
  • The script expression, $._value= "xx", contained in the tag element, is executed when the speech recognizer follows a path through the grammar and finds the words or phrases that the tag element follows.
  • The <one-of> represents a word list, or dictionary. When a user speaks one of the words in the list, the recognition engine recognizes that word.
XML
<rule id="toplevel" scope="public">
    <ruleref uri="#Position" type="application/srgs+xml"/>
    <tag>$.Position = $$</tag>
</rule>
<rule id="Position" scope="public">
    <one-of>
        <item>
            <item>one</item>
            <tag>$._value = "one"</tag>
        </item>
        <item>
            <item>two</item>
            <tag>$._value = "two"</tag>
        </item>
        .
        .
        .
    </one-of>
</rule>

The second step is to add a listen element and set its properties like this:

Image 6

The code will be generated as in the box below.

The listen element specifies possible speech inputs and controls the speech recognition processes and results. Grammar is one of the main elements of the listen object. In the following, OnClientReco= "yourChoice" means that if the speech is successfully recorded, the function yourChoice will be called. The function is the same as onClick="yourChoice" in the original JavaScript program. If no recording, or silence, or random speech is detected, the listen will start again. The codes are: OnClientSilence= "ListenStart", OnClientNoReco= "ListenStart" or OnClientSpeechDetected= "ListenStart".

XML
<speech:listen id= "AskPositionListen" runat="server" OnClientSilence=  
      "ListenStart" OnClientNoReco= "ListenStart" 
      OnClientSpeechDetected= "ListenStart" 
      OnClientReco= "yourChoice" MaxTimeout="15000" 
      EndSilence=  "1000" InitialTimeout= "2000">
    <Grammars> 
        <speech:Grammar Src="Grammars/SpeechTicTacToe.grxml#toplevel" 
            ID= "AskPositionListen_Grammar1">  
        </speech:Grammar> 
    </Grammars>
    <Bindings>
        <speech:Bind></speech:Bind>
    </Bindings>
</speech:listen>

For example, once the user speaks a word and it activates the speech recognition engine, yourChoice will be called. The code: event.srcElement.recoResult.selectSingleNode("Position"); will return the value of the word.

function yourChoice()
{
    //the theNode catches the result of the speech
    var theNode = event.srcElement.recoResult.selectSingleNode("Position");

    //the chName catches the result of the speech 
    //in a string format. The string should be 
    //one of the square's name.
    var chName;
    chName = theNode.text;

    //display the X image in the chName square.
    document.images[chName].src = "x.jpg";
    .
    .
    .

Now, add the prompt and set its properties:

Image 7

<speech:Prompt id="welcomePrompt" runat= "server">
    <InlineContent>
      Welcome to Speech  Tic-Tac-Toe! You play as theX's and the computer is the O's. 
      Select the square you want to put your X into by saying them.Good Luck!
    </InlineContent> 
</speech:Prompt>

The following shows how to use the prompt and listen objects in JavaScript.

JavaScript
function OnLoad(){
    //text-to-speech engine start the welcome prompt
    welcomePrompt.Start();

    //called the listen function
    ListenStart();
}

function ListenStart(){
    //speech recognization engine start to listen speech
    askPositionListen.Start();
}

User requirement

Users need to install Microsoft Internet Explorer Speech Add-in 1.0 in their computer in order to play the game.

Developers need to install Microsoft Speech Application SDK v1.0 Beta 3 in order to use the speech objects.

History

  • 5/6/2004 - first post.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRegarding Speech add-in for Windows 7 and Windows Vista Pin
Member 415557728-Jun-10 20:55
Member 415557728-Jun-10 20:55 
GeneralHosting IVR application Pin
Priyanka_Gupta10-Mar-09 2:01
Priyanka_Gupta10-Mar-09 2:01 
Questionmultilanguage support of speech api how?? Pin
29181195-Mar-09 1:45
29181195-Mar-09 1:45 
Generaljavascript Pin
ffw_me26-Oct-06 8:37
ffw_me26-Oct-06 8:37 
GeneralGetting error on Tic-Tac-Toe Pin
venkatttttttttttt22-Aug-06 19:12
venkatttttttttttt22-Aug-06 19:12 
GeneralError regarding TicTacToe Pin
venkatttttttttttt22-Aug-06 1:47
venkatttttttttttt22-Aug-06 1:47 
GeneralProgram Works, but.... Pin
OldYgg10-Nov-05 17:50
OldYgg10-Nov-05 17:50 
GeneralRe: Program Works, but.... Pin
OldYgg10-Nov-05 18:12
OldYgg10-Nov-05 18:12 
GeneralAbout recognition Pin
sinmorn24-May-04 16:55
sinmorn24-May-04 16:55 
GeneralYour Demo Pin
Albert Pascual7-May-04 12:18
sitebuilderAlbert Pascual7-May-04 12:18 
GeneralRe: Your Demo Pin
leppie7-May-04 13:41
leppie7-May-04 13:41 
GeneralRe: Your Demo Pin
Albert Pascual7-May-04 13:48
sitebuilderAlbert Pascual7-May-04 13:48 
GeneralRe: Your Demo Pin
Kwong-Leung kong7-May-04 17:43
Kwong-Leung kong7-May-04 17:43 
GeneralRe: Mine works Pin
Member 10820477-May-04 18:05
Member 10820477-May-04 18:05 
GeneralRe: Your Demo Pin
Syed Murtaza Hussain Rizvi23-Dec-06 3:59
Syed Murtaza Hussain Rizvi23-Dec-06 3:59 

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.