123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- package eliza
- import (
- "fmt"
- "math/rand"
- "regexp"
- "strings"
- "time"
- )
- func Greetings() string {
- return randChoice(Introductions)
- }
- func GoodbyeResponse() string {
- return randChoice(Goodbyes)
- }
- func ReplyTo(statement string) string {
-
- statement = preprocess(statement)
-
- if IsQuitStatement(statement) {
- return GoodbyeResponse()
- }
-
-
- for pattern, responses := range Psychobabble {
- re := regexp.MustCompile(pattern)
- matches := re.FindStringSubmatch(statement)
-
- if len(matches) > 0 {
-
-
-
- var fragment string
- if len(matches) > 1 {
- fragment = reflect(matches[1])
- }
-
-
- response := randChoice(responses)
- if strings.Contains(response, "%s") {
- response = fmt.Sprintf(response, fragment)
- }
- return response
- }
- }
-
- return randChoice(DefaultResponses)
- }
- func IsQuitStatement(statement string) bool {
- statement = preprocess(statement)
- for _, quitResponse := range QuitResponses {
- if statement == quitResponse {
- return true
- }
- }
- return false
- }
- func preprocess(statement string) string {
- statement = strings.TrimRight(statement, "\n.!")
- statement = strings.ToLower(statement)
- return statement
- }
- func reflect(fragment string) string {
- words := strings.Split(fragment, " ")
- for i, word := range words {
- if reflectedWord, ok := ReflectedWords[word]; ok {
- words[i] = reflectedWord
- }
- }
- return strings.Join(words, " ")
- }
- func randChoice(list []string) string {
-
- rand.Seed(time.Now().UnixNano())
- randIndex := rand.Intn(len(list))
- return list[randIndex]
- }
|