diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-10-29 09:55:03 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-10-29 09:55:03 -0400 |
commit | 0bb6d64c929b237278abf2565b6eb9f5f85fcd37 (patch) | |
tree | cff1e8508faffa1b3ec928d582b5a3e1a3785334 /main.cpp | |
download | capital-0bb6d64c929b237278abf2565b6eb9f5f85fcd37.tar.gz capital-0bb6d64c929b237278abf2565b6eb9f5f85fcd37.tar.bz2 capital-0bb6d64c929b237278abf2565b6eb9f5f85fcd37.zip |
Created bot
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..ffcd4a2 --- /dev/null +++ b/main.cpp | |||
@@ -0,0 +1,33 @@ | |||
1 | #include "capital.h" | ||
2 | |||
3 | int main(int argc, char** argv) | ||
4 | { | ||
5 | Magick::InitializeMagick(nullptr); | ||
6 | |||
7 | std::random_device randomDevice; | ||
8 | std::mt19937 rng(randomDevice()); | ||
9 | |||
10 | if (argc != 2) | ||
11 | { | ||
12 | std::cout << "usage: capital [configfile]" << std::endl; | ||
13 | return -1; | ||
14 | } | ||
15 | |||
16 | std::string configfile(argv[1]); | ||
17 | |||
18 | try | ||
19 | { | ||
20 | capital bot(configfile, rng); | ||
21 | |||
22 | try | ||
23 | { | ||
24 | bot.run(); | ||
25 | } catch (const std::exception& ex) | ||
26 | { | ||
27 | std::cout << "Error running bot: " << ex.what() << std::endl; | ||
28 | } | ||
29 | } catch (const std::exception& ex) | ||
30 | { | ||
31 | std::cout << "Error initializing bot: " << ex.what() << std::endl; | ||
32 | } | ||
33 | } \ No newline at end of file | ||