Click here to Skip to main content
15,885,366 members
Articles / Productivity Apps and Services / Team Communication Tools / Skype

Enhanced Skype Chatter Robot

Rate me:
Please Sign up or sign in to vote.
5.00/5 (11 votes)
4 Aug 2013CPOL2 min read 84.4K   5.8K   28   32
An Enhanced Skype Chatter Bot, with a friendly user interface, programable knowledge base, testing interface with Export/Import knowledge base to files
Sample Image

Introduction

This piece of software enables the user to have a programmable ChatBot. Where most of the tutorials circulating on the internet have their knowledge base hard coded (obviously for demonstration purposes), here we will see that it is possible to add and edit rules to knowledge base during runtime, and the database is automatically saved to a file on storage.

Second thing that this program does is it doesn't simply compare strings to search for answers, but it uses a different strategy to calculate resemblance between strings, and this sort of overcomes typing errors, misspelled words, or inverted phrases.

In addition to the features mentioned above, it has several secondary features that enhance user experience like a testing section, message delaying, greeting message, and the ability to load and backup database into files.

Background

Originally, this was an application that I made previously for someone who had nothing to do with any programing. I found many examples that do illustrate how it should be basically done, but for my end-users, several things needed to be enhanced like:

  • User friendly interface
  • An editable knowledge base via the GUI
  • A way to overcome typing errors, misspelled words, etc.
  • Message delaying

I have based my work on this CodeProject article, Make your Skype Bot in .NET, as it was a nice 'scratch the surface' with the Skype4COM COM wrapper, and it's highly suggested to check it out as it contains a lot of definitions that will not be covered in this article.

Code Explanation

String Comparison Strategy and Message Processing

It is obvious that normal string comparison will only match strings character by character, which is not very effective when dealing with messages that were input by humans. In the case like we have here, strings are commonly compared by Resemblance. i.e., we will have to calculate the rate of how much do a pair of strings look alike. There are many algorithms and approaches to do such a comparison, for the sake of this project we will be using the Levenshtein distance.

Message processing is summarized in the following diagram :

Image 2

Source code preview of the actual method for message processing is as follows:

C#
// this method is the core of our message processing
private string ProcessCommand(string msg,bool showSimilarity)
{
	// remove all special characters, punctuation etc ...
	msg = preTreatMessage(msg);

	// we build our answer search query
	string answer="";
	string searchQuery = "";

	// we tokenize the given message
	string[] tokens = msg.Split(' ');
	string oper = "";
	// we search for all rules with the 'receive' that looks like the given message
	foreach (string token in tokens)
	{
		if (token != "")
		{
			searchQuery += oper + " receive LIKE '%" + token + "%' ";
			oper = "OR";
		}
	}
	// we store the results
	DataRow[] results = this.database.Rules.Select
	("active = True AND "+searchQuery);
	// set the minimum wordsMatching score (precision) 
	// messages that are matched below this threshold will be ignored
	double maxScore = this.intelligence;
	List<string> answerlist =new List<string>();
	// we calculate the matching score foreach rule and store the ones
	// with the highest score in the answerlist array
	foreach (DataRow result in results)
	{
		MatchsMaker m = new MatchsMaker(msg, result["receive"].ToString());
		if (m.Score > maxScore)
		{
			answerlist.Clear();
			answerlist.Add(result["send"] + ((showSimilarity)?" 
			(" + m.Score + ")":""));
			this.messageDelay = (int)result["delay"];
			maxScore = m.Score;
		}
		else if (m.Score == maxScore)
		{
			answerlist.Add(result["send"] + 
			((showSimilarity)?" (" + m.Score + ")":""));
			this.messageDelay = (int)result["delay"];
		}
	}
	if (answerlist.Count == 0) // if no rule was found (scored high)
	{
		// we give an empty message
		// OR , you can modify this to be a default message
		// like : "I dont understand !"
		answer = "";
	}else{
		// if there are rules with the same score
		// we just choose a random one
		Random rand = new Random();
		answer = answerlist[rand.Next(0,answerlist.Count)];
	}
	return answer;
}

Message Delaying

This feature was required to make the bot more realistic, a delay amount is assigned to each rule; However it can be done differently for example, we can count the characters of the response in order to avoid setting the delay every time we add a new rule.

Another thing that is not covered is to make Skype show that we are currently typing a message, during the message delaying.

Here is a preview of the method (Thread) for delaying the message, its simply sleeps for the amount of seconds set by the message.

C#
private void SendSkypeMessage(string username, string message)
{
	// the message is not empty
	if (message != "")
	{
		// pause the thread delay the message so it appears as if the bot types the message
		System.Threading.Thread.Sleep(1000*this.messageDelay);
		try
		{
			// send the actual message
			skype.SendMessage(username, message);
		}
		catch { }
	}
}

It is called within the skype_MessageStatus callback method:

C#
// create a thread to send the message with its delay
System.Threading.Thread t = new System.Threading.Thread(() => 
	SendSkypeMessage(msg.Sender.Handle, send));
t.Start();

History

  • August 2013: Released

Related Material

License

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


Written By
Software Developer Smart Solutions Médéa
Algeria Algeria
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
AnswerRe: How to trigger it Pin
Osman Kalache28-Mar-14 0:53
Osman Kalache28-Mar-14 0:53 
QuestionBOT with JOB SITES Pin
DJChrisBlue17-Jan-14 13:59
DJChrisBlue17-Jan-14 13:59 
QuestionMore Pin
Paulo Augusto Kunzel24-Oct-13 2:09
professionalPaulo Augusto Kunzel24-Oct-13 2:09 
AnswerRe: More Pin
Osman Kalache3-Nov-13 5:35
Osman Kalache3-Nov-13 5:35 
GeneralMy vote of 5 Pin
Muhsin Emre5-Aug-13 20:39
Muhsin Emre5-Aug-13 20:39 
SuggestionNot a tip Pin
Vitaly Tomilov4-Aug-13 13:47
Vitaly Tomilov4-Aug-13 13:47 
GeneralRe: Not a tip Pin
Paulo Augusto Kunzel24-Oct-13 2:09
professionalPaulo Augusto Kunzel24-Oct-13 2:09 

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.