]> git.sesse.net Git - remoteglot/blob - config.pm
When getting an invalid update, hard-reload instead of trying to wait (which messes...
[remoteglot] / config.pm
1 # Default configuration. Copy this file to config.local.pm if you want
2 # to change anything instead of modifying this (so you won't have to make
3 # changes in git).
4
5 package remoteglotconf;
6
7 our $server = "freechess.org";  # undef to not connect to FICS.
8 our $nick = "SesseBOT";
9 our $target = "GMCarlsen";  # FICS username or HTTP to a PGN file.
10
11 # Set to non-undef to pick out one specific game from a PGN file with many games.
12 # See example.
13 our $pgn_filter = undef;
14 #our $pgn_filter = sub {
15 #       my $pgn = shift;
16 #       return $pgn->round() eq '7' && $pgn->white eq 'Carlsen,M';
17 #};
18
19 # Set to non-undef to override the clock information with our own calculations.
20 # The example implements a simple 60+60 (with bonus added before the move).
21 # FIXME(sesse): We might not see all moves in a PGN individually, so this might
22 # skip some moves for bonus.
23 our $adjust_clocks_before_move = undef;
24 #our $adjust_clocks_before_move = sub {
25 #        my ($white_clock_left, $black_clock_left, $move, $toplay) = @_;
26 #
27 #        if (!defined($$white_clock_left) || !defined($$black_clock_left)) {
28 #                $$white_clock_left = 3600;
29 #                $$black_clock_left = 3600;
30 #        }
31 #        if ($toplay eq 'W') {
32 #                $$white_clock_left += 60;
33 #        } else {
34 #                $$black_clock_left += 60;
35 #        }
36 #};
37
38 our $json_output = "/srv/analysis.sesse.net/www/analysis.json";
39 our $json_history_dir = "/srv/analysis.sesse.net/www/history/";  # undef for none.
40
41 our $engine_cmdline = "./stockfish";
42 our %engine_config = (
43 #       'NalimovPath' => '/srv/tablebase',
44         'NalimovUsage' => 'Rarely',
45         'Hash' => '1024',
46 #       'MultiPV' => '2'
47 );
48 our $engine_grpc_backend = undef;  # Not used by us, but will be communicated to serve-analysis.js.
49
50 # Separate engine for multi-PV; can be undef for none.
51 our $engine2_cmdline = undef;
52 our %engine2_config = (
53 #       'NalimovPath' => '/srv/tablebase',
54         'NalimovUsage' => 'Rarely',
55         'Hash' => '1024',
56         'Threads' => '8',
57 );
58 our $engine2_grpc_backend = undef;  # Not used by us, but will be communicated to serve-analysis.js.
59
60 our $uci_assume_full_compliance = 0;                    # dangerous :-)
61 our $update_max_interval = 1.0;
62 our @masters = (
63         'Sesse',
64 );
65
66 # Command line to run the Fathom tablebase lookup program, if installed,
67 # including the --path= argument.
68 our $fathom_cmdline = undef;
69
70 # ChessOK serial key (of the form NNNNN-NNNNN-NNNNN-NNNNN-NNNNN-NNNNN)
71 # for looking up 7-man tablebases; undef means no lookup. Note that
72 # you probably need specific prior permission to use this.
73 our $tb_serial_key = undef;
74
75 # Credits to show in the footer.
76 our $engine_url = "http://www.stockfishchess.org/";
77 our $engine_details = undef;  # For hardware.
78 our $move_source = "FICS";
79 our $move_source_url = "http://www.freechess.org/";
80
81 # Postgres configuration.
82 our $dbistr = "dbi:Pg:dbname=remoteglot";
83 our $dbiuser = undef;
84 our $dbipass = undef;
85
86 eval {
87         my $config_filename = $ENV{'REMOTEGLOT_CONFIG'} // 'config.local.pm';
88         require $config_filename;
89 };