about summary refs log tree commit diff stats
diff options
context:
space:
mode:
m---------vendor/libtwittercpp0
-rw-r--r--yandere.cpp8
2 files changed, 7 insertions, 1 deletions
diff --git a/vendor/libtwittercpp b/vendor/libtwittercpp
Subproject bebcdec016124fceeeb393b8807ecf65f662958 Subproject febadca7d4e0460aa78f95b53b5e36e51fd2f97
diff --git a/yandere.cpp b/yandere.cpp index 3cb5efa..ec7322d 100644 --- a/yandere.cpp +++ b/yandere.cpp
@@ -99,6 +99,9 @@ int main(int argc, char** argv)
99 for (;;) 99 for (;;)
100 { 100 {
101 std::cout << "Generating tweet" << std::endl; 101 std::cout << "Generating tweet" << std::endl;
102
103 std::map<std::string, std::string> variables;
104
102 std::string action = "{MAIN}"; 105 std::string action = "{MAIN}";
103 int tknloc; 106 int tknloc;
104 while ((tknloc = action.find("{")) != std::string::npos) 107 while ((tknloc = action.find("{")) != std::string::npos)
@@ -129,6 +132,9 @@ int main(int argc, char** argv)
129 if (canontkn == "\\N") 132 if (canontkn == "\\N")
130 { 133 {
131 result = "\n"; 134 result = "\n";
135 } else if (variables.count(canontkn) == 1)
136 {
137 result = variables[canontkn];
132 } else { 138 } else {
133 auto& group = groups[canontkn]; 139 auto& group = groups[canontkn];
134 std::uniform_int_distribution<int> dist(0, group.size() - 1); 140 std::uniform_int_distribution<int> dist(0, group.size() - 1);
@@ -138,7 +144,7 @@ int main(int argc, char** argv)
138 144
139 if (!eqvarname.empty()) 145 if (!eqvarname.empty())
140 { 146 {
141 groups[eqvarname].push_back(result); 147 variables[eqvarname] = result;
142 } 148 }
143 149
144 if (modifier == "indefinite") 150 if (modifier == "indefinite")