summaryrefslogtreecommitdiffstats
path: root/konversation/scripts/fortune
blob: a3b61d3553fe43d9a986a1469512ee4a966f8a7f (plain)
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
#!/usr/bin/env perl
# Copyright (C) 2004 by İsmail Dönmez
# Licensed under GPL v2 or later at your option

$PORT = shift;
$SERVER = shift;
$TARGET = shift;

sub RANDOM_INT ($$) {
    my($min, $max) = @_;
    return $min if $min == $max;
    ($min, $max) = ($max, $min)  if  $min > $max;
    return $min + int rand(1 + $max - $min);
}

open(FORTUNES,"fortunes.dat") or die("Could not open fortunes file!");

while (<FORTUNES>) {
    chomp;
    ++$TOTAL_LINES;
}

seek(FORTUNES,0,0);

srand;
$LINE = RANDOM_INT(0,$TOTAL_LINES - 5);

$MESSAGE = "4Random Fortune: ";

while (<FORTUNES>) {
    $LINE_COUNT++;

    if ( !$START && $LINE_COUNT >= $LINE ) {
	if ( $_ eq "\%\n" ) {
	    $START = 1;
	    next;
	}
	    next;
    }
    
    elsif ( $START ) {
	if( $_ eq "\%\n" ) {
	    last;
	}
	else {
	    chomp;
	    s/(\s)+/$1/g;
	    $MESSAGE .= $_." ";
	}
    }
}
close(FORTUNES);
exec 'dcop', $PORT, 'default', 'say', $SERVER, $TARGET, $MESSAGE;