diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-04-17 13:44:37 -0400 |
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2016-04-17 13:44:37 -0400 |
| commit | 04338f2b040fee5142904c062e0e38c836601034 (patch) | |
| tree | a3ca42f738839ae4f6c83d599277c33203beb733 /lib/adjective_query.h | |
| parent | 040ee58fecdc9c478004bc2e554e1ae126ec4602 (diff) | |
| download | verbly-04338f2b040fee5142904c062e0e38c836601034.tar.gz verbly-04338f2b040fee5142904c062e0e38c836601034.tar.bz2 verbly-04338f2b040fee5142904c062e0e38c836601034.zip | |
Fixed perfect rhyming
Rhyme detection now ensures that any rhymes it finds are perfect rhymes and not identical rhymes. Rhyme detection is also now a lot faster because additional information is stored in the datafile. Also fixed a bug in the query interface (and the generator) that could cause incorrect queries to be executed.
Diffstat (limited to 'lib/adjective_query.h')
| -rw-r--r-- | lib/adjective_query.h | 10 |
1 files changed, 9 insertions, 1 deletions
| diff --git a/lib/adjective_query.h b/lib/adjective_query.h index b2859dc..030a494 100644 --- a/lib/adjective_query.h +++ b/lib/adjective_query.h | |||
| @@ -12,6 +12,10 @@ namespace verbly { | |||
| 12 | adjective_query& except(const adjective& _word); | 12 | adjective_query& except(const adjective& _word); |
| 13 | adjective_query& rhymes_with(const word& _word); | 13 | adjective_query& rhymes_with(const word& _word); |
| 14 | adjective_query& has_pronunciation(); | 14 | adjective_query& has_pronunciation(); |
| 15 | adjective_query& has_rhyming_noun(); | ||
| 16 | adjective_query& has_rhyming_adjective(); | ||
| 17 | adjective_query& has_rhyming_adverb(); | ||
| 18 | adjective_query& has_rhyming_verb(); | ||
| 15 | 19 | ||
| 16 | adjective_query& requires_comparative_form(); | 20 | adjective_query& requires_comparative_form(); |
| 17 | adjective_query& requires_superlative_form(); | 21 | adjective_query& requires_superlative_form(); |
| @@ -54,9 +58,13 @@ namespace verbly { | |||
| 54 | const data& _data; | 58 | const data& _data; |
| 55 | int _limit = unlimited; | 59 | int _limit = unlimited; |
| 56 | bool _random = false; | 60 | bool _random = false; |
| 57 | std::list<std::string> _rhymes; | 61 | std::list<rhyme> _rhymes; |
| 58 | std::list<adjective> _except; | 62 | std::list<adjective> _except; |
| 59 | bool _has_prn = false; | 63 | bool _has_prn = false; |
| 64 | bool _has_rhyming_noun = false; | ||
| 65 | bool _has_rhyming_adjective = false; | ||
| 66 | bool _has_rhyming_adverb = false; | ||
| 67 | bool _has_rhyming_verb = false; | ||
| 60 | 68 | ||
| 61 | bool _requires_comparative_form = false; | 69 | bool _requires_comparative_form = false; |
| 62 | bool _requires_superlative_form = false; | 70 | bool _requires_superlative_form = false; |
