about summary refs log tree commit diff stats
path: root/gen.cpp
blob: 1d381c83926934ca59a13ea2cc712b150eb33705 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#include <cstdio>
#include <list>
#include <map>
#include "kgramstats.h"
#include <ctime>
#include <vector>
#include <cstdlib>
#include <fstream>
#include <iostream>
#include "freevars.h"

using namespace::std;

int main(int argc, char** args)
{
	srand(time(NULL));
    
    if (argc == 1)
    {
        cout << "rawr-gen, version 1.0" << endl;
        cout << "Usage: rawr-gen corpus-file" << endl;
        cout << "  where 'corpus-file' is the path to your input" << endl;
        
        return 0;
    }
    
	ifstream infile(args[1]);
    if (!infile)
    {
        cout << "rawr-gen, version 1.0" << endl;
        cout << "Usage: rawr-gen corpus-file" << endl;
        cout << "  where 'corpus-file' is the path to your input" << endl;
        cout << endl;
        cout << "The file you specified does not exist." << endl;
        
        return 0;
    }
    
	string corpus;
	string line;
	while (getline(infile, line))
	{
		corpus += " " + line;
	}
	
    cout << "Preprocessing corpus..." << endl;
	kgramstats* stats = new kgramstats(corpus, 5);
    
    cout << "Preprocessing freevars..." << endl;
    freevars* vars = new freevars();
    vars->addVar("name", "names.txt");
    vars->addVar("noun", "nouns.txt");
    
    cout << "Generating..." << endl;
	for (;;)
	{
		vector<string> doc = stats->randomSentence(rand() % 35 + 15);
		string hi;
		for (vector<string>::iterator it = doc.begin(); it != doc.end(); ++it)
		{
			hi += vars->parse(*it) + " ";
		}

		cout << hi << endl;
		
        getc(stdin);
	}
	
	return 0;
}