about summary refs log tree commit diff stats
path: root/data/maps/the_relentless/README
blob: a3a4ecd3421f6b32fd89ff26ef9fe0c87da99d81 (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
The Relentless is complicated because it makes heavy use of the keyholder
mechanic. There are three rooms, and you are expected to enter each room missing
certain letters. Solving the available puzzles in each room opens the doors
between the rooms, which lets you cross into them with a different set of
missing letters.

There currently isn't a way to represent "is missing certain letters" in our map
data or randomizer state. Instead, we use rooms to emulate knowing which letters
are available. There is a room for each of the three entrances, containing the
puzzles solvable with the expected missing letters. There's a room for each of
the inner pairs of rooms, representing what becomes available when one of the
doors is opened, and a room representing what is solvable when both doors are
opened.

This is all done with the expectation that you are always entering The
Relentless with the correct letters in the Control Center's keyholders. Because
of this, the warps to The Relentless are not randomizable. The Control Center
keywords that open these warps are also not randomizable. It'd be nice to find a
way to randomize this at a later point.

Also note that in order to keep this functioning properly, if the player
receives a letter item while in The Relentless, the mod should hold off on
adding it to the player's keyboard. We may want to overhaul how keyholders work
entirely and just have some kind of thing in the Archipelago client's global
state.
96107010bb95c12dc9d19700e'>f221fa9 ^
1c93bfe ^









































f221fa9 ^
1c93bfe ^




f221fa9 ^


1c93bfe ^






f221fa9 ^
f221fa9 ^
1c93bfe ^

f221fa9 ^
1c93bfe ^



f221fa9 ^
1c93bfe ^

















f221fa9 ^
1c93bfe ^
f221fa9 ^
1c93bfe ^
f221fa9 ^
1c93bfe ^

f221fa9 ^
1c93bfe ^
f221fa9 ^
1c93bfe ^
f221fa9 ^

1c93bfe ^






























f221fa9 ^
1c93bfe ^
f221fa9 ^






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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201








                          
                    

                      



                                                   










                                                           




                                                







                                   

                                                           


                                                                           
                                                                          
 
                                                        
 


                                                       
 


                                                          
 



                                          
 









































                                                                           
               




                                                                               


               






                                                                                
         
 

                                                        
 



                                                              
 

















                                                                       
 
                                   
 
                                   
       

                                 
 
                                                              
       
                                  

       






























                                                                              
 
                                                  






                                       
#include <yaml-cpp/yaml.h>
#include <iostream>
#include <sstream>
#include <verbly.h>
#include <fstream>
#include <twitter.h>
#include <random>
#include <chrono>
#include <thread>
#include <algorithm>
#include "patterner.h"

const auto QUEUE_TIMEOUT = std::chrono::minutes(1);
const auto POLL_TIMEOUT = std::chrono::minutes(5);
const auto GEN_TIMEOUT = std::chrono::hours(1);

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

  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);

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

  try
  {
    std::set<twitter::user_id> blocks = client.getBlocks();

    verbly::database database(config["verbly_datafile"].as<std::string>());
    patterner pgen(config["forms_file"].as<std::string>(), database, rng);

    std::list<std::tuple<std::string, bool, twitter::tweet_id>> postQueue;

    auto startedTime = std::chrono::system_clock::now();

    auto queueTimer = std::chrono::system_clock::now();
    auto pollTimer = std::chrono::system_clock::now();
    auto genTimer = std::chrono::system_clock::now();

    for (;;)
    {
      auto currentTime = std::chrono::system_clock::now();

      if (currentTime >= genTimer)
      {
        std::string doc = pgen.generate();
        doc.resize(140);

        postQueue.emplace_back(std::move(doc), false, 0);

        genTimer = currentTime + GEN_TIMEOUT;
      }

      if (currentTime >= pollTimer)
      {
        pollTimer = currentTime;

        try
        {
          std::list<twitter::tweet> newTweets =
            client.getMentionsTimeline().poll();

          for (const twitter::tweet& tweet : newTweets)
          {
            auto createdTime =
              std::chrono::system_clock::from_time_t(tweet.getCreatedAt());

            if (
              // Ignore tweets from before the bot started up
              createdTime > startedTime
              // Ignore retweets
              && !tweet.isRetweet()
              // Ignore tweets from yourself
              && tweet.getAuthor() != client.getUser()
              // Ignore tweets from blocked users
              && !blocks.count(tweet.getAuthor().getID()))
            {
              std::string original = tweet.getText();
              std::string canonical;

              std::transform(
                std::begin(original),
                std::end(original),
                std::back_inserter(canonical),
                [] (char ch)
                {
                  return std::tolower(ch);
                });

              if (canonical.find("@teammeanies") != std::string::npos)
              {
                std::string doc = tweet.generateReplyPrefill(client.getUser());
                doc += pgen.generate();
                doc.resize(140);

                postQueue.emplace_back(std::move(doc), true, tweet.getID());
              }
            }
          }
        } catch (const twitter::rate_limit_exceeded&)
        {
          // Wait out the rate limit (10 minutes here and 5 below = 15).
          pollTimer += std::chrono::minutes(10);
        } catch (const twitter::twitter_error& e)
        {
          std::cout << "Twitter error while polling: " << e.what() << std::endl;
        }

        pollTimer += std::chrono::minutes(POLL_TIMEOUT);
      }

      if ((currentTime >= queueTimer) && (!postQueue.empty()))
      {
        auto post = postQueue.front();
        postQueue.pop_front();

        std::cout << std::get<0>(post) << std::endl;

        try
        {
          if (std::get<1>(post))
          {
            client.replyToTweet(std::get<0>(post), std::get<2>(post));
          } else {
            client.updateStatus(std::get<0>(post));
          }
        } catch (const twitter::twitter_error& error)
        {
          std::cout << "Twitter error while tweeting: " << error.what()
            << std::endl;
        }

        queueTimer = currentTime + std::chrono::minutes(QUEUE_TIMEOUT);
      }

      auto soonestTimer = genTimer;

      if (pollTimer < soonestTimer)
      {
        soonestTimer = pollTimer;
      }

      if ((queueTimer < soonestTimer) && (!postQueue.empty()))
      {
        soonestTimer = queueTimer;
      }

      int waitlen =
        std::chrono::duration_cast<std::chrono::seconds>(
          soonestTimer - currentTime).count();

      if (waitlen == 1)
      {
        std::cout << "Sleeping for 1 second..." << std::endl;
      } else if (waitlen < 60)
      {
        std::cout << "Sleeping for " << waitlen << " seconds..." << std::endl;
      } else if (waitlen == 60)
      {
        std::cout << "Sleeping for 1 minute..." << std::endl;
      } else if (waitlen < 60*60)
      {
        std::cout << "Sleeping for " << (waitlen/60) << " minutes..."
          << std::endl;
      } else if (waitlen == 60*60)
      {
        std::cout << "Sleeping for 1 hour..." << std::endl;
      } else if (waitlen < 60*60*24)
      {
        std::cout << "Sleeping for " << (waitlen/60/60) << " hours..."
          << std::endl;
      } else if (waitlen == 60*60*24)
      {
        std::cout << "Sleeping for 1 day..." << std::endl;
      } else {
        std::cout << "Sleeping for " << (waitlen/60/60/24) << " days..."
          << std::endl;
      }

      std::this_thread::sleep_until(soonestTimer);
    }
  } catch (std::invalid_argument& e)
  {
    std::cout << e.what() << std::endl;
    return -1;
  }
}