summary refs log tree commit diff stats
path: root/dialogue.cpp
blob: 85616e77aa7da5f71d616f5d93258f1fe09d01d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#include "vendor/csv.h"
#include "identifier.h"
#include "histogram.h"
#include <rawr.h>
#include <map>
#include <string>
#include <iostream>
#include <sstream>
#include <random>
#include <twitter.h>
#include <yaml-cpp/yaml.h>

using speakerstore = identifier<std::string>;
using speaker_id = speakerstore::key_type;

struct speaker_data {

  std::string name;
  histogram<speaker_id> nextSpeaker;
  rawr chain;
  size_t count = 0;

};

int main(int argc, char** argv)
{
  if (argc != 2)
  {
    std::cout << "usage: aspartame [configfile]" << std::endl;
    return -1;
  }

  std::random_device randomDevice;
  std::mt19937 rng(randomDevice());

  std::string configfile(argv[1]);
  YAML::Node config = YAML::LoadFile(configfile);

  twitter::auth auth(
    config["consumer_key"].as<std::string>(),
    config["consumer_secret"].as<std::string>(),
    config["access_key"].as<std::string>(),
    config["access_secret"].as<std::string>());

  twitter::client client(auth);

  speakerstore speakers;
  std::map<speaker_id, speaker_data> speakerData;
  histogram<speaker_id> allSpeakers;

  using csv =
    io::CSVReader<
      2,
      io::trim_chars<' ', '\t'>,
      io::double_quote_escape<',', '"'>>;

  csv in(config["transcript"].as<std::string>());
  std::string speaker;
  std::string line;

  bool hadPrev = false;
  speaker_id prevSpeaker;

  while (in.read_row(speaker, line))
  {
    speaker_id spId = speakers.add(speaker);
    speaker_data& myData = speakerData[spId];
    myData.name = speaker;
    myData.count++;

    allSpeakers.add(spId);

    if (hadPrev && prevSpeaker != spId)
    {
      speaker_data& psd = speakerData[prevSpeaker];
      psd.nextSpeaker.add(spId);
    }

    myData.chain.addCorpus(line);

    hadPrev = true;
    prevSpeaker = spId;
  }

  for (auto& sp : speakerData)
  {
    sp.second.chain.compile(4);
    sp.second.nextSpeaker.compile();
  }

  std::cout << "Speakers:" << std::endl;
  for (auto& sp : speakerData)
  {
    std::cout << "  " << sp.second.name << ": " << sp.second.count << std::endl;
  }
  std::cout << std::endl;

  allSpeakers.compile();

  for (;;)
  {
    std::set<speaker_id> pastSpeakers;

    speaker_id curSpeaker = allSpeakers.next(rng);

    std::ostringstream theEnd;
    int maxLines = std::uniform_int_distribution<int>(3, 6)(rng);

    for (int i = 0; i < maxLines; i++)
    {
      pastSpeakers.insert(curSpeaker);

      speaker_data& curSd = speakerData.at(curSpeaker);

      if (curSd.name != "")
      {
        theEnd << curSd.name << ": ";
      }

      int maxL = std::uniform_int_distribution<int>(1, 30)(rng);
      std::string curLine = curSd.chain.randomSentence(maxL, rng);

      if (curSd.name == "" &&
          curLine[0] != '[' &&
          curLine[0] != '(' &&
          curLine[0] != '*')
      {
        theEnd << "[" << curLine << "]";
      } else {
        theEnd << curLine;
      }

      theEnd << std::endl;

      int psi =
        std::uniform_int_distribution<int>(0, pastSpeakers.size()-1)(rng);

      speaker_id repeatSpeaker = *std::next(std::begin(pastSpeakers), psi);
      if (repeatSpeaker != curSpeaker &&
          std::bernoulli_distribution(1.0 / 3.0)(rng))
      {
        curSpeaker = repeatSpeaker;
      } else {
        curSpeaker = curSd.nextSpeaker.next(rng);
      }
    }

    std::string output = theEnd.str();
    output.resize(280);
    output = output.substr(0, output.find_last_of('\n'));
    std::cout << output;

    try
    {
      client.updateStatus(output);
    } catch (const twitter::twitter_error& error)
    {
      std::cout << "Twitter error while tweeting: " << error.what()
        << std::endl;
    }

    std::cout << std::endl;
    std::cout << std::endl;

    std::this_thread::sleep_for(std::chrono::hours(4));
  }
}