blob: 6ac8ee9e9e53ffcdde1c9309ca672aa52c1ae917 (
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
|
#include "sap.h"
#include <iostream>
#include <ctime>
#include <cstdlib>
extern "C" {
#include <libavformat/avformat.h>
}
int main(int argc, char** argv)
{
Magick::InitializeMagick(nullptr);
av_register_all();
std::random_device randomDevice;
std::mt19937 rng(randomDevice());
// We also have to seed the C-style RNG because librawr uses it.
srand(time(NULL));
rand(); rand(); rand(); rand();
if (argc != 2)
{
std::cout << "usage: sap [configfile]" << std::endl;
return -1;
}
std::string configfile(argv[1]);
try
{
sap bot(configfile, rng);
try
{
bot.run();
} catch (const std::exception& ex)
{
std::cout << "Error running bot: " << ex.what() << std::endl;
}
} catch (const std::exception& ex)
{
std::cout << "Error initializing bot: " << ex.what() << std::endl;
}
}
|