2015-05-25 16:00:03 +02:00
|
|
|
#!/usr/bin/env perl
|
|
|
|
|
2017-03-05 22:33:31 +01:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2015-05-25 16:00:03 +02:00
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
use IRCColors;
|
|
|
|
use QStatskeeper;
|
|
|
|
|
|
|
|
my $CJEOPARDY_FILE = 'cjeopardy.txt';
|
|
|
|
|
|
|
|
sub encode { my $str = shift; $str =~ s/\\(.)/{sprintf "\\%03d", ord($1)}/ge; return $str; }
|
|
|
|
sub decode { my $str = shift; $str =~ s/\\(\d{3})/{"\\" . chr($1)}/ge; return $str }
|
|
|
|
|
|
|
|
my $args = join(' ', @ARGV);
|
|
|
|
my ($question_index) = $args =~ m/^(\d+)/;
|
|
|
|
|
|
|
|
if (not $question_index or $question_index < 0) {
|
|
|
|
print "Usage: show <question id>\n";
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
my @questions;
|
|
|
|
open my $fh, "<", $CJEOPARDY_FILE or die "Could not open $CJEOPARDY_FILE: $!";
|
|
|
|
@questions = <$fh>;
|
|
|
|
close $fh;
|
|
|
|
|
|
|
|
if ($question_index - 1 > scalar @questions - 1) {
|
|
|
|
print "Question id $question_index is out of range (1 - " . (scalar @questions) . ").\n";
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
my $question = $questions[$question_index - 1];
|
|
|
|
|
|
|
|
my ($q, $a) = map { decode $_ } split /\|/, encode($question), 2;
|
|
|
|
chomp $q;
|
|
|
|
chomp $a;
|
|
|
|
|
|
|
|
$q =~ s/\\\|/|/g;
|
|
|
|
$q =~ s/^(\d+)\) \[.*?\]\s+/$1) /;
|
|
|
|
|
|
|
|
$q =~ s/\b(this keyword|this operator|this behavior|this preprocessing directive|this escape sequence|this mode|this function specifier|this function|this macro|this predefined macro|this header|this pragma|this fprintf length modifier|this storage duration|this type qualifier|this type|this value|this operand|this many|this|these)\b/$color{bold}$1$color{reset}/gi;
|
|
|
|
|
|
|
|
print "$color{cyan}Showing question:$color{reset} $q\n";
|